@elderbyte/ngx-starter 21.12.5 → 21.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -515,15 +515,12 @@ class PeriodDuration {
|
|
|
515
515
|
const startDate = startInclusive.query(TemporalQueries.localDate());
|
|
516
516
|
const endDate = endExclusive.query(TemporalQueries.localDate());
|
|
517
517
|
let period = Period.ZERO;
|
|
518
|
-
// eslint-disable-next-line eqeqeq
|
|
519
518
|
if (startDate != null && endDate != null) {
|
|
520
519
|
period = Period.between(startDate, endDate);
|
|
521
520
|
}
|
|
522
521
|
let startTime = startInclusive.query(TemporalQueries.localTime());
|
|
523
522
|
let endTime = endExclusive.query(TemporalQueries.localTime());
|
|
524
|
-
// eslint-disable-next-line eqeqeq
|
|
525
523
|
startTime = startTime != null ? startTime : LocalTime.MIDNIGHT;
|
|
526
|
-
// eslint-disable-next-line eqeqeq
|
|
527
524
|
endTime = endTime != null ? endTime : LocalTime.MIDNIGHT;
|
|
528
525
|
const duration = Duration.between(startTime, endTime);
|
|
529
526
|
return PeriodDuration.of(period, duration);
|
|
@@ -979,7 +976,6 @@ class ElderRoundPipe {
|
|
|
979
976
|
* defaults to 0.
|
|
980
977
|
*/
|
|
981
978
|
transform(value, fractionDigits) {
|
|
982
|
-
// eslint-disable-next-line eqeqeq
|
|
983
979
|
if (value == null) {
|
|
984
980
|
return null;
|
|
985
981
|
}
|
|
@@ -1555,7 +1551,6 @@ class IsoIntervalFormatUtil {
|
|
|
1555
1551
|
return IsoIntervalFormatUtil.formatDate(instant.toEpochMilli(), format, timezone, locale);
|
|
1556
1552
|
}
|
|
1557
1553
|
static formatDate(value, format, timezone, locale) {
|
|
1558
|
-
// eslint-disable-next-line eqeqeq
|
|
1559
1554
|
if (value == null || value === '' || value !== value) {
|
|
1560
1555
|
// last part filters out NaN values
|
|
1561
1556
|
return null;
|
|
@@ -5599,7 +5594,6 @@ class DataContextLifeCycleBinding {
|
|
|
5599
5594
|
**************************************************************************/
|
|
5600
5595
|
constructor(_dataContext) {
|
|
5601
5596
|
this._dataContext = _dataContext;
|
|
5602
|
-
// eslint-disable-next-line eqeqeq
|
|
5603
5597
|
if (_dataContext == null) {
|
|
5604
5598
|
throw new Error('dataContext must not be null!');
|
|
5605
5599
|
}
|
|
@@ -5635,7 +5629,6 @@ class RequiredFilterEvaluator {
|
|
|
5635
5629
|
**************************************************************************/
|
|
5636
5630
|
constructor(filterContext, requiredFilters) {
|
|
5637
5631
|
this._requiredFilters = new BehaviorSubject([]);
|
|
5638
|
-
// eslint-disable-next-line eqeqeq
|
|
5639
5632
|
if (filterContext == null) {
|
|
5640
5633
|
throw new Error('filterContext must not be null!');
|
|
5641
5634
|
}
|
|
@@ -5723,7 +5716,6 @@ class DataContextAutoStarter extends DataContextLifeCycleBinding {
|
|
|
5723
5716
|
* *
|
|
5724
5717
|
**************************************************************************/
|
|
5725
5718
|
this.logger = LoggerFactory.getLogger(this.constructor.name);
|
|
5726
|
-
// eslint-disable-next-line eqeqeq
|
|
5727
5719
|
if (_autoStartSpec == null) {
|
|
5728
5720
|
throw new Error('autoStartSpec must not be null!');
|
|
5729
5721
|
}
|
|
@@ -8292,12 +8284,10 @@ class NextNumberUtil {
|
|
|
8292
8284
|
const numberParts = numberStr.match(numberPartsPattern);
|
|
8293
8285
|
let nextNumberPart = null;
|
|
8294
8286
|
let i = numberParts.length;
|
|
8295
|
-
// eslint-disable-next-line eqeqeq
|
|
8296
8287
|
while (nextNumberPart == null && i > 0) {
|
|
8297
8288
|
i--;
|
|
8298
8289
|
nextNumberPart = this.nextPartialNumber(numberParts[i]);
|
|
8299
8290
|
}
|
|
8300
|
-
// eslint-disable-next-line eqeqeq
|
|
8301
8291
|
if (nextNumberPart != null) {
|
|
8302
8292
|
const partToReplace = numberParts[i];
|
|
8303
8293
|
const startIndex = numberStr.lastIndexOf(partToReplace);
|
|
@@ -8305,7 +8295,6 @@ class NextNumberUtil {
|
|
|
8305
8295
|
nextNumber =
|
|
8306
8296
|
numberStr.substr(0, startIndex) + nextNumberPart + numberStr.substr(startIndex + length);
|
|
8307
8297
|
}
|
|
8308
|
-
// eslint-disable-next-line eqeqeq
|
|
8309
8298
|
return nextNumber != null ? nextNumber : '9999';
|
|
8310
8299
|
}
|
|
8311
8300
|
/***************************************************************************
|
|
@@ -8343,7 +8332,6 @@ class NextNumberUtil {
|
|
|
8343
8332
|
}
|
|
8344
8333
|
else {
|
|
8345
8334
|
let i = numberStr.length;
|
|
8346
|
-
// eslint-disable-next-line eqeqeq
|
|
8347
8335
|
while (result == null && i > 0) {
|
|
8348
8336
|
const letter = numberStr.charAt(i - 1);
|
|
8349
8337
|
if (letter.toLowerCase() !== 'z') {
|
|
@@ -10517,9 +10505,7 @@ class ThemeSpec {
|
|
|
10517
10505
|
this.name = name;
|
|
10518
10506
|
this.cssClass = cssClass;
|
|
10519
10507
|
this.dark = dark;
|
|
10520
|
-
// eslint-disable-next-line eqeqeq
|
|
10521
10508
|
this.heroBackground = heroBackground != null ? heroBackground : dark ? undefined : 'primary';
|
|
10522
|
-
// eslint-disable-next-line eqeqeq
|
|
10523
10509
|
this.heroIconColor = heroIconColor != null ? heroIconColor : dark ? 'primary' : undefined;
|
|
10524
10510
|
}
|
|
10525
10511
|
}
|
|
@@ -11585,7 +11571,6 @@ class FileSystemApi {
|
|
|
11585
11571
|
return from(FileSystemApi.getHandlesFromDirectoryAsync(dirHandle));
|
|
11586
11572
|
}
|
|
11587
11573
|
static buildRelativeParent(fileOrDirHandle, rootDirectory) {
|
|
11588
|
-
// eslint-disable-next-line eqeqeq
|
|
11589
11574
|
if (rootDirectory == null) {
|
|
11590
11575
|
return of(undefined);
|
|
11591
11576
|
}
|
|
@@ -11678,7 +11663,6 @@ class FileEntry {
|
|
|
11678
11663
|
* Returns a string which specifies the file's path relative to the directory selected by the user.
|
|
11679
11664
|
*/
|
|
11680
11665
|
static buildRelativePath(relativeParent, file) {
|
|
11681
|
-
// eslint-disable-next-line eqeqeq
|
|
11682
11666
|
if (relativeParent != null) {
|
|
11683
11667
|
return relativeParent + '/' + file.name;
|
|
11684
11668
|
}
|
|
@@ -13984,7 +13968,6 @@ class DataViewOptionsProviderBinding {
|
|
|
13984
13968
|
* *
|
|
13985
13969
|
**************************************************************************/
|
|
13986
13970
|
this.log = LoggerFactory.getLogger(this.constructor.name);
|
|
13987
|
-
// eslint-disable-next-line eqeqeq
|
|
13988
13971
|
if (_dataViewBaseComponent == null) {
|
|
13989
13972
|
throw new Error('dataViewBaseComponent must not be null!');
|
|
13990
13973
|
}
|
|
@@ -25198,7 +25181,6 @@ class ElderRequiredQuantityValidator {
|
|
|
25198
25181
|
* *
|
|
25199
25182
|
**************************************************************************/
|
|
25200
25183
|
isQuantityDefined(qty) {
|
|
25201
|
-
// eslint-disable-next-line eqeqeq
|
|
25202
25184
|
if (qty?.value != null && qty?.unit != null) {
|
|
25203
25185
|
return !(this._requiredIgnoreZero && qty.value === 0);
|
|
25204
25186
|
}
|
|
@@ -25262,11 +25244,9 @@ class ElderQuantityRangeValidator {
|
|
|
25262
25244
|
validate(c) {
|
|
25263
25245
|
let result = {};
|
|
25264
25246
|
const qty = c.value;
|
|
25265
|
-
// eslint-disable-next-line eqeqeq
|
|
25266
25247
|
if (this._min != null && !this.isAtLeast(qty, this._min)) {
|
|
25267
25248
|
result = Object.assign(result, { min: { min: this._min, actual: qty?.value } });
|
|
25268
25249
|
}
|
|
25269
|
-
// eslint-disable-next-line eqeqeq
|
|
25270
25250
|
if (this._max != null && !this.isAtMost(qty, this._max)) {
|
|
25271
25251
|
result = Object.assign(result, { max: { max: this._max, actual: qty?.value } });
|
|
25272
25252
|
}
|
|
@@ -25344,7 +25324,6 @@ class ElderRequiredDimensionsValidator {
|
|
|
25344
25324
|
* *
|
|
25345
25325
|
**************************************************************************/
|
|
25346
25326
|
isDimensionsDefined(dimensions) {
|
|
25347
|
-
// eslint-disable-next-line eqeqeq
|
|
25348
25327
|
if (dimensions?.unit != null) {
|
|
25349
25328
|
if (!this.isValueDefined(dimensions.length)) {
|
|
25350
25329
|
return false;
|
|
@@ -25360,7 +25339,6 @@ class ElderRequiredDimensionsValidator {
|
|
|
25360
25339
|
return false;
|
|
25361
25340
|
}
|
|
25362
25341
|
isValueDefined(value) {
|
|
25363
|
-
// eslint-disable-next-line eqeqeq
|
|
25364
25342
|
if (value != null) {
|
|
25365
25343
|
return !(this._requiredIgnoreZero && value === 0);
|
|
25366
25344
|
}
|
|
@@ -25482,24 +25460,54 @@ class ReplacementResult {
|
|
|
25482
25460
|
}
|
|
25483
25461
|
}
|
|
25484
25462
|
class WordPositionFinder {
|
|
25463
|
+
/**
|
|
25464
|
+
* Finds the word at the given caret position
|
|
25465
|
+
*/
|
|
25485
25466
|
findWord(text, position) {
|
|
25486
|
-
if (position
|
|
25487
|
-
|
|
25488
|
-
const left = text.slice(0, position).search(/\S+$/);
|
|
25489
|
-
let right = text.slice(position).search(/\s/);
|
|
25490
|
-
// The last word in the string is a special case.
|
|
25491
|
-
if (right < 0) {
|
|
25492
|
-
right = text.length;
|
|
25493
|
-
}
|
|
25494
|
-
else {
|
|
25495
|
-
right += position;
|
|
25496
|
-
}
|
|
25497
|
-
const word = text.substring(left, right);
|
|
25498
|
-
return new TextRange(left, right, word);
|
|
25467
|
+
if (this.isInvalidCaretPosition(position)) {
|
|
25468
|
+
return this.endOfTextRange(text);
|
|
25499
25469
|
}
|
|
25500
|
-
|
|
25501
|
-
|
|
25470
|
+
const caret = this.clampCaret(position, text.length);
|
|
25471
|
+
if (this.isStartingNewWordAtCaret(text, caret)) {
|
|
25472
|
+
return this.emptyWordRange(caret);
|
|
25473
|
+
}
|
|
25474
|
+
const { start, end } = this.expandWordBounds(text, caret);
|
|
25475
|
+
return new TextRange(start, end, text.substring(start, end));
|
|
25476
|
+
}
|
|
25477
|
+
isInvalidCaretPosition(position) {
|
|
25478
|
+
return position == null || position < 0;
|
|
25479
|
+
}
|
|
25480
|
+
endOfTextRange(text) {
|
|
25481
|
+
return new TextRange(text.length, text.length, undefined);
|
|
25482
|
+
}
|
|
25483
|
+
clampCaret(position, textLength) {
|
|
25484
|
+
return Math.min(position, textLength);
|
|
25485
|
+
}
|
|
25486
|
+
isStartingNewWordAtCaret(text, caret) {
|
|
25487
|
+
return this.isCaretOnWhitespace(text, caret) || this.isCaretAfterTrailingWhitespace(text, caret);
|
|
25488
|
+
}
|
|
25489
|
+
isCaretOnWhitespace(text, caret) {
|
|
25490
|
+
return caret < text.length && this.isWhitespace(text[caret]);
|
|
25491
|
+
}
|
|
25492
|
+
isCaretAfterTrailingWhitespace(text, caret) {
|
|
25493
|
+
return caret > 0 && caret === text.length && this.isWhitespace(text[caret - 1]);
|
|
25494
|
+
}
|
|
25495
|
+
emptyWordRange(position) {
|
|
25496
|
+
return new TextRange(position, position, '');
|
|
25497
|
+
}
|
|
25498
|
+
expandWordBounds(text, caret) {
|
|
25499
|
+
let start = caret;
|
|
25500
|
+
let end = caret;
|
|
25501
|
+
while (start > 0 && !this.isWhitespace(text[start - 1])) {
|
|
25502
|
+
start--;
|
|
25503
|
+
}
|
|
25504
|
+
while (end < text.length && !this.isWhitespace(text[end])) {
|
|
25505
|
+
end++;
|
|
25502
25506
|
}
|
|
25507
|
+
return { start, end };
|
|
25508
|
+
}
|
|
25509
|
+
isWhitespace(char) {
|
|
25510
|
+
return /\s/.test(char);
|
|
25503
25511
|
}
|
|
25504
25512
|
replaceWord(text, position, replacement) {
|
|
25505
25513
|
const current = this.findWord(text, position);
|
|
@@ -25526,7 +25534,7 @@ class WordPositionFinder {
|
|
|
25526
25534
|
}
|
|
25527
25535
|
}
|
|
25528
25536
|
|
|
25529
|
-
class
|
|
25537
|
+
class ElderWordAutocompleteDirective {
|
|
25530
25538
|
/***************************************************************************
|
|
25531
25539
|
* *
|
|
25532
25540
|
* Constructor *
|
|
@@ -25637,20 +25645,18 @@ class ElderAutocompleteManyDirective {
|
|
|
25637
25645
|
* *
|
|
25638
25646
|
**************************************************************************/
|
|
25639
25647
|
extractWordAtCursor(value) {
|
|
25640
|
-
|
|
25641
|
-
|
|
25642
|
-
return this.extractWordFrom(value, cursor);
|
|
25643
|
-
}
|
|
25644
|
-
else {
|
|
25648
|
+
const cursor = this.cursorPosition;
|
|
25649
|
+
if (cursor == null) {
|
|
25645
25650
|
return null;
|
|
25646
25651
|
}
|
|
25652
|
+
return this.extractWordFrom(value, cursor);
|
|
25647
25653
|
}
|
|
25648
25654
|
rememberCursorPosition() {
|
|
25649
25655
|
this.cursorBeforeAutocomplete = this.cursorPosition;
|
|
25650
25656
|
}
|
|
25651
25657
|
extractWordFrom(text, position) {
|
|
25652
25658
|
const word = this.wordFinder.findWord(text, position);
|
|
25653
|
-
return word.value;
|
|
25659
|
+
return word.value ?? '';
|
|
25654
25660
|
}
|
|
25655
25661
|
updateSuggestions(value) {
|
|
25656
25662
|
const filters = [...this.filters, new Filter(this.queryFilter, value)];
|
|
@@ -25693,13 +25699,13 @@ class ElderAutocompleteManyDirective {
|
|
|
25693
25699
|
// The wordAtCursor might not be the full autocompleted phrase (if there are multiple words)
|
|
25694
25700
|
this.cursorPosition = wordAtCursor.start + autocompletedPhrase.length;
|
|
25695
25701
|
}
|
|
25696
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type:
|
|
25697
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.15", type:
|
|
25702
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderWordAutocompleteDirective, deps: [{ token: i1$8.MatAutocompleteTrigger }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
25703
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.15", type: ElderWordAutocompleteDirective, isStandalone: true, selector: "[elderWordAutocomplete]", inputs: { queryFilter: "queryFilter", filters: "filters", sorts: "sorts", textProperty: "textProperty", textPropertyResolverFn: "textPropertyResolverFn", autocomplete: ["elderWordAutocomplete", "autocomplete"] }, host: { listeners: { "keyup": "onKeyUp($event)" } }, ngImport: i0 }); }
|
|
25698
25704
|
}
|
|
25699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type:
|
|
25705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderWordAutocompleteDirective, decorators: [{
|
|
25700
25706
|
type: Directive,
|
|
25701
25707
|
args: [{
|
|
25702
|
-
selector: '[
|
|
25708
|
+
selector: '[elderWordAutocomplete]',
|
|
25703
25709
|
}]
|
|
25704
25710
|
}], ctorParameters: () => [{ type: i1$8.MatAutocompleteTrigger }, { type: i0.ElementRef }], propDecorators: { queryFilter: [{
|
|
25705
25711
|
type: Input
|
|
@@ -25713,7 +25719,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
25713
25719
|
type: Input
|
|
25714
25720
|
}], autocomplete: [{
|
|
25715
25721
|
type: Input,
|
|
25716
|
-
args: ['
|
|
25722
|
+
args: ['elderWordAutocomplete']
|
|
25717
25723
|
}], onKeyUp: [{
|
|
25718
25724
|
type: HostListener,
|
|
25719
25725
|
args: ['keyup', ['$event']]
|
|
@@ -25730,9 +25736,9 @@ class ElderAutocompleteModule {
|
|
|
25730
25736
|
MatProgressBarModule,
|
|
25731
25737
|
ElderSuggestionPanelComponent,
|
|
25732
25738
|
ElderAutocompleteDirective,
|
|
25733
|
-
|
|
25739
|
+
ElderWordAutocompleteDirective], exports: [ElderSuggestionPanelComponent,
|
|
25734
25740
|
ElderAutocompleteDirective,
|
|
25735
|
-
|
|
25741
|
+
ElderWordAutocompleteDirective] }); }
|
|
25736
25742
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderAutocompleteModule, imports: [CommonModule,
|
|
25737
25743
|
ReactiveFormsModule,
|
|
25738
25744
|
MatInputModule,
|
|
@@ -25748,7 +25754,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
25748
25754
|
exports: [
|
|
25749
25755
|
ElderSuggestionPanelComponent,
|
|
25750
25756
|
ElderAutocompleteDirective,
|
|
25751
|
-
|
|
25757
|
+
ElderWordAutocompleteDirective,
|
|
25752
25758
|
],
|
|
25753
25759
|
imports: [
|
|
25754
25760
|
CommonModule,
|
|
@@ -25760,7 +25766,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
25760
25766
|
MatProgressBarModule,
|
|
25761
25767
|
ElderSuggestionPanelComponent,
|
|
25762
25768
|
ElderAutocompleteDirective,
|
|
25763
|
-
|
|
25769
|
+
ElderWordAutocompleteDirective,
|
|
25764
25770
|
],
|
|
25765
25771
|
}]
|
|
25766
25772
|
}] });
|
|
@@ -36266,7 +36272,6 @@ class ElderProgressBarComponent {
|
|
|
36266
36272
|
* *
|
|
36267
36273
|
**************************************************************************/
|
|
36268
36274
|
set value(value) {
|
|
36269
|
-
// eslint-disable-next-line eqeqeq
|
|
36270
36275
|
if (value != null) {
|
|
36271
36276
|
this.setSingleBarValue(value);
|
|
36272
36277
|
}
|
|
@@ -39304,7 +39309,6 @@ class KafentEventService {
|
|
|
39304
39309
|
' and auth-token param: ' +
|
|
39305
39310
|
this.authTokenParam);
|
|
39306
39311
|
this.kafentEventStream = eventStreams.find((es) => es.transport === this.transport);
|
|
39307
|
-
// eslint-disable-next-line eqeqeq
|
|
39308
39312
|
if (this.kafentEventStream == null) {
|
|
39309
39313
|
throw new Error('Could not find an event-stream implementation supporting transport ' +
|
|
39310
39314
|
this.transport +
|
|
@@ -39621,5 +39625,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
39621
39625
|
* Generated bundle index. Do not edit.
|
|
39622
39626
|
*/
|
|
39623
39627
|
|
|
39624
|
-
export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, CommonValidationMessageStrategy, ComparatorBuilder, CompositeSort, ConfirmDialogConfig, ContinuableListing, CountryPhoneFormatService, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, CuratedDataSource, CuratedListDataSource, CuratedPagedDataSource, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, CustomMatcherSpec, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextRange, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSelectionController, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewInteractionControllerDirective, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, DynamicValidationMessageStrategy, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAppearanceSettingsComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, 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, ElderGenericResizableLayoutComponent, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridNavigationBarDirective, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderLock, ElderLockContext, ElderLockContextDirective, ElderLockManagerService, ElderLockWarningService, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectChipsOptionsDirective, ElderMultiSelectFormField, ElderMultiTranslateHttpLoader, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderPopoverComponent, ElderPopoverContentDirective, ElderPopoverTriggerDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRailNavDirective, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, ElderResizableDirective, ElderResizablePaneLayoutComponent, ElderResizeBehaviorDirective, ElderResizeContainerComponent, ElderRoundPipe, ElderRouteOutletDrawerService, ElderRouterOutletService, ElderRouterService, ElderSafeUrlPipe, ElderScrollContainerComponent, ElderScrollbarDirective, ElderScrollbarModule, ElderSearchBoxComponent, ElderSearchContextDirective, ElderSearchIncludeExcludeDirective, ElderSearchInputDirective, ElderSearchModule, ElderSearchPanelComponent, ElderSearchUrlDirective, ElderSelectBase, ElderSelectChipAvatarDirective, ElderSelectChipDirective, ElderSelectComponent, ElderSelectComponentState, ElderSelectCustomInputDirective, ElderSelectFormField, ElderSelectModule, ElderSelectOnTabDirective, ElderSelectOptionComponent, ElderSelectValueDirective, ElderSelectionDialogComponent, ElderSelectionDialogDirective, ElderSelectionMasterCheckboxComponent, ElderSelectionPopupTriggerAdapterDirective, ElderShellCenterDirective, ElderShellComponent, ElderShellModule, ElderShellNavigationToggleComponent, ElderShellService, ElderShellSideLeftDirective, ElderShellSideRightDirective, ElderShellSlotDirective, ElderShellStaticNavSlotDirective, ElderSinglePaneWrapperComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStaticNavToggleComponent, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableDropListConnectorDirective, ElderTableExtensionDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableNavigationBarDirective, ElderTableProviders, ElderTableRootDirective, ElderTableSelectionCellComponent, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTileComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToggleTextInputDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTranslatePipe, ElderTranslateService, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, ErrorUtil, ExceptionDetailCtx, FallbackValidationMessageStrategy, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientPristine, HttpDataTransfer, HttpDataTransferAggregateComponent, HttpDataTransferComponent, HttpDataTransferIndicatorComponent, HttpDataTransferOverviewComponent, HttpParamsBuilder, I18nBase, I18nPickAsyncPipe, I18nPickPipe, I18nText, IFrameState, IframeCloseDirective, IframeDialogComponent, IframeHostComponent, IframeService, IframeSideContentComponent, IncludeExcludeSelectionModel, IncludeExcludeState, IncludeExcludeValue, IndexedEntities, InternalRestClientConfig, Interval, IsoDurationPipe, IsoIntervalFormatUtil, IsoIntervalParsePipe, IsoIntervalPipe, ItemActivationEvent, ItemActivationOptions, ItemModel, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalDataFilter, LocalListDataSource, LocalPagedDataSource, Locale, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, ModifierKeyService, ModifierKeyState, MultiModelBaseComponent, NamedColorDirective, NamedColorSelectDirective, NamedColorSelectValueComponent, NextNumberUtil, ObjectFieldMatcher, ObjectPathResolver, Objects, OnlineStatus, Page, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, PhoneFormatService, PhonePipe, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, ResizeObserverDirective, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, RoutedTabActivationFailed, SearchInputState, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionChangedEvent, SelectionEventSource, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, SimpleSearchInput, Sort, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TargetValue, TemplateCompositeControl, TemplatedSelectionDialogComponent, TemporalPlainDateInterval, TemporalUtil, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UnreachableCaseError, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueChangeEvent, ValueWrapper, ViewDropModelUpdateInstruction, ViewProviders, WebLocalStorage, WebSessionStorage, WebappDomainFragmentSpec, WebappDomainSpec, WebappDomainSpecService, WebappDomainSwitcherDirective, WebappUrlFragmentSwitcherConfig, WeightPipe, alphaNumStringComparator, booleanTransformFn, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createElderDefaultTranslateLoader, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalDataSource, isLocalListDataSource, isLocalPagedDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, provideElderBrandAssets, provideElderDefaults, provideElderLanguage, provideElderTranslate, proxyControlContainer, registerLocale, runInZone, someSignal, themeInit };
|
|
39628
|
+
export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, CommonValidationMessageStrategy, ComparatorBuilder, CompositeSort, ConfirmDialogConfig, ContinuableListing, CountryPhoneFormatService, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, CuratedDataSource, CuratedListDataSource, CuratedPagedDataSource, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, CustomMatcherSpec, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextRange, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSelectionController, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewInteractionControllerDirective, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, DynamicValidationMessageStrategy, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAppearanceSettingsComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteModule, ElderBadgeDirective, ElderBasicPaneLayoutComponent, ElderBlobViewerComponent, ElderBreadCrumbsComponent, ElderBreadCrumbsModule, ElderButtonGroupComponent, ElderButtonGroupModule, ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardHeaderComponent, ElderCardModule, ElderCardOrganizerComponent, ElderCardOrganizerModule, ElderCardPanelComponent, ElderCardStackComponent, ElderCardSubtitleDirective, ElderCardTitleDirective, ElderCenterCellDirective, ElderChipLabelDirective, ElderChipListSelectComponent, ElderChipListSelectModule, ElderChipsIncludeExcludeDirective, ElderChipsModule, ElderClearSelectDirective, ElderClipboardPutDirective, ElderClipboardService, ElderCompositeSortComponent, ElderCompositeSortDcDirective, ElderConfirmDialogComponent, ElderConnectivityModule, ElderConnectivityService, ElderContainersModule, ElderContinuatorComponent, ElderCsvExportBtnComponent, ElderCsvModule, ElderCurrencyModule, ElderCurrencyPipe, ElderDataActivationDirective, ElderDataCommonModule, ElderDataToolbarComponent, ElderDataTransferModule, ElderDataTransferService, ElderDataViewBaseComponent, ElderDataViewDndDirective, ElderDataViewDndGroupDirective, ElderDataViewItemDragDirective, ElderDataViewOptions, ElderDataViewOptionsProvider, ElderDateSwitcherComponent, ElderDateTimeInputComponent, ElderDelayedFocusDirective, ElderDeleteActiveDirective, ElderDetailDialogComponent, ElderDetailDirective, ElderDialogConfig, ElderDialogModule, ElderDialogPanelComponent, ElderDialogService, ElderDimensionsInputComponent, ElderDropZoneComponent, ElderDurationInputComponent, ElderEntityValueAccessorUtil, ElderEnumTranslationService, ElderErrorModule, ElderEventSourceService, ElderExceptionDetailComponent, ElderExpandToggleButtonComponent, ElderExpandToggleButtonModule, ElderFileDropZoneDirective, ElderFileModule, ElderFileSelectComponent, ElderFileSelectDirective, ElderFileUploadComponent, ElderFilterChipTemplateComponent, ElderFormFieldControlBase, ElderFormFieldDenseDirective, ElderFormFieldLabelDirective, ElderFormFieldNoHintDirective, ElderFormFieldNoSpinnerDirective, ElderFormsDirectivesModule, ElderFormsModule, ElderFromFieldBase, ElderFromFieldEntityBase, ElderFromFieldMultiEntityBase, ElderGenericResizableLayoutComponent, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridNavigationBarDirective, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderLock, ElderLockContext, ElderLockContextDirective, ElderLockManagerService, ElderLockWarningService, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectChipsOptionsDirective, ElderMultiSelectFormField, ElderMultiTranslateHttpLoader, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderPopoverComponent, ElderPopoverContentDirective, ElderPopoverTriggerDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRailNavDirective, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, ElderResizableDirective, ElderResizablePaneLayoutComponent, ElderResizeBehaviorDirective, ElderResizeContainerComponent, ElderRoundPipe, ElderRouteOutletDrawerService, ElderRouterOutletService, ElderRouterService, ElderSafeUrlPipe, ElderScrollContainerComponent, ElderScrollbarDirective, ElderScrollbarModule, ElderSearchBoxComponent, ElderSearchContextDirective, ElderSearchIncludeExcludeDirective, ElderSearchInputDirective, ElderSearchModule, ElderSearchPanelComponent, ElderSearchUrlDirective, ElderSelectBase, ElderSelectChipAvatarDirective, ElderSelectChipDirective, ElderSelectComponent, ElderSelectComponentState, ElderSelectCustomInputDirective, ElderSelectFormField, ElderSelectModule, ElderSelectOnTabDirective, ElderSelectOptionComponent, ElderSelectValueDirective, ElderSelectionDialogComponent, ElderSelectionDialogDirective, ElderSelectionMasterCheckboxComponent, ElderSelectionPopupTriggerAdapterDirective, ElderShellCenterDirective, ElderShellComponent, ElderShellModule, ElderShellNavigationToggleComponent, ElderShellService, ElderShellSideLeftDirective, ElderShellSideRightDirective, ElderShellSlotDirective, ElderShellStaticNavSlotDirective, ElderSinglePaneWrapperComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStaticNavToggleComponent, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableDropListConnectorDirective, ElderTableExtensionDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableNavigationBarDirective, ElderTableProviders, ElderTableRootDirective, ElderTableSelectionCellComponent, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTileComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToggleTextInputDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTranslatePipe, ElderTranslateService, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderWordAutocompleteDirective, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, ErrorUtil, ExceptionDetailCtx, FallbackValidationMessageStrategy, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientPristine, HttpDataTransfer, HttpDataTransferAggregateComponent, HttpDataTransferComponent, HttpDataTransferIndicatorComponent, HttpDataTransferOverviewComponent, HttpParamsBuilder, I18nBase, I18nPickAsyncPipe, I18nPickPipe, I18nText, IFrameState, IframeCloseDirective, IframeDialogComponent, IframeHostComponent, IframeService, IframeSideContentComponent, IncludeExcludeSelectionModel, IncludeExcludeState, IncludeExcludeValue, IndexedEntities, InternalRestClientConfig, Interval, IsoDurationPipe, IsoIntervalFormatUtil, IsoIntervalParsePipe, IsoIntervalPipe, ItemActivationEvent, ItemActivationOptions, ItemModel, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalDataFilter, LocalListDataSource, LocalPagedDataSource, Locale, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, ModifierKeyService, ModifierKeyState, MultiModelBaseComponent, NamedColorDirective, NamedColorSelectDirective, NamedColorSelectValueComponent, NextNumberUtil, ObjectFieldMatcher, ObjectPathResolver, Objects, OnlineStatus, Page, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, PhoneFormatService, PhonePipe, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, ResizeObserverDirective, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, RoutedTabActivationFailed, SearchInputState, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionChangedEvent, SelectionEventSource, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, SimpleSearchInput, Sort, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TargetValue, TemplateCompositeControl, TemplatedSelectionDialogComponent, TemporalPlainDateInterval, TemporalUtil, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UnreachableCaseError, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueChangeEvent, ValueWrapper, ViewDropModelUpdateInstruction, ViewProviders, WebLocalStorage, WebSessionStorage, WebappDomainFragmentSpec, WebappDomainSpec, WebappDomainSpecService, WebappDomainSwitcherDirective, WebappUrlFragmentSwitcherConfig, WeightPipe, alphaNumStringComparator, booleanTransformFn, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createElderDefaultTranslateLoader, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalDataSource, isLocalListDataSource, isLocalPagedDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, provideElderBrandAssets, provideElderDefaults, provideElderLanguage, provideElderTranslate, proxyControlContainer, registerLocale, runInZone, someSignal, themeInit };
|
|
39625
39629
|
//# sourceMappingURL=elderbyte-ngx-starter.mjs.map
|