@elderbyte/ngx-starter 21.12.4 → 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
  }
@@ -23384,7 +23367,6 @@ class ElderSelectBase extends ElderFormFieldControlBase {
23384
23367
  this.pageSize = 10;
23385
23368
  this.queryFilter = 'query';
23386
23369
  this.sorts = [];
23387
- this.tabSelectAfterTextInput = false;
23388
23370
  /**
23389
23371
  * Emits an event when the user has clicked on the current
23390
23372
  * selected entity.
@@ -23575,7 +23557,7 @@ class ElderSelectBase extends ElderFormFieldControlBase {
23575
23557
  return typeof val === 'function' || typeof val === 'object';
23576
23558
  }
23577
23559
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderSelectBase, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive }); }
23578
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.15", type: ElderSelectBase, isStandalone: true, inputs: { cleanUp: { classPropertyName: "cleanUp", publicName: "cleanUp", isSignal: false, isRequired: false, transformFunction: null }, displayPropertyResolverS: { classPropertyName: "displayPropertyResolverS", publicName: "displayPropertyResolver", isSignal: true, isRequired: false, transformFunction: null }, pageSize: { classPropertyName: "pageSize", publicName: "pageSize", isSignal: false, isRequired: false, transformFunction: null }, queryFilter: { classPropertyName: "queryFilter", publicName: "queryFilter", isSignal: false, isRequired: false, transformFunction: null }, sorts: { classPropertyName: "sorts", publicName: "sorts", isSignal: false, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: false, isRequired: false, transformFunction: null }, tabSelectAfterTextInput: { classPropertyName: "tabSelectAfterTextInput", publicName: "tabSelectAfterTextInput", isSignal: false, isRequired: false, transformFunction: null }, isOptionDisabledFn: { classPropertyName: "isOptionDisabledFn", publicName: "isOptionDisabledFn", isSignal: false, isRequired: false, transformFunction: null }, isOptionHiddenFn: { classPropertyName: "isOptionHiddenFn", publicName: "isOptionHiddenFn", isSignal: false, isRequired: false, transformFunction: null }, valueAsId: { classPropertyName: "valueAsId", publicName: "valueAsId", isSignal: false, isRequired: false, transformFunction: null }, displayProperty: { classPropertyName: "displayProperty", publicName: "displayProperty", isSignal: false, isRequired: false, transformFunction: null }, displayPropertyResolver: { classPropertyName: "displayPropertyResolver", publicName: "displayPropertyResolver", isSignal: false, isRequired: false, transformFunction: null }, filters: { classPropertyName: "filters", publicName: "filters", isSignal: false, isRequired: false, transformFunction: null }, dataSource: { classPropertyName: "dataSource", publicName: "dataSource", isSignal: false, isRequired: false, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: false, isRequired: false, transformFunction: null }, valueTemplate: { classPropertyName: "valueTemplate", publicName: "valueTemplate", isSignal: false, isRequired: false, transformFunction: null } }, outputs: { displayPropertyResolverS: "displayPropertyResolverChange", currentClicked: "currentClicked" }, queries: [{ propertyName: "valueTemplateQuery", first: true, predicate: ElderSelectValueDirective, descendants: true, read: TemplateRef, static: true }, { propertyName: "selectionPopup", first: true, predicate: SelectionModelPopupDirective, descendants: true }, { propertyName: "templateOptions$", predicate: ElderSelectOptionComponent }], usesInheritance: true, ngImport: i0 }); }
23560
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.15", type: ElderSelectBase, isStandalone: true, inputs: { cleanUp: { classPropertyName: "cleanUp", publicName: "cleanUp", isSignal: false, isRequired: false, transformFunction: null }, displayPropertyResolverS: { classPropertyName: "displayPropertyResolverS", publicName: "displayPropertyResolver", isSignal: true, isRequired: false, transformFunction: null }, pageSize: { classPropertyName: "pageSize", publicName: "pageSize", isSignal: false, isRequired: false, transformFunction: null }, queryFilter: { classPropertyName: "queryFilter", publicName: "queryFilter", isSignal: false, isRequired: false, transformFunction: null }, sorts: { classPropertyName: "sorts", publicName: "sorts", isSignal: false, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: false, isRequired: false, transformFunction: null }, isOptionDisabledFn: { classPropertyName: "isOptionDisabledFn", publicName: "isOptionDisabledFn", isSignal: false, isRequired: false, transformFunction: null }, isOptionHiddenFn: { classPropertyName: "isOptionHiddenFn", publicName: "isOptionHiddenFn", isSignal: false, isRequired: false, transformFunction: null }, valueAsId: { classPropertyName: "valueAsId", publicName: "valueAsId", isSignal: false, isRequired: false, transformFunction: null }, displayProperty: { classPropertyName: "displayProperty", publicName: "displayProperty", isSignal: false, isRequired: false, transformFunction: null }, displayPropertyResolver: { classPropertyName: "displayPropertyResolver", publicName: "displayPropertyResolver", isSignal: false, isRequired: false, transformFunction: null }, filters: { classPropertyName: "filters", publicName: "filters", isSignal: false, isRequired: false, transformFunction: null }, dataSource: { classPropertyName: "dataSource", publicName: "dataSource", isSignal: false, isRequired: false, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: false, isRequired: false, transformFunction: null }, valueTemplate: { classPropertyName: "valueTemplate", publicName: "valueTemplate", isSignal: false, isRequired: false, transformFunction: null } }, outputs: { displayPropertyResolverS: "displayPropertyResolverChange", currentClicked: "currentClicked" }, queries: [{ propertyName: "valueTemplateQuery", first: true, predicate: ElderSelectValueDirective, descendants: true, read: TemplateRef, static: true }, { propertyName: "selectionPopup", first: true, predicate: SelectionModelPopupDirective, descendants: true }, { propertyName: "templateOptions$", predicate: ElderSelectOptionComponent }], usesInheritance: true, ngImport: i0 }); }
23579
23561
  }
23580
23562
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderSelectBase, decorators: [{
23581
23563
  type: Directive
@@ -23589,8 +23571,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
23589
23571
  type: Input
23590
23572
  }], icon: [{
23591
23573
  type: Input
23592
- }], tabSelectAfterTextInput: [{
23593
- type: Input
23594
23574
  }], valueTemplateQuery: [{
23595
23575
  type: ContentChild,
23596
23576
  args: [ElderSelectValueDirective, { read: TemplateRef, static: true }]
@@ -23826,8 +23806,8 @@ class ElderSelectOnTabDirective {
23826
23806
  this.writeAutoCompleteActiveOption();
23827
23807
  return;
23828
23808
  }
23829
- // only select if text was typed and the setting is respected
23830
- if (!this.textTypedAndSettingRespected()) {
23809
+ // only select if text was typed
23810
+ if (!this.autocompleteTextTyped) {
23831
23811
  return;
23832
23812
  }
23833
23813
  const matchedOption = this.findMatchingOptionByInputText();
@@ -23862,11 +23842,8 @@ class ElderSelectOnTabDirective {
23862
23842
  return entity;
23863
23843
  }
23864
23844
  }
23865
- textTypedAndSettingRespected() {
23866
- return this.autocompleteTextTyped && this.elderSelect.tabSelectAfterTextInput;
23867
- }
23868
23845
  userInteracted() {
23869
- return this.panelNavigatedWithArrowKeys || this.textTypedAndSettingRespected();
23846
+ return this.panelNavigatedWithArrowKeys || this.autocompleteTextTyped;
23870
23847
  }
23871
23848
  findMatchingOptionByInputText() {
23872
23849
  const inputText = this.elderSelect.inputRef?.nativeElement?.value;
@@ -25204,7 +25181,6 @@ class ElderRequiredQuantityValidator {
25204
25181
  * *
25205
25182
  **************************************************************************/
25206
25183
  isQuantityDefined(qty) {
25207
- // eslint-disable-next-line eqeqeq
25208
25184
  if (qty?.value != null && qty?.unit != null) {
25209
25185
  return !(this._requiredIgnoreZero && qty.value === 0);
25210
25186
  }
@@ -25268,11 +25244,9 @@ class ElderQuantityRangeValidator {
25268
25244
  validate(c) {
25269
25245
  let result = {};
25270
25246
  const qty = c.value;
25271
- // eslint-disable-next-line eqeqeq
25272
25247
  if (this._min != null && !this.isAtLeast(qty, this._min)) {
25273
25248
  result = Object.assign(result, { min: { min: this._min, actual: qty?.value } });
25274
25249
  }
25275
- // eslint-disable-next-line eqeqeq
25276
25250
  if (this._max != null && !this.isAtMost(qty, this._max)) {
25277
25251
  result = Object.assign(result, { max: { max: this._max, actual: qty?.value } });
25278
25252
  }
@@ -25350,7 +25324,6 @@ class ElderRequiredDimensionsValidator {
25350
25324
  * *
25351
25325
  **************************************************************************/
25352
25326
  isDimensionsDefined(dimensions) {
25353
- // eslint-disable-next-line eqeqeq
25354
25327
  if (dimensions?.unit != null) {
25355
25328
  if (!this.isValueDefined(dimensions.length)) {
25356
25329
  return false;
@@ -25366,7 +25339,6 @@ class ElderRequiredDimensionsValidator {
25366
25339
  return false;
25367
25340
  }
25368
25341
  isValueDefined(value) {
25369
- // eslint-disable-next-line eqeqeq
25370
25342
  if (value != null) {
25371
25343
  return !(this._requiredIgnoreZero && value === 0);
25372
25344
  }
@@ -25488,24 +25460,54 @@ class ReplacementResult {
25488
25460
  }
25489
25461
  }
25490
25462
  class WordPositionFinder {
25463
+ /**
25464
+ * Finds the word at the given caret position
25465
+ */
25491
25466
  findWord(text, position) {
25492
- if (position >= 0) {
25493
- // Search for the word's beginning and end.
25494
- const left = text.slice(0, position).search(/\S+$/);
25495
- let right = text.slice(position).search(/\s/);
25496
- // The last word in the string is a special case.
25497
- if (right < 0) {
25498
- right = text.length;
25499
- }
25500
- else {
25501
- right += position;
25502
- }
25503
- const word = text.substring(left, right);
25504
- return new TextRange(left, right, word);
25467
+ if (this.isInvalidCaretPosition(position)) {
25468
+ return this.endOfTextRange(text);
25505
25469
  }
25506
- else {
25507
- return new TextRange(text.length, text.length, undefined);
25470
+ const caret = this.clampCaret(position, text.length);
25471
+ if (this.isStartingNewWordAtCaret(text, caret)) {
25472
+ return this.emptyWordRange(caret);
25508
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++;
25506
+ }
25507
+ return { start, end };
25508
+ }
25509
+ isWhitespace(char) {
25510
+ return /\s/.test(char);
25509
25511
  }
25510
25512
  replaceWord(text, position, replacement) {
25511
25513
  const current = this.findWord(text, position);
@@ -25532,7 +25534,7 @@ class WordPositionFinder {
25532
25534
  }
25533
25535
  }
25534
25536
 
25535
- class ElderAutocompleteManyDirective {
25537
+ class ElderWordAutocompleteDirective {
25536
25538
  /***************************************************************************
25537
25539
  * *
25538
25540
  * Constructor *
@@ -25643,20 +25645,18 @@ class ElderAutocompleteManyDirective {
25643
25645
  * *
25644
25646
  **************************************************************************/
25645
25647
  extractWordAtCursor(value) {
25646
- if (this.cursorPosition) {
25647
- const cursor = this.cursorPosition;
25648
- return this.extractWordFrom(value, cursor);
25649
- }
25650
- else {
25648
+ const cursor = this.cursorPosition;
25649
+ if (cursor == null) {
25651
25650
  return null;
25652
25651
  }
25652
+ return this.extractWordFrom(value, cursor);
25653
25653
  }
25654
25654
  rememberCursorPosition() {
25655
25655
  this.cursorBeforeAutocomplete = this.cursorPosition;
25656
25656
  }
25657
25657
  extractWordFrom(text, position) {
25658
25658
  const word = this.wordFinder.findWord(text, position);
25659
- return word.value;
25659
+ return word.value ?? '';
25660
25660
  }
25661
25661
  updateSuggestions(value) {
25662
25662
  const filters = [...this.filters, new Filter(this.queryFilter, value)];
@@ -25699,13 +25699,13 @@ class ElderAutocompleteManyDirective {
25699
25699
  // The wordAtCursor might not be the full autocompleted phrase (if there are multiple words)
25700
25700
  this.cursorPosition = wordAtCursor.start + autocompletedPhrase.length;
25701
25701
  }
25702
- 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 }); }
25703
- 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 }); }
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 }); }
25704
25704
  }
25705
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderAutocompleteManyDirective, decorators: [{
25705
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderWordAutocompleteDirective, decorators: [{
25706
25706
  type: Directive,
25707
25707
  args: [{
25708
- selector: '[elderAutocompleteMany]',
25708
+ selector: '[elderWordAutocomplete]',
25709
25709
  }]
25710
25710
  }], ctorParameters: () => [{ type: i1$8.MatAutocompleteTrigger }, { type: i0.ElementRef }], propDecorators: { queryFilter: [{
25711
25711
  type: Input
@@ -25719,7 +25719,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
25719
25719
  type: Input
25720
25720
  }], autocomplete: [{
25721
25721
  type: Input,
25722
- args: ['elderAutocompleteMany']
25722
+ args: ['elderWordAutocomplete']
25723
25723
  }], onKeyUp: [{
25724
25724
  type: HostListener,
25725
25725
  args: ['keyup', ['$event']]
@@ -25736,9 +25736,9 @@ class ElderAutocompleteModule {
25736
25736
  MatProgressBarModule,
25737
25737
  ElderSuggestionPanelComponent,
25738
25738
  ElderAutocompleteDirective,
25739
- ElderAutocompleteManyDirective], exports: [ElderSuggestionPanelComponent,
25739
+ ElderWordAutocompleteDirective], exports: [ElderSuggestionPanelComponent,
25740
25740
  ElderAutocompleteDirective,
25741
- ElderAutocompleteManyDirective] }); }
25741
+ ElderWordAutocompleteDirective] }); }
25742
25742
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ElderAutocompleteModule, imports: [CommonModule,
25743
25743
  ReactiveFormsModule,
25744
25744
  MatInputModule,
@@ -25754,7 +25754,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
25754
25754
  exports: [
25755
25755
  ElderSuggestionPanelComponent,
25756
25756
  ElderAutocompleteDirective,
25757
- ElderAutocompleteManyDirective,
25757
+ ElderWordAutocompleteDirective,
25758
25758
  ],
25759
25759
  imports: [
25760
25760
  CommonModule,
@@ -25766,7 +25766,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
25766
25766
  MatProgressBarModule,
25767
25767
  ElderSuggestionPanelComponent,
25768
25768
  ElderAutocompleteDirective,
25769
- ElderAutocompleteManyDirective,
25769
+ ElderWordAutocompleteDirective,
25770
25770
  ],
25771
25771
  }]
25772
25772
  }] });
@@ -36272,7 +36272,6 @@ class ElderProgressBarComponent {
36272
36272
  * *
36273
36273
  **************************************************************************/
36274
36274
  set value(value) {
36275
- // eslint-disable-next-line eqeqeq
36276
36275
  if (value != null) {
36277
36276
  this.setSingleBarValue(value);
36278
36277
  }
@@ -39310,7 +39309,6 @@ class KafentEventService {
39310
39309
  ' and auth-token param: ' +
39311
39310
  this.authTokenParam);
39312
39311
  this.kafentEventStream = eventStreams.find((es) => es.transport === this.transport);
39313
- // eslint-disable-next-line eqeqeq
39314
39312
  if (this.kafentEventStream == null) {
39315
39313
  throw new Error('Could not find an event-stream implementation supporting transport ' +
39316
39314
  this.transport +
@@ -39627,5 +39625,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
39627
39625
  * Generated bundle index. Do not edit.
39628
39626
  */
39629
39627
 
39630
- 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 };
39631
39629
  //# sourceMappingURL=elderbyte-ngx-starter.mjs.map