@smartsoft001/crud-shell-angular 1.1.732 → 1.1.736

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 +45 -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 +2569 -0
  48. package/fesm2015/smartsoft001-crud-shell-angular.mjs.map +1 -0
  49. package/fesm2020/smartsoft001-crud-shell-angular.mjs +2729 -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 +3 -0
  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 +18 -2
  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 +7 -1
  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 +38 -25
  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 -3283
  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 -345
  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 -2638
  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
@@ -3,6 +3,7 @@ import { ActionsSubject, State, Store } from "@ngrx/store";
3
3
  import { CrudService } from "../services/crud/crud.service";
4
4
  import { IEntity } from "@smartsoft001/domain-core";
5
5
  import { CrudConfig } from "../crud.config";
6
+ import * as i0 from "@angular/core";
6
7
  export declare class CrudEffects<T extends IEntity<string>> {
7
8
  private actions$;
8
9
  private service;
@@ -11,5 +12,7 @@ export declare class CrudEffects<T extends IEntity<string>> {
11
12
  private state;
12
13
  constructor(actions$: ActionsSubject, service: CrudService<T>, config: CrudConfig<T>, store: Store<any>, state: State<any>);
13
14
  init(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudEffects<any>, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<CrudEffects<any>>;
14
17
  }
15
18
  //# sourceMappingURL=crud.effects.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"crud.effects.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/+state/crud.effects.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAK1B,OAAO,EAAU,cAAc,EAAU,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAE3E,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAG5C,qBACa,WAAW,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAE9C,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,KAAK;gBAJL,QAAQ,EAAE,cAAc,EACxB,OAAO,EAAE,WAAW,CAAC,CAAC,CAAC,EACvB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EACjB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC;IAG3B,IAAI,IAAI,IAAI;CAqUb"}
1
+ {"version":3,"file":"crud.effects.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/+state/crud.effects.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAK1B,OAAO,EAAU,cAAc,EAAU,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAE3E,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;;AAG5C,qBACa,WAAW,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAE9C,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,KAAK;gBAJL,QAAQ,EAAE,cAAc,EACxB,OAAO,EAAE,WAAW,CAAC,CAAC,CAAC,EACvB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EACjB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC;IAG3B,IAAI,IAAI,IAAI;yCATD,WAAW;6CAAX,WAAW;CA8UvB"}
@@ -3,6 +3,7 @@ import { Observable } from "rxjs";
3
3
  import { IEntity } from "@smartsoft001/domain-core";
4
4
  import { CrudConfig } from "../crud.config";
5
5
  import { ICrudCreateManyOptions, ICrudFilter } from "../models/interfaces";
6
+ import * as i0 from "@angular/core";
6
7
  export declare class CrudFacade<T extends IEntity<string>> {
7
8
  private store;
8
9
  private config;
@@ -36,5 +37,7 @@ export declare class CrudFacade<T extends IEntity<string>> {
36
37
  })[]): void;
37
38
  delete(id: string): void;
38
39
  private getStore;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudFacade<any>, never>;
41
+ static ɵprov: i0.ɵɵInjectableDeclaration<CrudFacade<any>>;
39
42
  }
40
43
  //# sourceMappingURL=crud.facade.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"crud.facade.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/+state/crud.facade.ts"],"names":[],"mappings":"AAAA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAKlC,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAG5C,OAAO,EAAC,sBAAsB,EAAE,WAAW,EAAC,MAAM,sBAAsB,CAAC;AAIzE,qBACa,UAAU,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAgDnC,OAAO,CAAC,KAAK;IAAc,OAAO,CAAC,MAAM;IA/CrD,QAAQ,EAAE,CAAC,CAAC;IACZ,aAAa,EAAE,CAAC,CAAC;IACjB,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACf,MAAM,EAAE,WAAW,CAAC;IAEpB,OAAO,EAAE,UAAU,CAAC,OAAO,CAAC,CAE1B;IACF,QAAQ,EAAE,UAAU,CAAC,OAAO,CAAC,CAG3B;IACF,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,CAKtB;IACF,cAAc,EAAE,UAAU,CAAC,CAAC,EAAE,CAAC,CAK7B;IACF,KAAK,EAAE,UAAU,CAAC,CAAC,EAAE,CAAC,CAKpB;IACF,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAK9B;IACF,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,CAE7B;IACF,MAAM,EAAE,UAAU,CAAC,GAAG,CAAC,CAErB;IAEF,MAAM,EAAE,UAAU,CAAC,GAAG,CAAC,CAErB;gBAEkB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EAAU,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAMpE,MAAM,CAAC,IAAI,EAAE,CAAC,GAAG,IAAI;IAIrB,UAAU,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,sBAAsB,GAAG,IAAI;IAIlE,IAAI,CAAC,MAAM,GAAE,WAAkB,GAAG,IAAI;IActC,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI;IAIxB,QAAQ,IAAI,IAAI;IAIhB,WAAW,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI;IAIlC,MAAM,CAAC,IAAI,EAAE,CAAC,GAAG,IAAI;IAIrB,MAAM,CAAC,MAAM,GAAE,WAAkB,EAAE,MAAM,MAAO,GAAG,IAAI;IAIvD,aAAa,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;IAItD,iBAAiB,CAAC,KAAK,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG;QAAC,EAAE,EAAE,MAAM,CAAA;KAAC,CAAC,EAAE;IAItD,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI;IAIxB,OAAO,CAAC,QAAQ;CAKjB"}
1
+ {"version":3,"file":"crud.facade.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/+state/crud.facade.ts"],"names":[],"mappings":"AAAA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAKlC,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAG5C,OAAO,EAAC,sBAAsB,EAAE,WAAW,EAAC,MAAM,sBAAsB,CAAC;;AAIzE,qBACa,UAAU,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAgDnC,OAAO,CAAC,KAAK;IAAc,OAAO,CAAC,MAAM;IA/CrD,QAAQ,EAAE,CAAC,CAAC;IACZ,aAAa,EAAE,CAAC,CAAC;IACjB,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC;IACf,MAAM,EAAE,WAAW,CAAC;IAEpB,OAAO,EAAE,UAAU,CAAC,OAAO,CAAC,CAE1B;IACF,QAAQ,EAAE,UAAU,CAAC,OAAO,CAAC,CAG3B;IACF,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,CAKtB;IACF,cAAc,EAAE,UAAU,CAAC,CAAC,EAAE,CAAC,CAK7B;IACF,KAAK,EAAE,UAAU,CAAC,CAAC,EAAE,CAAC,CAKpB;IACF,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAK9B;IACF,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,CAE7B;IACF,MAAM,EAAE,UAAU,CAAC,GAAG,CAAC,CAErB;IAEF,MAAM,EAAE,UAAU,CAAC,GAAG,CAAC,CAErB;gBAEkB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EAAU,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAMpE,MAAM,CAAC,IAAI,EAAE,CAAC,GAAG,IAAI;IAIrB,UAAU,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,sBAAsB,GAAG,IAAI;IAIlE,IAAI,CAAC,MAAM,GAAE,WAAkB,GAAG,IAAI;IActC,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI;IAIxB,QAAQ,IAAI,IAAI;IAIhB,WAAW,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI;IAIlC,MAAM,CAAC,IAAI,EAAE,CAAC,GAAG,IAAI;IAIrB,MAAM,CAAC,MAAM,GAAE,WAAkB,EAAE,MAAM,MAAO,GAAG,IAAI;IAIvD,aAAa,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;IAItD,iBAAiB,CAAC,KAAK,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG;QAAC,EAAE,EAAE,MAAM,CAAA;KAAC,CAAC,EAAE;IAItD,MAAM,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI;IAIxB,OAAO,CAAC,QAAQ;yCA5GL,UAAU;6CAAV,UAAU;CAiHtB"}
@@ -1,3 +1,25 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./export/export.component";
3
+ import * as i2 from "./filter/filter.component";
4
+ import * as i3 from "./filter/text/text.component";
5
+ import * as i4 from "./filters-config/filters-config.component";
6
+ import * as i5 from "./filter/date/date.component";
7
+ import * as i6 from "./filter/date-with-edit/date-with-edit.component";
8
+ import * as i7 from "./filter/radio/radio.component";
9
+ import * as i8 from "./filters/filters.component";
10
+ import * as i9 from "./filter/flag/flag.component";
11
+ import * as i10 from "./filter/check/check.component";
12
+ import * as i11 from "./filter/int/int.component";
13
+ import * as i12 from "./multiselect/multiselect.component";
14
+ import * as i13 from "./group/group.component";
15
+ import * as i14 from "@ngrx/store";
16
+ import * as i15 from "@smartsoft001/angular";
17
+ import * as i16 from "../pipes/pipes.module";
18
+ import * as i17 from "@angular/forms";
19
+ import * as i18 from "@angular/common";
1
20
  export declare class CrudComponentsModule {
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudComponentsModule, never>;
22
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CrudComponentsModule, [typeof i1.ExportComponent, typeof i2.FilterComponent, typeof i3.FilterTextComponent, typeof i4.FiltersConfigComponent, typeof i5.FilterDateComponent, typeof i6.FilterDateWithEditComponent, typeof i7.FilterRadioComponent, typeof i8.FiltersComponent, typeof i9.FilterFlagComponent, typeof i10.FilterCheckComponent, typeof i11.FilterIntComponent, typeof i12.MultiselectComponent, typeof i13.GroupComponent], [typeof i14.StoreModule, typeof i15.SharedModule, typeof i16.CrudPipesModule, typeof i17.FormsModule, typeof i18.CommonModule], [typeof i16.CrudPipesModule, typeof i1.ExportComponent, typeof i2.FilterComponent, typeof i3.FilterTextComponent, typeof i4.FiltersConfigComponent, typeof i5.FilterDateComponent, typeof i6.FilterDateWithEditComponent, typeof i7.FilterRadioComponent, typeof i8.FiltersComponent, typeof i9.FilterFlagComponent, typeof i10.FilterCheckComponent, typeof i11.FilterIntComponent, typeof i12.MultiselectComponent, typeof i13.GroupComponent]>;
23
+ static ɵinj: i0.ɵɵInjectorDeclaration<CrudComponentsModule>;
2
24
  }
3
25
  //# sourceMappingURL=components.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"components.module.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/components/components.module.ts"],"names":[],"mappings":"AA4CA,qBA2Ba,oBAAoB;CAAI"}
1
+ {"version":3,"file":"components.module.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/components/components.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AA4CA,qBAwBa,oBAAoB;yCAApB,oBAAoB;0CAApB,oBAAoB;0CAApB,oBAAoB;CAAI"}
@@ -3,6 +3,7 @@ import { Observable } from "rxjs";
3
3
  import { BaseComponent, IButtonOptions, PopoverService, StyleService } from "@smartsoft001/angular";
4
4
  import { IEntity } from "@smartsoft001/domain-core";
5
5
  import { CrudFacade } from "../../+state/crud.facade";
6
+ import * as i0 from "@angular/core";
6
7
  export declare class ExportComponent<T extends IEntity<string>> extends BaseComponent implements OnInit {
7
8
  private facade;
8
9
  private popoverService;
@@ -14,5 +15,7 @@ export declare class ExportComponent<T extends IEntity<string>> extends BaseComp
14
15
  constructor(facade: CrudFacade<T>, popoverService: PopoverService, styleService: StyleService, elementRef: ElementRef);
15
16
  ngOnInit(): void;
16
17
  private initButtonExportOptions;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExportComponent<any>, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExportComponent<any>, "smart-crud-export", never, {}, {}, never, never>;
17
20
  }
18
21
  //# sourceMappingURL=export.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"export.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/export/export.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,UAAU,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,OAAO,EAAC,aAAa,EAAE,cAAc,EAAE,cAAc,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAClG,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;AAEpD,qBAKa,eAAe,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAc,YAAW,MAAM;IAQzF,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IATtB,sBAAsB,EAAE,cAAc,CAAuC;IAC7E,uBAAuB,EAAE,cAAc,CAAwC;IAE/E,QAAQ,EAAE,UAAU,CAAC,OAAO,CAAC,CAAwB;gBAGzC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,cAAc,EAAE,cAAc,EAC9B,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU;IAKlC,QAAQ,IAAI,IAAI;IAIhB,OAAO,CAAC,uBAAuB;CAmBhC"}
1
+ {"version":3,"file":"export.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/export/export.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,UAAU,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,OAAO,EAAC,aAAa,EAAE,cAAc,EAAE,cAAc,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAClG,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;;AAEpD,qBAKa,eAAe,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAc,YAAW,MAAM;IAQzF,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IATtB,sBAAsB,EAAE,cAAc,CAAuC;IAC7E,uBAAuB,EAAE,cAAc,CAAwC;IAE/E,QAAQ,EAAE,UAAU,CAAC,OAAO,CAAC,CAAwB;gBAGzC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,cAAc,EAAE,cAAc,EAC9B,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU;IAKlC,QAAQ,IAAI,IAAI;IAIhB,OAAO,CAAC,uBAAuB;yCApBpB,eAAe;2CAAf,eAAe;CAuC3B"}
@@ -6,6 +6,7 @@ import { ICrudFilter } from "../../../models/interfaces";
6
6
  import { CrudFacade } from "../../../+state/crud.facade";
7
7
  import { ICrudModelPossibilitiesProvider } from "../../../providers/model-possibilities/model-possibilities.provider";
8
8
  import { CrudConfig } from "../../../crud.config";
9
+ import * as i0 from "@angular/core";
9
10
  export declare class BaseComponent<T extends IEntity<string>> implements OnInit {
10
11
  protected facade: CrudFacade<T>;
11
12
  private config;
@@ -28,5 +29,7 @@ export declare class BaseComponent<T extends IEntity<string>> implements OnInit
28
29
  private initPossibilities;
29
30
  private isArrayType;
30
31
  private refreshForArray;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent<any>, [null, null, { optional: true; }]>;
33
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseComponent<any>, never, never, { "item": "item"; "filter": "filter"; }, {}, never>;
31
34
  }
32
35
  //# sourceMappingURL=base.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"base.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/base/base.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,MAAM,EAAW,MAAM,eAAe,CAAC;AAEzE,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAY,YAAY,EAAC,MAAM,sBAAsB,CAAC;AAE7D,OAAO,EAAC,WAAW,EAAC,MAAM,4BAA4B,CAAC;AACvD,OAAO,EAAC,UAAU,EAAC,MAAM,6BAA6B,CAAC;AACvD,OAAO,EAEL,+BAA+B,EAChC,MAAM,qEAAqE,CAAC;AAC7E,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAEhD,qBACa,aAAa,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,YAAW,MAAM;IAgEnE,SAAS,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAC/B,OAAO,CAAC,MAAM;IAGd,OAAO,CAAC,0BAA0B;IAnEpC,cAAc,EAAE,UAAU,CAAC;QAAE,EAAE,EAAE,GAAG,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC,CAAC;IAE/C,IAAI,EAAE,YAAY,CAAC;IACnB,MAAM,EAAE,WAAW,CAAC;IAE7B,IAAI,KAAK,IAAI,GAAG,CAaf;IAED,IAAI,KAAK,CAAC,GAAG,EAAE,GAAG,EAEjB;IAED,IAAI,QAAQ,IAAI,GAAG,CAalB;IAED,IAAI,QAAQ,CAAC,GAAG,EAAE,GAAG,EAEpB;IAED,IAAI,QAAQ,IAAI,GAAG,CAalB;IAED,IAAI,QAAQ,CAAC,GAAG,EAAE,GAAG,EAEpB;gBAGW,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACvB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EAGrB,0BAA0B,EAAE,+BAA+B;IAIrE,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,MAAO,GAAG,IAAI;IAsCpC,QAAQ,IAAI,IAAI;IAIhB,OAAO,CAAC,iBAAiB;IAYzB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,eAAe;CA6BxB"}
1
+ {"version":3,"file":"base.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/base/base.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,MAAM,EAAW,MAAM,eAAe,CAAC;AAEzE,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAY,YAAY,EAAC,MAAM,sBAAsB,CAAC;AAE7D,OAAO,EAAC,WAAW,EAAC,MAAM,4BAA4B,CAAC;AACvD,OAAO,EAAC,UAAU,EAAC,MAAM,6BAA6B,CAAC;AACvD,OAAO,EAEL,+BAA+B,EAChC,MAAM,qEAAqE,CAAC;AAC7E,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;;AAEhD,qBACa,aAAa,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,YAAW,MAAM;IAgEnE,SAAS,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAC/B,OAAO,CAAC,MAAM;IAGd,OAAO,CAAC,0BAA0B;IAnEpC,cAAc,EAAE,UAAU,CAAC;QAAE,EAAE,EAAE,GAAG,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC,CAAC;IAE/C,IAAI,EAAE,YAAY,CAAC;IACnB,MAAM,EAAE,WAAW,CAAC;IAE7B,IAAI,KAAK,IAAI,GAAG,CAaf;IAED,IAAI,KAAK,CAAC,GAAG,EAAE,GAAG,EAEjB;IAED,IAAI,QAAQ,IAAI,GAAG,CAalB;IAED,IAAI,QAAQ,CAAC,GAAG,EAAE,GAAG,EAEpB;IAED,IAAI,QAAQ,IAAI,GAAG,CAalB;IAED,IAAI,QAAQ,CAAC,GAAG,EAAE,GAAG,EAEpB;gBAGW,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACvB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EAGrB,0BAA0B,EAAE,+BAA+B;IAIrE,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,MAAO,GAAG,IAAI;IAsCpC,QAAQ,IAAI,IAAI;IAIhB,OAAO,CAAC,iBAAiB;IAYzB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,eAAe;yCAlIZ,aAAa;2CAAb,aAAa;CA+JzB"}
@@ -2,6 +2,7 @@ import { AfterContentInit } from '@angular/core';
2
2
  import { Observable } from "rxjs";
3
3
  import { IEntity } from "@smartsoft001/domain-core";
4
4
  import { BaseComponent } from "../base/base.component";
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FilterCheckComponent<T extends IEntity<string>> extends BaseComponent<T> implements AfterContentInit {
6
7
  list$: Observable<{
7
8
  value: any;
@@ -12,5 +13,7 @@ export declare class FilterCheckComponent<T extends IEntity<string>> extends Bas
12
13
  value: any;
13
14
  isCheck: boolean;
14
15
  }): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterCheckComponent<any>, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterCheckComponent<any>, "smart-crud-filter-check", never, {}, {}, never, never>;
15
18
  }
16
19
  //# sourceMappingURL=check.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"check.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/check/check.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,gBAAgB,EAAY,MAAM,eAAe,CAAC;AAC1D,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAIhC,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;AAErD,qBAKa,oBAAoB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAE,YAAW,gBAAgB;IAC7G,KAAK,EAAE,UAAU,CAAC;QAAE,KAAK,EAAE,GAAG,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAE,EAAE,CAAC,CAAC;IAEtD,kBAAkB,IAAI,IAAI;IAW1B,aAAa,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE;QAAE,KAAK,EAAE,GAAG,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAE;CAY1E"}
1
+ {"version":3,"file":"check.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/check/check.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,gBAAgB,EAAY,MAAM,eAAe,CAAC;AAC1D,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAIhC,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;;AAErD,qBAKa,oBAAoB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAE,YAAW,gBAAgB;IAC7G,KAAK,EAAE,UAAU,CAAC;QAAE,KAAK,EAAE,GAAG,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAE,EAAE,CAAC,CAAC;IAEtD,kBAAkB,IAAI,IAAI;IAW1B,aAAa,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE;QAAE,KAAK,EAAE,GAAG,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAE;yCAd9D,oBAAoB;2CAApB,oBAAoB;CA0BhC"}
@@ -1,5 +1,6 @@
1
1
  import { IEntity } from "@smartsoft001/domain-core";
2
2
  import { BaseComponent } from "../base/base.component";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FilterDateComponent<T extends IEntity<string>> extends BaseComponent<T> {
4
5
  get allowAdvanced(): boolean;
5
6
  set customValue(val: any);
@@ -8,5 +9,7 @@ export declare class FilterDateComponent<T extends IEntity<string>> extends Base
8
9
  get customMinValue(): any;
9
10
  set customMaxValue(val: any);
10
11
  get customMaxValue(): any;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterDateComponent<any>, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterDateComponent<any>, "smart-crud-filter-date", never, {}, {}, never, never>;
11
14
  }
12
15
  //# sourceMappingURL=date.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"date.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/date/date.component.ts"],"names":[],"mappings":"AAGA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;AAErD,qBAKa,mBAAmB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;IAClF,IAAI,aAAa,IAAI,OAAO,CAE3B;IAED,IAAI,WAAW,CAAC,GAAG,EAKA,GAAG,AALH,EAGlB;IAED,IAAI,WAAW,IAAI,GAAG,CAErB;IAED,IAAI,cAAc,CAAC,GAAG,EAKA,GAAG,AALH,EAGrB;IAED,IAAI,cAAc,IAAI,GAAG,CAExB;IAED,IAAI,cAAc,CAAC,GAAG,EAKA,GAAG,AALH,EAGrB;IAED,IAAI,cAAc,IAAI,GAAG,CAExB;CACF"}
1
+ {"version":3,"file":"date.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/date/date.component.ts"],"names":[],"mappings":"AAGA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;;AAErD,qBAKa,mBAAmB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;IAClF,IAAI,aAAa,IAAI,OAAO,CAE3B;IAED,IAAI,WAAW,CAAC,GAAG,EAKA,GAAG,AALH,EAGlB;IAED,IAAI,WAAW,IAAI,GAAG,CAErB;IAED,IAAI,cAAc,CAAC,GAAG,EAKA,GAAG,AALH,EAGrB;IAED,IAAI,cAAc,IAAI,GAAG,CAExB;IAED,IAAI,cAAc,CAAC,GAAG,EAKA,GAAG,AALH,EAGrB;IAED,IAAI,cAAc,IAAI,GAAG,CAExB;yCA9BU,mBAAmB;2CAAnB,mBAAmB;CA+B/B"}
@@ -2,6 +2,7 @@ import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { IonDatetime } from "@ionic/angular";
3
3
  import { IEntity } from "@smartsoft001/domain-core";
4
4
  import { FilterDateComponent } from "../date/date.component";
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FilterDateWithEditComponent<T extends IEntity<string>> extends FilterDateComponent<T> implements OnInit, OnDestroy {
6
7
  private _subscriptions;
7
8
  advanced: boolean;
@@ -9,5 +10,7 @@ export declare class FilterDateWithEditComponent<T extends IEntity<string>> exte
9
10
  open(): void;
10
11
  ngOnInit(): void;
11
12
  ngOnDestroy(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterDateWithEditComponent<any>, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterDateWithEditComponent<any>, "smart-crud-filter-date-with-edit", never, {}, {}, never, never>;
12
15
  }
13
16
  //# sourceMappingURL=date-with-edit.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"date-with-edit.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/date-with-edit/date-with-edit.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAY,MAAM,eAAe,CAAC;AACtE,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAG3C,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,mBAAmB,EAAC,MAAM,wBAAwB,CAAC;AAE3D,qBAKa,2BAA2B,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,mBAAmB,CAAC,CAAC,CACjG,YAAW,MAAM,EAAE,SAAS;IAC1B,OAAO,CAAC,cAAc,CAAsB;IAE5C,QAAQ,UAAS;IAE6C,cAAc,EAAE,WAAW,CAAC;IAE1F,IAAI,IAAI,IAAI;IAIZ,QAAQ,IAAI,IAAI;IAYhB,WAAW,IAAI,IAAI;CAKpB"}
1
+ {"version":3,"file":"date-with-edit.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/date-with-edit/date-with-edit.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAY,MAAM,eAAe,CAAC;AACtE,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAG3C,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,mBAAmB,EAAC,MAAM,wBAAwB,CAAC;;AAE3D,qBAKa,2BAA2B,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,mBAAmB,CAAC,CAAC,CACjG,YAAW,MAAM,EAAE,SAAS;IAC1B,OAAO,CAAC,cAAc,CAAsB;IAE5C,QAAQ,UAAS;IAE6C,cAAc,EAAE,WAAW,CAAC;IAE1F,IAAI,IAAI,IAAI;IAIZ,QAAQ,IAAI,IAAI;IAYhB,WAAW,IAAI,IAAI;yCAxBR,2BAA2B;2CAA3B,2BAA2B;CA6BvC"}
@@ -1,11 +1,14 @@
1
1
  import { OnInit } from "@angular/core";
2
2
  import { FieldType, IModelFilter } from "@smartsoft001/models";
3
3
  import { ICrudFilter } from "../../models/interfaces";
4
+ import * as i0 from "@angular/core";
4
5
  export declare class FilterComponent implements OnInit {
5
6
  FieldType: typeof FieldType;
6
7
  item: IModelFilter;
7
8
  filter: ICrudFilter;
8
9
  constructor();
9
10
  ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent, "smart-crud-filter", never, { "item": "item"; "filter": "filter"; }, {}, never, never>;
10
13
  }
11
14
  //# sourceMappingURL=filter.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"filter.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/filter.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AAEzD,OAAO,EAAC,SAAS,EAAE,YAAY,EAAC,MAAM,sBAAsB,CAAC;AAE7D,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AAEpD,qBAKa,eAAgB,YAAW,MAAM;IAC5C,SAAS,mBAAa;IAEb,IAAI,EAAE,YAAY,CAAC;IACnB,MAAM,EAAE,WAAW,CAAC;;IAI7B,QAAQ,IAAI,IAAI;CACjB"}
1
+ {"version":3,"file":"filter.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/filter.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AAEzD,OAAO,EAAC,SAAS,EAAE,YAAY,EAAC,MAAM,sBAAsB,CAAC;AAE7D,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;;AAEpD,qBAKa,eAAgB,YAAW,MAAM;IAC5C,SAAS,mBAAa;IAEb,IAAI,EAAE,YAAY,CAAC;IACnB,MAAM,EAAE,WAAW,CAAC;;IAI7B,QAAQ,IAAI,IAAI;yCARL,eAAe;2CAAf,eAAe;CAS3B"}
@@ -1,5 +1,8 @@
1
1
  import { IEntity } from "@smartsoft001/domain-core";
2
2
  import { BaseComponent } from "../base/base.component";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FilterFlagComponent<T extends IEntity<string>> extends BaseComponent<T> {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterFlagComponent<any>, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterFlagComponent<any>, "smart-crud-filter-flag", never, {}, {}, never, never>;
4
7
  }
5
8
  //# sourceMappingURL=flag.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"flag.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/flag/flag.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;AAErD,qBAKa,mBAAmB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;CAEnF"}
1
+ {"version":3,"file":"flag.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/flag/flag.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;;AAErD,qBAKa,mBAAmB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;yCAAvE,mBAAmB;2CAAnB,mBAAmB;CAE/B"}
@@ -1,11 +1,14 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { IEntity } from "@smartsoft001/domain-core";
3
3
  import { BaseComponent } from "../base/base.component";
4
+ import * as i0 from "@angular/core";
4
5
  export declare class FilterIntComponent<T extends IEntity<string>> extends BaseComponent<T> implements OnInit, OnDestroy {
5
6
  private _subscriptions;
6
7
  advanced: boolean;
7
8
  get allowAdvanced(): boolean;
8
9
  ngOnInit(): void;
9
10
  ngOnDestroy(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterIntComponent<any>, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterIntComponent<any>, "smart-crud-filter-int", never, {}, {}, never, never>;
10
13
  }
11
14
  //# sourceMappingURL=int.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"int.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/int/int.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAY,MAAM,eAAe,CAAC;AAItE,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAGlD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;AAErD,qBAKa,kBAAkB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAClF,YAAW,MAAM,EAAE,SAAS;IAC1B,OAAO,CAAC,cAAc,CAAsB;IAE5C,QAAQ,UAAS;IAEjB,IAAI,aAAa,IAAI,OAAO,CAE3B;IAED,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;CAKpB"}
1
+ {"version":3,"file":"int.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/int/int.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,SAAS,EAAE,MAAM,EAAY,MAAM,eAAe,CAAC;AAItE,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAGlD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;;AAErD,qBAKa,kBAAkB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAClF,YAAW,MAAM,EAAE,SAAS;IAC1B,OAAO,CAAC,cAAc,CAAsB;IAE5C,QAAQ,UAAS;IAEjB,IAAI,aAAa,IAAI,OAAO,CAE3B;IAED,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;yCAdR,kBAAkB;2CAAlB,kBAAkB;CAmB9B"}
@@ -1,5 +1,8 @@
1
1
  import { IEntity } from "@smartsoft001/domain-core";
2
2
  import { BaseComponent } from "../base/base.component";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FilterRadioComponent<T extends IEntity<string>> extends BaseComponent<T> {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterRadioComponent<any>, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterRadioComponent<any>, "smart-crud-filter-radio", never, {}, {}, never, never>;
4
7
  }
5
8
  //# sourceMappingURL=radio.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"radio.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/radio/radio.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;AAErD,qBAKa,oBAAoB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;CAEpF"}
1
+ {"version":3,"file":"radio.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/radio/radio.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;;AAErD,qBAKa,oBAAoB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;yCAAxE,oBAAoB;2CAApB,oBAAoB;CAEhC"}
@@ -1,5 +1,8 @@
1
1
  import { IEntity } from "@smartsoft001/domain-core";
2
2
  import { BaseComponent } from "../base/base.component";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FilterTextComponent<T extends IEntity<string>> extends BaseComponent<T> {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterTextComponent<any>, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterTextComponent<any>, "smart-crud-filter-text", never, {}, {}, never, never>;
4
7
  }
5
8
  //# sourceMappingURL=text.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"text.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/text/text.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;AAErD,qBAKa,mBAAmB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;CAEnF"}
1
+ {"version":3,"file":"text.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../libs/crud/shell/angular/src/lib/components/filter/text/text.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,aAAa,EAAC,MAAM,wBAAwB,CAAC;;AAErD,qBAKa,mBAAmB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAa,CAAC,CAAC,CAAC;yCAAvE,mBAAmB;2CAAnB,mBAAmB;CAE/B"}
@@ -6,6 +6,7 @@ import { IEntity } from "@smartsoft001/domain-core";
6
6
  import { ICrudFilter } from "../../models/interfaces";
7
7
  import { CrudConfig } from "../../crud.config";
8
8
  import { CrudFacade } from "../../+state/crud.facade";
9
+ import * as i0 from "@angular/core";
9
10
  /**
10
11
  * This component is only to use in crud module
11
12
  * @requires CrudModule
@@ -76,5 +77,7 @@ export declare class FiltersComponent<T extends IEntity<string>> implements OnIn
76
77
  constructor(menuService: MenuService, config: CrudConfig<T>, facade: CrudFacade<T>, styleService: StyleService, elementRef: ElementRef);
77
78
  onClose(): Promise<void>;
78
79
  ngOnInit(): void;
80
+ static ɵfac: i0.ɵɵFactoryDeclaration<FiltersComponent<any>, never>;
81
+ static ɵcmp: i0.ɵɵComponentDeclaration<FiltersComponent<any>, "smart-crud-filters", never, { "hideMenu": "hideMenu"; }, {}, never, never>;
79
82
  }
80
83
  //# sourceMappingURL=filters.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"filters.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/filters/filters.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,UAAU,EAAS,MAAM,EAAC,MAAM,eAAe,CAAC;AACnE,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,OAAO,EAAc,WAAW,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAKH,YAAY,EACf,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;AAEpD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AACH,qBAKa,gBAAgB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,YAAW,MAAM;IAWpE,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAdtB,IAAI,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;IAE1B,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAE/B;;OAEG;IACI,QAAQ,EAAE,OAAO,CAAC;gBAGf,WAAW,EAAE,WAAW,EACxB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU;IAG5B,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAI9B,QAAQ,IAAI,IAAI;CAwBjB"}
1
+ {"version":3,"file":"filters.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/filters/filters.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,UAAU,EAAS,MAAM,EAAC,MAAM,eAAe,CAAC;AACnE,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,OAAO,EAAc,WAAW,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAKH,YAAY,EACf,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;;AAEpD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AACH,qBAKa,gBAAgB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,YAAW,MAAM;IAWpE,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAdtB,IAAI,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;IAE1B,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAE/B;;OAEG;IACI,QAAQ,EAAE,OAAO,CAAC;gBAGf,WAAW,EAAE,WAAW,EACxB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU;IAG5B,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAI9B,QAAQ,IAAI,IAAI;yCAtBL,gBAAgB;2CAAhB,gBAAgB;CA8C5B"}
@@ -4,6 +4,7 @@ import { IEntity } from "@smartsoft001/domain-core";
4
4
  import { StyleService } from "@smartsoft001/angular";
5
5
  import { ICrudFilterQueryItem } from '../../models/interfaces';
6
6
  import { CrudFacade } from '../../+state/crud.facade';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class FiltersConfigComponent<T extends IEntity<string>> implements OnInit {
8
9
  private readonly facade;
9
10
  private styleService;
@@ -12,5 +13,7 @@ export declare class FiltersConfigComponent<T extends IEntity<string>> implement
12
13
  constructor(facade: CrudFacade<any>, styleService: StyleService, elementRef: ElementRef);
13
14
  onRemoveQuery(item: ICrudFilterQueryItem): void;
14
15
  ngOnInit(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<FiltersConfigComponent<any>, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<FiltersConfigComponent<any>, "smart-crud-filters-config", never, {}, {}, never, never>;
15
18
  }
16
19
  //# sourceMappingURL=filters-config.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"filters-config.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/filters-config/filters-config.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,UAAU,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAGhC,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAC,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAEnD,OAAO,EAAC,oBAAoB,EAAC,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAEtD,qBAKa,sBAAsB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,YAAW,MAAM;IAI1E,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IALtB,MAAM,EAAE,UAAU,CAAC,oBAAoB,EAAE,CAAC,CAAC;gBAGtB,MAAM,EAAE,UAAU,CAAC,GAAG,CAAC,EAChC,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU;IAGlC,aAAa,CAAC,IAAI,EAAE,oBAAoB,GAAG,IAAI;IAQ/C,QAAQ,IAAI,IAAI;CASjB"}
1
+ {"version":3,"file":"filters-config.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/filters-config/filters-config.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,UAAU,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAGhC,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAC,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAEnD,OAAO,EAAC,oBAAoB,EAAC,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;;AAEtD,qBAKa,sBAAsB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,YAAW,MAAM;IAI1E,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IALtB,MAAM,EAAE,UAAU,CAAC,oBAAoB,EAAE,CAAC,CAAC;gBAGtB,MAAM,EAAE,UAAU,CAAC,GAAG,CAAC,EAChC,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU;IAGlC,aAAa,CAAC,IAAI,EAAE,oBAAoB,GAAG,IAAI;IAQ/C,QAAQ,IAAI,IAAI;yCAjBL,sBAAsB;2CAAtB,sBAAsB;CA0BlC"}
@@ -4,6 +4,7 @@ import { IEntity } from "@smartsoft001/domain-core";
4
4
  import { ICrudListGroup } from "../../models/interfaces";
5
5
  import { CrudFacade } from "../../+state/crud.facade";
6
6
  import { CrudListGroupService } from "../../services/list-group/list-group.service";
7
+ import * as i0 from "@angular/core";
7
8
  export declare class GroupComponent<T extends IEntity<string>> extends BaseComponent implements OnInit, OnDestroy {
8
9
  private styleService;
9
10
  private elementRef;
@@ -16,5 +17,7 @@ export declare class GroupComponent<T extends IEntity<string>> extends BaseCompo
16
17
  change(val: any, item: ICrudListGroup, force?: boolean): void;
17
18
  ngOnInit(): void;
18
19
  ngOnDestroy(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<GroupComponent<any>, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<GroupComponent<any>, "smart-crud-group", never, { "groups": "groups"; "listOptions": "listOptions"; }, {}, never, never>;
19
22
  }
20
23
  //# sourceMappingURL=group.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"group.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/group/group.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,iBAAiB,EAAa,UAAU,EAAS,SAAS,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;AAEjG,OAAO,EAAC,aAAa,EAAE,YAAY,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAChF,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,cAAc,EAAC,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;AACpD,OAAO,EAAC,oBAAoB,EAAC,MAAM,8CAA8C,CAAC;AAElF,qBAKa,cAAc,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAc,YAAW,MAAM,EAAE,SAAS;IAKjG,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,YAAY;IARf,MAAM,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;IAC9B,WAAW,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;gBAG1B,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,EAAE,EAAE,iBAAiB,EACrB,YAAY,EAAE,oBAAoB,CAAC,CAAC,CAAC;IAKjD,MAAM,CAAC,GAAG,KAAA,EAAE,IAAI,EAAE,cAAc,EAAE,KAAK,UAAQ,GAAG,IAAI;IAkBtD,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;CAItB"}
1
+ {"version":3,"file":"group.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/group/group.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,iBAAiB,EAAa,UAAU,EAAS,SAAS,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;AAEjG,OAAO,EAAC,aAAa,EAAE,YAAY,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAC;AAChF,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,cAAc,EAAC,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;AACpD,OAAO,EAAC,oBAAoB,EAAC,MAAM,8CAA8C,CAAC;;AAElF,qBAKa,cAAc,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,SAAQ,aAAc,YAAW,MAAM,EAAE,SAAS;IAKjG,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,YAAY;IARf,MAAM,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;IAC9B,WAAW,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;gBAG1B,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACrB,EAAE,EAAE,iBAAiB,EACrB,YAAY,EAAE,oBAAoB,CAAC,CAAC,CAAC;IAKjD,MAAM,CAAC,GAAG,KAAA,EAAE,IAAI,EAAE,cAAc,EAAE,KAAK,UAAQ,GAAG,IAAI;IAkBtD,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;yCApCV,cAAc;2CAAd,cAAc;CAwC1B"}
@@ -4,6 +4,7 @@ import { Observable } from "rxjs";
4
4
  import { IButtonOptions, MenuService } from "@smartsoft001/angular";
5
5
  import { CrudFacade } from "../../+state/crud.facade";
6
6
  import { CrudConfig } from "../../crud.config";
7
+ import * as i0 from "@angular/core";
7
8
  export declare class MultiselectComponent<T extends IEntity<string>> implements OnInit {
8
9
  private facade;
9
10
  config: CrudConfig<T>;
@@ -20,5 +21,7 @@ export declare class MultiselectComponent<T extends IEntity<string>> implements
20
21
  onPartialChange(changes: Partial<T>, list: Array<T>): void;
21
22
  onValidChange(valid: boolean): void;
22
23
  ngOnInit(): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiselectComponent<any>, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiselectComponent<any>, "smart-crud-multiselect", never, {}, {}, never, never>;
23
26
  }
24
27
  //# sourceMappingURL=multiselect.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"multiselect.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/multiselect/multiselect.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAY,MAAM,EAAC,MAAM,eAAe,CAAC;AAChD,OAAO,EAAC,UAAU,EAAU,MAAM,MAAM,CAAC;AAKzC,OAAO,EAAC,cAAc,EAAE,WAAW,EAAC,MAAM,uBAAuB,CAAC;AAElE,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;AACpD,OAAO,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAE7C,qBAKa,oBAAoB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,YAAW,MAAM;IAyBtE,OAAO,CAAC,MAAM;IACP,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAC5B,OAAO,CAAC,WAAW;IA1BvB,OAAO,CAAC,KAAK,CAAW;IACxB,OAAO,CAAC,QAAQ,CAAY;IAE5B,IAAI,EAAE,CAAC,CAAC;IACR,KAAK,EAAE,OAAO,CAAC;IACf,aAAa,EAAE,cAAc,CAa5B;IACD,IAAI,EAAE,OAAO,CAAC;IAEd,KAAK,EAAE,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC;gBAGX,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACtB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACpB,WAAW,EAAE,WAAW;IAuB9B,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAI9B,eAAe,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;IAMnD,aAAa,CAAC,KAAK,EAAE,OAAO;IAI5B,QAAQ,IAAI,IAAI;CAGnB"}
1
+ {"version":3,"file":"multiselect.component.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/components/multiselect/multiselect.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAY,MAAM,EAAC,MAAM,eAAe,CAAC;AAChD,OAAO,EAAC,UAAU,EAAU,MAAM,MAAM,CAAC;AAKzC,OAAO,EAAC,cAAc,EAAE,WAAW,EAAC,MAAM,uBAAuB,CAAC;AAElE,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;AACpD,OAAO,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;;AAE7C,qBAKa,oBAAoB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,CAAE,YAAW,MAAM;IAyBtE,OAAO,CAAC,MAAM;IACP,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAC5B,OAAO,CAAC,WAAW;IA1BvB,OAAO,CAAC,KAAK,CAAW;IACxB,OAAO,CAAC,QAAQ,CAAY;IAE5B,IAAI,EAAE,CAAC,CAAC;IACR,KAAK,EAAE,OAAO,CAAC;IACf,aAAa,EAAE,cAAc,CAa5B;IACD,IAAI,EAAE,OAAO,CAAC;IAEd,KAAK,EAAE,UAAU,CAAC,CAAC,EAAE,CAAC,CAAC;gBAGX,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACtB,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EACpB,WAAW,EAAE,WAAW;IAuB9B,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAI9B,eAAe,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;IAMnD,aAAa,CAAC,KAAK,EAAE,OAAO;IAI5B,QAAQ,IAAI,IAAI;yCAhEP,oBAAoB;2CAApB,oBAAoB;CAmEhC"}
@@ -2,7 +2,27 @@ import { Store } from "@ngrx/store";
2
2
  import { IEntity } from "@smartsoft001/domain-core";
3
3
  import { CrudConfig } from "./crud.config";
4
4
  import { CrudEffects } from "./+state/crud.effects";
5
+ import { ListComponent } from "./pages/list/list.component";
6
+ import { ItemComponent } from "./pages/item/item.component";
7
+ import { ListStandardComponent } from "./pages/list/standard/standard.component";
8
+ import { ItemStandardComponent } from "./pages/item/standard/standard.component";
9
+ import * as i0 from "@angular/core";
10
+ import * as i1 from "./pages/item/item.component";
11
+ import * as i2 from "./pages/list/list.component";
12
+ import * as i3 from "./pages/list/standard/standard.component";
13
+ import * as i4 from "./pages/item/standard/standard.component";
14
+ import * as i5 from "@ngrx/store";
15
+ import * as i6 from "@smartsoft001/angular";
16
+ import * as i7 from "./pipes/pipes.module";
17
+ import * as i8 from "@angular/router";
18
+ import * as i9 from "@angular/forms";
19
+ import * as i10 from "@angular/common";
20
+ import * as i11 from "./components/components.module";
21
+ export declare const PAGES: (typeof ListComponent | typeof ItemStandardComponent | typeof ItemComponent | typeof ListStandardComponent)[];
5
22
  export declare class CrudFullModule<T extends IEntity<string>> {
6
23
  constructor(store: Store<any>, config: CrudConfig<T>, effects: CrudEffects<any>);
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudFullModule, never>;
25
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CrudFullModule, [typeof i1.ItemComponent, typeof i2.ListComponent, typeof i3.ListStandardComponent, typeof i4.ItemStandardComponent], [typeof i5.StoreModule, typeof i6.SharedModule, typeof i7.CrudPipesModule, typeof i8.RouterModule, typeof i9.FormsModule, typeof i10.CommonModule, typeof i11.CrudComponentsModule], [typeof i1.ItemComponent, typeof i2.ListComponent, typeof i3.ListStandardComponent, typeof i4.ItemStandardComponent, typeof i11.CrudComponentsModule]>;
26
+ static ɵinj: i0.ɵɵInjectorDeclaration<CrudFullModule>;
7
27
  }
8
28
  //# sourceMappingURL=crud-full.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"crud-full.module.d.ts","sourceRoot":"","sources":["../../../../../../libs/crud/shell/angular/src/lib/crud-full.module.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,KAAK,EAAc,MAAM,aAAa,CAAC;AAK/C,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,UAAU,EAAC,MAAM,eAAe,CAAC;AACzC,OAAO,EAAC,WAAW,EAAC,MAAM,uBAAuB,CAAC;AAqBlD,qBAiCa,cAAc,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;gBACrC,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC;CASlF"}
1
+ {"version":3,"file":"crud-full.module.d.ts","sourceRoot":"","sources":["../../../../../../libs/crud/shell/angular/src/lib/crud-full.module.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,KAAK,EAAc,MAAM,aAAa,CAAC;AAK/C,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,OAAO,EAAC,UAAU,EAAC,MAAM,eAAe,CAAC;AACzC,OAAO,EAAC,WAAW,EAAC,MAAM,uBAAuB,CAAC;AAElD,OAAO,EAAC,aAAa,EAAC,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAC,aAAa,EAAC,MAAM,6BAA6B,CAAC;AAO1D,OAAO,EAAC,qBAAqB,EAAC,MAAM,0CAA0C,CAAC;AAC/E,OAAO,EAAC,qBAAqB,EAAC,MAAM,0CAA0C,CAAC;;;;;;;;;;;;;AAG/E,eAAO,MAAM,KAAK,+GAKjB,CAAC;AAEF,qBA8Ba,cAAc,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;gBACrC,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC;yCADtE,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAU1B"}
@@ -1,12 +1,15 @@
1
1
  import { Type } from "@angular/core";
2
2
  import { IIconButtonOptions, ICellPipe, InputBaseComponent, ListMode, PaginationMode } from "@smartsoft001/angular";
3
3
  import { ICrudFilterQueryItem, ICrudListGroup } from "./models";
4
+ import * as i0 from "@angular/core";
4
5
  export declare class CrudConfig<T> {
5
6
  apiUrl: string;
6
7
  entity: string;
7
8
  type?: any;
8
9
  reducerFactory?: () => any;
9
10
  baseQuery?: Array<ICrudFilterQueryItem>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudConfig<any>, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<CrudConfig<any>>;
10
13
  }
11
14
  export declare class CrudFullConfig<T> extends CrudConfig<T> {
12
15
  type: any;
@@ -18,8 +21,19 @@ export declare class CrudFullConfig<T> extends CrudConfig<T> {
18
21
  bottom?: any;
19
22
  };
20
23
  };
21
- edit?: boolean;
22
- add?: boolean;
24
+ edit?: boolean | {
25
+ cellPipe?: ICellPipe<T>;
26
+ components?: {
27
+ top?: any;
28
+ bottom?: any;
29
+ };
30
+ };
31
+ add?: boolean | {
32
+ components?: {
33
+ top?: any;
34
+ bottom?: any;
35
+ };
36
+ };
23
37
  remove?: boolean;
24
38
  search?: boolean;
25
39
  export?: boolean;
@@ -44,5 +58,7 @@ export declare class CrudFullConfig<T> extends CrudConfig<T> {
44
58
  inputComponents?: {
45
59
  [key: string]: Type<InputBaseComponent<T>>;
46
60
  };
61
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudFullConfig<any>, never>;
62
+ static ɵprov: i0.ɵɵInjectableDeclaration<CrudFullConfig<any>>;
47
63
  }
48
64
  //# sourceMappingURL=crud.config.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"crud.config.d.ts","sourceRoot":"","sources":["../../../../../../libs/crud/shell/angular/src/lib/crud.config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,IAAI,EAAC,MAAM,eAAe,CAAC;AAE/C,OAAO,EACH,kBAAkB,EAAE,SAAS,EAAE,kBAAkB,EAAE,QAAQ,EAAE,cAAc,EAC9E,MAAM,uBAAuB,CAAC;AAE/B,OAAO,EAAC,oBAAoB,EAAE,cAAc,EAAC,MAAM,UAAU,CAAC;AAE9D,qBACa,UAAU,CAAC,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,cAAc,CAAC,EAAE,MAAM,GAAG,CAAC;IAC3B,SAAS,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;CAC3C;AAED,qBACa,cAAc,CAAC,CAAC,CAAE,SAAQ,UAAU,CAAC,CAAC,CAAC;IAChD,IAAI,EAAE,GAAG,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,OAAO,GAAG;QAChB,QAAQ,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;QACxB,UAAU,CAAC,EAAE;YACT,GAAG,CAAC,EAAE,GAAG,CAAC;YACV,MAAM,CAAC,EAAE,GAAG,CAAA;SACf,CAAA;KACJ,CAAC;IACF,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE;QACT,KAAK,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,IAAI,CAAC,EAAE,OAAO,GAAG;QACb,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,WAAW,CAAC,EAAE,OAAO,CAAC;KACzB,CAAC;IACF,IAAI,CAAC,EAAE;QACH,QAAQ,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;QACxB,UAAU,CAAC,EAAE;YACT,GAAG,EAAE,GAAG,CAAA;SACX,CAAC;QACF,IAAI,CAAC,EAAE,QAAQ,CAAC;QAChB,cAAc,CAAC,EAAE,cAAc,CAAC;QAChC,UAAU,CAAC,EAAE,YAAY,CAAA;QACzB,MAAM,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;KACjC,CAAC;IACF,OAAO,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,CAAC;IACpC,eAAe,CAAC,EAAE;QACd,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAA;KAC7C,CAAA;CACJ"}
1
+ {"version":3,"file":"crud.config.d.ts","sourceRoot":"","sources":["../../../../../../libs/crud/shell/angular/src/lib/crud.config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,IAAI,EAAC,MAAM,eAAe,CAAC;AAE/C,OAAO,EACH,kBAAkB,EAAE,SAAS,EAAE,kBAAkB,EAAE,QAAQ,EAAE,cAAc,EAC9E,MAAM,uBAAuB,CAAC;AAE/B,OAAO,EAAC,oBAAoB,EAAE,cAAc,EAAC,MAAM,UAAU,CAAC;;AAE9D,qBACa,UAAU,CAAC,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,GAAG,CAAC;IACX,cAAc,CAAC,EAAE,MAAM,GAAG,CAAC;IAC3B,SAAS,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;yCAL/B,UAAU;6CAAV,UAAU;CAMtB;AAED,qBACa,cAAc,CAAC,CAAC,CAAE,SAAQ,UAAU,CAAC,CAAC,CAAC;IAChD,IAAI,EAAE,GAAG,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,OAAO,GAAG;QAChB,QAAQ,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;QACxB,UAAU,CAAC,EAAE;YACT,GAAG,CAAC,EAAE,GAAG,CAAC;YACV,MAAM,CAAC,EAAE,GAAG,CAAA;SACf,CAAA;KACJ,CAAC;IACF,IAAI,CAAC,EAAE,OAAO,GAAG;QACb,QAAQ,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;QACxB,UAAU,CAAC,EAAE;YACT,GAAG,CAAC,EAAE,GAAG,CAAC;YACV,MAAM,CAAC,EAAE,GAAG,CAAA;SACf,CAAA;KACJ,CAAC;IACF,GAAG,CAAC,EAAE,OAAO,GAAG;QACZ,UAAU,CAAC,EAAE;YACT,GAAG,CAAC,EAAE,GAAG,CAAC;YACV,MAAM,CAAC,EAAE,GAAG,CAAA;SACf,CAAA;KACJ,CAAC;IACF,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE;QACT,KAAK,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,IAAI,CAAC,EAAE,OAAO,GAAG;QACb,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,WAAW,CAAC,EAAE,OAAO,CAAC;KACzB,CAAC;IACF,IAAI,CAAC,EAAE;QACH,QAAQ,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;QACxB,UAAU,CAAC,EAAE;YACT,GAAG,EAAE,GAAG,CAAA;SACX,CAAC;QACF,IAAI,CAAC,EAAE,QAAQ,CAAC;QAChB,cAAc,CAAC,EAAE,cAAc,CAAC;QAChC,UAAU,CAAC,EAAE,YAAY,CAAA;QACzB,MAAM,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;KACjC,CAAC;IACF,OAAO,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,CAAC;IACpC,eAAe,CAAC,EAAE;QACd,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAA;KAC7C,CAAA;yCA9CQ,cAAc;6CAAd,cAAc;CA+C1B"}
@@ -2,11 +2,24 @@ import { ModuleWithProviders } from "@angular/core";
2
2
  import { IEntity } from "@smartsoft001/domain-core";
3
3
  import { CrudConfig, CrudFullConfig } from "./crud.config";
4
4
  import { CrudEffects } from "./+state/crud.effects";
5
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "@ngrx/store";
7
+ import * as i2 from "@smartsoft001/angular";
8
+ import * as i3 from "./pipes/pipes.module";
9
+ import * as i4 from "@angular/forms";
10
+ import * as i5 from "@angular/common";
11
+ import * as i6 from "./components/components.module";
5
12
  export declare class CrudCoreModule<T extends IEntity<string>> {
6
13
  constructor(config: CrudConfig<T>, effects: CrudEffects<any>);
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudCoreModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CrudCoreModule, never, [typeof i1.StoreModule, typeof i2.SharedModule, typeof i3.CrudPipesModule, typeof i4.FormsModule, typeof i5.CommonModule, typeof i6.CrudComponentsModule, typeof i2.NgrxSharedModule], [typeof i6.CrudComponentsModule]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<CrudCoreModule>;
7
17
  }
8
18
  export declare class CrudModule<T extends IEntity<string>> {
9
19
  static forFeature<T extends IEntity<string>>(options: ICrudModuleOptionsWithRoutng<T> | ICrudModuleOptionsWithoutRoutng<T>): ModuleWithProviders<CrudModule<any>>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudModule, never>;
21
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CrudModule, never, never, never>;
22
+ static ɵinj: i0.ɵɵInjectorDeclaration<CrudModule>;
10
23
  }
11
24
  export interface ICrudModuleOptionsWithRoutng<T> {
12
25
  config: CrudFullConfig<T>;
@@ -1 +1 @@
1
- {"version":3,"file":"crud.module.d.ts","sourceRoot":"","sources":["../../../../../../libs/crud/shell/angular/src/lib/crud.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAA8B,MAAM,eAAe,CAAC;AAKhF,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AASpD,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAYpD,qBAsBa,cAAc,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;gBACvC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC;CAS7D;AAED,qBACa,UAAU,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAC/C,MAAM,CAAC,UAAU,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,EACzC,OAAO,EACH,4BAA4B,CAAC,CAAC,CAAC,GAC/B,+BAA+B,CAAC,CAAC,CAAC,GACrC,mBAAmB,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;CAkBxC;AAED,MAAM,WAAW,4BAA4B,CAAC,CAAC;IAC7C,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,IAAI,CAAC;CACf;AAED,MAAM,WAAW,+BAA+B,CAAC,CAAC;IAChD,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,KAAK,CAAC;CAChB"}
1
+ {"version":3,"file":"crud.module.d.ts","sourceRoot":"","sources":["../../../../../../libs/crud/shell/angular/src/lib/crud.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAA8B,MAAM,eAAe,CAAC;AAKhF,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AASpD,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;;;;;;;;AAYpD,qBAsBa,cAAc,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;gBACvC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC;yCADjD,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAU1B;AAED,qBACa,UAAU,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAC/C,MAAM,CAAC,UAAU,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC,EACzC,OAAO,EACH,4BAA4B,CAAC,CAAC,CAAC,GAC/B,+BAA+B,CAAC,CAAC,CAAC,GACrC,mBAAmB,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;yCAL5B,UAAU;0CAAV,UAAU;0CAAV,UAAU;CAuBtB;AAED,MAAM,WAAW,4BAA4B,CAAC,CAAC;IAC7C,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,IAAI,CAAC;CACf;AAED,MAAM,WAAW,+BAA+B,CAAC,CAAC;IAChD,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,KAAK,CAAC;CAChB"}
@@ -2,6 +2,7 @@ import { IEntity } from "@smartsoft001/domain-core";
2
2
  import { IListPaginationOptions, PaginationMode } from "@smartsoft001/angular";
3
3
  import { CrudFacade } from "../../+state/crud.facade";
4
4
  import { ICrudFilter } from "../../models/interfaces";
5
+ import * as i0 from "@angular/core";
5
6
  export declare class CrudListPaginationFactory<T extends IEntity<string>> {
6
7
  private readonly facade;
7
8
  constructor(facade: CrudFacade<T>);
@@ -13,5 +14,7 @@ export declare class CrudListPaginationFactory<T extends IEntity<string>> {
13
14
  getFilter(): ICrudFilter;
14
15
  };
15
16
  }): Promise<IListPaginationOptions>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudListPaginationFactory<any>, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<CrudListPaginationFactory<any>>;
16
19
  }
17
20
  //# sourceMappingURL=list-pagination.factory.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-pagination.factory.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/factories/list-pagination/list-pagination.factory.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAC,sBAAsB,EAAE,cAAc,EAAC,MAAM,uBAAuB,CAAC;AAE7E,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;AACpD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AAEpD,qBACa,yBAAyB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAClD,OAAO,CAAC,QAAQ,CAAC,MAAM;gBAAN,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAE5C,MAAM,CAAC,OAAO,EAAE;QACpB,IAAI,CAAC,EAAE,cAAc,CAAC;QACtB,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE;YACR,QAAQ,IAAI,GAAG,CAAC;YAChB,SAAS,IAAI,WAAW,CAAC;SAC1B,CAAC;KACH,GAAG,OAAO,CAAC,sBAAsB,CAAC;CAqEpC"}
1
+ {"version":3,"file":"list-pagination.factory.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/crud/shell/angular/src/lib/factories/list-pagination/list-pagination.factory.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAC,sBAAsB,EAAE,cAAc,EAAC,MAAM,uBAAuB,CAAC;AAE7E,OAAO,EAAC,UAAU,EAAC,MAAM,0BAA0B,CAAC;AACpD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;;AAEpD,qBACa,yBAAyB,CAAC,CAAC,SAAS,OAAO,CAAC,MAAM,CAAC;IAClD,OAAO,CAAC,QAAQ,CAAC,MAAM;gBAAN,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;IAE5C,MAAM,CAAC,OAAO,EAAE;QACpB,IAAI,CAAC,EAAE,cAAc,CAAC;QACtB,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE;YACR,QAAQ,IAAI,GAAG,CAAC;YAChB,SAAS,IAAI,WAAW,CAAC;SAC1B,CAAC;KACH,GAAG,OAAO,CAAC,sBAAsB,CAAC;yCAVxB,yBAAyB;6CAAzB,yBAAyB;CA+ErC"}
@@ -1,3 +1,7 @@
1
- export * from "./list/base/base.component";
2
1
  export * from "./item/base/base.component";
2
+ export * from "./item/item.component";
3
+ export * from "./item/standard/standard.component";
4
+ export * from "./list/list.component";
5
+ export * from "./list/base/base.component";
6
+ export * from "./list/standard/standard.component";
3
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/pages/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../libs/crud/shell/angular/src/lib/pages/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,oCAAoC,CAAC;AACnD,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oCAAoC,CAAC"}
@@ -4,6 +4,7 @@ import { BaseComponent, DynamicComponentType, FormComponent, IDetailsOptions } f
4
4
  import { IEntity } from "@smartsoft001/domain-core";
5
5
  import { CrudFullConfig } from "../../../crud.config";
6
6
  import { CrudFacade } from "../../../+state/crud.facade";
7
+ import * as i0 from "@angular/core";
7
8
  export declare abstract class CrudItemPageBaseComponent<T extends IEntity<string>> extends BaseComponent {
8
9
  config: CrudFullConfig<T>;
9
10
  facade: CrudFacade<T>;
@@ -18,5 +19,7 @@ export declare abstract class CrudItemPageBaseComponent<T extends IEntity<string
18
19
  onChange: EventEmitter<T>;
19
20
  onValidChange: EventEmitter<boolean>;
20
21
  constructor(config: CrudFullConfig<T>, facade: CrudFacade<T>);
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<CrudItemPageBaseComponent<any>, never>;
23
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CrudItemPageBaseComponent<any>, never, never, { "detailsOptions": "detailsOptions"; "mode": "mode"; "uniqueProvider": "uniqueProvider"; }, { "onPartialChange": "onPartialChange"; "onChange": "onChange"; "onValidChange": "onValidChange"; }, never>;
21
24
  }
22
25
  //# sourceMappingURL=base.component.d.ts.map