@fundamental-ngx/cx 0.58.0-rc.99 → 0.58.0
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/fesm2022/fundamental-ngx-cx-nested-list.mjs +4 -0
- package/fesm2022/fundamental-ngx-cx-nested-list.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-cx-side-navigation.mjs +4 -0
- package/fesm2022/fundamental-ngx-cx-side-navigation.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-cx.mjs +4 -0
- package/fesm2022/fundamental-ngx-cx.mjs.map +1 -1
- package/index.d.ts +4 -0
- package/nested-list/index.d.ts +4 -0
- package/package.json +3 -3
- package/schematics/collection.json +10 -0
- package/schematics/ng-add/index.d.ts +3 -0
- package/schematics/ng-add/index.js +101 -0
- package/schematics/ng-add/index.js.map +1 -0
- package/schematics/ng-add/schema.d.ts +4 -0
- package/schematics/ng-add/schema.js +3 -0
- package/schematics/ng-add/schema.js.map +1 -0
- package/schematics/ng-add/schema.json +21 -0
- package/schematics/project.json +30 -0
- package/schematics/tsconfig.json +25 -0
- package/schematics/utils/ng-module-utils.d.ts +3 -0
- package/schematics/utils/ng-module-utils.js +62 -0
- package/schematics/utils/ng-module-utils.js.map +1 -0
- package/side-navigation/index.d.ts +4 -0
|
@@ -1198,6 +1198,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
|
1198
1198
|
args: [forwardRef(() => NestedListComponent)]
|
|
1199
1199
|
}] } });
|
|
1200
1200
|
|
|
1201
|
+
/**
|
|
1202
|
+
* @deprecated
|
|
1203
|
+
* Use direct imports of components and directives.
|
|
1204
|
+
*/
|
|
1201
1205
|
class CxNestedListModule {
|
|
1202
1206
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: CxNestedListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1203
1207
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.4", ngImport: i0, type: CxNestedListModule, imports: [NestedListComponent,
|