|
1 |
| -// This is the root config file where the schematics are defined. |
2 | 1 | {
|
3 | 2 | "$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
|
4 | 3 | "schematics": {
|
5 |
| - // Adds Angular Material to an application without changing any templates |
6 | 4 | "ng-add": {
|
7 | 5 | "description": "Adds Angular Material to the application without affecting any templates",
|
8 | 6 | "factory": "./ng-add/index",
|
|
15 | 13 | "factory": "./ng-add/setup-project",
|
16 | 14 | "schema": "./ng-add/schema.json"
|
17 | 15 | },
|
18 |
| - // Create a dashboard component |
19 | 16 | "dashboard": {
|
20 | 17 | "description": "Create a card-based dashboard component",
|
21 | 18 | "factory": "./ng-generate/dashboard/index",
|
22 | 19 | "schema": "./ng-generate/dashboard/schema.json",
|
23 | 20 | "aliases": ["material-dashboard"]
|
24 | 21 | },
|
25 |
| - // Creates a table component |
26 | 22 | "table": {
|
27 | 23 | "description": "Create a component that displays data with a data-table",
|
28 | 24 | "factory": "./ng-generate/table/index",
|
29 | 25 | "schema": "./ng-generate/table/schema.json",
|
30 | 26 | "aliases": ["material-table"]
|
31 | 27 | },
|
32 |
| - // Creates toolbar and navigation components |
33 | 28 | "navigation": {
|
34 | 29 | "description": "Create a component with a responsive sidenav for navigation",
|
35 | 30 | "factory": "./ng-generate/navigation/index",
|
36 | 31 | "schema": "./ng-generate/navigation/schema.json",
|
37 | 32 | "aliases": ["material-nav", "materialNav", "nav"]
|
38 | 33 | },
|
39 |
| - // Create a file tree component |
40 | 34 | "tree": {
|
41 | 35 | "description": "Create a file tree component.",
|
42 | 36 | "factory": "./ng-generate/tree/index",
|
43 | 37 | "schema": "./ng-generate/tree/schema.json",
|
44 | 38 | "aliases": ["material-tree"]
|
45 | 39 | },
|
46 |
| - // Creates a address form component |
47 | 40 | "addressForm": {
|
48 | 41 | "description": "Create a component with a address form",
|
49 | 42 | "factory": "./ng-generate/address-form/index",
|
|
0 commit comments