@3kles/kles-material-dynamicforms 21.6.0 → 21.7.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.6.0",
3
+ "version": "21.7.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/3kles-lab/klesmaterialdynamicforms"
@@ -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,7 +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
53
  import * as i4$1 from 'ngx-mat-select-search';
55
54
  import * as _3kles_kles_material_dynamicforms from '@3kles/kles-material-dynamicforms';
56
55
 
@@ -206,6 +205,15 @@ interface IKlesFieldUi {
206
205
  currencyOptions?: IKlesCurrencyOptions;
207
206
  resolveUi?: IKlesFieldUiResolver;
208
207
  }
208
+ interface IKlesSelectSearchOptions {
209
+ mode?: 'local' | 'remote';
210
+ keys?: string[];
211
+ debounceTime?: number;
212
+ minLength?: number;
213
+ clearOnClose?: boolean;
214
+ placeholder?: string;
215
+ ariaLabel?: string;
216
+ }
209
217
  interface IKlesFormField {
210
218
  type?: EnumType;
211
219
  name: string;
@@ -215,6 +223,7 @@ interface IKlesFormField {
215
223
  options?: any[] | Subject<any[]> | Observable<any[]> | ((value?: string, group?: {
216
224
  [key: string]: any;
217
225
  }) => Observable<any[]>);
226
+ search?: boolean | IKlesSelectSearchOptions;
218
227
  property?: string;
219
228
  collections?: any;
220
229
  value?: any;
@@ -576,6 +585,8 @@ declare class MaterialModule {
576
585
  declare class KlesDynamicFormIntl {
577
586
  loading: string;
578
587
  selectAll: string;
588
+ clearSearch: string;
589
+ search: string;
579
590
  static ɵfac: i0.ɵɵFactoryDeclaration<KlesDynamicFormIntl, never>;
580
591
  static ɵprov: i0.ɵɵInjectableDeclaration<KlesDynamicFormIntl>;
581
592
  }
@@ -671,22 +682,6 @@ declare class KlesFormButtonFileComponent extends KlesFieldAbstract implements O
671
682
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormButtonFileComponent, "kles-form-button-file", never, {}, {}, never, never, true, never>;
672
683
  }
673
684
 
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
685
  declare class KlesFormDateComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
691
686
  ngOnInit(): void;
692
687
  ngOnDestroy(): void;
@@ -792,36 +787,6 @@ declare class KlesFormIconComponent extends KlesFieldAbstract implements OnInit,
792
787
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormIconComponent, "kles-form-icon", never, {}, {}, never, never, true, never>;
793
788
  }
794
789
 
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
790
  declare class KlesFormLineBreakComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
826
791
  ngOnInit(): void;
827
792
  ngOnDestroy(): void;
@@ -994,15 +959,6 @@ declare class KlesFormRangeComponent extends KlesFieldAbstract implements OnInit
994
959
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormRangeComponent, "kles-form-rangepicker", never, {}, {}, never, ["*"], true, never>;
995
960
  }
996
961
 
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
962
  declare class KlesFormFabComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
1007
963
  ngOnInit(): void;
1008
964
  ngOnDestroy(): void;
@@ -1218,7 +1174,7 @@ declare class KlesFormChipGridComponent extends KlesFieldAbstract implements OnI
1218
1174
  declare class KlesMaterialDynamicformsModule {
1219
1175
  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
1176
  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]>;
1177
+ 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 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
1178
  static ɵinj: i0.ɵɵInjectorDeclaration<KlesMaterialDynamicformsModule>;
1223
1179
  }
1224
1180
 
@@ -1233,6 +1189,52 @@ declare class KlesFormPasswordVisibilityComponent implements IKlesField {
1233
1189
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormPasswordVisibilityComponent, "kles-form-password-visibility", never, {}, {}, never, never, true, never>;
1234
1190
  }
1235
1191
 
1192
+ declare class KlesFormSelectComponent extends KlesFieldAbstract implements OnInit, AfterViewInit, OnDestroy {
1193
+ readonly searchControl: FormControl<string>;
1194
+ readonly selectAllControl: FormControl<boolean>;
1195
+ readonly selectAllIndeterminate: i0.WritableSignal<boolean>;
1196
+ readonly isLoading: i0.WritableSignal<boolean>;
1197
+ readonly filteredOptions: i0.WritableSignal<any[]>;
1198
+ readonly intl: KlesDynamicFormIntl;
1199
+ protected readonly changeDetectorRef: ChangeDetectorRef;
1200
+ private readonly matSelect;
1201
+ private readonly virtualViewport;
1202
+ searchOptions: IKlesSelectSearchOptions;
1203
+ private readonly deferredQuery$;
1204
+ private sourceOptions;
1205
+ private visibleOptions;
1206
+ private isPanelOpen;
1207
+ private isDeferredSourceLoaded;
1208
+ private deferredOptionsRequest$?;
1209
+ private restoreMatSelectScroll?;
1210
+ ngOnInit(): void;
1211
+ ngOnDestroy(): void;
1212
+ ngAfterViewInit(): void;
1213
+ isSearchEnabled(): boolean;
1214
+ panelClasses(): string[];
1215
+ onOpenedChange(opened: boolean): void;
1216
+ toggleVisibleOptions(state: {
1217
+ checked: boolean;
1218
+ }): void;
1219
+ getHiddenSelectedOptions(): any[];
1220
+ compareFn: (first: any, second: any) => boolean;
1221
+ private normalizeSearchOptions;
1222
+ private usesDeferredSource;
1223
+ private loadInitialOptions;
1224
+ private initializeDeferredQueries;
1225
+ private resolveOptions;
1226
+ private applyLocalFilter;
1227
+ private setVisibleOptions;
1228
+ private filterOptions;
1229
+ private normalizeSearchValue;
1230
+ private installMatSelectScrollCorrection;
1231
+ private keepOptionVisible;
1232
+ private selectedValues;
1233
+ private updateSelectAllState;
1234
+ static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSelectComponent, never>;
1235
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSelectComponent, "kles-form-select", never, {}, {}, never, ["*"], true, never>;
1236
+ }
1237
+
1236
1238
  interface IKlesComponent {
1237
1239
  component: Type<any>;
1238
1240
  value: any;
@@ -1335,5 +1337,5 @@ declare const GROUP_UI: InjectionToken<GroupUiState<any>>;
1335
1337
  declare const FIELD: InjectionToken<IKlesFieldConfig>;
1336
1338
  declare const FIELD_CONTEXT: InjectionToken<Signal<unknown>>;
1337
1339
 
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 };
1340
+ 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 };
1341
+ 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 };