@ecodev/natural 70.0.0 → 70.2.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/fesm2022/ecodev-natural.mjs +129 -14
- package/fesm2022/ecodev-natural.mjs.map +1 -1
- package/package.json +3 -3
- package/types/ecodev-natural.d.ts +131 -106
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecodev/natural",
|
|
3
|
-
"version": "70.
|
|
3
|
+
"version": "70.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"
|
|
25
|
-
"
|
|
24
|
+
"extract-files": "^13.0.0",
|
|
25
|
+
"tslib": "^2.8.1"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@angular/cdk": "^21.1.0",
|
|
@@ -1456,6 +1456,7 @@ declare class NaturalAbstractList<TService extends NaturalAbstractModelService<a
|
|
|
1456
1456
|
* Variables that are always forced on a list, in addition to whatever the end-user might select
|
|
1457
1457
|
*/
|
|
1458
1458
|
set forcedVariables(variables: QueryVariables | null | undefined);
|
|
1459
|
+
readonly resetSelectionOnChange: i0.InputSignal<boolean>;
|
|
1459
1460
|
/**
|
|
1460
1461
|
* If change, check DocumentsComponent that overrides this function without calling super.ngOnInit().
|
|
1461
1462
|
*/
|
|
@@ -1528,7 +1529,7 @@ declare class NaturalAbstractList<TService extends NaturalAbstractModelService<a
|
|
|
1528
1529
|
private applyForcedVariables;
|
|
1529
1530
|
selectColumns(columns: string[]): void;
|
|
1530
1531
|
static ɵfac: i0.ɵɵFactoryDeclaration<NaturalAbstractList<any, any>, never>;
|
|
1531
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NaturalAbstractList<any, any>, never, never, { "persistSearch": { "alias": "persistSearch"; "required": false; }; "availableColumns": { "alias": "availableColumns"; "required": false; }; "selectedColumns": { "alias": "selectedColumns"; "required": false; }; "forcedVariables": { "alias": "forcedVariables"; "required": false; }; }, {}, never, never, true, never>;
|
|
1532
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NaturalAbstractList<any, any>, never, never, { "persistSearch": { "alias": "persistSearch"; "required": false; }; "availableColumns": { "alias": "availableColumns"; "required": false; }; "selectedColumns": { "alias": "selectedColumns"; "required": false; }; "forcedVariables": { "alias": "forcedVariables"; "required": false; }; "resetSelectionOnChange": { "alias": "resetSelectionOnChange"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1532
1533
|
}
|
|
1533
1534
|
|
|
1534
1535
|
/**
|
|
@@ -2451,49 +2452,6 @@ declare class TypeSelectComponent implements DropdownComponent {
|
|
|
2451
2452
|
static ɵcmp: i0.ɵɵComponentDeclaration<TypeSelectComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2452
2453
|
}
|
|
2453
2454
|
|
|
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
2455
|
type NaturalDropdownContainerData = {
|
|
2498
2456
|
showValidateButton: boolean;
|
|
2499
2457
|
};
|
|
@@ -2528,61 +2486,12 @@ declare class NaturalDropdownRef {
|
|
|
2528
2486
|
close(result?: DropdownResult): void;
|
|
2529
2487
|
}
|
|
2530
2488
|
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
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;
|
|
2489
|
+
type NaturalDropdownData<C = any> = {
|
|
2490
|
+
condition: FilterGroupConditionField | null;
|
|
2491
|
+
configuration: C;
|
|
2492
|
+
title?: string;
|
|
2559
2493
|
};
|
|
2560
|
-
declare
|
|
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
|
-
}
|
|
2494
|
+
declare const NATURAL_DROPDOWN_DATA: InjectionToken<NaturalDropdownData<any>>;
|
|
2586
2495
|
|
|
2587
2496
|
type NaturalHierarchicConfiguration<T extends UntypedModelService = UntypedModelService> = {
|
|
2588
2497
|
/**
|
|
@@ -2747,6 +2656,129 @@ declare class TypeHierarchicSelectorComponent extends AbstractAssociationSelectC
|
|
|
2747
2656
|
static ɵcmp: i0.ɵɵComponentDeclaration<TypeHierarchicSelectorComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2748
2657
|
}
|
|
2749
2658
|
|
|
2659
|
+
type PossibleWhereKeys = 'DebitOrCredit' | 'Debit' | 'Credit';
|
|
2660
|
+
type PossibleWhere = {
|
|
2661
|
+
key: PossibleWhereKeys;
|
|
2662
|
+
label: string;
|
|
2663
|
+
render: string;
|
|
2664
|
+
};
|
|
2665
|
+
/**
|
|
2666
|
+
* This is a specialized facet for Account model with extra fields specific to the specialized operator on the server side.
|
|
2667
|
+
*/
|
|
2668
|
+
declare class TypeAccountSelectorComponent extends TypeHierarchicSelectorComponent {
|
|
2669
|
+
readonly whereCtrl: FormControl<PossibleWhereKeys>;
|
|
2670
|
+
readonly recursiveCtrl: FormControl<boolean>;
|
|
2671
|
+
protected readonly possibleWhere: readonly PossibleWhere[];
|
|
2672
|
+
constructor();
|
|
2673
|
+
protected operatorKeyToCondition(key: PossibleDiscreteOperatorKeys, values: string[]): FilterGroupConditionField;
|
|
2674
|
+
protected reloadCondition(condition: FilterGroupConditionField | null): void;
|
|
2675
|
+
protected getRenderedValue(): string;
|
|
2676
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TypeAccountSelectorComponent, never>;
|
|
2677
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TypeAccountSelectorComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
declare abstract class AbstractAssociationSelectComponent<C> implements DropdownComponent {
|
|
2681
|
+
configuration: C;
|
|
2682
|
+
readonly renderedValue: BehaviorSubject<string>;
|
|
2683
|
+
requireValueCtrl: boolean;
|
|
2684
|
+
readonly operators: readonly PossibleDiscreteOperator[];
|
|
2685
|
+
readonly operatorCtrl: FormControl<PossibleDiscreteOperatorKeys>;
|
|
2686
|
+
readonly valueCtrl: FormControl<any>;
|
|
2687
|
+
readonly form: FormGroup<{
|
|
2688
|
+
operator: FormControl<PossibleDiscreteOperatorKeys>;
|
|
2689
|
+
value: FormControl<unknown>;
|
|
2690
|
+
where?: FormControl<PossibleWhereKeys>;
|
|
2691
|
+
recursive?: FormControl<boolean>;
|
|
2692
|
+
}>;
|
|
2693
|
+
constructor();
|
|
2694
|
+
protected init(data: NaturalDropdownData<C>): void;
|
|
2695
|
+
/**
|
|
2696
|
+
* Reload the value from API (`operatorCtrl` should not be touched)
|
|
2697
|
+
*/
|
|
2698
|
+
protected abstract reloadValue(condition: FilterGroupConditionField): Observable<unknown>;
|
|
2699
|
+
protected abstract renderValueWithoutOperator(): string;
|
|
2700
|
+
abstract getCondition(): FilterGroupConditionField;
|
|
2701
|
+
isValid(): boolean;
|
|
2702
|
+
isDirty(): boolean;
|
|
2703
|
+
private initValidators;
|
|
2704
|
+
protected reloadCondition(condition: FilterGroupConditionField | null): void;
|
|
2705
|
+
protected getRenderedValue(): string;
|
|
2706
|
+
protected conditionToOperatorKey(condition: FilterGroupConditionField): PossibleDiscreteOperatorKeys;
|
|
2707
|
+
protected operatorKeyToCondition(key: PossibleDiscreteOperatorKeys, values: string[], extra?: Record<string, boolean | string>): FilterGroupConditionField;
|
|
2708
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractAssociationSelectComponent<any>, never>;
|
|
2709
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractAssociationSelectComponent<any>, never, never, {}, {}, never, never, true, never>;
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
type TypeSelectNaturalConfiguration<TService extends UntypedModelService> = {
|
|
2713
|
+
service: TService;
|
|
2714
|
+
placeholder: string;
|
|
2715
|
+
filter?: ExtractVall<TService>['filter'];
|
|
2716
|
+
pageSize?: number;
|
|
2717
|
+
};
|
|
2718
|
+
declare class TypeNaturalSelectComponent<TService extends UntypedModelService> extends AbstractAssociationSelectComponent<TypeSelectNaturalConfiguration<TService>> {
|
|
2719
|
+
getCondition(): FilterGroupConditionField;
|
|
2720
|
+
protected reloadValue(condition: FilterGroupConditionField): Observable<ExtractTone<TService>>;
|
|
2721
|
+
protected renderValueWithoutOperator(): string;
|
|
2722
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TypeNaturalSelectComponent<any>, never>;
|
|
2723
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TypeNaturalSelectComponent<any>, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2726
|
+
/**
|
|
2727
|
+
* Show an error message if the control has a value and an error, even if control is not dirty and not touched.
|
|
2728
|
+
*/
|
|
2729
|
+
declare class InvalidWithValueStateMatcher$1 implements ErrorStateMatcher {
|
|
2730
|
+
isErrorState(control: FormControl | null): boolean;
|
|
2731
|
+
}
|
|
2732
|
+
declare class TypeTextComponent implements DropdownComponent {
|
|
2733
|
+
protected dropdownRef: NaturalDropdownRef;
|
|
2734
|
+
readonly renderedValue: BehaviorSubject<string>;
|
|
2735
|
+
readonly formCtrl: FormControl<string>;
|
|
2736
|
+
readonly matcher: InvalidWithValueStateMatcher$1;
|
|
2737
|
+
constructor();
|
|
2738
|
+
getCondition(): FilterGroupConditionField;
|
|
2739
|
+
isValid(): boolean;
|
|
2740
|
+
isDirty(): boolean;
|
|
2741
|
+
close(): void;
|
|
2742
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TypeTextComponent, never>;
|
|
2743
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TypeTextComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2744
|
+
}
|
|
2745
|
+
|
|
2746
|
+
type TypeNumberConfiguration = {
|
|
2747
|
+
min?: number | null;
|
|
2748
|
+
max?: number | null;
|
|
2749
|
+
step?: number | null;
|
|
2750
|
+
/**
|
|
2751
|
+
* If true, two extra choices, "avec" and "sans", will be shown to filter by the (in-)existence of a value
|
|
2752
|
+
*/
|
|
2753
|
+
nullable?: boolean;
|
|
2754
|
+
};
|
|
2755
|
+
declare class TypeNumberComponent implements DropdownComponent {
|
|
2756
|
+
protected dropdownRef: NaturalDropdownRef;
|
|
2757
|
+
readonly renderedValue: BehaviorSubject<string>;
|
|
2758
|
+
readonly configuration: Required<TypeNumberConfiguration>;
|
|
2759
|
+
readonly operatorCtrl: FormControl<PossibleComparableOperatorKeys>;
|
|
2760
|
+
readonly valueCtrl: FormControl<number | null>;
|
|
2761
|
+
readonly matcher: InvalidWithValueStateMatcher$1;
|
|
2762
|
+
readonly form: FormGroup<{
|
|
2763
|
+
operator: FormControl<PossibleComparableOperatorKeys>;
|
|
2764
|
+
value: FormControl<number | null>;
|
|
2765
|
+
}>;
|
|
2766
|
+
requireValueCtrl: boolean;
|
|
2767
|
+
readonly operators: readonly PossibleComparableOperator[];
|
|
2768
|
+
private readonly defaults;
|
|
2769
|
+
constructor();
|
|
2770
|
+
getCondition(): FilterGroupConditionField;
|
|
2771
|
+
isValid(): boolean;
|
|
2772
|
+
isDirty(): boolean;
|
|
2773
|
+
close(): void;
|
|
2774
|
+
private initValidators;
|
|
2775
|
+
private reloadCondition;
|
|
2776
|
+
private getRenderedValue;
|
|
2777
|
+
private conditionToOperatorKey;
|
|
2778
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TypeNumberComponent, never>;
|
|
2779
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TypeNumberComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2780
|
+
}
|
|
2781
|
+
|
|
2750
2782
|
type TypeDateConfiguration<D = Date> = {
|
|
2751
2783
|
min?: D | null;
|
|
2752
2784
|
max?: D | null;
|
|
@@ -3440,13 +3472,6 @@ declare class NaturalRelationsComponent<TService extends NaturalAbstractModelSer
|
|
|
3440
3472
|
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
3473
|
}
|
|
3442
3474
|
|
|
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
3475
|
declare function toGraphQLDoctrineFilter(facets: NaturalSearchFacets | null, selections: NaturalSearchSelections | null): Filter;
|
|
3451
3476
|
|
|
3452
3477
|
/**
|
|
@@ -4429,5 +4454,5 @@ declare const naturalProviders: ApplicationConfig['providers'];
|
|
|
4429
4454
|
*/
|
|
4430
4455
|
declare function graphqlQuerySigner(key: string): HttpInterceptorFn;
|
|
4431
4456
|
|
|
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 };
|
|
4457
|
+
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
4458
|
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 };
|