@elderbyte/ngx-starter 21.13.0 → 22.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -7502,11 +7502,12 @@ declare class ElderCompositeSortComponent implements OnDestroy {
|
|
|
7502
7502
|
readonly selectedSort: i0.WritableSignal<CompositeSort>;
|
|
7503
7503
|
readonly selectedSortDirection: i0.WritableSignal<SortDirection>;
|
|
7504
7504
|
readonly activeSorts: i0.Signal<Sort[]>;
|
|
7505
|
-
availableSorts: i0.InputSignal<CompositeSort[]>;
|
|
7506
|
-
availableSortCtx: i0.Signal<CompositeSortContext>;
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
|
|
7505
|
+
readonly availableSorts: i0.InputSignal<CompositeSort[]>;
|
|
7506
|
+
readonly availableSortCtx: i0.Signal<CompositeSortContext>;
|
|
7507
|
+
readonly sortsInput: i0.InputSignal<Sort[]>;
|
|
7508
|
+
readonly sorts: i0.WritableSignal<Sort[]>;
|
|
7509
|
+
readonly sortsChange: i0.OutputEmitterRef<Sort[]>;
|
|
7510
|
+
readonly translationPrefix: i0.InputSignal<string>;
|
|
7510
7511
|
/***************************************************************************
|
|
7511
7512
|
* *
|
|
7512
7513
|
* Constructor *
|
|
@@ -7528,7 +7529,7 @@ declare class ElderCompositeSortComponent implements OnDestroy {
|
|
|
7528
7529
|
toggleSortDirection(event: Event): void;
|
|
7529
7530
|
writeSorts(sorts: Sort[]): void;
|
|
7530
7531
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderCompositeSortComponent, never>;
|
|
7531
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderCompositeSortComponent, "elder-composite-sort", never, { "availableSorts": { "alias": "availableSorts"; "required": true; "isSignal": true; }; "
|
|
7532
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderCompositeSortComponent, "elder-composite-sort", never, { "availableSorts": { "alias": "availableSorts"; "required": true; "isSignal": true; }; "sortsInput": { "alias": "sorts"; "required": false; "isSignal": true; }; "translationPrefix": { "alias": "translationPrefix"; "required": false; "isSignal": true; }; }, { "sortsChange": "sortsChange"; }, never, never, true, never>;
|
|
7532
7533
|
}
|
|
7533
7534
|
|
|
7534
7535
|
declare class ElderCompositeSortDcDirective implements OnInit {
|
|
@@ -9451,6 +9452,14 @@ declare class ElderTableColumnDirective {
|
|
|
9451
9452
|
}
|
|
9452
9453
|
|
|
9453
9454
|
type ColumnPositionInsert = 'start' | 'end' | 'before' | 'after';
|
|
9455
|
+
/**
|
|
9456
|
+
* Determines merge order for table column contributor groups (ascending): lower values are merged first.
|
|
9457
|
+
* BASE groups are laid out first, PROJECTED groups are merged afterwards.
|
|
9458
|
+
*/
|
|
9459
|
+
declare enum ElderTableGroupLayer {
|
|
9460
|
+
BASE = 0,// 0 — merged first
|
|
9461
|
+
PROJECTED = 1
|
|
9462
|
+
}
|
|
9454
9463
|
declare class ColumnPositionSpec {
|
|
9455
9464
|
readonly position: ColumnPositionInsert;
|
|
9456
9465
|
readonly relativeTo: string | null;
|
|
@@ -9459,18 +9468,18 @@ declare class ColumnPositionSpec {
|
|
|
9459
9468
|
constructor(position: ColumnPositionInsert, relativeTo: string | null);
|
|
9460
9469
|
}
|
|
9461
9470
|
declare class ElderColumnGroup {
|
|
9462
|
-
readonly
|
|
9471
|
+
readonly groupLayer: ElderTableGroupLayer;
|
|
9463
9472
|
readonly columnsPosition: ColumnPositionSpec;
|
|
9464
9473
|
readonly columns: ElderTableColumnDirective[];
|
|
9465
|
-
constructor(
|
|
9474
|
+
constructor(groupLayer: ElderTableGroupLayer, columnsPosition: ColumnPositionSpec, columns: ElderTableColumnDirective[]);
|
|
9466
9475
|
}
|
|
9467
9476
|
|
|
9468
9477
|
declare class ElderTableGroup {
|
|
9469
9478
|
readonly id: string;
|
|
9470
|
-
readonly
|
|
9471
|
-
static create(
|
|
9472
|
-
static of(id: string,
|
|
9473
|
-
constructor(id: string,
|
|
9479
|
+
readonly groupLayer: ElderTableGroupLayer;
|
|
9480
|
+
static create(groupLayer: ElderTableGroupLayer): ElderTableGroup;
|
|
9481
|
+
static of(id: string, groupLayer: ElderTableGroupLayer): ElderTableGroup;
|
|
9482
|
+
constructor(id: string, groupLayer: ElderTableGroupLayer);
|
|
9474
9483
|
}
|
|
9475
9484
|
declare class ElderTableModel<T = any> {
|
|
9476
9485
|
/***************************************************************************
|
|
@@ -9519,7 +9528,7 @@ declare class ElderTableModel<T = any> {
|
|
|
9519
9528
|
get columnDefs$(): Observable<CdkColumnDef[]>;
|
|
9520
9529
|
get rowDefs$(): Observable<CdkRowDef<T>[]>;
|
|
9521
9530
|
get sorts$(): Observable<MatSort[]>;
|
|
9522
|
-
private
|
|
9531
|
+
private valuesSortedByTableGroupLayer;
|
|
9523
9532
|
private sortAndFlatten;
|
|
9524
9533
|
/***************************************************************************
|
|
9525
9534
|
* *
|
|
@@ -9544,53 +9553,6 @@ declare class ElderTableModel<T = any> {
|
|
|
9544
9553
|
static ɵprov: i0.ɵɵInjectableDeclaration<ElderTableModel<any>>;
|
|
9545
9554
|
}
|
|
9546
9555
|
|
|
9547
|
-
/**
|
|
9548
|
-
* Allows to extend an ElderTable from a parent component.
|
|
9549
|
-
*
|
|
9550
|
-
*/
|
|
9551
|
-
declare class ElderTableExtensionDirective implements AfterContentInit, OnDestroy {
|
|
9552
|
-
private readonly tableModel;
|
|
9553
|
-
private readonly _matSort;
|
|
9554
|
-
private readonly parentExtension;
|
|
9555
|
-
/***************************************************************************
|
|
9556
|
-
* *
|
|
9557
|
-
* Fields *
|
|
9558
|
-
* *
|
|
9559
|
-
**************************************************************************/
|
|
9560
|
-
private readonly logger;
|
|
9561
|
-
/**
|
|
9562
|
-
* The index of this table group extension
|
|
9563
|
-
* @private
|
|
9564
|
-
*/
|
|
9565
|
-
private readonly _extensionGroupIndex;
|
|
9566
|
-
columnDefsQuery: QueryList<CdkColumnDef>;
|
|
9567
|
-
elderColumnsQuery: QueryList<ElderTableColumnDirective>;
|
|
9568
|
-
rowDefsQuery: QueryList<CdkRowDef<any>>;
|
|
9569
|
-
columnsPosition: ColumnPositionSpec;
|
|
9570
|
-
private readonly destroy$;
|
|
9571
|
-
/***************************************************************************
|
|
9572
|
-
* *
|
|
9573
|
-
* Constructor *
|
|
9574
|
-
* *
|
|
9575
|
-
**************************************************************************/
|
|
9576
|
-
constructor(tableModel: ElderTableModel, _matSort: MatSort, parentExtension: ElderTableExtensionDirective);
|
|
9577
|
-
/***************************************************************************
|
|
9578
|
-
* *
|
|
9579
|
-
* Life Cycle *
|
|
9580
|
-
* *
|
|
9581
|
-
**************************************************************************/
|
|
9582
|
-
ngAfterContentInit(): void;
|
|
9583
|
-
ngOnDestroy(): void;
|
|
9584
|
-
/***************************************************************************
|
|
9585
|
-
* *
|
|
9586
|
-
* Properties *
|
|
9587
|
-
* *
|
|
9588
|
-
**************************************************************************/
|
|
9589
|
-
get extensionGroupIndex(): number;
|
|
9590
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableExtensionDirective, [null, { optional: true; }, { optional: true; skipSelf: true; }]>;
|
|
9591
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderTableExtensionDirective, "[elderTableExtension]", never, { "columnsPosition": { "alias": "columnsPosition"; "required": false; }; }, {}, ["columnDefsQuery", "elderColumnsQuery", "rowDefsQuery"], never, true, never>;
|
|
9592
|
-
}
|
|
9593
|
-
|
|
9594
9556
|
/**
|
|
9595
9557
|
* The table navigation bar, typically located below the table,
|
|
9596
9558
|
* containing the pagination control and other table controls.
|
|
@@ -9605,7 +9567,6 @@ declare class ElderTableNavigationBarDirective {
|
|
|
9605
9567
|
}
|
|
9606
9568
|
declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T> implements OnInit, AfterContentInit, AfterViewInit {
|
|
9607
9569
|
readonly tableModel: ElderTableModel;
|
|
9608
|
-
private readonly parentExtension;
|
|
9609
9570
|
private zone;
|
|
9610
9571
|
/***************************************************************************
|
|
9611
9572
|
* *
|
|
@@ -9668,18 +9629,13 @@ declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9668
9629
|
* Gets the current rows of this table.
|
|
9669
9630
|
*/
|
|
9670
9631
|
readonly rows$: BehaviorSubject<ElderTableRowDirective<T>[]>;
|
|
9671
|
-
/**
|
|
9672
|
-
* The index of this table group extension
|
|
9673
|
-
* @private
|
|
9674
|
-
*/
|
|
9675
|
-
private readonly _extensionGroupIndex;
|
|
9676
9632
|
readonly displayedColumnsInner: Signal<string[] | undefined>;
|
|
9677
9633
|
/***************************************************************************
|
|
9678
9634
|
* *
|
|
9679
9635
|
* Constructor *
|
|
9680
9636
|
* *
|
|
9681
9637
|
**************************************************************************/
|
|
9682
|
-
constructor(tableModel: ElderTableModel, selectionModel: SelectionModel<T>, dataViewOptionsProvider: ElderDataViewOptionsProvider, matSort: MatSort,
|
|
9638
|
+
constructor(tableModel: ElderTableModel, selectionModel: SelectionModel<T>, dataViewOptionsProvider: ElderDataViewOptionsProvider, matSort: MatSort, zone: NgZone, interactionController: DataViewInteractionControllerDirective<T>);
|
|
9683
9639
|
/***************************************************************************
|
|
9684
9640
|
* *
|
|
9685
9641
|
* Life Cycle *
|
|
@@ -9716,7 +9672,7 @@ declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9716
9672
|
**************************************************************************/
|
|
9717
9673
|
private setupSelectionLifeCycle;
|
|
9718
9674
|
private getRowForItem;
|
|
9719
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableComponent<any>, [null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; },
|
|
9675
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableComponent<any>, [null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; }, null, null]>;
|
|
9720
9676
|
static ɵcmp: i0.ɵɵComponentDeclaration<ElderTableComponent<any>, "elder-table", ["elderTable"], { "id": { "alias": "id"; "required": false; "isSignal": true; }; "idField": { "alias": "idField"; "required": false; }; "removingField": { "alias": "removingField"; "required": false; }; "hiddenField": { "alias": "hiddenField"; "required": false; }; "keepSelection": { "alias": "keepSelection"; "required": false; "isSignal": true; }; "showFooterRow": { "alias": "showFooterRow"; "required": false; "isSignal": true; }; "denseHorizontal": { "alias": "denseHorizontal"; "required": false; "isSignal": true; }; "hideHeaderRow": { "alias": "hideHeaderRow"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; }; "displayedColumns": { "alias": "displayedColumns"; "required": false; }; "selectionVisible": { "alias": "selectionVisible"; "required": false; }; }, {}, ["navigationBar", "columnDefs", "elderColumns", "rowDefs", "toolbarRowTemplateQuery"], never, true, [{ directive: typeof DataViewInteractionControllerDirective; inputs: {}; outputs: {}; }]>;
|
|
9721
9677
|
}
|
|
9722
9678
|
|
|
@@ -9788,6 +9744,40 @@ declare class ElderTableActivationDirective<T> {
|
|
|
9788
9744
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderTableActivationDirective<any>, "elder-table[elderTableActivation]", ["elderTableActivation"], { "activationOptions": { "alias": "elderTableActivation"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; }, { "activeItemEventChange": "activeItemEventChange"; "activeItemChange": "activeItemChange"; }, never, never, true, [{ directive: typeof ElderDataActivationDirective; inputs: {}; outputs: {}; }]>;
|
|
9789
9745
|
}
|
|
9790
9746
|
|
|
9747
|
+
/**
|
|
9748
|
+
* Adds additonal columns into an ElderTable.
|
|
9749
|
+
*/
|
|
9750
|
+
declare class ElderProjectedColumnsDirective implements AfterContentInit, OnDestroy {
|
|
9751
|
+
private readonly tableModel;
|
|
9752
|
+
private readonly _matSort;
|
|
9753
|
+
/***************************************************************************
|
|
9754
|
+
* *
|
|
9755
|
+
* Fields *
|
|
9756
|
+
* *
|
|
9757
|
+
**************************************************************************/
|
|
9758
|
+
private readonly logger;
|
|
9759
|
+
columnDefsQuery: QueryList<CdkColumnDef>;
|
|
9760
|
+
elderColumnsQuery: QueryList<ElderTableColumnDirective>;
|
|
9761
|
+
rowDefsQuery: QueryList<CdkRowDef<any>>;
|
|
9762
|
+
columnsPosition: ColumnPositionSpec;
|
|
9763
|
+
private readonly destroy$;
|
|
9764
|
+
/***************************************************************************
|
|
9765
|
+
* *
|
|
9766
|
+
* Constructor *
|
|
9767
|
+
* *
|
|
9768
|
+
**************************************************************************/
|
|
9769
|
+
constructor(tableModel: ElderTableModel, _matSort: MatSort);
|
|
9770
|
+
/***************************************************************************
|
|
9771
|
+
* *
|
|
9772
|
+
* Life Cycle *
|
|
9773
|
+
* *
|
|
9774
|
+
**************************************************************************/
|
|
9775
|
+
ngAfterContentInit(): void;
|
|
9776
|
+
ngOnDestroy(): void;
|
|
9777
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderProjectedColumnsDirective, [null, { optional: true; }]>;
|
|
9778
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderProjectedColumnsDirective, "[elderProjectedColumns]", never, { "columnsPosition": { "alias": "columnsPosition"; "required": false; }; }, {}, ["columnDefsQuery", "elderColumnsQuery", "rowDefsQuery"], never, true, never>;
|
|
9779
|
+
}
|
|
9780
|
+
|
|
9791
9781
|
/**
|
|
9792
9782
|
* Forces a new Elder Table Model, thus breaking this component and its children from a potential parent elder-table.
|
|
9793
9783
|
* With this, nested elder-tables are possible.
|
|
@@ -9994,7 +9984,7 @@ declare class ElderTableModelQueryGroup {
|
|
|
9994
9984
|
* Static Builder *
|
|
9995
9985
|
* *
|
|
9996
9986
|
**************************************************************************/
|
|
9997
|
-
static start(tableModel: ElderTableModel,
|
|
9987
|
+
static start(tableModel: ElderTableModel, groupLayer: ElderTableGroupLayer): ElderTableModelQueryGroup;
|
|
9998
9988
|
/***************************************************************************
|
|
9999
9989
|
* *
|
|
10000
9990
|
* Constructor *
|
|
@@ -10025,7 +10015,7 @@ declare class ElderTableModelQueryGroup {
|
|
|
10025
10015
|
|
|
10026
10016
|
declare class ElderTableModule {
|
|
10027
10017
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableModule, never>;
|
|
10028
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ElderTableModule, never, [typeof i1.CommonModule, typeof i2$3.RouterModule, typeof i2$1.FormsModule, typeof i4$3.MatDividerModule, typeof i4$5.MatCheckboxModule, typeof i4.MatButtonModule, typeof i3.MatIconModule, typeof i8.MatBadgeModule, typeof i9.MatProgressBarModule, typeof i10.CdkTableModule, typeof i1$1.DragDropModule, typeof i12.MatTableModule, typeof i13.MatPaginatorModule, typeof i14.MatSortModule, typeof i5.MatDialogModule, typeof i11.MatTooltipModule, typeof i3$3.MatMenuModule, typeof ElderDataCommonModule, typeof ElderInfiniteScrollModule, typeof ElderFormsDirectivesModule, typeof i3$1.MatCardModule, typeof ElderTableComponent, typeof ElderTableToolbarDirective, typeof ElderTableSortDirective, typeof ElderCenterCellDirective, typeof ElderNumberCellDirective, typeof ElderTableActivationDirective, typeof ElderTableRowDirective, typeof
|
|
10018
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ElderTableModule, never, [typeof i1.CommonModule, typeof i2$3.RouterModule, typeof i2$1.FormsModule, typeof i4$3.MatDividerModule, typeof i4$5.MatCheckboxModule, typeof i4.MatButtonModule, typeof i3.MatIconModule, typeof i8.MatBadgeModule, typeof i9.MatProgressBarModule, typeof i10.CdkTableModule, typeof i1$1.DragDropModule, typeof i12.MatTableModule, typeof i13.MatPaginatorModule, typeof i14.MatSortModule, typeof i5.MatDialogModule, typeof i11.MatTooltipModule, typeof i3$3.MatMenuModule, typeof ElderDataCommonModule, typeof ElderInfiniteScrollModule, typeof ElderFormsDirectivesModule, typeof i3$1.MatCardModule, typeof ElderTableComponent, typeof ElderTableToolbarDirective, typeof ElderTableSortDirective, typeof ElderCenterCellDirective, typeof ElderNumberCellDirective, typeof ElderTableActivationDirective, typeof ElderTableRowDirective, typeof ElderProjectedColumnsDirective, typeof ElderTableColumnDirective, typeof ElderTableRootDirective, typeof ElderDeleteActiveDirective, typeof ElderTableDropListConnectorDirective], [typeof ElderTableComponent, typeof ElderTableToolbarDirective, typeof ElderDataCommonModule, typeof ElderTableSortDirective, typeof ElderCenterCellDirective, typeof ElderNumberCellDirective, typeof ElderTableActivationDirective, typeof ElderProjectedColumnsDirective, typeof ElderTableRootDirective, typeof ElderDeleteActiveDirective, typeof ElderTableDropListConnectorDirective]>;
|
|
10029
10019
|
static ɵinj: i0.ɵɵInjectorDeclaration<ElderTableModule>;
|
|
10030
10020
|
}
|
|
10031
10021
|
|
|
@@ -10932,7 +10922,6 @@ declare abstract class ElderSelectBase<TId, TEntity, TValue> extends ElderFormFi
|
|
|
10932
10922
|
* The property used to display the values.
|
|
10933
10923
|
*/
|
|
10934
10924
|
set displayProperty(property: string);
|
|
10935
|
-
set displayPropertyResolver(resolver: TextResolverFn$1);
|
|
10936
10925
|
set filters(filters: Filter[]);
|
|
10937
10926
|
get filters(): Filter[];
|
|
10938
10927
|
set dataSource(source: IDataSource<TEntity>);
|
|
@@ -10982,7 +10971,7 @@ declare abstract class ElderSelectBase<TId, TEntity, TValue> extends ElderFormFi
|
|
|
10982
10971
|
protected propertyStringValue(entity: TEntity, property: string): string | null;
|
|
10983
10972
|
private isObject;
|
|
10984
10973
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderSelectBase<any, any, any>, never>;
|
|
10985
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderSelectBase<any, any, any>, never, never, { "cleanUp": { "alias": "cleanUp"; "required": false; }; "displayPropertyResolverS": { "alias": "displayPropertyResolver"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; }; "queryFilter": { "alias": "queryFilter"; "required": false; }; "sorts": { "alias": "sorts"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "isOptionDisabledFn": { "alias": "isOptionDisabledFn"; "required": false; }; "isOptionHiddenFn": { "alias": "isOptionHiddenFn"; "required": false; }; "valueAsId": { "alias": "valueAsId"; "required": false; }; "displayProperty": { "alias": "displayProperty"; "required": false; }; "
|
|
10974
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderSelectBase<any, any, any>, never, never, { "cleanUp": { "alias": "cleanUp"; "required": false; }; "displayPropertyResolverS": { "alias": "displayPropertyResolver"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; }; "queryFilter": { "alias": "queryFilter"; "required": false; }; "sorts": { "alias": "sorts"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "isOptionDisabledFn": { "alias": "isOptionDisabledFn"; "required": false; }; "isOptionHiddenFn": { "alias": "isOptionHiddenFn"; "required": false; }; "valueAsId": { "alias": "valueAsId"; "required": false; }; "displayProperty": { "alias": "displayProperty"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "data": { "alias": "data"; "required": false; }; "valueTemplate": { "alias": "valueTemplate"; "required": false; }; }, { "displayPropertyResolverS": "displayPropertyResolverChange"; "currentClicked": "currentClicked"; }, ["valueTemplateQuery", "selectionPopup", "templateOptions$"], never, true, never>;
|
|
10986
10975
|
}
|
|
10987
10976
|
|
|
10988
10977
|
type TextResolverFn = (value: any) => string;
|
|
@@ -14001,8 +13990,6 @@ declare class ElderShellModule {
|
|
|
14001
13990
|
*/
|
|
14002
13991
|
declare class CustomDateAdapter extends NativeDateAdapter {
|
|
14003
13992
|
private readonly logger;
|
|
14004
|
-
private readonly matDateLocale;
|
|
14005
|
-
constructor(matDateLocale: string);
|
|
14006
13993
|
getFirstDayOfWeek(): number;
|
|
14007
13994
|
parse(value: any, parseFormat?: any): Date | null;
|
|
14008
13995
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomDateAdapter, never>;
|
|
@@ -18418,5 +18405,5 @@ declare class KafentModule {
|
|
|
18418
18405
|
static ɵinj: i0.ɵɵInjectorDeclaration<KafentModule>;
|
|
18419
18406
|
}
|
|
18420
18407
|
|
|
18421
|
-
export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, CommonValidationMessageStrategy, ComparatorBuilder, CompositeSort, ConfirmDialogConfig, ContinuableListing, CountryPhoneFormatService, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, CuratedDataSource, CuratedListDataSource, CuratedPagedDataSource, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, CustomMatcherSpec, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextRange, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSelectionController, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewInteractionControllerDirective, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, DynamicValidationMessageStrategy, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAppearanceSettingsComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteModule, ElderBadgeDirective, ElderBasicPaneLayoutComponent, ElderBlobViewerComponent, ElderBreadCrumbsComponent, ElderBreadCrumbsModule, ElderButtonGroupComponent, ElderButtonGroupModule, ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardHeaderComponent, ElderCardModule, ElderCardOrganizerComponent, ElderCardOrganizerModule, ElderCardPanelComponent, ElderCardStackComponent, ElderCardSubtitleDirective, ElderCardTitleDirective, ElderCenterCellDirective, ElderChipLabelDirective, ElderChipListSelectComponent, ElderChipListSelectModule, ElderChipsIncludeExcludeDirective, ElderChipsModule, ElderClearSelectDirective, ElderClipboardPutDirective, ElderClipboardService, ElderCompositeSortComponent, ElderCompositeSortDcDirective, ElderConfirmDialogComponent, ElderConnectivityModule, ElderConnectivityService, ElderContainersModule, ElderContinuatorComponent, ElderCsvExportBtnComponent, ElderCsvModule, ElderCurrencyModule, ElderCurrencyPipe, ElderDataActivationDirective, ElderDataCommonModule, ElderDataToolbarComponent, ElderDataTransferModule, ElderDataTransferService, ElderDataViewBaseComponent, ElderDataViewDndDirective, ElderDataViewDndGroupDirective, ElderDataViewItemDragDirective, ElderDataViewOptions, ElderDataViewOptionsProvider, ElderDateSwitcherComponent, ElderDateTimeInputComponent, ElderDelayedFocusDirective, ElderDeleteActiveDirective, ElderDetailDialogComponent, ElderDetailDirective, ElderDialogConfig, ElderDialogModule, ElderDialogPanelComponent, ElderDialogService, ElderDimensionsInputComponent, ElderDropZoneComponent, ElderDurationInputComponent, ElderEntityValueAccessorUtil, ElderEnumTranslationService, ElderErrorModule, ElderEventSourceService, ElderExceptionDetailComponent, ElderExpandToggleButtonComponent, ElderExpandToggleButtonModule, ElderFileDropZoneDirective, ElderFileModule, ElderFileSelectComponent, ElderFileSelectDirective, ElderFileUploadComponent, ElderFilterChipTemplateComponent, ElderFormFieldControlBase, ElderFormFieldDenseDirective, ElderFormFieldLabelDirective, ElderFormFieldNoHintDirective, ElderFormFieldNoSpinnerDirective, ElderFormsDirectivesModule, ElderFormsModule, ElderFromFieldBase, ElderFromFieldEntityBase, ElderFromFieldMultiEntityBase, ElderGenericResizableLayoutComponent, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridNavigationBarDirective, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderLock, ElderLockContext, ElderLockContextDirective, ElderLockManagerService, ElderLockWarningService, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectChipsOptionsDirective, ElderMultiSelectFormField, ElderMultiTranslateHttpLoader, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderPopoverComponent, ElderPopoverContentDirective, ElderPopoverTriggerDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRailNavDirective, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, ElderResizableDirective, ElderResizablePaneLayoutComponent, ElderResizeBehaviorDirective, ElderResizeContainerComponent, ElderRoundPipe, ElderRouteOutletDrawerService, ElderRouterOutletService, ElderRouterService, ElderSafeUrlPipe, ElderScrollContainerComponent, ElderScrollbarDirective, ElderScrollbarModule, ElderSearchBoxComponent, ElderSearchContextDirective, ElderSearchIncludeExcludeDirective, ElderSearchInputDirective, ElderSearchModule, ElderSearchPanelComponent, ElderSearchUrlDirective, ElderSelectBase, ElderSelectChipAvatarDirective, ElderSelectChipDirective, ElderSelectComponent, ElderSelectComponentState, ElderSelectCustomInputDirective, ElderSelectFormField, ElderSelectModule, ElderSelectOnTabDirective, ElderSelectOptionComponent, ElderSelectValueDirective, ElderSelectionDialogComponent, ElderSelectionDialogDirective, ElderSelectionMasterCheckboxComponent, ElderSelectionPopupTriggerAdapterDirective, ElderShellCenterDirective, ElderShellComponent, ElderShellModule, ElderShellNavigationToggleComponent, ElderShellService, ElderShellSideLeftDirective, ElderShellSideRightDirective, ElderShellSlotDirective, ElderShellStaticNavSlotDirective, ElderSinglePaneWrapperComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStaticNavToggleComponent, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableDropListConnectorDirective, ElderTableExtensionDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableNavigationBarDirective, ElderTableProviders, ElderTableRootDirective, ElderTableSelectionCellComponent, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTileComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToggleTextInputDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTranslatePipe, ElderTranslateService, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderWordAutocompleteDirective, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, ErrorUtil, ExceptionDetailCtx, FallbackValidationMessageStrategy, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientPristine, HttpDataTransfer, HttpDataTransferAggregateComponent, HttpDataTransferComponent, HttpDataTransferIndicatorComponent, HttpDataTransferOverviewComponent, HttpParamsBuilder, I18nBase, I18nPickAsyncPipe, I18nPickPipe, I18nText, IFrameState, IframeCloseDirective, IframeDialogComponent, IframeHostComponent, IframeService, IframeSideContentComponent, IncludeExcludeSelectionModel, IncludeExcludeState, IncludeExcludeValue, IndexedEntities, InternalRestClientConfig, Interval, IsoDurationPipe, IsoIntervalFormatUtil, IsoIntervalParsePipe, IsoIntervalPipe, ItemActivationEvent, ItemActivationOptions, ItemModel, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalDataFilter, LocalListDataSource, LocalPagedDataSource, Locale, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, ModifierKeyService, ModifierKeyState, MultiModelBaseComponent, NamedColorDirective, NamedColorSelectDirective, NamedColorSelectValueComponent, NextNumberUtil, ObjectFieldMatcher, ObjectPathResolver, Objects, OnlineStatus, Page, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, PhoneFormatService, PhonePipe, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, ResizeObserverDirective, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, RoutedTabActivationFailed, SearchInputState, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionChangedEvent, SelectionEventSource, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, SimpleSearchInput, Sort, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TargetValue, TemplateCompositeControl, TemplatedSelectionDialogComponent, TemporalPlainDateInterval, TemporalUtil, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UnreachableCaseError, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueChangeEvent, ValueWrapper, ViewDropModelUpdateInstruction, ViewProviders, WebLocalStorage, WebSessionStorage, WebappDomainFragmentSpec, WebappDomainSpec, WebappDomainSpecService, WebappDomainSwitcherDirective, WebappUrlFragmentSwitcherConfig, WeightPipe, alphaNumStringComparator, booleanTransformFn, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createElderDefaultTranslateLoader, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalDataSource, isLocalListDataSource, isLocalPagedDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, provideElderBrandAssets, provideElderDefaults, provideElderLanguage, provideElderTranslate, proxyControlContainer, registerLocale, runInZone, someSignal, themeInit };
|
|
18408
|
+
export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, CommonValidationMessageStrategy, ComparatorBuilder, CompositeSort, ConfirmDialogConfig, ContinuableListing, CountryPhoneFormatService, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, CuratedDataSource, CuratedListDataSource, CuratedPagedDataSource, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, CustomMatcherSpec, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextRange, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSelectionController, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewInteractionControllerDirective, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, DynamicValidationMessageStrategy, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAppearanceSettingsComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteModule, ElderBadgeDirective, ElderBasicPaneLayoutComponent, ElderBlobViewerComponent, ElderBreadCrumbsComponent, ElderBreadCrumbsModule, ElderButtonGroupComponent, ElderButtonGroupModule, ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardHeaderComponent, ElderCardModule, ElderCardOrganizerComponent, ElderCardOrganizerModule, ElderCardPanelComponent, ElderCardStackComponent, ElderCardSubtitleDirective, ElderCardTitleDirective, ElderCenterCellDirective, ElderChipLabelDirective, ElderChipListSelectComponent, ElderChipListSelectModule, ElderChipsIncludeExcludeDirective, ElderChipsModule, ElderClearSelectDirective, ElderClipboardPutDirective, ElderClipboardService, ElderCompositeSortComponent, ElderCompositeSortDcDirective, ElderConfirmDialogComponent, ElderConnectivityModule, ElderConnectivityService, ElderContainersModule, ElderContinuatorComponent, ElderCsvExportBtnComponent, ElderCsvModule, ElderCurrencyModule, ElderCurrencyPipe, ElderDataActivationDirective, ElderDataCommonModule, ElderDataToolbarComponent, ElderDataTransferModule, ElderDataTransferService, ElderDataViewBaseComponent, ElderDataViewDndDirective, ElderDataViewDndGroupDirective, ElderDataViewItemDragDirective, ElderDataViewOptions, ElderDataViewOptionsProvider, ElderDateSwitcherComponent, ElderDateTimeInputComponent, ElderDelayedFocusDirective, ElderDeleteActiveDirective, ElderDetailDialogComponent, ElderDetailDirective, ElderDialogConfig, ElderDialogModule, ElderDialogPanelComponent, ElderDialogService, ElderDimensionsInputComponent, ElderDropZoneComponent, ElderDurationInputComponent, ElderEntityValueAccessorUtil, ElderEnumTranslationService, ElderErrorModule, ElderEventSourceService, ElderExceptionDetailComponent, ElderExpandToggleButtonComponent, ElderExpandToggleButtonModule, ElderFileDropZoneDirective, ElderFileModule, ElderFileSelectComponent, ElderFileSelectDirective, ElderFileUploadComponent, ElderFilterChipTemplateComponent, ElderFormFieldControlBase, ElderFormFieldDenseDirective, ElderFormFieldLabelDirective, ElderFormFieldNoHintDirective, ElderFormFieldNoSpinnerDirective, ElderFormsDirectivesModule, ElderFormsModule, ElderFromFieldBase, ElderFromFieldEntityBase, ElderFromFieldMultiEntityBase, ElderGenericResizableLayoutComponent, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridNavigationBarDirective, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderLock, ElderLockContext, ElderLockContextDirective, ElderLockManagerService, ElderLockWarningService, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectChipsOptionsDirective, ElderMultiSelectFormField, ElderMultiTranslateHttpLoader, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderPopoverComponent, ElderPopoverContentDirective, ElderPopoverTriggerDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderProjectedColumnsDirective, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRailNavDirective, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, ElderResizableDirective, ElderResizablePaneLayoutComponent, ElderResizeBehaviorDirective, ElderResizeContainerComponent, ElderRoundPipe, ElderRouteOutletDrawerService, ElderRouterOutletService, ElderRouterService, ElderSafeUrlPipe, ElderScrollContainerComponent, ElderScrollbarDirective, ElderScrollbarModule, ElderSearchBoxComponent, ElderSearchContextDirective, ElderSearchIncludeExcludeDirective, ElderSearchInputDirective, ElderSearchModule, ElderSearchPanelComponent, ElderSearchUrlDirective, ElderSelectBase, ElderSelectChipAvatarDirective, ElderSelectChipDirective, ElderSelectComponent, ElderSelectComponentState, ElderSelectCustomInputDirective, ElderSelectFormField, ElderSelectModule, ElderSelectOnTabDirective, ElderSelectOptionComponent, ElderSelectValueDirective, ElderSelectionDialogComponent, ElderSelectionDialogDirective, ElderSelectionMasterCheckboxComponent, ElderSelectionPopupTriggerAdapterDirective, ElderShellCenterDirective, ElderShellComponent, ElderShellModule, ElderShellNavigationToggleComponent, ElderShellService, ElderShellSideLeftDirective, ElderShellSideRightDirective, ElderShellSlotDirective, ElderShellStaticNavSlotDirective, ElderSinglePaneWrapperComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStaticNavToggleComponent, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableDropListConnectorDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableNavigationBarDirective, ElderTableProviders, ElderTableRootDirective, ElderTableSelectionCellComponent, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTileComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToggleTextInputDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTranslatePipe, ElderTranslateService, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderWordAutocompleteDirective, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, ErrorUtil, ExceptionDetailCtx, FallbackValidationMessageStrategy, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientPristine, HttpDataTransfer, HttpDataTransferAggregateComponent, HttpDataTransferComponent, HttpDataTransferIndicatorComponent, HttpDataTransferOverviewComponent, HttpParamsBuilder, I18nBase, I18nPickAsyncPipe, I18nPickPipe, I18nText, IFrameState, IframeCloseDirective, IframeDialogComponent, IframeHostComponent, IframeService, IframeSideContentComponent, IncludeExcludeSelectionModel, IncludeExcludeState, IncludeExcludeValue, IndexedEntities, InternalRestClientConfig, Interval, IsoDurationPipe, IsoIntervalFormatUtil, IsoIntervalParsePipe, IsoIntervalPipe, ItemActivationEvent, ItemActivationOptions, ItemModel, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalDataFilter, LocalListDataSource, LocalPagedDataSource, Locale, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, ModifierKeyService, ModifierKeyState, MultiModelBaseComponent, NamedColorDirective, NamedColorSelectDirective, NamedColorSelectValueComponent, NextNumberUtil, ObjectFieldMatcher, ObjectPathResolver, Objects, OnlineStatus, Page, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, PhoneFormatService, PhonePipe, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, ResizeObserverDirective, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, RoutedTabActivationFailed, SearchInputState, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionChangedEvent, SelectionEventSource, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, SimpleSearchInput, Sort, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TargetValue, TemplateCompositeControl, TemplatedSelectionDialogComponent, TemporalPlainDateInterval, TemporalUtil, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UnreachableCaseError, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueChangeEvent, ValueWrapper, ViewDropModelUpdateInstruction, ViewProviders, WebLocalStorage, WebSessionStorage, WebappDomainFragmentSpec, WebappDomainSpec, WebappDomainSpecService, WebappDomainSwitcherDirective, WebappUrlFragmentSwitcherConfig, WeightPipe, alphaNumStringComparator, booleanTransformFn, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createElderDefaultTranslateLoader, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalDataSource, isLocalListDataSource, isLocalPagedDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, provideElderBrandAssets, provideElderDefaults, provideElderLanguage, provideElderTranslate, proxyControlContainer, registerLocale, runInZone, someSignal, themeInit };
|
|
18422
18409
|
export type { ChipAvatarSpec, ChipColorSpec, ChipIndicatorSpec, ComparatorFn, ConfirmDeleteOptions, CountryPhoneFormat, CurrencyIndication, DataViewMessageType, ElderActivationOptions, ElderApplyControlFn, ElderAutoActivateItem, ElderAutoActivationMode, ElderDataViewInteractionMode, ElderLocalizedInputOptions, ElderMasterDetailMode, ElderNamedColor, ElderNamedColorRole, ElderResizableConfig, ElderSize, ElderToolbarContentSlot, EventSourceRequestInit, ExceptionDetail, Focusable, GenericMatcherOptions, IAuditedEntity, IContinuableDataSource, IContinuationFetcher, IDataContext, IDataContextActivePage, IDataContextContinuable, IDataSource, IDynamicValidationMessage, IElderDataView, IElderDetailDialogOptions, IElderEntityValueAccessor, IElderMultiEntityValueAccessor, IElderTranslateService, IFileUploadClient, IFrameParams, IFrameStateType, IListDataSource, IListFetcher, IMasterDetailActivationOptions, IPageFetcher, IPagedDataSource, ISelectionModelDialogOptions, IStandardErrorDetail, ISuggestionProvider, ITranslated, ITranslatedText, ITranslationResource, IdExtractor, IncludeExcludeCycleStrategy, InputValue, IsoDateStr, IsoDurationStr, IsoIntervalStr, JsonMap, KafentConsumerEventRequest, KafentEventFilter, KafentEventRequestBase, KafentLiveEventRequest, KeyGetterFn, LanguageTag, LocalDataFilterFn, LocalDataSortFn, LocaleMap, LocalisationPicker, Localized, LockWarningOptions, MatchOptions, ObservedElementDimension, PageDto, ParsedWidthConstraint, PhoneNumber, QuantityPipeOptions, ScrollDirection, SearchInput, SelectChipSpec, SelectOptionChipSpec, SelectionOptions, ShellContentSlot, SortDirection, TextResolverFn$1 as TextResolverFn, Toast, ToastErrorDetails, ToastOptions, TrailingSpec, UnitCode, ValueSpec, WidthConstraintUnit };
|