@dereekb/dbx-web 9.24.17 → 9.24.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 (37) hide show
  1. package/calendar/package.json +2 -2
  2. package/esm2020/lib/dbx-web.module.mjs +1 -17
  3. package/esm2020/lib/extension/index.mjs +4 -1
  4. package/esm2020/lib/extension/structure/index.mjs +4 -0
  5. package/esm2020/lib/extension/structure/structure.body.directive.mjs +28 -0
  6. package/esm2020/lib/extension/structure/structure.module.mjs +27 -0
  7. package/esm2020/lib/extension/structure/structure.structure.directive.mjs +23 -0
  8. package/esm2020/lib/interaction/filter/filter.popover.button.directive.mjs +1 -1
  9. package/esm2020/lib/interaction/filter/filter.popover.component.mjs +17 -9
  10. package/esm2020/lib/interaction/filter/filter.preset.mjs +9 -4
  11. package/esm2020/mapbox/lib/mapbox.store.mjs +23 -3
  12. package/fesm2015/dereekb-dbx-web-mapbox.mjs +22 -2
  13. package/fesm2015/dereekb-dbx-web-mapbox.mjs.map +1 -1
  14. package/fesm2015/dereekb-dbx-web.mjs +129 -62
  15. package/fesm2015/dereekb-dbx-web.mjs.map +1 -1
  16. package/fesm2020/dereekb-dbx-web-mapbox.mjs +22 -2
  17. package/fesm2020/dereekb-dbx-web-mapbox.mjs.map +1 -1
  18. package/fesm2020/dereekb-dbx-web.mjs +124 -57
  19. package/fesm2020/dereekb-dbx-web.mjs.map +1 -1
  20. package/lib/dbx-web.module.d.ts +0 -10
  21. package/lib/extension/index.d.ts +1 -0
  22. package/lib/extension/structure/index.d.ts +3 -0
  23. package/lib/extension/structure/structure.body.directive.d.ts +9 -0
  24. package/lib/extension/structure/structure.module.d.ts +9 -0
  25. package/lib/extension/structure/structure.structure.directive.d.ts +15 -0
  26. package/lib/interaction/filter/filter.popover.button.directive.d.ts +4 -1
  27. package/lib/interaction/filter/filter.popover.component.d.ts +12 -4
  28. package/lib/interaction/filter/filter.preset.d.ts +3 -2
  29. package/mapbox/esm2020/lib/mapbox.store.mjs +23 -3
  30. package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs +22 -2
  31. package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs.map +1 -1
  32. package/mapbox/fesm2020/dereekb-dbx-web-mapbox.mjs +22 -2
  33. package/mapbox/fesm2020/dereekb-dbx-web-mapbox.mjs.map +1 -1
  34. package/mapbox/lib/mapbox.store.d.ts +14 -0
  35. package/mapbox/package.json +3 -3
  36. package/package.json +3 -3
  37. package/table/package.json +3 -3
@@ -1234,7 +1234,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
1234
1234
  type: Input
1235
1235
  }] } });
1236
1236
 
1237
- const declarations$9 = [DbxColorDirective, DbxSpacerDirective, DbxStyleDirective, DbxSetStyleDirective, DbxStyleBodyDirective];
1237
+ const declarations$a = [DbxColorDirective, DbxSpacerDirective, DbxStyleDirective, DbxSetStyleDirective, DbxStyleBodyDirective];
1238
1238
  class DbxStyleLayoutModule {
1239
1239
  }
1240
1240
  DbxStyleLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStyleLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -1244,8 +1244,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
1244
1244
  type: NgModule,
1245
1245
  args: [{
1246
1246
  imports: [CommonModule],
1247
- declarations: declarations$9,
1248
- exports: declarations$9
1247
+ declarations: declarations$a,
1248
+ exports: declarations$a
1249
1249
  }]
1250
1250
  }] });
1251
1251
 
@@ -1858,17 +1858,20 @@ class DbxFilterPopoverComponent extends AbstractPopoverDirective {
1858
1858
  this._showPreset = new BehaviorSubject(false);
1859
1859
  this.showPreset$ = this._showPreset.asObservable();
1860
1860
  this.config$ = this._showPreset.pipe(map((showPreset) => {
1861
- const { closeOnFilterChange = true, connector, initialFilterObs, customFilterComponentClass, presetFilterComponentClass } = this.config;
1861
+ var _a, _b;
1862
+ const { closeOnFilterChange = true, connector, initialFilterObs, customFilterComponentClass, presetFilterComponentClass, customFilterComponentConfig, presetFilterComponentConfig } = this.config;
1862
1863
  let componentClass;
1864
+ let baseConfig;
1863
1865
  if (showPreset) {
1864
- componentClass = presetFilterComponentClass;
1866
+ componentClass = ((_a = presetFilterComponentConfig === null || presetFilterComponentConfig === void 0 ? void 0 : presetFilterComponentConfig.componentClass) !== null && _a !== void 0 ? _a : presetFilterComponentClass);
1867
+ baseConfig = presetFilterComponentConfig;
1865
1868
  }
1866
1869
  else {
1867
- componentClass = customFilterComponentClass;
1870
+ componentClass = ((_b = customFilterComponentConfig === null || customFilterComponentConfig === void 0 ? void 0 : customFilterComponentConfig.componentClass) !== null && _b !== void 0 ? _b : customFilterComponentClass);
1871
+ baseConfig = customFilterComponentConfig;
1868
1872
  }
1869
- const config = {
1870
- componentClass,
1871
- init: (filterSource) => {
1873
+ const config = Object.assign(Object.assign({}, baseConfig), { componentClass, init: (filterSource) => {
1874
+ var _a;
1872
1875
  connector.connectWithSource(filterSource);
1873
1876
  if (initialFilterObs && filterSource.initWithFilter) {
1874
1877
  filterSource.initWithFilter(initialFilterObs);
@@ -1878,12 +1881,13 @@ class DbxFilterPopoverComponent extends AbstractPopoverDirective {
1878
1881
  this.close();
1879
1882
  });
1880
1883
  }
1881
- }
1882
- };
1884
+ // run the next init if provided
1885
+ (_a = baseConfig === null || baseConfig === void 0 ? void 0 : baseConfig.init) === null || _a === void 0 ? void 0 : _a.call(baseConfig, filterSource);
1886
+ } });
1883
1887
  return config;
1884
1888
  }));
1885
1889
  }
1886
- static openPopover(popupService, { width, height, isResizable, origin, header, icon, customFilterComponentClass, presetFilterComponentClass, connector, initialFilterObs, closeOnFilterChange, customizeButtonText, showCloseButton, closeButtonText }, popoverKey) {
1890
+ static openPopover(popupService, { width, height, isResizable, origin, header, icon, customFilterComponentClass, presetFilterComponentClass, customFilterComponentConfig, presetFilterComponentConfig, connector, initialFilterObs, closeOnFilterChange, customizeButtonText, showCloseButton, closeButtonText }, popoverKey) {
1887
1891
  return popupService.open({
1888
1892
  key: popoverKey !== null && popoverKey !== void 0 ? popoverKey : DEFAULT_FILTER_POPOVER_KEY,
1889
1893
  origin,
@@ -1899,6 +1903,8 @@ class DbxFilterPopoverComponent extends AbstractPopoverDirective {
1899
1903
  closeButtonText,
1900
1904
  customFilterComponentClass,
1901
1905
  presetFilterComponentClass,
1906
+ customFilterComponentConfig,
1907
+ presetFilterComponentConfig,
1902
1908
  connector,
1903
1909
  initialFilterObs,
1904
1910
  closeOnFilterChange
@@ -1918,14 +1924,14 @@ class DbxFilterPopoverComponent extends AbstractPopoverDirective {
1918
1924
  }
1919
1925
  ngOnInit() {
1920
1926
  let showPreset = false;
1921
- const { customFilterComponentClass, presetFilterComponentClass } = this.config;
1922
- if (customFilterComponentClass) {
1927
+ const { customFilterComponentClass, presetFilterComponentClass, customFilterComponentConfig, presetFilterComponentConfig } = this.config;
1928
+ if (customFilterComponentClass || customFilterComponentConfig) {
1923
1929
  showPreset = false;
1924
1930
  }
1925
- if (presetFilterComponentClass) {
1931
+ if (presetFilterComponentClass || presetFilterComponentConfig) {
1926
1932
  showPreset = true;
1927
1933
  }
1928
- if (!customFilterComponentClass && !presetFilterComponentClass) {
1934
+ if (!(customFilterComponentClass || customFilterComponentConfig) && !(presetFilterComponentClass || presetFilterComponentConfig)) {
1929
1935
  throw new Error('Requires a preset or custom class provided for DbxFilterPopover.');
1930
1936
  }
1931
1937
  this._showPreset.next(showPreset);
@@ -2158,7 +2164,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
2158
2164
  }] }];
2159
2165
  } });
2160
2166
 
2161
- const declarations$8 = [DbxPopoverContentComponent, DbxPopoverControlsDirective, DbxPopoverHeaderComponent, DbxPopoverScrollContentComponent];
2167
+ const declarations$9 = [DbxPopoverContentComponent, DbxPopoverControlsDirective, DbxPopoverHeaderComponent, DbxPopoverScrollContentComponent];
2162
2168
  /**
2163
2169
  * Contains all popover content components, allowing other sibling dbx-web modules to use the directives without referencing the full popover module.
2164
2170
  */
@@ -2171,8 +2177,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
2171
2177
  type: NgModule,
2172
2178
  args: [{
2173
2179
  imports: [CommonModule, MatIconModule, MatButtonModule, MatDividerModule, DbxKeypressModule, DbxStyleLayoutModule, DbxInjectionComponentModule, NgOverlayContainerModule, AngularResizeEventModule],
2174
- declarations: declarations$8,
2175
- exports: declarations$8
2180
+ declarations: declarations$9,
2181
+ exports: declarations$9
2176
2182
  }]
2177
2183
  }] });
2178
2184
 
@@ -2215,7 +2221,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
2215
2221
  type: Input
2216
2222
  }] } });
2217
2223
 
2218
- const declarations$7 = [DbxPopoverComponent, DbxPopoverCoordinatorComponent, DbxActionPopoverDirective];
2224
+ const declarations$8 = [DbxPopoverComponent, DbxPopoverCoordinatorComponent, DbxActionPopoverDirective];
2219
2225
  class DbxPopoverInteractionModule {
2220
2226
  }
2221
2227
  DbxPopoverInteractionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxPopoverInteractionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -2225,8 +2231,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
2225
2231
  type: NgModule,
2226
2232
  args: [{
2227
2233
  imports: [CommonModule, MatIconModule, MatButtonModule, MatDividerModule, DbxKeypressModule, DbxStyleLayoutModule, DbxInjectionComponentModule, NgOverlayContainerModule, AngularResizeEventModule, DbxPopoverInteractionContentModule],
2228
- declarations: declarations$7,
2229
- exports: [...declarations$7, DbxPopoverInteractionContentModule]
2234
+ declarations: declarations$8,
2235
+ exports: [...declarations$8, DbxPopoverInteractionContentModule]
2230
2236
  }]
2231
2237
  }] });
2232
2238
 
@@ -2279,6 +2285,7 @@ class AbstractDbxPresetFilterMenuComponent {
2279
2285
  constructor(filterSourceDirective) {
2280
2286
  this.filterSourceDirective = filterSourceDirective;
2281
2287
  //TODO: Rename to AbstractDbxPresetFilterMenuDirective with next breaking changes
2288
+ this.presetSelected = new EventEmitter();
2282
2289
  this._presets = new BehaviorSubject([]);
2283
2290
  this.selected$ = this.filterSourceDirective.filter$.pipe(startWith(undefined), distinctUntilChanged(), shareReplay(1));
2284
2291
  this.presetsWithPresetStringOnly$ = this._presets.pipe(map((x) => x.filter((y) => Boolean(y.preset))));
@@ -2335,16 +2342,20 @@ class AbstractDbxPresetFilterMenuComponent {
2335
2342
  }
2336
2343
  this.filterSourceDirective.setFilter(filter);
2337
2344
  }
2345
+ this.presetSelected.next(preset);
2338
2346
  }
2339
2347
  ngOnDestroy() {
2340
2348
  this._presets.complete();
2349
+ this.presetSelected.complete();
2341
2350
  }
2342
2351
  }
2343
2352
  AbstractDbxPresetFilterMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AbstractDbxPresetFilterMenuComponent, deps: [{ token: i1$2.FilterSourceDirective }], target: i0.ɵɵFactoryTarget.Directive });
2344
- AbstractDbxPresetFilterMenuComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: AbstractDbxPresetFilterMenuComponent, inputs: { presets: "presets" }, ngImport: i0 });
2353
+ AbstractDbxPresetFilterMenuComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: AbstractDbxPresetFilterMenuComponent, inputs: { presets: "presets" }, outputs: { presetSelected: "presetSelected" }, ngImport: i0 });
2345
2354
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AbstractDbxPresetFilterMenuComponent, decorators: [{
2346
2355
  type: Directive
2347
- }], ctorParameters: function () { return [{ type: i1$2.FilterSourceDirective }]; }, propDecorators: { presets: [{
2356
+ }], ctorParameters: function () { return [{ type: i1$2.FilterSourceDirective }]; }, propDecorators: { presetSelected: [{
2357
+ type: Output
2358
+ }], presets: [{
2348
2359
  type: Input
2349
2360
  }] } });
2350
2361
 
@@ -3602,7 +3613,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3602
3613
  }]
3603
3614
  }] });
3604
3615
 
3605
- const declarations$6 = [
3616
+ const declarations$7 = [
3606
3617
  //
3607
3618
  DbxContentDirective,
3608
3619
  DbxContentContainerDirective,
@@ -3642,8 +3653,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3642
3653
  type: NgModule,
3643
3654
  args: [{
3644
3655
  imports: [CommonModule],
3645
- declarations: declarations$6,
3646
- exports: declarations$6
3656
+ declarations: declarations$7,
3657
+ exports: declarations$7
3647
3658
  }]
3648
3659
  }] });
3649
3660
 
@@ -3681,7 +3692,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3681
3692
  args: ['dbxIfSidenavDisplayMode']
3682
3693
  }] } });
3683
3694
 
3684
- const declarations$5 = [DbxIfSidenavDisplayModeDirective, DbxSidenavComponent, DbxSidenavButtonComponent, DbxSidenavPagebarComponent, DbxSidenavPageComponent];
3695
+ const declarations$6 = [DbxIfSidenavDisplayModeDirective, DbxSidenavComponent, DbxSidenavButtonComponent, DbxSidenavPagebarComponent, DbxSidenavPageComponent];
3685
3696
  class DbxRouterSidenavModule {
3686
3697
  }
3687
3698
  DbxRouterSidenavModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxRouterSidenavModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -3691,8 +3702,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3691
3702
  type: NgModule,
3692
3703
  args: [{
3693
3704
  imports: [CommonModule, DbxBarLayoutModule, DbxRouterAnchorModule, DbxRouterAnchorListModule, DbxButtonModule, DbxContentLayoutModule, MatToolbarModule, MatButtonModule, MatIconModule, MatSidenavModule, MatListModule, MatDividerModule, UIRouterModule],
3694
- declarations: declarations$5,
3695
- exports: declarations$5
3705
+ declarations: declarations$6,
3706
+ exports: declarations$6
3696
3707
  }]
3697
3708
  }] });
3698
3709
 
@@ -3899,7 +3910,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3899
3910
  }]
3900
3911
  }] });
3901
3912
 
3902
- const declarations$4 = [DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent];
3913
+ const declarations$5 = [DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent];
3903
3914
  class DbxFilterInteractionModule {
3904
3915
  }
3905
3916
  DbxFilterInteractionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxFilterInteractionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -3944,8 +3955,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3944
3955
  MatIconModule,
3945
3956
  MatButtonModule
3946
3957
  ],
3947
- declarations: declarations$4,
3948
- exports: [...declarations$4, DbxCoreFilterModule]
3958
+ declarations: declarations$5,
3959
+ exports: [...declarations$5, DbxCoreFilterModule]
3949
3960
  }]
3950
3961
  }] });
3951
3962
 
@@ -6226,7 +6237,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6226
6237
  }]
6227
6238
  }] });
6228
6239
 
6229
- const declarations$3 = [DbxUnitedStatesAddressComponent, DbxChipDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxNoteComponent, DbxNoticeComponent, DbxSuccessComponent, DbxWarnComponent, DbxHintComponent, DbxLabelBlockComponent, DbxLabelComponent, DbxLinkifyComponent, DbxOkComponent, DbxTextChipsComponent, DbxIconSpacerDirective, DbxFormDescriptionComponent];
6240
+ const declarations$4 = [DbxUnitedStatesAddressComponent, DbxChipDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxNoteComponent, DbxNoticeComponent, DbxSuccessComponent, DbxWarnComponent, DbxHintComponent, DbxLabelBlockComponent, DbxLabelComponent, DbxLinkifyComponent, DbxOkComponent, DbxTextChipsComponent, DbxIconSpacerDirective, DbxFormDescriptionComponent];
6230
6241
  class DbxTextModule {
6231
6242
  }
6232
6243
  DbxTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -6236,12 +6247,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6236
6247
  type: NgModule,
6237
6248
  args: [{
6238
6249
  imports: [CommonModule, MatChipsModule, MatTooltipModule, MatIconModule],
6239
- declarations: declarations$3,
6240
- exports: declarations$3
6250
+ declarations: declarations$4,
6251
+ exports: declarations$4
6241
6252
  }]
6242
6253
  }] });
6243
6254
 
6244
- const declarations$2 = [
6255
+ const declarations$3 = [
6245
6256
  //
6246
6257
  DbxReadableErrorComponent,
6247
6258
  DbxLoadingErrorDirective,
@@ -6278,8 +6289,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6278
6289
  type: NgModule,
6279
6290
  args: [{
6280
6291
  imports: [CommonModule, DbxTextModule, DbxInjectionComponentModule, DbxPopoverInteractionContentModule, MatButtonModule, MatIconModule],
6281
- declarations: declarations$2,
6282
- exports: declarations$2
6292
+ declarations: declarations$3,
6293
+ exports: declarations$3
6283
6294
  }]
6284
6295
  }] });
6285
6296
 
@@ -6334,7 +6345,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6334
6345
  }] }, { type: i1$2.DbxActionContextStoreSourceInstance }];
6335
6346
  } });
6336
6347
 
6337
- const declarations$1 = [DbxLoadingComponent, DbxBasicLoadingComponent, DbxLoadingProgressComponent, DbxActionLoadingContextDirective];
6348
+ const declarations$2 = [DbxLoadingComponent, DbxBasicLoadingComponent, DbxLoadingProgressComponent, DbxActionLoadingContextDirective];
6338
6349
  class DbxLoadingModule {
6339
6350
  }
6340
6351
  DbxLoadingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxLoadingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -6344,8 +6355,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6344
6355
  type: NgModule,
6345
6356
  args: [{
6346
6357
  imports: [CommonModule, DbxReadableErrorModule, MatProgressSpinnerModule, MatProgressBarModule],
6347
- declarations: declarations$1,
6348
- exports: [...declarations$1, MatProgressSpinnerModule, MatProgressBarModule]
6358
+ declarations: declarations$2,
6359
+ exports: [...declarations$2, MatProgressSpinnerModule, MatProgressBarModule]
6349
6360
  }]
6350
6361
  }] });
6351
6362
 
@@ -7333,7 +7344,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
7333
7344
  type: Input
7334
7345
  }] } });
7335
7346
 
7336
- const declarations = [DbxSectionHeaderComponent, DbxSectionPageComponent, DbxSectionComponent, DbxSubSectionComponent, DbxIntroActionSectionComponent];
7347
+ const declarations$1 = [DbxSectionHeaderComponent, DbxSectionPageComponent, DbxSectionComponent, DbxSubSectionComponent, DbxIntroActionSectionComponent];
7337
7348
  /**
7338
7349
  * Module for container-type components.
7339
7350
  */
@@ -7346,8 +7357,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
7346
7357
  type: NgModule,
7347
7358
  args: [{
7348
7359
  imports: [CommonModule, DbxRouterAnchorModule, MatButtonModule, MatRippleModule, MatIconModule],
7349
- declarations,
7350
- exports: declarations
7360
+ declarations: declarations$1,
7361
+ exports: declarations$1
7351
7362
  }]
7352
7363
  }] });
7353
7364
 
@@ -8750,6 +8761,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
8750
8761
  }]
8751
8762
  }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
8752
8763
 
8764
+ /**
8765
+ * Used to reference a cdRef, injector, and element at the given element.
8766
+ *
8767
+ * Generally used for child views to reference a well-placed parent view.
8768
+ */
8769
+ class DbxStructureDirective {
8770
+ constructor(cdRef, injector, element) {
8771
+ this.cdRef = cdRef;
8772
+ this.injector = injector;
8773
+ this.element = element;
8774
+ }
8775
+ }
8776
+ DbxStructureDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureDirective, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
8777
+ DbxStructureDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: DbxStructureDirective, selector: "[dbxStructure]", ngImport: i0 });
8778
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureDirective, decorators: [{
8779
+ type: Directive,
8780
+ args: [{
8781
+ selector: '[dbxStructure]'
8782
+ }]
8783
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.Injector }, { type: i0.ElementRef }]; } });
8784
+
8785
+ /**
8786
+ * DbxStructureDirective used specifically on the body of the app.
8787
+ */
8788
+ class DbxBodyDirective extends DbxStructureDirective {
8789
+ }
8790
+ DbxBodyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxBodyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
8791
+ DbxBodyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: DbxBodyDirective, selector: "dbxBody,[dbxBody]", providers: [
8792
+ {
8793
+ provide: DbxStructureDirective,
8794
+ useExisting: DbxBodyDirective
8795
+ }
8796
+ ], usesInheritance: true, ngImport: i0 });
8797
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxBodyDirective, decorators: [{
8798
+ type: Directive,
8799
+ args: [{
8800
+ selector: 'dbxBody,[dbxBody]',
8801
+ providers: [
8802
+ {
8803
+ provide: DbxStructureDirective,
8804
+ useExisting: DbxBodyDirective
8805
+ }
8806
+ ]
8807
+ }]
8808
+ }] });
8809
+
8810
+ const declarations = [DbxBodyDirective, DbxStructureDirective];
8811
+ class DbxStructureModule {
8812
+ }
8813
+ DbxStructureModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8814
+ DbxStructureModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureModule, declarations: [DbxBodyDirective, DbxStructureDirective], imports: [
8815
+ //
8816
+ CommonModule
8817
+ ], exports: [DbxBodyDirective, DbxStructureDirective] });
8818
+ DbxStructureModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureModule, imports: [
8819
+ //
8820
+ CommonModule
8821
+ ] });
8822
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureModule, decorators: [{
8823
+ type: NgModule,
8824
+ args: [{
8825
+ imports: [
8826
+ //
8827
+ CommonModule
8828
+ ],
8829
+ declarations,
8830
+ exports: declarations
8831
+ }]
8832
+ }] });
8833
+
8753
8834
  /**
8754
8835
  * Service used to register widgets.
8755
8836
  */
@@ -8945,6 +9026,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
8945
9026
  }]
8946
9027
  }] });
8947
9028
 
9029
+ // export * from './calendar';
9030
+
8948
9031
  /**
8949
9032
  * Disables the "contextmenu" from popping up in the cdk-overlay-container.
8950
9033
  *
@@ -8978,26 +9061,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
8978
9061
  exports: [DbxButtonModule, DbxActionModule, DbxLoadingModule]
8979
9062
  }]
8980
9063
  }] });
8981
- /**
8982
- * Should only be imported once in the root app.
8983
- *
8984
- * Pre-configures the following modules:
8985
- */
8986
- class DbxWebRootModule {
8987
- }
8988
- DbxWebRootModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxWebRootModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8989
- DbxWebRootModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxWebRootModule });
8990
- DbxWebRootModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxWebRootModule });
8991
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxWebRootModule, decorators: [{
8992
- type: NgModule,
8993
- args: [{
8994
- imports: []
8995
- }]
8996
- }] });
8997
9064
 
8998
9065
  /**
8999
9066
  * Generated bundle index. Do not edit.
9000
9067
  */
9001
9068
 
9002
- export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxErrorWidgetComponent, 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_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_MAT_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_VALUE_LIST_VIEW_ITEM, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_DIRECTIVE_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, 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_DIRECTIVE_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_STATIC_LIST_DIRECTIVE_TEMPLATE, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionModule, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorLinkComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxBarButtonComponent, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBlockLayoutModule, DbxButtonComponent, DbxButtonDisplayType, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerComponent, DbxCardBoxLayoutModule, DbxChipDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxFormDescriptionComponent, DbxHintComponent, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxInteractionModule, DbxIntroActionSectionComponent, DbxItemLayoutModule, DbxKeypressModule, DbxLabelBlockComponent, DbxLabelComponent, DbxLayoutModule, DbxLinkifyComponent, DbxListComponent, DbxListEmptyContentComponent, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListLayoutModule, DbxListView, DbxListViewWrapper, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelInfoModule, DbxModelObjectStateService, actions as DbxModelStateActions, model_actions as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNoteComponent, DbxNoticeComponent, DbxOkComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentComponent, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressButtonsModule, DbxPromptBoxComponent, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptConfirmTypes, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorComponent, DbxReadableErrorModule, DbxRouterAnchorListModule, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterListModule, DbxRouterNavbarModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxScreenModule, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListItemViewComponent, DbxSelectionValueListViewComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxSpinnerButtonComponent, DbxStepComponent, DbxStepLayoutModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxSuccessComponent, DbxTextChipsComponent, DbxTextModule, DbxTwoBlocksComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadComponent, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListGridItemViewComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListItemViewComponent, DbxValueListView, DbxValueListViewComponent, DbxWarnComponent, DbxWebAngularRouterModule, DbxWebModule, DbxWebRootModule, DbxWebUIRouterModule, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetModule, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, LoadingComponentState, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, appObjectViewTrackerStorageFactory, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, dbxColorBackground, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxValueListItemDecisionFunction, disableRightClickInCdkBackdrop, index as fromDbxModel, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index$1 as onDbxModel, provideDbxListView, provideDbxListViewWrapper, provideDbxPromptConfirm, provideDbxValueListView, provideDbxValueListViewModifier, provideTwoColumnsContext, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
9069
+ export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxErrorWidgetComponent, 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_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_MAT_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_VALUE_LIST_VIEW_ITEM, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_DIRECTIVE_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, 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_DIRECTIVE_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_STATIC_LIST_DIRECTIVE_TEMPLATE, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionModule, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorLinkComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxBarButtonComponent, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBlockLayoutModule, DbxBodyDirective, DbxButtonComponent, DbxButtonDisplayType, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerComponent, DbxCardBoxLayoutModule, DbxChipDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxFormDescriptionComponent, DbxHintComponent, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxInteractionModule, DbxIntroActionSectionComponent, DbxItemLayoutModule, DbxKeypressModule, DbxLabelBlockComponent, DbxLabelComponent, DbxLayoutModule, DbxLinkifyComponent, DbxListComponent, DbxListEmptyContentComponent, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListLayoutModule, DbxListView, DbxListViewWrapper, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelInfoModule, DbxModelObjectStateService, actions as DbxModelStateActions, model_actions as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNoteComponent, DbxNoticeComponent, DbxOkComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentComponent, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressButtonsModule, DbxPromptBoxComponent, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptConfirmTypes, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorComponent, DbxReadableErrorModule, DbxRouterAnchorListModule, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterListModule, DbxRouterNavbarModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxScreenModule, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListItemViewComponent, DbxSelectionValueListViewComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxSpinnerButtonComponent, DbxStepComponent, DbxStepLayoutModule, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxSuccessComponent, DbxTextChipsComponent, DbxTextModule, DbxTwoBlocksComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadComponent, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListGridItemViewComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListItemViewComponent, DbxValueListView, DbxValueListViewComponent, DbxWarnComponent, DbxWebAngularRouterModule, DbxWebModule, DbxWebUIRouterModule, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetModule, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, LoadingComponentState, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, appObjectViewTrackerStorageFactory, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, dbxColorBackground, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxValueListItemDecisionFunction, disableRightClickInCdkBackdrop, index as fromDbxModel, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index$1 as onDbxModel, provideDbxListView, provideDbxListViewWrapper, provideDbxPromptConfirm, provideDbxValueListView, provideDbxValueListViewModifier, provideTwoColumnsContext, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
9003
9070
  //# sourceMappingURL=dereekb-dbx-web.mjs.map