@elderbyte/ngx-starter 20.2.2 → 20.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { PipeTransform, OnDestroy, ChangeDetectorRef, NgZone, Provider, QueryList, OnInit, Renderer2, TemplateRef, ViewContainerRef, EventEmitter, ElementRef, DestroyRef, InjectionToken, Signal, AfterViewInit, OutputRef, AfterContentInit, TrackByFunction,
|
|
2
|
+
import { PipeTransform, OnDestroy, ChangeDetectorRef, NgZone, Provider, QueryList, OnInit, Renderer2, TemplateRef, ViewContainerRef, EventEmitter, ElementRef, DestroyRef, InjectionToken, Injector, Signal, AfterViewInit, OutputRef, AfterContentInit, TrackByFunction, ModuleWithProviders, EmbeddedViewRef } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import { Location } from '@angular/common';
|
|
5
5
|
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
@@ -52,7 +52,7 @@ import { CdkDragEnter, CdkDragExit, CdkDragDrop, CdkDrag, CdkDropList } from '@a
|
|
|
52
52
|
import * as i10 from '@angular/material/dialog';
|
|
53
53
|
import { MatDialogConfig, MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
54
54
|
import * as i5 from '@angular/material/checkbox';
|
|
55
|
-
import {
|
|
55
|
+
import { MatCheckboxChange, MatCheckbox } from '@angular/material/checkbox';
|
|
56
56
|
import * as i3$3 from '@angular/material/menu';
|
|
57
57
|
import { MatMenuTrigger } from '@angular/material/menu';
|
|
58
58
|
import * as i8 from '@angular/material/badge';
|
|
@@ -831,9 +831,9 @@ declare class DurationFormatUtil {
|
|
|
831
831
|
private static toPeriodDuration;
|
|
832
832
|
}
|
|
833
833
|
|
|
834
|
-
type
|
|
835
|
-
|
|
836
|
-
|
|
834
|
+
type PhoneNumber = {
|
|
835
|
+
number: string;
|
|
836
|
+
countryCode?: string;
|
|
837
837
|
};
|
|
838
838
|
type CountryPhoneFormat = {
|
|
839
839
|
country: string;
|
|
@@ -870,7 +870,7 @@ declare class CountryPhoneFormatService {
|
|
|
870
870
|
declare class PhonePipe implements PipeTransform {
|
|
871
871
|
private readonly countryPhoneFormats;
|
|
872
872
|
private readonly phoneFormat;
|
|
873
|
-
transform(
|
|
873
|
+
transform(phoneNumber: PhoneNumber): string;
|
|
874
874
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhonePipe, never>;
|
|
875
875
|
static ɵpipe: i0.ɵɵPipeDeclaration<PhonePipe, "phone", true>;
|
|
876
876
|
}
|
|
@@ -4205,6 +4205,24 @@ declare class ObjectPathResolver {
|
|
|
4205
4205
|
}
|
|
4206
4206
|
|
|
4207
4207
|
type KeyGetterFn<T> = (item: T) => any;
|
|
4208
|
+
declare enum SelectionEventSource {
|
|
4209
|
+
USER_MOUSE_CLICK = "USER_MOUSE_CLICK",
|
|
4210
|
+
USER_KEYBOARD = "USER_KEYBOARD",
|
|
4211
|
+
SYSTEM = "SYSTEM"
|
|
4212
|
+
}
|
|
4213
|
+
interface SelectionOptions {
|
|
4214
|
+
source: SelectionEventSource;
|
|
4215
|
+
info?: string;
|
|
4216
|
+
}
|
|
4217
|
+
declare class SelectionChangedEvent<TId, TEntity> {
|
|
4218
|
+
readonly after: TEntity[];
|
|
4219
|
+
readonly addedById: Map<TId, TEntity>;
|
|
4220
|
+
readonly removed: Set<TId>;
|
|
4221
|
+
readonly source: SelectionEventSource;
|
|
4222
|
+
readonly info?: string;
|
|
4223
|
+
constructor(after: TEntity[], addedById: Map<TId, TEntity>, removed: Set<TId>, source: SelectionEventSource, info?: string);
|
|
4224
|
+
get isUserSource(): boolean;
|
|
4225
|
+
}
|
|
4208
4226
|
/**
|
|
4209
4227
|
* Provides a model of a selection.
|
|
4210
4228
|
* Supports single and multi selection.
|
|
@@ -4218,9 +4236,11 @@ declare class SelectionModel<T> {
|
|
|
4218
4236
|
* *
|
|
4219
4237
|
**************************************************************************/
|
|
4220
4238
|
private readonly log;
|
|
4239
|
+
private readonly defaultOptions;
|
|
4221
4240
|
private _multiple;
|
|
4222
4241
|
private readonly _selectionMap;
|
|
4223
4242
|
private readonly _selection;
|
|
4243
|
+
private readonly _selectionChange;
|
|
4224
4244
|
private _keyGetterFn;
|
|
4225
4245
|
private _selectableEvaluatorFn;
|
|
4226
4246
|
static readonly FallbackKeyGetterFn: (a: any) => any;
|
|
@@ -4243,11 +4263,20 @@ declare class SelectionModel<T> {
|
|
|
4243
4263
|
* Properties *
|
|
4244
4264
|
* *
|
|
4245
4265
|
**************************************************************************/
|
|
4266
|
+
get selectionChange(): Observable<SelectionChangedEvent<any, T>>;
|
|
4246
4267
|
get changed(): Observable<T[]>;
|
|
4247
4268
|
get selection(): Observable<T[]>;
|
|
4248
4269
|
get selectionSnapshot(): T[];
|
|
4249
4270
|
set selectableEvaluatorFn(fn: (item: T) => boolean);
|
|
4250
4271
|
set keyGetterFn(fn: KeyGetterFn<T>);
|
|
4272
|
+
isSelected(value: T): boolean;
|
|
4273
|
+
observeSelection(value: T): Observable<boolean>;
|
|
4274
|
+
get count(): number;
|
|
4275
|
+
get isEmpty(): boolean;
|
|
4276
|
+
get hasValue(): boolean;
|
|
4277
|
+
get hasSingleValue(): boolean;
|
|
4278
|
+
get hasMultipleValues(): boolean;
|
|
4279
|
+
get isMultipleSelection(): boolean;
|
|
4251
4280
|
/***************************************************************************
|
|
4252
4281
|
* *
|
|
4253
4282
|
* Public API *
|
|
@@ -4258,27 +4287,25 @@ declare class SelectionModel<T> {
|
|
|
4258
4287
|
* If no function has been set (or function is null), all items are selectable by default.
|
|
4259
4288
|
*/
|
|
4260
4289
|
isSelectable(item: T): boolean;
|
|
4261
|
-
clear(): void;
|
|
4262
|
-
replaceSelection(newSelection: T[],
|
|
4263
|
-
select(values: T[],
|
|
4264
|
-
deselect(values: T[]): void;
|
|
4265
|
-
deselectIds(ids: any[]): void;
|
|
4266
|
-
toggle(value: T): void;
|
|
4267
|
-
isSelected(value: T): boolean;
|
|
4268
|
-
observeSelection(value: T): Observable<boolean>;
|
|
4269
|
-
get count(): number;
|
|
4270
|
-
get isEmpty(): boolean;
|
|
4271
|
-
get hasValue(): boolean;
|
|
4272
|
-
get hasSingleValue(): boolean;
|
|
4273
|
-
get hasMultipleValues(): boolean;
|
|
4274
|
-
get isMultipleSelection(): boolean;
|
|
4290
|
+
clear(options?: SelectionOptions): void;
|
|
4291
|
+
replaceSelection(newSelection: T[], options?: SelectionOptions | string): void;
|
|
4292
|
+
select(values: T[], options?: SelectionOptions | string): void;
|
|
4293
|
+
deselect(values: T[], options?: SelectionOptions): void;
|
|
4294
|
+
deselectIds(ids: any[], options?: SelectionOptions): void;
|
|
4295
|
+
toggle(value: T, options?: SelectionOptions): void;
|
|
4275
4296
|
set isMultipleSelection(multiple: boolean);
|
|
4276
4297
|
/***************************************************************************
|
|
4277
4298
|
* *
|
|
4278
4299
|
* Private methods *
|
|
4279
4300
|
* *
|
|
4280
4301
|
**************************************************************************/
|
|
4302
|
+
private buildChangeEvent;
|
|
4303
|
+
private deltaIds;
|
|
4304
|
+
private mapValues;
|
|
4305
|
+
private coerceOptions;
|
|
4281
4306
|
private selectionChanged;
|
|
4307
|
+
private snapshotInnerSelection;
|
|
4308
|
+
private isAlreadyExclusivelySelected;
|
|
4282
4309
|
private selectInternal;
|
|
4283
4310
|
private ensureSelectedMulti;
|
|
4284
4311
|
private isExclusiveSelected;
|
|
@@ -6922,8 +6949,118 @@ declare class ElderDataViewOptionsProvider {
|
|
|
6922
6949
|
updateOptions(optionsFn: (opt: ElderDataViewOptions) => ElderDataViewOptions): void;
|
|
6923
6950
|
}
|
|
6924
6951
|
|
|
6952
|
+
declare class ModifierKeyState {
|
|
6953
|
+
readonly shift: boolean;
|
|
6954
|
+
readonly ctrl: boolean;
|
|
6955
|
+
readonly alt: boolean;
|
|
6956
|
+
readonly meta: boolean;
|
|
6957
|
+
static pristine(): ModifierKeyState;
|
|
6958
|
+
constructor(shift: boolean, ctrl: boolean, alt: boolean, meta: boolean);
|
|
6959
|
+
equals(other: ModifierKeyState): boolean;
|
|
6960
|
+
}
|
|
6961
|
+
declare class ModifierKeyService implements OnDestroy {
|
|
6962
|
+
private ngZone;
|
|
6963
|
+
/***************************************************************************
|
|
6964
|
+
* *
|
|
6965
|
+
* Fields *
|
|
6966
|
+
* *
|
|
6967
|
+
**************************************************************************/
|
|
6968
|
+
private readonly modifierState$;
|
|
6969
|
+
/***************************************************************************
|
|
6970
|
+
* *
|
|
6971
|
+
* Constructor *
|
|
6972
|
+
* *
|
|
6973
|
+
**************************************************************************/
|
|
6974
|
+
constructor(ngZone: NgZone);
|
|
6975
|
+
/***************************************************************************
|
|
6976
|
+
* *
|
|
6977
|
+
* Life Cycle *
|
|
6978
|
+
* *
|
|
6979
|
+
**************************************************************************/
|
|
6980
|
+
ngOnDestroy(): void;
|
|
6981
|
+
/***************************************************************************
|
|
6982
|
+
* *
|
|
6983
|
+
* Properties *
|
|
6984
|
+
* *
|
|
6985
|
+
**************************************************************************/
|
|
6986
|
+
/**
|
|
6987
|
+
* Returns an observable of the current modifier key state
|
|
6988
|
+
*/
|
|
6989
|
+
get modifierChanges$(): Observable<ModifierKeyState>;
|
|
6990
|
+
/**
|
|
6991
|
+
* Returns the current state synchronously
|
|
6992
|
+
*/
|
|
6993
|
+
get current(): ModifierKeyState;
|
|
6994
|
+
/***************************************************************************
|
|
6995
|
+
* *
|
|
6996
|
+
* Private methods *
|
|
6997
|
+
* *
|
|
6998
|
+
**************************************************************************/
|
|
6999
|
+
private readonly handleInputEvent;
|
|
7000
|
+
private toKeyState;
|
|
7001
|
+
private readonly resetKeys;
|
|
7002
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModifierKeyService, never>;
|
|
7003
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ModifierKeyService>;
|
|
7004
|
+
}
|
|
7005
|
+
|
|
7006
|
+
declare class DataViewInteractionControllerDirective<T = any> implements OnInit {
|
|
7007
|
+
private readonly injector;
|
|
7008
|
+
private readonly destroyRef;
|
|
7009
|
+
private readonly modifierKeys;
|
|
7010
|
+
/***************************************************************************
|
|
7011
|
+
* *
|
|
7012
|
+
* Fields *
|
|
7013
|
+
* *
|
|
7014
|
+
**************************************************************************/
|
|
7015
|
+
private readonly log;
|
|
7016
|
+
private readonly _itemClickSubject;
|
|
7017
|
+
readonly selectionModel: i0.WritableSignal<SelectionModel<T>>;
|
|
7018
|
+
private selectionController;
|
|
7019
|
+
interactionMode: ElderDataViewInteractionMode;
|
|
7020
|
+
/***************************************************************************
|
|
7021
|
+
* *
|
|
7022
|
+
* Constructor *
|
|
7023
|
+
* *
|
|
7024
|
+
**************************************************************************/
|
|
7025
|
+
constructor(injector: Injector, destroyRef: DestroyRef, modifierKeys: ModifierKeyService);
|
|
7026
|
+
/***************************************************************************
|
|
7027
|
+
* *
|
|
7028
|
+
* Life Cycle *
|
|
7029
|
+
* *
|
|
7030
|
+
**************************************************************************/
|
|
7031
|
+
ngOnInit(): void;
|
|
7032
|
+
/***************************************************************************
|
|
7033
|
+
* *
|
|
7034
|
+
* Properties *
|
|
7035
|
+
* *
|
|
7036
|
+
**************************************************************************/
|
|
7037
|
+
/**
|
|
7038
|
+
* Observable that emits when an item is clicked
|
|
7039
|
+
*/
|
|
7040
|
+
get itemClick(): Observable<T>;
|
|
7041
|
+
/***************************************************************************
|
|
7042
|
+
* *
|
|
7043
|
+
* Public API *
|
|
7044
|
+
* *
|
|
7045
|
+
**************************************************************************/
|
|
7046
|
+
onItemClick(entity: T, event: MouseEvent | KeyboardEvent): void;
|
|
7047
|
+
onItemDoubleClick(entity: T): void;
|
|
7048
|
+
onItemSelectionToggle(entity: T): void;
|
|
7049
|
+
/***************************************************************************
|
|
7050
|
+
* *
|
|
7051
|
+
* Private methods *
|
|
7052
|
+
* *
|
|
7053
|
+
**************************************************************************/
|
|
7054
|
+
private handlePrimaryAction;
|
|
7055
|
+
private userToggleSelection;
|
|
7056
|
+
private handleSecondaryAction;
|
|
7057
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataViewInteractionControllerDirective<any>, never>;
|
|
7058
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DataViewInteractionControllerDirective<any>, never, never, {}, {}, never, never, true, never>;
|
|
7059
|
+
}
|
|
7060
|
+
|
|
6925
7061
|
declare abstract class ElderDataViewBaseComponent<T = any> implements IElderDataView, OnInit, OnDestroy {
|
|
6926
7062
|
protected readonly dataViewOptionsProvider: ElderDataViewOptionsProvider;
|
|
7063
|
+
protected readonly interactionController: DataViewInteractionControllerDirective<T>;
|
|
6927
7064
|
/***************************************************************************
|
|
6928
7065
|
* *
|
|
6929
7066
|
* Fields *
|
|
@@ -6937,7 +7074,7 @@ declare abstract class ElderDataViewBaseComponent<T = any> implements IElderData
|
|
|
6937
7074
|
* Holds the current selection
|
|
6938
7075
|
*/
|
|
6939
7076
|
readonly selectionModel: SelectionModel<any>;
|
|
6940
|
-
interactionMode: ElderDataViewInteractionMode;
|
|
7077
|
+
set interactionMode(mode: ElderDataViewInteractionMode);
|
|
6941
7078
|
/**
|
|
6942
7079
|
* Define if elder-table should clean up the
|
|
6943
7080
|
* data-context resources for you.
|
|
@@ -6947,7 +7084,7 @@ declare abstract class ElderDataViewBaseComponent<T = any> implements IElderData
|
|
|
6947
7084
|
*/
|
|
6948
7085
|
readonly cleanUp: i0.InputSignalWithTransform<boolean, _angular_cdk_coercion.BooleanInput>;
|
|
6949
7086
|
readonly dense: i0.InputSignalWithTransform<boolean, _angular_cdk_coercion.BooleanInput>;
|
|
6950
|
-
private readonly
|
|
7087
|
+
private readonly _itemClick;
|
|
6951
7088
|
private readonly EntityIdKeyFn;
|
|
6952
7089
|
protected readonly destroy$: Subject<void>;
|
|
6953
7090
|
readonly dc: Signal<IDataContext<T> | undefined>;
|
|
@@ -6964,7 +7101,7 @@ declare abstract class ElderDataViewBaseComponent<T = any> implements IElderData
|
|
|
6964
7101
|
* Constructor *
|
|
6965
7102
|
* *
|
|
6966
7103
|
**************************************************************************/
|
|
6967
|
-
constructor(selectionModel: SelectionModel<any>, dataViewOptionsProvider: ElderDataViewOptionsProvider);
|
|
7104
|
+
constructor(selectionModel: SelectionModel<any>, dataViewOptionsProvider: ElderDataViewOptionsProvider, interactionController: DataViewInteractionControllerDirective<T>);
|
|
6968
7105
|
/***************************************************************************
|
|
6969
7106
|
* *
|
|
6970
7107
|
* Life Cycle *
|
|
@@ -7013,7 +7150,7 @@ declare abstract class ElderDataViewBaseComponent<T = any> implements IElderData
|
|
|
7013
7150
|
* @protected
|
|
7014
7151
|
*/
|
|
7015
7152
|
protected onDataContextSet(data: IDataContext<T>): void;
|
|
7016
|
-
onItemClick(entity: T): void;
|
|
7153
|
+
onItemClick(entity: T, event: MouseEvent | KeyboardEvent): void;
|
|
7017
7154
|
onItemDoubleClick(entity: T): void;
|
|
7018
7155
|
getId(entity: T): any;
|
|
7019
7156
|
abstract hasItemFocus(item: T): boolean;
|
|
@@ -7067,6 +7204,140 @@ declare class DataViewOptionsProviderBinding {
|
|
|
7067
7204
|
applyOptions(options: ElderDataViewOptions): void;
|
|
7068
7205
|
}
|
|
7069
7206
|
|
|
7207
|
+
declare enum ActivationEventSource {
|
|
7208
|
+
USER_MOUSE_CLICK = "USER_MOUSE_CLICK",
|
|
7209
|
+
USER_KEYBOARD = "USER_KEYBOARD",
|
|
7210
|
+
SYSTEM = "SYSTEM"
|
|
7211
|
+
}
|
|
7212
|
+
|
|
7213
|
+
declare class ItemActivationEvent<T> {
|
|
7214
|
+
readonly item: T;
|
|
7215
|
+
readonly source: ActivationEventSource;
|
|
7216
|
+
readonly focus: boolean;
|
|
7217
|
+
constructor(item: T, source: ActivationEventSource, focus: boolean);
|
|
7218
|
+
}
|
|
7219
|
+
|
|
7220
|
+
declare class ItemActivationOptions {
|
|
7221
|
+
readonly source: ActivationEventSource;
|
|
7222
|
+
readonly focus: boolean;
|
|
7223
|
+
constructor(source: ActivationEventSource, focus: boolean);
|
|
7224
|
+
}
|
|
7225
|
+
|
|
7226
|
+
declare class ActivationModel<T = any> {
|
|
7227
|
+
private readonly dataView;
|
|
7228
|
+
/***************************************************************************
|
|
7229
|
+
* *
|
|
7230
|
+
* Fields *
|
|
7231
|
+
* *
|
|
7232
|
+
**************************************************************************/
|
|
7233
|
+
private readonly log;
|
|
7234
|
+
private readonly itemActivationEventSubject;
|
|
7235
|
+
private readonly _activeItem$;
|
|
7236
|
+
private dataSource$;
|
|
7237
|
+
/***************************************************************************
|
|
7238
|
+
* *
|
|
7239
|
+
* Constructor *
|
|
7240
|
+
* *
|
|
7241
|
+
**************************************************************************/
|
|
7242
|
+
constructor(dataView: IElderDataView);
|
|
7243
|
+
/***************************************************************************
|
|
7244
|
+
* *
|
|
7245
|
+
* Properties *
|
|
7246
|
+
* *
|
|
7247
|
+
**************************************************************************/
|
|
7248
|
+
get itemActivationEvents(): Observable<ItemActivationEvent<T>>;
|
|
7249
|
+
get activeItem$(): Observable<T>;
|
|
7250
|
+
get activeItem(): T;
|
|
7251
|
+
/***************************************************************************
|
|
7252
|
+
* *
|
|
7253
|
+
* Public API *
|
|
7254
|
+
* *
|
|
7255
|
+
**************************************************************************/
|
|
7256
|
+
activate(item: T, options: ItemActivationOptions): void;
|
|
7257
|
+
isItemActive(item: T): boolean;
|
|
7258
|
+
hasItemFocus(item: T): boolean;
|
|
7259
|
+
/***************************************************************************
|
|
7260
|
+
* *
|
|
7261
|
+
* Private methods *
|
|
7262
|
+
* *
|
|
7263
|
+
**************************************************************************/
|
|
7264
|
+
private updateActiveItem;
|
|
7265
|
+
private itemEquals;
|
|
7266
|
+
private getId;
|
|
7267
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivationModel<any>, never>;
|
|
7268
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ActivationModel<any>>;
|
|
7269
|
+
}
|
|
7270
|
+
|
|
7271
|
+
declare class DataSelectionController<TEntity = any, TId = any> {
|
|
7272
|
+
private readonly activationModel;
|
|
7273
|
+
private readonly modifierKeys;
|
|
7274
|
+
/***************************************************************************
|
|
7275
|
+
* *
|
|
7276
|
+
* Fields *
|
|
7277
|
+
* *
|
|
7278
|
+
**************************************************************************/
|
|
7279
|
+
private readonly log;
|
|
7280
|
+
private readonly selectionModel;
|
|
7281
|
+
private dataContextRange;
|
|
7282
|
+
private anchor;
|
|
7283
|
+
/***************************************************************************
|
|
7284
|
+
* *
|
|
7285
|
+
* Constructor *
|
|
7286
|
+
* *
|
|
7287
|
+
**************************************************************************/
|
|
7288
|
+
constructor(dataView: IElderDataView<TEntity>, activationModel: ActivationModel<TEntity> | undefined, modifierKeys: ModifierKeyService, destroyRef: DestroyRef);
|
|
7289
|
+
/***************************************************************************
|
|
7290
|
+
* *
|
|
7291
|
+
* Public API *
|
|
7292
|
+
* *
|
|
7293
|
+
**************************************************************************/
|
|
7294
|
+
userToggleSelection(entity: TEntity): void;
|
|
7295
|
+
/***************************************************************************
|
|
7296
|
+
* *
|
|
7297
|
+
* Private methods *
|
|
7298
|
+
* *
|
|
7299
|
+
**************************************************************************/
|
|
7300
|
+
private onItemActivated;
|
|
7301
|
+
private anchorIfNecessary;
|
|
7302
|
+
private onItemActivatedByKeyboard;
|
|
7303
|
+
private handleRangeSelection;
|
|
7304
|
+
private handleSingleSelection;
|
|
7305
|
+
private selectItemsInRage;
|
|
7306
|
+
private anchorItem;
|
|
7307
|
+
}
|
|
7308
|
+
|
|
7309
|
+
declare class DataContextRange<TEntity, TId> {
|
|
7310
|
+
private readonly dc;
|
|
7311
|
+
/***************************************************************************
|
|
7312
|
+
* *
|
|
7313
|
+
* Fields *
|
|
7314
|
+
* *
|
|
7315
|
+
**************************************************************************/
|
|
7316
|
+
private readonly idExtractor;
|
|
7317
|
+
/***************************************************************************
|
|
7318
|
+
* *
|
|
7319
|
+
* Constructor *
|
|
7320
|
+
* *
|
|
7321
|
+
**************************************************************************/
|
|
7322
|
+
constructor(dc: IDataContext<TEntity>);
|
|
7323
|
+
/***************************************************************************
|
|
7324
|
+
* *
|
|
7325
|
+
* Public API *
|
|
7326
|
+
* *
|
|
7327
|
+
**************************************************************************/
|
|
7328
|
+
itemsByRange(start: TEntity, end: TEntity): TEntity[];
|
|
7329
|
+
/***************************************************************************
|
|
7330
|
+
* *
|
|
7331
|
+
* Private methods *
|
|
7332
|
+
* *
|
|
7333
|
+
**************************************************************************/
|
|
7334
|
+
private itemsByIdRange;
|
|
7335
|
+
private itemsByIndexRange;
|
|
7336
|
+
private itemIndexById;
|
|
7337
|
+
private getId;
|
|
7338
|
+
private get items();
|
|
7339
|
+
}
|
|
7340
|
+
|
|
7070
7341
|
declare class ElderSingleSortComponent implements OnInit {
|
|
7071
7342
|
/***************************************************************************
|
|
7072
7343
|
* *
|
|
@@ -7536,15 +7807,13 @@ declare class DataContextSelectionDirective {
|
|
|
7536
7807
|
get selectionModel$(): Observable<SelectionModel<any>>;
|
|
7537
7808
|
get selectionModel(): SelectionModel<any>;
|
|
7538
7809
|
set dataContext(dataContext: IDataContext<any>);
|
|
7539
|
-
/** Whether the number of selected elements matches the totalSnapshot number of selectable rows. */
|
|
7540
|
-
get isAllSelectedSnapshot(): boolean;
|
|
7541
7810
|
/***************************************************************************
|
|
7542
7811
|
* *
|
|
7543
7812
|
* Public API *
|
|
7544
7813
|
* *
|
|
7545
7814
|
**************************************************************************/
|
|
7546
7815
|
/** Selects all rows if they are not all selected; otherwise clear selection. */
|
|
7547
|
-
masterToggle(): void;
|
|
7816
|
+
masterToggle(source?: SelectionEventSource): void;
|
|
7548
7817
|
/***************************************************************************
|
|
7549
7818
|
* *
|
|
7550
7819
|
* Host Listeners *
|
|
@@ -7557,6 +7826,8 @@ declare class DataContextSelectionDirective {
|
|
|
7557
7826
|
* Private methods *
|
|
7558
7827
|
* *
|
|
7559
7828
|
**************************************************************************/
|
|
7829
|
+
/** Whether the number of selected elements matches the totalSnapshot number of selectable rows. */
|
|
7830
|
+
private get isAllSelectedSnapshot();
|
|
7560
7831
|
private buildSelectionState$;
|
|
7561
7832
|
private buildSelectionStateInner$;
|
|
7562
7833
|
/**
|
|
@@ -7583,6 +7854,7 @@ declare class ElderSelectionMasterCheckboxComponent {
|
|
|
7583
7854
|
* *
|
|
7584
7855
|
**************************************************************************/
|
|
7585
7856
|
constructor(dataContextSelection: DataContextSelectionDirective);
|
|
7857
|
+
onCheckboxChange(event: MatCheckboxChange): void;
|
|
7586
7858
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderSelectionMasterCheckboxComponent, never>;
|
|
7587
7859
|
static ɵcmp: i0.ɵɵComponentDeclaration<ElderSelectionMasterCheckboxComponent, "elder-selection-master-checkbox", never, {}, {}, never, never, true, never>;
|
|
7588
7860
|
}
|
|
@@ -7616,70 +7888,6 @@ declare class DataContextStateIndicatorComponent implements OnInit {
|
|
|
7616
7888
|
static ɵcmp: i0.ɵɵComponentDeclaration<DataContextStateIndicatorComponent, "elder-data-context-state-indicator", never, { "dataContext": { "alias": "dataContext"; "required": false; }; }, {}, never, never, true, never>;
|
|
7617
7889
|
}
|
|
7618
7890
|
|
|
7619
|
-
declare enum ActivationEventSource {
|
|
7620
|
-
USER_MOUSE_CLICK = "USER_MOUSE_CLICK",
|
|
7621
|
-
USER_KEYBOARD = "USER_KEYBOARD",
|
|
7622
|
-
SYSTEM = "SYSTEM"
|
|
7623
|
-
}
|
|
7624
|
-
|
|
7625
|
-
declare class ItemActivationEvent<T> {
|
|
7626
|
-
readonly item: T;
|
|
7627
|
-
readonly source: ActivationEventSource;
|
|
7628
|
-
readonly focus: boolean;
|
|
7629
|
-
constructor(item: T, source: ActivationEventSource, focus: boolean);
|
|
7630
|
-
}
|
|
7631
|
-
|
|
7632
|
-
declare class ItemActivationOptions {
|
|
7633
|
-
readonly source: ActivationEventSource;
|
|
7634
|
-
readonly focus: boolean;
|
|
7635
|
-
constructor(source: ActivationEventSource, focus: boolean);
|
|
7636
|
-
}
|
|
7637
|
-
|
|
7638
|
-
declare class ActivationModel<T = any> {
|
|
7639
|
-
private readonly dataView;
|
|
7640
|
-
/***************************************************************************
|
|
7641
|
-
* *
|
|
7642
|
-
* Fields *
|
|
7643
|
-
* *
|
|
7644
|
-
**************************************************************************/
|
|
7645
|
-
private readonly log;
|
|
7646
|
-
private readonly itemActivationEventSubject;
|
|
7647
|
-
private readonly _activeItem$;
|
|
7648
|
-
private dataSource$;
|
|
7649
|
-
/***************************************************************************
|
|
7650
|
-
* *
|
|
7651
|
-
* Constructor *
|
|
7652
|
-
* *
|
|
7653
|
-
**************************************************************************/
|
|
7654
|
-
constructor(dataView: IElderDataView);
|
|
7655
|
-
/***************************************************************************
|
|
7656
|
-
* *
|
|
7657
|
-
* Properties *
|
|
7658
|
-
* *
|
|
7659
|
-
**************************************************************************/
|
|
7660
|
-
get itemActivationEvents(): Observable<ItemActivationEvent<T>>;
|
|
7661
|
-
get activeItem$(): Observable<T>;
|
|
7662
|
-
get activeItem(): T;
|
|
7663
|
-
/***************************************************************************
|
|
7664
|
-
* *
|
|
7665
|
-
* Public API *
|
|
7666
|
-
* *
|
|
7667
|
-
**************************************************************************/
|
|
7668
|
-
activate(item: T, options: ItemActivationOptions): void;
|
|
7669
|
-
isItemActive(item: T): boolean;
|
|
7670
|
-
hasItemFocus(item: T): boolean;
|
|
7671
|
-
/***************************************************************************
|
|
7672
|
-
* *
|
|
7673
|
-
* Private methods *
|
|
7674
|
-
* *
|
|
7675
|
-
**************************************************************************/
|
|
7676
|
-
private updateActiveItem;
|
|
7677
|
-
private itemEquals;
|
|
7678
|
-
private getId;
|
|
7679
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ActivationModel<any>, never>;
|
|
7680
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ActivationModel<any>>;
|
|
7681
|
-
}
|
|
7682
|
-
|
|
7683
7891
|
type ElderAutoActivationMode = 'never' | 'once' | 'always';
|
|
7684
7892
|
type ElderAutoActivateItem = 'first' | 'last';
|
|
7685
7893
|
interface ElderActivationOptions {
|
|
@@ -7778,6 +7986,43 @@ declare class DataViewActivationController<T> {
|
|
|
7778
7986
|
static ɵprov: i0.ɵɵInjectableDeclaration<DataViewActivationController<any>>;
|
|
7779
7987
|
}
|
|
7780
7988
|
|
|
7989
|
+
declare class ElderDataActivationDirective<T = any> {
|
|
7990
|
+
private readonly interactionController;
|
|
7991
|
+
private readonly destroyRef;
|
|
7992
|
+
private readonly activationModel;
|
|
7993
|
+
readonly controller: DataViewActivationController<T>;
|
|
7994
|
+
/***************************************************************************
|
|
7995
|
+
* *
|
|
7996
|
+
* Constructor *
|
|
7997
|
+
* *
|
|
7998
|
+
**************************************************************************/
|
|
7999
|
+
constructor(interactionController: DataViewInteractionControllerDirective, destroyRef: DestroyRef, activationModel: ActivationModel<T>, controller: DataViewActivationController<T>);
|
|
8000
|
+
/***************************************************************************
|
|
8001
|
+
* *.
|
|
8002
|
+
* Host Listeners *
|
|
8003
|
+
* *
|
|
8004
|
+
**************************************************************************/
|
|
8005
|
+
onKeydown(event: KeyboardEvent): void;
|
|
8006
|
+
/***************************************************************************
|
|
8007
|
+
* *
|
|
8008
|
+
* Properties *
|
|
8009
|
+
* *
|
|
8010
|
+
**************************************************************************/
|
|
8011
|
+
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
8012
|
+
get activeItemEventChange(): Observable<ItemActivationEvent<T>>;
|
|
8013
|
+
get activeItemChange(): Observable<T>;
|
|
8014
|
+
get activeItem(): T;
|
|
8015
|
+
set activeItem(item: T);
|
|
8016
|
+
/***************************************************************************
|
|
8017
|
+
* *
|
|
8018
|
+
* Public API *
|
|
8019
|
+
* *
|
|
8020
|
+
**************************************************************************/
|
|
8021
|
+
activate(item: T, options: ItemActivationOptions): void;
|
|
8022
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderDataActivationDirective<any>, never>;
|
|
8023
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderDataActivationDirective<any>, "elder-table,elder-grid[activation]", ["elderDataActivation"], { "activationOptions": { "alias": "activation"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; }, { "activeItemEventChange": "activeItemEventChange"; "activeItemChange": "activeItemChange"; }, never, never, true, never>;
|
|
8024
|
+
}
|
|
8025
|
+
|
|
7781
8026
|
declare class DataViewDragEnteredEvent<T> {
|
|
7782
8027
|
/** Data context into which the user has moved the item. */
|
|
7783
8028
|
readonly context: IDataContext<T>;
|
|
@@ -8966,6 +9211,10 @@ declare class CommonValidationMessageStrategy implements IValidationMessageStrat
|
|
|
8966
9211
|
static ɵprov: i0.ɵɵInjectableDeclaration<CommonValidationMessageStrategy>;
|
|
8967
9212
|
}
|
|
8968
9213
|
|
|
9214
|
+
interface IDynamicValidationMessage {
|
|
9215
|
+
message: string;
|
|
9216
|
+
messageParams?: Object;
|
|
9217
|
+
}
|
|
8969
9218
|
declare class DynamicValidationMessageStrategy implements IValidationMessageStrategy {
|
|
8970
9219
|
private readonly translateService;
|
|
8971
9220
|
/***************************************************************************
|
|
@@ -9378,7 +9627,7 @@ declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9378
9627
|
* Constructor *
|
|
9379
9628
|
* *
|
|
9380
9629
|
**************************************************************************/
|
|
9381
|
-
constructor(tableModel: ElderTableModel, selectionModel: SelectionModel<T>, dataViewOptionsProvider: ElderDataViewOptionsProvider, matSort: MatSort, parentExtension: ElderTableExtensionDirective, zone: NgZone);
|
|
9630
|
+
constructor(tableModel: ElderTableModel, selectionModel: SelectionModel<T>, dataViewOptionsProvider: ElderDataViewOptionsProvider, matSort: MatSort, parentExtension: ElderTableExtensionDirective, zone: NgZone, interactionController: DataViewInteractionControllerDirective<T>);
|
|
9382
9631
|
/***************************************************************************
|
|
9383
9632
|
* *
|
|
9384
9633
|
* Life Cycle *
|
|
@@ -9415,8 +9664,8 @@ declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9415
9664
|
**************************************************************************/
|
|
9416
9665
|
private setupSelectionLifeCycle;
|
|
9417
9666
|
private getRowForItem;
|
|
9418
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableComponent<any>, [null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; }, { optional: true; skipSelf: true; }, null]>;
|
|
9419
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderTableComponent<any>, "elder-table", ["elderTable"], { "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "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,
|
|
9667
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableComponent<any>, [null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; }, { optional: true; skipSelf: true; }, null, null]>;
|
|
9668
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderTableComponent<any>, "elder-table", ["elderTable"], { "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "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: {}; }]>;
|
|
9420
9669
|
}
|
|
9421
9670
|
|
|
9422
9671
|
/**
|
|
@@ -9465,34 +9714,14 @@ declare class ElderNumberCellDirective {
|
|
|
9465
9714
|
}
|
|
9466
9715
|
|
|
9467
9716
|
declare class ElderTableActivationDirective<T> {
|
|
9468
|
-
private readonly
|
|
9469
|
-
|
|
9470
|
-
|
|
9471
|
-
readonly controller: DataViewActivationController<T>;
|
|
9472
|
-
/***************************************************************************
|
|
9473
|
-
* *
|
|
9474
|
-
* Fields *
|
|
9475
|
-
* *
|
|
9476
|
-
**************************************************************************/
|
|
9477
|
-
private readonly logger;
|
|
9478
|
-
/***************************************************************************
|
|
9479
|
-
* *
|
|
9480
|
-
* Constructor *
|
|
9481
|
-
* *
|
|
9482
|
-
**************************************************************************/
|
|
9483
|
-
constructor(elderTable: ElderTableComponent, destroyRef: DestroyRef, activationModel: ActivationModel<T>, controller: DataViewActivationController<T>);
|
|
9484
|
-
/***************************************************************************
|
|
9485
|
-
* *.
|
|
9486
|
-
* Host Listeners *
|
|
9487
|
-
* *
|
|
9488
|
-
**************************************************************************/
|
|
9489
|
-
onKeydown(event: KeyboardEvent): void;
|
|
9717
|
+
private readonly activation;
|
|
9718
|
+
constructor(activation: ElderDataActivationDirective);
|
|
9719
|
+
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
9490
9720
|
/***************************************************************************
|
|
9491
9721
|
* *
|
|
9492
9722
|
* Properties *
|
|
9493
9723
|
* *
|
|
9494
9724
|
**************************************************************************/
|
|
9495
|
-
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
9496
9725
|
get activeItemEventChange(): Observable<ItemActivationEvent<T>>;
|
|
9497
9726
|
get activeItemChange(): Observable<T>;
|
|
9498
9727
|
get activeItem(): T;
|
|
@@ -9503,9 +9732,8 @@ declare class ElderTableActivationDirective<T> {
|
|
|
9503
9732
|
* *
|
|
9504
9733
|
**************************************************************************/
|
|
9505
9734
|
activate(item: T, options: ItemActivationOptions): void;
|
|
9506
|
-
activateAndFocus(item: T): void;
|
|
9507
9735
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableActivationDirective<any>, never>;
|
|
9508
|
-
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,
|
|
9736
|
+
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: {}; }]>;
|
|
9509
9737
|
}
|
|
9510
9738
|
|
|
9511
9739
|
/**
|
|
@@ -9604,7 +9832,7 @@ declare class ElderTableDropListConnectorDirective<T> {
|
|
|
9604
9832
|
}
|
|
9605
9833
|
|
|
9606
9834
|
declare class ElderTableSelectionCellComponent<T = any> {
|
|
9607
|
-
readonly
|
|
9835
|
+
private readonly interactionController;
|
|
9608
9836
|
/***************************************************************************
|
|
9609
9837
|
* *
|
|
9610
9838
|
* Fields *
|
|
@@ -9619,7 +9847,7 @@ declare class ElderTableSelectionCellComponent<T = any> {
|
|
|
9619
9847
|
* Constructor *
|
|
9620
9848
|
* *
|
|
9621
9849
|
**************************************************************************/
|
|
9622
|
-
constructor(
|
|
9850
|
+
constructor(interactionController: DataViewInteractionControllerDirective<T>);
|
|
9623
9851
|
/***************************************************************************
|
|
9624
9852
|
* *
|
|
9625
9853
|
* Public API *
|
|
@@ -9763,6 +9991,7 @@ declare class ElderSimpleSelectionViewModule {
|
|
|
9763
9991
|
}
|
|
9764
9992
|
|
|
9765
9993
|
declare class ElderTileComponent<T = any> {
|
|
9994
|
+
private readonly interactionController;
|
|
9766
9995
|
private readonly activationModel;
|
|
9767
9996
|
/***************************************************************************
|
|
9768
9997
|
* *
|
|
@@ -9771,7 +10000,7 @@ declare class ElderTileComponent<T = any> {
|
|
|
9771
10000
|
**************************************************************************/
|
|
9772
10001
|
readonly value: i0.InputSignal<T>;
|
|
9773
10002
|
readonly selectionEnabled: i0.InputSignalWithTransform<boolean, BooleanInput>;
|
|
9774
|
-
readonly selectionModel:
|
|
10003
|
+
readonly selectionModel: Signal<SelectionModel<T>>;
|
|
9775
10004
|
readonly selection: Signal<T[]>;
|
|
9776
10005
|
readonly interactionMode: i0.InputSignal<ElderDataViewInteractionMode>;
|
|
9777
10006
|
readonly outlined: i0.InputSignalWithTransform<boolean, BooleanInput>;
|
|
@@ -9785,7 +10014,7 @@ declare class ElderTileComponent<T = any> {
|
|
|
9785
10014
|
* Constructor *
|
|
9786
10015
|
* *
|
|
9787
10016
|
**************************************************************************/
|
|
9788
|
-
constructor(activationModel: ActivationModel);
|
|
10017
|
+
constructor(interactionController: DataViewInteractionControllerDirective<T>, activationModel: ActivationModel);
|
|
9789
10018
|
private handleActivationEvent;
|
|
9790
10019
|
private isItemActive;
|
|
9791
10020
|
private updateTileActivation;
|
|
@@ -9807,8 +10036,9 @@ declare class ElderTileComponent<T = any> {
|
|
|
9807
10036
|
inSelectionMode(currentSelection: any[]): boolean;
|
|
9808
10037
|
bringToView(): void;
|
|
9809
10038
|
focus(): void;
|
|
9810
|
-
|
|
9811
|
-
static
|
|
10039
|
+
onSelectButtonClick(event: MouseEvent): void;
|
|
10040
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTileComponent<any>, [null, { optional: true; }]>;
|
|
10041
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderTileComponent<any>, "elder-tile", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "selectionEnabled": { "alias": "selectionEnabled"; "required": false; "isSignal": true; }; "interactionMode": { "alias": "interactionMode"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
9812
10042
|
}
|
|
9813
10043
|
|
|
9814
10044
|
declare class GridRow<T> {
|
|
@@ -9918,7 +10148,7 @@ declare class ElderGridComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9918
10148
|
* Constructor *
|
|
9919
10149
|
* *
|
|
9920
10150
|
**************************************************************************/
|
|
9921
|
-
constructor(selectionModel: SelectionModel<any>, dataViewOptionsProvider: ElderDataViewOptionsProvider);
|
|
10151
|
+
constructor(selectionModel: SelectionModel<any>, dataViewOptionsProvider: ElderDataViewOptionsProvider, interactionController: DataViewInteractionControllerDirective<T>);
|
|
9922
10152
|
/***************************************************************************
|
|
9923
10153
|
* *
|
|
9924
10154
|
* Lifecycle *
|
|
@@ -9957,33 +10187,19 @@ declare class ElderGridComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9957
10187
|
private responsiveColumn;
|
|
9958
10188
|
private calcColumnCount;
|
|
9959
10189
|
private getTileForItem;
|
|
9960
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderGridComponent<any>, [{ optional: true; }, { optional: true; skipSelf: true; }]>;
|
|
9961
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderGridComponent<any>, "elder-grid", never, { "toolbarVisible": { "alias": "toolbarVisible"; "required": false; "isSignal": true; }; "footerVisible": { "alias": "footerVisible"; "required": false; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "itemWidth": { "alias": "itemWidth"; "required": false; "isSignal": true; }; "tileOutlined": { "alias": "tileOutlined"; "required": false; "isSignal": true; }; "responsiveColumnCount": { "alias": "responsiveColumnCount"; "required": false; "isSignal": true; }; "availableSorts": { "alias": "availableSorts"; "required": false; }; "sortTranslationPrefix": { "alias": "sortTranslationPrefix"; "required": false; }; "hiddenField": { "alias": "hiddenField"; "required": false; }; "selectionVisible": { "alias": "selectionVisible"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "tileTemplate": { "alias": "tileTemplate"; "required": false; }; "toolbarTemplate": { "alias": "toolbarTemplate"; "required": false; }; "data": { "alias": "data"; "required": false; }; "columnCount": { "alias": "columnCount"; "required": false; }; }, {}, ["tileTemplateQuery", "toolbarTemplateQuery"], never, true,
|
|
10190
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderGridComponent<any>, [{ optional: true; }, { optional: true; skipSelf: true; }, null]>;
|
|
10191
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderGridComponent<any>, "elder-grid", never, { "toolbarVisible": { "alias": "toolbarVisible"; "required": false; "isSignal": true; }; "footerVisible": { "alias": "footerVisible"; "required": false; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "itemWidth": { "alias": "itemWidth"; "required": false; "isSignal": true; }; "tileOutlined": { "alias": "tileOutlined"; "required": false; "isSignal": true; }; "responsiveColumnCount": { "alias": "responsiveColumnCount"; "required": false; "isSignal": true; }; "availableSorts": { "alias": "availableSorts"; "required": false; }; "sortTranslationPrefix": { "alias": "sortTranslationPrefix"; "required": false; }; "hiddenField": { "alias": "hiddenField"; "required": false; }; "selectionVisible": { "alias": "selectionVisible"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "tileTemplate": { "alias": "tileTemplate"; "required": false; }; "toolbarTemplate": { "alias": "toolbarTemplate"; "required": false; }; "data": { "alias": "data"; "required": false; }; "columnCount": { "alias": "columnCount"; "required": false; }; }, {}, ["tileTemplateQuery", "toolbarTemplateQuery"], never, true, [{ directive: typeof DataViewInteractionControllerDirective; inputs: {}; outputs: {}; }]>;
|
|
9962
10192
|
}
|
|
9963
10193
|
|
|
9964
10194
|
declare class ElderGridActivationDirective<T = any> {
|
|
9965
|
-
private readonly
|
|
9966
|
-
|
|
9967
|
-
|
|
9968
|
-
readonly controller: DataViewActivationController<T>;
|
|
9969
|
-
/***************************************************************************
|
|
9970
|
-
* *
|
|
9971
|
-
* Constructor *
|
|
9972
|
-
* *
|
|
9973
|
-
**************************************************************************/
|
|
9974
|
-
constructor(elderGrid: ElderGridComponent, destroyRef: DestroyRef, activationModel: ActivationModel<T>, controller: DataViewActivationController<T>);
|
|
9975
|
-
/***************************************************************************
|
|
9976
|
-
* *.
|
|
9977
|
-
* Host Listeners *
|
|
9978
|
-
* *
|
|
9979
|
-
**************************************************************************/
|
|
9980
|
-
onKeydown(event: KeyboardEvent): void;
|
|
10195
|
+
private readonly activation;
|
|
10196
|
+
constructor(activation: ElderDataActivationDirective);
|
|
10197
|
+
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
9981
10198
|
/***************************************************************************
|
|
9982
10199
|
* *
|
|
9983
10200
|
* Properties *
|
|
9984
10201
|
* *
|
|
9985
10202
|
**************************************************************************/
|
|
9986
|
-
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
9987
10203
|
get activeItemEventChange(): Observable<ItemActivationEvent<T>>;
|
|
9988
10204
|
get activeItemChange(): Observable<T>;
|
|
9989
10205
|
get activeItem(): T;
|
|
@@ -9995,7 +10211,7 @@ declare class ElderGridActivationDirective<T = any> {
|
|
|
9995
10211
|
**************************************************************************/
|
|
9996
10212
|
activate(item: T, options: ItemActivationOptions): void;
|
|
9997
10213
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderGridActivationDirective<any>, never>;
|
|
9998
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderGridActivationDirective<any>, "elder-grid[elderGridActivation]", ["elderGridActivation"], { "activationOptions": { "alias": "elderGridActivation"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; }, { "activeItemEventChange": "activeItemEventChange"; "activeItemChange": "activeItemChange"; }, never, never, true,
|
|
10214
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderGridActivationDirective<any>, "elder-grid[elderGridActivation]", ["elderGridActivation"], { "activationOptions": { "alias": "elderGridActivation"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; }, { "activeItemEventChange": "activeItemEventChange"; "activeItemChange": "activeItemChange"; }, never, never, true, [{ directive: typeof ElderDataActivationDirective; inputs: {}; outputs: {}; }]>;
|
|
9999
10215
|
}
|
|
10000
10216
|
|
|
10001
10217
|
declare class ElderGridModule {
|
|
@@ -13191,43 +13407,38 @@ declare class ElderNavLinkComponent implements OnInit, OnDestroy {
|
|
|
13191
13407
|
static ɵcmp: i0.ɵɵComponentDeclaration<ElderNavLinkComponent, "elder-nav-link", never, { "title": { "alias": "title"; "required": false; }; "queryParamsHandling": { "alias": "queryParamsHandling"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "fontIcon": { "alias": "fontIcon"; "required": false; }; "fontSet": { "alias": "fontSet"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; "href": { "alias": "href"; "required": false; }; "target": { "alias": "target"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
|
|
13192
13408
|
}
|
|
13193
13409
|
|
|
13194
|
-
|
|
13195
|
-
|
|
13196
|
-
}
|
|
13197
|
-
declare class ElderNavGroupComponent implements OnInit, OnDestroy {
|
|
13410
|
+
declare class ElderNavGroupComponent implements OnInit {
|
|
13411
|
+
private readonly destroyRef;
|
|
13198
13412
|
private readonly navList;
|
|
13413
|
+
private childSubscription;
|
|
13199
13414
|
/***************************************************************************
|
|
13200
13415
|
* *
|
|
13201
13416
|
* Fields *
|
|
13202
13417
|
* *
|
|
13203
13418
|
**************************************************************************/
|
|
13204
|
-
children:
|
|
13205
|
-
readonly
|
|
13206
|
-
readonly clicked:
|
|
13207
|
-
private readonly
|
|
13208
|
-
private readonly _active$;
|
|
13209
|
-
private _value;
|
|
13419
|
+
readonly children: i0.Signal<readonly ElderNavLinkComponent[]>;
|
|
13420
|
+
readonly isOpen: i0.WritableSignal<boolean>;
|
|
13421
|
+
readonly clicked: i0.OutputEmitterRef<NavItemClicked>;
|
|
13422
|
+
private readonly childrenActiveState;
|
|
13210
13423
|
/***************************************************************************
|
|
13211
13424
|
* *
|
|
13212
|
-
*
|
|
13425
|
+
* Computed Properties *
|
|
13213
13426
|
* *
|
|
13214
13427
|
**************************************************************************/
|
|
13215
|
-
|
|
13428
|
+
readonly active: i0.Signal<boolean>;
|
|
13216
13429
|
/***************************************************************************
|
|
13217
13430
|
* *
|
|
13218
|
-
*
|
|
13431
|
+
* Constructor & Effects *
|
|
13219
13432
|
* *
|
|
13220
13433
|
**************************************************************************/
|
|
13221
|
-
|
|
13222
|
-
ngOnDestroy(): void;
|
|
13434
|
+
constructor();
|
|
13223
13435
|
/***************************************************************************
|
|
13224
13436
|
* *
|
|
13225
|
-
*
|
|
13437
|
+
* Life Cycle *
|
|
13226
13438
|
* *
|
|
13227
13439
|
**************************************************************************/
|
|
13228
|
-
|
|
13229
|
-
|
|
13230
|
-
get value(): any;
|
|
13440
|
+
ngOnInit(): void;
|
|
13441
|
+
ngOnDestroy(): void;
|
|
13231
13442
|
/***************************************************************************
|
|
13232
13443
|
* *
|
|
13233
13444
|
* Public Api *
|
|
@@ -13235,14 +13446,8 @@ declare class ElderNavGroupComponent implements OnInit, OnDestroy {
|
|
|
13235
13446
|
**************************************************************************/
|
|
13236
13447
|
itemClick(event: MouseEvent): void;
|
|
13237
13448
|
toggle(): void;
|
|
13238
|
-
/***************************************************************************
|
|
13239
|
-
* *
|
|
13240
|
-
* Private methods *
|
|
13241
|
-
* *
|
|
13242
|
-
**************************************************************************/
|
|
13243
|
-
private get isCurrentValueActive();
|
|
13244
13449
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderNavGroupComponent, never>;
|
|
13245
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderNavGroupComponent, "elder-nav-group", never, {
|
|
13450
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderNavGroupComponent, "elder-nav-group", never, {}, { "clicked": "clicked"; }, ["children"], ["*", "elder-nav-link"], true, never>;
|
|
13246
13451
|
}
|
|
13247
13452
|
|
|
13248
13453
|
declare class ElderNavModule {
|
|
@@ -15841,6 +16046,10 @@ declare class ElderScrollbarModule {
|
|
|
15841
16046
|
static ɵinj: i0.ɵɵInjectorDeclaration<ElderScrollbarModule>;
|
|
15842
16047
|
}
|
|
15843
16048
|
|
|
16049
|
+
declare class FallbackValidationMessageStrategy implements IValidationMessageStrategy {
|
|
16050
|
+
renderMessage(validation: ValidationErrors): string;
|
|
16051
|
+
}
|
|
16052
|
+
|
|
15844
16053
|
declare class SimpleSearchInput implements SearchInput {
|
|
15845
16054
|
queryKey: string;
|
|
15846
16055
|
private _readonly?;
|
|
@@ -17853,5 +18062,5 @@ declare class KafentModule {
|
|
|
17853
18062
|
static ɵinj: i0.ɵɵInjectorDeclaration<KafentModule>;
|
|
17854
18063
|
}
|
|
17855
18064
|
|
|
17856
|
-
export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, 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, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteManyDirective, 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, 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, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageModule, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, 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, ElderPageExitLockIndicatorComponent, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, 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, ElderSimpleSelectionViewComponent, ElderSimpleSelectionViewModule, ElderSinglePaneWrapperComponent, ElderSingleSortComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderSvgViewerComponent, 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, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderViewersModule, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, ErrorUtil, ExceptionDetailCtx, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientBuilder, 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, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalDataFilter, LocalListDataSource, LocalPagedDataSource, Locale, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, MultiModelBaseComponent, NamedColorDirective, NamedColorSelectDirective, NamedColorSelectValueComponent, NextNumberUtil, ObjectFieldMatcher, ObjectPathResolver, Objects, OnlineStatus, Page, PageExitGuardModule, PageExitGuardService, PageExitLock, 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, 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, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalListDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, proxyControlContainer, registerLocale, runInZone, themeInit };
|
|
17857
|
-
export type { ChipAvatarSpec, ChipColorSpec, ComparatorFn, ConfirmDeleteOptions, CountryPhoneFormat, CurrencyIndication, DataViewMessageType, ElderActivationOptions, ElderApplyControlFn, ElderAutoActivateItem, ElderAutoActivationMode, ElderDataViewInteractionMode, ElderLocalizedInputOptions, ElderMasterDetailMode, ElderNamedColor, ElderNamedColorRole, ElderSize, ElderToolbarContentSlot, EventSourceRequestInit, ExceptionDetail, Focusable, GenericMatcherOptions, IAuditedEntity, IContinuableDataSource, IContinuationFetcher, IDataContext, IDataContextActivePage, IDataContextContinuable, IDataSource, IElderDataView, IElderDetailDialogOptions, IElderEntityValueAccessor, IElderMultiEntityValueAccessor, 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, MatchOptions, ObservedElementDimension,
|
|
18065
|
+
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, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteManyDirective, 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, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageModule, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, 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, ElderPageExitLockIndicatorComponent, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, 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, ElderSimpleSelectionViewComponent, ElderSimpleSelectionViewModule, ElderSinglePaneWrapperComponent, ElderSingleSortComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderSvgViewerComponent, 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, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderViewersModule, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, ErrorUtil, ExceptionDetailCtx, FallbackValidationMessageStrategy, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientBuilder, 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, 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, PageExitGuardModule, PageExitGuardService, PageExitLock, 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, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalListDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, proxyControlContainer, registerLocale, runInZone, themeInit };
|
|
18066
|
+
export type { ChipAvatarSpec, ChipColorSpec, ComparatorFn, ConfirmDeleteOptions, CountryPhoneFormat, CurrencyIndication, DataViewMessageType, ElderActivationOptions, ElderApplyControlFn, ElderAutoActivateItem, ElderAutoActivationMode, ElderDataViewInteractionMode, ElderLocalizedInputOptions, ElderMasterDetailMode, ElderNamedColor, ElderNamedColorRole, ElderSize, ElderToolbarContentSlot, EventSourceRequestInit, ExceptionDetail, Focusable, GenericMatcherOptions, IAuditedEntity, IContinuableDataSource, IContinuationFetcher, IDataContext, IDataContextActivePage, IDataContextContinuable, IDataSource, IDynamicValidationMessage, IElderDataView, IElderDetailDialogOptions, IElderEntityValueAccessor, IElderMultiEntityValueAccessor, 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, MatchOptions, ObservedElementDimension, PhoneNumber, QuantityPipeOptions, ScrollDirection, SearchInput, SelectChipSpec, SelectOptionChipSpec, SelectionOptions, ShellContentSlot, SortDirection, TextResolverFn$1 as TextResolverFn, Toast, ToastErrorDetails, ToastOptions, TrailingSpec, UnitCode, ValueSpec };
|