@elderbyte/ngx-starter 21.12.5 → 21.14.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -61,7 +61,6 @@ import * as i2$2 from '@angular/material/sort';
61
61
  import { MatSortModule, MatSort, MatSortHeader } from '@angular/material/sort';
62
62
  import { __decorate, __param } from 'tslib';
63
63
  import { CdkVirtualScrollViewport, CdkFixedSizeVirtualScroll, CdkVirtualForOf, ScrollingModule } from '@angular/cdk/scrolling';
64
- import { Subject as Subject$1 } from 'rxjs/internal/Subject';
65
64
  import { MatProgressSpinnerModule, MatProgressSpinner } from '@angular/material/progress-spinner';
66
65
  import { MatExpansionPanel, MatAccordion, MatExpansionPanelHeader, MatExpansionPanelTitle, MatExpansionPanelDescription, MatExpansionModule } from '@angular/material/expansion';
67
66
  import * as i1$b from '@angular/cdk/overlay';
@@ -515,15 +514,12 @@ class PeriodDuration {
515
514
  const startDate = startInclusive.query(TemporalQueries.localDate());
516
515
  const endDate = endExclusive.query(TemporalQueries.localDate());
517
516
  let period = Period.ZERO;
518
- // eslint-disable-next-line eqeqeq
519
517
  if (startDate != null && endDate != null) {
520
518
  period = Period.between(startDate, endDate);
521
519
  }
522
520
  let startTime = startInclusive.query(TemporalQueries.localTime());
523
521
  let endTime = endExclusive.query(TemporalQueries.localTime());
524
- // eslint-disable-next-line eqeqeq
525
522
  startTime = startTime != null ? startTime : LocalTime.MIDNIGHT;
526
- // eslint-disable-next-line eqeqeq
527
523
  endTime = endTime != null ? endTime : LocalTime.MIDNIGHT;
528
524
  const duration = Duration.between(startTime, endTime);
529
525
  return PeriodDuration.of(period, duration);
@@ -979,7 +975,6 @@ class ElderRoundPipe {
979
975
  * defaults to 0.
980
976
  */
981
977
  transform(value, fractionDigits) {
982
- // eslint-disable-next-line eqeqeq
983
978
  if (value == null) {
984
979
  return null;
985
980
  }
@@ -1555,7 +1550,6 @@ class IsoIntervalFormatUtil {
1555
1550
  return IsoIntervalFormatUtil.formatDate(instant.toEpochMilli(), format, timezone, locale);
1556
1551
  }
1557
1552
  static formatDate(value, format, timezone, locale) {
1558
- // eslint-disable-next-line eqeqeq
1559
1553
  if (value == null || value === '' || value !== value) {
1560
1554
  // last part filters out NaN values
1561
1555
  return null;
@@ -5599,7 +5593,6 @@ class DataContextLifeCycleBinding {
5599
5593
  **************************************************************************/
5600
5594
  constructor(_dataContext) {
5601
5595
  this._dataContext = _dataContext;
5602
- // eslint-disable-next-line eqeqeq
5603
5596
  if (_dataContext == null) {
5604
5597
  throw new Error('dataContext must not be null!');
5605
5598
  }
@@ -5635,7 +5628,6 @@ class RequiredFilterEvaluator {
5635
5628
  **************************************************************************/
5636
5629
  constructor(filterContext, requiredFilters) {
5637
5630
  this._requiredFilters = new BehaviorSubject([]);
5638
- // eslint-disable-next-line eqeqeq
5639
5631
  if (filterContext == null) {
5640
5632
  throw new Error('filterContext must not be null!');
5641
5633
  }
@@ -5723,7 +5715,6 @@ class DataContextAutoStarter extends DataContextLifeCycleBinding {
5723
5715
  * *
5724
5716
  **************************************************************************/
5725
5717
  this.logger = LoggerFactory.getLogger(this.constructor.name);
5726
- // eslint-disable-next-line eqeqeq
5727
5718
  if (_autoStartSpec == null) {
5728
5719
  throw new Error('autoStartSpec must not be null!');
5729
5720
  }
@@ -8292,12 +8283,10 @@ class NextNumberUtil {
8292
8283
  const numberParts = numberStr.match(numberPartsPattern);
8293
8284
  let nextNumberPart = null;
8294
8285
  let i = numberParts.length;
8295
- // eslint-disable-next-line eqeqeq
8296
8286
  while (nextNumberPart == null && i > 0) {
8297
8287
  i--;
8298
8288
  nextNumberPart = this.nextPartialNumber(numberParts[i]);
8299
8289
  }
8300
- // eslint-disable-next-line eqeqeq
8301
8290
  if (nextNumberPart != null) {
8302
8291
  const partToReplace = numberParts[i];
8303
8292
  const startIndex = numberStr.lastIndexOf(partToReplace);
@@ -8305,7 +8294,6 @@ class NextNumberUtil {
8305
8294
  nextNumber =
8306
8295
  numberStr.substr(0, startIndex) + nextNumberPart + numberStr.substr(startIndex + length);
8307
8296
  }
8308
- // eslint-disable-next-line eqeqeq
8309
8297
  return nextNumber != null ? nextNumber : '9999';
8310
8298
  }
8311
8299
  /***************************************************************************
@@ -8343,7 +8331,6 @@ class NextNumberUtil {
8343
8331
  }
8344
8332
  else {
8345
8333
  let i = numberStr.length;
8346
- // eslint-disable-next-line eqeqeq
8347
8334
  while (result == null && i > 0) {
8348
8335
  const letter = numberStr.charAt(i - 1);
8349
8336
  if (letter.toLowerCase() !== 'z') {
@@ -10517,9 +10504,7 @@ class ThemeSpec {
10517
10504
  this.name = name;
10518
10505
  this.cssClass = cssClass;
10519
10506
  this.dark = dark;
10520
- // eslint-disable-next-line eqeqeq
10521
10507
  this.heroBackground = heroBackground != null ? heroBackground : dark ? undefined : 'primary';
10522
- // eslint-disable-next-line eqeqeq
10523
10508
  this.heroIconColor = heroIconColor != null ? heroIconColor : dark ? 'primary' : undefined;
10524
10509
  }
10525
10510
  }
@@ -11585,7 +11570,6 @@ class FileSystemApi {
11585
11570
  return from(FileSystemApi.getHandlesFromDirectoryAsync(dirHandle));
11586
11571
  }
11587
11572
  static buildRelativeParent(fileOrDirHandle, rootDirectory) {
11588
- // eslint-disable-next-line eqeqeq
11589
11573
  if (rootDirectory == null) {
11590
11574
  return of(undefined);
11591
11575
  }
@@ -11678,7 +11662,6 @@ class FileEntry {
11678
11662
  * Returns a string which specifies the file's path relative to the directory selected by the user.
11679
11663
  */
11680
11664
  static buildRelativePath(relativeParent, file) {
11681
- // eslint-disable-next-line eqeqeq
11682
11665
  if (relativeParent != null) {
11683
11666
  return relativeParent + '/' + file.name;
11684
11667
  }
@@ -13984,7 +13967,6 @@ class DataViewOptionsProviderBinding {
13984
13967
  * *
13985
13968
  **************************************************************************/
13986
13969
  this.log = LoggerFactory.getLogger(this.constructor.name);
13987
- // eslint-disable-next-line eqeqeq
13988
13970
  if (_dataViewBaseComponent == null) {
13989
13971
  throw new Error('dataViewBaseComponent must not be null!');
13990
13972
  }
@@ -23734,6 +23716,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
23734
23716
  args: ['elderAutocomplete']
23735
23717
  }] } });
23736
23718
 
23719
+ class ElderSelectSelectionKeysDirective {
23720
+ constructor() {
23721
+ this.selectionKeys = input([], { ...(ngDevMode ? { debugName: "selectionKeys" } : /* istanbul ignore next */ {}), alias: 'elderSelectSelectionKeys' });
23722
+ }
23723
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderSelectSelectionKeysDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
23724
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.15", type: ElderSelectSelectionKeysDirective, isStandalone: true, selector: "[elderSelectSelectionKeys]", inputs: { selectionKeys: { classPropertyName: "selectionKeys", publicName: "elderSelectSelectionKeys", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 }); }
23725
+ }
23726
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderSelectSelectionKeysDirective, decorators: [{
23727
+ type: Directive,
23728
+ args: [{
23729
+ selector: '[elderSelectSelectionKeys]',
23730
+ }]
23731
+ }], propDecorators: { selectionKeys: [{ type: i0.Input, args: [{ isSignal: true, alias: "elderSelectSelectionKeys", required: false }] }] } });
23732
+
23737
23733
  class ElderSelectOnTabDirective {
23738
23734
  constructor() {
23739
23735
  /***************************************************************************
@@ -23746,11 +23742,15 @@ class ElderSelectOnTabDirective {
23746
23742
  this.elderSelect = inject(ElderSelectComponent, {
23747
23743
  skipSelf: true,
23748
23744
  });
23749
- this.destroy$ = new Subject$1();
23745
+ this.destroyRef = inject(DestroyRef);
23750
23746
  this.controlValueAccessor = this.elderSelect;
23751
23747
  this.panelOpen = false;
23752
23748
  this.autocompleteTextTyped = false;
23753
23749
  this.panelNavigatedWithArrowKeys = false;
23750
+ this.selectionKeysDirective = inject(ElderSelectSelectionKeysDirective, {
23751
+ optional: true,
23752
+ });
23753
+ this.selectionKeys = computed(() => this.selectionKeysDirective?.selectionKeys() ?? [], ...(ngDevMode ? [{ debugName: "selectionKeys" }] : /* istanbul ignore next */ []));
23754
23754
  }
23755
23755
  /***************************************************************************
23756
23756
  * *
@@ -23771,6 +23771,18 @@ class ElderSelectOnTabDirective {
23771
23771
  this.selectActiveOption();
23772
23772
  }
23773
23773
  }
23774
+ handleKeydown(event) {
23775
+ if (!this.selectionKeys().includes(event.key)) {
23776
+ return;
23777
+ }
23778
+ if (!this.panelOpen) {
23779
+ return;
23780
+ }
23781
+ event.preventDefault();
23782
+ event.stopPropagation();
23783
+ this.selectActiveOption();
23784
+ this.autoTrigger.closePanel();
23785
+ }
23774
23786
  /***************************************************************************
23775
23787
  * *
23776
23788
  * Life Cycle *
@@ -23780,10 +23792,6 @@ class ElderSelectOnTabDirective {
23780
23792
  this.observePanelOpen();
23781
23793
  this.observeAutocompleteSelection();
23782
23794
  }
23783
- ngOnDestroy() {
23784
- this.destroy$.next();
23785
- this.destroy$.complete();
23786
- }
23787
23795
  /***************************************************************************
23788
23796
  * *
23789
23797
  * Private methods *
@@ -23799,7 +23807,7 @@ class ElderSelectOnTabDirective {
23799
23807
  observePanelOpen() {
23800
23808
  const autocomplete = this.autoTrigger.autocomplete;
23801
23809
  merge(autocomplete.opened.pipe(map(() => true)), autocomplete.closed.pipe(map(() => false)))
23802
- .pipe(takeUntil(this.destroy$), delay(0))
23810
+ .pipe(takeUntilDestroyed(this.destroyRef), delay(0))
23803
23811
  .subscribe((isOpen) => {
23804
23812
  this.panelOpen = isOpen;
23805
23813
  if (isOpen) {
@@ -23814,7 +23822,7 @@ class ElderSelectOnTabDirective {
23814
23822
  this.autoTrigger.optionSelections
23815
23823
  .pipe(
23816
23824
  // TODO https://github.com/angular/components/pull/14813
23817
- takeUntil(this.destroy$), tap((opt) => this.logger.debug('[optionSelections] CHANGED ', opt)), map((opt) => opt.isUserInput))
23825
+ takeUntilDestroyed(this.destroyRef), tap((opt) => this.logger.debug('[optionSelections] CHANGED ', opt)), map((opt) => opt.isUserInput))
23818
23826
  .subscribe((isUserInput) => (this.autocompleteTextTyped = isUserInput));
23819
23827
  }
23820
23828
  selectActiveOption() {
@@ -23885,7 +23893,7 @@ class ElderSelectOnTabDirective {
23885
23893
  });
23886
23894
  }
23887
23895
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderSelectOnTabDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
23888
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.15", type: ElderSelectOnTabDirective, isStandalone: true, selector: "[elderSelectOnTab]", host: { listeners: { "keydown.arrowup": "handleVerticalArrowKeyPress()", "keydown.arrowdown": "handleVerticalArrowKeyPress()", "input": "handleInputTyping()", "keydown.tab": "handleTabKeyPress()" } }, ngImport: i0 }); }
23896
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.15", type: ElderSelectOnTabDirective, isStandalone: true, selector: "[elderSelectOnTab]", host: { listeners: { "keydown.arrowup": "handleVerticalArrowKeyPress()", "keydown.arrowdown": "handleVerticalArrowKeyPress()", "input": "handleInputTyping()", "keydown.tab": "handleTabKeyPress()", "keydown": "handleKeydown($event)" } }, ngImport: i0 }); }
23889
23897
  }
23890
23898
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderSelectOnTabDirective, decorators: [{
23891
23899
  type: Directive,
@@ -23904,6 +23912,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
23904
23912
  }], handleTabKeyPress: [{
23905
23913
  type: HostListener,
23906
23914
  args: ['keydown.tab']
23915
+ }], handleKeydown: [{
23916
+ type: HostListener,
23917
+ args: ['keydown', ['$event']]
23907
23918
  }] } });
23908
23919
 
23909
23920
  class ElderAutocompleteOptionSelected {
@@ -25198,7 +25209,6 @@ class ElderRequiredQuantityValidator {
25198
25209
  * *
25199
25210
  **************************************************************************/
25200
25211
  isQuantityDefined(qty) {
25201
- // eslint-disable-next-line eqeqeq
25202
25212
  if (qty?.value != null && qty?.unit != null) {
25203
25213
  return !(this._requiredIgnoreZero && qty.value === 0);
25204
25214
  }
@@ -25262,11 +25272,9 @@ class ElderQuantityRangeValidator {
25262
25272
  validate(c) {
25263
25273
  let result = {};
25264
25274
  const qty = c.value;
25265
- // eslint-disable-next-line eqeqeq
25266
25275
  if (this._min != null && !this.isAtLeast(qty, this._min)) {
25267
25276
  result = Object.assign(result, { min: { min: this._min, actual: qty?.value } });
25268
25277
  }
25269
- // eslint-disable-next-line eqeqeq
25270
25278
  if (this._max != null && !this.isAtMost(qty, this._max)) {
25271
25279
  result = Object.assign(result, { max: { max: this._max, actual: qty?.value } });
25272
25280
  }
@@ -25344,7 +25352,6 @@ class ElderRequiredDimensionsValidator {
25344
25352
  * *
25345
25353
  **************************************************************************/
25346
25354
  isDimensionsDefined(dimensions) {
25347
- // eslint-disable-next-line eqeqeq
25348
25355
  if (dimensions?.unit != null) {
25349
25356
  if (!this.isValueDefined(dimensions.length)) {
25350
25357
  return false;
@@ -25360,7 +25367,6 @@ class ElderRequiredDimensionsValidator {
25360
25367
  return false;
25361
25368
  }
25362
25369
  isValueDefined(value) {
25363
- // eslint-disable-next-line eqeqeq
25364
25370
  if (value != null) {
25365
25371
  return !(this._requiredIgnoreZero && value === 0);
25366
25372
  }
@@ -25482,24 +25488,54 @@ class ReplacementResult {
25482
25488
  }
25483
25489
  }
25484
25490
  class WordPositionFinder {
25491
+ /**
25492
+ * Finds the word at the given caret position
25493
+ */
25485
25494
  findWord(text, position) {
25486
- if (position >= 0) {
25487
- // Search for the word's beginning and end.
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);
25495
+ if (this.isInvalidCaretPosition(position)) {
25496
+ return this.endOfTextRange(text);
25499
25497
  }
25500
- else {
25501
- return new TextRange(text.length, text.length, undefined);
25498
+ const caret = this.clampCaret(position, text.length);
25499
+ if (this.isStartingNewWordAtCaret(text, caret)) {
25500
+ return this.emptyWordRange(caret);
25502
25501
  }
25502
+ const { start, end } = this.expandWordBounds(text, caret);
25503
+ return new TextRange(start, end, text.substring(start, end));
25504
+ }
25505
+ isInvalidCaretPosition(position) {
25506
+ return position == null || position < 0;
25507
+ }
25508
+ endOfTextRange(text) {
25509
+ return new TextRange(text.length, text.length, undefined);
25510
+ }
25511
+ clampCaret(position, textLength) {
25512
+ return Math.min(position, textLength);
25513
+ }
25514
+ isStartingNewWordAtCaret(text, caret) {
25515
+ return this.isCaretOnWhitespace(text, caret) || this.isCaretAfterTrailingWhitespace(text, caret);
25516
+ }
25517
+ isCaretOnWhitespace(text, caret) {
25518
+ return caret < text.length && this.isWhitespace(text[caret]);
25519
+ }
25520
+ isCaretAfterTrailingWhitespace(text, caret) {
25521
+ return caret > 0 && caret === text.length && this.isWhitespace(text[caret - 1]);
25522
+ }
25523
+ emptyWordRange(position) {
25524
+ return new TextRange(position, position, '');
25525
+ }
25526
+ expandWordBounds(text, caret) {
25527
+ let start = caret;
25528
+ let end = caret;
25529
+ while (start > 0 && !this.isWhitespace(text[start - 1])) {
25530
+ start--;
25531
+ }
25532
+ while (end < text.length && !this.isWhitespace(text[end])) {
25533
+ end++;
25534
+ }
25535
+ return { start, end };
25536
+ }
25537
+ isWhitespace(char) {
25538
+ return /\s/.test(char);
25503
25539
  }
25504
25540
  replaceWord(text, position, replacement) {
25505
25541
  const current = this.findWord(text, position);
@@ -25526,7 +25562,7 @@ class WordPositionFinder {
25526
25562
  }
25527
25563
  }
25528
25564
 
25529
- class ElderAutocompleteManyDirective {
25565
+ class ElderWordAutocompleteDirective {
25530
25566
  /***************************************************************************
25531
25567
  * *
25532
25568
  * Constructor *
@@ -25637,20 +25673,18 @@ class ElderAutocompleteManyDirective {
25637
25673
  * *
25638
25674
  **************************************************************************/
25639
25675
  extractWordAtCursor(value) {
25640
- if (this.cursorPosition) {
25641
- const cursor = this.cursorPosition;
25642
- return this.extractWordFrom(value, cursor);
25643
- }
25644
- else {
25676
+ const cursor = this.cursorPosition;
25677
+ if (cursor == null) {
25645
25678
  return null;
25646
25679
  }
25680
+ return this.extractWordFrom(value, cursor);
25647
25681
  }
25648
25682
  rememberCursorPosition() {
25649
25683
  this.cursorBeforeAutocomplete = this.cursorPosition;
25650
25684
  }
25651
25685
  extractWordFrom(text, position) {
25652
25686
  const word = this.wordFinder.findWord(text, position);
25653
- return word.value;
25687
+ return word.value ?? '';
25654
25688
  }
25655
25689
  updateSuggestions(value) {
25656
25690
  const filters = [...this.filters, new Filter(this.queryFilter, value)];
@@ -25693,13 +25727,13 @@ class ElderAutocompleteManyDirective {
25693
25727
  // The wordAtCursor might not be the full autocompleted phrase (if there are multiple words)
25694
25728
  this.cursorPosition = wordAtCursor.start + autocompletedPhrase.length;
25695
25729
  }
25696
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderAutocompleteManyDirective, deps: [{ token: i1$8.MatAutocompleteTrigger }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
25697
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.15", type: ElderAutocompleteManyDirective, isStandalone: true, selector: "[elderAutocompleteMany]", inputs: { queryFilter: "queryFilter", filters: "filters", sorts: "sorts", textProperty: "textProperty", textPropertyResolverFn: "textPropertyResolverFn", autocomplete: ["elderAutocompleteMany", "autocomplete"] }, host: { listeners: { "keyup": "onKeyUp($event)" } }, ngImport: i0 }); }
25730
+ 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 }); }
25731
+ 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
25732
  }
25699
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderAutocompleteManyDirective, decorators: [{
25733
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderWordAutocompleteDirective, decorators: [{
25700
25734
  type: Directive,
25701
25735
  args: [{
25702
- selector: '[elderAutocompleteMany]',
25736
+ selector: '[elderWordAutocomplete]',
25703
25737
  }]
25704
25738
  }], ctorParameters: () => [{ type: i1$8.MatAutocompleteTrigger }, { type: i0.ElementRef }], propDecorators: { queryFilter: [{
25705
25739
  type: Input
@@ -25713,7 +25747,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
25713
25747
  type: Input
25714
25748
  }], autocomplete: [{
25715
25749
  type: Input,
25716
- args: ['elderAutocompleteMany']
25750
+ args: ['elderWordAutocomplete']
25717
25751
  }], onKeyUp: [{
25718
25752
  type: HostListener,
25719
25753
  args: ['keyup', ['$event']]
@@ -25730,9 +25764,9 @@ class ElderAutocompleteModule {
25730
25764
  MatProgressBarModule,
25731
25765
  ElderSuggestionPanelComponent,
25732
25766
  ElderAutocompleteDirective,
25733
- ElderAutocompleteManyDirective], exports: [ElderSuggestionPanelComponent,
25767
+ ElderWordAutocompleteDirective], exports: [ElderSuggestionPanelComponent,
25734
25768
  ElderAutocompleteDirective,
25735
- ElderAutocompleteManyDirective] }); }
25769
+ ElderWordAutocompleteDirective] }); }
25736
25770
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderAutocompleteModule, imports: [CommonModule,
25737
25771
  ReactiveFormsModule,
25738
25772
  MatInputModule,
@@ -25748,7 +25782,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
25748
25782
  exports: [
25749
25783
  ElderSuggestionPanelComponent,
25750
25784
  ElderAutocompleteDirective,
25751
- ElderAutocompleteManyDirective,
25785
+ ElderWordAutocompleteDirective,
25752
25786
  ],
25753
25787
  imports: [
25754
25788
  CommonModule,
@@ -25760,7 +25794,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
25760
25794
  MatProgressBarModule,
25761
25795
  ElderSuggestionPanelComponent,
25762
25796
  ElderAutocompleteDirective,
25763
- ElderAutocompleteManyDirective,
25797
+ ElderWordAutocompleteDirective,
25764
25798
  ],
25765
25799
  }]
25766
25800
  }] });
@@ -36266,7 +36300,6 @@ class ElderProgressBarComponent {
36266
36300
  * *
36267
36301
  **************************************************************************/
36268
36302
  set value(value) {
36269
- // eslint-disable-next-line eqeqeq
36270
36303
  if (value != null) {
36271
36304
  this.setSingleBarValue(value);
36272
36305
  }
@@ -39304,7 +39337,6 @@ class KafentEventService {
39304
39337
  ' and auth-token param: ' +
39305
39338
  this.authTokenParam);
39306
39339
  this.kafentEventStream = eventStreams.find((es) => es.transport === this.transport);
39307
- // eslint-disable-next-line eqeqeq
39308
39340
  if (this.kafentEventStream == null) {
39309
39341
  throw new Error('Could not find an event-stream implementation supporting transport ' +
39310
39342
  this.transport +
@@ -39621,5 +39653,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
39621
39653
  * Generated bundle index. Do not edit.
39622
39654
  */
39623
39655
 
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 };
39656
+ 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, ElderSelectSelectionKeysDirective, 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
39657
  //# sourceMappingURL=elderbyte-ngx-starter.mjs.map