@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
@@ -1231,7 +1231,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
1231
1231
  type: Input
1232
1232
  }] } });
1233
1233
 
1234
- const declarations$9 = [DbxColorDirective, DbxSpacerDirective, DbxStyleDirective, DbxSetStyleDirective, DbxStyleBodyDirective];
1234
+ const declarations$a = [DbxColorDirective, DbxSpacerDirective, DbxStyleDirective, DbxSetStyleDirective, DbxStyleBodyDirective];
1235
1235
  class DbxStyleLayoutModule {
1236
1236
  }
1237
1237
  DbxStyleLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStyleLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -1241,8 +1241,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
1241
1241
  type: NgModule,
1242
1242
  args: [{
1243
1243
  imports: [CommonModule],
1244
- declarations: declarations$9,
1245
- exports: declarations$9
1244
+ declarations: declarations$a,
1245
+ exports: declarations$a
1246
1246
  }]
1247
1247
  }] });
1248
1248
 
@@ -1895,15 +1895,19 @@ class DbxFilterPopoverComponent extends AbstractPopoverDirective {
1895
1895
  this._showPreset = new BehaviorSubject(false);
1896
1896
  this.showPreset$ = this._showPreset.asObservable();
1897
1897
  this.config$ = this._showPreset.pipe(map((showPreset) => {
1898
- const { closeOnFilterChange = true, connector, initialFilterObs, customFilterComponentClass, presetFilterComponentClass } = this.config;
1898
+ const { closeOnFilterChange = true, connector, initialFilterObs, customFilterComponentClass, presetFilterComponentClass, customFilterComponentConfig, presetFilterComponentConfig } = this.config;
1899
1899
  let componentClass;
1900
+ let baseConfig;
1900
1901
  if (showPreset) {
1901
- componentClass = presetFilterComponentClass;
1902
+ componentClass = (presetFilterComponentConfig?.componentClass ?? presetFilterComponentClass);
1903
+ baseConfig = presetFilterComponentConfig;
1902
1904
  }
1903
1905
  else {
1904
- componentClass = customFilterComponentClass;
1906
+ componentClass = (customFilterComponentConfig?.componentClass ?? customFilterComponentClass);
1907
+ baseConfig = customFilterComponentConfig;
1905
1908
  }
1906
1909
  const config = {
1910
+ ...baseConfig,
1907
1911
  componentClass,
1908
1912
  init: (filterSource) => {
1909
1913
  connector.connectWithSource(filterSource);
@@ -1915,12 +1919,14 @@ class DbxFilterPopoverComponent extends AbstractPopoverDirective {
1915
1919
  this.close();
1916
1920
  });
1917
1921
  }
1922
+ // run the next init if provided
1923
+ baseConfig?.init?.(filterSource);
1918
1924
  }
1919
1925
  };
1920
1926
  return config;
1921
1927
  }));
1922
1928
  }
1923
- static openPopover(popupService, { width, height, isResizable, origin, header, icon, customFilterComponentClass, presetFilterComponentClass, connector, initialFilterObs, closeOnFilterChange, customizeButtonText, showCloseButton, closeButtonText }, popoverKey) {
1929
+ static openPopover(popupService, { width, height, isResizable, origin, header, icon, customFilterComponentClass, presetFilterComponentClass, customFilterComponentConfig, presetFilterComponentConfig, connector, initialFilterObs, closeOnFilterChange, customizeButtonText, showCloseButton, closeButtonText }, popoverKey) {
1924
1930
  return popupService.open({
1925
1931
  key: popoverKey ?? DEFAULT_FILTER_POPOVER_KEY,
1926
1932
  origin,
@@ -1936,6 +1942,8 @@ class DbxFilterPopoverComponent extends AbstractPopoverDirective {
1936
1942
  closeButtonText,
1937
1943
  customFilterComponentClass,
1938
1944
  presetFilterComponentClass,
1945
+ customFilterComponentConfig,
1946
+ presetFilterComponentConfig,
1939
1947
  connector,
1940
1948
  initialFilterObs,
1941
1949
  closeOnFilterChange
@@ -1953,14 +1961,14 @@ class DbxFilterPopoverComponent extends AbstractPopoverDirective {
1953
1961
  }
1954
1962
  ngOnInit() {
1955
1963
  let showPreset = false;
1956
- const { customFilterComponentClass, presetFilterComponentClass } = this.config;
1957
- if (customFilterComponentClass) {
1964
+ const { customFilterComponentClass, presetFilterComponentClass, customFilterComponentConfig, presetFilterComponentConfig } = this.config;
1965
+ if (customFilterComponentClass || customFilterComponentConfig) {
1958
1966
  showPreset = false;
1959
1967
  }
1960
- if (presetFilterComponentClass) {
1968
+ if (presetFilterComponentClass || presetFilterComponentConfig) {
1961
1969
  showPreset = true;
1962
1970
  }
1963
- if (!customFilterComponentClass && !presetFilterComponentClass) {
1971
+ if (!(customFilterComponentClass || customFilterComponentConfig) && !(presetFilterComponentClass || presetFilterComponentConfig)) {
1964
1972
  throw new Error('Requires a preset or custom class provided for DbxFilterPopover.');
1965
1973
  }
1966
1974
  this._showPreset.next(showPreset);
@@ -2152,7 +2160,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
2152
2160
  type: Optional
2153
2161
  }] }]; } });
2154
2162
 
2155
- const declarations$8 = [DbxPopoverContentComponent, DbxPopoverControlsDirective, DbxPopoverHeaderComponent, DbxPopoverScrollContentComponent];
2163
+ const declarations$9 = [DbxPopoverContentComponent, DbxPopoverControlsDirective, DbxPopoverHeaderComponent, DbxPopoverScrollContentComponent];
2156
2164
  /**
2157
2165
  * Contains all popover content components, allowing other sibling dbx-web modules to use the directives without referencing the full popover module.
2158
2166
  */
@@ -2165,8 +2173,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
2165
2173
  type: NgModule,
2166
2174
  args: [{
2167
2175
  imports: [CommonModule, MatIconModule, MatButtonModule, MatDividerModule, DbxKeypressModule, DbxStyleLayoutModule, DbxInjectionComponentModule, NgOverlayContainerModule, AngularResizeEventModule],
2168
- declarations: declarations$8,
2169
- exports: declarations$8
2176
+ declarations: declarations$9,
2177
+ exports: declarations$9
2170
2178
  }]
2171
2179
  }] });
2172
2180
 
@@ -2209,7 +2217,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
2209
2217
  type: Input
2210
2218
  }] } });
2211
2219
 
2212
- const declarations$7 = [DbxPopoverComponent, DbxPopoverCoordinatorComponent, DbxActionPopoverDirective];
2220
+ const declarations$8 = [DbxPopoverComponent, DbxPopoverCoordinatorComponent, DbxActionPopoverDirective];
2213
2221
  class DbxPopoverInteractionModule {
2214
2222
  }
2215
2223
  DbxPopoverInteractionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxPopoverInteractionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -2219,8 +2227,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
2219
2227
  type: NgModule,
2220
2228
  args: [{
2221
2229
  imports: [CommonModule, MatIconModule, MatButtonModule, MatDividerModule, DbxKeypressModule, DbxStyleLayoutModule, DbxInjectionComponentModule, NgOverlayContainerModule, AngularResizeEventModule, DbxPopoverInteractionContentModule],
2222
- declarations: declarations$7,
2223
- exports: [...declarations$7, DbxPopoverInteractionContentModule]
2230
+ declarations: declarations$8,
2231
+ exports: [...declarations$8, DbxPopoverInteractionContentModule]
2224
2232
  }]
2225
2233
  }] });
2226
2234
 
@@ -2273,6 +2281,7 @@ class AbstractDbxPresetFilterMenuComponent {
2273
2281
  constructor(filterSourceDirective) {
2274
2282
  this.filterSourceDirective = filterSourceDirective;
2275
2283
  //TODO: Rename to AbstractDbxPresetFilterMenuDirective with next breaking changes
2284
+ this.presetSelected = new EventEmitter();
2276
2285
  this._presets = new BehaviorSubject([]);
2277
2286
  this.selected$ = this.filterSourceDirective.filter$.pipe(startWith(undefined), distinctUntilChanged(), shareReplay(1));
2278
2287
  this.presetsWithPresetStringOnly$ = this._presets.pipe(map((x) => x.filter((y) => Boolean(y.preset))));
@@ -2336,16 +2345,20 @@ class AbstractDbxPresetFilterMenuComponent {
2336
2345
  }
2337
2346
  this.filterSourceDirective.setFilter(filter);
2338
2347
  }
2348
+ this.presetSelected.next(preset);
2339
2349
  }
2340
2350
  ngOnDestroy() {
2341
2351
  this._presets.complete();
2352
+ this.presetSelected.complete();
2342
2353
  }
2343
2354
  }
2344
2355
  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 });
2345
- AbstractDbxPresetFilterMenuComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: AbstractDbxPresetFilterMenuComponent, inputs: { presets: "presets" }, ngImport: i0 });
2356
+ AbstractDbxPresetFilterMenuComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: AbstractDbxPresetFilterMenuComponent, inputs: { presets: "presets" }, outputs: { presetSelected: "presetSelected" }, ngImport: i0 });
2346
2357
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AbstractDbxPresetFilterMenuComponent, decorators: [{
2347
2358
  type: Directive
2348
- }], ctorParameters: function () { return [{ type: i1$2.FilterSourceDirective }]; }, propDecorators: { presets: [{
2359
+ }], ctorParameters: function () { return [{ type: i1$2.FilterSourceDirective }]; }, propDecorators: { presetSelected: [{
2360
+ type: Output
2361
+ }], presets: [{
2349
2362
  type: Input
2350
2363
  }] } });
2351
2364
 
@@ -3594,7 +3607,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3594
3607
  }]
3595
3608
  }] });
3596
3609
 
3597
- const declarations$6 = [
3610
+ const declarations$7 = [
3598
3611
  //
3599
3612
  DbxContentDirective,
3600
3613
  DbxContentContainerDirective,
@@ -3632,8 +3645,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3632
3645
  type: NgModule,
3633
3646
  args: [{
3634
3647
  imports: [CommonModule],
3635
- declarations: declarations$6,
3636
- exports: declarations$6
3648
+ declarations: declarations$7,
3649
+ exports: declarations$7
3637
3650
  }]
3638
3651
  }] });
3639
3652
 
@@ -3671,7 +3684,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3671
3684
  args: ['dbxIfSidenavDisplayMode']
3672
3685
  }] } });
3673
3686
 
3674
- const declarations$5 = [DbxIfSidenavDisplayModeDirective, DbxSidenavComponent, DbxSidenavButtonComponent, DbxSidenavPagebarComponent, DbxSidenavPageComponent];
3687
+ const declarations$6 = [DbxIfSidenavDisplayModeDirective, DbxSidenavComponent, DbxSidenavButtonComponent, DbxSidenavPagebarComponent, DbxSidenavPageComponent];
3675
3688
  class DbxRouterSidenavModule {
3676
3689
  }
3677
3690
  DbxRouterSidenavModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxRouterSidenavModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -3681,8 +3694,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3681
3694
  type: NgModule,
3682
3695
  args: [{
3683
3696
  imports: [CommonModule, DbxBarLayoutModule, DbxRouterAnchorModule, DbxRouterAnchorListModule, DbxButtonModule, DbxContentLayoutModule, MatToolbarModule, MatButtonModule, MatIconModule, MatSidenavModule, MatListModule, MatDividerModule, UIRouterModule],
3684
- declarations: declarations$5,
3685
- exports: declarations$5
3697
+ declarations: declarations$6,
3698
+ exports: declarations$6
3686
3699
  }]
3687
3700
  }] });
3688
3701
 
@@ -3893,7 +3906,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3893
3906
  }]
3894
3907
  }] });
3895
3908
 
3896
- const declarations$4 = [DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent];
3909
+ const declarations$5 = [DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent];
3897
3910
  class DbxFilterInteractionModule {
3898
3911
  }
3899
3912
  DbxFilterInteractionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxFilterInteractionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -3938,8 +3951,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
3938
3951
  MatIconModule,
3939
3952
  MatButtonModule
3940
3953
  ],
3941
- declarations: declarations$4,
3942
- exports: [...declarations$4, DbxCoreFilterModule]
3954
+ declarations: declarations$5,
3955
+ exports: [...declarations$5, DbxCoreFilterModule]
3943
3956
  }]
3944
3957
  }] });
3945
3958
 
@@ -6211,7 +6224,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6211
6224
  }]
6212
6225
  }] });
6213
6226
 
6214
- const declarations$3 = [DbxUnitedStatesAddressComponent, DbxChipDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxNoteComponent, DbxNoticeComponent, DbxSuccessComponent, DbxWarnComponent, DbxHintComponent, DbxLabelBlockComponent, DbxLabelComponent, DbxLinkifyComponent, DbxOkComponent, DbxTextChipsComponent, DbxIconSpacerDirective, DbxFormDescriptionComponent];
6227
+ const declarations$4 = [DbxUnitedStatesAddressComponent, DbxChipDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxNoteComponent, DbxNoticeComponent, DbxSuccessComponent, DbxWarnComponent, DbxHintComponent, DbxLabelBlockComponent, DbxLabelComponent, DbxLinkifyComponent, DbxOkComponent, DbxTextChipsComponent, DbxIconSpacerDirective, DbxFormDescriptionComponent];
6215
6228
  class DbxTextModule {
6216
6229
  }
6217
6230
  DbxTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -6221,12 +6234,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6221
6234
  type: NgModule,
6222
6235
  args: [{
6223
6236
  imports: [CommonModule, MatChipsModule, MatTooltipModule, MatIconModule],
6224
- declarations: declarations$3,
6225
- exports: declarations$3
6237
+ declarations: declarations$4,
6238
+ exports: declarations$4
6226
6239
  }]
6227
6240
  }] });
6228
6241
 
6229
- const declarations$2 = [
6242
+ const declarations$3 = [
6230
6243
  //
6231
6244
  DbxReadableErrorComponent,
6232
6245
  DbxLoadingErrorDirective,
@@ -6261,8 +6274,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6261
6274
  type: NgModule,
6262
6275
  args: [{
6263
6276
  imports: [CommonModule, DbxTextModule, DbxInjectionComponentModule, DbxPopoverInteractionContentModule, MatButtonModule, MatIconModule],
6264
- declarations: declarations$2,
6265
- exports: declarations$2
6277
+ declarations: declarations$3,
6278
+ exports: declarations$3
6266
6279
  }]
6267
6280
  }] });
6268
6281
 
@@ -6315,7 +6328,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6315
6328
  type: Host
6316
6329
  }] }, { type: i1$2.DbxActionContextStoreSourceInstance }]; } });
6317
6330
 
6318
- const declarations$1 = [DbxLoadingComponent, DbxBasicLoadingComponent, DbxLoadingProgressComponent, DbxActionLoadingContextDirective];
6331
+ const declarations$2 = [DbxLoadingComponent, DbxBasicLoadingComponent, DbxLoadingProgressComponent, DbxActionLoadingContextDirective];
6319
6332
  class DbxLoadingModule {
6320
6333
  }
6321
6334
  DbxLoadingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxLoadingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -6325,8 +6338,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
6325
6338
  type: NgModule,
6326
6339
  args: [{
6327
6340
  imports: [CommonModule, DbxReadableErrorModule, MatProgressSpinnerModule, MatProgressBarModule],
6328
- declarations: declarations$1,
6329
- exports: [...declarations$1, MatProgressSpinnerModule, MatProgressBarModule]
6341
+ declarations: declarations$2,
6342
+ exports: [...declarations$2, MatProgressSpinnerModule, MatProgressBarModule]
6330
6343
  }]
6331
6344
  }] });
6332
6345
 
@@ -7300,7 +7313,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
7300
7313
  type: Input
7301
7314
  }] } });
7302
7315
 
7303
- const declarations = [DbxSectionHeaderComponent, DbxSectionPageComponent, DbxSectionComponent, DbxSubSectionComponent, DbxIntroActionSectionComponent];
7316
+ const declarations$1 = [DbxSectionHeaderComponent, DbxSectionPageComponent, DbxSectionComponent, DbxSubSectionComponent, DbxIntroActionSectionComponent];
7304
7317
  /**
7305
7318
  * Module for container-type components.
7306
7319
  */
@@ -7313,8 +7326,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
7313
7326
  type: NgModule,
7314
7327
  args: [{
7315
7328
  imports: [CommonModule, DbxRouterAnchorModule, MatButtonModule, MatRippleModule, MatIconModule],
7316
- declarations,
7317
- exports: declarations
7329
+ declarations: declarations$1,
7330
+ exports: declarations$1
7318
7331
  }]
7319
7332
  }] });
7320
7333
 
@@ -8716,6 +8729,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
8716
8729
  }]
8717
8730
  }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
8718
8731
 
8732
+ /**
8733
+ * Used to reference a cdRef, injector, and element at the given element.
8734
+ *
8735
+ * Generally used for child views to reference a well-placed parent view.
8736
+ */
8737
+ class DbxStructureDirective {
8738
+ constructor(cdRef, injector, element) {
8739
+ this.cdRef = cdRef;
8740
+ this.injector = injector;
8741
+ this.element = element;
8742
+ }
8743
+ }
8744
+ 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 });
8745
+ DbxStructureDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: DbxStructureDirective, selector: "[dbxStructure]", ngImport: i0 });
8746
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureDirective, decorators: [{
8747
+ type: Directive,
8748
+ args: [{
8749
+ selector: '[dbxStructure]'
8750
+ }]
8751
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.Injector }, { type: i0.ElementRef }]; } });
8752
+
8753
+ /**
8754
+ * DbxStructureDirective used specifically on the body of the app.
8755
+ */
8756
+ class DbxBodyDirective extends DbxStructureDirective {
8757
+ }
8758
+ DbxBodyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxBodyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
8759
+ DbxBodyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: DbxBodyDirective, selector: "dbxBody,[dbxBody]", providers: [
8760
+ {
8761
+ provide: DbxStructureDirective,
8762
+ useExisting: DbxBodyDirective
8763
+ }
8764
+ ], usesInheritance: true, ngImport: i0 });
8765
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxBodyDirective, decorators: [{
8766
+ type: Directive,
8767
+ args: [{
8768
+ selector: 'dbxBody,[dbxBody]',
8769
+ providers: [
8770
+ {
8771
+ provide: DbxStructureDirective,
8772
+ useExisting: DbxBodyDirective
8773
+ }
8774
+ ]
8775
+ }]
8776
+ }] });
8777
+
8778
+ const declarations = [DbxBodyDirective, DbxStructureDirective];
8779
+ class DbxStructureModule {
8780
+ }
8781
+ DbxStructureModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8782
+ DbxStructureModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureModule, declarations: [DbxBodyDirective, DbxStructureDirective], imports: [
8783
+ //
8784
+ CommonModule], exports: [DbxBodyDirective, DbxStructureDirective] });
8785
+ DbxStructureModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureModule, imports: [
8786
+ //
8787
+ CommonModule] });
8788
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStructureModule, decorators: [{
8789
+ type: NgModule,
8790
+ args: [{
8791
+ imports: [
8792
+ //
8793
+ CommonModule
8794
+ ],
8795
+ declarations,
8796
+ exports: declarations
8797
+ }]
8798
+ }] });
8799
+
8719
8800
  /**
8720
8801
  * Service used to register widgets.
8721
8802
  */
@@ -8907,6 +8988,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
8907
8988
  }]
8908
8989
  }] });
8909
8990
 
8991
+ // export * from './calendar';
8992
+
8910
8993
  /**
8911
8994
  * Disables the "contextmenu" from popping up in the cdk-overlay-container.
8912
8995
  *
@@ -8940,26 +9023,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
8940
9023
  exports: [DbxButtonModule, DbxActionModule, DbxLoadingModule]
8941
9024
  }]
8942
9025
  }] });
8943
- /**
8944
- * Should only be imported once in the root app.
8945
- *
8946
- * Pre-configures the following modules:
8947
- */
8948
- class DbxWebRootModule {
8949
- }
8950
- DbxWebRootModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxWebRootModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8951
- DbxWebRootModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxWebRootModule });
8952
- DbxWebRootModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxWebRootModule });
8953
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxWebRootModule, decorators: [{
8954
- type: NgModule,
8955
- args: [{
8956
- imports: []
8957
- }]
8958
- }] });
8959
9026
 
8960
9027
  /**
8961
9028
  * Generated bundle index. Do not edit.
8962
9029
  */
8963
9030
 
8964
- 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 };
9031
+ 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 };
8965
9032
  //# sourceMappingURL=dereekb-dbx-web.mjs.map