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.
- package/README.md +1 -1
- package/esm2020/lib/components/index.mjs +4 -12
- package/esm2020/lib/components/special-autocomplete/special-autocomplete.component.mjs +25 -9
- package/esm2020/lib/components/special-checkbox/special-checkbox.component.mjs +21 -5
- package/esm2020/lib/components/special-datepicker/special-datepicker.component.mjs +26 -9
- package/esm2020/lib/components/special-dropdown/special-dropdown.component.mjs +23 -9
- package/esm2020/lib/components/special-form/special-form.component.mjs +24 -22
- package/esm2020/lib/components/special-form/special-form.module.mjs +46 -34
- package/esm2020/lib/components/special-input/special-input.component.mjs +23 -8
- package/esm2020/lib/components/special-label/special-label.component.mjs +10 -7
- package/esm2020/lib/components/special-label/special-label.interface.mjs +1 -1
- package/esm2020/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.component.mjs +28 -11
- package/esm2020/lib/components/special-richtext/special-richtext.component.mjs +44 -0
- package/esm2020/lib/components/special-richtext/special-richtext.interface.mjs +2 -0
- package/esm2020/lib/components/special-text-area/special-text-area.component.mjs +23 -8
- package/esm2020/lib/components/special-upload/special-upload.component.mjs +33 -19
- package/esm2020/lib/core/aux-data/control-types.enum.mjs +2 -1
- package/esm2020/lib/core/interfaces/form.interfaces.mjs +1 -1
- package/esm2020/lib/core/interfaces/special-control.interface.mjs +3 -0
- package/esm2020/lib/core/masks/currency.mask.mjs +11 -0
- package/esm2020/lib/core/masks/index.mjs +3 -0
- package/esm2020/lib/core/masks/number.mask.mjs +3 -0
- package/esm2020/lib/core/pipes/controls-list-pipe/controls-list.pipe.mjs +18 -0
- package/esm2020/lib/core/pipes/controls-list-pipe/controls-list.pipe.module.mjs +18 -0
- package/esm2020/lib/core/pipes/error-message-pipe/error.pipe.mjs +22 -0
- package/esm2020/lib/core/pipes/error-message-pipe/error.pipe.module.mjs +20 -0
- package/esm2020/lib/core/pipes/index.mjs +3 -0
- package/esm2020/lib/core/pipes/text-by-function/text-by-function.pipe.mjs +22 -0
- package/esm2020/lib/core/pipes/text-by-function/text-by-function.pipe.module.mjs +20 -0
- package/esm2020/lib/core/services/special-form-builder/special-form-builder.service.mjs +3 -3
- package/esm2020/public-api.mjs +7 -1
- package/fesm2015/special-forms.mjs +318 -518
- package/fesm2015/special-forms.mjs.map +1 -1
- package/fesm2020/special-forms.mjs +318 -518
- package/fesm2020/special-forms.mjs.map +1 -1
- package/lib/components/index.d.ts +3 -11
- package/lib/components/special-autocomplete/special-autocomplete.component.d.ts +2 -2
- package/lib/components/special-autocomplete/special-autocomplete.interface.d.ts +1 -1
- package/lib/components/special-checkbox/special-checkbox.component.d.ts +1 -1
- package/lib/components/special-checkbox/special-checkbox.interface.d.ts +1 -1
- package/lib/components/special-datepicker/special-datepicker.component.d.ts +1 -1
- package/lib/components/special-datepicker/special-datepicker.interface.d.ts +1 -1
- package/lib/components/special-dropdown/special-dropdown.component.d.ts +2 -2
- package/lib/components/special-dropdown/special-dropdown.interface.d.ts +1 -1
- package/lib/components/special-form/special-form.component.d.ts +4 -4
- package/lib/components/special-form/special-form.module.d.ts +12 -11
- package/lib/components/special-input/special-input.component.d.ts +2 -2
- package/lib/components/special-input/special-input.interface.d.ts +1 -1
- package/lib/components/special-label/special-label.component.d.ts +1 -1
- package/lib/components/special-label/special-label.interface.d.ts +1 -1
- package/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.component.d.ts +2 -2
- package/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.interface.d.ts +1 -1
- package/lib/components/special-richtext/special-richtext.component.d.ts +18 -0
- package/lib/components/special-richtext/special-richtext.interface.d.ts +7 -0
- package/lib/components/special-text-area/special-text-area.component.d.ts +1 -1
- package/lib/components/special-text-area/special-text-area.interface.d.ts +1 -1
- package/lib/components/special-upload/special-upload.component.d.ts +3 -3
- package/lib/components/special-upload/special-upload.interface.d.ts +1 -1
- package/lib/core/aux-data/control-types.enum.d.ts +1 -0
- package/lib/core/interfaces/form.interfaces.d.ts +17 -15
- package/lib/core/interfaces/special-control.interface.d.ts +4 -0
- package/lib/core/masks/currency.mask.d.ts +1 -0
- package/lib/core/masks/index.d.ts +2 -0
- package/lib/core/masks/number.mask.d.ts +1 -0
- package/lib/{pipes → core/pipes}/controls-list-pipe/controls-list.pipe.d.ts +1 -1
- package/lib/{pipes → core/pipes}/controls-list-pipe/controls-list.pipe.module.d.ts +0 -0
- package/lib/{pipes → core/pipes}/error-message-pipe/error.pipe.d.ts +0 -0
- package/lib/{pipes → core/pipes}/error-message-pipe/error.pipe.module.d.ts +0 -0
- package/lib/{pipes → core/pipes}/index.d.ts +0 -0
- package/lib/{pipes → core/pipes}/text-by-function/text-by-function.pipe.d.ts +0 -0
- package/lib/{pipes → core/pipes}/text-by-function/text-by-function.pipe.module.d.ts +0 -0
- package/package.json +13 -5
- package/public-api.d.ts +6 -0
- package/esm2020/lib/components/special-autocomplete/special-autocomplete.module.mjs +0 -47
- package/esm2020/lib/components/special-checkbox/special-checkbox.module.mjs +0 -47
- package/esm2020/lib/components/special-datepicker/special-datepicker.module.mjs +0 -48
- package/esm2020/lib/components/special-dropdown/special-dropdown.module.mjs +0 -43
- package/esm2020/lib/components/special-input/special-input.module.mjs +0 -44
- package/esm2020/lib/components/special-label/special-label.module.mjs +0 -47
- package/esm2020/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.module.mjs +0 -51
- package/esm2020/lib/components/special-text-area/special-text-area.module.mjs +0 -44
- package/esm2020/lib/components/special-upload/special-upload.module.mjs +0 -43
- package/esm2020/lib/pipes/controls-list-pipe/controls-list.pipe.mjs +0 -18
- package/esm2020/lib/pipes/controls-list-pipe/controls-list.pipe.module.mjs +0 -18
- package/esm2020/lib/pipes/error-message-pipe/error.pipe.mjs +0 -22
- package/esm2020/lib/pipes/error-message-pipe/error.pipe.module.mjs +0 -20
- package/esm2020/lib/pipes/index.mjs +0 -3
- package/esm2020/lib/pipes/text-by-function/text-by-function.pipe.mjs +0 -22
- package/esm2020/lib/pipes/text-by-function/text-by-function.pipe.module.mjs +0 -20
- package/lib/components/special-autocomplete/special-autocomplete.module.d.ts +0 -15
- package/lib/components/special-checkbox/special-checkbox.module.d.ts +0 -14
- package/lib/components/special-datepicker/special-datepicker.module.d.ts +0 -15
- package/lib/components/special-dropdown/special-dropdown.module.d.ts +0 -14
- package/lib/components/special-input/special-input.module.d.ts +0 -14
- package/lib/components/special-label/special-label.module.d.ts +0 -15
- package/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.module.d.ts +0 -16
- package/lib/components/special-text-area/special-text-area.module.d.ts +0 -14
- package/lib/components/special-upload/special-upload.module.d.ts +0 -13
- package/special-forms-2.0.0.tgz +0 -0
package/lib/components/special-multiple-autocomplete/special-multiple-autocomplete.module.d.ts
DELETED
|
@@ -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
|
-
}
|
package/special-forms-2.0.0.tgz
DELETED
|
Binary file
|