@3kles/kles-material-dynamicforms 1.1.19 → 14.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (200) hide show
  1. package/esm2020/3kles-kles-material-dynamicforms.mjs +5 -0
  2. package/esm2020/lib/decorators/component.decorator.mjs +7 -0
  3. package/esm2020/lib/directive/dynamic-component.directive.mjs +44 -0
  4. package/esm2020/lib/directive/dynamic-field.directive.mjs +50 -0
  5. package/esm2020/lib/dynamic-form.component.mjs +247 -0
  6. package/esm2020/lib/enums/type.enum.mjs +19 -0
  7. package/esm2020/lib/fields/array.component.mjs +53 -0
  8. package/esm2020/lib/fields/badge.component.mjs +40 -0
  9. package/esm2020/lib/fields/button-form.component.mjs +44 -0
  10. package/esm2020/lib/fields/button-submit.component.mjs +38 -0
  11. package/esm2020/lib/fields/button-toogle-group.component.mjs +51 -0
  12. package/esm2020/lib/fields/buttonchecker-form.component.mjs +44 -0
  13. package/esm2020/lib/fields/buttonfile-form.component.mjs +42 -0
  14. package/esm2020/lib/fields/checkbox.component.mjs +50 -0
  15. package/esm2020/lib/fields/chip.component.mjs +41 -0
  16. package/esm2020/lib/fields/color.component.mjs +84 -0
  17. package/esm2020/lib/fields/date.component.mjs +52 -0
  18. package/esm2020/lib/fields/field.abstract.mjs +57 -0
  19. package/esm2020/lib/fields/group.component.mjs +46 -0
  20. package/esm2020/lib/fields/icon.component.mjs +28 -0
  21. package/esm2020/lib/fields/input.clearable.component.mjs +112 -0
  22. package/esm2020/lib/fields/input.component.mjs +158 -0
  23. package/esm2020/lib/fields/label.component.mjs +40 -0
  24. package/esm2020/lib/fields/line-break.component.mjs +23 -0
  25. package/esm2020/lib/fields/link.component.mjs +32 -0
  26. package/esm2020/lib/fields/list-field.component.mjs +113 -0
  27. package/esm2020/lib/fields/radio.component.mjs +49 -0
  28. package/esm2020/lib/fields/select.component.mjs +210 -0
  29. package/esm2020/lib/fields/select.search.component.mjs +307 -0
  30. package/esm2020/lib/fields/selection-list.component.mjs +63 -0
  31. package/esm2020/lib/fields/slide-toggle.component.mjs +43 -0
  32. package/esm2020/lib/fields/text.component.mjs +40 -0
  33. package/esm2020/lib/fields/textarea.component.mjs +56 -0
  34. package/esm2020/lib/forms/button-control.component.mjs +115 -0
  35. package/esm2020/lib/forms/buttonchecker-control.component.mjs +85 -0
  36. package/esm2020/lib/forms/buttonfile-control.component.mjs +118 -0
  37. package/esm2020/lib/interfaces/component.interface.mjs +2 -0
  38. package/esm2020/lib/interfaces/field.config.interface.mjs +2 -0
  39. package/esm2020/lib/interfaces/field.interface.mjs +2 -0
  40. package/esm2020/lib/interfaces/validator.interface.mjs +2 -0
  41. package/esm2020/lib/kles-material-dynamicforms.module.mjs +191 -0
  42. package/esm2020/lib/matcher/form-error.matcher.mjs +16 -0
  43. package/esm2020/lib/modules/material.module.mjs +278 -0
  44. package/esm2020/lib/pipe/array.pipe.mjs +22 -0
  45. package/esm2020/lib/pipe/transform.pipe.mjs +27 -0
  46. package/esm2020/lib/validators/autocomplete.validator.mjs +23 -0
  47. package/esm2020/public-api.mjs +58 -0
  48. package/fesm2015/3kles-kles-material-dynamicforms.mjs +2829 -0
  49. package/fesm2015/3kles-kles-material-dynamicforms.mjs.map +1 -0
  50. package/fesm2020/3kles-kles-material-dynamicforms.mjs +2826 -0
  51. package/fesm2020/3kles-kles-material-dynamicforms.mjs.map +1 -0
  52. package/{3kles-kles-material-dynamicforms.d.ts → index.d.ts} +1 -1
  53. package/lib/decorators/component.decorator.d.ts +8 -0
  54. package/lib/directive/dynamic-component.directive.d.ts +5 -3
  55. package/lib/directive/dynamic-field.directive.d.ts +7 -5
  56. package/lib/dynamic-form.component.d.ts +6 -3
  57. package/lib/enums/type.enum.d.ts +4 -1
  58. package/lib/fields/array.component.d.ts +5 -2
  59. package/lib/fields/badge.component.d.ts +3 -0
  60. package/lib/fields/button-form.component.d.ts +3 -0
  61. package/lib/fields/button-submit.component.d.ts +3 -0
  62. package/lib/fields/button-toogle-group.component.d.ts +3 -0
  63. package/lib/fields/buttonchecker-form.component.d.ts +3 -0
  64. package/lib/fields/buttonfile-form.component.d.ts +3 -0
  65. package/lib/fields/checkbox.component.d.ts +4 -1
  66. package/lib/fields/chip.component.d.ts +3 -0
  67. package/lib/fields/color.component.d.ts +3 -0
  68. package/lib/fields/date.component.d.ts +3 -0
  69. package/lib/fields/field.abstract.d.ts +6 -6
  70. package/lib/fields/group.component.d.ts +5 -2
  71. package/lib/fields/icon.component.d.ts +3 -0
  72. package/lib/fields/input.clearable.component.d.ts +3 -0
  73. package/lib/fields/input.component.d.ts +3 -0
  74. package/lib/fields/label.component.d.ts +3 -0
  75. package/lib/fields/line-break.component.d.ts +5 -2
  76. package/lib/fields/link.component.d.ts +3 -0
  77. package/lib/fields/list-field.component.d.ts +7 -5
  78. package/lib/fields/radio.component.d.ts +3 -0
  79. package/lib/fields/select.component.d.ts +5 -3
  80. package/lib/fields/select.search.component.d.ts +6 -3
  81. package/lib/fields/selection-list.component.d.ts +3 -0
  82. package/lib/fields/slide-toggle.component.d.ts +3 -0
  83. package/lib/fields/text.component.d.ts +3 -0
  84. package/lib/fields/textarea.component.d.ts +3 -0
  85. package/lib/forms/button-control.component.d.ts +3 -0
  86. package/lib/forms/buttonchecker-control.component.d.ts +3 -0
  87. package/lib/forms/buttonfile-control.component.d.ts +3 -0
  88. package/lib/interfaces/field.config.interface.d.ts +3 -6
  89. package/lib/interfaces/field.interface.d.ts +2 -2
  90. package/lib/kles-material-dynamicforms.module.d.ts +45 -0
  91. package/lib/matcher/form-error.matcher.d.ts +5 -2
  92. package/lib/modules/material.module.d.ts +40 -0
  93. package/lib/pipe/array.pipe.d.ts +3 -0
  94. package/lib/pipe/transform.pipe.d.ts +3 -0
  95. package/package.json +22 -12
  96. package/public-api.d.ts +2 -1
  97. package/3kles-kles-material-dynamicforms.metadata.json +0 -1
  98. package/bundles/3kles-kles-material-dynamicforms.umd.js +0 -1980
  99. package/bundles/3kles-kles-material-dynamicforms.umd.js.map +0 -1
  100. package/bundles/3kles-kles-material-dynamicforms.umd.min.js +0 -16
  101. package/bundles/3kles-kles-material-dynamicforms.umd.min.js.map +0 -1
  102. package/esm2015/3kles-kles-material-dynamicforms.js +0 -6
  103. package/esm2015/lib/directive/dynamic-component.directive.js +0 -50
  104. package/esm2015/lib/directive/dynamic-field.directive.js +0 -95
  105. package/esm2015/lib/dynamic-form.component.js +0 -260
  106. package/esm2015/lib/enums/type.enum.js +0 -16
  107. package/esm2015/lib/fields/array.component.js +0 -37
  108. package/esm2015/lib/fields/badge.component.js +0 -23
  109. package/esm2015/lib/fields/button-form.component.js +0 -31
  110. package/esm2015/lib/fields/button-submit.component.js +0 -23
  111. package/esm2015/lib/fields/button-toogle-group.component.js +0 -35
  112. package/esm2015/lib/fields/buttonchecker-form.component.js +0 -31
  113. package/esm2015/lib/fields/buttonfile-form.component.js +0 -30
  114. package/esm2015/lib/fields/checkbox.component.js +0 -27
  115. package/esm2015/lib/fields/chip.component.js +0 -26
  116. package/esm2015/lib/fields/color.component.js +0 -61
  117. package/esm2015/lib/fields/date.component.js +0 -31
  118. package/esm2015/lib/fields/field.abstract.js +0 -68
  119. package/esm2015/lib/fields/group.component.js +0 -33
  120. package/esm2015/lib/fields/icon.component.js +0 -21
  121. package/esm2015/lib/fields/input.clearable.component.js +0 -59
  122. package/esm2015/lib/fields/input.component.js +0 -104
  123. package/esm2015/lib/fields/label.component.js +0 -26
  124. package/esm2015/lib/fields/line-break.component.js +0 -22
  125. package/esm2015/lib/fields/link.component.js +0 -23
  126. package/esm2015/lib/fields/list-field.component.js +0 -88
  127. package/esm2015/lib/fields/radio.component.js +0 -30
  128. package/esm2015/lib/fields/select.component.js +0 -127
  129. package/esm2015/lib/fields/select.search.component.js +0 -205
  130. package/esm2015/lib/fields/selection-list.component.js +0 -43
  131. package/esm2015/lib/fields/slide-toggle.component.js +0 -27
  132. package/esm2015/lib/fields/text.component.js +0 -23
  133. package/esm2015/lib/fields/textarea.component.js +0 -35
  134. package/esm2015/lib/forms/button-control.component.js +0 -102
  135. package/esm2015/lib/forms/buttonchecker-control.component.js +0 -53
  136. package/esm2015/lib/forms/buttonfile-control.component.js +0 -103
  137. package/esm2015/lib/interfaces/component.interface.js +0 -1
  138. package/esm2015/lib/interfaces/directive.interface.js +0 -1
  139. package/esm2015/lib/interfaces/field.config.interface.js +0 -1
  140. package/esm2015/lib/interfaces/field.interface.js +0 -1
  141. package/esm2015/lib/interfaces/validator.interface.js +0 -1
  142. package/esm2015/lib/kles-material-dynamicforms.module.js +0 -116
  143. package/esm2015/lib/matcher/form-error.matcher.js +0 -9
  144. package/esm2015/lib/modules/material.module.js +0 -129
  145. package/esm2015/lib/pipe/array.pipe.js +0 -20
  146. package/esm2015/lib/pipe/transform.pipe.js +0 -25
  147. package/esm2015/lib/validators/autocomplete.validator.js +0 -23
  148. package/esm2015/public-api.js +0 -51
  149. package/esm5/3kles-kles-material-dynamicforms.js +0 -6
  150. package/esm5/lib/directive/dynamic-component.directive.js +0 -51
  151. package/esm5/lib/directive/dynamic-field.directive.js +0 -96
  152. package/esm5/lib/dynamic-form.component.js +0 -262
  153. package/esm5/lib/enums/type.enum.js +0 -16
  154. package/esm5/lib/fields/array.component.js +0 -31
  155. package/esm5/lib/fields/badge.component.js +0 -24
  156. package/esm5/lib/fields/button-form.component.js +0 -24
  157. package/esm5/lib/fields/button-submit.component.js +0 -24
  158. package/esm5/lib/fields/button-toogle-group.component.js +0 -31
  159. package/esm5/lib/fields/buttonchecker-form.component.js +0 -24
  160. package/esm5/lib/fields/buttonfile-form.component.js +0 -24
  161. package/esm5/lib/fields/checkbox.component.js +0 -22
  162. package/esm5/lib/fields/chip.component.js +0 -22
  163. package/esm5/lib/fields/color.component.js +0 -49
  164. package/esm5/lib/fields/date.component.js +0 -22
  165. package/esm5/lib/fields/field.abstract.js +0 -70
  166. package/esm5/lib/fields/group.component.js +0 -30
  167. package/esm5/lib/fields/icon.component.js +0 -22
  168. package/esm5/lib/fields/input.clearable.component.js +0 -22
  169. package/esm5/lib/fields/input.component.js +0 -73
  170. package/esm5/lib/fields/label.component.js +0 -25
  171. package/esm5/lib/fields/line-break.component.js +0 -23
  172. package/esm5/lib/fields/link.component.js +0 -24
  173. package/esm5/lib/fields/list-field.component.js +0 -68
  174. package/esm5/lib/fields/radio.component.js +0 -22
  175. package/esm5/lib/fields/select.component.js +0 -59
  176. package/esm5/lib/fields/select.search.component.js +0 -119
  177. package/esm5/lib/fields/selection-list.component.js +0 -32
  178. package/esm5/lib/fields/slide-toggle.component.js +0 -22
  179. package/esm5/lib/fields/text.component.js +0 -24
  180. package/esm5/lib/fields/textarea.component.js +0 -25
  181. package/esm5/lib/forms/button-control.component.js +0 -95
  182. package/esm5/lib/forms/buttonchecker-control.component.js +0 -37
  183. package/esm5/lib/forms/buttonfile-control.component.js +0 -119
  184. package/esm5/lib/interfaces/component.interface.js +0 -1
  185. package/esm5/lib/interfaces/directive.interface.js +0 -1
  186. package/esm5/lib/interfaces/field.config.interface.js +0 -1
  187. package/esm5/lib/interfaces/field.interface.js +0 -1
  188. package/esm5/lib/interfaces/validator.interface.js +0 -1
  189. package/esm5/lib/kles-material-dynamicforms.module.js +0 -119
  190. package/esm5/lib/matcher/form-error.matcher.js +0 -11
  191. package/esm5/lib/modules/material.module.js +0 -132
  192. package/esm5/lib/pipe/array.pipe.js +0 -23
  193. package/esm5/lib/pipe/transform.pipe.js +0 -28
  194. package/esm5/lib/validators/autocomplete.validator.js +0 -23
  195. package/esm5/public-api.js +0 -51
  196. package/fesm2015/3kles-kles-material-dynamicforms.js +0 -2088
  197. package/fesm2015/3kles-kles-material-dynamicforms.js.map +0 -1
  198. package/fesm5/3kles-kles-material-dynamicforms.js +0 -1766
  199. package/fesm5/3kles-kles-material-dynamicforms.js.map +0 -1
  200. package/lib/interfaces/directive.interface.d.ts +0 -3
@@ -1,4 +1,6 @@
1
1
  export declare enum EnumType {
2
+ input = "input",
3
+ select = "select",
2
4
  text = "text",
3
5
  button = "button",
4
6
  checkbox = "checkbox",
@@ -10,5 +12,6 @@ export declare enum EnumType {
10
12
  multi = "multi",
11
13
  array = "array",
12
14
  group = "group",
13
- lineBreak = "lineBreak"
15
+ lineBreak = "lineBreak",
16
+ badge = "badge"
14
17
  }
@@ -1,8 +1,11 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
- import { FormArray } from '@angular/forms';
2
+ import { UntypedFormArray } from '@angular/forms';
3
3
  import { KlesFieldAbstract } from './field.abstract';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class KlesFormArrayComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
5
- formArray: FormArray;
6
+ formArray: UntypedFormArray;
6
7
  ngOnInit(): void;
7
8
  ngOnDestroy(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormArrayComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormArrayComponent, "kles-array", never, {}, {}, never, never, false>;
8
11
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormBadgeComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormBadgeComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormBadgeComponent, "kles-form-badge", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,6 +1,9 @@
1
1
  import { OnInit, OnDestroy } from '@angular/core';
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormButtonComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormButtonComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormButtonComponent, "kles-form-button", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,6 +1,9 @@
1
1
  import { KlesFieldAbstract } from './field.abstract';
2
2
  import { OnInit, OnDestroy } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormSubmitButtonComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSubmitButtonComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSubmitButtonComponent, "kles-submit-button", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,8 +1,11 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
3
  import { KlesFieldAbstract } from './field.abstract';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class KlesFormButtonToogleGroupComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
5
6
  options$: Observable<any[]>;
6
7
  ngOnInit(): void;
7
8
  ngOnDestroy(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormButtonToogleGroupComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormButtonToogleGroupComponent, "kles-form-button-toogle-group", never, {}, {}, never, never, false>;
8
11
  }
@@ -1,6 +1,9 @@
1
1
  import { OnInit, OnDestroy } from '@angular/core';
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormButtonCheckerComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormButtonCheckerComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormButtonCheckerComponent, "kles-form-button-checker", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,6 +1,9 @@
1
1
  import { OnInit, OnDestroy } from '@angular/core';
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormButtonFileComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormButtonFileComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormButtonFileComponent, "kles-form-button-file", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,6 +1,9 @@
1
- import { OnDestroy, OnInit } from "@angular/core";
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormCheckboxComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormCheckboxComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormCheckboxComponent, "kles-form-checkbox", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from "@angular/core";
2
2
  import { KlesFieldAbstract } from "./field.abstract";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormChipComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormChipComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormChipComponent, "kles-form-chip", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,7 +1,10 @@
1
1
  import { KlesFieldAbstract } from './field.abstract';
2
2
  import { OnInit, OnDestroy } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormColorComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  invertColor(hex: any, bw: any): string;
6
7
  ngOnDestroy(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormColorComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormColorComponent, "kles-form-color", never, {}, {}, never, never, false>;
7
10
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from "@angular/core";
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormDateComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormDateComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormDateComponent, "kles-form-datepicker", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,18 +1,18 @@
1
1
  import { IKlesField } from '../interfaces/field.interface';
2
2
  import { IKlesFieldConfig } from '../interfaces/field.config.interface';
3
- import { FormGroup } from '@angular/forms';
4
- import { AfterViewInit, OnDestroy, OnInit, ViewContainerRef } from '@angular/core';
3
+ import { UntypedFormGroup } from '@angular/forms';
4
+ import { AfterViewInit, OnDestroy, OnInit } from '@angular/core';
5
5
  import { Subject } from 'rxjs';
6
+ import * as i0 from "@angular/core";
6
7
  export declare abstract class KlesFieldAbstract implements IKlesField, OnInit, AfterViewInit, OnDestroy {
7
- protected viewRef: ViewContainerRef;
8
8
  field: IKlesFieldConfig;
9
- group: FormGroup;
9
+ group: UntypedFormGroup;
10
10
  siblingFields: IKlesFieldConfig[];
11
- directive: any;
12
11
  protected _onDestroy: Subject<void>;
13
- constructor(viewRef: ViewContainerRef);
14
12
  ngOnInit(): void;
15
13
  ngAfterViewInit(): void;
16
14
  ngOnDestroy(): void;
17
15
  applyPipeTransform(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFieldAbstract, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KlesFieldAbstract, never, never, {}, {}, never, never, false>;
18
18
  }
@@ -1,8 +1,11 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
2
+ import { UntypedFormGroup } from '@angular/forms';
3
3
  import { KlesFieldAbstract } from './field.abstract';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class KlesFormGroupComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
5
- subGroup: FormGroup;
6
+ subGroup: UntypedFormGroup;
6
7
  ngOnInit(): void;
7
8
  ngOnDestroy(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormGroupComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormGroupComponent, "kles-group", never, {}, {}, never, never, false>;
8
11
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from "@angular/core";
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormIconComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormIconComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormIconComponent, "kles-form-icon", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,5 +1,8 @@
1
1
  import { OnInit, OnDestroy } from '@angular/core';
2
2
  import { KlesFormInputComponent } from './input.component';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormInputClearableComponent extends KlesFormInputComponent implements OnInit, OnDestroy {
4
5
  ngOnDestroy(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormInputClearableComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormInputClearableComponent, "kles-form-input-clearable", never, {}, {}, never, never, false>;
5
8
  }
@@ -1,6 +1,7 @@
1
1
  import { KlesFieldAbstract } from './field.abstract';
2
2
  import { OnInit, OnDestroy } from '@angular/core';
3
3
  import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class KlesFormInputComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
5
6
  filteredOption: Observable<any[]>;
6
7
  options$: Observable<any[]>;
@@ -9,4 +10,6 @@ export declare class KlesFormInputComponent extends KlesFieldAbstract implements
9
10
  private filterData;
10
11
  displayFn(value: any): any;
11
12
  ngOnDestroy(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormInputComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormInputComponent, "kles-form-input", never, {}, {}, never, never, false>;
12
15
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from "@angular/core";
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormLabelComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormLabelComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormLabelComponent, "kles-form-label", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,6 +1,9 @@
1
- import { OnDestroy, OnInit } from "@angular/core";
2
- import { KlesFieldAbstract } from "./field.abstract";
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormLineBreakComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormLineBreakComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormLineBreakComponent, "kles-form-line-break", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from "@angular/core";
2
2
  import { KlesFieldAbstract } from "./field.abstract";
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormLinkComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormLinkComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormLinkComponent, "kles-form-link", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,11 +1,11 @@
1
- import { OnDestroy, OnInit, ViewContainerRef } from '@angular/core';
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
- import { FormArray, FormBuilder } from '@angular/forms';
3
+ import { UntypedFormArray, UntypedFormBuilder } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class KlesFormListFieldComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
5
6
  private fb;
6
- protected viewRef: ViewContainerRef;
7
- formArray: FormArray;
8
- constructor(fb: FormBuilder, viewRef: ViewContainerRef);
7
+ formArray: UntypedFormArray;
8
+ constructor(fb: UntypedFormBuilder);
9
9
  ngOnInit(): void;
10
10
  private createFormGroup;
11
11
  deleteField(index: number): void;
@@ -13,4 +13,6 @@ export declare class KlesFormListFieldComponent extends KlesFieldAbstract implem
13
13
  private bindValidations;
14
14
  private bindAsyncValidations;
15
15
  ngOnDestroy(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormListFieldComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormListFieldComponent, "kles-form-listfield", never, {}, {}, never, never, false>;
16
18
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormRadioComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormRadioComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormRadioComponent, "kles-form-radiobutton", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,16 +1,18 @@
1
1
  import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
2
- import { OnDestroy, OnInit, QueryList, ViewContainerRef } from '@angular/core';
2
+ import { OnDestroy, OnInit, QueryList } from '@angular/core';
3
3
  import { MatOption } from '@angular/material/core';
4
4
  import { Observable } from 'rxjs';
5
5
  import { KlesFieldAbstract } from './field.abstract';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class KlesFormSelectComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
7
- protected viewRef: ViewContainerRef;
8
8
  cdkVirtualScrollViewport: CdkVirtualScrollViewport;
9
9
  options: QueryList<MatOption>;
10
10
  options$: Observable<any[]>;
11
- constructor(viewRef: ViewContainerRef);
11
+ constructor();
12
12
  ngOnInit(): void;
13
13
  ngOnDestroy(): void;
14
14
  openChange($event: boolean): void;
15
15
  compareFn: (o1: any, o2: any) => boolean;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSelectComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSelectComponent, "kles-form-select", never, {}, {}, never, never, false>;
16
18
  }
@@ -1,12 +1,13 @@
1
1
  import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
2
2
  import { OnDestroy, OnInit, QueryList } from '@angular/core';
3
- import { FormControl } from '@angular/forms';
3
+ import { UntypedFormControl } from '@angular/forms';
4
4
  import { MatOption } from '@angular/material/core';
5
5
  import { Observable, ReplaySubject } from 'rxjs';
6
6
  import { KlesFieldAbstract } from './field.abstract';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class KlesFormSelectSearchComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
8
- searchControl: FormControl;
9
- selectAllControl: FormControl;
9
+ searchControl: UntypedFormControl;
10
+ selectAllControl: UntypedFormControl;
10
11
  options$: Observable<any[]>;
11
12
  optionsFiltered$: ReplaySubject<any[]>;
12
13
  cdkVirtualScrollViewport: CdkVirtualScrollViewport;
@@ -16,4 +17,6 @@ export declare class KlesFormSelectSearchComponent extends KlesFieldAbstract imp
16
17
  toggleAllSelection(state: any): void;
17
18
  openChange($event: boolean): void;
18
19
  compareFn: (o1: any, o2: any) => boolean;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSelectSearchComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSelectSearchComponent, "kles-form-select-search", never, {}, {}, never, never, false>;
19
22
  }
@@ -1,8 +1,11 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
3
  import { KlesFieldAbstract } from './field.abstract';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class KlesFormSelectionListComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
5
6
  options$: Observable<any[]>;
6
7
  ngOnInit(): void;
7
8
  ngOnDestroy(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSelectionListComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSelectionListComponent, "kles-form-selection-list", never, {}, {}, never, never, false>;
8
11
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from "@angular/core";
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormSlideToggleComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSlideToggleComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSlideToggleComponent, "kles-form-slide-toggle", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormTextComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormTextComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormTextComponent, "kles-form-text", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,6 +1,9 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { KlesFieldAbstract } from './field.abstract';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormTextareaComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
4
5
  ngOnInit(): void;
5
6
  ngOnDestroy(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormTextareaComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormTextareaComponent, "kles-form-textarea", never, {}, {}, never, never, false>;
6
9
  }
@@ -1,5 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
3
4
  export interface IButton {
4
5
  event?: any;
5
6
  uiButton?: IUIButton;
@@ -30,4 +31,6 @@ export declare class KlesButtonComponent implements OnInit, ControlValueAccessor
30
31
  registerOnChange(fn: any): void;
31
32
  registerOnTouched(fn: any): void;
32
33
  setDisabledState?(isDisabled: boolean): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesButtonComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesButtonComponent, "kles-button", never, { "name": "name"; "label": "label"; "color": "color"; "icon": "icon"; "iconSvg": "iconSvg"; "disabled": "disabled"; "classButton": "classButton"; "value": "value"; "tooltip": "tooltip"; }, {}, never, never, false>;
33
36
  }
@@ -1,5 +1,6 @@
1
1
  import { ControlValueAccessor } from '@angular/forms';
2
2
  import { IButton, KlesButtonComponent } from './button-control.component';
3
+ import * as i0 from "@angular/core";
3
4
  export interface IButtonChecker extends IButton {
4
5
  busy: boolean;
5
6
  error?: any[];
@@ -8,4 +9,6 @@ export interface IButtonChecker extends IButton {
8
9
  export declare class KlesButtonCheckerComponent extends KlesButtonComponent implements ControlValueAccessor {
9
10
  value: IButtonChecker;
10
11
  countError(): number;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesButtonCheckerComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesButtonCheckerComponent, "kles-button-checker", never, {}, {}, never, never, false>;
11
14
  }
@@ -1,5 +1,6 @@
1
1
  import { ControlValueAccessor } from '@angular/forms';
2
2
  import { IButton, KlesButtonComponent } from './button-control.component';
3
+ import * as i0 from "@angular/core";
3
4
  export interface IButtonFile extends IButton {
4
5
  fileContent?: string | string[];
5
6
  }
@@ -14,4 +15,6 @@ export declare class KlesButtonFileComponent extends KlesButtonComponent impleme
14
15
  onFileLoad(fileLoadedEvent: any): void;
15
16
  onFileSelect(input: HTMLInputElement): Promise<void>;
16
17
  readUploadedFile(inputFile: any): Promise<any>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesButtonFileComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesButtonFileComponent, "kles-button-file", never, {}, {}, never, never, false>;
17
20
  }
@@ -1,10 +1,8 @@
1
1
  import { IKlesValidator } from './validator.interface';
2
- import { ValidatorFn, AsyncValidatorFn, FormGroup } from '@angular/forms';
3
- import { PipeTransform, Type, ViewContainerRef } from '@angular/core';
2
+ import { ValidatorFn, AsyncValidatorFn, UntypedFormGroup } from '@angular/forms';
3
+ import { PipeTransform, Type } from '@angular/core';
4
4
  import { Subject } from 'rxjs';
5
5
  import { EnumType } from '../enums/type.enum';
6
- import { IKlesField } from './field.interface';
7
- import { IKlesDirective } from './directive.interface';
8
6
  export interface IKlesFieldConfig {
9
7
  type?: EnumType;
10
8
  name: string;
@@ -45,7 +43,7 @@ export interface IKlesFieldConfig {
45
43
  options?: any[];
46
44
  }[];
47
45
  direction?: 'row' | 'column';
48
- valueChanges?: ((field: IKlesFieldConfig, group: FormGroup, siblingField?: IKlesFieldConfig[], valueChanged?: any) => void);
46
+ valueChanges?: ((field: IKlesFieldConfig, group: UntypedFormGroup, siblingField?: IKlesFieldConfig[], valueChanged?: any) => void);
49
47
  triggerComponent?: Type<any>;
50
48
  virtualScroll?: boolean;
51
49
  itemSize?: number;
@@ -53,5 +51,4 @@ export interface IKlesFieldConfig {
53
51
  searchKeys?: string[];
54
52
  updateOn?: 'change' | 'blur' | 'submit';
55
53
  debounceTime?: number;
56
- directive?: (new (ref: ViewContainerRef, field: IKlesField) => IKlesDirective);
57
54
  }
@@ -1,7 +1,7 @@
1
1
  import { IKlesFieldConfig } from './field.config.interface';
2
- import { FormGroup } from '@angular/forms';
2
+ import { UntypedFormGroup } from '@angular/forms';
3
3
  export interface IKlesField {
4
4
  field: IKlesFieldConfig;
5
- group: FormGroup;
5
+ group: UntypedFormGroup;
6
6
  siblingFields: IKlesFieldConfig[];
7
7
  }
@@ -1,2 +1,47 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dynamic-form.component";
3
+ import * as i2 from "./fields/label.component";
4
+ import * as i3 from "./fields/input.component";
5
+ import * as i4 from "./fields/input.clearable.component";
6
+ import * as i5 from "./fields/button-submit.component";
7
+ import * as i6 from "./fields/badge.component";
8
+ import * as i7 from "./forms/button-control.component";
9
+ import * as i8 from "./fields/button-form.component";
10
+ import * as i9 from "./forms/buttonchecker-control.component";
11
+ import * as i10 from "./fields/buttonchecker-form.component";
12
+ import * as i11 from "./forms/buttonfile-control.component";
13
+ import * as i12 from "./fields/buttonfile-form.component";
14
+ import * as i13 from "./fields/select.component";
15
+ import * as i14 from "./fields/date.component";
16
+ import * as i15 from "./fields/radio.component";
17
+ import * as i16 from "./fields/checkbox.component";
18
+ import * as i17 from "./fields/list-field.component";
19
+ import * as i18 from "./fields/color.component";
20
+ import * as i19 from "./fields/textarea.component";
21
+ import * as i20 from "./fields/text.component";
22
+ import * as i21 from "./fields/chip.component";
23
+ import * as i22 from "./fields/group.component";
24
+ import * as i23 from "./fields/icon.component";
25
+ import * as i24 from "./fields/select.search.component";
26
+ import * as i25 from "./fields/line-break.component";
27
+ import * as i26 from "./fields/link.component";
28
+ import * as i27 from "./fields/slide-toggle.component";
29
+ import * as i28 from "./fields/selection-list.component";
30
+ import * as i29 from "./fields/button-toogle-group.component";
31
+ import * as i30 from "./fields/array.component";
32
+ import * as i31 from "./directive/dynamic-field.directive";
33
+ import * as i32 from "./directive/dynamic-component.directive";
34
+ import * as i33 from "./pipe/transform.pipe";
35
+ import * as i34 from "./pipe/array.pipe";
36
+ import * as i35 from "@angular/common";
37
+ import * as i36 from "@angular/forms";
38
+ import * as i37 from "@ngx-translate/core";
39
+ import * as i38 from "@angular/flex-layout";
40
+ import * as i39 from "./modules/material.module";
41
+ import * as i40 from "ngx-color-picker";
42
+ import * as i41 from "ngx-mat-select-search";
1
43
  export declare class KlesMaterialDynamicformsModule {
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesMaterialDynamicformsModule, never>;
45
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KlesMaterialDynamicformsModule, [typeof i1.KlesDynamicFormComponent, typeof i2.KlesFormLabelComponent, typeof i3.KlesFormInputComponent, typeof i4.KlesFormInputClearableComponent, typeof i5.KlesFormSubmitButtonComponent, typeof i6.KlesFormBadgeComponent, typeof i7.KlesButtonComponent, typeof i8.KlesFormButtonComponent, typeof i9.KlesButtonCheckerComponent, typeof i10.KlesFormButtonCheckerComponent, typeof i11.KlesButtonFileComponent, typeof i12.KlesFormButtonFileComponent, typeof i13.KlesFormSelectComponent, typeof i14.KlesFormDateComponent, typeof i15.KlesFormRadioComponent, typeof i16.KlesFormCheckboxComponent, typeof i17.KlesFormListFieldComponent, typeof i18.KlesFormColorComponent, typeof i19.KlesFormTextareaComponent, typeof i20.KlesFormTextComponent, typeof i21.KlesFormChipComponent, typeof i22.KlesFormGroupComponent, typeof i23.KlesFormIconComponent, typeof i24.KlesFormSelectSearchComponent, typeof i25.KlesFormLineBreakComponent, typeof i26.KlesFormLinkComponent, typeof i27.KlesFormSlideToggleComponent, typeof i28.KlesFormSelectionListComponent, typeof i29.KlesFormButtonToogleGroupComponent, typeof i30.KlesFormArrayComponent, typeof i31.KlesDynamicFieldDirective, typeof i32.KlesComponentDirective, typeof i33.KlesTransformPipe, typeof i34.ArrayFormatPipe], [typeof i35.CommonModule, typeof i36.ReactiveFormsModule, typeof i37.TranslateModule, typeof i38.FlexLayoutModule, typeof i36.FormsModule, typeof i39.MaterialModule, typeof i40.ColorPickerModule, typeof i41.NgxMatSelectSearchModule], [typeof i1.KlesDynamicFormComponent, typeof i2.KlesFormLabelComponent, typeof i3.KlesFormInputComponent, typeof i4.KlesFormInputClearableComponent, typeof i5.KlesFormSubmitButtonComponent, typeof i6.KlesFormBadgeComponent, typeof i7.KlesButtonComponent, typeof i8.KlesFormButtonComponent, typeof i9.KlesButtonCheckerComponent, typeof i10.KlesFormButtonCheckerComponent, typeof i11.KlesButtonFileComponent, typeof i12.KlesFormButtonFileComponent, typeof i13.KlesFormSelectComponent, typeof i14.KlesFormDateComponent, typeof i15.KlesFormRadioComponent, typeof i16.KlesFormCheckboxComponent, typeof i17.KlesFormListFieldComponent, typeof i18.KlesFormColorComponent, typeof i19.KlesFormTextareaComponent, typeof i20.KlesFormTextComponent, typeof i21.KlesFormChipComponent, typeof i22.KlesFormGroupComponent, typeof i23.KlesFormIconComponent, typeof i24.KlesFormSelectSearchComponent, typeof i25.KlesFormLineBreakComponent, typeof i26.KlesFormLinkComponent, typeof i27.KlesFormSlideToggleComponent, typeof i28.KlesFormSelectionListComponent, typeof i29.KlesFormButtonToogleGroupComponent, typeof i30.KlesFormArrayComponent, typeof i33.KlesTransformPipe, typeof i34.ArrayFormatPipe, typeof i31.KlesDynamicFieldDirective, typeof i32.KlesComponentDirective, typeof i40.ColorPickerModule]>;
46
+ static ɵinj: i0.ɵɵInjectorDeclaration<KlesMaterialDynamicformsModule>;
2
47
  }
@@ -1,6 +1,9 @@
1
- import { FormControl, FormGroupDirective, NgForm } from '@angular/forms';
1
+ import { UntypedFormControl, FormGroupDirective, NgForm } from '@angular/forms';
2
2
  import { ErrorStateMatcher } from '@angular/material/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class KlesFormErrorStateMatcher implements ErrorStateMatcher {
4
5
  constructor();
5
- isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean;
6
+ isErrorState(control: UntypedFormControl | null, form: FormGroupDirective | NgForm | null): boolean;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormErrorStateMatcher, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<KlesFormErrorStateMatcher>;
6
9
  }
@@ -1,2 +1,42 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@angular/material/slider";
4
+ import * as i3 from "@angular/material/button";
5
+ import * as i4 from "@angular/material/toolbar";
6
+ import * as i5 from "@angular/material/icon";
7
+ import * as i6 from "@angular/material/sidenav";
8
+ import * as i7 from "@angular/material/badge";
9
+ import * as i8 from "@angular/material/list";
10
+ import * as i9 from "@angular/material/grid-list";
11
+ import * as i10 from "@angular/material/form-field";
12
+ import * as i11 from "@angular/material/input";
13
+ import * as i12 from "@angular/material/select";
14
+ import * as i13 from "@angular/material/radio";
15
+ import * as i14 from "@angular/material/datepicker";
16
+ import * as i15 from "@angular/material/chips";
17
+ import * as i16 from "@angular/material/tooltip";
18
+ import * as i17 from "@angular/material/table";
19
+ import * as i18 from "@angular/material/paginator";
20
+ import * as i19 from "@angular/material/card";
21
+ import * as i20 from "@angular/material/menu";
22
+ import * as i21 from "@angular/material/tabs";
23
+ import * as i22 from "@angular/cdk/table";
24
+ import * as i23 from "@angular/material/progress-spinner";
25
+ import * as i24 from "@angular/material/checkbox";
26
+ import * as i25 from "@angular/material/dialog";
27
+ import * as i26 from "@angular/material/autocomplete";
28
+ import * as i27 from "@angular/material/progress-bar";
29
+ import * as i28 from "@angular/material/sort";
30
+ import * as i29 from "@angular/material/expansion";
31
+ import * as i30 from "@angular/material/core";
32
+ import * as i31 from "@angular/material/snack-bar";
33
+ import * as i32 from "@angular/material/tree";
34
+ import * as i33 from "@angular/material/slide-toggle";
35
+ import * as i34 from "ngx-color-picker";
36
+ import * as i35 from "@angular/material/button-toggle";
37
+ import * as i36 from "@angular/cdk/scrolling";
1
38
  export declare class MaterialModule {
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
40
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.CommonModule, typeof i2.MatSliderModule, typeof i3.MatButtonModule, typeof i4.MatToolbarModule, typeof i5.MatIconModule, typeof i6.MatSidenavModule, typeof i7.MatBadgeModule, typeof i8.MatListModule, typeof i9.MatGridListModule, typeof i10.MatFormFieldModule, typeof i11.MatInputModule, typeof i12.MatSelectModule, typeof i13.MatRadioModule, typeof i14.MatDatepickerModule, typeof i15.MatChipsModule, typeof i16.MatTooltipModule, typeof i17.MatTableModule, typeof i18.MatPaginatorModule, typeof i19.MatCardModule, typeof i20.MatMenuModule, typeof i21.MatTabsModule, typeof i22.CdkTableModule, typeof i23.MatProgressSpinnerModule, typeof i24.MatCheckboxModule, typeof i25.MatDialogModule, typeof i26.MatAutocompleteModule, typeof i27.MatProgressBarModule, typeof i28.MatSortModule, typeof i29.MatExpansionModule, typeof i30.MatNativeDateModule, typeof i31.MatSnackBarModule, typeof i32.MatTreeModule, typeof i2.MatSliderModule, typeof i3.MatButtonModule, typeof i33.MatSlideToggleModule, typeof i34.ColorPickerModule, typeof i35.MatButtonToggleModule], [typeof i3.MatButtonModule, typeof i4.MatToolbarModule, typeof i5.MatIconModule, typeof i6.MatSidenavModule, typeof i7.MatBadgeModule, typeof i8.MatListModule, typeof i9.MatGridListModule, typeof i11.MatInputModule, typeof i10.MatFormFieldModule, typeof i12.MatSelectModule, typeof i13.MatRadioModule, typeof i14.MatDatepickerModule, typeof i15.MatChipsModule, typeof i16.MatTooltipModule, typeof i17.MatTableModule, typeof i18.MatPaginatorModule, typeof i19.MatCardModule, typeof i20.MatMenuModule, typeof i21.MatTabsModule, typeof i22.CdkTableModule, typeof i23.MatProgressSpinnerModule, typeof i24.MatCheckboxModule, typeof i25.MatDialogModule, typeof i26.MatAutocompleteModule, typeof i27.MatProgressBarModule, typeof i28.MatSortModule, typeof i29.MatExpansionModule, typeof i30.MatNativeDateModule, typeof i31.MatSnackBarModule, typeof i32.MatTreeModule, typeof i2.MatSliderModule, typeof i3.MatButtonModule, typeof i33.MatSlideToggleModule, typeof i34.ColorPickerModule, typeof i36.ScrollingModule, typeof i36.CdkScrollable, typeof i35.MatButtonToggleModule]>;
41
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
2
42
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from "@angular/core";
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ArrayFormatPipe implements PipeTransform {
3
4
  transform(values: any[], property?: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArrayFormatPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ArrayFormatPipe, "arrayFormat", false>;
4
7
  }
@@ -1,7 +1,10 @@
1
1
  import { PipeTransform } from "@angular/core";
2
+ import * as i0 from "@angular/core";
2
3
  export declare class KlesTransformPipe implements PipeTransform {
3
4
  transform(value: any, pipes: {
4
5
  pipe: PipeTransform;
5
6
  options?: any[];
6
7
  }[]): any;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesTransformPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<KlesTransformPipe, "klesTransform", false>;
7
10
  }