special-forms 2.0.0 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/README.md +1 -1
  2. package/esm2020/lib/components/index.mjs +4 -12
  3. package/esm2020/lib/components/special-autocomplete/special-autocomplete.component.mjs +25 -9
  4. package/esm2020/lib/components/special-checkbox/special-checkbox.component.mjs +21 -5
  5. package/esm2020/lib/components/special-datepicker/special-datepicker.component.mjs +26 -9
  6. package/esm2020/lib/components/special-dropdown/special-dropdown.component.mjs +23 -9
  7. package/esm2020/lib/components/special-form/special-form.component.mjs +24 -22
  8. package/esm2020/lib/components/special-form/special-form.module.mjs +46 -34
  9. package/esm2020/lib/components/special-input/special-input.component.mjs +23 -8
  10. package/esm2020/lib/components/special-label/special-label.component.mjs +10 -7
  11. package/esm2020/lib/components/special-label/special-label.interface.mjs +1 -1
  12. package/esm2020/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.component.mjs +28 -11
  13. package/esm2020/lib/components/special-richtext/special-richtext.component.mjs +44 -0
  14. package/esm2020/lib/components/special-richtext/special-richtext.interface.mjs +2 -0
  15. package/esm2020/lib/components/special-text-area/special-text-area.component.mjs +23 -8
  16. package/esm2020/lib/components/special-upload/special-upload.component.mjs +33 -19
  17. package/esm2020/lib/core/aux-data/control-types.enum.mjs +2 -1
  18. package/esm2020/lib/core/interfaces/form.interfaces.mjs +1 -1
  19. package/esm2020/lib/core/interfaces/special-control.interface.mjs +3 -0
  20. package/esm2020/lib/core/masks/currency.mask.mjs +11 -0
  21. package/esm2020/lib/core/masks/index.mjs +3 -0
  22. package/esm2020/lib/core/masks/number.mask.mjs +3 -0
  23. package/esm2020/lib/core/pipes/controls-list-pipe/controls-list.pipe.mjs +18 -0
  24. package/esm2020/lib/core/pipes/controls-list-pipe/controls-list.pipe.module.mjs +18 -0
  25. package/esm2020/lib/core/pipes/error-message-pipe/error.pipe.mjs +22 -0
  26. package/esm2020/lib/core/pipes/error-message-pipe/error.pipe.module.mjs +20 -0
  27. package/esm2020/lib/core/pipes/index.mjs +3 -0
  28. package/esm2020/lib/core/pipes/text-by-function/text-by-function.pipe.mjs +22 -0
  29. package/esm2020/lib/core/pipes/text-by-function/text-by-function.pipe.module.mjs +20 -0
  30. package/esm2020/lib/core/services/special-form-builder/special-form-builder.service.mjs +3 -3
  31. package/esm2020/public-api.mjs +7 -1
  32. package/fesm2015/special-forms.mjs +318 -518
  33. package/fesm2015/special-forms.mjs.map +1 -1
  34. package/fesm2020/special-forms.mjs +318 -518
  35. package/fesm2020/special-forms.mjs.map +1 -1
  36. package/lib/components/index.d.ts +3 -11
  37. package/lib/components/special-autocomplete/special-autocomplete.component.d.ts +2 -2
  38. package/lib/components/special-autocomplete/special-autocomplete.interface.d.ts +1 -1
  39. package/lib/components/special-checkbox/special-checkbox.component.d.ts +1 -1
  40. package/lib/components/special-checkbox/special-checkbox.interface.d.ts +1 -1
  41. package/lib/components/special-datepicker/special-datepicker.component.d.ts +1 -1
  42. package/lib/components/special-datepicker/special-datepicker.interface.d.ts +1 -1
  43. package/lib/components/special-dropdown/special-dropdown.component.d.ts +2 -2
  44. package/lib/components/special-dropdown/special-dropdown.interface.d.ts +1 -1
  45. package/lib/components/special-form/special-form.component.d.ts +4 -4
  46. package/lib/components/special-form/special-form.module.d.ts +12 -11
  47. package/lib/components/special-input/special-input.component.d.ts +2 -2
  48. package/lib/components/special-input/special-input.interface.d.ts +1 -1
  49. package/lib/components/special-label/special-label.component.d.ts +1 -1
  50. package/lib/components/special-label/special-label.interface.d.ts +1 -1
  51. package/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.component.d.ts +2 -2
  52. package/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.interface.d.ts +1 -1
  53. package/lib/components/special-richtext/special-richtext.component.d.ts +18 -0
  54. package/lib/components/special-richtext/special-richtext.interface.d.ts +7 -0
  55. package/lib/components/special-text-area/special-text-area.component.d.ts +1 -1
  56. package/lib/components/special-text-area/special-text-area.interface.d.ts +1 -1
  57. package/lib/components/special-upload/special-upload.component.d.ts +3 -3
  58. package/lib/components/special-upload/special-upload.interface.d.ts +1 -1
  59. package/lib/core/aux-data/control-types.enum.d.ts +1 -0
  60. package/lib/core/interfaces/form.interfaces.d.ts +17 -15
  61. package/lib/core/interfaces/special-control.interface.d.ts +4 -0
  62. package/lib/core/masks/currency.mask.d.ts +1 -0
  63. package/lib/core/masks/index.d.ts +2 -0
  64. package/lib/core/masks/number.mask.d.ts +1 -0
  65. package/lib/{pipes → core/pipes}/controls-list-pipe/controls-list.pipe.d.ts +1 -1
  66. package/lib/{pipes → core/pipes}/controls-list-pipe/controls-list.pipe.module.d.ts +0 -0
  67. package/lib/{pipes → core/pipes}/error-message-pipe/error.pipe.d.ts +0 -0
  68. package/lib/{pipes → core/pipes}/error-message-pipe/error.pipe.module.d.ts +0 -0
  69. package/lib/{pipes → core/pipes}/index.d.ts +0 -0
  70. package/lib/{pipes → core/pipes}/text-by-function/text-by-function.pipe.d.ts +0 -0
  71. package/lib/{pipes → core/pipes}/text-by-function/text-by-function.pipe.module.d.ts +0 -0
  72. package/package.json +13 -5
  73. package/public-api.d.ts +6 -0
  74. package/esm2020/lib/components/special-autocomplete/special-autocomplete.module.mjs +0 -47
  75. package/esm2020/lib/components/special-checkbox/special-checkbox.module.mjs +0 -47
  76. package/esm2020/lib/components/special-datepicker/special-datepicker.module.mjs +0 -48
  77. package/esm2020/lib/components/special-dropdown/special-dropdown.module.mjs +0 -43
  78. package/esm2020/lib/components/special-input/special-input.module.mjs +0 -44
  79. package/esm2020/lib/components/special-label/special-label.module.mjs +0 -47
  80. package/esm2020/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.module.mjs +0 -51
  81. package/esm2020/lib/components/special-text-area/special-text-area.module.mjs +0 -44
  82. package/esm2020/lib/components/special-upload/special-upload.module.mjs +0 -43
  83. package/esm2020/lib/pipes/controls-list-pipe/controls-list.pipe.mjs +0 -18
  84. package/esm2020/lib/pipes/controls-list-pipe/controls-list.pipe.module.mjs +0 -18
  85. package/esm2020/lib/pipes/error-message-pipe/error.pipe.mjs +0 -22
  86. package/esm2020/lib/pipes/error-message-pipe/error.pipe.module.mjs +0 -20
  87. package/esm2020/lib/pipes/index.mjs +0 -3
  88. package/esm2020/lib/pipes/text-by-function/text-by-function.pipe.mjs +0 -22
  89. package/esm2020/lib/pipes/text-by-function/text-by-function.pipe.module.mjs +0 -20
  90. package/lib/components/special-autocomplete/special-autocomplete.module.d.ts +0 -15
  91. package/lib/components/special-checkbox/special-checkbox.module.d.ts +0 -14
  92. package/lib/components/special-datepicker/special-datepicker.module.d.ts +0 -15
  93. package/lib/components/special-dropdown/special-dropdown.module.d.ts +0 -14
  94. package/lib/components/special-input/special-input.module.d.ts +0 -14
  95. package/lib/components/special-label/special-label.module.d.ts +0 -15
  96. package/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.module.d.ts +0 -16
  97. package/lib/components/special-text-area/special-text-area.module.d.ts +0 -14
  98. package/lib/components/special-upload/special-upload.module.d.ts +0 -13
  99. package/special-forms-2.0.0.tgz +0 -0
@@ -1,16 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./special-multiple-autocomplete.component";
3
- import * as i2 from "@angular/material/input";
4
- import * as i3 from "@angular/common";
5
- import * as i4 from "@angular/material/autocomplete";
6
- import * as i5 from "@angular/material/icon";
7
- import * as i6 from "@angular/forms";
8
- import * as i7 from "@angular/material/button";
9
- import * as i8 from "../../pipes/error-message-pipe/error.pipe.module";
10
- import * as i9 from "../../pipes/text-by-function/text-by-function.pipe.module";
11
- import * as i10 from "@angular/material/chips";
12
- export declare class SpecialMultipleAutocompleteModule {
13
- static ɵfac: i0.ɵɵFactoryDeclaration<SpecialMultipleAutocompleteModule, never>;
14
- static ɵmod: i0.ɵɵNgModuleDeclaration<SpecialMultipleAutocompleteModule, [typeof i1.SpecialMultipleAutocompleteComponent], [typeof i2.MatInputModule, typeof i3.CommonModule, typeof i4.MatAutocompleteModule, typeof i5.MatIconModule, typeof i6.ReactiveFormsModule, typeof i7.MatButtonModule, typeof i8.ErrorMessagePipeModule, typeof i9.TextByFunctionPipeModule, typeof i10.MatChipsModule], [typeof i1.SpecialMultipleAutocompleteComponent]>;
15
- static ɵinj: i0.ɵɵInjectorDeclaration<SpecialMultipleAutocompleteModule>;
16
- }
@@ -1,14 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./special-text-area.component";
3
- import * as i2 from "@ngneat/input-mask";
4
- import * as i3 from "@angular/common";
5
- import * as i4 from "@angular/material/input";
6
- import * as i5 from "@angular/material/icon";
7
- import * as i6 from "@angular/forms";
8
- import * as i7 from "@angular/material/button";
9
- import * as i8 from "../../pipes/error-message-pipe/error.pipe.module";
10
- export declare class SpecialTextAreaModule {
11
- static ɵfac: i0.ɵɵFactoryDeclaration<SpecialTextAreaModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<SpecialTextAreaModule, [typeof i1.SpecialTextAreaComponent], [typeof i2.InputMaskModule, typeof i3.CommonModule, typeof i4.MatInputModule, typeof i5.MatIconModule, typeof i6.ReactiveFormsModule, typeof i7.MatButtonModule, typeof i8.ErrorMessagePipeModule], [typeof i1.SpecialTextAreaComponent]>;
13
- static ɵinj: i0.ɵɵInjectorDeclaration<SpecialTextAreaModule>;
14
- }
@@ -1,13 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./special-upload.component";
3
- import * as i2 from "@angular/forms";
4
- import * as i3 from "ngx-dropzone";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "@angular/material/icon";
7
- import * as i6 from "@angular/material/button";
8
- import * as i7 from "../../pipes/error-message-pipe/error.pipe.module";
9
- export declare class SpecialUploadModule {
10
- static ɵfac: i0.ɵɵFactoryDeclaration<SpecialUploadModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<SpecialUploadModule, [typeof i1.SpecialUploadComponent], [typeof i2.FormsModule, typeof i3.NgxDropzoneModule, typeof i4.CommonModule, typeof i5.MatIconModule, typeof i2.ReactiveFormsModule, typeof i6.MatButtonModule, typeof i7.ErrorMessagePipeModule], [typeof i1.SpecialUploadComponent]>;
12
- static ɵinj: i0.ɵɵInjectorDeclaration<SpecialUploadModule>;
13
- }
Binary file