@dereekb/dbx-web 10.1.2 → 10.1.4

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.
@@ -5080,17 +5080,21 @@ const DEFAULT_ERROR_WIDGET_CODE = 'DEFAULT_ERROR_WIDGET';
5080
5080
  class DbxErrorWidgetService {
5081
5081
  constructor() {
5082
5082
  this._entries = new Map();
5083
- this.registerDefaultEntry({ componentClass: DbxErrorDefaultErrorWidgetComponent });
5083
+ this.registerDefaultEntry({ widgetComponentClass: DbxErrorDefaultErrorWidgetComponent });
5084
5084
  }
5085
5085
  registerDefaultEntry(entry) {
5086
5086
  return this.register({
5087
5087
  ...entry,
5088
+ errorComponentClass: null,
5088
5089
  code: DEFAULT_ERROR_WIDGET_CODE
5089
5090
  });
5090
5091
  }
5091
5092
  register(entry, override = true) {
5092
5093
  if (override || !this._entries.has(entry.code)) {
5093
- this._entries.set(entry.code, entry);
5094
+ this._entries.set(entry.code, {
5095
+ ...entry,
5096
+ widgetComponentClass: entry.widgetComponentClass ?? entry.componentClass
5097
+ });
5094
5098
  return true;
5095
5099
  }
5096
5100
  else {
@@ -5130,12 +5134,16 @@ class DbxErrorWidgetViewComponent {
5130
5134
  this.config$ = this._errorWithCode.pipe(map((error) => {
5131
5135
  let config;
5132
5136
  if (error != null) {
5133
- const entry = this.dbxErrorWidgetService.getErrorWidgetEntry(error.code) ?? this.dbxErrorWidgetService.getDefaultErrorWidgetEntry();
5134
- if (entry) {
5135
- config = {
5136
- componentClass: entry.componentClass,
5137
- data: error
5138
- };
5137
+ const entry = this.dbxErrorWidgetService.getErrorWidgetEntry(error.code);
5138
+ if (entry != null) {
5139
+ const defaultEntry = this.dbxErrorWidgetService.getDefaultErrorWidgetEntry();
5140
+ const componentClass = entry.widgetComponentClass ?? defaultEntry?.widgetComponentClass;
5141
+ if (componentClass != null) {
5142
+ config = {
5143
+ componentClass,
5144
+ data: error
5145
+ };
5146
+ }
5139
5147
  }
5140
5148
  }
5141
5149
  return config;
@@ -5149,7 +5157,7 @@ class DbxErrorWidgetViewComponent {
5149
5157
  this._errorWithCode.next(config);
5150
5158
  }
5151
5159
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxErrorWidgetViewComponent, deps: [{ token: DbxErrorWidgetService }], target: i0.ɵɵFactoryTarget.Component }); }
5152
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxErrorWidgetViewComponent, selector: "dbx-error-widget-view", inputs: { error: "error" }, host: { classAttribute: "error-dbx-widget-view" }, ngImport: i0, template: `
5160
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxErrorWidgetViewComponent, selector: "dbx-error-widget-view", inputs: { error: "error" }, host: { classAttribute: "dbx-error-widget-view" }, ngImport: i0, template: `
5153
5161
  <dbx-injection [config]="config$ | async"></dbx-injection>
5154
5162
  `, isInline: true, dependencies: [{ kind: "component", type: i1$2.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] }); }
5155
5163
  }
@@ -5161,7 +5169,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
5161
5169
  <dbx-injection [config]="config$ | async"></dbx-injection>
5162
5170
  `,
5163
5171
  host: {
5164
- class: 'error-dbx-widget-view'
5172
+ class: 'dbx-error-widget-view'
5165
5173
  }
5166
5174
  }]
5167
5175
  }], ctorParameters: function () { return [{ type: DbxErrorWidgetService }]; }, propDecorators: { error: [{
@@ -5231,42 +5239,159 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
5231
5239
  }] });
5232
5240
 
5233
5241
  /**
5234
- * Basic error component.
5242
+ * The basic error view.
5243
+ */
5244
+ class DbxErrorViewComponent {
5245
+ constructor() {
5246
+ this.icon = 'error';
5247
+ this.buttonClick = new EventEmitter();
5248
+ }
5249
+ ngOnDestroy() {
5250
+ this.buttonClick.complete();
5251
+ }
5252
+ clickError() {
5253
+ if (!this.buttonDisabled) {
5254
+ this.buttonClick.emit({
5255
+ origin: this.buttonOrigin
5256
+ });
5257
+ }
5258
+ }
5259
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxErrorViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5260
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxErrorViewComponent, selector: "dbx-error-view", inputs: { icon: "icon", message: "message", buttonDisabled: "buttonDisabled" }, outputs: { buttonClick: "buttonClick" }, host: { classAttribute: "dbx-error dbx-warn dbx-b" }, viewQueries: [{ propertyName: "buttonOrigin", first: true, predicate: ["buttonPopoverOrigin"], descendants: true, read: ElementRef }], ngImport: i0, template: "<button class=\"dbx-error-button\" [disabled]=\"buttonDisabled\" #buttonPopoverOrigin mat-icon-button (click)=\"clickError()\">\n <mat-icon>{{ icon }}</mat-icon>\n</button>\n<span class=\"dbx-error-message\" *ngIf=\"message\">{{ message }}</span>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
5261
+ }
5262
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxErrorViewComponent, decorators: [{
5263
+ type: Component,
5264
+ args: [{ selector: 'dbx-error-view', host: {
5265
+ class: 'dbx-error dbx-warn dbx-b'
5266
+ }, template: "<button class=\"dbx-error-button\" [disabled]=\"buttonDisabled\" #buttonPopoverOrigin mat-icon-button (click)=\"clickError()\">\n <mat-icon>{{ icon }}</mat-icon>\n</button>\n<span class=\"dbx-error-message\" *ngIf=\"message\">{{ message }}</span>\n" }]
5267
+ }], ctorParameters: function () { return []; }, propDecorators: { icon: [{
5268
+ type: Input
5269
+ }], message: [{
5270
+ type: Input
5271
+ }], buttonDisabled: [{
5272
+ type: Input
5273
+ }], buttonClick: [{
5274
+ type: Output
5275
+ }], buttonOrigin: [{
5276
+ type: ViewChild,
5277
+ args: ['buttonPopoverOrigin', { read: ElementRef }]
5278
+ }] } });
5279
+
5280
+ /**
5281
+ * Root error component that displays content related to an error.
5235
5282
  */
5236
- class DbxReadableErrorComponent {
5237
- constructor(popoverService) {
5283
+ class DbxReadableErrorComponent extends AbstractSubscriptionDirective {
5284
+ constructor(popoverService, dbxErrorWidgetService, cdRef) {
5285
+ super();
5238
5286
  this.popoverService = popoverService;
5287
+ this.dbxErrorWidgetService = dbxErrorWidgetService;
5288
+ this.cdRef = cdRef;
5289
+ this._state = {
5290
+ viewType: 'none'
5291
+ };
5292
+ this._inputError = new BehaviorSubject(undefined);
5293
+ this.state$ = this._inputError.pipe(map((rawError) => {
5294
+ let state;
5295
+ if (rawError != null) {
5296
+ const error = toReadableError(rawError);
5297
+ const isDefaultError = isDefaultReadableError(error);
5298
+ state = {
5299
+ viewType: 'default',
5300
+ rawError,
5301
+ error,
5302
+ message: error?.message || 'An error occured.',
5303
+ isDefaultError
5304
+ };
5305
+ if (error) {
5306
+ let customView;
5307
+ const entry = this.dbxErrorWidgetService.getErrorWidgetEntry(error.code);
5308
+ const componentClass = entry?.errorComponentClass;
5309
+ if (componentClass != null) {
5310
+ customView = {
5311
+ componentClass,
5312
+ data: error
5313
+ };
5314
+ }
5315
+ // apply custom view
5316
+ if (customView) {
5317
+ state = {
5318
+ ...state,
5319
+ viewType: 'custom',
5320
+ customView
5321
+ };
5322
+ }
5323
+ }
5324
+ }
5325
+ else {
5326
+ state = {
5327
+ viewType: 'none'
5328
+ };
5329
+ }
5330
+ return state;
5331
+ }), shareReplay(1));
5239
5332
  }
5240
- get error() {
5241
- return this._error;
5333
+ ngOnInit() {
5334
+ this.sub = this.state$.subscribe((state) => {
5335
+ this._state = state;
5336
+ this.cdRef.markForCheck();
5337
+ });
5242
5338
  }
5243
- set error(error) {
5244
- this._error = toReadableError(error);
5339
+ get viewType() {
5340
+ return this._state.viewType;
5245
5341
  }
5246
5342
  get isDefaultError() {
5247
- return isDefaultReadableError(this._error);
5343
+ return this._state.isDefaultError;
5248
5344
  }
5249
5345
  get message() {
5250
- return this._error?.message || 'An error occured.';
5346
+ return this._state.message;
5347
+ }
5348
+ get customView() {
5349
+ return this._state.customView;
5350
+ }
5351
+ get error() {
5352
+ return this._state.rawError;
5251
5353
  }
5252
- openErrorPopover() {
5253
- if (this.error != null) {
5354
+ set error(error) {
5355
+ this._inputError.next(error);
5356
+ }
5357
+ openErrorPopover(event) {
5358
+ const error = this._state.error;
5359
+ if (error != null) {
5254
5360
  DbxErrorPopoverComponent.openPopover(this.popoverService, {
5255
- origin: this.buttonPopoverOrigin,
5256
- error: this.error
5361
+ origin: event.origin,
5362
+ error
5257
5363
  });
5258
5364
  }
5259
5365
  }
5260
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxReadableErrorComponent, deps: [{ token: DbxPopoverService }], target: i0.ɵɵFactoryTarget.Component }); }
5261
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxReadableErrorComponent, selector: "dbx-error", inputs: { error: "error" }, viewQueries: [{ propertyName: "buttonPopoverOrigin", first: true, predicate: ["buttonPopoverOrigin"], descendants: true, read: ElementRef }], ngImport: i0, template: "<div *ngIf=\"error\" class=\"dbx-error dbx-warn\">\n <button [disabled]=\"isDefaultError\" #buttonPopoverOrigin mat-icon-button class=\"dbx-error-button\" (click)=\"openErrorPopover()\"><mat-icon>error</mat-icon></button>\n <span class=\"dbx-error-message\" *ngIf=\"message\">{{ message }}</span>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
5366
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxReadableErrorComponent, deps: [{ token: DbxPopoverService }, { token: DbxErrorWidgetService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
5367
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxReadableErrorComponent, selector: "dbx-error", inputs: { error: "error" }, usesInheritance: true, ngImport: i0, template: `
5368
+ <ng-container [ngSwitch]="viewType">
5369
+ <ng-container *ngSwitchCase="'default'">
5370
+ <dbx-error-view icon="error" [message]="message" [buttonDisabled]="isDefaultError" (buttonClick)="openErrorPopover($event)"></dbx-error-view>
5371
+ </ng-container>
5372
+ <ng-container *ngSwitchCase="'custom'">
5373
+ <dbx-injection [config]="customView"></dbx-injection>
5374
+ </ng-container>
5375
+ </ng-container>
5376
+ `, isInline: true, dependencies: [{ kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: i1$2.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "component", type: DbxErrorViewComponent, selector: "dbx-error-view", inputs: ["icon", "message", "buttonDisabled"], outputs: ["buttonClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
5262
5377
  }
5263
5378
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxReadableErrorComponent, decorators: [{
5264
5379
  type: Component,
5265
- args: [{ selector: 'dbx-error', template: "<div *ngIf=\"error\" class=\"dbx-error dbx-warn\">\n <button [disabled]=\"isDefaultError\" #buttonPopoverOrigin mat-icon-button class=\"dbx-error-button\" (click)=\"openErrorPopover()\"><mat-icon>error</mat-icon></button>\n <span class=\"dbx-error-message\" *ngIf=\"message\">{{ message }}</span>\n</div>\n" }]
5266
- }], ctorParameters: function () { return [{ type: DbxPopoverService }]; }, propDecorators: { buttonPopoverOrigin: [{
5267
- type: ViewChild,
5268
- args: ['buttonPopoverOrigin', { read: ElementRef }]
5269
- }], error: [{
5380
+ args: [{
5381
+ selector: 'dbx-error',
5382
+ template: `
5383
+ <ng-container [ngSwitch]="viewType">
5384
+ <ng-container *ngSwitchCase="'default'">
5385
+ <dbx-error-view icon="error" [message]="message" [buttonDisabled]="isDefaultError" (buttonClick)="openErrorPopover($event)"></dbx-error-view>
5386
+ </ng-container>
5387
+ <ng-container *ngSwitchCase="'custom'">
5388
+ <dbx-injection [config]="customView"></dbx-injection>
5389
+ </ng-container>
5390
+ </ng-container>
5391
+ `,
5392
+ changeDetection: ChangeDetectionStrategy.OnPush
5393
+ }]
5394
+ }], ctorParameters: function () { return [{ type: DbxPopoverService }, { type: DbxErrorWidgetService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { error: [{
5270
5395
  type: Input
5271
5396
  }] } });
5272
5397
 
@@ -6342,6 +6467,7 @@ const declarations$5 = [
6342
6467
  DbxReadableErrorComponent,
6343
6468
  DbxLoadingErrorDirective,
6344
6469
  DbxActionErrorDirective,
6470
+ DbxErrorViewComponent,
6345
6471
  DbxErrorPopoverComponent,
6346
6472
  DbxErrorDetailsComponent,
6347
6473
  DbxErrorWidgetViewComponent,
@@ -6354,6 +6480,7 @@ class DbxReadableErrorModule {
6354
6480
  DbxReadableErrorComponent,
6355
6481
  DbxLoadingErrorDirective,
6356
6482
  DbxActionErrorDirective,
6483
+ DbxErrorViewComponent,
6357
6484
  DbxErrorPopoverComponent,
6358
6485
  DbxErrorDetailsComponent,
6359
6486
  DbxErrorWidgetViewComponent,
@@ -6362,6 +6489,7 @@ class DbxReadableErrorModule {
6362
6489
  DbxReadableErrorComponent,
6363
6490
  DbxLoadingErrorDirective,
6364
6491
  DbxActionErrorDirective,
6492
+ DbxErrorViewComponent,
6365
6493
  DbxErrorPopoverComponent,
6366
6494
  DbxErrorDetailsComponent,
6367
6495
  DbxErrorWidgetViewComponent,
@@ -9523,5 +9651,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
9523
9651
  * Generated bundle index. Do not edit.
9524
9652
  */
9525
9653
 
9526
- 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_LIST_TITLE_GROUP_DATA, DBX_MAT_PROGRESS_BUTTON_GLOBAL_CONFIG, 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, 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, DbxDownloadTextModule, DbxDownloadTextViewComponent, 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, DbxListTitleGroupDirective, DbxListTitleGroupHeaderComponent, 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, DbxPopoverCloseButtonComponent, 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, DbxSelectionValueListViewComponent, DbxSelectionValueListViewContentComponent, 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, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, 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, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, index as fromDbxModel, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index$1 as onDbxModel, provideDbxListView, provideDbxListViewWrapper, provideDbxPromptConfirm, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideTwoColumnsContext, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
9654
+ 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_LIST_TITLE_GROUP_DATA, DBX_MAT_PROGRESS_BUTTON_GLOBAL_CONFIG, 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, 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, DbxDownloadTextModule, DbxDownloadTextViewComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorViewComponent, 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, DbxListTitleGroupDirective, DbxListTitleGroupHeaderComponent, 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, DbxPopoverCloseButtonComponent, 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, DbxSelectionValueListViewComponent, DbxSelectionValueListViewContentComponent, 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, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, 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, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, index as fromDbxModel, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index$1 as onDbxModel, provideDbxListView, provideDbxListViewWrapper, provideDbxPromptConfirm, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideTwoColumnsContext, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
9527
9655
  //# sourceMappingURL=dereekb-dbx-web.mjs.map