imng-kendo-schematics 8.115.3 → 19.175.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imng-kendo-schematics",
3
- "version": "8.115.3",
3
+ "version": "19.175.1",
4
4
  "description": "Angular Schematics facilitating Angular, Kendo, NGRX and imng package integration",
5
5
  "scripts": {
6
6
  "build": "tsc -p tsconfig.json",
@@ -7,6 +7,7 @@ import { <%= classify(name) %>BaseEntryComponent } from './base-entry.component'
7
7
  templateUrl: './add-edit.component.html',
8
8
  styleUrls: ['./add-edit.component.scss'],
9
9
  changeDetection: ChangeDetectionStrategy.OnPush,
10
+ standalone: false,
10
11
  })
11
12
  export class <%= classify(name) %>AddComponent extends <%= classify(name) %>BaseEntryComponent implements OnInit, OnDestroy {
12
13
  public dialogTitle = 'Add <%= classify(name) %>';
@@ -5,7 +5,10 @@ import { BehaviorSubject, map, Observable, switchMap } from 'rxjs';<% } %>
5
5
 
6
6
  import { <%= classify(name) %>CrudFacade } from './crud.facade';
7
7
 
8
- @Component({ template: '' })
8
+ @Component({
9
+ template: '',
10
+ standalone: false,
11
+ })
9
12
  export abstract class <%= classify(name) %>BaseEntryComponent extends BaseDataEntryComponent<<%= classify(name) %>CrudFacade>
10
13
  implements OnInit {
11
14
  public readonly props = <%= classify(name) %>Properties;<% swaggerObjectProperties.filter(t=> !t.enum).forEach(function(swaggerProperty){ %>
@@ -9,6 +9,7 @@ import { <%= classify(name) %>CrudFacade } from './crud.facade';
9
9
  templateUrl: './add-edit.component.html',
10
10
  styleUrls: ['./add-edit.component.scss'],
11
11
  changeDetection: ChangeDetectionStrategy.OnPush,
12
+ standalone: false,
12
13
  })
13
14
  export class <%= classify(name) %>EditComponent extends <%= classify(name) %>BaseEntryComponent implements OnInit, OnDestroy {
14
15
  public dialogTitle = 'Edit <%= classify(name) %>';
@@ -12,6 +12,7 @@ import { <%= camelize(singularizedName) %>GridState } from './list.grid-state';
12
12
  templateUrl: './list.component.html',
13
13
  styleUrls: ['./list.component.scss'],
14
14
  changeDetection: ChangeDetectionStrategy.OnPush,
15
+ standalone: false,
15
16
  })
16
17
  export class <%= classify(singularizedName) %>ListComponent extends KendoODataBasedComponent<I<%= classify(singularizedName) %>, <%= classify(singularizedName) %>ListFacade> {
17
18
  public readonly props = <%= classify(singularizedName) %>Properties;<% swaggerObjectProperties.filter(t=> !t.enum).forEach(function(swaggerProperty){ %>