@3kles/kles-material-dynamicforms 21.0.2 → 21.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@3kles/kles-material-dynamicforms",
|
|
3
|
-
"version": "21.0
|
|
3
|
+
"version": "21.1.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/3kles-lab/klesmaterialdynamicforms"
|
|
@@ -16,21 +16,16 @@
|
|
|
16
16
|
"license": "ISC",
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"@3kles/kles-material-datepicker": "^21.0.0",
|
|
19
|
-
"@angular/animations": "^21.2.19",
|
|
20
19
|
"@angular/cdk": "^21.2.14",
|
|
21
20
|
"@angular/common": "^21.2.19",
|
|
22
21
|
"@angular/core": "^21.2.19",
|
|
23
22
|
"@angular/forms": "^21.2.19",
|
|
24
23
|
"@angular/material": "^21.2.14",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"ngx-mat-select-search": "^8.0.2",
|
|
31
|
-
"rxjs": "^7.8.0",
|
|
32
|
-
"uuid": "^8.3.0",
|
|
33
|
-
"zone.js": "~0.15.1"
|
|
24
|
+
"lodash": "^4.17.21",
|
|
25
|
+
"ngx-color-picker": "^20.1.1",
|
|
26
|
+
"ngx-mat-select-search": "^9.0.0",
|
|
27
|
+
"rxjs": "^6.5.3 || ^7.4.0",
|
|
28
|
+
"uuid": "^8.3.0"
|
|
34
29
|
},
|
|
35
30
|
"dependencies": {
|
|
36
31
|
"tslib": "^2.0.0"
|
|
@@ -7,6 +7,8 @@ import * as i30 from '@angular/material/core';
|
|
|
7
7
|
import { DateAdapter, MatDateFormats, MatOption, ErrorStateMatcher } from '@angular/material/core';
|
|
8
8
|
import * as i10 from '@angular/material/form-field';
|
|
9
9
|
import { SubscriptSizing, MatFormFieldControl } from '@angular/material/form-field';
|
|
10
|
+
import * as i3 from '@angular/material/button';
|
|
11
|
+
import { MatButtonAppearance } from '@angular/material/button';
|
|
10
12
|
import * as i24 from '@angular/material/checkbox';
|
|
11
13
|
import { MatCheckbox, MatCheckboxChange } from '@angular/material/checkbox';
|
|
12
14
|
import * as i16 from '@angular/material/tooltip';
|
|
@@ -14,7 +16,6 @@ import { MatTooltip } from '@angular/material/tooltip';
|
|
|
14
16
|
import { Clipboard } from '@angular/cdk/clipboard';
|
|
15
17
|
import * as i1 from '@angular/common';
|
|
16
18
|
import * as i2 from '@angular/material/slider';
|
|
17
|
-
import * as i3 from '@angular/material/button';
|
|
18
19
|
import * as i4 from '@angular/material/toolbar';
|
|
19
20
|
import * as i5 from '@angular/material/icon';
|
|
20
21
|
import * as i6 from '@angular/material/sidenav';
|
|
@@ -95,13 +96,6 @@ interface IKlesField {
|
|
|
95
96
|
interface IKlesDirective extends OnInit, OnDestroy {
|
|
96
97
|
}
|
|
97
98
|
|
|
98
|
-
declare enum EnumButtonAttribute {
|
|
99
|
-
'mat-button' = "mat-button",
|
|
100
|
-
'mat-flat-button' = "mat-flat-button",
|
|
101
|
-
'mat-raised-button' = "mat-raised-button",
|
|
102
|
-
'mat-stroked-button' = "mat-stroked-button"
|
|
103
|
-
}
|
|
104
|
-
|
|
105
99
|
interface IKlesFieldUi {
|
|
106
100
|
inputType?: 'text' | 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'time' | 'url' | 'week';
|
|
107
101
|
min?: number | Date;
|
|
@@ -118,6 +112,7 @@ interface IKlesFieldUi {
|
|
|
118
112
|
icon?: string;
|
|
119
113
|
iconSvg?: string;
|
|
120
114
|
appearance?: 'fill' | 'outline';
|
|
115
|
+
buttonAppearance?: MatButtonAppearance;
|
|
121
116
|
visible?: boolean;
|
|
122
117
|
colorOption?: {
|
|
123
118
|
disable?: boolean;
|
|
@@ -185,7 +180,6 @@ interface IKlesFormField {
|
|
|
185
180
|
clearableComponent?: Type<any>;
|
|
186
181
|
subComponents?: Type<any>[];
|
|
187
182
|
autofocus?: boolean;
|
|
188
|
-
attribute?: EnumButtonAttribute;
|
|
189
183
|
subscriptSizing?: SubscriptSizing;
|
|
190
184
|
nonNullable?: boolean;
|
|
191
185
|
onFocus?: (field: IKlesFieldConfig, group: UntypedFormGroup) => void;
|
|
@@ -308,6 +302,7 @@ declare abstract class KlesFieldAbstract implements IKlesField, OnInit, AfterVie
|
|
|
308
302
|
color: i0.Signal<any>;
|
|
309
303
|
icon: i0.Signal<any>;
|
|
310
304
|
iconSvg: i0.Signal<any>;
|
|
305
|
+
buttonAppearance: i0.Signal<any>;
|
|
311
306
|
protected readonly viewRef: ViewContainerRef;
|
|
312
307
|
directive: any;
|
|
313
308
|
protected _onDestroy: Subject<void>;
|
|
@@ -331,39 +326,6 @@ declare class KlesFormLabelComponent extends KlesFieldAbstract implements OnInit
|
|
|
331
326
|
static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormLabelComponent, "kles-form-label", never, {}, {}, never, never, true, never>;
|
|
332
327
|
}
|
|
333
328
|
|
|
334
|
-
declare class KlesTransformPipe implements PipeTransform {
|
|
335
|
-
transform(value: any, pipes: {
|
|
336
|
-
pipe: PipeTransform;
|
|
337
|
-
options?: any[];
|
|
338
|
-
}[]): any;
|
|
339
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KlesTransformPipe, never>;
|
|
340
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<KlesTransformPipe, "klesTransform", true>;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
declare class ArrayFormatPipe implements PipeTransform {
|
|
344
|
-
transform(values: any[], property?: string): string;
|
|
345
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ArrayFormatPipe, never>;
|
|
346
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<ArrayFormatPipe, "arrayFormat", true>;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
interface IKlesClearControl extends IKlesField {
|
|
350
|
-
clear(event: any): void;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
declare class KlesFormClearComponent implements IKlesClearControl, OnDestroy {
|
|
354
|
-
readonly field: IKlesFieldConfig;
|
|
355
|
-
readonly group: FormGroup<any>;
|
|
356
|
-
readonly siblingFields: IKlesFieldConfig[];
|
|
357
|
-
private _onDestroy;
|
|
358
|
-
disabled: Signal<boolean>;
|
|
359
|
-
constructor();
|
|
360
|
-
ngOnDestroy(): void;
|
|
361
|
-
clear(event: any): void;
|
|
362
|
-
private isPresent;
|
|
363
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormClearComponent, never>;
|
|
364
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormClearComponent, "kles-form-clear", never, {}, {}, never, never, true, never>;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
329
|
interface IButton {
|
|
368
330
|
event?: any;
|
|
369
331
|
uiButton?: IUIButton;
|
|
@@ -377,6 +339,7 @@ interface IUIButton {
|
|
|
377
339
|
class?: string;
|
|
378
340
|
type?: string;
|
|
379
341
|
accept?: string;
|
|
342
|
+
buttonAppearance?: MatButtonAppearance;
|
|
380
343
|
}
|
|
381
344
|
declare abstract class KlesButtonBase implements OnInit, ControlValueAccessor {
|
|
382
345
|
name: string;
|
|
@@ -390,6 +353,7 @@ declare abstract class KlesButtonBase implements OnInit, ControlValueAccessor {
|
|
|
390
353
|
classButton: string;
|
|
391
354
|
value: IButton;
|
|
392
355
|
tooltip?: string;
|
|
356
|
+
buttonAppearance: MatButtonAppearance;
|
|
393
357
|
protected _type: string;
|
|
394
358
|
onChange: any;
|
|
395
359
|
onTouched: any;
|
|
@@ -400,12 +364,45 @@ declare abstract class KlesButtonBase implements OnInit, ControlValueAccessor {
|
|
|
400
364
|
registerOnTouched(fn: any): void;
|
|
401
365
|
setDisabledState?(isDisabled: boolean): void;
|
|
402
366
|
static ɵfac: i0.ɵɵFactoryDeclaration<KlesButtonBase, never>;
|
|
403
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KlesButtonBase, "ng-component", never, { "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "color": { "alias": "color"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSvg": { "alias": "iconSvg"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "classButton": { "alias": "classButton"; "required": false; }; "value": { "alias": "value"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, true, never>;
|
|
367
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KlesButtonBase, "ng-component", never, { "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "color": { "alias": "color"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSvg": { "alias": "iconSvg"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "classButton": { "alias": "classButton"; "required": false; }; "value": { "alias": "value"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "buttonAppearance": { "alias": "buttonAppearance"; "required": false; }; }, {}, never, never, true, never>;
|
|
404
368
|
}
|
|
405
369
|
|
|
406
|
-
declare class
|
|
407
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
408
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
370
|
+
declare class KlesButtonComponent extends KlesButtonBase implements OnInit {
|
|
371
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KlesButtonComponent, never>;
|
|
372
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KlesButtonComponent, "kles-button", never, {}, {}, never, never, true, never>;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
declare class KlesTransformPipe implements PipeTransform {
|
|
376
|
+
transform(value: any, pipes: {
|
|
377
|
+
pipe: PipeTransform;
|
|
378
|
+
options?: any[];
|
|
379
|
+
}[]): any;
|
|
380
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KlesTransformPipe, never>;
|
|
381
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<KlesTransformPipe, "klesTransform", true>;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
declare class ArrayFormatPipe implements PipeTransform {
|
|
385
|
+
transform(values: any[], property?: string): string;
|
|
386
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArrayFormatPipe, never>;
|
|
387
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ArrayFormatPipe, "arrayFormat", true>;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
interface IKlesClearControl extends IKlesField {
|
|
391
|
+
clear(event: any): void;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
declare class KlesFormClearComponent implements IKlesClearControl, OnDestroy {
|
|
395
|
+
readonly field: IKlesFieldConfig;
|
|
396
|
+
readonly group: FormGroup<any>;
|
|
397
|
+
readonly siblingFields: IKlesFieldConfig[];
|
|
398
|
+
private _onDestroy;
|
|
399
|
+
disabled: Signal<boolean>;
|
|
400
|
+
constructor();
|
|
401
|
+
ngOnDestroy(): void;
|
|
402
|
+
clear(event: any): void;
|
|
403
|
+
private isPresent;
|
|
404
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormClearComponent, never>;
|
|
405
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormClearComponent, "kles-form-clear", never, {}, {}, never, never, true, never>;
|
|
409
406
|
}
|
|
410
407
|
|
|
411
408
|
declare class MatErrorMessageDirective implements AfterViewInit {
|
|
@@ -535,13 +532,6 @@ declare class KlesFormFileComponent extends KlesFieldAbstract {
|
|
|
535
532
|
static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormFileComponent, "kles-form-file", never, {}, {}, never, never, true, never>;
|
|
536
533
|
}
|
|
537
534
|
|
|
538
|
-
declare class KlesButtonComponent extends KlesButtonBase implements OnInit {
|
|
539
|
-
mdcClasses: i0.WritableSignal<string[]>;
|
|
540
|
-
set attribute(attribute: EnumButtonAttribute);
|
|
541
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KlesButtonComponent, never>;
|
|
542
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KlesButtonComponent, "kles-button", never, { "attribute": { "alias": "attribute"; "required": false; }; }, {}, never, never, true, never>;
|
|
543
|
-
}
|
|
544
|
-
|
|
545
535
|
declare class KlesFormButtonComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
|
|
546
536
|
ngOnInit(): void;
|
|
547
537
|
ngOnDestroy(): void;
|
|
@@ -925,6 +915,11 @@ declare class KlesFormFabComponent extends KlesFieldAbstract implements OnInit,
|
|
|
925
915
|
static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormFabComponent, "kles-form-fab", never, {}, {}, never, never, true, never>;
|
|
926
916
|
}
|
|
927
917
|
|
|
918
|
+
declare class KlesFabComponent extends KlesButtonBase implements OnInit {
|
|
919
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KlesFabComponent, never>;
|
|
920
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KlesFabComponent, "kles-fab", never, {}, {}, never, never, true, never>;
|
|
921
|
+
}
|
|
922
|
+
|
|
928
923
|
declare class KlesMiniFabComponent extends KlesButtonBase implements OnInit {
|
|
929
924
|
static ɵfac: i0.ɵɵFactoryDeclaration<KlesMiniFabComponent, never>;
|
|
930
925
|
static ɵcmp: i0.ɵɵComponentDeclaration<KlesMiniFabComponent, "kles-mini-fab", never, {}, {}, never, never, true, never>;
|
|
@@ -962,7 +957,7 @@ declare class KlesFormSelectionListSearchComponent extends KlesFieldAbstract imp
|
|
|
962
957
|
}
|
|
963
958
|
|
|
964
959
|
declare class KlesMaterialDynamicformsModule {
|
|
965
|
-
static declarations: ((typeof KlesFormClearComponent | typeof KlesDynamicFormComponent | typeof KlesFormLabelComponent | typeof
|
|
960
|
+
static declarations: ((typeof KlesFormClearComponent | typeof KlesDynamicFormComponent | typeof KlesFormLabelComponent | typeof KlesButtonComponent | typeof KlesIndeterminateCheckboxComponent | typeof KlesFileControlComponent | typeof KlesFormCopyComponent)[] | (typeof KlesDynamicFieldDirective | typeof MatErrorFormDirective | typeof KlesComponentDirective | typeof MatErrorMessageDirective)[] | (typeof KlesTransformPipe | typeof ArrayFormatPipe)[])[];
|
|
966
961
|
static ɵfac: i0.ɵɵFactoryDeclaration<KlesMaterialDynamicformsModule, never>;
|
|
967
962
|
static ɵmod: i0.ɵɵNgModuleDeclaration<KlesMaterialDynamicformsModule, never, [typeof i1.CommonModule, typeof i2$1.ReactiveFormsModule, typeof i2$1.FormsModule, typeof MaterialModule, typeof i4$1.NgxMatSelectSearchModule, typeof KlesDynamicFormComponent, typeof KlesFormLabelComponent, typeof KlesFormInputComponent, typeof KlesFormInputClearableComponent, typeof KlesFormBadgeComponent, typeof KlesFormFileComponent, typeof KlesFileControlComponent, typeof KlesButtonComponent, typeof KlesFormButtonComponent, typeof KlesButtonCheckerComponent, typeof KlesFormButtonCheckerComponent, typeof KlesButtonFileComponent, typeof KlesFormButtonFileComponent, typeof KlesFormSelectComponent, typeof KlesFormDateComponent, typeof KlesFormDateTimeComponent, typeof KlesFormRadioComponent, typeof KlesFormCheckboxComponent, typeof KlesIndeterminateCheckboxComponent, typeof KlesFormCheckboxIndeterminateComponent, typeof KlesFormListFieldComponent, typeof KlesFormColorComponent, typeof KlesFormTextareaComponent, typeof KlesFormTextComponent, typeof KlesFormChipComponent, typeof KlesFormGroupComponent, typeof KlesFormIconComponent, typeof KlesFormSelectSearchComponent, typeof KlesFormLineBreakComponent, typeof KlesFormLinkComponent, typeof KlesFormSlideToggleComponent, typeof KlesFormSelectionListComponent, typeof KlesFormButtonToogleGroupComponent, typeof KlesFormArrayComponent, typeof KlesFormRangeComponent, typeof KlesFormClearComponent, typeof KlesFormSelectLazySearchComponent, typeof KlesFormFabComponent, typeof KlesFabComponent, typeof KlesMiniFabComponent, typeof KlesFormMiniFabComponent, typeof KlesIconButtonComponent, typeof KlesFormIconButtonComponent, typeof KlesFormSelectionListSearchComponent, typeof KlesFormCopyComponent, typeof KlesDynamicFieldDirective, typeof KlesComponentDirective, typeof MatErrorMessageDirective, typeof MatErrorFormDirective, typeof KlesTransformPipe, typeof ArrayFormatPipe, typeof i56.ColorPickerComponent, typeof i56.ColorPickerDirective], [typeof KlesDynamicFormComponent, typeof KlesFormLabelComponent, typeof KlesFormInputComponent, typeof KlesFormInputClearableComponent, typeof KlesFormBadgeComponent, typeof KlesFormFileComponent, typeof KlesFileControlComponent, typeof KlesButtonComponent, typeof KlesFormButtonComponent, typeof KlesButtonCheckerComponent, typeof KlesFormButtonCheckerComponent, typeof KlesButtonFileComponent, typeof KlesFormButtonFileComponent, typeof KlesFormSelectComponent, typeof KlesFormDateComponent, typeof KlesFormDateTimeComponent, typeof KlesFormRadioComponent, typeof KlesFormCheckboxComponent, typeof KlesIndeterminateCheckboxComponent, typeof KlesFormCheckboxIndeterminateComponent, typeof KlesFormListFieldComponent, typeof KlesFormColorComponent, typeof KlesFormTextareaComponent, typeof KlesFormTextComponent, typeof KlesFormChipComponent, typeof KlesFormGroupComponent, typeof KlesFormIconComponent, typeof KlesFormSelectSearchComponent, typeof KlesFormLineBreakComponent, typeof KlesFormLinkComponent, typeof KlesFormSlideToggleComponent, typeof KlesFormSelectionListComponent, typeof KlesFormButtonToogleGroupComponent, typeof KlesFormArrayComponent, typeof KlesFormRangeComponent, typeof KlesFormClearComponent, typeof KlesFormSelectLazySearchComponent, typeof KlesFormFabComponent, typeof KlesFabComponent, typeof KlesMiniFabComponent, typeof KlesFormMiniFabComponent, typeof KlesIconButtonComponent, typeof KlesFormIconButtonComponent, typeof KlesFormSelectionListSearchComponent, typeof KlesFormCopyComponent, typeof KlesTransformPipe, typeof ArrayFormatPipe, typeof KlesDynamicFieldDirective, typeof KlesComponentDirective, typeof MatErrorMessageDirective, typeof MatErrorFormDirective]>;
|
|
968
963
|
static ɵinj: i0.ɵɵInjectorDeclaration<KlesMaterialDynamicformsModule>;
|
|
@@ -1079,5 +1074,5 @@ declare const SIBLING_FIELDS: InjectionToken<IKlesFieldConfig[]>;
|
|
|
1079
1074
|
declare const GROUP_UI: InjectionToken<GroupUiState<any>>;
|
|
1080
1075
|
declare const FIELD: InjectionToken<IKlesFieldConfig>;
|
|
1081
1076
|
|
|
1082
|
-
export { AbstractUiState, ArrayFormatPipe, ArrayUiState, ControlUiState,
|
|
1077
|
+
export { AbstractUiState, ArrayFormatPipe, ArrayUiState, ControlUiState, EnumType, FIELD, FIELD_NAME, FieldMapper, GROUP, GROUP_UI, GroupUiState, KlesAbstractFormControl, KlesAbstractFormUiControl, KlesButtonBase, KlesButtonCheckerComponent, KlesButtonComponent, KlesButtonFileComponent, KlesComponentDirective, KlesDynamicFieldDirective, KlesDynamicFormComponent, KlesDynamicFormIntl, KlesFabComponent, KlesFieldAbstract, KlesFileControlComponent, KlesFormArray, KlesFormArrayComponent, KlesFormBadgeComponent, KlesFormButtonCheckerComponent, KlesFormButtonComponent, KlesFormButtonFileComponent, KlesFormButtonToogleGroupComponent, KlesFormCheckboxComponent, KlesFormCheckboxIndeterminateComponent, KlesFormChipComponent, KlesFormClearComponent, KlesFormColorComponent, KlesFormControl, KlesFormCopyComponent, KlesFormDateComponent, KlesFormDateTimeComponent, KlesFormErrorStateMatcher, KlesFormFabComponent, KlesFormFileComponent, KlesFormGroup, KlesFormGroupComponent, KlesFormIconButtonComponent, KlesFormIconComponent, KlesFormInputClearableComponent, KlesFormInputComponent, KlesFormLabelComponent, KlesFormLineBreakComponent, KlesFormLinkComponent, KlesFormListFieldComponent, KlesFormMiniFabComponent, KlesFormPasswordVisibilityComponent, KlesFormRadioComponent, KlesFormRange, KlesFormRangeComponent, KlesFormSelectComponent, KlesFormSelectLazySearchComponent, KlesFormSelectSearchComponent, KlesFormSelectionListComponent, KlesFormSelectionListSearchComponent, KlesFormSlideToggleComponent, KlesFormTextComponent, KlesFormTextareaComponent, KlesFormUiArray, KlesFormUiControl, KlesFormUiGroup, KlesIconButtonComponent, KlesIndeterminateCheckboxComponent, KlesMaterialDynamicformsModule, KlesMiniFabComponent, KlesSelectionModel, KlesTransformPipe, MatErrorFormDirective, MatErrorMessageDirective, SIBLING_FIELDS, autocompleteObjectValidator, autocompleteStringValidator, componentMapper, isDestroyable, klesFieldControlFactory, klesFieldUiFactory };
|
|
1083
1078
|
export type { Destroyable, IButton, IButtonChecker, IButtonFile, IKlesClearControl, IKlesComponent, IKlesControl, IKlesDirective, IKlesField, IKlesFieldConfig, IKlesFieldUi, IKlesFormField, IKlesUi, IKlesValidator, IUIButton, KlesValidationKey };
|