@elderbyte/ngx-starter 21.13.0 → 21.14.0-beta.2
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
|
@@ -4,29 +4,24 @@
|
|
|
4
4
|
@use '../abstracts/elder-scss-variables' as config;
|
|
5
5
|
|
|
6
6
|
@mixin theme() {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
/**
|
|
8
|
+
* If elder-shell has scrollbar class, set the styles also on the root element.
|
|
9
|
+
* This is needed to style elements outside of the elder-shell, such as dialogs.
|
|
10
|
+
*/
|
|
11
|
+
&:has(elder-shell.elder-scrollbar-lg) {
|
|
12
|
+
@include scrollbar-width();
|
|
10
13
|
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
.scrollbar-lg {
|
|
18
|
-
@include scrollbar-width(map.get(config.$sizes, lg));
|
|
19
|
-
}
|
|
20
|
-
.scrollbar-xl {
|
|
21
|
-
@include scrollbar-width(map.get(config.$sizes, xl));
|
|
22
|
-
}
|
|
23
|
-
.scrollbar-xxl {
|
|
24
|
-
@include scrollbar-width(map.get(config.$sizes, xxl));
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Wide scrollbar mode styling
|
|
17
|
+
*/
|
|
18
|
+
.elder-scrollbar-lg {
|
|
19
|
+
@include scrollbar-width();
|
|
25
20
|
}
|
|
26
21
|
}
|
|
27
22
|
|
|
28
|
-
@mixin scrollbar-width(
|
|
23
|
+
@mixin scrollbar-width() {
|
|
29
24
|
::-webkit-scrollbar {
|
|
30
|
-
width:
|
|
25
|
+
width: var(--elder-scrollbar-width-lg);
|
|
31
26
|
}
|
|
32
27
|
}
|
|
@@ -9451,6 +9451,14 @@ declare class ElderTableColumnDirective {
|
|
|
9451
9451
|
}
|
|
9452
9452
|
|
|
9453
9453
|
type ColumnPositionInsert = 'start' | 'end' | 'before' | 'after';
|
|
9454
|
+
/**
|
|
9455
|
+
* Determines merge order for table column contributor groups (ascending): lower values are merged first.
|
|
9456
|
+
* BASE groups are laid out first, PROJECTED groups are merged afterwards.
|
|
9457
|
+
*/
|
|
9458
|
+
declare enum ElderTableGroupLayer {
|
|
9459
|
+
BASE = 0,// 0 — merged first
|
|
9460
|
+
PROJECTED = 1
|
|
9461
|
+
}
|
|
9454
9462
|
declare class ColumnPositionSpec {
|
|
9455
9463
|
readonly position: ColumnPositionInsert;
|
|
9456
9464
|
readonly relativeTo: string | null;
|
|
@@ -9459,18 +9467,18 @@ declare class ColumnPositionSpec {
|
|
|
9459
9467
|
constructor(position: ColumnPositionInsert, relativeTo: string | null);
|
|
9460
9468
|
}
|
|
9461
9469
|
declare class ElderColumnGroup {
|
|
9462
|
-
readonly
|
|
9470
|
+
readonly groupLayer: ElderTableGroupLayer;
|
|
9463
9471
|
readonly columnsPosition: ColumnPositionSpec;
|
|
9464
9472
|
readonly columns: ElderTableColumnDirective[];
|
|
9465
|
-
constructor(
|
|
9473
|
+
constructor(groupLayer: ElderTableGroupLayer, columnsPosition: ColumnPositionSpec, columns: ElderTableColumnDirective[]);
|
|
9466
9474
|
}
|
|
9467
9475
|
|
|
9468
9476
|
declare class ElderTableGroup {
|
|
9469
9477
|
readonly id: string;
|
|
9470
|
-
readonly
|
|
9471
|
-
static create(
|
|
9472
|
-
static of(id: string,
|
|
9473
|
-
constructor(id: string,
|
|
9478
|
+
readonly groupLayer: ElderTableGroupLayer;
|
|
9479
|
+
static create(groupLayer: ElderTableGroupLayer): ElderTableGroup;
|
|
9480
|
+
static of(id: string, groupLayer: ElderTableGroupLayer): ElderTableGroup;
|
|
9481
|
+
constructor(id: string, groupLayer: ElderTableGroupLayer);
|
|
9474
9482
|
}
|
|
9475
9483
|
declare class ElderTableModel<T = any> {
|
|
9476
9484
|
/***************************************************************************
|
|
@@ -9494,7 +9502,7 @@ declare class ElderTableModel<T = any> {
|
|
|
9494
9502
|
* end([])
|
|
9495
9503
|
* @private
|
|
9496
9504
|
*/
|
|
9497
|
-
private readonly
|
|
9505
|
+
private readonly manualColumns$;
|
|
9498
9506
|
readonly displayedColumnsInner$: Observable<string[]>;
|
|
9499
9507
|
/***************************************************************************
|
|
9500
9508
|
* *
|
|
@@ -9519,7 +9527,7 @@ declare class ElderTableModel<T = any> {
|
|
|
9519
9527
|
get columnDefs$(): Observable<CdkColumnDef[]>;
|
|
9520
9528
|
get rowDefs$(): Observable<CdkRowDef<T>[]>;
|
|
9521
9529
|
get sorts$(): Observable<MatSort[]>;
|
|
9522
|
-
private
|
|
9530
|
+
private valuesSortedByTableGroupLayer;
|
|
9523
9531
|
private sortAndFlatten;
|
|
9524
9532
|
/***************************************************************************
|
|
9525
9533
|
* *
|
|
@@ -9539,58 +9547,11 @@ declare class ElderTableModel<T = any> {
|
|
|
9539
9547
|
* Private methods *
|
|
9540
9548
|
* *
|
|
9541
9549
|
**************************************************************************/
|
|
9542
|
-
private
|
|
9550
|
+
private buildDisplayedColumns;
|
|
9543
9551
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableModel<any>, never>;
|
|
9544
9552
|
static ɵprov: i0.ɵɵInjectableDeclaration<ElderTableModel<any>>;
|
|
9545
9553
|
}
|
|
9546
9554
|
|
|
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
9555
|
/**
|
|
9595
9556
|
* The table navigation bar, typically located below the table,
|
|
9596
9557
|
* containing the pagination control and other table controls.
|
|
@@ -9605,7 +9566,6 @@ declare class ElderTableNavigationBarDirective {
|
|
|
9605
9566
|
}
|
|
9606
9567
|
declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T> implements OnInit, AfterContentInit, AfterViewInit {
|
|
9607
9568
|
readonly tableModel: ElderTableModel;
|
|
9608
|
-
private readonly parentExtension;
|
|
9609
9569
|
private zone;
|
|
9610
9570
|
/***************************************************************************
|
|
9611
9571
|
* *
|
|
@@ -9668,18 +9628,13 @@ declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9668
9628
|
* Gets the current rows of this table.
|
|
9669
9629
|
*/
|
|
9670
9630
|
readonly rows$: BehaviorSubject<ElderTableRowDirective<T>[]>;
|
|
9671
|
-
/**
|
|
9672
|
-
* The index of this table group extension
|
|
9673
|
-
* @private
|
|
9674
|
-
*/
|
|
9675
|
-
private readonly _extensionGroupIndex;
|
|
9676
9631
|
readonly displayedColumnsInner: Signal<string[] | undefined>;
|
|
9677
9632
|
/***************************************************************************
|
|
9678
9633
|
* *
|
|
9679
9634
|
* Constructor *
|
|
9680
9635
|
* *
|
|
9681
9636
|
**************************************************************************/
|
|
9682
|
-
constructor(tableModel: ElderTableModel, selectionModel: SelectionModel<T>, dataViewOptionsProvider: ElderDataViewOptionsProvider, matSort: MatSort,
|
|
9637
|
+
constructor(tableModel: ElderTableModel, selectionModel: SelectionModel<T>, dataViewOptionsProvider: ElderDataViewOptionsProvider, matSort: MatSort, zone: NgZone, interactionController: DataViewInteractionControllerDirective<T>);
|
|
9683
9638
|
/***************************************************************************
|
|
9684
9639
|
* *
|
|
9685
9640
|
* Life Cycle *
|
|
@@ -9716,7 +9671,7 @@ declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9716
9671
|
**************************************************************************/
|
|
9717
9672
|
private setupSelectionLifeCycle;
|
|
9718
9673
|
private getRowForItem;
|
|
9719
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableComponent<any>, [null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; },
|
|
9674
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableComponent<any>, [null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; }, null, null]>;
|
|
9720
9675
|
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
9676
|
}
|
|
9722
9677
|
|
|
@@ -9788,6 +9743,40 @@ declare class ElderTableActivationDirective<T> {
|
|
|
9788
9743
|
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
9744
|
}
|
|
9790
9745
|
|
|
9746
|
+
/**
|
|
9747
|
+
* Adds additonal columns into an ElderTable.
|
|
9748
|
+
*/
|
|
9749
|
+
declare class ElderProjectedColumnsDirective implements AfterContentInit, OnDestroy {
|
|
9750
|
+
private readonly tableModel;
|
|
9751
|
+
private readonly _matSort;
|
|
9752
|
+
/***************************************************************************
|
|
9753
|
+
* *
|
|
9754
|
+
* Fields *
|
|
9755
|
+
* *
|
|
9756
|
+
**************************************************************************/
|
|
9757
|
+
private readonly logger;
|
|
9758
|
+
columnDefsQuery: QueryList<CdkColumnDef>;
|
|
9759
|
+
elderColumnsQuery: QueryList<ElderTableColumnDirective>;
|
|
9760
|
+
rowDefsQuery: QueryList<CdkRowDef<any>>;
|
|
9761
|
+
columnsPosition: ColumnPositionSpec;
|
|
9762
|
+
private readonly destroy$;
|
|
9763
|
+
/***************************************************************************
|
|
9764
|
+
* *
|
|
9765
|
+
* Constructor *
|
|
9766
|
+
* *
|
|
9767
|
+
**************************************************************************/
|
|
9768
|
+
constructor(tableModel: ElderTableModel, _matSort: MatSort);
|
|
9769
|
+
/***************************************************************************
|
|
9770
|
+
* *
|
|
9771
|
+
* Life Cycle *
|
|
9772
|
+
* *
|
|
9773
|
+
**************************************************************************/
|
|
9774
|
+
ngAfterContentInit(): void;
|
|
9775
|
+
ngOnDestroy(): void;
|
|
9776
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderProjectedColumnsDirective, [null, { optional: true; }]>;
|
|
9777
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderProjectedColumnsDirective, "[elderProjectedColumns]", never, { "columnsPosition": { "alias": "columnsPosition"; "required": false; }; }, {}, ["columnDefsQuery", "elderColumnsQuery", "rowDefsQuery"], never, true, never>;
|
|
9778
|
+
}
|
|
9779
|
+
|
|
9791
9780
|
/**
|
|
9792
9781
|
* Forces a new Elder Table Model, thus breaking this component and its children from a potential parent elder-table.
|
|
9793
9782
|
* With this, nested elder-tables are possible.
|
|
@@ -9994,7 +9983,7 @@ declare class ElderTableModelQueryGroup {
|
|
|
9994
9983
|
* Static Builder *
|
|
9995
9984
|
* *
|
|
9996
9985
|
**************************************************************************/
|
|
9997
|
-
static start(tableModel: ElderTableModel,
|
|
9986
|
+
static start(tableModel: ElderTableModel, groupLayer: ElderTableGroupLayer): ElderTableModelQueryGroup;
|
|
9998
9987
|
/***************************************************************************
|
|
9999
9988
|
* *
|
|
10000
9989
|
* Constructor *
|
|
@@ -10025,7 +10014,7 @@ declare class ElderTableModelQueryGroup {
|
|
|
10025
10014
|
|
|
10026
10015
|
declare class ElderTableModule {
|
|
10027
10016
|
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
|
|
10017
|
+
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
10018
|
static ɵinj: i0.ɵɵInjectorDeclaration<ElderTableModule>;
|
|
10030
10019
|
}
|
|
10031
10020
|
|
|
@@ -13737,6 +13726,30 @@ declare class ElderServicesBootstrap {
|
|
|
13737
13726
|
static ɵprov: i0.ɵɵInjectableDeclaration<ElderServicesBootstrap>;
|
|
13738
13727
|
}
|
|
13739
13728
|
|
|
13729
|
+
declare class ElderScrollbarScopeDirective {
|
|
13730
|
+
/***************************************************************************
|
|
13731
|
+
* *
|
|
13732
|
+
* State *
|
|
13733
|
+
* *
|
|
13734
|
+
**************************************************************************/
|
|
13735
|
+
private readonly _wideScrollbarMode;
|
|
13736
|
+
/***************************************************************************
|
|
13737
|
+
* *
|
|
13738
|
+
* Template bindings *
|
|
13739
|
+
* *
|
|
13740
|
+
**************************************************************************/
|
|
13741
|
+
protected readonly wideScrollbarMode: i0.Signal<boolean>;
|
|
13742
|
+
/***************************************************************************
|
|
13743
|
+
* *
|
|
13744
|
+
* Public API *
|
|
13745
|
+
* *
|
|
13746
|
+
**************************************************************************/
|
|
13747
|
+
activateWideScrollbarMode(): void;
|
|
13748
|
+
deactivateWideScrollbarMode(): void;
|
|
13749
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderScrollbarScopeDirective, never>;
|
|
13750
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderScrollbarScopeDirective, "[elderScrollbarScope]", never, {}, {}, never, never, true, never>;
|
|
13751
|
+
}
|
|
13752
|
+
|
|
13740
13753
|
declare class ElderShellSideLeftDirective {
|
|
13741
13754
|
templateRef: TemplateRef<any>;
|
|
13742
13755
|
viewContainer: ViewContainerRef;
|
|
@@ -13829,7 +13842,7 @@ declare class ElderShellComponent implements OnInit {
|
|
|
13829
13842
|
**************************************************************************/
|
|
13830
13843
|
private isContained;
|
|
13831
13844
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderShellComponent, never>;
|
|
13832
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderShellComponent, "elder-shell", never, { "sideNavToggleEnabled": { "alias": "sideNavToggleEnabled"; "required": false; "isSignal": true; }; "leftSideAutoFocus": { "alias": "leftSideAutoFocus"; "required": false; "isSignal": true; }; "rightSideAutoFocus": { "alias": "rightSideAutoFocus"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "navMenuSvgIcon": { "alias": "navMenuSvgIcon"; "required": false; "isSignal": true; }; "menuColor": { "alias": "menuColor"; "required": false; "isSignal": true; }; "menuIconColor": { "alias": "menuIconColor"; "required": false; "isSignal": true; }; }, {}, ["sideContentLeft", "sideContentRight", "centerContent", "staticNavContent"], never, true,
|
|
13845
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderShellComponent, "elder-shell", never, { "sideNavToggleEnabled": { "alias": "sideNavToggleEnabled"; "required": false; "isSignal": true; }; "leftSideAutoFocus": { "alias": "leftSideAutoFocus"; "required": false; "isSignal": true; }; "rightSideAutoFocus": { "alias": "rightSideAutoFocus"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "navMenuSvgIcon": { "alias": "navMenuSvgIcon"; "required": false; "isSignal": true; }; "menuColor": { "alias": "menuColor"; "required": false; "isSignal": true; }; "menuIconColor": { "alias": "menuIconColor"; "required": false; "isSignal": true; }; }, {}, ["sideContentLeft", "sideContentRight", "centerContent", "staticNavContent"], never, true, [{ directive: typeof ElderScrollbarScopeDirective; inputs: {}; outputs: {}; }]>;
|
|
13833
13846
|
}
|
|
13834
13847
|
|
|
13835
13848
|
declare class ElderShellNavigationToggleComponent implements OnInit, OnDestroy {
|
|
@@ -15394,6 +15407,7 @@ declare class ElderInitialValueDirective {
|
|
|
15394
15407
|
declare class ElderSearchPanelComponent {
|
|
15395
15408
|
readonly overlay: i0.WritableSignal<ElderOverlayComponent>;
|
|
15396
15409
|
readonly open$: Observable<boolean>;
|
|
15410
|
+
readonly isOpen: Signal<boolean>;
|
|
15397
15411
|
constructor();
|
|
15398
15412
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderSearchPanelComponent, never>;
|
|
15399
15413
|
static ɵcmp: i0.ɵɵComponentDeclaration<ElderSearchPanelComponent, "elder-search-panel", never, {}, {}, never, ["*"], true, never>;
|
|
@@ -16207,48 +16221,22 @@ declare class ElderConnectivityModule {
|
|
|
16207
16221
|
}
|
|
16208
16222
|
|
|
16209
16223
|
/**
|
|
16210
|
-
*
|
|
16224
|
+
* Directive that activates wide scrollbar mode.
|
|
16225
|
+
* Typically the ScrollbarScope is the global scope on the elder-shell,
|
|
16226
|
+
* but alternatively an ElderWideScrollbarDirective can be used to activate
|
|
16227
|
+
* targeted wide scrollbar.
|
|
16211
16228
|
*/
|
|
16212
|
-
declare class
|
|
16213
|
-
|
|
16214
|
-
/***************************************************************************
|
|
16215
|
-
* *
|
|
16216
|
-
* Fields *
|
|
16217
|
-
* *
|
|
16218
|
-
**************************************************************************/
|
|
16219
|
-
private _size;
|
|
16220
|
-
/***************************************************************************
|
|
16221
|
-
* *
|
|
16222
|
-
* Constructor *
|
|
16223
|
-
* *
|
|
16224
|
-
**************************************************************************/
|
|
16225
|
-
constructor();
|
|
16226
|
-
/***************************************************************************
|
|
16227
|
-
* *
|
|
16228
|
-
* Properties *
|
|
16229
|
-
* *
|
|
16230
|
-
**************************************************************************/
|
|
16231
|
-
/**
|
|
16232
|
-
* Optional input to select a specific {@link ElderSize}
|
|
16233
|
-
* @return size with default value lg
|
|
16234
|
-
*/
|
|
16235
|
-
get size(): ElderSize;
|
|
16236
|
-
set size(value: ElderSize);
|
|
16229
|
+
declare class ElderWideScrollbarDirective implements OnInit, OnDestroy {
|
|
16230
|
+
private readonly scrollbarScope;
|
|
16237
16231
|
/***************************************************************************
|
|
16238
16232
|
* *
|
|
16239
|
-
*
|
|
16233
|
+
* Lifecycle methods *
|
|
16240
16234
|
* *
|
|
16241
16235
|
**************************************************************************/
|
|
16242
|
-
|
|
16243
|
-
|
|
16244
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
16245
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
16246
|
-
}
|
|
16247
|
-
|
|
16248
|
-
declare class ElderScrollbarModule {
|
|
16249
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderScrollbarModule, never>;
|
|
16250
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ElderScrollbarModule, never, [typeof ElderScrollbarDirective], [typeof ElderScrollbarDirective]>;
|
|
16251
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ElderScrollbarModule>;
|
|
16236
|
+
ngOnInit(): void;
|
|
16237
|
+
ngOnDestroy(): void;
|
|
16238
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderWideScrollbarDirective, never>;
|
|
16239
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderWideScrollbarDirective, "[elderWideScrollbar]", never, {}, {}, never, never, true, never>;
|
|
16252
16240
|
}
|
|
16253
16241
|
|
|
16254
16242
|
declare class FallbackValidationMessageStrategy implements IValidationMessageStrategy {
|
|
@@ -18418,5 +18406,5 @@ declare class KafentModule {
|
|
|
18418
18406
|
static ɵinj: i0.ɵɵInjectorDeclaration<KafentModule>;
|
|
18419
18407
|
}
|
|
18420
18408
|
|
|
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 };
|
|
18409
|
+
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, ElderScrollbarScopeDirective, 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, ElderWideScrollbarDirective, 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
18410
|
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 };
|