@smartsoft001/crud-shell-angular 1.1.734 → 1.1.738

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.
Files changed (210) hide show
  1. package/{esm2015/index.js → esm2020/index.mjs} +0 -0
  2. package/{esm2015/lib/+state/crud.actions.js → esm2020/lib/+state/crud.actions.mjs} +0 -0
  3. package/esm2020/lib/+state/crud.effects.mjs +182 -0
  4. package/esm2020/lib/+state/crud.facade.mjs +88 -0
  5. package/esm2020/lib/+state/crud.reducer.mjs +212 -0
  6. package/{esm2015/lib/+state/crud.selectors.js → esm2020/lib/+state/crud.selectors.mjs} +0 -0
  7. package/esm2020/lib/components/components.module.mjs +109 -0
  8. package/esm2020/lib/components/export/export.component.mjs +47 -0
  9. package/esm2020/lib/components/filter/base/base.component.mjs +140 -0
  10. package/esm2020/lib/components/filter/check/check.component.mjs +36 -0
  11. package/esm2020/lib/components/filter/date/date.component.mjs +41 -0
  12. package/esm2020/lib/components/filter/date-with-edit/date-with-edit.component.mjs +44 -0
  13. package/esm2020/lib/components/filter/filter.component.mjs +29 -0
  14. package/esm2020/lib/components/filter/flag/flag.component.mjs +16 -0
  15. package/{esm2015/lib/components/filter/index.js → esm2020/lib/components/filter/index.mjs} +0 -0
  16. package/esm2020/lib/components/filter/int/int.component.mjs +33 -0
  17. package/esm2020/lib/components/filter/radio/radio.component.mjs +16 -0
  18. package/esm2020/lib/components/filter/text/text.component.mjs +16 -0
  19. package/esm2020/lib/components/filters/filters.component.mjs +111 -0
  20. package/esm2020/lib/components/filters-config/filters-config.component.mjs +37 -0
  21. package/esm2020/lib/components/group/group.component.mjs +54 -0
  22. package/{esm2015/lib/components/index.js → esm2020/lib/components/index.mjs} +0 -0
  23. package/esm2020/lib/components/multiselect/multiselect.component.mjs +68 -0
  24. package/esm2020/lib/crud-full.module.mjs +105 -0
  25. package/esm2020/lib/crud.config.mjs +17 -0
  26. package/esm2020/lib/crud.module.mjs +107 -0
  27. package/esm2020/lib/factories/list-pagination/list-pagination.factory.mjs +69 -0
  28. package/{esm2015/lib/models/index.js → esm2020/lib/models/index.mjs} +0 -0
  29. package/{esm2015/lib/models/interfaces.js → esm2020/lib/models/interfaces.mjs} +0 -0
  30. package/esm2020/lib/pages/index.mjs +7 -0
  31. package/esm2020/lib/pages/item/base/base.component.mjs +44 -0
  32. package/esm2020/lib/pages/item/item.component.mjs +393 -0
  33. package/esm2020/lib/pages/item/standard/standard.component.mjs +15 -0
  34. package/esm2020/lib/pages/list/base/base.component.mjs +23 -0
  35. package/esm2020/lib/pages/list/list.component.mjs +343 -0
  36. package/esm2020/lib/pages/list/standard/standard.component.mjs +34 -0
  37. package/esm2020/lib/pipes/form-options/form-options.pipe.mjs +55 -0
  38. package/{esm2015/lib/pipes/index.js → esm2020/lib/pipes/index.mjs} +0 -0
  39. package/esm2020/lib/pipes/pipes.module.mjs +20 -0
  40. package/{esm2015/lib/providers/model-possibilities/model-possibilities.provider.js → esm2020/lib/providers/model-possibilities/model-possibilities.provider.mjs} +0 -0
  41. package/esm2020/lib/services/crud/crud.service.mjs +138 -0
  42. package/esm2020/lib/services/list-group/list-group.service.mjs +60 -0
  43. package/esm2020/lib/services/page/page.service.mjs +41 -0
  44. package/{esm2015/lib/services/search/search.service.js → esm2020/lib/services/search/search.service.mjs} +9 -8
  45. package/esm2020/lib/services/socket/socket.service.mjs +17 -0
  46. package/esm2020/smartsoft001-crud-shell-angular.mjs +5 -0
  47. package/fesm2015/smartsoft001-crud-shell-angular.mjs +2568 -0
  48. package/fesm2015/smartsoft001-crud-shell-angular.mjs.map +1 -0
  49. package/fesm2020/smartsoft001-crud-shell-angular.mjs +2728 -0
  50. package/fesm2020/smartsoft001-crud-shell-angular.mjs.map +1 -0
  51. package/lib/+state/crud.effects.d.ts +3 -0
  52. package/lib/+state/crud.effects.d.ts.map +1 -1
  53. package/lib/+state/crud.facade.d.ts +3 -0
  54. package/lib/+state/crud.facade.d.ts.map +1 -1
  55. package/lib/components/components.module.d.ts +22 -0
  56. package/lib/components/components.module.d.ts.map +1 -1
  57. package/lib/components/export/export.component.d.ts +3 -0
  58. package/lib/components/export/export.component.d.ts.map +1 -1
  59. package/lib/components/filter/base/base.component.d.ts +3 -0
  60. package/lib/components/filter/base/base.component.d.ts.map +1 -1
  61. package/lib/components/filter/check/check.component.d.ts +3 -0
  62. package/lib/components/filter/check/check.component.d.ts.map +1 -1
  63. package/lib/components/filter/date/date.component.d.ts +3 -0
  64. package/lib/components/filter/date/date.component.d.ts.map +1 -1
  65. package/lib/components/filter/date-with-edit/date-with-edit.component.d.ts +4 -1
  66. package/lib/components/filter/date-with-edit/date-with-edit.component.d.ts.map +1 -1
  67. package/lib/components/filter/filter.component.d.ts +3 -0
  68. package/lib/components/filter/filter.component.d.ts.map +1 -1
  69. package/lib/components/filter/flag/flag.component.d.ts +3 -0
  70. package/lib/components/filter/flag/flag.component.d.ts.map +1 -1
  71. package/lib/components/filter/int/int.component.d.ts +3 -0
  72. package/lib/components/filter/int/int.component.d.ts.map +1 -1
  73. package/lib/components/filter/radio/radio.component.d.ts +3 -0
  74. package/lib/components/filter/radio/radio.component.d.ts.map +1 -1
  75. package/lib/components/filter/text/text.component.d.ts +3 -0
  76. package/lib/components/filter/text/text.component.d.ts.map +1 -1
  77. package/lib/components/filters/filters.component.d.ts +3 -0
  78. package/lib/components/filters/filters.component.d.ts.map +1 -1
  79. package/lib/components/filters-config/filters-config.component.d.ts +3 -0
  80. package/lib/components/filters-config/filters-config.component.d.ts.map +1 -1
  81. package/lib/components/group/group.component.d.ts +3 -0
  82. package/lib/components/group/group.component.d.ts.map +1 -1
  83. package/lib/components/multiselect/multiselect.component.d.ts +3 -0
  84. package/lib/components/multiselect/multiselect.component.d.ts.map +1 -1
  85. package/lib/crud-full.module.d.ts +20 -0
  86. package/lib/crud-full.module.d.ts.map +1 -1
  87. package/lib/crud.config.d.ts +5 -0
  88. package/lib/crud.config.d.ts.map +1 -1
  89. package/lib/crud.module.d.ts +13 -0
  90. package/lib/crud.module.d.ts.map +1 -1
  91. package/lib/factories/list-pagination/list-pagination.factory.d.ts +3 -0
  92. package/lib/factories/list-pagination/list-pagination.factory.d.ts.map +1 -1
  93. package/lib/pages/index.d.ts +5 -1
  94. package/lib/pages/index.d.ts.map +1 -1
  95. package/lib/pages/item/base/base.component.d.ts +3 -0
  96. package/lib/pages/item/base/base.component.d.ts.map +1 -1
  97. package/lib/pages/item/item.component.d.ts +3 -0
  98. package/lib/pages/item/item.component.d.ts.map +1 -1
  99. package/lib/pages/item/standard/standard.component.d.ts +3 -0
  100. package/lib/pages/item/standard/standard.component.d.ts.map +1 -1
  101. package/lib/pages/list/base/base.component.d.ts +3 -0
  102. package/lib/pages/list/base/base.component.d.ts.map +1 -1
  103. package/lib/pages/list/list.component.d.ts +3 -0
  104. package/lib/pages/list/list.component.d.ts.map +1 -1
  105. package/lib/pages/list/standard/standard.component.d.ts +3 -0
  106. package/lib/pages/list/standard/standard.component.d.ts.map +1 -1
  107. package/lib/pipes/form-options/form-options.pipe.d.ts +3 -0
  108. package/lib/pipes/form-options/form-options.pipe.d.ts.map +1 -1
  109. package/lib/pipes/pipes.module.d.ts +5 -0
  110. package/lib/pipes/pipes.module.d.ts.map +1 -1
  111. package/lib/services/crud/crud.service.d.ts +3 -0
  112. package/lib/services/crud/crud.service.d.ts.map +1 -1
  113. package/lib/services/list-group/list-group.service.d.ts +3 -0
  114. package/lib/services/list-group/list-group.service.d.ts.map +1 -1
  115. package/lib/services/page/page.service.d.ts +3 -0
  116. package/lib/services/page/page.service.d.ts.map +1 -1
  117. package/lib/services/search/search.service.d.ts +3 -0
  118. package/lib/services/search/search.service.d.ts.map +1 -1
  119. package/lib/services/socket/socket.service.d.ts +5 -0
  120. package/lib/services/socket/socket.service.d.ts.map +1 -1
  121. package/package.json +39 -26
  122. package/smartsoft001-crud-shell-angular.d.ts +1 -17
  123. package/smartsoft001-crud-shell-angular.d.ts.map +1 -1
  124. package/bundles/smartsoft001-crud-shell-angular.umd.js +0 -3332
  125. package/bundles/smartsoft001-crud-shell-angular.umd.js.map +0 -1
  126. package/esm2015/lib/+state/crud.effects.js +0 -178
  127. package/esm2015/lib/+state/crud.facade.js +0 -92
  128. package/esm2015/lib/+state/crud.reducer.js +0 -92
  129. package/esm2015/lib/components/components.module.js +0 -65
  130. package/esm2015/lib/components/export/export.component.js +0 -55
  131. package/esm2015/lib/components/filter/base/base.component.js +0 -144
  132. package/esm2015/lib/components/filter/check/check.component.js +0 -34
  133. package/esm2015/lib/components/filter/date/date.component.js +0 -42
  134. package/esm2015/lib/components/filter/date-with-edit/date-with-edit.component.js +0 -43
  135. package/esm2015/lib/components/filter/filter.component.js +0 -30
  136. package/esm2015/lib/components/filter/flag/flag.component.js +0 -13
  137. package/esm2015/lib/components/filter/int/int.component.js +0 -31
  138. package/esm2015/lib/components/filter/radio/radio.component.js +0 -13
  139. package/esm2015/lib/components/filter/text/text.component.js +0 -13
  140. package/esm2015/lib/components/filters/filters.component.js +0 -124
  141. package/esm2015/lib/components/filters-config/filters-config.component.js +0 -46
  142. package/esm2015/lib/components/group/group.component.js +0 -65
  143. package/esm2015/lib/components/multiselect/multiselect.component.js +0 -74
  144. package/esm2015/lib/crud-full.module.js +0 -83
  145. package/esm2015/lib/crud.config.js +0 -14
  146. package/esm2015/lib/crud.module.js +0 -84
  147. package/esm2015/lib/factories/list-pagination/list-pagination.factory.js +0 -73
  148. package/esm2015/lib/pages/index.js +0 -3
  149. package/esm2015/lib/pages/item/base/base.component.js +0 -44
  150. package/esm2015/lib/pages/item/item.component.js +0 -383
  151. package/esm2015/lib/pages/item/standard/standard.component.js +0 -13
  152. package/esm2015/lib/pages/list/base/base.component.js +0 -30
  153. package/esm2015/lib/pages/list/list.component.js +0 -319
  154. package/esm2015/lib/pages/list/standard/standard.component.js +0 -39
  155. package/esm2015/lib/pipes/form-options/form-options.pipe.js +0 -56
  156. package/esm2015/lib/pipes/pipes.module.js +0 -16
  157. package/esm2015/lib/services/crud/crud.service.js +0 -143
  158. package/esm2015/lib/services/list-group/list-group.service.js +0 -61
  159. package/esm2015/lib/services/page/page.service.js +0 -48
  160. package/esm2015/lib/services/socket/socket.service.js +0 -14
  161. package/esm2015/smartsoft001-crud-shell-angular.js +0 -22
  162. package/fesm2015/smartsoft001-crud-shell-angular.js +0 -2676
  163. package/fesm2015/smartsoft001-crud-shell-angular.js.map +0 -1
  164. package/lib/+state/crud.effects.ngfactory.d.ts.map +0 -1
  165. package/lib/+state/crud.facade.ngfactory.d.ts.map +0 -1
  166. package/lib/components/components.module.ngfactory.d.ts.map +0 -1
  167. package/lib/components/export/export.component.ngfactory.d.ts.map +0 -1
  168. package/lib/components/export/export.component.scss.shim.ngstyle.d.ts.map +0 -1
  169. package/lib/components/filter/check/check.component.ngfactory.d.ts.map +0 -1
  170. package/lib/components/filter/check/check.component.scss.shim.ngstyle.d.ts.map +0 -1
  171. package/lib/components/filter/date/date.component.ngfactory.d.ts.map +0 -1
  172. package/lib/components/filter/date/date.component.scss.shim.ngstyle.d.ts.map +0 -1
  173. package/lib/components/filter/date-with-edit/date-with-edit.component.ngfactory.d.ts.map +0 -1
  174. package/lib/components/filter/date-with-edit/date-with-edit.component.scss.shim.ngstyle.d.ts.map +0 -1
  175. package/lib/components/filter/filter.component.ngfactory.d.ts.map +0 -1
  176. package/lib/components/filter/filter.component.scss.shim.ngstyle.d.ts.map +0 -1
  177. package/lib/components/filter/flag/flag.component.ngfactory.d.ts.map +0 -1
  178. package/lib/components/filter/flag/flag.component.scss.shim.ngstyle.d.ts.map +0 -1
  179. package/lib/components/filter/int/int.component.ngfactory.d.ts.map +0 -1
  180. package/lib/components/filter/int/int.component.scss.shim.ngstyle.d.ts.map +0 -1
  181. package/lib/components/filter/radio/radio.component.ngfactory.d.ts.map +0 -1
  182. package/lib/components/filter/radio/radio.component.scss.shim.ngstyle.d.ts.map +0 -1
  183. package/lib/components/filter/text/text.component.ngfactory.d.ts.map +0 -1
  184. package/lib/components/filter/text/text.component.scss.shim.ngstyle.d.ts.map +0 -1
  185. package/lib/components/filters/filters.component.ngfactory.d.ts.map +0 -1
  186. package/lib/components/filters/filters.component.scss.shim.ngstyle.d.ts.map +0 -1
  187. package/lib/components/filters-config/filters-config.component.ngfactory.d.ts.map +0 -1
  188. package/lib/components/filters-config/filters-config.component.scss.shim.ngstyle.d.ts.map +0 -1
  189. package/lib/components/group/group.component.ngfactory.d.ts.map +0 -1
  190. package/lib/components/group/group.component.scss.shim.ngstyle.d.ts.map +0 -1
  191. package/lib/components/multiselect/multiselect.component.ngfactory.d.ts.map +0 -1
  192. package/lib/components/multiselect/multiselect.component.scss.shim.ngstyle.d.ts.map +0 -1
  193. package/lib/crud-full.module.ngfactory.d.ts.map +0 -1
  194. package/lib/crud.config.ngfactory.d.ts.map +0 -1
  195. package/lib/crud.module.ngfactory.d.ts.map +0 -1
  196. package/lib/factories/list-pagination/list-pagination.factory.ngfactory.d.ts.map +0 -1
  197. package/lib/pages/item/item.component.ngfactory.d.ts.map +0 -1
  198. package/lib/pages/item/standard/standard.component.ngfactory.d.ts.map +0 -1
  199. package/lib/pages/item/standard/standard.component.scss.shim.ngstyle.d.ts.map +0 -1
  200. package/lib/pages/list/list.component.ngfactory.d.ts.map +0 -1
  201. package/lib/pages/list/standard/standard.component.ngfactory.d.ts.map +0 -1
  202. package/lib/pages/list/standard/standard.component.scss.shim.ngstyle.d.ts.map +0 -1
  203. package/lib/pipes/form-options/form-options.pipe.ngfactory.d.ts.map +0 -1
  204. package/lib/pipes/pipes.module.ngfactory.d.ts.map +0 -1
  205. package/lib/services/crud/crud.service.ngfactory.d.ts.map +0 -1
  206. package/lib/services/list-group/list-group.service.ngfactory.d.ts.map +0 -1
  207. package/lib/services/page/page.service.ngfactory.d.ts.map +0 -1
  208. package/lib/services/search/search.service.ngfactory.d.ts.map +0 -1
  209. package/lib/services/socket/socket.service.ngfactory.d.ts.map +0 -1
  210. package/smartsoft001-crud-shell-angular.metadata.json +0 -1
@@ -12,6 +12,7 @@ import { IonContent } from "@ionic/angular";
12
12
  import { ItemStandardComponent } from "./standard/standard.component";
13
13
  import { CrudItemPageBaseComponent } from "./base/base.component";
14
14
  import { PageService } from "../../services/page/page.service";
15
+ import * as i0 from "@angular/core";
15
16
  declare const ItemComponent_base: new (cd: ChangeDetectorRef, moduleRef: NgModuleRef<any>, componentFactoryResolver: ComponentFactoryResolver) => import("@smartsoft001/angular").IDynamicComponent<CrudItemPageBaseComponent<any>>;
16
17
  export declare class ItemComponent<T extends IEntity<string>> extends ItemComponent_base implements OnInit {
17
18
  private router;
@@ -62,6 +63,8 @@ export declare class ItemComponent<T extends IEntity<string>> extends ItemCompon
62
63
  private removeParagraph;
63
64
  private checkFirstInvalid;
64
65
  private getInvalidFields;
66
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItemComponent<any>, never>;
67
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItemComponent<any>, "smart-crud-item-page", never, {}, {}, never, ["*"]>;
65
68
  }
66
69
  export {};
67
70
  //# sourceMappingURL=item.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"item.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/pages/item/item.component.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"item.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/pages/item/item.component.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,8 @@
1
1
  import { IEntity } from "@smartsoft001/domain-core";
2
2
  import { CrudItemPageBaseComponent } from "../base/base.component";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class ItemStandardComponent<T extends IEntity<string>> extends CrudItemPageBaseComponent<T> {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItemStandardComponent<any>, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItemStandardComponent<any>, "smart-crud-item-standard-page", never, {}, {}, never, never>;
4
7
  }
5
8
  //# sourceMappingURL=standard.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"standard.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/pages/item/standard/standard.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,yBAAyB,EAAC,MAAM,wBAAwB,CAAC;AAEjE,qBAKa,qBAAqB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,yBAAyB,CAAC,CAAC,CAAC;CAAG"}
1
+ {"version":3,"file":"standard.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/pages/item/standard/standard.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,yBAAyB,EAAC,MAAM,wBAAwB,CAAC;;AAEjE,qBAKa,qBAAqB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,yBAAyB,CAAC,CAAC,CAAC;yCAArF,qBAAqB;2CAArB,qBAAqB;CAAmE"}
@@ -2,11 +2,14 @@ import { ViewContainerRef } from "@angular/core";
2
2
  import { BaseComponent, DynamicComponentType, IListOptions } from "@smartsoft001/angular";
3
3
  import { IEntity } from "@smartsoft001/domain-core";
4
4
  import { CrudFullConfig } from "../../../crud.config";
5
+ import * as i0 from "@angular/core";
5
6
  export declare abstract class CrudListPageBaseComponent<T extends IEntity<string>> extends BaseComponent {
6
7
  config: CrudFullConfig<T>;
7
8
  static smartType: DynamicComponentType;
8
9
  contentTpl: ViewContainerRef;
9
10
  listOptions: IListOptions<T>;
10
11
  constructor(config: CrudFullConfig<T>);
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudListPageBaseComponent<any>, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CrudListPageBaseComponent<any>, never, never, { "listOptions": "listOptions"; }, {}, never>;
11
14
  }
12
15
  //# sourceMappingURL=base.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"base.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/pages/list/base/base.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIH,gBAAgB,EACnB,MAAM,eAAe,CAAC;AAEvB,OAAO,EACH,aAAa,EACb,oBAAoB,EACpB,YAAY,EACf,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAC,cAAc,EAAC,MAAM,sBAAsB,CAAC;AAEpD,8BACsB,yBAAyB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa;IAUjF,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;IATpC,MAAM,CAAC,SAAS,EAAE,oBAAoB,CAAoB;IAG1D,UAAU,EAAE,gBAAgB,CAAC;IAG7B,WAAW,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;gBAGlB,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;CAIvC"}
1
+ {"version":3,"file":"base.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/pages/list/base/base.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIH,gBAAgB,EACnB,MAAM,eAAe,CAAC;AAEvB,OAAO,EACH,aAAa,EACb,oBAAoB,EACpB,YAAY,EACf,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAC,cAAc,EAAC,MAAM,sBAAsB,CAAC;;AAEpD,8BACsB,yBAAyB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa;IAUjF,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;IATpC,MAAM,CAAC,SAAS,EAAE,oBAAoB,CAAoB;IAG1D,UAAU,EAAE,gBAAgB,CAAC;IAG7B,WAAW,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;gBAGlB,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;yCAVlB,yBAAyB;2CAAzB,yBAAyB;CAc9C"}
@@ -10,6 +10,7 @@ import { CrudListPaginationFactory } from "../../factories/list-pagination/list-
10
10
  import { PageService } from "../../services/page/page.service";
11
11
  import { CrudListPageBaseComponent } from "./base/base.component";
12
12
  import { CrudSearchService } from "../../services/search/search.service";
13
+ import * as i0 from "@angular/core";
13
14
  declare const ListComponent_base: new (cd: ChangeDetectorRef, moduleRef: NgModuleRef<any>, componentFactoryResolver: ComponentFactoryResolver) => import("@smartsoft001/angular").IDynamicComponent<CrudListPageBaseComponent<any>>;
14
15
  export declare class ListComponent<T extends IEntity<string>> extends ListComponent_base implements OnInit, OnDestroy {
15
16
  private facade;
@@ -45,6 +46,8 @@ export declare class ListComponent<T extends IEntity<string>> extends ListCompon
45
46
  private clear;
46
47
  private getEndButtons;
47
48
  private initTopComponent;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent<any>, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent<any>, "smart-crud-list-page", never, {}, {}, never, ["*"]>;
48
51
  }
49
52
  export {};
50
53
  //# sourceMappingURL=list.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/pages/list/list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAEC,wBAAwB,EAAE,UAAU,EACtD,QAAQ,EAAE,WAAW,EAAE,SAAS,EAChC,MAAM,EAAE,SAAS,EAAE,WAAW,EAE9B,gBAAgB,EACjB,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAGlC,OAAO,EAEL,sBAAsB,EAAE,uBAAuB,EAC/C,eAAe,EAEf,YAAY,EACZ,YAAY,EAEZ,WAAW,EAAE,YAAY,EAC1B,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAQpD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAItD,OAAO,EAAE,yBAAyB,EAAE,MAAM,yDAAyD,CAAC;AACpG,OAAO,EAAC,WAAW,EAAC,MAAM,kCAAkC,CAAC;AAC7D,OAAO,EAAC,yBAAyB,EAAC,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAC,iBAAiB,EAAC,MAAM,sCAAsC,CAAC;;AAEvE,qBAea,aAAa,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAChD,SAAQ,kBACV,YAAW,MAAM,EAAE,SAAS;IAuB1B,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,sBAAsB;IAC9B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,WAAW;IACZ,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;IAChC,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,wBAAwB;IAnClC,WAAW,EAAE,YAAY,CAAC;IAC1B,WAAW,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;IAC7B,MAAM,EAAE,WAAW,CAAC;IACpB,KAAK,EAAE;QAAE,IAAI,MAAC;QAAC,IAAI,MAAA;KAAE,CAAC;IAEtB,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAI9B;IAGF,MAAM,EAAE,gBAAgB,CAAC;IAGzB,UAAU,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC;IAG7B,eAAe,qCAA4C;gBAGjD,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,MAAM,EAAE,MAAM,EACd,sBAAsB,EAAE,sBAAsB,CAAC,CAAC,CAAC,EACjD,QAAQ,EAAE,QAAQ,EAClB,EAAE,EAAE,iBAAiB,EACrB,WAAW,EAAE,WAAW,EACxB,eAAe,EAAE,eAAe,EAChC,gBAAgB,EAAE,yBAAyB,CAAC,CAAC,CAAC,EAC9C,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU,EACtB,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,EAC5B,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC,EACxB,aAAa,EAAE,iBAAiB,EAChC,SAAS,EAAE,WAAW,CAAC,GAAG,CAAC,EAC3B,wBAAwB,EAAE,wBAAwB;IAS5D,iBAAiB,IAAI,IAAI;IAInB,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IA+K/B,OAAO,CAAC,aAAa;YAMP,KAAK;IAWnB,OAAO,CAAC,aAAa;IA8ErB,OAAO,CAAC,gBAAgB;CAqBzB"}
1
+ {"version":3,"file":"list.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/pages/list/list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAEC,wBAAwB,EAAE,UAAU,EACtD,QAAQ,EAAE,WAAW,EAAE,SAAS,EAChC,MAAM,EAAE,SAAS,EAAE,WAAW,EAE9B,gBAAgB,EACjB,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAGlC,OAAO,EAEL,sBAAsB,EAAE,uBAAuB,EAC/C,eAAe,EAEf,YAAY,EACZ,YAAY,EAEZ,WAAW,EAAE,YAAY,EAC1B,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAQpD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAItD,OAAO,EAAE,yBAAyB,EAAE,MAAM,yDAAyD,CAAC;AACpG,OAAO,EAAC,WAAW,EAAC,MAAM,kCAAkC,CAAC;AAC7D,OAAO,EAAC,yBAAyB,EAAC,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAC,iBAAiB,EAAC,MAAM,sCAAsC,CAAC;;;AAEvE,qBAea,aAAa,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAChD,SAAQ,kBACV,YAAW,MAAM,EAAE,SAAS;IAuB1B,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,sBAAsB;IAC9B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,WAAW;IACZ,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;IAChC,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,wBAAwB;IAnClC,WAAW,EAAE,YAAY,CAAC;IAC1B,WAAW,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;IAC7B,MAAM,EAAE,WAAW,CAAC;IACpB,KAAK,EAAE;QAAE,IAAI,MAAC;QAAC,IAAI,MAAA;KAAE,CAAC;IAEtB,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAI9B;IAGF,MAAM,EAAE,gBAAgB,CAAC;IAGzB,UAAU,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC;IAG7B,eAAe,qCAA4C;gBAGjD,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,MAAM,EAAE,MAAM,EACd,sBAAsB,EAAE,sBAAsB,CAAC,CAAC,CAAC,EACjD,QAAQ,EAAE,QAAQ,EAClB,EAAE,EAAE,iBAAiB,EACrB,WAAW,EAAE,WAAW,EACxB,eAAe,EAAE,eAAe,EAChC,gBAAgB,EAAE,yBAAyB,CAAC,CAAC,CAAC,EAC9C,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU,EACtB,WAAW,EAAE,WAAW,CAAC,CAAC,CAAC,EAC5B,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC,EACxB,aAAa,EAAE,iBAAiB,EAChC,SAAS,EAAE,WAAW,CAAC,GAAG,CAAC,EAC3B,wBAAwB,EAAE,wBAAwB;IAS5D,iBAAiB,IAAI,IAAI;IAInB,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IA+K/B,OAAO,CAAC,aAAa;YAMP,KAAK;IAWnB,OAAO,CAAC,aAAa;IA8ErB,OAAO,CAAC,gBAAgB;yCAlUb,aAAa;2CAAb,aAAa;CAuVzB"}
@@ -2,10 +2,13 @@ import { IEntity } from "@smartsoft001/domain-core";
2
2
  import { CrudListPageBaseComponent } from "../base/base.component";
3
3
  import { CrudFacade } from "../../../+state/crud.facade";
4
4
  import { CrudFullConfig } from "../../../crud.config";
5
+ import * as i0 from "@angular/core";
5
6
  export declare class ListStandardComponent<T extends IEntity<string>> extends CrudListPageBaseComponent<T> {
6
7
  private readonly facade;
7
8
  readonly config: CrudFullConfig<T>;
8
9
  isSearch$: import("rxjs").Observable<boolean>;
9
10
  constructor(facade: CrudFacade<T>, config: CrudFullConfig<T>);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListStandardComponent<any>, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListStandardComponent<any>, "smart-crud-list-standard-page", never, {}, {}, never, never>;
10
13
  }
11
14
  //# sourceMappingURL=standard.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"standard.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/pages/list/standard/standard.component.ts"],"names":[],"mappings":"AAGA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,yBAAyB,EAAC,MAAM,wBAAwB,CAAC;AAEjE,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAC,cAAc,EAAC,MAAM,sBAAsB,CAAC;AAEpD,qBAQa,qBAAqB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,yBAAyB,CAAC,CAAC,CAAC;IAQ1F,OAAO,CAAC,QAAQ,CAAC,MAAM;aACP,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;IAR7C,SAAS,qCAIP;gBAGmB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACtB,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;CAIhD"}
1
+ {"version":3,"file":"standard.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/pages/list/standard/standard.component.ts"],"names":[],"mappings":"AAGA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,yBAAyB,EAAC,MAAM,wBAAwB,CAAC;AAEjE,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AACzD,OAAO,EAAC,cAAc,EAAC,MAAM,sBAAsB,CAAC;;AAEpD,qBAQa,qBAAqB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,yBAAyB,CAAC,CAAC,CAAC;IAQ1F,OAAO,CAAC,QAAQ,CAAC,MAAM;aACP,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;IAR7C,SAAS,qCAIP;gBAGmB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACtB,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;yCATpC,qBAAqB;2CAArB,qBAAqB;CAajC"}
@@ -2,11 +2,14 @@ import { PipeTransform, Type } from "@angular/core";
2
2
  import { IEntity } from "@smartsoft001/domain-core";
3
3
  import { IFormOptions, InputBaseComponent } from "@smartsoft001/angular";
4
4
  import { ICrudModelPossibilitiesProvider } from "../../providers/model-possibilities/model-possibilities.provider";
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FormOptionsPipe<T extends IEntity<string>> implements PipeTransform {
6
7
  private modelPossibilitiesProvider;
7
8
  constructor(modelPossibilitiesProvider: ICrudModelPossibilitiesProvider);
8
9
  transform(item: T, mode: string, type: any, uniqueProvider?: (values: Record<keyof T, any>) => Promise<boolean>, inputComponents?: {
9
10
  [key: string]: Type<InputBaseComponent<any>>;
10
11
  }): IFormOptions<T>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormOptionsPipe<any>, [{ optional: true; }]>;
13
+ static ɵpipe: i0.ɵɵPipeDeclaration<FormOptionsPipe<any>, "smartFormOptions">;
11
14
  }
12
15
  //# sourceMappingURL=form-options.pipe.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"form-options.pipe.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/pipes/form-options/form-options.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,aAAa,EAAE,IAAI,EAAC,MAAM,eAAe,CAAC;AAE1E,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAC,YAAY,EAAE,kBAAkB,EAAC,MAAM,uBAAuB,CAAC;AAEvE,OAAO,EAEL,+BAA+B,EAChC,MAAM,kEAAkE,CAAC;AAE1E,qBAGa,eAAe,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CACpD,YAAW,aAAa;IAItB,OAAO,CAAC,0BAA0B;gBAA1B,0BAA0B,EAAE,+BAA+B;IAGrE,SAAS,CACP,IAAI,EAAE,CAAC,EACP,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,GAAG,EACT,cAAc,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,EACnE,eAAe,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,CAAA;KAAE,GACjE,YAAY,CAAC,CAAC,CAAC;CAmCnB"}
1
+ {"version":3,"file":"form-options.pipe.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/pipes/form-options/form-options.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,aAAa,EAAE,IAAI,EAAC,MAAM,eAAe,CAAC;AAE1E,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAC,YAAY,EAAE,kBAAkB,EAAC,MAAM,uBAAuB,CAAC;AAEvE,OAAO,EAEL,+BAA+B,EAChC,MAAM,kEAAkE,CAAC;;AAE1E,qBAGa,eAAe,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CACpD,YAAW,aAAa;IAItB,OAAO,CAAC,0BAA0B;gBAA1B,0BAA0B,EAAE,+BAA+B;IAGrE,SAAS,CACP,IAAI,EAAE,CAAC,EACP,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,GAAG,EACT,cAAc,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,GAAG,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,EACnE,eAAe,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,CAAA;KAAE,GACjE,YAAY,CAAC,CAAC,CAAC;yCAdP,eAAe;uCAAf,eAAe;CAiD3B"}
@@ -1,3 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./form-options/form-options.pipe";
1
3
  export declare class CrudPipesModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudPipesModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CrudPipesModule, [typeof i1.FormOptionsPipe], never, [typeof i1.FormOptionsPipe]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<CrudPipesModule>;
2
7
  }
3
8
  //# sourceMappingURL=pipes.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"pipes.module.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/pipes/pipes.module.ts"],"names":[],"mappings":"AAIA,qBAQa,eAAe;CAE3B"}
1
+ {"version":3,"file":"pipes.module.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/pipes/pipes.module.ts"],"names":[],"mappings":";;AAIA,qBAQa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAE3B"}
@@ -4,6 +4,7 @@ import { IEntity } from "@smartsoft001/domain-core";
4
4
  import { CrudConfig } from "../../crud.config";
5
5
  import { ICrudCreateManyOptions, ICrudFilter } from "../../models/interfaces";
6
6
  import { SocketService } from "../socket/socket.service";
7
+ import * as i0 from "@angular/core";
7
8
  export declare class CrudService<T extends IEntity<string>> {
8
9
  protected config: CrudConfig<T>;
9
10
  protected http: HttpClient;
@@ -31,5 +32,7 @@ export declare class CrudService<T extends IEntity<string>> {
31
32
  })[]): Observable<any>;
32
33
  delete(id: string): Observable<void>;
33
34
  protected getQuery(filter: ICrudFilter): string;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudService<any>, [null, null, { optional: true; }]>;
36
+ static ɵprov: i0.ɵɵInjectableDeclaration<CrudService<any>>;
34
37
  }
35
38
  //# sourceMappingURL=crud.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"crud.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/crud/crud.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAW,UAAU,EAAC,MAAM,MAAM,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAGlD,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,sBAAsB,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC9E,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,qBACa,WAAW,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAO9C,SAAS,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAC/B,SAAS,CAAC,IAAI,EAAE,UAAU;IACd,SAAS,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC;IARhD,SAAS,CAAC,UAAU;;;MAGlB;gBAGU,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,IAAI,EAAE,UAAU,EACJ,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC;IAShD,MAAM,CAAC,IAAI,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC;IAanC,UAAU,CACR,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,EACf,OAAO,EAAE,sBAAsB,GAC9B,UAAU,CAAC,IAAI,CAAC;IAOnB,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC;IAIlC,OAAO,CACL,MAAM,GAAE,WAAkB,GACzB,UAAU,CAAC;QAAE,IAAI,EAAE,CAAC,EAAE,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,KAAK,MAAA;KAAE,CAAC;IAMvD,UAAU,CAAC,MAAM,EAAE,WAAkB,EAAE,MAAM,KAAA,GAAG,UAAU,CAAC,IAAI,CAAC;IAsDhE,MAAM,CAAC,IAAI,EAAE,CAAC,GAAG,UAAU,CAAC,IAAI,CAAC;IAIjC,aAAa,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,GAAG,UAAU,CAAC,IAAI,CAAC;IAIlE,iBAAiB,CAAC,KAAK,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC,EAAE,GAAG,UAAU,CAAC,GAAG,CAAC;IAM1E,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC;IAIpC,SAAS,CAAC,QAAQ,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM;CAmChD"}
1
+ {"version":3,"file":"crud.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/crud/crud.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAW,UAAU,EAAC,MAAM,MAAM,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAGlD,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,sBAAsB,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC9E,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;;AAEzD,qBACa,WAAW,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAO9C,SAAS,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAC/B,SAAS,CAAC,IAAI,EAAE,UAAU;IACd,SAAS,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC;IARhD,SAAS,CAAC,UAAU;;;MAGlB;gBAGU,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,IAAI,EAAE,UAAU,EACJ,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC;IAShD,MAAM,CAAC,IAAI,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC;IAanC,UAAU,CACR,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,EACf,OAAO,EAAE,sBAAsB,GAC9B,UAAU,CAAC,IAAI,CAAC;IAOnB,OAAO,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC;IAIlC,OAAO,CACL,MAAM,GAAE,WAAkB,GACzB,UAAU,CAAC;QAAE,IAAI,EAAE,CAAC,EAAE,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,KAAK,MAAA;KAAE,CAAC;IAMvD,UAAU,CAAC,MAAM,EAAE,WAAkB,EAAE,MAAM,KAAA,GAAG,UAAU,CAAC,IAAI,CAAC;IAsDhE,MAAM,CAAC,IAAI,EAAE,CAAC,GAAG,UAAU,CAAC,IAAI,CAAC;IAIjC,aAAa,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,GAAG,UAAU,CAAC,IAAI,CAAC;IAIlE,iBAAiB,CAAC,KAAK,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC,EAAE,GAAG,UAAU,CAAC,GAAG,CAAC;IAM1E,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC;IAIpC,SAAS,CAAC,QAAQ,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM;yCA7HpC,WAAW;6CAAX,WAAW;CAgKvB"}
@@ -1,6 +1,7 @@
1
1
  import { IEntity } from "@smartsoft001/domain-core";
2
2
  import { ICrudListGroup } from "../../models/interfaces";
3
3
  import { CrudFacade } from "../../+state/crud.facade";
4
+ import * as i0 from "@angular/core";
4
5
  export declare class CrudListGroupService<T extends IEntity<string>> {
5
6
  private facade;
6
7
  private _destroyed;
@@ -8,5 +9,7 @@ export declare class CrudListGroupService<T extends IEntity<string>> {
8
9
  change(val: any, item: ICrudListGroup, groups: Array<ICrudListGroup>, force: boolean): void;
9
10
  destroy(groups: Array<ICrudListGroup>): void;
10
11
  private refresh;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudListGroupService<any>, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<CrudListGroupService<any>>;
11
14
  }
12
15
  //# sourceMappingURL=list-group.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-group.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/list-group/list-group.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAIlD,OAAO,EAAC,cAAc,EAAC,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAEtD,qBACa,oBAAoB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAG3C,OAAO,CAAC,MAAM;IAF1B,OAAO,CAAC,UAAU,CAA6B;gBAE3B,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAGzC,MAAM,CAAC,GAAG,KAAA,EAAE,IAAI,EAAE,cAAc,EAAE,MAAM,EAAE,KAAK,CAAC,cAAc,CAAC,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI;IAyBtF,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI;IAU5C,OAAO,CAAC,OAAO;CAWlB"}
1
+ {"version":3,"file":"list-group.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/list-group/list-group.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAIlD,OAAO,EAAC,cAAc,EAAC,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;;AAEtD,qBACa,oBAAoB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAG3C,OAAO,CAAC,MAAM;IAF1B,OAAO,CAAC,UAAU,CAA6B;gBAE3B,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAGzC,MAAM,CAAC,GAAG,KAAA,EAAE,IAAI,EAAE,cAAc,EAAE,MAAM,EAAE,KAAK,CAAC,cAAc,CAAC,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI;IAyBtF,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI;IAU5C,OAAO,CAAC,OAAO;yCAzCN,oBAAoB;6CAApB,oBAAoB;CAoDhC"}
@@ -1,9 +1,12 @@
1
1
  import { AuthService } from "@smartsoft001/angular";
2
2
  import { CrudFullConfig } from "../../crud.config";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class PageService<T> {
4
5
  private authService;
5
6
  private config;
6
7
  constructor(authService: AuthService, config: CrudFullConfig<T>);
7
8
  checkPermissions(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageService<any>, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<PageService<any>>;
8
11
  }
9
12
  //# sourceMappingURL=page.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"page.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/page/page.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,WAAW,EAAC,MAAM,uBAAuB,CAAC;AAGlD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAEnD,qBACa,WAAW,CAAC,CAAC;IAElB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,MAAM;gBADN,WAAW,EAAE,WAAW,EACxB,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;IAGrC,gBAAgB,IAAI,IAAI;CA+B3B"}
1
+ {"version":3,"file":"page.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/page/page.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,WAAW,EAAC,MAAM,uBAAuB,CAAC;AAGlD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;;AAEnD,qBACa,WAAW,CAAC,CAAC;IAElB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,MAAM;gBADN,WAAW,EAAE,WAAW,EACxB,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;IAGrC,gBAAgB,IAAI,IAAI;yCANf,WAAW;6CAAX,WAAW;CAqCvB"}
@@ -1,5 +1,6 @@
1
1
  import { Observable } from "rxjs";
2
2
  import { ICrudFilter } from "../../models/interfaces";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class CrudSearchService {
4
5
  private _filterSource;
5
6
  private _enabledSource;
@@ -9,5 +10,7 @@ export declare class CrudSearchService {
9
10
  filter$: Observable<Partial<ICrudFilter>>;
10
11
  setFilter(val: Partial<ICrudFilter>): void;
11
12
  setEnabled(val: boolean): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudSearchService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<CrudSearchService>;
12
15
  }
13
16
  //# sourceMappingURL=search.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/search/search.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAkB,UAAU,EAAgB,MAAM,MAAM,CAAC;AAGhE,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AAEpD,qBAGa,iBAAiB;IAC1B,OAAO,CAAC,aAAa,CAAmD;IACxE,OAAO,CAAC,cAAc,CAAuC;IAE7D,IAAI,MAAM,IAAI,OAAO,CAAC,WAAW,CAAC,CAGjC;IAED,IAAI,OAAO,IAAI,OAAO,CAErB;IAED,QAAQ,sBAAsC;IAE9C,OAAO,EAAE,UAAU,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAOvC;IAEF,SAAS,CAAC,GAAG,EAAE,OAAO,CAAC,WAAW,CAAC,GAAG,IAAI;IAI1C,UAAU,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;CAGjC"}
1
+ {"version":3,"file":"search.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/search/search.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAkB,UAAU,EAAgB,MAAM,MAAM,CAAC;AAGhE,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;;AAEpD,qBAGa,iBAAiB;IAC1B,OAAO,CAAC,aAAa,CAAmD;IACxE,OAAO,CAAC,cAAc,CAAuC;IAE7D,IAAI,MAAM,IAAI,OAAO,CAAC,WAAW,CAAC,CAGjC;IAED,IAAI,OAAO,IAAI,OAAO,CAErB;IAED,QAAQ,sBAAsC;IAE9C,OAAO,EAAE,UAAU,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAOvC;IAEF,SAAS,CAAC,GAAG,EAAE,OAAO,CAAC,WAAW,CAAC,GAAG,IAAI;IAI1C,UAAU,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;yCA5BrB,iBAAiB;6CAAjB,iBAAiB;CA+B7B"}
@@ -1,5 +1,10 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class SocketService<T> {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<SocketService<any>, never>;
4
+ static ɵprov: i0.ɵɵInjectableDeclaration<SocketService<any>>;
2
5
  }
3
6
  export declare class NotSocketService<T> {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotSocketService<any>, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotSocketService<any>>;
4
9
  }
5
10
  //# sourceMappingURL=socket.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"socket.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/socket/socket.service.ts"],"names":[],"mappings":"AAIA,qBACa,aAAa,CAAC,CAAC;CAW3B;AAED,qBACa,gBAAgB,CAAC,CAAC;CAAK"}
1
+ {"version":3,"file":"socket.service.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/services/socket/socket.service.ts"],"names":[],"mappings":";AAIA,qBACa,aAAa,CAAC,CAAC;yCAAf,aAAa;6CAAb,aAAa;CAWzB;AAED,qBACa,gBAAgB,CAAC,CAAC;yCAAlB,gBAAgB;6CAAhB,gBAAgB;CAAO"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartsoft001/crud-shell-angular",
3
- "version": "1.1.734",
3
+ "version": "1.1.738",
4
4
  "description": "This library was generated with [Nx](https://nx.dev).",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,48 +12,61 @@
12
12
  "url": "https://github.com/emiljuchnikowski/smartsoft/issues"
13
13
  },
14
14
  "homepage": "https://github.com/emiljuchnikowski/smartsoft#readme",
15
- "main": "bundles/smartsoft001-crud-shell-angular.umd.js",
16
- "module": "fesm2015/smartsoft001-crud-shell-angular.js",
17
- "es2015": "fesm2015/smartsoft001-crud-shell-angular.js",
18
- "esm2015": "esm2015/smartsoft001-crud-shell-angular.js",
19
- "fesm2015": "fesm2015/smartsoft001-crud-shell-angular.js",
15
+ "module": "fesm2015/smartsoft001-crud-shell-angular.mjs",
16
+ "es2020": "fesm2020/smartsoft001-crud-shell-angular.mjs",
17
+ "esm2020": "esm2020/smartsoft001-crud-shell-angular.mjs",
18
+ "fesm2020": "fesm2020/smartsoft001-crud-shell-angular.mjs",
19
+ "fesm2015": "fesm2015/smartsoft001-crud-shell-angular.mjs",
20
20
  "typings": "smartsoft001-crud-shell-angular.d.ts",
21
- "metadata": "smartsoft001-crud-shell-angular.metadata.json",
21
+ "exports": {
22
+ "./package.json": {
23
+ "default": "./package.json"
24
+ },
25
+ ".": {
26
+ "types": "./smartsoft001-crud-shell-angular.d.ts",
27
+ "esm2020": "./esm2020/smartsoft001-crud-shell-angular.mjs",
28
+ "es2020": "./fesm2020/smartsoft001-crud-shell-angular.mjs",
29
+ "es2015": "./fesm2015/smartsoft001-crud-shell-angular.mjs",
30
+ "node": "./fesm2015/smartsoft001-crud-shell-angular.mjs",
31
+ "default": "./fesm2020/smartsoft001-crud-shell-angular.mjs"
32
+ }
33
+ },
22
34
  "sideEffects": false,
23
35
  "dependencies": {
24
- "tslib": "^2.2.0",
25
- "@ngrx/store": "12.5.0",
26
- "@smartsoft001/domain-core": "1.0.748",
27
- "@smartsoft001/models": "1.0.775",
36
+ "tslib": "^2.3.0",
37
+ "@ngrx/store": "13.0.2",
38
+ "@smartsoft001/domain-core": "1.0.752",
39
+ "@smartsoft001/models": "1.0.779",
28
40
  "reflect-metadata": "0.1.13",
29
- "@smartsoft001/utils": "1.0.810",
41
+ "@smartsoft001/utils": "1.0.814",
42
+ "@angular/common": "13.2.7",
43
+ "@angular/core": "13.2.7",
30
44
  "lodash": "^4.17.20",
31
45
  "guid-typescript": "1.0.9",
32
46
  "flatted": "^3.2.4",
33
47
  "md5": "2.3.0",
34
- "rxjs": "6.6.3",
35
- "@angular/core": "12.2.7",
36
- "@angular/platform-browser-dynamic": "12.2.7",
37
- "@smartsoft001/users": "1.0.767",
38
- "@smartsoft001/angular": "1.1.800",
39
- "@ngrx/effects": "12.5.0",
40
- "@angular/common": "12.2.7",
41
- "@angular/router": "12.2.7",
48
+ "rxjs": "^7.0.0",
49
+ "@angular/platform-browser-dynamic": "13.2.7",
50
+ "@smartsoft001/users": "1.0.771",
51
+ "@smartsoft001/angular": "1.1.804",
52
+ "@ngrx/effects": "13.0.2",
53
+ "@angular/router": "13.2.7",
42
54
  "chart.js": "2.9.4",
43
55
  "ng2-charts": "2.4.2",
44
- "@ionic/angular": "^5.5.2",
45
- "@angular/forms": "12.2.7",
56
+ "@ionic/angular": "^6.0.14",
57
+ "@angular/forms": "13.2.7",
46
58
  "@ngx-translate/core": "^13.0.0",
47
- "@angular/material": "12.2.7",
59
+ "@angular/material": "13.2.6",
48
60
  "ngx-color-picker": "^10.1.0",
49
- "@angular/cdk": "12.2.7",
61
+ "@angular/cdk": "13.2.6",
50
62
  "ngx-editor": "9.0.2",
51
63
  "ng-lazyload-image": "^9.1.0",
52
64
  "@angular/material-moment-adapter": "^12.2.1",
65
+ "ng-dynamic-component": "^10.1.0",
53
66
  "moment": "^2.27.0",
54
- "@ngrx/router-store": "12.5.0",
67
+ "@ngrx/router-store": "13.0.2",
55
68
  "lodash-decorators": "^6.0.1",
56
- "@angular/platform-browser": "12.2.7",
69
+ "@angular/platform-browser": "13.2.7",
57
70
  "ng-table-virtual-scroll": "^1.3.8",
58
71
  "jwt-decode": "3.1.1",
59
72
  "@capacitor/core": "^2.4.2",
@@ -1,22 +1,6 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@smartsoft001/crud-shell-angular" />
4
5
  export * from './index';
5
- export { CrudComponentsModule as ɵc } from './lib/components/components.module';
6
- export { ExportComponent as ɵd } from './lib/components/export/export.component';
7
- export { FilterCheckComponent as ɵm, FilterComponent as ɵe, FilterDateComponent as ɵh, FilterDateWithEditComponent as ɵi, FilterFlagComponent as ɵl, FilterIntComponent as ɵn, FilterRadioComponent as ɵj, FilterTextComponent as ɵf } from './lib/components/filter';
8
- export { FiltersConfigComponent as ɵg } from './lib/components/filters-config/filters-config.component';
9
- export { FiltersComponent as ɵk } from './lib/components/filters/filters.component';
10
- export { GroupComponent as ɵp } from './lib/components/group/group.component';
11
- export { MultiselectComponent as ɵo } from './lib/components/multiselect/multiselect.component';
12
- export { CrudItemPageBaseComponent as ɵv } from './lib/pages/item/base/base.component';
13
- export { ItemComponent as ɵt } from './lib/pages/item/item.component';
14
- export { ItemStandardComponent as ɵu } from './lib/pages/item/standard/standard.component';
15
- export { CrudListPageBaseComponent as ɵy } from './lib/pages/list/base/base.component';
16
- export { ListComponent as ɵw } from './lib/pages/list/list.component';
17
- export { ListStandardComponent as ɵx } from './lib/pages/list/standard/standard.component';
18
- export { FormOptionsPipe as ɵb } from './lib/pipes/form-options/form-options.pipe';
19
- export { CrudPipesModule as ɵa } from './lib/pipes/pipes.module';
20
- export { CrudListGroupService as ɵq } from './lib/services/list-group/list-group.service';
21
- export { NotSocketService as ɵs, SocketService as ɵr } from './lib/services/socket/socket.service';
22
6
  //# sourceMappingURL=smartsoft001-crud-shell-angular.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"smartsoft001-crud-shell-angular.d.ts","sourceRoot":"","sources":["../../../../../libs/crud/shell/angular/src/smartsoft001-crud-shell-angular.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,SAAS,CAAC;AAExB,OAAO,EAAC,oBAAoB,IAAI,EAAE,EAAC,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAC,eAAe,IAAI,EAAE,EAAC,MAAM,0CAA0C,CAAC;AAC/E,OAAO,EAAC,oBAAoB,IAAI,EAAE,EAAC,eAAe,IAAI,EAAE,EAAC,mBAAmB,IAAI,EAAE,EAAC,2BAA2B,IAAI,EAAE,EAAC,mBAAmB,IAAI,EAAE,EAAC,kBAAkB,IAAI,EAAE,EAAC,oBAAoB,IAAI,EAAE,EAAC,mBAAmB,IAAI,EAAE,EAAC,MAAM,yBAAyB,CAAC;AAC7P,OAAO,EAAC,sBAAsB,IAAI,EAAE,EAAC,MAAM,0DAA0D,CAAC;AACtG,OAAO,EAAC,gBAAgB,IAAI,EAAE,EAAC,MAAM,4CAA4C,CAAC;AAClF,OAAO,EAAC,cAAc,IAAI,EAAE,EAAC,MAAM,wCAAwC,CAAC;AAC5E,OAAO,EAAC,oBAAoB,IAAI,EAAE,EAAC,MAAM,oDAAoD,CAAC;AAC9F,OAAO,EAAC,yBAAyB,IAAI,EAAE,EAAC,MAAM,sCAAsC,CAAC;AACrF,OAAO,EAAC,aAAa,IAAI,EAAE,EAAC,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAC,qBAAqB,IAAI,EAAE,EAAC,MAAM,8CAA8C,CAAC;AACzF,OAAO,EAAC,yBAAyB,IAAI,EAAE,EAAC,MAAM,sCAAsC,CAAC;AACrF,OAAO,EAAC,aAAa,IAAI,EAAE,EAAC,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAC,qBAAqB,IAAI,EAAE,EAAC,MAAM,8CAA8C,CAAC;AACzF,OAAO,EAAC,eAAe,IAAI,EAAE,EAAC,MAAM,4CAA4C,CAAC;AACjF,OAAO,EAAC,eAAe,IAAI,EAAE,EAAC,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAC,oBAAoB,IAAI,EAAE,EAAC,MAAM,8CAA8C,CAAC;AACxF,OAAO,EAAC,gBAAgB,IAAI,EAAE,EAAC,aAAa,IAAI,EAAE,EAAC,MAAM,sCAAsC,CAAC"}
1
+ {"version":3,"file":"smartsoft001-crud-shell-angular.d.ts","sourceRoot":"","sources":["../../../../../libs/crud/shell/angular/src/smartsoft001-crud-shell-angular.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,SAAS,CAAC"}