@elderbyte/ngx-starter 20.3.0 → 20.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/elderbyte-ngx-starter.mjs +1908 -1458
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/index.d.ts +375 -151
- package/package.json +1 -1
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;
|
|
@@ -845,15 +845,19 @@ type CountryPhoneFormat = {
|
|
|
845
845
|
declare class PhoneFormatService {
|
|
846
846
|
/***************************************************************************
|
|
847
847
|
* *
|
|
848
|
-
* Public
|
|
848
|
+
* Public API *
|
|
849
849
|
* *
|
|
850
850
|
**************************************************************************/
|
|
851
|
-
formatPhoneNumber(
|
|
851
|
+
formatPhoneNumber(number: string, countryCode?: string, config?: CountryPhoneFormat): string;
|
|
852
852
|
/***************************************************************************
|
|
853
853
|
* *
|
|
854
|
-
* Private
|
|
854
|
+
* Private Methods *
|
|
855
855
|
* *
|
|
856
856
|
**************************************************************************/
|
|
857
|
+
private applyFormattingPerConfig;
|
|
858
|
+
private preparePhoneNumberBody;
|
|
859
|
+
private cleanNumberString;
|
|
860
|
+
private handleWithoutConfig;
|
|
857
861
|
private removeDialingCode;
|
|
858
862
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneFormatService, never>;
|
|
859
863
|
static ɵprov: i0.ɵɵInjectableDeclaration<PhoneFormatService>;
|
|
@@ -870,7 +874,7 @@ declare class CountryPhoneFormatService {
|
|
|
870
874
|
declare class PhonePipe implements PipeTransform {
|
|
871
875
|
private readonly countryPhoneFormats;
|
|
872
876
|
private readonly phoneFormat;
|
|
873
|
-
transform(
|
|
877
|
+
transform(phoneNumber: PhoneNumber): string;
|
|
874
878
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhonePipe, never>;
|
|
875
879
|
static ɵpipe: i0.ɵɵPipeDeclaration<PhonePipe, "phone", true>;
|
|
876
880
|
}
|
|
@@ -4205,6 +4209,24 @@ declare class ObjectPathResolver {
|
|
|
4205
4209
|
}
|
|
4206
4210
|
|
|
4207
4211
|
type KeyGetterFn<T> = (item: T) => any;
|
|
4212
|
+
declare enum SelectionEventSource {
|
|
4213
|
+
USER_MOUSE_CLICK = "USER_MOUSE_CLICK",
|
|
4214
|
+
USER_KEYBOARD = "USER_KEYBOARD",
|
|
4215
|
+
SYSTEM = "SYSTEM"
|
|
4216
|
+
}
|
|
4217
|
+
interface SelectionOptions {
|
|
4218
|
+
source: SelectionEventSource;
|
|
4219
|
+
info?: string;
|
|
4220
|
+
}
|
|
4221
|
+
declare class SelectionChangedEvent<TId, TEntity> {
|
|
4222
|
+
readonly after: TEntity[];
|
|
4223
|
+
readonly addedById: Map<TId, TEntity>;
|
|
4224
|
+
readonly removed: Set<TId>;
|
|
4225
|
+
readonly source: SelectionEventSource;
|
|
4226
|
+
readonly info?: string;
|
|
4227
|
+
constructor(after: TEntity[], addedById: Map<TId, TEntity>, removed: Set<TId>, source: SelectionEventSource, info?: string);
|
|
4228
|
+
get isUserSource(): boolean;
|
|
4229
|
+
}
|
|
4208
4230
|
/**
|
|
4209
4231
|
* Provides a model of a selection.
|
|
4210
4232
|
* Supports single and multi selection.
|
|
@@ -4218,9 +4240,11 @@ declare class SelectionModel<T> {
|
|
|
4218
4240
|
* *
|
|
4219
4241
|
**************************************************************************/
|
|
4220
4242
|
private readonly log;
|
|
4243
|
+
private readonly defaultOptions;
|
|
4221
4244
|
private _multiple;
|
|
4222
4245
|
private readonly _selectionMap;
|
|
4223
4246
|
private readonly _selection;
|
|
4247
|
+
private readonly _selectionChange;
|
|
4224
4248
|
private _keyGetterFn;
|
|
4225
4249
|
private _selectableEvaluatorFn;
|
|
4226
4250
|
static readonly FallbackKeyGetterFn: (a: any) => any;
|
|
@@ -4243,11 +4267,20 @@ declare class SelectionModel<T> {
|
|
|
4243
4267
|
* Properties *
|
|
4244
4268
|
* *
|
|
4245
4269
|
**************************************************************************/
|
|
4270
|
+
get selectionChange(): Observable<SelectionChangedEvent<any, T>>;
|
|
4246
4271
|
get changed(): Observable<T[]>;
|
|
4247
4272
|
get selection(): Observable<T[]>;
|
|
4248
4273
|
get selectionSnapshot(): T[];
|
|
4249
4274
|
set selectableEvaluatorFn(fn: (item: T) => boolean);
|
|
4250
4275
|
set keyGetterFn(fn: KeyGetterFn<T>);
|
|
4276
|
+
isSelected(value: T): boolean;
|
|
4277
|
+
observeSelection(value: T): Observable<boolean>;
|
|
4278
|
+
get count(): number;
|
|
4279
|
+
get isEmpty(): boolean;
|
|
4280
|
+
get hasValue(): boolean;
|
|
4281
|
+
get hasSingleValue(): boolean;
|
|
4282
|
+
get hasMultipleValues(): boolean;
|
|
4283
|
+
get isMultipleSelection(): boolean;
|
|
4251
4284
|
/***************************************************************************
|
|
4252
4285
|
* *
|
|
4253
4286
|
* Public API *
|
|
@@ -4258,27 +4291,25 @@ declare class SelectionModel<T> {
|
|
|
4258
4291
|
* If no function has been set (or function is null), all items are selectable by default.
|
|
4259
4292
|
*/
|
|
4260
4293
|
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;
|
|
4294
|
+
clear(options?: SelectionOptions): void;
|
|
4295
|
+
replaceSelection(newSelection: T[], options?: SelectionOptions | string): void;
|
|
4296
|
+
select(values: T[], options?: SelectionOptions | string): void;
|
|
4297
|
+
deselect(values: T[], options?: SelectionOptions): void;
|
|
4298
|
+
deselectIds(ids: any[], options?: SelectionOptions): void;
|
|
4299
|
+
toggle(value: T, options?: SelectionOptions): void;
|
|
4275
4300
|
set isMultipleSelection(multiple: boolean);
|
|
4276
4301
|
/***************************************************************************
|
|
4277
4302
|
* *
|
|
4278
4303
|
* Private methods *
|
|
4279
4304
|
* *
|
|
4280
4305
|
**************************************************************************/
|
|
4306
|
+
private buildChangeEvent;
|
|
4307
|
+
private deltaIds;
|
|
4308
|
+
private mapValues;
|
|
4309
|
+
private coerceOptions;
|
|
4281
4310
|
private selectionChanged;
|
|
4311
|
+
private snapshotInnerSelection;
|
|
4312
|
+
private isAlreadyExclusivelySelected;
|
|
4282
4313
|
private selectInternal;
|
|
4283
4314
|
private ensureSelectedMulti;
|
|
4284
4315
|
private isExclusiveSelected;
|
|
@@ -6922,8 +6953,118 @@ declare class ElderDataViewOptionsProvider {
|
|
|
6922
6953
|
updateOptions(optionsFn: (opt: ElderDataViewOptions) => ElderDataViewOptions): void;
|
|
6923
6954
|
}
|
|
6924
6955
|
|
|
6956
|
+
declare class ModifierKeyState {
|
|
6957
|
+
readonly shift: boolean;
|
|
6958
|
+
readonly ctrl: boolean;
|
|
6959
|
+
readonly alt: boolean;
|
|
6960
|
+
readonly meta: boolean;
|
|
6961
|
+
static pristine(): ModifierKeyState;
|
|
6962
|
+
constructor(shift: boolean, ctrl: boolean, alt: boolean, meta: boolean);
|
|
6963
|
+
equals(other: ModifierKeyState): boolean;
|
|
6964
|
+
}
|
|
6965
|
+
declare class ModifierKeyService implements OnDestroy {
|
|
6966
|
+
private ngZone;
|
|
6967
|
+
/***************************************************************************
|
|
6968
|
+
* *
|
|
6969
|
+
* Fields *
|
|
6970
|
+
* *
|
|
6971
|
+
**************************************************************************/
|
|
6972
|
+
private readonly modifierState$;
|
|
6973
|
+
/***************************************************************************
|
|
6974
|
+
* *
|
|
6975
|
+
* Constructor *
|
|
6976
|
+
* *
|
|
6977
|
+
**************************************************************************/
|
|
6978
|
+
constructor(ngZone: NgZone);
|
|
6979
|
+
/***************************************************************************
|
|
6980
|
+
* *
|
|
6981
|
+
* Life Cycle *
|
|
6982
|
+
* *
|
|
6983
|
+
**************************************************************************/
|
|
6984
|
+
ngOnDestroy(): void;
|
|
6985
|
+
/***************************************************************************
|
|
6986
|
+
* *
|
|
6987
|
+
* Properties *
|
|
6988
|
+
* *
|
|
6989
|
+
**************************************************************************/
|
|
6990
|
+
/**
|
|
6991
|
+
* Returns an observable of the current modifier key state
|
|
6992
|
+
*/
|
|
6993
|
+
get modifierChanges$(): Observable<ModifierKeyState>;
|
|
6994
|
+
/**
|
|
6995
|
+
* Returns the current state synchronously
|
|
6996
|
+
*/
|
|
6997
|
+
get current(): ModifierKeyState;
|
|
6998
|
+
/***************************************************************************
|
|
6999
|
+
* *
|
|
7000
|
+
* Private methods *
|
|
7001
|
+
* *
|
|
7002
|
+
**************************************************************************/
|
|
7003
|
+
private readonly handleInputEvent;
|
|
7004
|
+
private toKeyState;
|
|
7005
|
+
private readonly resetKeys;
|
|
7006
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModifierKeyService, never>;
|
|
7007
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ModifierKeyService>;
|
|
7008
|
+
}
|
|
7009
|
+
|
|
7010
|
+
declare class DataViewInteractionControllerDirective<T = any> implements OnInit {
|
|
7011
|
+
private readonly injector;
|
|
7012
|
+
private readonly destroyRef;
|
|
7013
|
+
private readonly modifierKeys;
|
|
7014
|
+
/***************************************************************************
|
|
7015
|
+
* *
|
|
7016
|
+
* Fields *
|
|
7017
|
+
* *
|
|
7018
|
+
**************************************************************************/
|
|
7019
|
+
private readonly log;
|
|
7020
|
+
private readonly _itemClickSubject;
|
|
7021
|
+
readonly selectionModel: i0.WritableSignal<SelectionModel<T>>;
|
|
7022
|
+
private selectionController;
|
|
7023
|
+
interactionMode: ElderDataViewInteractionMode;
|
|
7024
|
+
/***************************************************************************
|
|
7025
|
+
* *
|
|
7026
|
+
* Constructor *
|
|
7027
|
+
* *
|
|
7028
|
+
**************************************************************************/
|
|
7029
|
+
constructor(injector: Injector, destroyRef: DestroyRef, modifierKeys: ModifierKeyService);
|
|
7030
|
+
/***************************************************************************
|
|
7031
|
+
* *
|
|
7032
|
+
* Life Cycle *
|
|
7033
|
+
* *
|
|
7034
|
+
**************************************************************************/
|
|
7035
|
+
ngOnInit(): void;
|
|
7036
|
+
/***************************************************************************
|
|
7037
|
+
* *
|
|
7038
|
+
* Properties *
|
|
7039
|
+
* *
|
|
7040
|
+
**************************************************************************/
|
|
7041
|
+
/**
|
|
7042
|
+
* Observable that emits when an item is clicked
|
|
7043
|
+
*/
|
|
7044
|
+
get itemClick(): Observable<T>;
|
|
7045
|
+
/***************************************************************************
|
|
7046
|
+
* *
|
|
7047
|
+
* Public API *
|
|
7048
|
+
* *
|
|
7049
|
+
**************************************************************************/
|
|
7050
|
+
onItemClick(entity: T, event: MouseEvent | KeyboardEvent): void;
|
|
7051
|
+
onItemDoubleClick(entity: T): void;
|
|
7052
|
+
onItemSelectionToggle(entity: T): void;
|
|
7053
|
+
/***************************************************************************
|
|
7054
|
+
* *
|
|
7055
|
+
* Private methods *
|
|
7056
|
+
* *
|
|
7057
|
+
**************************************************************************/
|
|
7058
|
+
private handlePrimaryAction;
|
|
7059
|
+
private userToggleSelection;
|
|
7060
|
+
private handleSecondaryAction;
|
|
7061
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataViewInteractionControllerDirective<any>, never>;
|
|
7062
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DataViewInteractionControllerDirective<any>, never, never, {}, {}, never, never, true, never>;
|
|
7063
|
+
}
|
|
7064
|
+
|
|
6925
7065
|
declare abstract class ElderDataViewBaseComponent<T = any> implements IElderDataView, OnInit, OnDestroy {
|
|
6926
7066
|
protected readonly dataViewOptionsProvider: ElderDataViewOptionsProvider;
|
|
7067
|
+
protected readonly interactionController: DataViewInteractionControllerDirective<T>;
|
|
6927
7068
|
/***************************************************************************
|
|
6928
7069
|
* *
|
|
6929
7070
|
* Fields *
|
|
@@ -6937,7 +7078,7 @@ declare abstract class ElderDataViewBaseComponent<T = any> implements IElderData
|
|
|
6937
7078
|
* Holds the current selection
|
|
6938
7079
|
*/
|
|
6939
7080
|
readonly selectionModel: SelectionModel<any>;
|
|
6940
|
-
interactionMode: ElderDataViewInteractionMode;
|
|
7081
|
+
set interactionMode(mode: ElderDataViewInteractionMode);
|
|
6941
7082
|
/**
|
|
6942
7083
|
* Define if elder-table should clean up the
|
|
6943
7084
|
* data-context resources for you.
|
|
@@ -6947,7 +7088,7 @@ declare abstract class ElderDataViewBaseComponent<T = any> implements IElderData
|
|
|
6947
7088
|
*/
|
|
6948
7089
|
readonly cleanUp: i0.InputSignalWithTransform<boolean, _angular_cdk_coercion.BooleanInput>;
|
|
6949
7090
|
readonly dense: i0.InputSignalWithTransform<boolean, _angular_cdk_coercion.BooleanInput>;
|
|
6950
|
-
private readonly
|
|
7091
|
+
private readonly _itemClick;
|
|
6951
7092
|
private readonly EntityIdKeyFn;
|
|
6952
7093
|
protected readonly destroy$: Subject<void>;
|
|
6953
7094
|
readonly dc: Signal<IDataContext<T> | undefined>;
|
|
@@ -6964,7 +7105,7 @@ declare abstract class ElderDataViewBaseComponent<T = any> implements IElderData
|
|
|
6964
7105
|
* Constructor *
|
|
6965
7106
|
* *
|
|
6966
7107
|
**************************************************************************/
|
|
6967
|
-
constructor(selectionModel: SelectionModel<any>, dataViewOptionsProvider: ElderDataViewOptionsProvider);
|
|
7108
|
+
constructor(selectionModel: SelectionModel<any>, dataViewOptionsProvider: ElderDataViewOptionsProvider, interactionController: DataViewInteractionControllerDirective<T>);
|
|
6968
7109
|
/***************************************************************************
|
|
6969
7110
|
* *
|
|
6970
7111
|
* Life Cycle *
|
|
@@ -7013,7 +7154,7 @@ declare abstract class ElderDataViewBaseComponent<T = any> implements IElderData
|
|
|
7013
7154
|
* @protected
|
|
7014
7155
|
*/
|
|
7015
7156
|
protected onDataContextSet(data: IDataContext<T>): void;
|
|
7016
|
-
onItemClick(entity: T): void;
|
|
7157
|
+
onItemClick(entity: T, event: MouseEvent | KeyboardEvent): void;
|
|
7017
7158
|
onItemDoubleClick(entity: T): void;
|
|
7018
7159
|
getId(entity: T): any;
|
|
7019
7160
|
abstract hasItemFocus(item: T): boolean;
|
|
@@ -7067,6 +7208,140 @@ declare class DataViewOptionsProviderBinding {
|
|
|
7067
7208
|
applyOptions(options: ElderDataViewOptions): void;
|
|
7068
7209
|
}
|
|
7069
7210
|
|
|
7211
|
+
declare enum ActivationEventSource {
|
|
7212
|
+
USER_MOUSE_CLICK = "USER_MOUSE_CLICK",
|
|
7213
|
+
USER_KEYBOARD = "USER_KEYBOARD",
|
|
7214
|
+
SYSTEM = "SYSTEM"
|
|
7215
|
+
}
|
|
7216
|
+
|
|
7217
|
+
declare class ItemActivationEvent<T> {
|
|
7218
|
+
readonly item: T;
|
|
7219
|
+
readonly source: ActivationEventSource;
|
|
7220
|
+
readonly focus: boolean;
|
|
7221
|
+
constructor(item: T, source: ActivationEventSource, focus: boolean);
|
|
7222
|
+
}
|
|
7223
|
+
|
|
7224
|
+
declare class ItemActivationOptions {
|
|
7225
|
+
readonly source: ActivationEventSource;
|
|
7226
|
+
readonly focus: boolean;
|
|
7227
|
+
constructor(source: ActivationEventSource, focus: boolean);
|
|
7228
|
+
}
|
|
7229
|
+
|
|
7230
|
+
declare class ActivationModel<T = any> {
|
|
7231
|
+
private readonly dataView;
|
|
7232
|
+
/***************************************************************************
|
|
7233
|
+
* *
|
|
7234
|
+
* Fields *
|
|
7235
|
+
* *
|
|
7236
|
+
**************************************************************************/
|
|
7237
|
+
private readonly log;
|
|
7238
|
+
private readonly itemActivationEventSubject;
|
|
7239
|
+
private readonly _activeItem$;
|
|
7240
|
+
private dataSource$;
|
|
7241
|
+
/***************************************************************************
|
|
7242
|
+
* *
|
|
7243
|
+
* Constructor *
|
|
7244
|
+
* *
|
|
7245
|
+
**************************************************************************/
|
|
7246
|
+
constructor(dataView: IElderDataView);
|
|
7247
|
+
/***************************************************************************
|
|
7248
|
+
* *
|
|
7249
|
+
* Properties *
|
|
7250
|
+
* *
|
|
7251
|
+
**************************************************************************/
|
|
7252
|
+
get itemActivationEvents(): Observable<ItemActivationEvent<T>>;
|
|
7253
|
+
get activeItem$(): Observable<T>;
|
|
7254
|
+
get activeItem(): T;
|
|
7255
|
+
/***************************************************************************
|
|
7256
|
+
* *
|
|
7257
|
+
* Public API *
|
|
7258
|
+
* *
|
|
7259
|
+
**************************************************************************/
|
|
7260
|
+
activate(item: T, options: ItemActivationOptions): void;
|
|
7261
|
+
isItemActive(item: T): boolean;
|
|
7262
|
+
hasItemFocus(item: T): boolean;
|
|
7263
|
+
/***************************************************************************
|
|
7264
|
+
* *
|
|
7265
|
+
* Private methods *
|
|
7266
|
+
* *
|
|
7267
|
+
**************************************************************************/
|
|
7268
|
+
private updateActiveItem;
|
|
7269
|
+
private itemEquals;
|
|
7270
|
+
private getId;
|
|
7271
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivationModel<any>, never>;
|
|
7272
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ActivationModel<any>>;
|
|
7273
|
+
}
|
|
7274
|
+
|
|
7275
|
+
declare class DataSelectionController<TEntity = any, TId = any> {
|
|
7276
|
+
private readonly activationModel;
|
|
7277
|
+
private readonly modifierKeys;
|
|
7278
|
+
/***************************************************************************
|
|
7279
|
+
* *
|
|
7280
|
+
* Fields *
|
|
7281
|
+
* *
|
|
7282
|
+
**************************************************************************/
|
|
7283
|
+
private readonly log;
|
|
7284
|
+
private readonly selectionModel;
|
|
7285
|
+
private dataContextRange;
|
|
7286
|
+
private anchor;
|
|
7287
|
+
/***************************************************************************
|
|
7288
|
+
* *
|
|
7289
|
+
* Constructor *
|
|
7290
|
+
* *
|
|
7291
|
+
**************************************************************************/
|
|
7292
|
+
constructor(dataView: IElderDataView<TEntity>, activationModel: ActivationModel<TEntity> | undefined, modifierKeys: ModifierKeyService, destroyRef: DestroyRef);
|
|
7293
|
+
/***************************************************************************
|
|
7294
|
+
* *
|
|
7295
|
+
* Public API *
|
|
7296
|
+
* *
|
|
7297
|
+
**************************************************************************/
|
|
7298
|
+
userToggleSelection(entity: TEntity): void;
|
|
7299
|
+
/***************************************************************************
|
|
7300
|
+
* *
|
|
7301
|
+
* Private methods *
|
|
7302
|
+
* *
|
|
7303
|
+
**************************************************************************/
|
|
7304
|
+
private onItemActivated;
|
|
7305
|
+
private anchorIfNecessary;
|
|
7306
|
+
private onItemActivatedByKeyboard;
|
|
7307
|
+
private handleRangeSelection;
|
|
7308
|
+
private handleSingleSelection;
|
|
7309
|
+
private selectItemsInRage;
|
|
7310
|
+
private anchorItem;
|
|
7311
|
+
}
|
|
7312
|
+
|
|
7313
|
+
declare class DataContextRange<TEntity, TId> {
|
|
7314
|
+
private readonly dc;
|
|
7315
|
+
/***************************************************************************
|
|
7316
|
+
* *
|
|
7317
|
+
* Fields *
|
|
7318
|
+
* *
|
|
7319
|
+
**************************************************************************/
|
|
7320
|
+
private readonly idExtractor;
|
|
7321
|
+
/***************************************************************************
|
|
7322
|
+
* *
|
|
7323
|
+
* Constructor *
|
|
7324
|
+
* *
|
|
7325
|
+
**************************************************************************/
|
|
7326
|
+
constructor(dc: IDataContext<TEntity>);
|
|
7327
|
+
/***************************************************************************
|
|
7328
|
+
* *
|
|
7329
|
+
* Public API *
|
|
7330
|
+
* *
|
|
7331
|
+
**************************************************************************/
|
|
7332
|
+
itemsByRange(start: TEntity, end: TEntity): TEntity[];
|
|
7333
|
+
/***************************************************************************
|
|
7334
|
+
* *
|
|
7335
|
+
* Private methods *
|
|
7336
|
+
* *
|
|
7337
|
+
**************************************************************************/
|
|
7338
|
+
private itemsByIdRange;
|
|
7339
|
+
private itemsByIndexRange;
|
|
7340
|
+
private itemIndexById;
|
|
7341
|
+
private getId;
|
|
7342
|
+
private get items();
|
|
7343
|
+
}
|
|
7344
|
+
|
|
7070
7345
|
declare class ElderSingleSortComponent implements OnInit {
|
|
7071
7346
|
/***************************************************************************
|
|
7072
7347
|
* *
|
|
@@ -7536,15 +7811,13 @@ declare class DataContextSelectionDirective {
|
|
|
7536
7811
|
get selectionModel$(): Observable<SelectionModel<any>>;
|
|
7537
7812
|
get selectionModel(): SelectionModel<any>;
|
|
7538
7813
|
set dataContext(dataContext: IDataContext<any>);
|
|
7539
|
-
/** Whether the number of selected elements matches the totalSnapshot number of selectable rows. */
|
|
7540
|
-
get isAllSelectedSnapshot(): boolean;
|
|
7541
7814
|
/***************************************************************************
|
|
7542
7815
|
* *
|
|
7543
7816
|
* Public API *
|
|
7544
7817
|
* *
|
|
7545
7818
|
**************************************************************************/
|
|
7546
7819
|
/** Selects all rows if they are not all selected; otherwise clear selection. */
|
|
7547
|
-
masterToggle(): void;
|
|
7820
|
+
masterToggle(source?: SelectionEventSource): void;
|
|
7548
7821
|
/***************************************************************************
|
|
7549
7822
|
* *
|
|
7550
7823
|
* Host Listeners *
|
|
@@ -7557,6 +7830,8 @@ declare class DataContextSelectionDirective {
|
|
|
7557
7830
|
* Private methods *
|
|
7558
7831
|
* *
|
|
7559
7832
|
**************************************************************************/
|
|
7833
|
+
/** Whether the number of selected elements matches the totalSnapshot number of selectable rows. */
|
|
7834
|
+
private get isAllSelectedSnapshot();
|
|
7560
7835
|
private buildSelectionState$;
|
|
7561
7836
|
private buildSelectionStateInner$;
|
|
7562
7837
|
/**
|
|
@@ -7583,6 +7858,7 @@ declare class ElderSelectionMasterCheckboxComponent {
|
|
|
7583
7858
|
* *
|
|
7584
7859
|
**************************************************************************/
|
|
7585
7860
|
constructor(dataContextSelection: DataContextSelectionDirective);
|
|
7861
|
+
onCheckboxChange(event: MatCheckboxChange): void;
|
|
7586
7862
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderSelectionMasterCheckboxComponent, never>;
|
|
7587
7863
|
static ɵcmp: i0.ɵɵComponentDeclaration<ElderSelectionMasterCheckboxComponent, "elder-selection-master-checkbox", never, {}, {}, never, never, true, never>;
|
|
7588
7864
|
}
|
|
@@ -7616,70 +7892,6 @@ declare class DataContextStateIndicatorComponent implements OnInit {
|
|
|
7616
7892
|
static ɵcmp: i0.ɵɵComponentDeclaration<DataContextStateIndicatorComponent, "elder-data-context-state-indicator", never, { "dataContext": { "alias": "dataContext"; "required": false; }; }, {}, never, never, true, never>;
|
|
7617
7893
|
}
|
|
7618
7894
|
|
|
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
7895
|
type ElderAutoActivationMode = 'never' | 'once' | 'always';
|
|
7684
7896
|
type ElderAutoActivateItem = 'first' | 'last';
|
|
7685
7897
|
interface ElderActivationOptions {
|
|
@@ -7778,6 +7990,43 @@ declare class DataViewActivationController<T> {
|
|
|
7778
7990
|
static ɵprov: i0.ɵɵInjectableDeclaration<DataViewActivationController<any>>;
|
|
7779
7991
|
}
|
|
7780
7992
|
|
|
7993
|
+
declare class ElderDataActivationDirective<T = any> {
|
|
7994
|
+
private readonly interactionController;
|
|
7995
|
+
private readonly destroyRef;
|
|
7996
|
+
private readonly activationModel;
|
|
7997
|
+
readonly controller: DataViewActivationController<T>;
|
|
7998
|
+
/***************************************************************************
|
|
7999
|
+
* *
|
|
8000
|
+
* Constructor *
|
|
8001
|
+
* *
|
|
8002
|
+
**************************************************************************/
|
|
8003
|
+
constructor(interactionController: DataViewInteractionControllerDirective, destroyRef: DestroyRef, activationModel: ActivationModel<T>, controller: DataViewActivationController<T>);
|
|
8004
|
+
/***************************************************************************
|
|
8005
|
+
* *.
|
|
8006
|
+
* Host Listeners *
|
|
8007
|
+
* *
|
|
8008
|
+
**************************************************************************/
|
|
8009
|
+
onKeydown(event: KeyboardEvent): void;
|
|
8010
|
+
/***************************************************************************
|
|
8011
|
+
* *
|
|
8012
|
+
* Properties *
|
|
8013
|
+
* *
|
|
8014
|
+
**************************************************************************/
|
|
8015
|
+
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
8016
|
+
get activeItemEventChange(): Observable<ItemActivationEvent<T>>;
|
|
8017
|
+
get activeItemChange(): Observable<T>;
|
|
8018
|
+
get activeItem(): T;
|
|
8019
|
+
set activeItem(item: T);
|
|
8020
|
+
/***************************************************************************
|
|
8021
|
+
* *
|
|
8022
|
+
* Public API *
|
|
8023
|
+
* *
|
|
8024
|
+
**************************************************************************/
|
|
8025
|
+
activate(item: T, options: ItemActivationOptions): void;
|
|
8026
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderDataActivationDirective<any>, never>;
|
|
8027
|
+
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>;
|
|
8028
|
+
}
|
|
8029
|
+
|
|
7781
8030
|
declare class DataViewDragEnteredEvent<T> {
|
|
7782
8031
|
/** Data context into which the user has moved the item. */
|
|
7783
8032
|
readonly context: IDataContext<T>;
|
|
@@ -8966,6 +9215,10 @@ declare class CommonValidationMessageStrategy implements IValidationMessageStrat
|
|
|
8966
9215
|
static ɵprov: i0.ɵɵInjectableDeclaration<CommonValidationMessageStrategy>;
|
|
8967
9216
|
}
|
|
8968
9217
|
|
|
9218
|
+
interface IDynamicValidationMessage {
|
|
9219
|
+
message: string;
|
|
9220
|
+
messageParams?: Object;
|
|
9221
|
+
}
|
|
8969
9222
|
declare class DynamicValidationMessageStrategy implements IValidationMessageStrategy {
|
|
8970
9223
|
private readonly translateService;
|
|
8971
9224
|
/***************************************************************************
|
|
@@ -9378,7 +9631,7 @@ declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9378
9631
|
* Constructor *
|
|
9379
9632
|
* *
|
|
9380
9633
|
**************************************************************************/
|
|
9381
|
-
constructor(tableModel: ElderTableModel, selectionModel: SelectionModel<T>, dataViewOptionsProvider: ElderDataViewOptionsProvider, matSort: MatSort, parentExtension: ElderTableExtensionDirective, zone: NgZone);
|
|
9634
|
+
constructor(tableModel: ElderTableModel, selectionModel: SelectionModel<T>, dataViewOptionsProvider: ElderDataViewOptionsProvider, matSort: MatSort, parentExtension: ElderTableExtensionDirective, zone: NgZone, interactionController: DataViewInteractionControllerDirective<T>);
|
|
9382
9635
|
/***************************************************************************
|
|
9383
9636
|
* *
|
|
9384
9637
|
* Life Cycle *
|
|
@@ -9415,8 +9668,8 @@ declare class ElderTableComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9415
9668
|
**************************************************************************/
|
|
9416
9669
|
private setupSelectionLifeCycle;
|
|
9417
9670
|
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,
|
|
9671
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTableComponent<any>, [null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; }, { optional: true; skipSelf: true; }, null, null]>;
|
|
9672
|
+
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
9673
|
}
|
|
9421
9674
|
|
|
9422
9675
|
/**
|
|
@@ -9465,34 +9718,14 @@ declare class ElderNumberCellDirective {
|
|
|
9465
9718
|
}
|
|
9466
9719
|
|
|
9467
9720
|
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;
|
|
9721
|
+
private readonly activation;
|
|
9722
|
+
constructor(activation: ElderDataActivationDirective);
|
|
9723
|
+
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
9490
9724
|
/***************************************************************************
|
|
9491
9725
|
* *
|
|
9492
9726
|
* Properties *
|
|
9493
9727
|
* *
|
|
9494
9728
|
**************************************************************************/
|
|
9495
|
-
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
9496
9729
|
get activeItemEventChange(): Observable<ItemActivationEvent<T>>;
|
|
9497
9730
|
get activeItemChange(): Observable<T>;
|
|
9498
9731
|
get activeItem(): T;
|
|
@@ -9503,9 +9736,8 @@ declare class ElderTableActivationDirective<T> {
|
|
|
9503
9736
|
* *
|
|
9504
9737
|
**************************************************************************/
|
|
9505
9738
|
activate(item: T, options: ItemActivationOptions): void;
|
|
9506
|
-
activateAndFocus(item: T): void;
|
|
9507
9739
|
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,
|
|
9740
|
+
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
9741
|
}
|
|
9510
9742
|
|
|
9511
9743
|
/**
|
|
@@ -9604,7 +9836,7 @@ declare class ElderTableDropListConnectorDirective<T> {
|
|
|
9604
9836
|
}
|
|
9605
9837
|
|
|
9606
9838
|
declare class ElderTableSelectionCellComponent<T = any> {
|
|
9607
|
-
readonly
|
|
9839
|
+
private readonly interactionController;
|
|
9608
9840
|
/***************************************************************************
|
|
9609
9841
|
* *
|
|
9610
9842
|
* Fields *
|
|
@@ -9619,7 +9851,7 @@ declare class ElderTableSelectionCellComponent<T = any> {
|
|
|
9619
9851
|
* Constructor *
|
|
9620
9852
|
* *
|
|
9621
9853
|
**************************************************************************/
|
|
9622
|
-
constructor(
|
|
9854
|
+
constructor(interactionController: DataViewInteractionControllerDirective<T>);
|
|
9623
9855
|
/***************************************************************************
|
|
9624
9856
|
* *
|
|
9625
9857
|
* Public API *
|
|
@@ -9763,6 +9995,7 @@ declare class ElderSimpleSelectionViewModule {
|
|
|
9763
9995
|
}
|
|
9764
9996
|
|
|
9765
9997
|
declare class ElderTileComponent<T = any> {
|
|
9998
|
+
private readonly interactionController;
|
|
9766
9999
|
private readonly activationModel;
|
|
9767
10000
|
/***************************************************************************
|
|
9768
10001
|
* *
|
|
@@ -9771,7 +10004,7 @@ declare class ElderTileComponent<T = any> {
|
|
|
9771
10004
|
**************************************************************************/
|
|
9772
10005
|
readonly value: i0.InputSignal<T>;
|
|
9773
10006
|
readonly selectionEnabled: i0.InputSignalWithTransform<boolean, BooleanInput>;
|
|
9774
|
-
readonly selectionModel:
|
|
10007
|
+
readonly selectionModel: Signal<SelectionModel<T>>;
|
|
9775
10008
|
readonly selection: Signal<T[]>;
|
|
9776
10009
|
readonly interactionMode: i0.InputSignal<ElderDataViewInteractionMode>;
|
|
9777
10010
|
readonly outlined: i0.InputSignalWithTransform<boolean, BooleanInput>;
|
|
@@ -9785,7 +10018,7 @@ declare class ElderTileComponent<T = any> {
|
|
|
9785
10018
|
* Constructor *
|
|
9786
10019
|
* *
|
|
9787
10020
|
**************************************************************************/
|
|
9788
|
-
constructor(activationModel: ActivationModel);
|
|
10021
|
+
constructor(interactionController: DataViewInteractionControllerDirective<T>, activationModel: ActivationModel);
|
|
9789
10022
|
private handleActivationEvent;
|
|
9790
10023
|
private isItemActive;
|
|
9791
10024
|
private updateTileActivation;
|
|
@@ -9807,8 +10040,9 @@ declare class ElderTileComponent<T = any> {
|
|
|
9807
10040
|
inSelectionMode(currentSelection: any[]): boolean;
|
|
9808
10041
|
bringToView(): void;
|
|
9809
10042
|
focus(): void;
|
|
9810
|
-
|
|
9811
|
-
static
|
|
10043
|
+
onSelectButtonClick(event: MouseEvent): void;
|
|
10044
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTileComponent<any>, [null, { optional: true; }]>;
|
|
10045
|
+
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
10046
|
}
|
|
9813
10047
|
|
|
9814
10048
|
declare class GridRow<T> {
|
|
@@ -9918,7 +10152,7 @@ declare class ElderGridComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9918
10152
|
* Constructor *
|
|
9919
10153
|
* *
|
|
9920
10154
|
**************************************************************************/
|
|
9921
|
-
constructor(selectionModel: SelectionModel<any>, dataViewOptionsProvider: ElderDataViewOptionsProvider);
|
|
10155
|
+
constructor(selectionModel: SelectionModel<any>, dataViewOptionsProvider: ElderDataViewOptionsProvider, interactionController: DataViewInteractionControllerDirective<T>);
|
|
9922
10156
|
/***************************************************************************
|
|
9923
10157
|
* *
|
|
9924
10158
|
* Lifecycle *
|
|
@@ -9957,33 +10191,19 @@ declare class ElderGridComponent<T = any> extends ElderDataViewBaseComponent<T>
|
|
|
9957
10191
|
private responsiveColumn;
|
|
9958
10192
|
private calcColumnCount;
|
|
9959
10193
|
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,
|
|
10194
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderGridComponent<any>, [{ optional: true; }, { optional: true; skipSelf: true; }, null]>;
|
|
10195
|
+
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
10196
|
}
|
|
9963
10197
|
|
|
9964
10198
|
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;
|
|
10199
|
+
private readonly activation;
|
|
10200
|
+
constructor(activation: ElderDataActivationDirective);
|
|
10201
|
+
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
9981
10202
|
/***************************************************************************
|
|
9982
10203
|
* *
|
|
9983
10204
|
* Properties *
|
|
9984
10205
|
* *
|
|
9985
10206
|
**************************************************************************/
|
|
9986
|
-
set activationOptions(options: ElderActivationOptions | NoInputArgs);
|
|
9987
10207
|
get activeItemEventChange(): Observable<ItemActivationEvent<T>>;
|
|
9988
10208
|
get activeItemChange(): Observable<T>;
|
|
9989
10209
|
get activeItem(): T;
|
|
@@ -9995,7 +10215,7 @@ declare class ElderGridActivationDirective<T = any> {
|
|
|
9995
10215
|
**************************************************************************/
|
|
9996
10216
|
activate(item: T, options: ItemActivationOptions): void;
|
|
9997
10217
|
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,
|
|
10218
|
+
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
10219
|
}
|
|
10000
10220
|
|
|
10001
10221
|
declare class ElderGridModule {
|
|
@@ -15830,6 +16050,10 @@ declare class ElderScrollbarModule {
|
|
|
15830
16050
|
static ɵinj: i0.ɵɵInjectorDeclaration<ElderScrollbarModule>;
|
|
15831
16051
|
}
|
|
15832
16052
|
|
|
16053
|
+
declare class FallbackValidationMessageStrategy implements IValidationMessageStrategy {
|
|
16054
|
+
renderMessage(validation: ValidationErrors): string;
|
|
16055
|
+
}
|
|
16056
|
+
|
|
15833
16057
|
declare class SimpleSearchInput implements SearchInput {
|
|
15834
16058
|
queryKey: string;
|
|
15835
16059
|
private _readonly?;
|
|
@@ -17842,5 +18066,5 @@ declare class KafentModule {
|
|
|
17842
18066
|
static ɵinj: i0.ɵɵInjectorDeclaration<KafentModule>;
|
|
17843
18067
|
}
|
|
17844
18068
|
|
|
17845
|
-
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 };
|
|
17846
|
-
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,
|
|
18069
|
+
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 };
|
|
18070
|
+
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 };
|