@dereekb/dbx-web 12.6.18 → 12.6.19

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.
Files changed (35) hide show
  1. package/esm2022/lib/extension/help/absract.help.widget.directive.mjs +3 -3
  2. package/esm2022/lib/extension/help/help.context.directive.mjs +4 -4
  3. package/esm2022/lib/extension/help/help.context.mjs +3 -3
  4. package/esm2022/lib/extension/help/help.context.service.mjs +3 -3
  5. package/esm2022/lib/extension/help/help.mjs +1 -1
  6. package/esm2022/lib/extension/help/help.view.list.component.mjs +30 -11
  7. package/esm2022/lib/extension/help/help.view.list.entry.component.mjs +4 -3
  8. package/esm2022/lib/extension/help/help.view.popover.component.mjs +5 -4
  9. package/esm2022/lib/extension/help/help.widget.mjs +1 -1
  10. package/esm2022/lib/extension/help/help.widget.service.mjs +18 -10
  11. package/esm2022/lib/router/layout/anchor/anchor.component.mjs +20 -7
  12. package/esm2022/lib/router/provider/ngrouter/anchor.component.mjs +13 -4
  13. package/esm2022/lib/router/provider/uirouter/anchor.component.mjs +7 -51
  14. package/esm2022/lib/screen/resize.mjs +2 -2
  15. package/esm2022/lib/util/click.mjs +56 -0
  16. package/esm2022/lib/util/index.mjs +2 -1
  17. package/fesm2022/dereekb-dbx-web.mjs +148 -90
  18. package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
  19. package/lib/extension/help/absract.help.widget.directive.d.ts +8 -7
  20. package/lib/extension/help/help.context.d.ts +2 -2
  21. package/lib/extension/help/help.context.directive.d.ts +2 -2
  22. package/lib/extension/help/help.context.service.d.ts +3 -3
  23. package/lib/extension/help/help.d.ts +3 -3
  24. package/lib/extension/help/help.view.list.component.d.ts +16 -9
  25. package/lib/extension/help/help.view.list.entry.component.d.ts +1 -1
  26. package/lib/extension/help/help.view.popover.component.d.ts +8 -3
  27. package/lib/extension/help/help.widget.d.ts +13 -9
  28. package/lib/extension/help/help.widget.service.d.ts +15 -8
  29. package/lib/router/layout/anchor/anchor.component.d.ts +4 -1
  30. package/lib/router/provider/ngrouter/anchor.component.d.ts +5 -0
  31. package/lib/router/provider/uirouter/anchor.component.d.ts +2 -14
  32. package/lib/screen/resize.d.ts +1 -1
  33. package/lib/util/click.d.ts +29 -0
  34. package/lib/util/index.d.ts +1 -0
  35. package/package.json +1 -1
@@ -1028,7 +1028,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1028
1028
  /**
1029
1029
  * Creates a new Signal that emits resize events.
1030
1030
  *
1031
- * Must be created in an injectable context.
1031
+ * Must called in an Angular injection context.
1032
1032
  *
1033
1033
  * @param inputElement The element to observe for resize events. If not provided, the host element will be injected.
1034
1034
  */
@@ -2081,17 +2081,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2081
2081
  class DbxRouterWebProviderConfig {
2082
2082
  }
2083
2083
 
2084
+ /**
2085
+ * This effect exists to solve the issue of an injected element that utilizes event.stopPropogation() and doesn't also call event.preventDefault().
2086
+ *
2087
+ * We didn't want to use css's pointer-events: none as that would disable the Angular Material button effects.
2088
+ *
2089
+ * For example, dbx-button would call event.stopPropagation() on click, which would prevent the uiSref from being triggered, but the default behavior
2090
+ * of the anchor element would still be triggered, causing the browser to load/reload the page at the given href instead of navigating to the new state using uiSref.
2091
+ *
2092
+ * NOTE: Those nested event listeners are still ultimately triggered.
2093
+ *
2094
+ * Must be run in an Angular injection context.
2095
+ */
2096
+ function overrideClickElementEffect(config) {
2097
+ const { clickTarget, childClickTarget, disabledSignal } = config;
2098
+ const destroyRef = inject(DestroyRef);
2099
+ let _cleanupClickOverride;
2100
+ destroyRef.onDestroy(() => {
2101
+ _cleanupClickOverride?.();
2102
+ });
2103
+ return effect(() => {
2104
+ const clickTargetElement = clickTarget?.();
2105
+ const childClickElement = childClickTarget();
2106
+ const anchorDisabled = disabledSignal?.() ?? false;
2107
+ // cleanup/remove the previous/existing click function
2108
+ if (_cleanupClickOverride) {
2109
+ _cleanupClickOverride();
2110
+ }
2111
+ if (childClickElement) {
2112
+ if (!anchorDisabled) {
2113
+ const clickOverride = (event) => {
2114
+ // Allow ctrl+click, cmd+click, shift+click, and middle-click for new tab/window
2115
+ // Don't preventDefault or stopPropagation - let browser handle it naturally
2116
+ if (event.ctrlKey || event.metaKey || event.shiftKey || event.button === 1) {
2117
+ return; // Browser will open in new tab/window
2118
+ }
2119
+ else {
2120
+ // otherwise, also trigger a click on the uiSref anchor element
2121
+ clickTargetElement?.nativeElement.click();
2122
+ // Prevents the default behavior of the anchor element's href from being triggered
2123
+ event.preventDefault();
2124
+ event.stopPropagation();
2125
+ }
2126
+ };
2127
+ _cleanupClickOverride = () => {
2128
+ childClickElement.nativeElement.removeEventListener('click', clickOverride);
2129
+ _cleanupClickOverride = null;
2130
+ };
2131
+ childClickElement.nativeElement.addEventListener('click', clickOverride, {
2132
+ capture: true // Use capture to ensure this event listener is called before any nested child's event listeners
2133
+ });
2134
+ }
2135
+ }
2136
+ });
2137
+ }
2138
+
2084
2139
  /**
2085
2140
  * Component that renders an anchor element depending on the input.
2086
2141
  */
2087
2142
  class DbxAnchorComponent extends AbstractDbxAnchorDirective {
2088
2143
  _dbNgxRouterWebProviderConfig = inject(DbxRouterWebProviderConfig);
2089
2144
  block = input();
2145
+ clickableElement = viewChild('clickable', { read: ElementRef });
2146
+ childClickTarget = viewChild('childClickTarget', { read: ElementRef });
2090
2147
  templateRef = viewChild('content', { read: TemplateRef });
2091
2148
  templateRef$ = toObservable(this.templateRef).pipe(skipAllInitialMaybe(), shareReplay(1));
2092
2149
  selectedClassSignal = computed(() => (this.selectedSignal() ? 'dbx-anchor-selected' : ''));
2093
2150
  srefAnchorConfig = this._dbNgxRouterWebProviderConfig.anchorSegueRefComponent;
2151
+ _overrideClickElementEffect = overrideClickElementEffect({
2152
+ clickTarget: this.clickableElement,
2153
+ childClickTarget: this.childClickTarget,
2154
+ disabledSignal: computed(() => this.typeSignal() !== 'clickable')
2155
+ });
2094
2156
  clickAnchor(event) {
2157
+ console.log('click anchor');
2095
2158
  this.anchor()?.onClick?.(event);
2096
2159
  }
2097
2160
  onMouseEnter(event) {
@@ -2101,14 +2164,16 @@ class DbxAnchorComponent extends AbstractDbxAnchorDirective {
2101
2164
  this.anchor()?.onMouse?.('leave', event);
2102
2165
  }
2103
2166
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DbxAnchorComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
2104
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: DbxAnchorComponent, isStandalone: true, selector: "dbx-anchor, [dbx-anchor]", inputs: { block: { classPropertyName: "block", publicName: "block", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "dbx-anchor-block": "block()" }, listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()" }, classAttribute: "d-inline dbx-anchor" }, viewQueries: [{ propertyName: "templateRef", first: true, predicate: ["content"], descendants: true, read: TemplateRef, isSignal: true }], usesInheritance: true, ngImport: i0, template: `
2167
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: DbxAnchorComponent, isStandalone: true, selector: "dbx-anchor, [dbx-anchor]", inputs: { block: { classPropertyName: "block", publicName: "block", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "dbx-anchor-block": "block()" }, listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()" }, classAttribute: "d-inline dbx-anchor" }, viewQueries: [{ propertyName: "clickableElement", first: true, predicate: ["clickable"], descendants: true, read: ElementRef, isSignal: true }, { propertyName: "childClickTarget", first: true, predicate: ["childClickTarget"], descendants: true, read: ElementRef, isSignal: true }, { propertyName: "templateRef", first: true, predicate: ["content"], descendants: true, read: TemplateRef, isSignal: true }], usesInheritance: true, ngImport: i0, template: `
2105
2168
  @switch (typeSignal()) {
2106
2169
  @case ('plain') {
2107
2170
  <ng-container *ngTemplateOutlet="content"></ng-container>
2108
2171
  }
2109
2172
  @case ('clickable') {
2110
- <a class="dbx-anchor-a dbx-anchor-click" [ngClass]="selectedClassSignal()" (click)="clickAnchor()">
2111
- <ng-container *ngTemplateOutlet="content"></ng-container>
2173
+ <a #clickable class="dbx-anchor-a dbx-anchor-click" [ngClass]="selectedClassSignal()" (click)="clickAnchor()">
2174
+ <span #childClickTarget>
2175
+ <ng-container *ngTemplateOutlet="content"></ng-container>
2176
+ </span>
2112
2177
  </a>
2113
2178
  }
2114
2179
  @case ('sref') {
@@ -2143,8 +2208,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2143
2208
  <ng-container *ngTemplateOutlet="content"></ng-container>
2144
2209
  }
2145
2210
  @case ('clickable') {
2146
- <a class="dbx-anchor-a dbx-anchor-click" [ngClass]="selectedClassSignal()" (click)="clickAnchor()">
2147
- <ng-container *ngTemplateOutlet="content"></ng-container>
2211
+ <a #clickable class="dbx-anchor-a dbx-anchor-click" [ngClass]="selectedClassSignal()" (click)="clickAnchor()">
2212
+ <span #childClickTarget>
2213
+ <ng-container *ngTemplateOutlet="content"></ng-container>
2214
+ </span>
2148
2215
  </a>
2149
2216
  }
2150
2217
  @case ('sref') {
@@ -8252,12 +8319,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
8252
8319
  * SegueAnchor implementation for Angular Router.
8253
8320
  */
8254
8321
  class DbxAngularRouterSegueAnchorComponent extends AbstractDbxSegueAnchorDirective {
8322
+ anchorElement = viewChild.required('anchor', { read: ElementRef });
8323
+ injectionElement = viewChild.required('injection', { read: ElementRef });
8324
+ anchorDisabledSignal = computed(() => this.anchorSignal()?.disabled ?? false);
8325
+ _overrideClickElementEffect = overrideClickElementEffect({
8326
+ clickTarget: this.anchorElement,
8327
+ childClickTarget: this.injectionElement,
8328
+ disabledSignal: this.anchorDisabledSignal
8329
+ });
8255
8330
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DbxAngularRouterSegueAnchorComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
8256
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: DbxAngularRouterSegueAnchorComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<a class=\"dbx-anchor-a\" [attr.target]=\"targetSignal()\">\n <dbx-injection [template]=\"templateConfigSignal()\"></dbx-injection>\n</a>\n", dependencies: [{ kind: "component", type: DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }] });
8331
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.13", type: DbxAngularRouterSegueAnchorComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "anchorElement", first: true, predicate: ["anchor"], descendants: true, read: ElementRef, isSignal: true }, { propertyName: "injectionElement", first: true, predicate: ["injection"], descendants: true, read: ElementRef, isSignal: true }], usesInheritance: true, ngImport: i0, template: "<a class=\"dbx-anchor-a\" #anchor [attr.target]=\"targetSignal()\">\n <dbx-injection #injection [template]=\"templateConfigSignal()\"></dbx-injection>\n</a>\n", dependencies: [{ kind: "component", type: DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }] });
8257
8332
  }
8258
8333
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DbxAngularRouterSegueAnchorComponent, decorators: [{
8259
8334
  type: Component,
8260
- args: [{ imports: [DbxInjectionComponent], standalone: true, template: "<a class=\"dbx-anchor-a\" [attr.target]=\"targetSignal()\">\n <dbx-injection [template]=\"templateConfigSignal()\"></dbx-injection>\n</a>\n" }]
8335
+ args: [{ imports: [DbxInjectionComponent], standalone: true, template: "<a class=\"dbx-anchor-a\" #anchor [attr.target]=\"targetSignal()\">\n <dbx-injection #injection [template]=\"templateConfigSignal()\"></dbx-injection>\n</a>\n" }]
8261
8336
  }] });
8262
8337
 
8263
8338
  /**
@@ -8284,63 +8359,18 @@ function provideDbxRouterWebAngularRouterProviderConfig() {
8284
8359
  * SegueAnchor implementation for UIRouter.
8285
8360
  */
8286
8361
  class DbxUIRouterSegueAnchorComponent extends AbstractDbxSegueAnchorDirective {
8287
- _cleanupClickOverride = null;
8288
8362
  _parentAnchorSignal = toSignal(this.parent.anchor$, { initialValue: undefined });
8289
8363
  anchorElement = viewChild.required('anchor', { read: ElementRef });
8290
8364
  injectionElement = viewChild.required('injection', { read: ElementRef });
8291
8365
  anchorDisabledSignal = computed(() => this.anchorSignal()?.disabled ?? false);
8292
- /**
8293
- * This effect exists to solve the issue of an injected element that utilizes event.stopPropogation() and doesn't also call event.preventDefault().
8294
- *
8295
- * We didn't want to use css's pointer-events: none as that would disable the Angular Material button effects.
8296
- *
8297
- * For example, dbx-button would call event.stopPropagation() on click, which would prevent the uiSref from being triggered, but the default behavior
8298
- * of the anchor element would still be triggered, causing the browser to load/reload the page at the given href instead of navigating to the new state using uiSref.
8299
- *
8300
- * NOTE: Those nested event listeners are still ultimately triggered.
8301
- */
8302
- _overrideClickElementEffect = effect(() => {
8303
- const anchorElement = this.anchorElement();
8304
- const injectionElement = this.injectionElement();
8305
- const anchorDisabled = this.anchorDisabledSignal();
8306
- if (injectionElement) {
8307
- // cleanup/remove the previous/existing click function
8308
- if (this._cleanupClickOverride) {
8309
- this._cleanupClickOverride();
8310
- }
8311
- if (!anchorDisabled) {
8312
- const clickOverride = (event) => {
8313
- // Allow ctrl+click, cmd+click, shift+click, and middle-click for new tab/window
8314
- // Don't preventDefault or stopPropagation - let browser handle it naturally
8315
- if (event.ctrlKey || event.metaKey || event.shiftKey || event.button === 1) {
8316
- return; // Browser will open in new tab/window
8317
- }
8318
- else {
8319
- // otherwise, also trigger a click on the uiSref anchor element
8320
- anchorElement?.nativeElement.click();
8321
- // Prevents the default behavior of the anchor element's href from being triggered
8322
- event.preventDefault();
8323
- event.stopPropagation();
8324
- }
8325
- };
8326
- this._cleanupClickOverride = () => {
8327
- injectionElement.nativeElement.removeEventListener('click', clickOverride);
8328
- delete this._cleanupClickOverride;
8329
- };
8330
- injectionElement.nativeElement.addEventListener('click', clickOverride, {
8331
- capture: true // Use capture to ensure this event listener is called before any nested child's event listeners
8332
- });
8333
- }
8334
- }
8366
+ _overrideClickElementEffect = overrideClickElementEffect({
8367
+ clickTarget: this.anchorElement,
8368
+ childClickTarget: this.injectionElement,
8369
+ disabledSignal: this.anchorDisabledSignal
8335
8370
  });
8336
8371
  uiSrefSignal = computed(() => (this._parentAnchorSignal()?.ref ?? ''));
8337
8372
  uiParamsSignal = computed(() => this._parentAnchorSignal()?.refParams);
8338
8373
  uiOptionsSignal = computed(() => this._parentAnchorSignal()?.refOptions ?? {});
8339
- ngOnDestroy() {
8340
- if (this._cleanupClickOverride) {
8341
- this._cleanupClickOverride();
8342
- }
8343
- }
8344
8374
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DbxUIRouterSegueAnchorComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
8345
8375
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.13", type: DbxUIRouterSegueAnchorComponent, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "anchorElement", first: true, predicate: ["anchor"], descendants: true, read: ElementRef, isSignal: true }, { propertyName: "injectionElement", first: true, predicate: ["injection"], descendants: true, read: ElementRef, isSignal: true }], usesInheritance: true, ngImport: i0, template: "<a class=\"dbx-anchor-a dbx-anchor-sref\" #anchor [attr.target]=\"targetSignal()\" [uiSref]=\"uiSrefSignal()\" [uiParams]=\"uiParamsSignal()\" [uiOptions]=\"uiOptionsSignal()\" uiSrefActive=\"dbx-anchor-active\" uiSrefActiveEq=\"dbx-anchor-active-eq\">\n <dbx-injection #injection [template]=\"templateConfigSignal()\"></dbx-injection>\n</a>\n", dependencies: [{ kind: "ngmodule", type: UIRouterModule }, { kind: "directive", type: i1$5.UISref, selector: "[uiSref]", inputs: ["uiSref", "uiParams", "uiOptions"], exportAs: ["uiSref"] }, { kind: "directive", type: i1$5.AnchorUISref, selector: "a[uiSref]" }, { kind: "directive", type: i1$5.UISrefActive, selector: "[uiSrefActive],[uiSrefActiveEq]", inputs: ["uiSrefActive", "uiSrefActiveEq"] }, { kind: "component", type: DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
8346
8376
  }
@@ -11671,8 +11701,8 @@ class DbxHelpContextService {
11671
11701
  /**
11672
11702
  * Observable of all currently active help context strings.
11673
11703
  */
11674
- activeHelpContextStrings$ = this._contextReferences.pipe(switchMap((allReferences) => combineLatest(Array.from(allReferences).map((ref) => ref.helpContextStrings$)).pipe(map((x) => x.flat()), defaultIfEmpty([]), map((x) => new Set(x)))), distinctUntilHasDifferentValues(), shareReplay(1));
11675
- activeHelpContextStringsArray$ = this.activeHelpContextStrings$.pipe(map((x) => Array.from(x)), shareReplay(1));
11704
+ activeHelpContextKeys$ = this._contextReferences.pipe(switchMap((allReferences) => combineLatest(Array.from(allReferences).map((ref) => ref.helpContextKeys$)).pipe(map((x) => x.flat()), defaultIfEmpty([]), map((x) => new Set(x)))), distinctUntilHasDifferentValues(), shareReplay(1));
11705
+ activeHelpContextKeysArray$ = this.activeHelpContextKeys$.pipe(map((x) => Array.from(x)), shareReplay(1));
11676
11706
  register(reference) {
11677
11707
  const referenceSet = this._contextReferences.value;
11678
11708
  referenceSet.add(reference);
@@ -11700,11 +11730,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
11700
11730
  *
11701
11731
  * Automatically cleans up, but returns a destroy function for manual cleanup.
11702
11732
  */
11703
- function registerHelpContextStringsWithDbxHelpContextService(helpContextStrings) {
11733
+ function registerHelpContextKeysWithDbxHelpContextService(helpContextKeys) {
11704
11734
  const helpContextService = inject(DbxHelpContextService);
11705
11735
  const destroyRef = inject(DestroyRef);
11706
11736
  const helpContextReference = {
11707
- helpContextStrings$: asObservable(helpContextStrings)
11737
+ helpContextKeys$: asObservable(helpContextKeys)
11708
11738
  };
11709
11739
  helpContextService.register(helpContextReference);
11710
11740
  function _destroy() {
@@ -11722,9 +11752,9 @@ class DbxHelpContextDirective {
11722
11752
  * The input help context string(s) to add.
11723
11753
  */
11724
11754
  dbxHelpContext = input.required();
11725
- helpContextStrings$ = toObservable(this.dbxHelpContext).pipe(map(asArray));
11755
+ helpContextKeys$ = toObservable(this.dbxHelpContext).pipe(map(asArray));
11726
11756
  constructor() {
11727
- registerHelpContextStringsWithDbxHelpContextService(this.helpContextStrings$);
11757
+ registerHelpContextKeysWithDbxHelpContextService(this.helpContextKeys$);
11728
11758
  }
11729
11759
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DbxHelpContextDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
11730
11760
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "18.2.13", type: DbxHelpContextDirective, isStandalone: true, selector: "[dbxHelpContext]", inputs: { dbxHelpContext: { classPropertyName: "dbxHelpContext", publicName: "dbxHelpContext", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0 });
@@ -11748,16 +11778,18 @@ class DbxHelpWidgetServiceConfig {
11748
11778
  class DbxHelpWidgetService {
11749
11779
  _entries = new Map();
11750
11780
  _sortPriorityMap = cachedGetter(() => {
11751
- return new Map(mapIterable(this._entries.values(), (entry) => [entry.helpContextString, entry.sortPriority ?? -1]));
11781
+ return new Map(mapIterable(this._entries.values(), (entry) => [entry.helpContextKey, entry.sortPriority ?? -1]));
11752
11782
  });
11753
11783
  _defaultWidgetComponentClass;
11784
+ _helpListHeaderComponentConfig;
11754
11785
  _helpListFooterComponentConfig;
11755
11786
  _defaultIcon;
11756
11787
  _popoverHeaderComponentConfig;
11757
11788
  constructor(initialConfig) {
11758
11789
  this.setDefaultWidgetComponentClass(initialConfig?.defaultWidgetComponentClass);
11759
- this.setDefaultIcon(initialConfig?.defaultIcon !== undefined ? initialConfig?.defaultIcon : 'help');
11790
+ this.setDefaultIcon(initialConfig?.defaultIcon);
11760
11791
  this.setPopoverHeaderComponentConfig(initialConfig?.popoverHeaderComponentConfig);
11792
+ this.setHelpListHeaderComponentConfig(initialConfig?.helpListHeaderComponentConfig);
11761
11793
  this.setHelpListFooterComponentConfig(initialConfig?.helpListFooterComponentConfig);
11762
11794
  if (initialConfig?.entries) {
11763
11795
  this.register(initialConfig.entries);
@@ -11781,6 +11813,12 @@ class DbxHelpWidgetService {
11781
11813
  setPopoverHeaderComponentConfig(componentConfig) {
11782
11814
  this._popoverHeaderComponentConfig = componentConfig;
11783
11815
  }
11816
+ getHelpListHeaderComponentConfig() {
11817
+ return this._helpListHeaderComponentConfig;
11818
+ }
11819
+ setHelpListHeaderComponentConfig(componentConfig) {
11820
+ this._helpListHeaderComponentConfig = componentConfig;
11821
+ }
11784
11822
  getHelpListFooterComponentConfig() {
11785
11823
  return this._helpListFooterComponentConfig;
11786
11824
  }
@@ -11798,21 +11836,21 @@ class DbxHelpWidgetService {
11798
11836
  register(entries, override = true) {
11799
11837
  const entriesArray = asArray(entries);
11800
11838
  entriesArray.forEach((entry) => {
11801
- if (override || !this._entries.has(entry.helpContextString)) {
11802
- this._entries.set(entry.helpContextString, entry);
11839
+ if (override || !this._entries.has(entry.helpContextKey)) {
11840
+ this._entries.set(entry.helpContextKey, entry);
11803
11841
  }
11804
11842
  });
11805
11843
  return true;
11806
11844
  }
11807
11845
  // MARK: Get
11808
- getAllRegisteredHelpContextStrings() {
11846
+ getAllRegisteredHelpContextKeys() {
11809
11847
  return Array.from(this._entries.keys());
11810
11848
  }
11811
- getHelpWidgetEntry(helpContextString) {
11812
- return this._entries.get(helpContextString) ?? (this._defaultWidgetComponentClass ? { helpContextString, title: '<Missing Help Topic>', widgetComponentClass: this._defaultWidgetComponentClass } : undefined);
11849
+ getHelpWidgetEntry(helpContextKey) {
11850
+ return this._entries.get(helpContextKey) ?? (this._defaultWidgetComponentClass ? { helpContextKey, title: '<Missing Help Topic>', widgetComponentClass: this._defaultWidgetComponentClass } : undefined);
11813
11851
  }
11814
- getHelpWidgetEntriesForHelpContextStrings(helpContextStrings) {
11815
- return helpContextStrings.map((context) => this.getHelpWidgetEntry(context)).filter((entry) => !!entry);
11852
+ getHelpWidgetEntriesForHelpContextKeys(helpContextKeys) {
11853
+ return helpContextKeys.map((context) => this.getHelpWidgetEntry(context)).filter((entry) => !!entry);
11816
11854
  }
11817
11855
  hasHelpWidgetEntry(context) {
11818
11856
  return this._entries.has(context);
@@ -11860,8 +11898,8 @@ const DBX_HELP_WIDGET_ENTRY_DATA_TOKEN = new InjectionToken('DbxHelpWidgetEntryD
11860
11898
  class DbxAbstractHelpWidgetDirective {
11861
11899
  helpWidgetData = inject(DBX_HELP_WIDGET_ENTRY_DATA_TOKEN);
11862
11900
  helpWidgetEntry = this.helpWidgetData.helpWidgetEntry;
11863
- get helpContextString() {
11864
- return this.helpWidgetEntry.helpContextString;
11901
+ get helpContextKey() {
11902
+ return this.helpWidgetEntry.helpContextKey;
11865
11903
  }
11866
11904
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DbxAbstractHelpWidgetDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
11867
11905
  static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: DbxAbstractHelpWidgetDirective, ngImport: i0 });
@@ -11878,7 +11916,7 @@ class DbxHelpViewListEntryComponent {
11878
11916
  iconSignal = computed(() => this.helpWidgetEntry().icon ?? this.helpWidgetService.getDefaultIcon());
11879
11917
  widgetInjectionConfigSignal = computed(() => {
11880
11918
  const helpWidgetEntry = this.helpWidgetEntry();
11881
- const widgetComponentClass = helpWidgetEntry.widgetComponentClass;
11919
+ const widgetComponentClass = getValueFromGetter(helpWidgetEntry.widgetComponentClass);
11882
11920
  const widgetData = {
11883
11921
  helpWidgetEntry
11884
11922
  };
@@ -11895,7 +11933,7 @@ class DbxHelpViewListEntryComponent {
11895
11933
  });
11896
11934
  headerInjectionConfigSignal = computed(() => {
11897
11935
  const helpWidgetEntry = this.helpWidgetEntry();
11898
- const headerComponentClass = helpWidgetEntry.headerComponentClass;
11936
+ const headerComponentClass = getValueFromGetter(helpWidgetEntry.headerComponentClass);
11899
11937
  let config = undefined;
11900
11938
  if (headerComponentClass) {
11901
11939
  const widgetData = {
@@ -11926,26 +11964,39 @@ class DbxHelpViewListComponent {
11926
11964
  /**
11927
11965
  * Whether the accordion should allow multiple expanded panels.
11928
11966
  */
11929
- multi = input(true);
11967
+ multi = input();
11930
11968
  /**
11931
11969
  * Whether or not to show the empty list content.
11932
11970
  */
11933
11971
  allowEmptyListContent = input(true);
11934
11972
  /**
11935
- * Optional footer component config to inject after the list.
11973
+ * Optional header component config to inject before the list.
11936
11974
  *
11937
- * If set null, then will not show any footer.
11975
+ * If set null, then will not show any header.
11976
+ */
11977
+ helpListHeaderComponentConfig = input(undefined);
11978
+ /**
11979
+ * Optional header component config to inject before the list.
11980
+ *
11981
+ * If set null, then will not show any header.
11938
11982
  */
11939
11983
  helpListFooterComponentConfig = input(undefined);
11940
- helpContextStrings = input.required();
11941
- helpContextStrings$ = toObservable(this.helpContextStrings).pipe(switchMap((x) => asObservable(x) ?? of([])), map(asArray), distinctUntilHasDifferentValues(), map((x) => {
11984
+ helpContextKeys = input.required();
11985
+ helpContextKeys$ = toObservable(this.helpContextKeys).pipe(switchMap((x) => asObservable(x) ?? of([])), map(asArray), distinctUntilHasDifferentValues(), map((x) => {
11942
11986
  const sortPriorityMap = this.helpWidgetService.getSortPriorityMap();
11943
11987
  const sorted = [...x].sort(sortByNumberFunction((x) => sortPriorityMap.get(x) ?? -2));
11944
11988
  return sorted;
11945
11989
  }), shareReplay(1));
11946
- helpContextStringsSignal = toSignal(this.helpContextStrings$, { initialValue: [] });
11947
- helpWidgetEntriesSignal = computed(() => this.helpWidgetService.getHelpWidgetEntriesForHelpContextStrings(this.helpContextStringsSignal()));
11990
+ helpContextKeysSignal = toSignal(this.helpContextKeys$, { initialValue: [] });
11991
+ helpWidgetEntriesSignal = computed(() => this.helpWidgetService.getHelpWidgetEntriesForHelpContextKeys(this.helpContextKeysSignal()));
11948
11992
  hasNoHelpWidgetEntriesSignal = computed(() => !this.helpWidgetEntriesSignal()?.length);
11993
+ helpListHeaderComponentConfigSignal = computed(() => {
11994
+ let config = this.helpListHeaderComponentConfig();
11995
+ if (config !== null) {
11996
+ config = this.helpWidgetService.getHelpListHeaderComponentConfig();
11997
+ }
11998
+ return config;
11999
+ });
11949
12000
  helpListFooterComponentConfigSignal = computed(() => {
11950
12001
  let config = this.helpListFooterComponentConfig();
11951
12002
  if (config !== null) {
@@ -11954,9 +12005,12 @@ class DbxHelpViewListComponent {
11954
12005
  return config;
11955
12006
  });
11956
12007
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DbxHelpViewListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
11957
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: DbxHelpViewListComponent, isStandalone: true, selector: "dbx-help-view-list", inputs: { multi: { classPropertyName: "multi", publicName: "multi", isSignal: true, isRequired: false, transformFunction: null }, allowEmptyListContent: { classPropertyName: "allowEmptyListContent", publicName: "allowEmptyListContent", isSignal: true, isRequired: false, transformFunction: null }, helpListFooterComponentConfig: { classPropertyName: "helpListFooterComponentConfig", publicName: "helpListFooterComponentConfig", isSignal: true, isRequired: false, transformFunction: null }, helpContextStrings: { classPropertyName: "helpContextStrings", publicName: "helpContextStrings", isSignal: true, isRequired: true, transformFunction: null } }, host: { classAttribute: "dbx-help-view-list dbx-block" }, ngImport: i0, template: `
12008
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: DbxHelpViewListComponent, isStandalone: true, selector: "dbx-help-view-list", inputs: { multi: { classPropertyName: "multi", publicName: "multi", isSignal: true, isRequired: false, transformFunction: null }, allowEmptyListContent: { classPropertyName: "allowEmptyListContent", publicName: "allowEmptyListContent", isSignal: true, isRequired: false, transformFunction: null }, helpListHeaderComponentConfig: { classPropertyName: "helpListHeaderComponentConfig", publicName: "helpListHeaderComponentConfig", isSignal: true, isRequired: false, transformFunction: null }, helpListFooterComponentConfig: { classPropertyName: "helpListFooterComponentConfig", publicName: "helpListFooterComponentConfig", isSignal: true, isRequired: false, transformFunction: null }, helpContextKeys: { classPropertyName: "helpContextKeys", publicName: "helpContextKeys", isSignal: true, isRequired: true, transformFunction: null } }, host: { classAttribute: "dbx-help-view-list dbx-block" }, ngImport: i0, template: `
12009
+ <div class="dbx-help-view-list-header">
12010
+ <dbx-injection [config]="helpListHeaderComponentConfigSignal()"></dbx-injection>
12011
+ </div>
11958
12012
  <mat-accordion [multi]="multi()">
11959
- @for (widgetEntry of helpWidgetEntriesSignal(); track widgetEntry.helpContextString) {
12013
+ @for (widgetEntry of helpWidgetEntriesSignal(); track widgetEntry.helpContextKey) {
11960
12014
  <dbx-help-view-list-entry [helpWidgetEntry]="widgetEntry"></dbx-help-view-list-entry>
11961
12015
  }
11962
12016
  </mat-accordion>
@@ -11975,8 +12029,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
11975
12029
  args: [{
11976
12030
  selector: 'dbx-help-view-list',
11977
12031
  template: `
12032
+ <div class="dbx-help-view-list-header">
12033
+ <dbx-injection [config]="helpListHeaderComponentConfigSignal()"></dbx-injection>
12034
+ </div>
11978
12035
  <mat-accordion [multi]="multi()">
11979
- @for (widgetEntry of helpWidgetEntriesSignal(); track widgetEntry.helpContextString) {
12036
+ @for (widgetEntry of helpWidgetEntriesSignal(); track widgetEntry.helpContextKey) {
11980
12037
  <dbx-help-view-list-entry [helpWidgetEntry]="widgetEntry"></dbx-help-view-list-entry>
11981
12038
  }
11982
12039
  </mat-accordion>
@@ -12005,7 +12062,7 @@ const DEFAULT_DBX_HELP_VIEW_POPOVER_KEY = 'help';
12005
12062
  class DbxHelpViewPopoverComponent extends AbstractPopoverDirective {
12006
12063
  _helpContextService = inject(DbxHelpContextService);
12007
12064
  _helpWidgetService = inject(DbxHelpWidgetService);
12008
- helpContextStrings$ = this.popover.data?.helpContextStrings ?? this._helpContextService.activeHelpContextStringsArray$;
12065
+ helpContextKeys$ = this.popover.data?.helpContextKeys ?? this._helpContextService.activeHelpContextKeysArray$;
12009
12066
  static openPopover(popoverService, config, popoverKey) {
12010
12067
  const { origin, popoverSizingConfig, ...data } = config;
12011
12068
  return popoverService.open({
@@ -12024,6 +12081,7 @@ class DbxHelpViewPopoverComponent extends AbstractPopoverDirective {
12024
12081
  }
12025
12082
  icon = this.config.icon ?? 'help';
12026
12083
  header = this.config.header ?? 'Help';
12084
+ multi = this.config.multi;
12027
12085
  emptyText = this.config.emptyText ?? 'No help topics available in current context.';
12028
12086
  allowEmptyListContent = this.config.allowEmptyListContent ?? true;
12029
12087
  helpListFooterComponentConfig = this.config.helpListFooterComponentConfig;
@@ -12035,11 +12093,11 @@ class DbxHelpViewPopoverComponent extends AbstractPopoverDirective {
12035
12093
  return config;
12036
12094
  })();
12037
12095
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DbxHelpViewPopoverComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
12038
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: DbxHelpViewPopoverComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<dbx-popover-content>\n <!-- Header -->\n <dbx-popover-header [icon]=\"icon\" [header]=\"header\">\n <dbx-injection [config]=\"popoverHeaderConfig\"></dbx-injection>\n </dbx-popover-header>\n <!-- Content -->\n <dbx-popover-scroll-content>\n <dbx-help-view-list [helpContextStrings]=\"helpContextStrings$\" [allowEmptyListContent]=\"allowEmptyListContent\" [helpListFooterComponentConfig]=\"helpListFooterComponentConfig\">\n <p empty>{{ emptyText }}</p>\n </dbx-help-view-list>\n </dbx-popover-scroll-content>\n</dbx-popover-content>\n", dependencies: [{ kind: "component", type: DbxPopoverContentComponent, selector: "dbx-popover-content" }, { kind: "component", type: DbxPopoverHeaderComponent, selector: "dbx-popover-header", inputs: ["header", "icon"] }, { kind: "directive", type: DbxPopoverScrollContentDirective, selector: "dbx-popover-scroll-content,[dbxPopoverScrollContent],.dbx-popover-scroll-content" }, { kind: "component", type: DbxHelpViewListComponent, selector: "dbx-help-view-list", inputs: ["multi", "allowEmptyListContent", "helpListFooterComponentConfig", "helpContextStrings"] }, { kind: "component", type: DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
12096
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: DbxHelpViewPopoverComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<dbx-popover-content>\n <!-- Header -->\n <dbx-popover-header [icon]=\"icon\" [header]=\"header\">\n <dbx-injection [config]=\"popoverHeaderConfig\"></dbx-injection>\n </dbx-popover-header>\n <!-- Content -->\n <dbx-popover-scroll-content>\n <dbx-help-view-list [helpContextKeys]=\"helpContextKeys$\" [multi]=\"multi\" [allowEmptyListContent]=\"allowEmptyListContent\" [helpListFooterComponentConfig]=\"helpListFooterComponentConfig\">\n <p empty>{{ emptyText }}</p>\n </dbx-help-view-list>\n </dbx-popover-scroll-content>\n</dbx-popover-content>\n", dependencies: [{ kind: "component", type: DbxPopoverContentComponent, selector: "dbx-popover-content" }, { kind: "component", type: DbxPopoverHeaderComponent, selector: "dbx-popover-header", inputs: ["header", "icon"] }, { kind: "directive", type: DbxPopoverScrollContentDirective, selector: "dbx-popover-scroll-content,[dbxPopoverScrollContent],.dbx-popover-scroll-content" }, { kind: "component", type: DbxHelpViewListComponent, selector: "dbx-help-view-list", inputs: ["multi", "allowEmptyListContent", "helpListHeaderComponentConfig", "helpListFooterComponentConfig", "helpContextKeys"] }, { kind: "component", type: DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
12039
12097
  }
12040
12098
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DbxHelpViewPopoverComponent, decorators: [{
12041
12099
  type: Component,
12042
- args: [{ imports: [DbxPopoverContentComponent, DbxPopoverHeaderComponent, DbxPopoverScrollContentDirective, DbxHelpViewListComponent, DbxInjectionComponent], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<dbx-popover-content>\n <!-- Header -->\n <dbx-popover-header [icon]=\"icon\" [header]=\"header\">\n <dbx-injection [config]=\"popoverHeaderConfig\"></dbx-injection>\n </dbx-popover-header>\n <!-- Content -->\n <dbx-popover-scroll-content>\n <dbx-help-view-list [helpContextStrings]=\"helpContextStrings$\" [allowEmptyListContent]=\"allowEmptyListContent\" [helpListFooterComponentConfig]=\"helpListFooterComponentConfig\">\n <p empty>{{ emptyText }}</p>\n </dbx-help-view-list>\n </dbx-popover-scroll-content>\n</dbx-popover-content>\n" }]
12100
+ args: [{ imports: [DbxPopoverContentComponent, DbxPopoverHeaderComponent, DbxPopoverScrollContentDirective, DbxHelpViewListComponent, DbxInjectionComponent], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<dbx-popover-content>\n <!-- Header -->\n <dbx-popover-header [icon]=\"icon\" [header]=\"header\">\n <dbx-injection [config]=\"popoverHeaderConfig\"></dbx-injection>\n </dbx-popover-header>\n <!-- Content -->\n <dbx-popover-scroll-content>\n <dbx-help-view-list [helpContextKeys]=\"helpContextKeys$\" [multi]=\"multi\" [allowEmptyListContent]=\"allowEmptyListContent\" [helpListFooterComponentConfig]=\"helpListFooterComponentConfig\">\n <p empty>{{ emptyText }}</p>\n </dbx-help-view-list>\n </dbx-popover-scroll-content>\n</dbx-popover-content>\n" }]
12043
12101
  }] });
12044
12102
 
12045
12103
  /**
@@ -12146,5 +12204,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
12146
12204
  * Generated bundle index. Do not edit.
12147
12205
  */
12148
12206
 
12149
- export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_PREVIEW_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LIST_GRID_VIEW_DIRECTIVE_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SELECTION_VALUE_LIST_DIRECTIVE_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_VALUE_LIST_CONFIG_MAP_VALUES, DEFAULT_DBX_VALUE_LIST_GRID_DIRECTIVE_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LIST_WRAPPER_DIRECTIVE_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAbstractHelpWidgetDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionModule, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBlockLayoutModule, DbxBodyDirective, DbxButtonComponent, DbxButtonDisplayType, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextModule, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxInteractionModule, DbxIntroActionSectionComponent, DbxKeypressModule, DbxLabelBlockComponent, DbxLayoutModule, DbxLinkComponent, DbxLinkifyComponent, DbxListComponent, DbxListEmptyContentComponent, DbxListGridViewDirectiveImportsModule, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListLayoutModule, DbxListModifierModule, DbxListModule, DbxListTitleGroupDirective, DbxListView, DbxListViewMetaIconComponent, DbxListViewWrapper, DbxListWrapperComponentImportsModule, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelObjectStateService, actions as DbxModelStateActions, model_actions as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNumberWithLimitComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressButtonsModule, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorModule, DbxResizedDirective, DbxRouterAnchorListModule, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterListModule, DbxRouterNavbarModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepComponent, DbxStepLayoutModule, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, DbxTextModule, DbxTwoBlockComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadDirective, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewComponentImportsModule, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWebFilePreviewComponent, DbxWebFilePreviewService, DbxWebModule, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetModule, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, DbxZipBlobPreviewComponent, DbxZipPreviewComponent, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, UNKNOWN_ERROR_WIDGET_CODE, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxListGridViewDirectiveImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxValueListItemDecisionFunction, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, index as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index$1 as onDbxModel, openEmbedDialog, openIframeDialog, openZipPreviewDialog, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideTwoColumnsContext, registerHelpContextStringsWithDbxHelpContextService, resizeSignal, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
12207
+ export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_PREVIEW_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LIST_GRID_VIEW_DIRECTIVE_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SELECTION_VALUE_LIST_DIRECTIVE_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_VALUE_LIST_CONFIG_MAP_VALUES, DEFAULT_DBX_VALUE_LIST_GRID_DIRECTIVE_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LIST_WRAPPER_DIRECTIVE_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAbstractHelpWidgetDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionModule, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBlockLayoutModule, DbxBodyDirective, DbxButtonComponent, DbxButtonDisplayType, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextModule, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxInteractionModule, DbxIntroActionSectionComponent, DbxKeypressModule, DbxLabelBlockComponent, DbxLayoutModule, DbxLinkComponent, DbxLinkifyComponent, DbxListComponent, DbxListEmptyContentComponent, DbxListGridViewDirectiveImportsModule, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListLayoutModule, DbxListModifierModule, DbxListModule, DbxListTitleGroupDirective, DbxListView, DbxListViewMetaIconComponent, DbxListViewWrapper, DbxListWrapperComponentImportsModule, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelObjectStateService, actions as DbxModelStateActions, model_actions as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNumberWithLimitComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressButtonsModule, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorModule, DbxResizedDirective, DbxRouterAnchorListModule, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterListModule, DbxRouterNavbarModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepComponent, DbxStepLayoutModule, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, DbxTextModule, DbxTwoBlockComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadDirective, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewComponentImportsModule, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWebFilePreviewComponent, DbxWebFilePreviewService, DbxWebModule, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetModule, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, DbxZipBlobPreviewComponent, DbxZipPreviewComponent, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, UNKNOWN_ERROR_WIDGET_CODE, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxListGridViewDirectiveImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxValueListItemDecisionFunction, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, index as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index$1 as onDbxModel, openEmbedDialog, openIframeDialog, openZipPreviewDialog, overrideClickElementEffect, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
12150
12208
  //# sourceMappingURL=dereekb-dbx-web.mjs.map