@elderbyte/ngx-starter 17.11.0-beta3 → 17.11.0-beta5
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/esm2022/lib/components/forms/search/elder-search-input.directive.mjs +14 -11
- package/esm2022/lib/components/forms/search/filter/include-exclude-input-converter.mjs +6 -6
- package/esm2022/lib/components/select/elder-select.module.mjs +8 -8
- package/esm2022/lib/components/select/filter/elder-chip-filter-style-resolver.mjs +8 -8
- package/esm2022/lib/components/select/filter/elder-chips-filter.directive.mjs +26 -17
- package/esm2022/lib/components/select/filter/elder-filter-chip-template/elder-filter-chip-template.component.mjs +9 -30
- package/esm2022/lib/components/select/filter/include-exclude-selection-model.mjs +66 -20
- package/esm2022/lib/components/select/multi/elder-search-include-exclude.directive.mjs +2 -2
- package/fesm2022/elderbyte-ngx-starter.mjs +124 -87
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/components/forms/search/elder-search-input.directive.d.ts +6 -6
- package/lib/components/select/elder-select.module.d.ts +2 -2
- package/lib/components/select/filter/elder-chips-filter.directive.d.ts +9 -2
- package/lib/components/select/filter/elder-filter-chip-template/elder-filter-chip-template.component.d.ts +4 -15
- package/lib/components/select/filter/include-exclude-selection-model.d.ts +20 -7
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i2$1 from '@angular/common';
|
|
2
2
|
import { formatDate, CommonModule, formatCurrency, getCurrencySymbol, NgIf, AsyncPipe, NgFor, NgClass, NgTemplateOutlet, NgStyle, formatNumber, DecimalPipe, DatePipe, registerLocaleData, CurrencyPipe } from '@angular/common';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import { Pipe, LOCALE_ID, Inject, NgModule, Optional, SkipSelf, Directive, Output, Input, forwardRef, ViewChild, HostBinding, ViewChildren, ContentChild, Injectable, Component, ChangeDetectionStrategy, Host, APP_INITIALIZER, TemplateRef, HostListener, EventEmitter, ViewEncapsulation, InjectionToken, ContentChildren, Self } from '@angular/core';
|
|
4
|
+
import { Pipe, LOCALE_ID, Inject, NgModule, Optional, SkipSelf, Directive, Output, Input, forwardRef, ViewChild, HostBinding, ViewChildren, ContentChild, Injectable, Component, ChangeDetectionStrategy, Host, APP_INITIALIZER, TemplateRef, HostListener, EventEmitter, ViewEncapsulation, InjectionToken, ContentChildren, Self, input } from '@angular/core';
|
|
5
5
|
import * as i1 from '@angular/platform-browser';
|
|
6
6
|
import { Duration, Period, TemporalQueries, LocalTime, Instant, LocalDate, nativeJs, ZoneId, DateTimeFormatter, convert, ZonedDateTime, Temporal } from '@js-joda/core';
|
|
7
7
|
import { LoggerFactory } from '@elderbyte/ts-logger';
|
|
@@ -63,7 +63,6 @@ import { Breakpoints } from '@angular/cdk/layout';
|
|
|
63
63
|
import { MatSelectModule, MatSelect } from '@angular/material/select';
|
|
64
64
|
import { Subject as Subject$1 } from 'rxjs/internal/Subject';
|
|
65
65
|
import { MatProgressSpinnerModule, MatProgressSpinner } from '@angular/material/progress-spinner';
|
|
66
|
-
import { Observable as Observable$1 } from 'rxjs/internal/Observable';
|
|
67
66
|
import { style, state, animate, transition, trigger } from '@angular/animations';
|
|
68
67
|
import { MatSidenavContainer, MatSidenav, MatSidenavContent, MatSidenavModule } from '@angular/material/sidenav';
|
|
69
68
|
import { MatDatepicker, MatDatepickerInput, MatDatepickerToggle, MatDatepickerToggleIcon, MatDateRangeInput, MatStartDate, MatEndDate, MatDateRangePicker, MatDatepickerModule } from '@angular/material/datepicker';
|
|
@@ -23267,12 +23266,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
|
|
|
23267
23266
|
type: Optional
|
|
23268
23267
|
}] }, { type: i0.DestroyRef }] });
|
|
23269
23268
|
|
|
23270
|
-
class
|
|
23271
|
-
/***************************************************************************
|
|
23272
|
-
* *
|
|
23273
|
-
* Constructor *
|
|
23274
|
-
* *
|
|
23275
|
-
**************************************************************************/
|
|
23269
|
+
class ElderFilterChipTemplateComponent {
|
|
23276
23270
|
constructor() {
|
|
23277
23271
|
/***************************************************************************
|
|
23278
23272
|
* *
|
|
@@ -23280,8 +23274,7 @@ class ElderFilterChipTemplate {
|
|
|
23280
23274
|
* *
|
|
23281
23275
|
**************************************************************************/
|
|
23282
23276
|
this._avatarRef$ = new BehaviorSubject(null);
|
|
23283
|
-
this.
|
|
23284
|
-
this._resolveAvatar$ = new BehaviorSubject(null);
|
|
23277
|
+
this.avatarResolverFn = input.required();
|
|
23285
23278
|
}
|
|
23286
23279
|
/***************************************************************************
|
|
23287
23280
|
* *
|
|
@@ -23294,30 +23287,15 @@ class ElderFilterChipTemplate {
|
|
|
23294
23287
|
get avatarRef$() {
|
|
23295
23288
|
return this._avatarRef$.asObservable();
|
|
23296
23289
|
}
|
|
23297
|
-
|
|
23298
|
-
|
|
23299
|
-
}
|
|
23300
|
-
get bodyRef$() {
|
|
23301
|
-
return this._bodyRef$.asObservable();
|
|
23302
|
-
}
|
|
23303
|
-
set resolveAvatar(fn) {
|
|
23304
|
-
this._resolveAvatar$.next(fn);
|
|
23305
|
-
}
|
|
23306
|
-
get resolveAvatar$() {
|
|
23307
|
-
return this._resolveAvatar$.asObservable();
|
|
23308
|
-
}
|
|
23309
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: ElderFilterChipTemplate, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
23310
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.11", type: ElderFilterChipTemplate, isStandalone: true, selector: "elder-filter-chip-template", viewQueries: [{ propertyName: "avatarRef", first: true, predicate: ["avatar"], descendants: true }, { propertyName: "bodyRef", first: true, predicate: ["body"], descendants: true }], ngImport: i0, template: "<ng-template #avatar let-chipModel>\n @if(resolveAvatar$ | async; as resolveAvatar) {\n <mat-icon class=\"material-icons-outlined\">{{resolveAvatar(chipModel?.value?.id)}}</mat-icon>\n }\n</ng-template>\n", styles: [".elder-chip-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.elder-trailing-icon{color:var(--mdc-chip-with-trailing-icon-trailing-icon-color);opacity:.54}.cdk-drag-preview{box-sizing:border-box;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}\n"], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
|
|
23290
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: ElderFilterChipTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
23291
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.11", type: ElderFilterChipTemplateComponent, isStandalone: true, selector: "elder-filter-chip-template", inputs: { avatarResolverFn: { classPropertyName: "avatarResolverFn", publicName: "avatarResolverFn", isSignal: true, isRequired: true, transformFunction: null } }, viewQueries: [{ propertyName: "avatarRef", first: true, predicate: ["avatar"], descendants: true }], ngImport: i0, template: "<ng-template #avatar let-chipModel>\n @if(avatarResolverFn(); as resolveAvatar) {\n <mat-icon class=\"material-icons-outlined\">{{resolveAvatar(chipModel?.value?.id)}}</mat-icon>\n }\n</ng-template>\n", styles: [".elder-chip-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.elder-trailing-icon{color:var(--mdc-chip-with-trailing-icon-trailing-icon-color);opacity:.54}.cdk-drag-preview{box-sizing:border-box;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}\n"], dependencies: [{ kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
23311
23292
|
}
|
|
23312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type:
|
|
23293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: ElderFilterChipTemplateComponent, decorators: [{
|
|
23313
23294
|
type: Component,
|
|
23314
|
-
args: [{ selector: 'elder-filter-chip-template', standalone: true, imports: [AsyncPipe, MatIcon], template: "<ng-template #avatar let-chipModel>\n @if(
|
|
23315
|
-
}],
|
|
23295
|
+
args: [{ selector: 'elder-filter-chip-template', standalone: true, imports: [AsyncPipe, MatIcon], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template #avatar let-chipModel>\n @if(avatarResolverFn(); as resolveAvatar) {\n <mat-icon class=\"material-icons-outlined\">{{resolveAvatar(chipModel?.value?.id)}}</mat-icon>\n }\n</ng-template>\n", styles: [".elder-chip-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.elder-trailing-icon{color:var(--mdc-chip-with-trailing-icon-trailing-icon-color);opacity:.54}.cdk-drag-preview{box-sizing:border-box;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}\n"] }]
|
|
23296
|
+
}], propDecorators: { avatarRef: [{
|
|
23316
23297
|
type: ViewChild,
|
|
23317
23298
|
args: ['avatar']
|
|
23318
|
-
}], bodyRef: [{
|
|
23319
|
-
type: ViewChild,
|
|
23320
|
-
args: ['body']
|
|
23321
23299
|
}] } });
|
|
23322
23300
|
|
|
23323
23301
|
class IncludeExcludeState {
|
|
@@ -23326,14 +23304,19 @@ class IncludeExcludeState {
|
|
|
23326
23304
|
this.mode = mode;
|
|
23327
23305
|
}
|
|
23328
23306
|
}
|
|
23329
|
-
var
|
|
23330
|
-
(function (
|
|
23331
|
-
|
|
23332
|
-
|
|
23333
|
-
|
|
23334
|
-
})(
|
|
23307
|
+
var IncludeExcludeValue;
|
|
23308
|
+
(function (IncludeExcludeValue) {
|
|
23309
|
+
IncludeExcludeValue["NEUTRAL"] = "NEUTRAL";
|
|
23310
|
+
IncludeExcludeValue["INCLUDE"] = "INCLUDE";
|
|
23311
|
+
IncludeExcludeValue["EXCLUDE"] = "EXCLUDE";
|
|
23312
|
+
})(IncludeExcludeValue || (IncludeExcludeValue = {}));
|
|
23335
23313
|
class IncludeExcludeSelectionModel {
|
|
23336
|
-
|
|
23314
|
+
/***************************************************************************
|
|
23315
|
+
* *
|
|
23316
|
+
* Constructor *
|
|
23317
|
+
* *
|
|
23318
|
+
**************************************************************************/
|
|
23319
|
+
constructor(strategy) {
|
|
23337
23320
|
/***************************************************************************
|
|
23338
23321
|
* *
|
|
23339
23322
|
* Fields *
|
|
@@ -23341,6 +23324,9 @@ class IncludeExcludeSelectionModel {
|
|
|
23341
23324
|
**************************************************************************/
|
|
23342
23325
|
this.log = LoggerFactory.getLogger(this.constructor.name);
|
|
23343
23326
|
this.stateById$ = new BehaviorSubject(new Map());
|
|
23327
|
+
if (!strategy)
|
|
23328
|
+
throw new Error('strategy is required!');
|
|
23329
|
+
this._strategy = strategy;
|
|
23344
23330
|
}
|
|
23345
23331
|
/***************************************************************************
|
|
23346
23332
|
* *
|
|
@@ -23353,6 +23339,12 @@ class IncludeExcludeSelectionModel {
|
|
|
23353
23339
|
get selection$() {
|
|
23354
23340
|
return this.stateById$.pipe(map(stateMap => Array.from(stateMap.values())));
|
|
23355
23341
|
}
|
|
23342
|
+
get strategy() {
|
|
23343
|
+
return this._strategy;
|
|
23344
|
+
}
|
|
23345
|
+
set strategy(strategy) {
|
|
23346
|
+
this._strategy = strategy;
|
|
23347
|
+
}
|
|
23356
23348
|
/***************************************************************************
|
|
23357
23349
|
* *
|
|
23358
23350
|
* Public API *
|
|
@@ -23361,13 +23353,13 @@ class IncludeExcludeSelectionModel {
|
|
|
23361
23353
|
cycleExisting(id) {
|
|
23362
23354
|
const existingState = this.findStateById(id);
|
|
23363
23355
|
if (existingState) {
|
|
23364
|
-
return this.updateState(id, this.
|
|
23356
|
+
return this.updateState(id, this.nextValueByStrategy(existingState.mode));
|
|
23365
23357
|
}
|
|
23366
23358
|
else {
|
|
23367
23359
|
return null;
|
|
23368
23360
|
}
|
|
23369
23361
|
}
|
|
23370
|
-
initTo(ids,
|
|
23362
|
+
initTo(ids, initialValueOverride) {
|
|
23371
23363
|
const current = this.stateById$.getValue();
|
|
23372
23364
|
const newStates = new Map();
|
|
23373
23365
|
ids.forEach(id => {
|
|
@@ -23375,7 +23367,7 @@ class IncludeExcludeSelectionModel {
|
|
|
23375
23367
|
newStates.set(id, current.get(id));
|
|
23376
23368
|
}
|
|
23377
23369
|
else {
|
|
23378
|
-
newStates.set(id, new IncludeExcludeState(id,
|
|
23370
|
+
newStates.set(id, new IncludeExcludeState(id, initialValueOverride ?? this.initialValueByStrategy()));
|
|
23379
23371
|
}
|
|
23380
23372
|
});
|
|
23381
23373
|
this.stateById$.next(newStates);
|
|
@@ -23408,16 +23400,48 @@ class IncludeExcludeSelectionModel {
|
|
|
23408
23400
|
* Private methods *
|
|
23409
23401
|
* *
|
|
23410
23402
|
**************************************************************************/
|
|
23411
|
-
|
|
23412
|
-
switch (
|
|
23413
|
-
case
|
|
23414
|
-
return
|
|
23415
|
-
case
|
|
23416
|
-
return
|
|
23417
|
-
case IncludeExcludeMode.EXCLUDE:
|
|
23418
|
-
return IncludeExcludeMode.NEUTRAL;
|
|
23403
|
+
initialValueByStrategy() {
|
|
23404
|
+
switch (this._strategy) {
|
|
23405
|
+
case 'FULL_CYCLE':
|
|
23406
|
+
return IncludeExcludeValue.NEUTRAL;
|
|
23407
|
+
case 'TOGGLE':
|
|
23408
|
+
return IncludeExcludeValue.INCLUDE;
|
|
23419
23409
|
default:
|
|
23420
|
-
|
|
23410
|
+
throw new Error('Unsupported cycle strategy: ' + this._strategy);
|
|
23411
|
+
}
|
|
23412
|
+
}
|
|
23413
|
+
nextValueByStrategy(current) {
|
|
23414
|
+
switch (this._strategy) {
|
|
23415
|
+
case 'FULL_CYCLE':
|
|
23416
|
+
return this.nextValueFullCycle(current);
|
|
23417
|
+
case 'TOGGLE':
|
|
23418
|
+
return this.nextValueToggle(current);
|
|
23419
|
+
default:
|
|
23420
|
+
throw new Error('Unsupported cycle strategy: ' + this._strategy);
|
|
23421
|
+
}
|
|
23422
|
+
}
|
|
23423
|
+
nextValueToggle(current) {
|
|
23424
|
+
switch (current) {
|
|
23425
|
+
case IncludeExcludeValue.NEUTRAL:
|
|
23426
|
+
return IncludeExcludeValue.INCLUDE;
|
|
23427
|
+
case IncludeExcludeValue.INCLUDE:
|
|
23428
|
+
return IncludeExcludeValue.EXCLUDE;
|
|
23429
|
+
case IncludeExcludeValue.EXCLUDE:
|
|
23430
|
+
return IncludeExcludeValue.INCLUDE;
|
|
23431
|
+
default:
|
|
23432
|
+
return IncludeExcludeValue.INCLUDE;
|
|
23433
|
+
}
|
|
23434
|
+
}
|
|
23435
|
+
nextValueFullCycle(current) {
|
|
23436
|
+
switch (current) {
|
|
23437
|
+
case IncludeExcludeValue.NEUTRAL:
|
|
23438
|
+
return IncludeExcludeValue.INCLUDE;
|
|
23439
|
+
case IncludeExcludeValue.INCLUDE:
|
|
23440
|
+
return IncludeExcludeValue.EXCLUDE;
|
|
23441
|
+
case IncludeExcludeValue.EXCLUDE:
|
|
23442
|
+
return IncludeExcludeValue.NEUTRAL;
|
|
23443
|
+
default:
|
|
23444
|
+
return IncludeExcludeValue.NEUTRAL;
|
|
23421
23445
|
}
|
|
23422
23446
|
}
|
|
23423
23447
|
toStateMap(list) {
|
|
@@ -23469,11 +23493,11 @@ class ElderChipFilterStyleResolver {
|
|
|
23469
23493
|
resolveChipSpec(filterEntity) {
|
|
23470
23494
|
if (filterEntity) {
|
|
23471
23495
|
switch (filterEntity.mode) {
|
|
23472
|
-
case
|
|
23496
|
+
case IncludeExcludeValue.NEUTRAL:
|
|
23473
23497
|
return this.neutralChipSpec;
|
|
23474
|
-
case
|
|
23498
|
+
case IncludeExcludeValue.INCLUDE:
|
|
23475
23499
|
return this.includedChipSpec;
|
|
23476
|
-
case
|
|
23500
|
+
case IncludeExcludeValue.EXCLUDE:
|
|
23477
23501
|
return this.excludedChipSpec;
|
|
23478
23502
|
default:
|
|
23479
23503
|
return this.neutralChipSpec;
|
|
@@ -23482,11 +23506,11 @@ class ElderChipFilterStyleResolver {
|
|
|
23482
23506
|
}
|
|
23483
23507
|
resolveAvatar(filterEntity) {
|
|
23484
23508
|
switch (filterEntity.mode) {
|
|
23485
|
-
case
|
|
23509
|
+
case IncludeExcludeValue.NEUTRAL:
|
|
23486
23510
|
return 'radio_button_unchecked';
|
|
23487
|
-
case
|
|
23511
|
+
case IncludeExcludeValue.INCLUDE:
|
|
23488
23512
|
return 'task_alt';
|
|
23489
|
-
case
|
|
23513
|
+
case IncludeExcludeValue.EXCLUDE:
|
|
23490
23514
|
return 'block';
|
|
23491
23515
|
default:
|
|
23492
23516
|
return 'circle';
|
|
@@ -24062,16 +24086,14 @@ class ElderSearchInputDirective {
|
|
|
24062
24086
|
* Fields *
|
|
24063
24087
|
* *
|
|
24064
24088
|
**************************************************************************/
|
|
24089
|
+
this.log = LoggerFactory.getLogger(this.constructor.name);
|
|
24065
24090
|
this._queryKey$ = new BehaviorSubject(null);
|
|
24066
24091
|
this._inputConverter = DefaultInputFilterConverter.of(() => this.name);
|
|
24067
|
-
this._name$ = new Observable$1();
|
|
24068
24092
|
this.destroy$ = new Subject();
|
|
24069
|
-
this.log = LoggerFactory.getLogger(this.constructor.name);
|
|
24070
24093
|
this._initialValueDirective = new ElderInitialValueDirective(ngModel);
|
|
24071
24094
|
this._state$ = this.buildInputStateObservable().pipe(
|
|
24072
24095
|
// tap(state => this.log.error('EMIT SEARCH INPUT STATE [' + state.queryKey + ']: ' + state.queryValue + (state.pristine ? '(pristine)' : ''), state))
|
|
24073
24096
|
);
|
|
24074
|
-
this._name$ = this.queryKey$.pipe(map(queryKey => queryKey ? queryKey : this._extractedName));
|
|
24075
24097
|
}
|
|
24076
24098
|
/***************************************************************************
|
|
24077
24099
|
* *
|
|
@@ -24080,11 +24102,13 @@ class ElderSearchInputDirective {
|
|
|
24080
24102
|
**************************************************************************/
|
|
24081
24103
|
ngOnInit() {
|
|
24082
24104
|
this._extractedName = this.extractName();
|
|
24105
|
+
this.updateQueryKey();
|
|
24083
24106
|
this.searchContext.register(this);
|
|
24084
24107
|
}
|
|
24085
24108
|
ngAfterViewInit() {
|
|
24086
24109
|
this._extractedName = this.extractName();
|
|
24087
|
-
this.
|
|
24110
|
+
this.updateQueryKey();
|
|
24111
|
+
this.log.debug(this.queryKey + ' | ' + this.resolvePath);
|
|
24088
24112
|
}
|
|
24089
24113
|
ngOnDestroy() {
|
|
24090
24114
|
this.destroy$.next();
|
|
@@ -24099,13 +24123,14 @@ class ElderSearchInputDirective {
|
|
|
24099
24123
|
* (Optional) Usually the control name is used, this allows a custom query key
|
|
24100
24124
|
*/
|
|
24101
24125
|
set queryKey(value) {
|
|
24102
|
-
this.
|
|
24126
|
+
this._userQueryKey = value;
|
|
24127
|
+
this.updateQueryKey();
|
|
24103
24128
|
}
|
|
24104
24129
|
get queryKey() {
|
|
24105
24130
|
return this._queryKey$.getValue();
|
|
24106
24131
|
}
|
|
24107
24132
|
get queryKey$() {
|
|
24108
|
-
return this._queryKey
|
|
24133
|
+
return this._queryKey$;
|
|
24109
24134
|
}
|
|
24110
24135
|
set inputConverter(inputConverter) {
|
|
24111
24136
|
this._inputConverter = inputConverter;
|
|
@@ -24126,9 +24151,6 @@ class ElderSearchInputDirective {
|
|
|
24126
24151
|
throw new Error('Could not determine the search name key name.' +
|
|
24127
24152
|
' Either specify the name property or explicitly set [elderSearchInputKey].');
|
|
24128
24153
|
}
|
|
24129
|
-
get name$() {
|
|
24130
|
-
return this._name$;
|
|
24131
|
-
}
|
|
24132
24154
|
get value() {
|
|
24133
24155
|
return this.ngModel.value;
|
|
24134
24156
|
}
|
|
@@ -24154,6 +24176,12 @@ class ElderSearchInputDirective {
|
|
|
24154
24176
|
* Private methods *
|
|
24155
24177
|
* *
|
|
24156
24178
|
**************************************************************************/
|
|
24179
|
+
updateQueryKey() {
|
|
24180
|
+
const newKey = this._userQueryKey ?? this._extractedName;
|
|
24181
|
+
if (this._queryKey$.getValue() !== newKey) {
|
|
24182
|
+
this._queryKey$.next(newKey);
|
|
24183
|
+
}
|
|
24184
|
+
}
|
|
24157
24185
|
setInputValue(queryString) {
|
|
24158
24186
|
const value = this.convertQueryStringToRawModelValue(queryString);
|
|
24159
24187
|
this._initialValueDirective.setValue(value);
|
|
@@ -24326,29 +24354,36 @@ class ElderChipsFilterDirective {
|
|
|
24326
24354
|
* *
|
|
24327
24355
|
**************************************************************************/
|
|
24328
24356
|
this.log = LoggerFactory.getLogger(this.constructor.name);
|
|
24329
|
-
this.selectionModel = new IncludeExcludeSelectionModel();
|
|
24357
|
+
this.selectionModel = new IncludeExcludeSelectionModel('FULL_CYCLE');
|
|
24330
24358
|
this.chipStyleResolver = new ElderChipFilterStyleResolver();
|
|
24331
24359
|
this.setupFilterChips();
|
|
24332
24360
|
this.setupElderMultiSelectChipsListeners();
|
|
24333
24361
|
}
|
|
24362
|
+
/***************************************************************************
|
|
24363
|
+
* *
|
|
24364
|
+
* Properties *
|
|
24365
|
+
* *
|
|
24366
|
+
**************************************************************************/
|
|
24367
|
+
set cycleStrategy(strategy) {
|
|
24368
|
+
this.selectionModel.strategy = strategy;
|
|
24369
|
+
}
|
|
24334
24370
|
/***************************************************************************
|
|
24335
24371
|
* *
|
|
24336
24372
|
* Private methods *
|
|
24337
24373
|
* *
|
|
24338
24374
|
**************************************************************************/
|
|
24339
24375
|
setupFilterChips() {
|
|
24340
|
-
const
|
|
24341
|
-
|
|
24342
|
-
|
|
24343
|
-
ref.instance.resolveAvatar$,
|
|
24344
|
-
ref.instance.avatarRef$
|
|
24345
|
-
])
|
|
24346
|
-
.pipe(takeUntilDestroyed(this.destroyRef), filter(([resolveAvatar, avatarRef]) => !!resolveAvatar && !!avatarRef))
|
|
24347
|
-
.subscribe(([resolveAvatar, avatarRef]) => {
|
|
24376
|
+
const chipTemplate = this.createFilterChipTemplate();
|
|
24377
|
+
this.elderMultiSelectChips.chipSpecFn = (entity) => this.resolveChipSpec(entity);
|
|
24378
|
+
chipTemplate.avatarRef$.pipe(takeUntilDestroyed(this.destroyRef), filter((avatarRef) => !!avatarRef), first()).subscribe((avatarRef) => {
|
|
24348
24379
|
this.elderMultiSelectChips.chipAvatarTemplate = avatarRef;
|
|
24349
|
-
this.elderMultiSelectChips.chipSpecFn = (entity) => this.resolveChipSpec(entity);
|
|
24350
24380
|
});
|
|
24351
24381
|
}
|
|
24382
|
+
createFilterChipTemplate() {
|
|
24383
|
+
const ref = this.vcr.createComponent(ElderFilterChipTemplateComponent);
|
|
24384
|
+
ref.setInput('avatarResolverFn', (id) => this.resolveAvatar(id));
|
|
24385
|
+
return ref.instance;
|
|
24386
|
+
}
|
|
24352
24387
|
setupElderMultiSelectChipsListeners() {
|
|
24353
24388
|
this.elderMultiSelectChips.currentClicked
|
|
24354
24389
|
.pipe(takeUntilDestroyed(this.destroyRef))
|
|
@@ -24381,7 +24416,7 @@ class ElderChipsFilterDirective {
|
|
|
24381
24416
|
return this.selectionModel.findStateById(id);
|
|
24382
24417
|
}
|
|
24383
24418
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: ElderChipsFilterDirective, deps: [{ token: ElderMultiSelectChipsComponent }, { token: ElderSearchInputDirective }, { token: i0.ViewContainerRef }, { token: i0.DestroyRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
24384
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.11", type: ElderChipsFilterDirective, isStandalone: true, selector: "[elderChipsFilter]", ngImport: i0 }); }
|
|
24419
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.11", type: ElderChipsFilterDirective, isStandalone: true, selector: "[elderChipsFilter]", inputs: { cycleStrategy: "cycleStrategy" }, ngImport: i0 }); }
|
|
24385
24420
|
}
|
|
24386
24421
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: ElderChipsFilterDirective, decorators: [{
|
|
24387
24422
|
type: Directive,
|
|
@@ -24389,7 +24424,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
|
|
|
24389
24424
|
selector: '[elderChipsFilter]',
|
|
24390
24425
|
standalone: true
|
|
24391
24426
|
}]
|
|
24392
|
-
}], ctorParameters: () => [{ type: ElderMultiSelectChipsComponent }, { type: ElderSearchInputDirective }, { type: i0.ViewContainerRef }, { type: i0.DestroyRef }]
|
|
24427
|
+
}], ctorParameters: () => [{ type: ElderMultiSelectChipsComponent }, { type: ElderSearchInputDirective }, { type: i0.ViewContainerRef }, { type: i0.DestroyRef }], propDecorators: { cycleStrategy: [{
|
|
24428
|
+
type: Input
|
|
24429
|
+
}] } });
|
|
24393
24430
|
|
|
24394
24431
|
/***************************************************************************
|
|
24395
24432
|
* *
|
|
@@ -24506,7 +24543,7 @@ class IncludeExcludeInputConverter {
|
|
|
24506
24543
|
let splitValues = null;
|
|
24507
24544
|
if (FilterCommons.isArrayAndNotEmpty(value)) {
|
|
24508
24545
|
const values = FilterCommons.getValuesIfArrayElseEmpty(value);
|
|
24509
|
-
splitValues = values.filter(value => this.selectionModel.isInMode(value,
|
|
24546
|
+
splitValues = values.filter(value => this.selectionModel.isInMode(value, IncludeExcludeValue.INCLUDE));
|
|
24510
24547
|
}
|
|
24511
24548
|
return this.validateArrayAndReturn(splitValues);
|
|
24512
24549
|
}
|
|
@@ -24515,7 +24552,7 @@ class IncludeExcludeInputConverter {
|
|
|
24515
24552
|
if (FilterCommons.isArrayAndNotEmpty(value)) {
|
|
24516
24553
|
const values = FilterCommons.getValuesIfArrayElseEmpty(value);
|
|
24517
24554
|
splitValues = values
|
|
24518
|
-
.filter(value => this.selectionModel.isInMode(value,
|
|
24555
|
+
.filter(value => this.selectionModel.isInMode(value, IncludeExcludeValue.EXCLUDE));
|
|
24519
24556
|
}
|
|
24520
24557
|
return this.validateArrayAndReturn(splitValues);
|
|
24521
24558
|
}
|
|
@@ -24529,8 +24566,8 @@ class IncludeExcludeInputConverter {
|
|
|
24529
24566
|
}
|
|
24530
24567
|
updateSelectionModel(includeValue, excludeValue) {
|
|
24531
24568
|
const updates = [
|
|
24532
|
-
...this.buildNewSelectionStates(includeValue,
|
|
24533
|
-
...this.buildNewSelectionStates(excludeValue,
|
|
24569
|
+
...this.buildNewSelectionStates(includeValue, IncludeExcludeValue.INCLUDE),
|
|
24570
|
+
...this.buildNewSelectionStates(excludeValue, IncludeExcludeValue.EXCLUDE),
|
|
24534
24571
|
];
|
|
24535
24572
|
this.selectionModel.updateStates(updates);
|
|
24536
24573
|
}
|
|
@@ -24585,7 +24622,7 @@ class ElderSearchIncludeExcludeDirective {
|
|
|
24585
24622
|
**************************************************************************/
|
|
24586
24623
|
setupSearchQueryTransforms() {
|
|
24587
24624
|
combineLatest([
|
|
24588
|
-
this.elderSearchInput.
|
|
24625
|
+
this.elderSearchInput.queryKey$,
|
|
24589
24626
|
this._includeSuffix$,
|
|
24590
24627
|
this._excludeSuffix$
|
|
24591
24628
|
])
|
|
@@ -24646,7 +24683,7 @@ class ElderSelectModule {
|
|
|
24646
24683
|
ElderMultiSelectAllInitialDirective,
|
|
24647
24684
|
ElderAutoSelectSuggestFirstDirective,
|
|
24648
24685
|
ElderChipsFilterDirective,
|
|
24649
|
-
|
|
24686
|
+
ElderFilterChipTemplateComponent,
|
|
24650
24687
|
ElderSearchIncludeExcludeDirective], exports: [ElderSelectComponent,
|
|
24651
24688
|
ElderSelectValueDirective,
|
|
24652
24689
|
TemplatedSelectionDialogComponent,
|
|
@@ -24663,7 +24700,7 @@ class ElderSelectModule {
|
|
|
24663
24700
|
ElderMultiSelectAllInitialDirective,
|
|
24664
24701
|
ElderAutoSelectSuggestFirstDirective,
|
|
24665
24702
|
ElderChipsFilterDirective,
|
|
24666
|
-
|
|
24703
|
+
ElderFilterChipTemplateComponent,
|
|
24667
24704
|
ElderSearchIncludeExcludeDirective] }); }
|
|
24668
24705
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: ElderSelectModule, imports: [CommonModule, FormsModule, ReactiveFormsModule,
|
|
24669
24706
|
MatFormFieldModule,
|
|
@@ -24682,7 +24719,7 @@ class ElderSelectModule {
|
|
|
24682
24719
|
TemplatedSelectionDialogComponent,
|
|
24683
24720
|
ElderMultiSelectChipsComponent,
|
|
24684
24721
|
ElderMultiSelectChipOptionsComponent,
|
|
24685
|
-
|
|
24722
|
+
ElderFilterChipTemplateComponent] }); }
|
|
24686
24723
|
}
|
|
24687
24724
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: ElderSelectModule, decorators: [{
|
|
24688
24725
|
type: NgModule,
|
|
@@ -24719,7 +24756,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
|
|
|
24719
24756
|
ElderMultiSelectAllInitialDirective,
|
|
24720
24757
|
ElderAutoSelectSuggestFirstDirective,
|
|
24721
24758
|
ElderChipsFilterDirective,
|
|
24722
|
-
|
|
24759
|
+
ElderFilterChipTemplateComponent,
|
|
24723
24760
|
ElderSearchIncludeExcludeDirective
|
|
24724
24761
|
],
|
|
24725
24762
|
exports: [
|
|
@@ -24739,7 +24776,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
|
|
|
24739
24776
|
ElderMultiSelectAllInitialDirective,
|
|
24740
24777
|
ElderAutoSelectSuggestFirstDirective,
|
|
24741
24778
|
ElderChipsFilterDirective,
|
|
24742
|
-
|
|
24779
|
+
ElderFilterChipTemplateComponent,
|
|
24743
24780
|
ElderSearchIncludeExcludeDirective,
|
|
24744
24781
|
]
|
|
24745
24782
|
}]
|
|
@@ -33322,5 +33359,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
|
|
|
33322
33359
|
* Generated bundle index. Do not edit.
|
|
33323
33360
|
*/
|
|
33324
33361
|
|
|
33325
|
-
export { ActivationEventSource, Arrays, AuditedEntity, AutoStartSpec, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, ComparatorBuilder, ConfirmDialogConfig, ContinuableListing, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceChangeType, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteManyDirective, ElderAutocompleteModule, ElderBadgeChipAvatarDirective, ElderBadgeChipDirective, ElderBadgeComponent, ElderBadgeDirective, ElderBadgeModule, ElderBlobViewerComponent, ElderBreadCrumbsComponent, ElderBreadCrumbsModule, ElderButtonGroupComponent, ElderButtonGroupModule, ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardHeaderComponent, ElderCardModule, ElderCardOrganizerComponent, ElderCardOrganizerModule, ElderCardPanelComponent, ElderCardStackComponent, ElderCardSubtitleDirective, ElderCardTitleDirective, ElderCheckboxState, ElderChipLabelDirective, ElderChipListSelectComponent, ElderChipListSelectModule, ElderChipsFilterDirective, ElderChipsModule, ElderClearSelectDirective, ElderClipboardPutDirective, ElderClipboardService, ElderConfirmDialogComponent, ElderConnectivityModule, ElderConnectivityService, ElderContainersModule, ElderCsvExportBtnComponent, ElderCsvModule, ElderCurrencyModule, ElderCurrencyPipe, ElderDataCommonModule, ElderDataToolbarComponent, ElderDataTransferModule, ElderDataTransferService, ElderDataViewBaseComponent, 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, ElderFilterChipTemplate, ElderFormFieldControlBase, ElderFormFieldDenseDirective, ElderFormFieldLabelDirective, ElderFormFieldNoHintDirective, ElderFormFieldNoSpinnerDirective, ElderFormsDirectivesModule, ElderFormsModule, ElderFromFieldBase, ElderFromFieldEntityBase, ElderFromFieldMultiEntityBase, ElderGlobalSearchComponent, ElderGlobalSearchModule, ElderGlobalSearchService, ElderGridComponent, ElderGridModule, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderHttpClient, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageModule, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectFormField, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPanelComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityModule, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRepeatPipe, ElderRepeatPipeLegacy, 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, ElderSingleSortComponent, ElderStackCardDirective, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderSvgViewerComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableExtensionDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableProviders, ElderTableRootDirective, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTrimPipe, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderViewersModule, 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, IncludeExcludeMode, IncludeExcludeSelectionModel, IncludeExcludeState, IndexedEntities, InternalRestClientConfig, Interval, IsoDurationPipe, IsoIntervalFormatUtil, IsoIntervalParsePipe, IsoIntervalPipe, ItemActivationEvent, ItemActivationOptions, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalListDataSource, LocalPagedDataSource, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, MultiModelBaseComponent, NextNumberUtil, Objects, OnlineStatus, Page, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, SearchQuery, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, Sort, SortOption, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TemplateCompositeControl, TemplatedSelectionDialogComponent, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueWrapper, ViewProviders, WeightPipe, alphaNumStringComparator, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createSelectionModel, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, proxyControlContainer, registerLocale, runInZone, themeInit };
|
|
33362
|
+
export { ActivationEventSource, Arrays, AuditedEntity, AutoStartSpec, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, ComparatorBuilder, ConfirmDialogConfig, ContinuableListing, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceChangeType, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteManyDirective, ElderAutocompleteModule, ElderBadgeChipAvatarDirective, ElderBadgeChipDirective, ElderBadgeComponent, ElderBadgeDirective, ElderBadgeModule, ElderBlobViewerComponent, ElderBreadCrumbsComponent, ElderBreadCrumbsModule, ElderButtonGroupComponent, ElderButtonGroupModule, ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardHeaderComponent, ElderCardModule, ElderCardOrganizerComponent, ElderCardOrganizerModule, ElderCardPanelComponent, ElderCardStackComponent, ElderCardSubtitleDirective, ElderCardTitleDirective, ElderCheckboxState, ElderChipLabelDirective, ElderChipListSelectComponent, ElderChipListSelectModule, ElderChipsFilterDirective, ElderChipsModule, ElderClearSelectDirective, ElderClipboardPutDirective, ElderClipboardService, ElderConfirmDialogComponent, ElderConnectivityModule, ElderConnectivityService, ElderContainersModule, ElderCsvExportBtnComponent, ElderCsvModule, ElderCurrencyModule, ElderCurrencyPipe, ElderDataCommonModule, ElderDataToolbarComponent, ElderDataTransferModule, ElderDataTransferService, ElderDataViewBaseComponent, 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, ElderGlobalSearchComponent, ElderGlobalSearchModule, ElderGlobalSearchService, ElderGridComponent, ElderGridModule, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderHttpClient, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageModule, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectFormField, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPanelComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityModule, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRepeatPipe, ElderRepeatPipeLegacy, 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, ElderSingleSortComponent, ElderStackCardDirective, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderSvgViewerComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableExtensionDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableProviders, ElderTableRootDirective, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTrimPipe, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderViewersModule, 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, LocalListDataSource, LocalPagedDataSource, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, MultiModelBaseComponent, NextNumberUtil, Objects, OnlineStatus, Page, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, SearchQuery, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, Sort, SortOption, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TemplateCompositeControl, TemplatedSelectionDialogComponent, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueWrapper, ViewProviders, WeightPipe, alphaNumStringComparator, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createSelectionModel, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, proxyControlContainer, registerLocale, runInZone, themeInit };
|
|
33326
33363
|
//# sourceMappingURL=elderbyte-ngx-starter.mjs.map
|