@ecodev/natural 69.0.12 → 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/fesm2022/ecodev-natural.mjs +158 -38
- package/fesm2022/ecodev-natural.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ecodev-natural.d.ts +153 -113
package/package.json
CHANGED
|
@@ -1347,6 +1347,27 @@ declare class NaturalAbstractNavigableList<TService extends NaturalAbstractModel
|
|
|
1347
1347
|
}
|
|
1348
1348
|
|
|
1349
1349
|
type MaybeNavigable = Literal | NavigableItem<Literal>;
|
|
1350
|
+
declare function getNumberRows(dataSource: {
|
|
1351
|
+
data?: PaginatedData<MaybeNavigable> | null;
|
|
1352
|
+
} | undefined): number;
|
|
1353
|
+
declare function getVisibleSelections(selection: SelectionModel<any>, dataSource: {
|
|
1354
|
+
data?: PaginatedData<MaybeNavigable> | null;
|
|
1355
|
+
} | undefined): number;
|
|
1356
|
+
declare function isAllVisibleSelected(selection: SelectionModel<any>, dataSource: {
|
|
1357
|
+
data?: PaginatedData<MaybeNavigable> | null;
|
|
1358
|
+
} | undefined): boolean;
|
|
1359
|
+
declare function isPartiallyVisibleSelected(selection: SelectionModel<any>, dataSource: {
|
|
1360
|
+
data?: PaginatedData<MaybeNavigable> | null;
|
|
1361
|
+
} | undefined): boolean;
|
|
1362
|
+
declare function selectVisible(selection: SelectionModel<any>, dataSource: {
|
|
1363
|
+
data?: PaginatedData<MaybeNavigable> | null;
|
|
1364
|
+
} | undefined): void;
|
|
1365
|
+
declare function unselectVisible(selection: SelectionModel<any>, dataSource: {
|
|
1366
|
+
data?: PaginatedData<MaybeNavigable> | null;
|
|
1367
|
+
} | undefined): void;
|
|
1368
|
+
declare function masterToggleVisible(selection: SelectionModel<any>, dataSource: {
|
|
1369
|
+
data?: PaginatedData<MaybeNavigable> | null;
|
|
1370
|
+
} | undefined): void;
|
|
1350
1371
|
/**
|
|
1351
1372
|
* This class helps managing a list of paginated items that can be filtered,
|
|
1352
1373
|
* selected, and then bulk actions can be performed on selection.
|
|
@@ -1427,6 +1448,9 @@ declare class NaturalAbstractList<TService extends NaturalAbstractModelService<a
|
|
|
1427
1448
|
protected readonly route: ActivatedRoute;
|
|
1428
1449
|
protected readonly alertService: NaturalAlertService;
|
|
1429
1450
|
protected readonly persistenceService: NaturalPersistenceService;
|
|
1451
|
+
protected readonly isAllVisibleSelected: typeof isAllVisibleSelected;
|
|
1452
|
+
protected readonly isPartiallyVisibleSelected: typeof isPartiallyVisibleSelected;
|
|
1453
|
+
protected readonly masterToggleVisible: typeof masterToggleVisible;
|
|
1430
1454
|
constructor(service: TService);
|
|
1431
1455
|
/**
|
|
1432
1456
|
* Variables that are always forced on a list, in addition to whatever the end-user might select
|
|
@@ -1461,14 +1485,6 @@ declare class NaturalAbstractList<TService extends NaturalAbstractModelService<a
|
|
|
1461
1485
|
*/
|
|
1462
1486
|
pagination(event: PaginationInput | PageEvent, defer?: Promise<unknown>, navigationExtras?: NavigationExtras): void;
|
|
1463
1487
|
protected persistPagination(pagination: PaginationInput | null, defer?: Promise<unknown>, navigationExtras?: NavigationExtras): void;
|
|
1464
|
-
/**
|
|
1465
|
-
* Selects all rows if they are not all selected; otherwise clear selection
|
|
1466
|
-
*/
|
|
1467
|
-
masterToggle(): void;
|
|
1468
|
-
/**
|
|
1469
|
-
* Whether the number of selected elements matches the total number of rows
|
|
1470
|
-
*/
|
|
1471
|
-
isAllSelected(): boolean;
|
|
1472
1488
|
/**
|
|
1473
1489
|
* Called when a bulk action is selected
|
|
1474
1490
|
*/
|
|
@@ -2435,49 +2451,6 @@ declare class TypeSelectComponent implements DropdownComponent {
|
|
|
2435
2451
|
static ɵcmp: i0.ɵɵComponentDeclaration<TypeSelectComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2436
2452
|
}
|
|
2437
2453
|
|
|
2438
|
-
declare abstract class AbstractAssociationSelectComponent<C> implements DropdownComponent {
|
|
2439
|
-
readonly configuration: C;
|
|
2440
|
-
readonly renderedValue: BehaviorSubject<string>;
|
|
2441
|
-
requireValueCtrl: boolean;
|
|
2442
|
-
readonly operators: readonly PossibleDiscreteOperator[];
|
|
2443
|
-
readonly operatorCtrl: FormControl<PossibleDiscreteOperatorKeys>;
|
|
2444
|
-
readonly valueCtrl: FormControl<any>;
|
|
2445
|
-
readonly form: FormGroup<{
|
|
2446
|
-
operator: FormControl<PossibleDiscreteOperatorKeys>;
|
|
2447
|
-
value: FormControl<any>;
|
|
2448
|
-
}>;
|
|
2449
|
-
constructor();
|
|
2450
|
-
/**
|
|
2451
|
-
* Reload the value from API (`operatorCtrl` should not be touched)
|
|
2452
|
-
*/
|
|
2453
|
-
protected abstract reloadValue(condition: FilterGroupConditionField): Observable<unknown>;
|
|
2454
|
-
protected abstract renderValueWithoutOperator(): string;
|
|
2455
|
-
abstract getCondition(): FilterGroupConditionField;
|
|
2456
|
-
isValid(): boolean;
|
|
2457
|
-
isDirty(): boolean;
|
|
2458
|
-
private initValidators;
|
|
2459
|
-
private reloadCondition;
|
|
2460
|
-
protected getRenderedValue(): string;
|
|
2461
|
-
protected conditionToOperatorKey(condition: FilterGroupConditionField): PossibleDiscreteOperatorKeys;
|
|
2462
|
-
protected operatorKeyToCondition(key: PossibleDiscreteOperatorKeys, values: string[]): FilterGroupConditionField;
|
|
2463
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractAssociationSelectComponent<any>, never>;
|
|
2464
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractAssociationSelectComponent<any>, never, never, {}, {}, never, never, true, never>;
|
|
2465
|
-
}
|
|
2466
|
-
|
|
2467
|
-
type TypeSelectNaturalConfiguration<TService extends UntypedModelService> = {
|
|
2468
|
-
service: TService;
|
|
2469
|
-
placeholder: string;
|
|
2470
|
-
filter?: ExtractVall<TService>['filter'];
|
|
2471
|
-
pageSize?: number;
|
|
2472
|
-
};
|
|
2473
|
-
declare class TypeNaturalSelectComponent<TService extends UntypedModelService> extends AbstractAssociationSelectComponent<TypeSelectNaturalConfiguration<TService>> {
|
|
2474
|
-
getCondition(): FilterGroupConditionField;
|
|
2475
|
-
protected reloadValue(condition: FilterGroupConditionField): Observable<ExtractTone<TService>>;
|
|
2476
|
-
protected renderValueWithoutOperator(): string;
|
|
2477
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TypeNaturalSelectComponent<any>, never>;
|
|
2478
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TypeNaturalSelectComponent<any>, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2479
|
-
}
|
|
2480
|
-
|
|
2481
2454
|
type NaturalDropdownContainerData = {
|
|
2482
2455
|
showValidateButton: boolean;
|
|
2483
2456
|
};
|
|
@@ -2512,61 +2485,12 @@ declare class NaturalDropdownRef {
|
|
|
2512
2485
|
close(result?: DropdownResult): void;
|
|
2513
2486
|
}
|
|
2514
2487
|
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
isErrorState(control: FormControl | null): boolean;
|
|
2520
|
-
}
|
|
2521
|
-
declare class TypeTextComponent implements DropdownComponent {
|
|
2522
|
-
protected dropdownRef: NaturalDropdownRef;
|
|
2523
|
-
readonly renderedValue: BehaviorSubject<string>;
|
|
2524
|
-
readonly formCtrl: FormControl<string>;
|
|
2525
|
-
readonly matcher: InvalidWithValueStateMatcher$1;
|
|
2526
|
-
constructor();
|
|
2527
|
-
getCondition(): FilterGroupConditionField;
|
|
2528
|
-
isValid(): boolean;
|
|
2529
|
-
isDirty(): boolean;
|
|
2530
|
-
close(): void;
|
|
2531
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TypeTextComponent, never>;
|
|
2532
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TypeTextComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2533
|
-
}
|
|
2534
|
-
|
|
2535
|
-
type TypeNumberConfiguration = {
|
|
2536
|
-
min?: number | null;
|
|
2537
|
-
max?: number | null;
|
|
2538
|
-
step?: number | null;
|
|
2539
|
-
/**
|
|
2540
|
-
* If true, two extra choices, "avec" and "sans", will be shown to filter by the (in-)existence of a value
|
|
2541
|
-
*/
|
|
2542
|
-
nullable?: boolean;
|
|
2488
|
+
type NaturalDropdownData<C = any> = {
|
|
2489
|
+
condition: FilterGroupConditionField | null;
|
|
2490
|
+
configuration: C;
|
|
2491
|
+
title?: string;
|
|
2543
2492
|
};
|
|
2544
|
-
declare
|
|
2545
|
-
protected dropdownRef: NaturalDropdownRef;
|
|
2546
|
-
readonly renderedValue: BehaviorSubject<string>;
|
|
2547
|
-
readonly configuration: Required<TypeNumberConfiguration>;
|
|
2548
|
-
readonly operatorCtrl: FormControl<PossibleComparableOperatorKeys>;
|
|
2549
|
-
readonly valueCtrl: FormControl<number | null>;
|
|
2550
|
-
readonly matcher: InvalidWithValueStateMatcher$1;
|
|
2551
|
-
readonly form: FormGroup<{
|
|
2552
|
-
operator: FormControl<PossibleComparableOperatorKeys>;
|
|
2553
|
-
value: FormControl<number | null>;
|
|
2554
|
-
}>;
|
|
2555
|
-
requireValueCtrl: boolean;
|
|
2556
|
-
readonly operators: readonly PossibleComparableOperator[];
|
|
2557
|
-
private readonly defaults;
|
|
2558
|
-
constructor();
|
|
2559
|
-
getCondition(): FilterGroupConditionField;
|
|
2560
|
-
isValid(): boolean;
|
|
2561
|
-
isDirty(): boolean;
|
|
2562
|
-
close(): void;
|
|
2563
|
-
private initValidators;
|
|
2564
|
-
private reloadCondition;
|
|
2565
|
-
private getRenderedValue;
|
|
2566
|
-
private conditionToOperatorKey;
|
|
2567
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TypeNumberComponent, never>;
|
|
2568
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TypeNumberComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2569
|
-
}
|
|
2493
|
+
declare const NATURAL_DROPDOWN_DATA: InjectionToken<NaturalDropdownData<any>>;
|
|
2570
2494
|
|
|
2571
2495
|
type NaturalHierarchicConfiguration<T extends UntypedModelService = UntypedModelService> = {
|
|
2572
2496
|
/**
|
|
@@ -2731,6 +2655,129 @@ declare class TypeHierarchicSelectorComponent extends AbstractAssociationSelectC
|
|
|
2731
2655
|
static ɵcmp: i0.ɵɵComponentDeclaration<TypeHierarchicSelectorComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2732
2656
|
}
|
|
2733
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
|
+
|
|
2734
2781
|
type TypeDateConfiguration<D = Date> = {
|
|
2735
2782
|
min?: D | null;
|
|
2736
2783
|
max?: D | null;
|
|
@@ -3424,13 +3471,6 @@ declare class NaturalRelationsComponent<TService extends NaturalAbstractModelSer
|
|
|
3424
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>;
|
|
3425
3472
|
}
|
|
3426
3473
|
|
|
3427
|
-
type NaturalDropdownData<C = any> = {
|
|
3428
|
-
condition: FilterGroupConditionField | null;
|
|
3429
|
-
configuration: C;
|
|
3430
|
-
title?: string;
|
|
3431
|
-
};
|
|
3432
|
-
declare const NATURAL_DROPDOWN_DATA: InjectionToken<NaturalDropdownData<any>>;
|
|
3433
|
-
|
|
3434
3474
|
declare function toGraphQLDoctrineFilter(facets: NaturalSearchFacets | null, selections: NaturalSearchSelections | null): Filter;
|
|
3435
3475
|
|
|
3436
3476
|
/**
|
|
@@ -4413,5 +4453,5 @@ declare const naturalProviders: ApplicationConfig['providers'];
|
|
|
4413
4453
|
*/
|
|
4414
4454
|
declare function graphqlQuerySigner(key: string): HttpInterceptorFn;
|
|
4415
4455
|
|
|
4416
|
-
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, graphqlQuerySigner, greaterThan, hasFilesAndProcessDate, ifValid, integer, isFile, localStorageFactory, localStorageProvider, makePlural, memoryLocalStorageProvider, memorySessionStorageProvider, mergeOverrideArray, money, naturalPanelsUrlMatcher, naturalProviders, nfcCardHex, onHistoryEvent, possibleComparableOperators, possibleNullComparableOperators, provideErrorHandler, provideIcons, providePanels, provideSeo, provideThemes, relationsToIds, replaceObjectKeepingReference, replaceOperatorByField, replaceOperatorByName, rgbToHex, sessionStorageFactory, sessionStorageProvider, time, toGraphQLDoctrineFilter, toNavigationParameters, toUrl, unique, 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 };
|
|
4417
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 };
|