@rxap/schematic-angular 19.0.0-dev.1 → 19.0.0-dev.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/package.json +8 -8
- package/src/index.d.ts +109 -0
- package/src/index.js +143 -0
- package/src/index.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [19.0.0-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@19.0.0-dev.2...@rxap/schematic-angular@19.0.0-dev.3) (2025-01-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rxap/schematic-angular
|
|
9
|
+
|
|
10
|
+
# [19.0.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@19.0.0-dev.1...@rxap/schematic-angular@19.0.0-dev.2) (2025-01-03)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- support nx plugins ([a8a6b9d](https://gitlab.com/rxap/packages/commit/a8a6b9d084c4bc55b7fff4dbd533c3e9d727e106))
|
|
15
|
+
|
|
6
16
|
# [19.0.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@18.2.9-dev.0...@rxap/schematic-angular@19.0.0-dev.1) (2024-12-11)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @rxap/schematic-angular
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "19.0.0-dev.
|
|
2
|
+
"version": "19.0.0-dev.3",
|
|
3
3
|
"name": "@rxap/schematic-angular",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@angular-devkit/core": "19.0.4",
|
|
7
7
|
"@angular-devkit/schematics": "19.0.4",
|
|
8
8
|
"@nx/devkit": "20.2.1",
|
|
9
|
-
"@rxap/schematics-ts-morph": "^19.0.0-dev.
|
|
10
|
-
"@rxap/schematics-utilities": "^19.0.0-dev.
|
|
11
|
-
"@rxap/ts-morph": "^1.5.2-dev.
|
|
12
|
-
"@rxap/utilities": "^16.4.1-dev.
|
|
13
|
-
"@rxap/workspace-ts-morph": "^19.1.8-dev.
|
|
14
|
-
"@rxap/workspace-utilities": "^19.
|
|
9
|
+
"@rxap/schematics-ts-morph": "^19.0.0-dev.3",
|
|
10
|
+
"@rxap/schematics-utilities": "^19.0.0-dev.3",
|
|
11
|
+
"@rxap/ts-morph": "^1.5.2-dev.2",
|
|
12
|
+
"@rxap/utilities": "^16.4.1-dev.2",
|
|
13
|
+
"@rxap/workspace-ts-morph": "^19.1.8-dev.3",
|
|
14
|
+
"@rxap/workspace-utilities": "^19.6.0-dev.1",
|
|
15
15
|
"colors": "1.4.0",
|
|
16
16
|
"handlebars": "4.7.8",
|
|
17
17
|
"ts-morph": "18.0.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"schematics": "./collection.json",
|
|
46
46
|
"type": "commonjs",
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "55344af69ec9e01dcd25f8795a6e7e31b2cf3920",
|
|
48
48
|
"types": "./src/index.d.ts",
|
|
49
49
|
"main": "./src/index.js"
|
|
50
50
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
export * from './lib/utilities/if-truthy';
|
|
2
|
+
export * from './lib/utilities/to-function';
|
|
3
|
+
export * from './lib/table/header-button/base-header-button';
|
|
4
|
+
export * from './lib/table/header-button/form-header-button';
|
|
5
|
+
export * from './lib/table/header-button/method-header-button';
|
|
6
|
+
export * from './lib/table/header-button/navigation-header-button';
|
|
7
|
+
export * from './lib/table/column/base-table-column';
|
|
8
|
+
export * from './lib/table/column/boolean-table-column';
|
|
9
|
+
export * from './lib/table/column/custom-table-column';
|
|
10
|
+
export * from './lib/table/column/date-table-column';
|
|
11
|
+
export * from './lib/table/column/options-table-column';
|
|
12
|
+
export * from './lib/table/action/base-table-action';
|
|
13
|
+
export * from './lib/table/action/dialog-table-action';
|
|
14
|
+
export * from './lib/table/action/form-table-action';
|
|
15
|
+
export * from './lib/table/action/navigation-table-action';
|
|
16
|
+
export * from './lib/table/action/open-api-table-action';
|
|
17
|
+
export * from './lib/table/action/operation-table-action';
|
|
18
|
+
export * from './lib/table/header-button-kind';
|
|
19
|
+
export * from './lib/table/sortable';
|
|
20
|
+
export * from './lib/table/table-action-kind';
|
|
21
|
+
export * from './lib/table/table-action';
|
|
22
|
+
export * from './lib/table/table-column-kind';
|
|
23
|
+
export * from './lib/table/table-column-modifier';
|
|
24
|
+
export * from './lib/table/table-column-pipe';
|
|
25
|
+
export * from './lib/table/table-column-sticky';
|
|
26
|
+
export * from './lib/table/table-column';
|
|
27
|
+
export * from './lib/table/table-filter-column-rule';
|
|
28
|
+
export * from './lib/table/table-header-button';
|
|
29
|
+
export * from './lib/method/base-method-options';
|
|
30
|
+
export * from './lib/method/import-method-options';
|
|
31
|
+
export * from './lib/method/method-kinds';
|
|
32
|
+
export * from './lib/method/method-options';
|
|
33
|
+
export * from './lib/method/open-api-method-options';
|
|
34
|
+
export * from './lib/form/group/base-form-group';
|
|
35
|
+
export * from './lib/form/group/form-group-kind';
|
|
36
|
+
export * from './lib/form/group/form-group';
|
|
37
|
+
export * from './lib/form/control/autocomplete-form-control';
|
|
38
|
+
export * from './lib/form/control/autocomplete-table-select-form-control';
|
|
39
|
+
export * from './lib/form/control/base-form-control';
|
|
40
|
+
export * from './lib/form/control/checkbox-form-control';
|
|
41
|
+
export * from './lib/form/control/date-form-control';
|
|
42
|
+
export * from './lib/form/control/form-control-kind';
|
|
43
|
+
export * from './lib/form/control/form-control';
|
|
44
|
+
export * from './lib/form/control/form-field-form-control';
|
|
45
|
+
export * from './lib/form/control/input-form-control';
|
|
46
|
+
export * from './lib/form/control/select-form-control';
|
|
47
|
+
export * from './lib/form/control/slide-toggle-form-control';
|
|
48
|
+
export * from './lib/form/control/table-select-form-control';
|
|
49
|
+
export * from './lib/form/control/textarea-form-control';
|
|
50
|
+
export * from './lib/form/array/base-form-array';
|
|
51
|
+
export * from './lib/form/array/form-array-kind';
|
|
52
|
+
export * from './lib/form/array/form-array';
|
|
53
|
+
export * from './lib/form/abstract-control';
|
|
54
|
+
export * from './lib/form/coerce-control-component-imports';
|
|
55
|
+
export * from './lib/form/control';
|
|
56
|
+
export * from './lib/form/form-component';
|
|
57
|
+
export * from './lib/form/form-definition';
|
|
58
|
+
export * from './lib/form/generate-form-template';
|
|
59
|
+
export * from './lib/data-source/base-data-source-options';
|
|
60
|
+
export * from './lib/data-source/data-source-kinds';
|
|
61
|
+
export * from './lib/data-source/data-source-options';
|
|
62
|
+
export * from './lib/data-source/import-data-source-options';
|
|
63
|
+
export * from './lib/backend/backend-options';
|
|
64
|
+
export * from './lib/backend/backend-types';
|
|
65
|
+
export * from './lib/backend/base-backend-options';
|
|
66
|
+
export * from './lib/backend/nest-js-backend-options';
|
|
67
|
+
export * from './lib/accordion/item/base-accordion-item';
|
|
68
|
+
export * from './lib/accordion/item/data-grid-accordion-item';
|
|
69
|
+
export * from './lib/accordion/item/nested-accordion-item';
|
|
70
|
+
export * from './lib/accordion/item/switch-accordion-item';
|
|
71
|
+
export * from './lib/accordion/item/table-accordion-item';
|
|
72
|
+
export * from './lib/accordion/item/tree-table-accordion-item';
|
|
73
|
+
export * from './lib/accordion/header/base-accordion-header';
|
|
74
|
+
export * from './lib/accordion/header/property-accordion-header';
|
|
75
|
+
export * from './lib/accordion/header/static-accordion-header';
|
|
76
|
+
export * from './lib/accordion/accordion-header-kind';
|
|
77
|
+
export * from './lib/accordion/accordion-header';
|
|
78
|
+
export * from './lib/accordion/accordion-item-kind';
|
|
79
|
+
export * from './lib/accordion/accordion-item';
|
|
80
|
+
export * from './lib/accordion/accordion';
|
|
81
|
+
export * from './lib/accordion-identifier';
|
|
82
|
+
export * from './lib/adapter-options';
|
|
83
|
+
export * from './lib/angular-options';
|
|
84
|
+
export * from './lib/assert-table-component-exists';
|
|
85
|
+
export * from './lib/coerce-accordion-component';
|
|
86
|
+
export * from './lib/coerce-accordion-item-table-component';
|
|
87
|
+
export * from './lib/coerce-form-component';
|
|
88
|
+
export * from './lib/coerce-minimum-table-component';
|
|
89
|
+
export * from './lib/coerce-tree-table-component';
|
|
90
|
+
export * from './lib/component-options';
|
|
91
|
+
export * from './lib/css-class';
|
|
92
|
+
export * from './lib/data-grid-item';
|
|
93
|
+
export * from './lib/data-grid-mode';
|
|
94
|
+
export * from './lib/data-grid-options';
|
|
95
|
+
export * from './lib/dialog-action';
|
|
96
|
+
export * from './lib/existing-method';
|
|
97
|
+
export * from './lib/load-handlebars-template';
|
|
98
|
+
export * from './lib/mat-form-field-default-options';
|
|
99
|
+
export * from './lib/minimum-table-component-options';
|
|
100
|
+
export * from './lib/minimum-table-options';
|
|
101
|
+
export * from './lib/persistent';
|
|
102
|
+
export * from './lib/pipe-option';
|
|
103
|
+
export * from './lib/route-component';
|
|
104
|
+
export * from './lib/table-open-api-options';
|
|
105
|
+
export * from './lib/table-options';
|
|
106
|
+
export * from './lib/to-title';
|
|
107
|
+
export * from './lib/tree-table-options';
|
|
108
|
+
export * from './lib/use-pick-from-table-interface-as-form-type';
|
|
109
|
+
export * from './lib/value-option';
|
package/src/index.js
CHANGED
|
@@ -1,2 +1,145 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
// region utilities
|
|
5
|
+
tslib_1.__exportStar(require("./lib/utilities/if-truthy"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./lib/utilities/to-function"), exports);
|
|
7
|
+
// endregion
|
|
8
|
+
// region table header-button
|
|
9
|
+
tslib_1.__exportStar(require("./lib/table/header-button/base-header-button"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./lib/table/header-button/form-header-button"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./lib/table/header-button/method-header-button"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./lib/table/header-button/navigation-header-button"), exports);
|
|
13
|
+
// endregion
|
|
14
|
+
// region table column
|
|
15
|
+
tslib_1.__exportStar(require("./lib/table/column/base-table-column"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./lib/table/column/boolean-table-column"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./lib/table/column/custom-table-column"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./lib/table/column/date-table-column"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./lib/table/column/options-table-column"), exports);
|
|
20
|
+
// endregion
|
|
21
|
+
// region table action
|
|
22
|
+
tslib_1.__exportStar(require("./lib/table/action/base-table-action"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./lib/table/action/dialog-table-action"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./lib/table/action/form-table-action"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./lib/table/action/navigation-table-action"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./lib/table/action/open-api-table-action"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./lib/table/action/operation-table-action"), exports);
|
|
28
|
+
// endregion
|
|
29
|
+
// region table
|
|
30
|
+
tslib_1.__exportStar(require("./lib/table/header-button-kind"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./lib/table/sortable"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./lib/table/table-action-kind"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./lib/table/table-action"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./lib/table/table-column-kind"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./lib/table/table-column-modifier"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./lib/table/table-column-pipe"), exports);
|
|
37
|
+
tslib_1.__exportStar(require("./lib/table/table-column-sticky"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./lib/table/table-column"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./lib/table/table-filter-column-rule"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./lib/table/table-header-button"), exports);
|
|
41
|
+
// endregion
|
|
42
|
+
// region method
|
|
43
|
+
tslib_1.__exportStar(require("./lib/method/base-method-options"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./lib/method/import-method-options"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./lib/method/method-kinds"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./lib/method/method-options"), exports);
|
|
47
|
+
tslib_1.__exportStar(require("./lib/method/open-api-method-options"), exports);
|
|
48
|
+
// endregion
|
|
49
|
+
// region form group
|
|
50
|
+
tslib_1.__exportStar(require("./lib/form/group/base-form-group"), exports);
|
|
51
|
+
tslib_1.__exportStar(require("./lib/form/group/form-group-kind"), exports);
|
|
52
|
+
tslib_1.__exportStar(require("./lib/form/group/form-group"), exports);
|
|
53
|
+
// endregion
|
|
54
|
+
// region form control
|
|
55
|
+
tslib_1.__exportStar(require("./lib/form/control/autocomplete-form-control"), exports);
|
|
56
|
+
tslib_1.__exportStar(require("./lib/form/control/autocomplete-table-select-form-control"), exports);
|
|
57
|
+
tslib_1.__exportStar(require("./lib/form/control/base-form-control"), exports);
|
|
58
|
+
tslib_1.__exportStar(require("./lib/form/control/checkbox-form-control"), exports);
|
|
59
|
+
tslib_1.__exportStar(require("./lib/form/control/date-form-control"), exports);
|
|
60
|
+
tslib_1.__exportStar(require("./lib/form/control/form-control-kind"), exports);
|
|
61
|
+
tslib_1.__exportStar(require("./lib/form/control/form-control"), exports);
|
|
62
|
+
tslib_1.__exportStar(require("./lib/form/control/form-field-form-control"), exports);
|
|
63
|
+
tslib_1.__exportStar(require("./lib/form/control/input-form-control"), exports);
|
|
64
|
+
tslib_1.__exportStar(require("./lib/form/control/select-form-control"), exports);
|
|
65
|
+
tslib_1.__exportStar(require("./lib/form/control/slide-toggle-form-control"), exports);
|
|
66
|
+
tslib_1.__exportStar(require("./lib/form/control/table-select-form-control"), exports);
|
|
67
|
+
tslib_1.__exportStar(require("./lib/form/control/textarea-form-control"), exports);
|
|
68
|
+
// endregion
|
|
69
|
+
// region form array
|
|
70
|
+
tslib_1.__exportStar(require("./lib/form/array/base-form-array"), exports);
|
|
71
|
+
tslib_1.__exportStar(require("./lib/form/array/form-array-kind"), exports);
|
|
72
|
+
tslib_1.__exportStar(require("./lib/form/array/form-array"), exports);
|
|
73
|
+
// endregion
|
|
74
|
+
// region form
|
|
75
|
+
tslib_1.__exportStar(require("./lib/form/abstract-control"), exports);
|
|
76
|
+
tslib_1.__exportStar(require("./lib/form/coerce-control-component-imports"), exports);
|
|
77
|
+
tslib_1.__exportStar(require("./lib/form/control"), exports);
|
|
78
|
+
tslib_1.__exportStar(require("./lib/form/form-component"), exports);
|
|
79
|
+
tslib_1.__exportStar(require("./lib/form/form-definition"), exports);
|
|
80
|
+
tslib_1.__exportStar(require("./lib/form/generate-form-template"), exports);
|
|
81
|
+
// endregion
|
|
82
|
+
// region data-source
|
|
83
|
+
tslib_1.__exportStar(require("./lib/data-source/base-data-source-options"), exports);
|
|
84
|
+
tslib_1.__exportStar(require("./lib/data-source/data-source-kinds"), exports);
|
|
85
|
+
tslib_1.__exportStar(require("./lib/data-source/data-source-options"), exports);
|
|
86
|
+
tslib_1.__exportStar(require("./lib/data-source/import-data-source-options"), exports);
|
|
87
|
+
// endregion
|
|
88
|
+
// region backend
|
|
89
|
+
tslib_1.__exportStar(require("./lib/backend/backend-options"), exports);
|
|
90
|
+
tslib_1.__exportStar(require("./lib/backend/backend-types"), exports);
|
|
91
|
+
tslib_1.__exportStar(require("./lib/backend/base-backend-options"), exports);
|
|
92
|
+
tslib_1.__exportStar(require("./lib/backend/nest-js-backend-options"), exports);
|
|
93
|
+
// endregion
|
|
94
|
+
// region accordion item
|
|
95
|
+
tslib_1.__exportStar(require("./lib/accordion/item/base-accordion-item"), exports);
|
|
96
|
+
tslib_1.__exportStar(require("./lib/accordion/item/data-grid-accordion-item"), exports);
|
|
97
|
+
tslib_1.__exportStar(require("./lib/accordion/item/nested-accordion-item"), exports);
|
|
98
|
+
tslib_1.__exportStar(require("./lib/accordion/item/switch-accordion-item"), exports);
|
|
99
|
+
tslib_1.__exportStar(require("./lib/accordion/item/table-accordion-item"), exports);
|
|
100
|
+
tslib_1.__exportStar(require("./lib/accordion/item/tree-table-accordion-item"), exports);
|
|
101
|
+
// endregion
|
|
102
|
+
// region accordion header
|
|
103
|
+
tslib_1.__exportStar(require("./lib/accordion/header/base-accordion-header"), exports);
|
|
104
|
+
tslib_1.__exportStar(require("./lib/accordion/header/property-accordion-header"), exports);
|
|
105
|
+
tslib_1.__exportStar(require("./lib/accordion/header/static-accordion-header"), exports);
|
|
106
|
+
// endregion
|
|
107
|
+
// region accordion
|
|
108
|
+
tslib_1.__exportStar(require("./lib/accordion/accordion-header-kind"), exports);
|
|
109
|
+
tslib_1.__exportStar(require("./lib/accordion/accordion-header"), exports);
|
|
110
|
+
tslib_1.__exportStar(require("./lib/accordion/accordion-item-kind"), exports);
|
|
111
|
+
tslib_1.__exportStar(require("./lib/accordion/accordion-item"), exports);
|
|
112
|
+
tslib_1.__exportStar(require("./lib/accordion/accordion"), exports);
|
|
113
|
+
// endregion
|
|
114
|
+
// region
|
|
115
|
+
tslib_1.__exportStar(require("./lib/accordion-identifier"), exports);
|
|
116
|
+
tslib_1.__exportStar(require("./lib/adapter-options"), exports);
|
|
117
|
+
tslib_1.__exportStar(require("./lib/angular-options"), exports);
|
|
118
|
+
tslib_1.__exportStar(require("./lib/assert-table-component-exists"), exports);
|
|
119
|
+
tslib_1.__exportStar(require("./lib/coerce-accordion-component"), exports);
|
|
120
|
+
tslib_1.__exportStar(require("./lib/coerce-accordion-item-table-component"), exports);
|
|
121
|
+
tslib_1.__exportStar(require("./lib/coerce-form-component"), exports);
|
|
122
|
+
tslib_1.__exportStar(require("./lib/coerce-minimum-table-component"), exports);
|
|
123
|
+
tslib_1.__exportStar(require("./lib/coerce-tree-table-component"), exports);
|
|
124
|
+
tslib_1.__exportStar(require("./lib/component-options"), exports);
|
|
125
|
+
tslib_1.__exportStar(require("./lib/css-class"), exports);
|
|
126
|
+
tslib_1.__exportStar(require("./lib/data-grid-item"), exports);
|
|
127
|
+
tslib_1.__exportStar(require("./lib/data-grid-mode"), exports);
|
|
128
|
+
tslib_1.__exportStar(require("./lib/data-grid-options"), exports);
|
|
129
|
+
tslib_1.__exportStar(require("./lib/dialog-action"), exports);
|
|
130
|
+
tslib_1.__exportStar(require("./lib/existing-method"), exports);
|
|
131
|
+
tslib_1.__exportStar(require("./lib/load-handlebars-template"), exports);
|
|
132
|
+
tslib_1.__exportStar(require("./lib/mat-form-field-default-options"), exports);
|
|
133
|
+
tslib_1.__exportStar(require("./lib/minimum-table-component-options"), exports);
|
|
134
|
+
tslib_1.__exportStar(require("./lib/minimum-table-options"), exports);
|
|
135
|
+
tslib_1.__exportStar(require("./lib/persistent"), exports);
|
|
136
|
+
tslib_1.__exportStar(require("./lib/pipe-option"), exports);
|
|
137
|
+
tslib_1.__exportStar(require("./lib/route-component"), exports);
|
|
138
|
+
tslib_1.__exportStar(require("./lib/table-open-api-options"), exports);
|
|
139
|
+
tslib_1.__exportStar(require("./lib/table-options"), exports);
|
|
140
|
+
tslib_1.__exportStar(require("./lib/to-title"), exports);
|
|
141
|
+
tslib_1.__exportStar(require("./lib/tree-table-options"), exports);
|
|
142
|
+
tslib_1.__exportStar(require("./lib/use-pick-from-table-interface-as-form-type"), exports);
|
|
143
|
+
tslib_1.__exportStar(require("./lib/value-option"), exports);
|
|
144
|
+
// endregion
|
|
2
145
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/schematic/angular/src/index.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/schematic/angular/src/index.ts"],"names":[],"mappings":";;;AAAA,mBAAmB;AACnB,oEAA0C;AAC1C,sEAA4C;AAC5C,YAAY;AAEZ,6BAA6B;AAC7B,uFAA6D;AAC7D,uFAA6D;AAC7D,yFAA+D;AAC/D,6FAAmE;AACnE,YAAY;AAEZ,sBAAsB;AACtB,+EAAqD;AACrD,kFAAwD;AACxD,iFAAuD;AACvD,+EAAqD;AACrD,kFAAwD;AACxD,YAAY;AAEZ,sBAAsB;AACtB,+EAAqD;AACrD,iFAAuD;AACvD,+EAAqD;AACrD,qFAA2D;AAC3D,mFAAyD;AACzD,oFAA0D;AAC1D,YAAY;AAEZ,eAAe;AACf,yEAA+C;AAC/C,+DAAqC;AACrC,wEAA8C;AAC9C,mEAAyC;AACzC,wEAA8C;AAC9C,4EAAkD;AAClD,wEAA8C;AAC9C,0EAAgD;AAChD,mEAAyC;AACzC,+EAAqD;AACrD,0EAAgD;AAChD,YAAY;AAEZ,gBAAgB;AAChB,2EAAiD;AACjD,6EAAmD;AACnD,oEAA0C;AAC1C,sEAA4C;AAC5C,+EAAqD;AACrD,YAAY;AAEZ,oBAAoB;AACpB,2EAAiD;AACjD,2EAAiD;AACjD,sEAA4C;AAC5C,YAAY;AAEZ,sBAAsB;AACtB,uFAA6D;AAC7D,oGAA0E;AAC1E,+EAAqD;AACrD,mFAAyD;AACzD,+EAAqD;AACrD,+EAAqD;AACrD,0EAAgD;AAChD,qFAA2D;AAC3D,gFAAsD;AACtD,iFAAuD;AACvD,uFAA6D;AAC7D,uFAA6D;AAC7D,mFAAyD;AACzD,YAAY;AAEZ,oBAAoB;AACpB,2EAAiD;AACjD,2EAAiD;AACjD,sEAA4C;AAC5C,YAAY;AAEZ,cAAc;AACd,sEAA4C;AAC5C,sFAA4D;AAC5D,6DAAmC;AACnC,oEAA0C;AAC1C,qEAA2C;AAC3C,4EAAkD;AAClD,YAAY;AAEZ,qBAAqB;AACrB,qFAA2D;AAC3D,8EAAoD;AACpD,gFAAsD;AACtD,uFAA6D;AAC7D,YAAY;AAEZ,iBAAiB;AACjB,wEAA8C;AAC9C,sEAA4C;AAC5C,6EAAmD;AACnD,gFAAsD;AACtD,YAAY;AAEZ,wBAAwB;AACxB,mFAAyD;AACzD,wFAA8D;AAC9D,qFAA2D;AAC3D,qFAA2D;AAC3D,oFAA0D;AAC1D,yFAA+D;AAC/D,YAAY;AAEZ,0BAA0B;AAC1B,uFAA6D;AAC7D,2FAAiE;AACjE,yFAA+D;AAC/D,YAAY;AAEZ,mBAAmB;AACnB,gFAAsD;AACtD,2EAAiD;AACjD,8EAAoD;AACpD,yEAA+C;AAC/C,oEAA0C;AAC1C,YAAY;AAEZ,UAAU;AACV,qEAA2C;AAC3C,gEAAsC;AACtC,gEAAsC;AACtC,8EAAoD;AACpD,2EAAiD;AACjD,sFAA4D;AAC5D,sEAA4C;AAC5C,+EAAqD;AACrD,4EAAkD;AAClD,kEAAwC;AACxC,0DAAgC;AAChC,+DAAqC;AACrC,+DAAqC;AACrC,kEAAwC;AACxC,8DAAoC;AACpC,gEAAsC;AACtC,yEAA+C;AAC/C,+EAAqD;AACrD,gFAAsD;AACtD,sEAA4C;AAC5C,2DAAiC;AACjC,4DAAkC;AAClC,gEAAsC;AACtC,uEAA6C;AAC7C,8DAAoC;AACpC,yDAA+B;AAC/B,mEAAyC;AACzC,2FAAiE;AACjE,6DAAmC;AACnC,YAAY"}
|