[6a3a178] | 1 | {
|
---|
| 2 | "$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
|
---|
| 3 | "schematics": {
|
---|
| 4 | "ng-add": {
|
---|
| 5 | "description": "Adds Angular Material to the application without affecting any templates",
|
---|
| 6 | "factory": "./ng-add/index",
|
---|
| 7 | "schema": "./ng-add/schema.json",
|
---|
| 8 | "aliases": ["material-shell", "install"]
|
---|
| 9 | },
|
---|
| 10 | "ng-add-setup-project": {
|
---|
| 11 | "description": "Sets up the specified project after the ng-add dependencies have been installed.",
|
---|
| 12 | "private": true,
|
---|
| 13 | "factory": "./ng-add/setup-project",
|
---|
| 14 | "schema": "./ng-add/schema.json"
|
---|
| 15 | },
|
---|
| 16 | "dashboard": {
|
---|
| 17 | "description": "Create a card-based dashboard component",
|
---|
| 18 | "factory": "./ng-generate/dashboard/index",
|
---|
| 19 | "schema": "./ng-generate/dashboard/schema.json",
|
---|
| 20 | "aliases": ["material-dashboard"]
|
---|
| 21 | },
|
---|
| 22 | "table": {
|
---|
| 23 | "description": "Create a component that displays data with a data-table",
|
---|
| 24 | "factory": "./ng-generate/table/index",
|
---|
| 25 | "schema": "./ng-generate/table/schema.json",
|
---|
| 26 | "aliases": ["material-table"]
|
---|
| 27 | },
|
---|
| 28 | "navigation": {
|
---|
| 29 | "description": "Create a component with a responsive sidenav for navigation",
|
---|
| 30 | "factory": "./ng-generate/navigation/index",
|
---|
| 31 | "schema": "./ng-generate/navigation/schema.json",
|
---|
| 32 | "aliases": ["material-nav", "materialNav", "nav"]
|
---|
| 33 | },
|
---|
| 34 | "tree": {
|
---|
| 35 | "description": "Create a file tree component.",
|
---|
| 36 | "factory": "./ng-generate/tree/index",
|
---|
| 37 | "schema": "./ng-generate/tree/schema.json",
|
---|
| 38 | "aliases": ["material-tree"]
|
---|
| 39 | },
|
---|
| 40 | "addressForm": {
|
---|
| 41 | "description": "Create a component with an address form",
|
---|
| 42 | "factory": "./ng-generate/address-form/index",
|
---|
| 43 | "schema": "./ng-generate/address-form/schema.json",
|
---|
| 44 | "aliases": ["address-form", "material-address-form", "material-addressForm"]
|
---|
| 45 | }
|
---|
| 46 | }
|
---|
| 47 | }
|
---|