@3kles/kles-material-dynamicforms 21.6.1 → 21.7.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@3kles/kles-material-dynamicforms",
3
- "version": "21.6.1",
3
+ "version": "21.7.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/3kles-lab/klesmaterialdynamicforms"
@@ -23,7 +23,6 @@
23
23
  "@angular/forms": "^21.2.19",
24
24
  "@angular/material": "^21.2.14",
25
25
  "lodash": "^4.17.21",
26
- "ngx-mat-select-search": "^9.0.0",
27
26
  "rxjs": "^6.5.3 || ^7.4.0",
28
27
  "uuid": "^8.3.0"
29
28
  },
@@ -1,10 +1,10 @@
1
1
  import * as i0 from '@angular/core';
2
- import { OnInit, OnDestroy, Type, PipeTransform, ViewContainerRef, Provider, StaticProvider, Signal, OnChanges, EventEmitter, ChangeDetectorRef, SimpleChanges, ComponentRef, Injector, AfterViewInit, QueryList, ElementRef, InjectionToken } from '@angular/core';
2
+ import { OnInit, OnDestroy, Type, PipeTransform, ViewContainerRef, Provider, StaticProvider, Signal, OnChanges, EventEmitter, ChangeDetectorRef, SimpleChanges, ComponentRef, Injector, AfterViewInit, ElementRef, InjectionToken } from '@angular/core';
3
3
  import * as i2$1 from '@angular/forms';
4
- import { UntypedFormGroup, ValidatorFn, AsyncValidatorFn, ɵGetProperty as _GetProperty, ɵTypedOrUntyped as _TypedOrUntyped, UntypedFormBuilder, FormGroup, ControlValueAccessor, Validators, AsyncValidator, UntypedFormArray, UntypedFormControl, FormControl, FormGroupDirective, NgForm, AbstractControl } from '@angular/forms';
5
- import { Subject, Observable, ReplaySubject, BehaviorSubject } from 'rxjs';
4
+ import { UntypedFormGroup, ValidatorFn, AsyncValidatorFn, ɵGetProperty as _GetProperty, ɵTypedOrUntyped as _TypedOrUntyped, UntypedFormBuilder, FormGroup, ControlValueAccessor, Validators, AsyncValidator, UntypedFormArray, FormControl, UntypedFormControl, FormGroupDirective, NgForm, AbstractControl } from '@angular/forms';
5
+ import { Subject, Observable } from 'rxjs';
6
6
  import * as i30 from '@angular/material/core';
7
- import { DateAdapter, MatDateFormats, MatOption, ErrorStateMatcher } from '@angular/material/core';
7
+ import { DateAdapter, MatDateFormats, 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
10
  import * as i3 from '@angular/material/button';
@@ -50,8 +50,6 @@ import * as i33 from '@angular/material/slide-toggle';
50
50
  import * as i34 from '@angular/material/button-toggle';
51
51
  import * as i35 from '@angular/cdk/portal';
52
52
  import * as i36 from '@angular/cdk/scrolling';
53
- import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
54
- import * as i4$1 from 'ngx-mat-select-search';
55
53
  import * as _3kles_kles_material_dynamicforms from '@3kles/kles-material-dynamicforms';
56
54
 
57
55
  type Exclusive<T, U> = (T & {
@@ -206,6 +204,15 @@ interface IKlesFieldUi {
206
204
  currencyOptions?: IKlesCurrencyOptions;
207
205
  resolveUi?: IKlesFieldUiResolver;
208
206
  }
207
+ interface IKlesSelectSearchOptions {
208
+ mode?: 'local' | 'remote';
209
+ keys?: string[];
210
+ debounceTime?: number;
211
+ minLength?: number;
212
+ clearOnClose?: boolean;
213
+ placeholder?: string;
214
+ ariaLabel?: string;
215
+ }
209
216
  interface IKlesFormField {
210
217
  type?: EnumType;
211
218
  name: string;
@@ -215,6 +222,7 @@ interface IKlesFormField {
215
222
  options?: any[] | Subject<any[]> | Observable<any[]> | ((value?: string, group?: {
216
223
  [key: string]: any;
217
224
  }) => Observable<any[]>);
225
+ search?: boolean | IKlesSelectSearchOptions;
218
226
  property?: string;
219
227
  collections?: any;
220
228
  value?: any;
@@ -576,6 +584,8 @@ declare class MaterialModule {
576
584
  declare class KlesDynamicFormIntl {
577
585
  loading: string;
578
586
  selectAll: string;
587
+ clearSearch: string;
588
+ search: string;
579
589
  static ɵfac: i0.ɵɵFactoryDeclaration<KlesDynamicFormIntl, never>;
580
590
  static ɵprov: i0.ɵɵInjectableDeclaration<KlesDynamicFormIntl>;
581
591
  }
@@ -671,22 +681,6 @@ declare class KlesFormButtonFileComponent extends KlesFieldAbstract implements O
671
681
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormButtonFileComponent, "kles-form-button-file", never, {}, {}, never, never, true, never>;
672
682
  }
673
683
 
674
- declare class KlesFormSelectComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
675
- cdkVirtualScrollViewport: CdkVirtualScrollViewport;
676
- options: QueryList<MatOption>;
677
- options$: Observable<any[]>;
678
- isLoading: boolean;
679
- openChange$: Subject<boolean>;
680
- intl: KlesDynamicFormIntl;
681
- protected ref: ChangeDetectorRef;
682
- ngOnInit(): void;
683
- ngOnDestroy(): void;
684
- openChange($event: boolean): void;
685
- compareFn: (o1: any, o2: any) => boolean;
686
- static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSelectComponent, never>;
687
- static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSelectComponent, "kles-form-select", never, {}, {}, never, ["*"], true, never>;
688
- }
689
-
690
684
  declare class KlesFormDateComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
691
685
  ngOnInit(): void;
692
686
  ngOnDestroy(): void;
@@ -792,36 +786,6 @@ declare class KlesFormIconComponent extends KlesFieldAbstract implements OnInit,
792
786
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormIconComponent, "kles-form-icon", never, {}, {}, never, never, true, never>;
793
787
  }
794
788
 
795
- declare class KlesFormSelectSearchComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
796
- searchControl: UntypedFormControl;
797
- selectAllControl: UntypedFormControl;
798
- isLoading: i0.WritableSignal<boolean>;
799
- options$: Observable<any[]>;
800
- optionsFiltered$: ReplaySubject<any[]>;
801
- openChange$: BehaviorSubject<boolean>;
802
- openClosed$: Subject<void>;
803
- cdkVirtualScrollViewport: CdkVirtualScrollViewport;
804
- options: QueryList<MatOption>;
805
- intl: KlesDynamicFormIntl;
806
- protected ref: ChangeDetectorRef;
807
- ngOnInit(): void;
808
- ngOnDestroy(): void;
809
- toggleAllSelection(state: {
810
- checked: any;
811
- }): void;
812
- protected openChangeEvent(): void;
813
- protected onOpenChange(isOpen: boolean): Observable<any[]>;
814
- protected onSearchChange(value: string): Observable<any[]>;
815
- openChange($event: boolean): void;
816
- compareFn: (o1: any, o2: any) => boolean;
817
- selectionChange(selection: {
818
- value: any;
819
- }): void;
820
- updateSelectAllControl(values: any[]): void;
821
- static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSelectSearchComponent, never>;
822
- static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSelectSearchComponent, "kles-form-select-search", never, {}, {}, never, ["*"], true, never>;
823
- }
824
-
825
789
  declare class KlesFormLineBreakComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
826
790
  ngOnInit(): void;
827
791
  ngOnDestroy(): void;
@@ -994,15 +958,6 @@ declare class KlesFormRangeComponent extends KlesFieldAbstract implements OnInit
994
958
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormRangeComponent, "kles-form-rangepicker", never, {}, {}, never, ["*"], true, never>;
995
959
  }
996
960
 
997
- declare class KlesFormSelectLazySearchComponent extends KlesFormSelectSearchComponent implements OnInit, OnDestroy {
998
- ngOnInit(): void;
999
- ngOnDestroy(): void;
1000
- protected onSearchChange(value: string): Observable<any[]>;
1001
- protected openChangeEvent(): void;
1002
- static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSelectLazySearchComponent, never>;
1003
- static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSelectLazySearchComponent, "kles-form-select-lazy-search", never, {}, {}, never, ["*"], true, never>;
1004
- }
1005
-
1006
961
  declare class KlesFormFabComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
1007
962
  ngOnInit(): void;
1008
963
  ngOnDestroy(): void;
@@ -1218,7 +1173,7 @@ declare class KlesFormChipGridComponent extends KlesFieldAbstract implements OnI
1218
1173
  declare class KlesMaterialDynamicformsModule {
1219
1174
  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)[])[];
1220
1175
  static ɵfac: i0.ɵɵFactoryDeclaration<KlesMaterialDynamicformsModule, never>;
1221
- 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 KlesFormTileComponent, typeof KlesFormActionMenuComponent, typeof KlesFormCurrencyComponent, typeof KlesFormStatusComponent, typeof KlesFormChipGridComponent, typeof KlesDynamicFieldDirective, typeof KlesComponentDirective, typeof MatErrorMessageDirective, typeof MatErrorFormDirective, typeof KlesTransformPipe, typeof ArrayFormatPipe], [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 KlesFormTileComponent, typeof KlesFormActionMenuComponent, typeof KlesFormCurrencyComponent, typeof KlesFormStatusComponent, typeof KlesFormChipGridComponent, typeof KlesTransformPipe, typeof ArrayFormatPipe, typeof KlesDynamicFieldDirective, typeof KlesComponentDirective, typeof MatErrorMessageDirective, typeof MatErrorFormDirective]>;
1176
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KlesMaterialDynamicformsModule, never, [typeof i1.CommonModule, typeof i2$1.ReactiveFormsModule, typeof i2$1.FormsModule, typeof MaterialModule, 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 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 KlesFormLineBreakComponent, typeof KlesFormLinkComponent, typeof KlesFormSlideToggleComponent, typeof KlesFormSelectionListComponent, typeof KlesFormButtonToogleGroupComponent, typeof KlesFormArrayComponent, typeof KlesFormRangeComponent, typeof KlesFormClearComponent, typeof KlesFormFabComponent, typeof KlesFabComponent, typeof KlesMiniFabComponent, typeof KlesFormMiniFabComponent, typeof KlesIconButtonComponent, typeof KlesFormIconButtonComponent, typeof KlesFormSelectionListSearchComponent, typeof KlesFormCopyComponent, typeof KlesFormTileComponent, typeof KlesFormActionMenuComponent, typeof KlesFormCurrencyComponent, typeof KlesFormStatusComponent, typeof KlesFormChipGridComponent, typeof KlesDynamicFieldDirective, typeof KlesComponentDirective, typeof MatErrorMessageDirective, typeof MatErrorFormDirective, typeof KlesTransformPipe, typeof ArrayFormatPipe], [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 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 KlesFormLineBreakComponent, typeof KlesFormLinkComponent, typeof KlesFormSlideToggleComponent, typeof KlesFormSelectionListComponent, typeof KlesFormButtonToogleGroupComponent, typeof KlesFormArrayComponent, typeof KlesFormRangeComponent, typeof KlesFormClearComponent, typeof KlesFormFabComponent, typeof KlesFabComponent, typeof KlesMiniFabComponent, typeof KlesFormMiniFabComponent, typeof KlesIconButtonComponent, typeof KlesFormIconButtonComponent, typeof KlesFormSelectionListSearchComponent, typeof KlesFormCopyComponent, typeof KlesFormTileComponent, typeof KlesFormActionMenuComponent, typeof KlesFormCurrencyComponent, typeof KlesFormStatusComponent, typeof KlesFormChipGridComponent, typeof KlesTransformPipe, typeof ArrayFormatPipe, typeof KlesDynamicFieldDirective, typeof KlesComponentDirective, typeof MatErrorMessageDirective, typeof MatErrorFormDirective]>;
1222
1177
  static ɵinj: i0.ɵɵInjectorDeclaration<KlesMaterialDynamicformsModule>;
1223
1178
  }
1224
1179
 
@@ -1233,6 +1188,52 @@ declare class KlesFormPasswordVisibilityComponent implements IKlesField {
1233
1188
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormPasswordVisibilityComponent, "kles-form-password-visibility", never, {}, {}, never, never, true, never>;
1234
1189
  }
1235
1190
 
1191
+ declare class KlesFormSelectComponent extends KlesFieldAbstract implements OnInit, AfterViewInit, OnDestroy {
1192
+ readonly searchControl: FormControl<string>;
1193
+ readonly selectAllControl: FormControl<boolean>;
1194
+ readonly selectAllIndeterminate: i0.WritableSignal<boolean>;
1195
+ readonly isLoading: i0.WritableSignal<boolean>;
1196
+ readonly filteredOptions: i0.WritableSignal<any[]>;
1197
+ readonly intl: KlesDynamicFormIntl;
1198
+ protected readonly changeDetectorRef: ChangeDetectorRef;
1199
+ private readonly matSelect;
1200
+ private readonly virtualViewport;
1201
+ searchOptions: IKlesSelectSearchOptions;
1202
+ private readonly deferredQuery$;
1203
+ private sourceOptions;
1204
+ private visibleOptions;
1205
+ private isPanelOpen;
1206
+ private isDeferredSourceLoaded;
1207
+ private deferredOptionsRequest$?;
1208
+ private restoreMatSelectScroll?;
1209
+ ngOnInit(): void;
1210
+ ngOnDestroy(): void;
1211
+ ngAfterViewInit(): void;
1212
+ isSearchEnabled(): boolean;
1213
+ panelClasses(): string[];
1214
+ onOpenedChange(opened: boolean): void;
1215
+ toggleVisibleOptions(state: {
1216
+ checked: boolean;
1217
+ }): void;
1218
+ getHiddenSelectedOptions(): any[];
1219
+ compareFn: (first: any, second: any) => boolean;
1220
+ private normalizeSearchOptions;
1221
+ private usesDeferredSource;
1222
+ private loadInitialOptions;
1223
+ private initializeDeferredQueries;
1224
+ private resolveOptions;
1225
+ private applyLocalFilter;
1226
+ private setVisibleOptions;
1227
+ private filterOptions;
1228
+ private normalizeSearchValue;
1229
+ private installMatSelectScrollCorrection;
1230
+ private keepOptionVisible;
1231
+ private selectedValues;
1232
+ private updateSelectAllState;
1233
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSelectComponent, never>;
1234
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSelectComponent, "kles-form-select", never, {}, {}, never, ["*"], true, never>;
1235
+ }
1236
+
1236
1237
  interface IKlesComponent {
1237
1238
  component: Type<any>;
1238
1239
  value: any;
@@ -1335,5 +1336,5 @@ declare const GROUP_UI: InjectionToken<GroupUiState<any>>;
1335
1336
  declare const FIELD: InjectionToken<IKlesFieldConfig>;
1336
1337
  declare const FIELD_CONTEXT: InjectionToken<Signal<unknown>>;
1337
1338
 
1338
- export { AbstractUiState, ArrayFormatPipe, ArrayUiState, ControlUiState, EnumType, FIELD, FIELD_CONTEXT, FIELD_NAME, FieldMapper, GROUP, GROUP_UI, GroupUiState, KlesAbstractFormControl, KlesAbstractFormUiControl, KlesButtonBase, KlesButtonCheckerComponent, KlesButtonComponent, KlesButtonFileComponent, KlesComponentDirective, KlesCurrencyValueAccessorDirective, KlesDynamicFieldDirective, KlesDynamicFormComponent, KlesDynamicFormIntl, KlesFabComponent, KlesFieldAbstract, KlesFileControlComponent, KlesFormActionMenuComponent, KlesFormArray, KlesFormArrayComponent, KlesFormBadgeComponent, KlesFormButtonCheckerComponent, KlesFormButtonComponent, KlesFormButtonFileComponent, KlesFormButtonToogleGroupComponent, KlesFormCheckboxComponent, KlesFormCheckboxIndeterminateComponent, KlesFormChipComponent, KlesFormChipGridComponent, KlesFormClearComponent, KlesFormColorComponent, KlesFormControl, KlesFormCopyComponent, KlesFormCurrencyComponent, 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, KlesFormStatusComponent, KlesFormTextComponent, KlesFormTextareaComponent, KlesFormTileComponent, KlesFormUiArray, KlesFormUiControl, KlesFormUiGroup, KlesIconButtonComponent, KlesIndeterminateCheckboxComponent, KlesMaterialDynamicformsModule, KlesMiniFabComponent, KlesSelectionModel, KlesTransformPipe, MatErrorFormDirective, MatErrorMessageDirective, SIBLING_FIELDS, autocompleteObjectValidator, autocompleteStringValidator, componentMapper, isDestroyable, klesFieldControlFactory, klesFieldUiFactory };
1339
- export type { Destroyable, IButton, IButtonChecker, IButtonFile, IKlesClearControl, IKlesComponent, IKlesControl, IKlesCurrencyOptions, IKlesDirective, IKlesField, IKlesFieldActionEvent, IKlesFieldConfig, IKlesFieldUi, IKlesFieldUiResolveEvent, IKlesFieldUiResolver, IKlesFormField, IKlesStatusDefinition, IKlesStatusOptions, IKlesUi, IKlesValidator, IUIButton, KlesActionMenuCondition, KlesActionMenuFieldConfig, KlesActionMenuItem, KlesStatusAppearance, KlesStatusTone, KlesValidationKey };
1339
+ export { AbstractUiState, ArrayFormatPipe, ArrayUiState, ControlUiState, EnumType, FIELD, FIELD_CONTEXT, FIELD_NAME, FieldMapper, GROUP, GROUP_UI, GroupUiState, KlesAbstractFormControl, KlesAbstractFormUiControl, KlesButtonBase, KlesButtonCheckerComponent, KlesButtonComponent, KlesButtonFileComponent, KlesComponentDirective, KlesCurrencyValueAccessorDirective, KlesDynamicFieldDirective, KlesDynamicFormComponent, KlesDynamicFormIntl, KlesFabComponent, KlesFieldAbstract, KlesFileControlComponent, KlesFormActionMenuComponent, KlesFormArray, KlesFormArrayComponent, KlesFormBadgeComponent, KlesFormButtonCheckerComponent, KlesFormButtonComponent, KlesFormButtonFileComponent, KlesFormButtonToogleGroupComponent, KlesFormCheckboxComponent, KlesFormCheckboxIndeterminateComponent, KlesFormChipComponent, KlesFormChipGridComponent, KlesFormClearComponent, KlesFormColorComponent, KlesFormControl, KlesFormCopyComponent, KlesFormCurrencyComponent, KlesFormDateComponent, KlesFormDateTimeComponent, KlesFormErrorStateMatcher, KlesFormFabComponent, KlesFormFileComponent, KlesFormGroup, KlesFormGroupComponent, KlesFormIconButtonComponent, KlesFormIconComponent, KlesFormInputClearableComponent, KlesFormInputComponent, KlesFormLabelComponent, KlesFormLineBreakComponent, KlesFormLinkComponent, KlesFormListFieldComponent, KlesFormMiniFabComponent, KlesFormPasswordVisibilityComponent, KlesFormRadioComponent, KlesFormRange, KlesFormRangeComponent, KlesFormSelectComponent, KlesFormSelectionListComponent, KlesFormSelectionListSearchComponent, KlesFormSlideToggleComponent, KlesFormStatusComponent, KlesFormTextComponent, KlesFormTextareaComponent, KlesFormTileComponent, KlesFormUiArray, KlesFormUiControl, KlesFormUiGroup, KlesIconButtonComponent, KlesIndeterminateCheckboxComponent, KlesMaterialDynamicformsModule, KlesMiniFabComponent, KlesSelectionModel, KlesTransformPipe, MatErrorFormDirective, MatErrorMessageDirective, SIBLING_FIELDS, autocompleteObjectValidator, autocompleteStringValidator, componentMapper, isDestroyable, klesFieldControlFactory, klesFieldUiFactory };
1340
+ export type { Destroyable, IButton, IButtonChecker, IButtonFile, IKlesClearControl, IKlesComponent, IKlesControl, IKlesCurrencyOptions, IKlesDirective, IKlesField, IKlesFieldActionEvent, IKlesFieldConfig, IKlesFieldUi, IKlesFieldUiResolveEvent, IKlesFieldUiResolver, IKlesFormField, IKlesSelectSearchOptions, IKlesStatusDefinition, IKlesStatusOptions, IKlesUi, IKlesValidator, IUIButton, KlesActionMenuCondition, KlesActionMenuFieldConfig, KlesActionMenuItem, KlesStatusAppearance, KlesStatusTone, KlesValidationKey };