Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge main to develop #5

Merged
merged 35 commits into from
Jun 17, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e8efb1e
0.0.3
itsenes Jun 4, 2021
ac7f3aa
0.0.4
itsenes Jun 4, 2021
64d0e5b
0.0.5
itsenes Jun 4, 2021
ec31889
workspace
itsenes Jun 4, 2021
30b65ad
...
itsenes Jun 4, 2021
5722ad1
0.0.6
itsenes Jun 4, 2021
b179d5c
...
itsenes Jun 4, 2021
086b2bf
0.0.7
itsenes Jun 4, 2021
cc97503
...
itsenes Jun 4, 2021
6defa8e
styles extractions for view layout - wip
itsenes Jun 4, 2021
427d1a7
extracting styles from components
itsenes Jun 4, 2021
c051995
model-view-layout fixes
itsenes Jun 7, 2021
dcd1ed5
extrancted cards css, added kpi tile component
itsenes Jun 7, 2021
4842a3e
kpi-tile title fix
itsenes Jun 7, 2021
17953d3
minor fixes and tile click action bug
itsenes Jun 7, 2021
43b973f
kpi tile fix
itsenes Jun 9, 2021
be0c749
inner-model-rightpane
Jun 9, 2021
2879c5b
named asides in all layouts
itsenes Jun 9, 2021
c653006
side pane changes
itsenes Jun 10, 2021
6897aff
footer styles fix
itsenes Jun 14, 2021
40216a0
removed bracket on side panel
Jun 15, 2021
0a348c5
Merge branch 'main' of https://github.com/indice-co/Indice.Angular in…
Jun 15, 2021
d40d472
custom header component injection
Jun 15, 2021
1ff4fed
model-view-lyaout fixes
itsenes Jun 16, 2021
67dd659
added sample app (wip)
itsenes Jun 16, 2021
5839b5a
give life to sample project
Jun 17, 2021
0eec9da
remove conflicting packages + add missing
vaggelanos Jun 17, 2021
fba59ba
Merge remote-tracking branch 'origin/main' into feature/custom-header…
Jun 17, 2021
e0f5e34
dynamic component loading for header/footer
Jun 17, 2021
c0d38bd
Merge pull request #4 from indice-co/feature/custom-header-footer-com…
vaggelanos Jun 17, 2021
cf11f70
comment out vscode bullshit
Jun 17, 2021
c472b01
shell fixes
itsenes Jun 17, 2021
78ffe32
bump ng-components version
Jun 17, 2021
6aa809f
Merge branch 'main' of Indice.Angular into main
itsenes Jun 17, 2021
0acf5b3
Merge branch 'main' of https://github.com/indice-co/Indice.Angular in…
itsenes Jun 17, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added sample app (wip)
  • Loading branch information
itsenes committed Jun 16, 2021
commit 67dd659df8599e218d53009d8b38fbca180c101c
103 changes: 103 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,109 @@
}
}
}
},
"app": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
},
"@schematics/angular:application": {
"strict": true
}
},
"root": "projects/app",
"sourceRoot": "projects/app/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/app",
"index": "projects/app/src/index.html",
"main": "projects/app/src/main.ts",
"polyfills": "projects/app/src/polyfills.ts",
"tsConfig": "projects/app/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"projects/app/src/favicon.ico",
"projects/app/src/assets"
],
"styles": [
"projects/app/src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "projects/app/src/environments/environment.ts",
"with": "projects/app/src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "app:build:production"
},
"development": {
"browserTarget": "app:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "app:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/app/src/test.ts",
"polyfills": "projects/app/src/polyfills.ts",
"tsConfig": "projects/app/tsconfig.spec.json",
"karmaConfig": "projects/app/karma.conf.js",
"inlineStyleLanguage": "scss",
"assets": [
"projects/app/src/favicon.ico",
"projects/app/src/assets"
],
"styles": [
"projects/app/src/styles.scss"
],
"scripts": []
}
}
}
}
},
"defaultProject": "ng-auth",
Expand Down
Loading