Skip to content

Commit

Permalink
feat(data-table): create componente data table
Browse files Browse the repository at this point in the history
  • Loading branch information
JhonatanMedeiros committed May 24, 2020
1 parent 6c6fed9 commit 4ab12bf
Show file tree
Hide file tree
Showing 35 changed files with 1,353 additions and 662 deletions.
45 changes: 44 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"src/assets"
],
"styles": [
"./node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.scss"
],
"scripts": []
Expand Down Expand Up @@ -92,6 +93,7 @@
"src/assets"
],
"styles": [
"./node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.scss"
],
"scripts": []
Expand Down Expand Up @@ -123,6 +125,47 @@
}
}
}
}},
},
"data-table": {
"projectType": "library",
"root": "projects/data-table",
"sourceRoot": "projects/data-table/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/data-table/tsconfig.lib.json",
"project": "projects/data-table/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/data-table/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/data-table/src/test.ts",
"tsConfig": "projects/data-table/tsconfig.spec.json",
"karmaConfig": "projects/data-table/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/data-table/tsconfig.lib.json",
"projects/data-table/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "webview-angular-electron"
}
Loading

0 comments on commit 4ab12bf

Please sign in to comment.