@ecodev/natural 70.0.0 → 70.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": "@ecodev/natural",
3
- "version": "70.0.0",
3
+ "version": "70.1.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -2451,49 +2451,6 @@ declare class TypeSelectComponent implements DropdownComponent {
2451
2451
  static ɵcmp: i0.ɵɵComponentDeclaration<TypeSelectComponent, "ng-component", never, {}, {}, never, never, true, never>;
2452
2452
  }
2453
2453
 
2454
- declare abstract class AbstractAssociationSelectComponent<C> implements DropdownComponent {
2455
- readonly configuration: C;
2456
- readonly renderedValue: BehaviorSubject<string>;
2457
- requireValueCtrl: boolean;
2458
- readonly operators: readonly PossibleDiscreteOperator[];
2459
- readonly operatorCtrl: FormControl<PossibleDiscreteOperatorKeys>;
2460
- readonly valueCtrl: FormControl<any>;
2461
- readonly form: FormGroup<{
2462
- operator: FormControl<PossibleDiscreteOperatorKeys>;
2463
- value: FormControl<any>;
2464
- }>;
2465
- constructor();
2466
- /**
2467
- * Reload the value from API (`operatorCtrl` should not be touched)
2468
- */
2469
- protected abstract reloadValue(condition: FilterGroupConditionField): Observable<unknown>;
2470
- protected abstract renderValueWithoutOperator(): string;
2471
- abstract getCondition(): FilterGroupConditionField;
2472
- isValid(): boolean;
2473
- isDirty(): boolean;
2474
- private initValidators;
2475
- private reloadCondition;
2476
- protected getRenderedValue(): string;
2477
- protected conditionToOperatorKey(condition: FilterGroupConditionField): PossibleDiscreteOperatorKeys;
2478
- protected operatorKeyToCondition(key: PossibleDiscreteOperatorKeys, values: string[]): FilterGroupConditionField;
2479
- static ɵfac: i0.ɵɵFactoryDeclaration<AbstractAssociationSelectComponent<any>, never>;
2480
- static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractAssociationSelectComponent<any>, never, never, {}, {}, never, never, true, never>;
2481
- }
2482
-
2483
- type TypeSelectNaturalConfiguration<TService extends UntypedModelService> = {
2484
- service: TService;
2485
- placeholder: string;
2486
- filter?: ExtractVall<TService>['filter'];
2487
- pageSize?: number;
2488
- };
2489
- declare class TypeNaturalSelectComponent<TService extends UntypedModelService> extends AbstractAssociationSelectComponent<TypeSelectNaturalConfiguration<TService>> {
2490
- getCondition(): FilterGroupConditionField;
2491
- protected reloadValue(condition: FilterGroupConditionField): Observable<ExtractTone<TService>>;
2492
- protected renderValueWithoutOperator(): string;
2493
- static ɵfac: i0.ɵɵFactoryDeclaration<TypeNaturalSelectComponent<any>, never>;
2494
- static ɵcmp: i0.ɵɵComponentDeclaration<TypeNaturalSelectComponent<any>, "ng-component", never, {}, {}, never, never, true, never>;
2495
- }
2496
-
2497
2454
  type NaturalDropdownContainerData = {
2498
2455
  showValidateButton: boolean;
2499
2456
  };
@@ -2528,61 +2485,12 @@ declare class NaturalDropdownRef {
2528
2485
  close(result?: DropdownResult): void;
2529
2486
  }
2530
2487
 
2531
- /**
2532
- * Show an error message if the control has a value and an error, even if control is not dirty and not touched.
2533
- */
2534
- declare class InvalidWithValueStateMatcher$1 implements ErrorStateMatcher {
2535
- isErrorState(control: FormControl | null): boolean;
2536
- }
2537
- declare class TypeTextComponent implements DropdownComponent {
2538
- protected dropdownRef: NaturalDropdownRef;
2539
- readonly renderedValue: BehaviorSubject<string>;
2540
- readonly formCtrl: FormControl<string>;
2541
- readonly matcher: InvalidWithValueStateMatcher$1;
2542
- constructor();
2543
- getCondition(): FilterGroupConditionField;
2544
- isValid(): boolean;
2545
- isDirty(): boolean;
2546
- close(): void;
2547
- static ɵfac: i0.ɵɵFactoryDeclaration<TypeTextComponent, never>;
2548
- static ɵcmp: i0.ɵɵComponentDeclaration<TypeTextComponent, "ng-component", never, {}, {}, never, never, true, never>;
2549
- }
2550
-
2551
- type TypeNumberConfiguration = {
2552
- min?: number | null;
2553
- max?: number | null;
2554
- step?: number | null;
2555
- /**
2556
- * If true, two extra choices, "avec" and "sans", will be shown to filter by the (in-)existence of a value
2557
- */
2558
- nullable?: boolean;
2488
+ type NaturalDropdownData<C = any> = {
2489
+ condition: FilterGroupConditionField | null;
2490
+ configuration: C;
2491
+ title?: string;
2559
2492
  };
2560
- declare class TypeNumberComponent implements DropdownComponent {
2561
- protected dropdownRef: NaturalDropdownRef;
2562
- readonly renderedValue: BehaviorSubject<string>;
2563
- readonly configuration: Required<TypeNumberConfiguration>;
2564
- readonly operatorCtrl: FormControl<PossibleComparableOperatorKeys>;
2565
- readonly valueCtrl: FormControl<number | null>;
2566
- readonly matcher: InvalidWithValueStateMatcher$1;
2567
- readonly form: FormGroup<{
2568
- operator: FormControl<PossibleComparableOperatorKeys>;
2569
- value: FormControl<number | null>;
2570
- }>;
2571
- requireValueCtrl: boolean;
2572
- readonly operators: readonly PossibleComparableOperator[];
2573
- private readonly defaults;
2574
- constructor();
2575
- getCondition(): FilterGroupConditionField;
2576
- isValid(): boolean;
2577
- isDirty(): boolean;
2578
- close(): void;
2579
- private initValidators;
2580
- private reloadCondition;
2581
- private getRenderedValue;
2582
- private conditionToOperatorKey;
2583
- static ɵfac: i0.ɵɵFactoryDeclaration<TypeNumberComponent, never>;
2584
- static ɵcmp: i0.ɵɵComponentDeclaration<TypeNumberComponent, "ng-component", never, {}, {}, never, never, true, never>;
2585
- }
2493
+ declare const NATURAL_DROPDOWN_DATA: InjectionToken<NaturalDropdownData<any>>;
2586
2494
 
2587
2495
  type NaturalHierarchicConfiguration<T extends UntypedModelService = UntypedModelService> = {
2588
2496
  /**
@@ -2747,6 +2655,129 @@ declare class TypeHierarchicSelectorComponent extends AbstractAssociationSelectC
2747
2655
  static ɵcmp: i0.ɵɵComponentDeclaration<TypeHierarchicSelectorComponent, "ng-component", never, {}, {}, never, never, true, never>;
2748
2656
  }
2749
2657
 
2658
+ type PossibleWhereKeys = 'DebitOrCredit' | 'Debit' | 'Credit';
2659
+ type PossibleWhere = {
2660
+ key: PossibleWhereKeys;
2661
+ label: string;
2662
+ render: string;
2663
+ };
2664
+ /**
2665
+ * This is a specialized facet for Account model with extra fields specific to the specialized operator on the server side.
2666
+ */
2667
+ declare class TypeAccountSelectorComponent extends TypeHierarchicSelectorComponent {
2668
+ readonly whereCtrl: FormControl<PossibleWhereKeys>;
2669
+ readonly recursiveCtrl: FormControl<boolean>;
2670
+ protected readonly possibleWhere: readonly PossibleWhere[];
2671
+ constructor();
2672
+ protected operatorKeyToCondition(key: PossibleDiscreteOperatorKeys, values: string[]): FilterGroupConditionField;
2673
+ protected reloadCondition(condition: FilterGroupConditionField | null): void;
2674
+ protected getRenderedValue(): string;
2675
+ static ɵfac: i0.ɵɵFactoryDeclaration<TypeAccountSelectorComponent, never>;
2676
+ static ɵcmp: i0.ɵɵComponentDeclaration<TypeAccountSelectorComponent, "ng-component", never, {}, {}, never, never, true, never>;
2677
+ }
2678
+
2679
+ declare abstract class AbstractAssociationSelectComponent<C> implements DropdownComponent {
2680
+ configuration: C;
2681
+ readonly renderedValue: BehaviorSubject<string>;
2682
+ requireValueCtrl: boolean;
2683
+ readonly operators: readonly PossibleDiscreteOperator[];
2684
+ readonly operatorCtrl: FormControl<PossibleDiscreteOperatorKeys>;
2685
+ readonly valueCtrl: FormControl<any>;
2686
+ readonly form: FormGroup<{
2687
+ operator: FormControl<PossibleDiscreteOperatorKeys>;
2688
+ value: FormControl<unknown>;
2689
+ where?: FormControl<PossibleWhereKeys>;
2690
+ recursive?: FormControl<boolean>;
2691
+ }>;
2692
+ constructor();
2693
+ protected init(data: NaturalDropdownData<C>): void;
2694
+ /**
2695
+ * Reload the value from API (`operatorCtrl` should not be touched)
2696
+ */
2697
+ protected abstract reloadValue(condition: FilterGroupConditionField): Observable<unknown>;
2698
+ protected abstract renderValueWithoutOperator(): string;
2699
+ abstract getCondition(): FilterGroupConditionField;
2700
+ isValid(): boolean;
2701
+ isDirty(): boolean;
2702
+ private initValidators;
2703
+ protected reloadCondition(condition: FilterGroupConditionField | null): void;
2704
+ protected getRenderedValue(): string;
2705
+ protected conditionToOperatorKey(condition: FilterGroupConditionField): PossibleDiscreteOperatorKeys;
2706
+ protected operatorKeyToCondition(key: PossibleDiscreteOperatorKeys, values: string[], extra?: Record<string, boolean | string>): FilterGroupConditionField;
2707
+ static ɵfac: i0.ɵɵFactoryDeclaration<AbstractAssociationSelectComponent<any>, never>;
2708
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractAssociationSelectComponent<any>, never, never, {}, {}, never, never, true, never>;
2709
+ }
2710
+
2711
+ type TypeSelectNaturalConfiguration<TService extends UntypedModelService> = {
2712
+ service: TService;
2713
+ placeholder: string;
2714
+ filter?: ExtractVall<TService>['filter'];
2715
+ pageSize?: number;
2716
+ };
2717
+ declare class TypeNaturalSelectComponent<TService extends UntypedModelService> extends AbstractAssociationSelectComponent<TypeSelectNaturalConfiguration<TService>> {
2718
+ getCondition(): FilterGroupConditionField;
2719
+ protected reloadValue(condition: FilterGroupConditionField): Observable<ExtractTone<TService>>;
2720
+ protected renderValueWithoutOperator(): string;
2721
+ static ɵfac: i0.ɵɵFactoryDeclaration<TypeNaturalSelectComponent<any>, never>;
2722
+ static ɵcmp: i0.ɵɵComponentDeclaration<TypeNaturalSelectComponent<any>, "ng-component", never, {}, {}, never, never, true, never>;
2723
+ }
2724
+
2725
+ /**
2726
+ * Show an error message if the control has a value and an error, even if control is not dirty and not touched.
2727
+ */
2728
+ declare class InvalidWithValueStateMatcher$1 implements ErrorStateMatcher {
2729
+ isErrorState(control: FormControl | null): boolean;
2730
+ }
2731
+ declare class TypeTextComponent implements DropdownComponent {
2732
+ protected dropdownRef: NaturalDropdownRef;
2733
+ readonly renderedValue: BehaviorSubject<string>;
2734
+ readonly formCtrl: FormControl<string>;
2735
+ readonly matcher: InvalidWithValueStateMatcher$1;
2736
+ constructor();
2737
+ getCondition(): FilterGroupConditionField;
2738
+ isValid(): boolean;
2739
+ isDirty(): boolean;
2740
+ close(): void;
2741
+ static ɵfac: i0.ɵɵFactoryDeclaration<TypeTextComponent, never>;
2742
+ static ɵcmp: i0.ɵɵComponentDeclaration<TypeTextComponent, "ng-component", never, {}, {}, never, never, true, never>;
2743
+ }
2744
+
2745
+ type TypeNumberConfiguration = {
2746
+ min?: number | null;
2747
+ max?: number | null;
2748
+ step?: number | null;
2749
+ /**
2750
+ * If true, two extra choices, "avec" and "sans", will be shown to filter by the (in-)existence of a value
2751
+ */
2752
+ nullable?: boolean;
2753
+ };
2754
+ declare class TypeNumberComponent implements DropdownComponent {
2755
+ protected dropdownRef: NaturalDropdownRef;
2756
+ readonly renderedValue: BehaviorSubject<string>;
2757
+ readonly configuration: Required<TypeNumberConfiguration>;
2758
+ readonly operatorCtrl: FormControl<PossibleComparableOperatorKeys>;
2759
+ readonly valueCtrl: FormControl<number | null>;
2760
+ readonly matcher: InvalidWithValueStateMatcher$1;
2761
+ readonly form: FormGroup<{
2762
+ operator: FormControl<PossibleComparableOperatorKeys>;
2763
+ value: FormControl<number | null>;
2764
+ }>;
2765
+ requireValueCtrl: boolean;
2766
+ readonly operators: readonly PossibleComparableOperator[];
2767
+ private readonly defaults;
2768
+ constructor();
2769
+ getCondition(): FilterGroupConditionField;
2770
+ isValid(): boolean;
2771
+ isDirty(): boolean;
2772
+ close(): void;
2773
+ private initValidators;
2774
+ private reloadCondition;
2775
+ private getRenderedValue;
2776
+ private conditionToOperatorKey;
2777
+ static ɵfac: i0.ɵɵFactoryDeclaration<TypeNumberComponent, never>;
2778
+ static ɵcmp: i0.ɵɵComponentDeclaration<TypeNumberComponent, "ng-component", never, {}, {}, never, never, true, never>;
2779
+ }
2780
+
2750
2781
  type TypeDateConfiguration<D = Date> = {
2751
2782
  min?: D | null;
2752
2783
  max?: D | null;
@@ -3440,13 +3471,6 @@ declare class NaturalRelationsComponent<TService extends NaturalAbstractModelSer
3440
3471
  static ɵcmp: i0.ɵɵComponentDeclaration<NaturalRelationsComponent<any>, "natural-relations", never, { "service": { "alias": "service"; "required": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "autocompleteSelectorFilter": { "alias": "autocompleteSelectorFilter"; "required": false; "isSignal": true; }; "displayWith": { "alias": "displayWith"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; }; "main": { "alias": "main"; "required": true; }; "hierarchicSelectorFilters": { "alias": "hierarchicSelectorFilters"; "required": false; "isSignal": true; }; "hierarchicSelectorConfig": { "alias": "hierarchicSelectorConfig"; "required": false; "isSignal": true; }; "otherName": { "alias": "otherName"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "sorting": { "alias": "sorting"; "required": false; }; }, { "selectionChange": "selectionChange"; }, ["itemTemplate"], never, true, never>;
3441
3472
  }
3442
3473
 
3443
- type NaturalDropdownData<C = any> = {
3444
- condition: FilterGroupConditionField | null;
3445
- configuration: C;
3446
- title?: string;
3447
- };
3448
- declare const NATURAL_DROPDOWN_DATA: InjectionToken<NaturalDropdownData<any>>;
3449
-
3450
3474
  declare function toGraphQLDoctrineFilter(facets: NaturalSearchFacets | null, selections: NaturalSearchSelections | null): Filter;
3451
3475
 
3452
3476
  /**
@@ -4429,5 +4453,5 @@ declare const naturalProviders: ApplicationConfig['providers'];
4429
4453
  */
4430
4454
  declare function graphqlQuerySigner(key: string): HttpInterceptorFn;
4431
4455
 
4432
- export { AvatarService, ColorScheme, InvalidWithValueStateMatcher$1 as InvalidWithValueStateMatcher, LOCAL_STORAGE, NATURAL_DROPDOWN_DATA, NATURAL_ICONS_CONFIG, NATURAL_PERSISTENCE_VALIDATOR, NATURAL_SEO_CONFIG, NaturalAbstractDetail, NaturalAbstractEditableList, NaturalAbstractList, NaturalAbstractModelService, NaturalAbstractNavigableList, NaturalAbstractPanel, NaturalAlertService, NaturalAvatarComponent, NaturalBackgroundDensityDirective, NaturalCapitalizePipe, NaturalColorSchemerComponent, NaturalColumnsPickerComponent, NaturalCompactColorSchemerComponent, NaturalConfirmComponent, NaturalDataSource, NaturalDebounceService, NaturalDetailHeaderComponent, NaturalDialogTriggerComponent, NaturalDropdownRef, NaturalEllipsisPipe, NaturalEnumPipe, NaturalEnumService, NaturalErrorHandler, NaturalErrorMessagePipe, NaturalFileComponent, NaturalFileDropDirective, NaturalFileSelectDirective, NaturalFileService, NaturalFixedButtonComponent, NaturalFixedButtonDetailComponent, NaturalHierarchicSelectorComponent, NaturalHierarchicSelectorDialogComponent, NaturalHierarchicSelectorDialogService, NaturalHierarchicSelectorService, NaturalHttpPrefixDirective, NaturalIconDirective, NaturalLinkMutationService, NaturalLinkableTabDirective, NaturalLoggerConfigExtra, NaturalLoggerConfigUrl, NaturalMatomoService, NaturalMemoryStorage, NaturalPanelsComponent, NaturalPanelsService, NaturalPersistenceService, NaturalQueryVariablesManager, NaturalRelationsComponent, NaturalSearchComponent, NaturalSelectComponent, NaturalSelectEnumComponent, NaturalSelectHierarchicComponent, NaturalSeoService, NaturalSidenavComponent, NaturalSidenavContainerComponent, NaturalSidenavContentComponent, NaturalSidenavService, NaturalSidenavStackService, NaturalSrcDensityDirective, NaturalStampComponent, NaturalSwissParsingDateAdapter, NaturalTableButtonComponent, NaturalThemeChangerComponent, NaturalThemeService, NaturalTimeAgoPipe, NetworkActivityService, PanelsHooksConfig, SESSION_STORAGE, SortingOrder, TypeBooleanComponent, TypeDateComponent, TypeDateRangeComponent, TypeHierarchicSelectorComponent, TypeNaturalSelectComponent, TypeNumberComponent, TypeOptionsComponent, TypeSelectComponent, TypeTextComponent, TypedMatCellDef, activityInterceptor, available, cancellableTimeout, cloneDeepButSkipFile, collectErrors, commonImageMimeTypes, copyToClipboard, createHttpLink, debug, decimal, deepFreeze, deliverableEmail, ensureHttpPrefix, fallbackIfNoOpenedPanels, formatIsoDate, formatIsoDateTime, fromUrl, getForegroundColor, getNumberRows, getVisibleSelections, graphqlQuerySigner, greaterThan, hasFilesAndProcessDate, ifValid, integer, isAllVisibleSelected, isFile, isPartiallyVisibleSelected, localStorageFactory, localStorageProvider, makePlural, masterToggleVisible, memoryLocalStorageProvider, memorySessionStorageProvider, mergeOverrideArray, money, naturalPanelsUrlMatcher, naturalProviders, nfcCardHex, onHistoryEvent, possibleComparableOperators, possibleNullComparableOperators, provideErrorHandler, provideIcons, providePanels, provideSeo, provideThemes, relationsToIds, replaceObjectKeepingReference, replaceOperatorByField, replaceOperatorByName, rgbToHex, selectVisible, sessionStorageFactory, sessionStorageProvider, time, toGraphQLDoctrineFilter, toNavigationParameters, toUrl, unique, unselectVisible, upperCaseFirstLetter, url, urlPattern, validTlds, validateAllFormControls, validateColumns, validatePagination, validateSorting, wrapLike, wrapPrefix, wrapSuffix };
4456
+ export { AvatarService, ColorScheme, InvalidWithValueStateMatcher$1 as InvalidWithValueStateMatcher, LOCAL_STORAGE, NATURAL_DROPDOWN_DATA, NATURAL_ICONS_CONFIG, NATURAL_PERSISTENCE_VALIDATOR, NATURAL_SEO_CONFIG, NaturalAbstractDetail, NaturalAbstractEditableList, NaturalAbstractList, NaturalAbstractModelService, NaturalAbstractNavigableList, NaturalAbstractPanel, NaturalAlertService, NaturalAvatarComponent, NaturalBackgroundDensityDirective, NaturalCapitalizePipe, NaturalColorSchemerComponent, NaturalColumnsPickerComponent, NaturalCompactColorSchemerComponent, NaturalConfirmComponent, NaturalDataSource, NaturalDebounceService, NaturalDetailHeaderComponent, NaturalDialogTriggerComponent, NaturalDropdownRef, NaturalEllipsisPipe, NaturalEnumPipe, NaturalEnumService, NaturalErrorHandler, NaturalErrorMessagePipe, NaturalFileComponent, NaturalFileDropDirective, NaturalFileSelectDirective, NaturalFileService, NaturalFixedButtonComponent, NaturalFixedButtonDetailComponent, NaturalHierarchicSelectorComponent, NaturalHierarchicSelectorDialogComponent, NaturalHierarchicSelectorDialogService, NaturalHierarchicSelectorService, NaturalHttpPrefixDirective, NaturalIconDirective, NaturalLinkMutationService, NaturalLinkableTabDirective, NaturalLoggerConfigExtra, NaturalLoggerConfigUrl, NaturalMatomoService, NaturalMemoryStorage, NaturalPanelsComponent, NaturalPanelsService, NaturalPersistenceService, NaturalQueryVariablesManager, NaturalRelationsComponent, NaturalSearchComponent, NaturalSelectComponent, NaturalSelectEnumComponent, NaturalSelectHierarchicComponent, NaturalSeoService, NaturalSidenavComponent, NaturalSidenavContainerComponent, NaturalSidenavContentComponent, NaturalSidenavService, NaturalSidenavStackService, NaturalSrcDensityDirective, NaturalStampComponent, NaturalSwissParsingDateAdapter, NaturalTableButtonComponent, NaturalThemeChangerComponent, NaturalThemeService, NaturalTimeAgoPipe, NetworkActivityService, PanelsHooksConfig, SESSION_STORAGE, SortingOrder, TypeAccountSelectorComponent, TypeBooleanComponent, TypeDateComponent, TypeDateRangeComponent, TypeHierarchicSelectorComponent, TypeNaturalSelectComponent, TypeNumberComponent, TypeOptionsComponent, TypeSelectComponent, TypeTextComponent, TypedMatCellDef, activityInterceptor, available, cancellableTimeout, cloneDeepButSkipFile, collectErrors, commonImageMimeTypes, copyToClipboard, createHttpLink, debug, decimal, deepFreeze, deliverableEmail, ensureHttpPrefix, fallbackIfNoOpenedPanels, formatIsoDate, formatIsoDateTime, fromUrl, getForegroundColor, getNumberRows, getVisibleSelections, graphqlQuerySigner, greaterThan, hasFilesAndProcessDate, ifValid, integer, isAllVisibleSelected, isFile, isPartiallyVisibleSelected, localStorageFactory, localStorageProvider, makePlural, masterToggleVisible, memoryLocalStorageProvider, memorySessionStorageProvider, mergeOverrideArray, money, naturalPanelsUrlMatcher, naturalProviders, nfcCardHex, onHistoryEvent, possibleComparableOperators, possibleNullComparableOperators, provideErrorHandler, provideIcons, providePanels, provideSeo, provideThemes, relationsToIds, replaceObjectKeepingReference, replaceOperatorByField, replaceOperatorByName, rgbToHex, selectVisible, sessionStorageFactory, sessionStorageProvider, time, toGraphQLDoctrineFilter, toNavigationParameters, toUrl, unique, unselectVisible, upperCaseFirstLetter, url, urlPattern, validTlds, validateAllFormControls, validateColumns, validatePagination, validateSorting, wrapLike, wrapPrefix, wrapSuffix };
4433
4457
  export type { AvailableColumn, Button, DropdownComponent, DropdownFacet, ExtractResolve, ExtractTall, ExtractTallOne, ExtractTcreate, ExtractTdelete, ExtractTone, ExtractTupdate, ExtractVall, ExtractVcreate, ExtractVdelete, ExtractVone, ExtractVupdate, Facet, FileModel, FileSelection, Filter, FilterGroupConditionField, FlagFacet, FormAsyncValidators, FormControls, FormValidators, HierarchicDialogConfig, HierarchicDialogResult, HierarchicFilterConfiguration$1 as HierarchicFilterConfiguration, HierarchicFiltersConfiguration$1 as HierarchicFiltersConfiguration, IEnum, InvalidFile, LinkableObject, Literal, NameOrFullName, NaturalConfirmData, NaturalDialogTriggerProvidedData, NaturalDialogTriggerRedirectionValues, NaturalDialogTriggerRoutingData, NaturalDropdownData, NaturalHierarchicConfiguration, NaturalIconConfig, NaturalIconsConfig, NaturalLoggerExtra, NaturalLoggerType, NaturalPalette, NaturalPanelConfig, NaturalPanelData, NaturalPanelResolves, NaturalPanelsBeforeOpenPanel, NaturalPanelsHooksConfig, NaturalPanelsRouteConfig, NaturalPanelsRouterRule, NaturalPanelsRoutesConfig, NaturalSearchFacets, NaturalSearchSelection, NaturalSearchSelections, NaturalSeo, NaturalSeoBasic, NaturalSeoCallback, NaturalSeoConfig, NaturalSeoResolve, NaturalSeoResolveData, NaturalStorage, NavigableItem, OrganizedModelSelection, PaginatedData, PaginationInput, PersistenceValidator, PossibleComparableOperator, PossibleComparableOperatorKeys, QueryVariables, ResolvedData, Sorting, SubButton, TypeBooleanConfiguration, TypeDateConfiguration, TypeDateRangeConfiguration, TypeHierarchicSelectorConfiguration, TypeNumberConfiguration, TypeOption, TypeOptionsConfiguration, TypeSelectConfiguration, TypeSelectItem, TypeSelectNaturalConfiguration, VariablesWithInput, WithId };