@dereekb/dbx-web 13.6.13 → 13.6.14

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.
@@ -9,7 +9,7 @@ $bar-fixed-height: 40px;
9
9
  // MARK: Mixin
10
10
  @mixin core() {
11
11
  .dbx-pagebar.mat-toolbar {
12
- height: $pagebar-height;
12
+ height: var(--dbx-pagebar-height, #{$pagebar-height});
13
13
  }
14
14
 
15
15
  .dbx-bar {
@@ -35,12 +35,40 @@ $bar-fixed-height: 40px;
35
35
  overflow: hidden;
36
36
  }
37
37
 
38
+ // MARK: Bar Colors
39
+ // Color classes applied by DbxPagebarComponent based on the color input.
40
+ // Uses Material toolbar CSS tokens for background and text color.
41
+ // Background uses color-mix with surface-container for consistent dark-mode contrast.
42
+ .dbx-bar-primary {
43
+ --mat-toolbar-container-background-color: var(--dbx-primary-color);
44
+ --mat-toolbar-container-text-color: var(--dbx-primary-color-contrast);
45
+ }
46
+
47
+ .dbx-bar-accent {
48
+ --mat-toolbar-container-background-color: var(--dbx-accent-color);
49
+ --mat-toolbar-container-text-color: var(--dbx-accent-color-contrast);
50
+ }
51
+
52
+ .dbx-bar-warn {
53
+ --mat-toolbar-container-background-color: var(--dbx-warn-color);
54
+ --mat-toolbar-container-text-color: var(--dbx-warn-color-contrast);
55
+ }
56
+
38
57
  .dbx-pagebar-hide {
58
+ // Reset pagebar height for layout calculations (page height = app height - navbar height)
39
59
  #{$pagebar-height-var}: 0px;
40
60
 
41
- .dbx-pagebar {
61
+ // Only hide direct-descendant pagebars, not nested ones within child sidenavs
62
+ > dbx-sidenav-pagebar,
63
+ > .dbx-pagebar {
42
64
  display: none;
43
65
  }
66
+
67
+ // Restore the pagebar height variable inside nested sidenav containers
68
+ // so their pagebars render at the correct height
69
+ .dbx-sidenav mat-sidenav-content {
70
+ #{$pagebar-height-var}: var(--dbx-pagebar-height, 52px);
71
+ }
44
72
  }
45
73
  }
46
74
 
@@ -19,8 +19,8 @@ $active-background-transparent-color: 0.93;
19
19
  .dbx-sidenav {
20
20
  height: 100%;
21
21
 
22
- mat-sidenav {
23
- width: $width;
22
+ > mat-sidenav {
23
+ width: var(--dbx-sidenav-width, #{$width});
24
24
 
25
25
  .mat-drawer-inner-container {
26
26
  display: flex;
@@ -38,12 +38,12 @@ $active-background-transparent-color: 0.93;
38
38
  }
39
39
  }
40
40
 
41
- // directly active links have a side-
41
+ // directly active links have a side border indicator
42
42
  .dbx-anchor-active-eq,
43
43
  .dbx-anchor-list-child .dbx-anchor-active {
44
44
  .mat-mdc-list-item {
45
45
  .mdc-list-item__content {
46
- margin-left: calc(#{$mat-mdc-list-item-icon-padding} - var(--dbx-sidenav-active-child-item-border-left-width, #{$default-active-border-left-width}));
46
+ margin-left: calc(#{$mat-mdc-list-item-icon-padding} - var(--dbx-sidenav-active-child-item-border-width, #{$default-active-border-left-width}));
47
47
  }
48
48
 
49
49
  &.mdc-list-item--with-leading-icon {
@@ -53,7 +53,7 @@ $active-background-transparent-color: 0.93;
53
53
 
54
54
  .mat-mdc-list-item-icon {
55
55
  // Offset the added border by clearing the default padding width (4px)
56
- margin-left: calc(#{$mat-mdc-list-item-icon-padding} - var(--dbx-sidenav-active-child-item-border-left-width, #{$default-active-border-left-width}));
56
+ margin-left: calc(#{$mat-mdc-list-item-icon-padding} - var(--dbx-sidenav-active-child-item-border-width, #{$default-active-border-left-width}));
57
57
  }
58
58
  }
59
59
  }
@@ -61,34 +61,42 @@ $active-background-transparent-color: 0.93;
61
61
 
62
62
  .dbx-anchor-list-child .dbx-anchor-active .mat-mdc-list-item,
63
63
  .dbx-anchor-list-child .dbx-anchor-active-eq .mat-mdc-list-item {
64
- padding-left: calc(#{anchorlist.$active-child-item-left-padding} - var(--dbx-sidenav-active-child-item-border-left-width, #{$default-active-border-left-width}));
64
+ padding-left: calc(#{anchorlist.$active-child-item-left-padding} - var(--dbx-sidenav-active-child-item-border-width, #{$default-active-border-left-width}));
65
65
  }
66
66
  }
67
67
  }
68
68
 
69
69
  &.dbx-sidenav-mobile {
70
- mat-sidenav {
71
- width: $mobile-width;
70
+ > mat-sidenav {
71
+ width: var(--dbx-sidenav-mobile-width, #{$mobile-width});
72
72
  }
73
73
  }
74
74
 
75
75
  &.dbx-sidenav-icon {
76
- mat-sidenav {
77
- width: $icon-only-width;
76
+ > mat-sidenav {
77
+ width: var(--dbx-sidenav-icon-width, #{$icon-only-width});
78
78
  }
79
79
 
80
- mat-sidenav-content {
81
- margin-left: $icon-only-width;
80
+ &.dbx-sidenav-start > mat-sidenav-content {
81
+ margin-left: var(--dbx-sidenav-icon-width, #{$icon-only-width});
82
+ }
83
+
84
+ &.dbx-sidenav-end > mat-sidenav-content {
85
+ margin-right: var(--dbx-sidenav-icon-width, #{$icon-only-width});
82
86
  }
83
87
  }
84
88
 
85
89
  &.dbx-sidenav-full {
86
- mat-sidenav {
87
- width: $width;
90
+ > mat-sidenav {
91
+ width: var(--dbx-sidenav-width, #{$width});
88
92
  }
89
93
 
90
- mat-sidenav-content {
91
- margin-left: $width;
94
+ &.dbx-sidenav-start > mat-sidenav-content {
95
+ margin-left: var(--dbx-sidenav-width, #{$width});
96
+ }
97
+
98
+ &.dbx-sidenav-end > mat-sidenav-content {
99
+ margin-right: var(--dbx-sidenav-width, #{$width});
92
100
  }
93
101
  }
94
102
 
@@ -117,12 +125,36 @@ $active-background-transparent-color: 0.93;
117
125
  }
118
126
  }
119
127
 
128
+ // MARK: Theming
129
+ // Available CSS custom properties for dbx-sidenav:
130
+ //
131
+ // Layout:
132
+ // --dbx-sidenav-width Full-mode drawer width (default: 240px)
133
+ // --dbx-sidenav-mobile-width Mobile overlay drawer width (default: 80vw)
134
+ // --dbx-sidenav-icon-width Icon rail drawer width (default: 65px)
135
+ //
136
+ // Drawer colors:
137
+ // --dbx-sidenav-background Drawer background color
138
+ // --dbx-sidenav-text-color Drawer text color
139
+ // --dbx-sidenav-divider-color Drawer border/divider color
140
+ //
141
+ // Active item:
142
+ // --dbx-sidenav-active-accent Active item accent color
143
+ // --dbx-sidenav-active-item-background Active root item background
144
+ // --dbx-sidenav-active-child-item-background Active child item background
145
+ // --dbx-sidenav-active-child-item-border-width Active item border indicator width (default: 2px)
146
+ //
147
+ // Scrim:
148
+ // --dbx-sidenav-scrim-color Backdrop/scrim color for overlay mode
149
+
120
150
  .dbx-sidenav {
151
+ // scrim color
152
+ --mat-sidenav-scrim-color: var(--dbx-sidenav-scrim-color, color-mix(in srgb, var(--mat-sys-neutral-variant20) 40%, transparent));
153
+
121
154
  mat-sidenav.mat-drawer {
122
- // darken the sidenav background slightly for better contrast with active items
123
- --dbx-sidenav-background: color-mix(in srgb, var(--dbx-bg-color-current) 75%, var(--mat-sys-shadow));
124
- --mat-sidenav-container-text-color: var(--mat-sys-primary-container);
125
- background: var(--dbx-sidenav-background);
155
+ --mat-sidenav-container-text-color: var(--dbx-sidenav-text-color, var(--mat-sys-primary-container));
156
+ --mat-sidenav-container-divider-color: var(--dbx-sidenav-divider-color, transparent);
157
+ background: var(--dbx-sidenav-background, var(--dbx-bg-color-current));
126
158
 
127
159
  .dbx-anchor-list.mat-mdc-nav-list {
128
160
  --dbx-sidenav-active-accent: color-mix(in srgb, var(--dbx-accent-color) 65%, var(--mat-sys-surface));
@@ -136,15 +168,14 @@ $active-background-transparent-color: 0.93;
136
168
  }
137
169
 
138
170
  .dbx-anchor-list-root .dbx-anchor-active .mat-mdc-list-item {
139
- // root list items glow when active
140
- background: color-mix(in srgb, var(--dbx-sidenav-active-accent) 12%, transparent);
171
+ background: var(--dbx-sidenav-active-item-background, color-mix(in srgb, var(--dbx-sidenav-active-accent) 12%, transparent));
141
172
  }
142
173
 
143
- // directly active links have a side-
174
+ // directly active links have a side border indicator
144
175
  .dbx-anchor-active-eq,
145
176
  .dbx-anchor-list-child .dbx-anchor-active {
146
177
  .mat-mdc-list-item {
147
- border-left: var(--dbx-sidenav-active-child-item-border-left-width, #{$default-active-border-left-width}) solid var(--dbx-sidenav-active-accent);
178
+ border-left: var(--dbx-sidenav-active-child-item-border-width, #{$default-active-border-left-width}) solid var(--dbx-sidenav-active-accent);
148
179
 
149
180
  .mat-mdc-list-item-icon {
150
181
  --mat-list-list-item-leading-icon-color: var(--dbx-sidenav-active-accent);
@@ -152,9 +183,20 @@ $active-background-transparent-color: 0.93;
152
183
  }
153
184
  }
154
185
 
186
+ // end-position sidenavs use border-right instead of border-left
187
+ .dbx-sidenav-end & {
188
+ .dbx-anchor-active-eq,
189
+ .dbx-anchor-list-child .dbx-anchor-active {
190
+ .mat-mdc-list-item {
191
+ border-left: none;
192
+ border-right: var(--dbx-sidenav-active-child-item-border-width, #{$default-active-border-left-width}) solid var(--dbx-sidenav-active-accent);
193
+ }
194
+ }
195
+ }
196
+
155
197
  .dbx-anchor-list-child .dbx-anchor-active .mat-mdc-list-item,
156
198
  .dbx-anchor-list-child .dbx-anchor-active-eq .mat-mdc-list-item {
157
- background: color-mix(in srgb, var(--dbx-sidenav-active-accent) 12%, transparent);
199
+ background: var(--dbx-sidenav-active-child-item-background, color-mix(in srgb, var(--dbx-sidenav-active-accent) 12%, transparent));
158
200
  }
159
201
  }
160
202
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-web",
3
- "version": "13.6.13",
3
+ "version": "13.6.14",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "21.2.3",
6
6
  "@angular/common": "21.2.3",
@@ -8,11 +8,11 @@
8
8
  "@angular/forms": "21.2.3",
9
9
  "@angular/material": "21.2.3",
10
10
  "@angular/platform-browser": "21.2.3",
11
- "@dereekb/browser": "13.6.13",
12
- "@dereekb/date": "13.6.13",
13
- "@dereekb/dbx-core": "13.6.13",
14
- "@dereekb/rxjs": "13.6.13",
15
- "@dereekb/util": "13.6.13",
11
+ "@dereekb/browser": "13.6.14",
12
+ "@dereekb/date": "13.6.14",
13
+ "@dereekb/dbx-core": "13.6.14",
14
+ "@dereekb/rxjs": "13.6.14",
15
+ "@dereekb/util": "13.6.14",
16
16
  "@ngbracket/ngx-layout": "^21.0.0",
17
17
  "@ngrx/component-store": "^21.0.0",
18
18
  "@ngrx/effects": "^21.0.0",
@@ -910,6 +910,7 @@ declare function dbxColorBackground(color: Maybe<DbxThemeColor | ''>): CssClass;
910
910
  * ```
911
911
  *
912
912
  * @param color - the theme color, or nullish/empty for the default
913
+ * @param returnDefault - when true, returns the default token instead of undefined for unrecognized colors
913
914
  * @returns CSS token reference string (e.g., `'--dbx-primary-color'`) or undefined if the color is not valid.
914
915
  */
915
916
  declare function dbxThemeColorCssToken(color: Maybe<DbxThemeColor>, returnDefault: true): CssToken;
@@ -924,6 +925,7 @@ declare function dbxThemeColorCssToken(color: Maybe<DbxThemeColor>, returnDefaul
924
925
  * ```
925
926
  *
926
927
  * @param color - the theme color, or nullish/empty for the default
928
+ * @param returnDefault - when true, returns the default token var instead of undefined for unrecognized colors
927
929
  * @returns CSS token var() reference string (e.g., `'var(--dbx-primary-color)'`) or undefined if the color is not valid.
928
930
  */
929
931
  declare function dbxThemeColorCssTokenVar(color: Maybe<DbxThemeColor>, returnDefault: true): CssTokenVar;
@@ -4581,6 +4583,9 @@ declare class DbxTextChipsComponent {
4581
4583
  readonly chips: _angular_core.InputSignal<Maybe<TextChip[]>>;
4582
4584
  /**
4583
4585
  * Returns the themed background CSS class for a chip's color.
4586
+ *
4587
+ * @param chip - the chip to get the color class for
4588
+ * @returns the CSS class name for the chip's background color, or empty string if no color
4584
4589
  */
4585
4590
  chipColorClass(chip: TextChip): string;
4586
4591
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTextChipsComponent, never>;
@@ -7056,14 +7061,14 @@ declare class DbxNavbarComponent extends AbstractTransitionDirective {
7056
7061
  readonly breakpoint: _angular_core.InputSignal<ScreenMediaWidthType>;
7057
7062
  readonly anchors: _angular_core.InputSignal<Maybe<ClickableAnchorLinkSegueRef[]>>;
7058
7063
  readonly isBreakpointActive$: Observable<boolean>;
7059
- readonly mode$: Observable<"icon" | "button" | "bar">;
7064
+ readonly mode$: Observable<"icon" | "bar" | "button">;
7060
7065
  readonly anchors$: Observable<NavAnchorLink[]>;
7061
7066
  readonly selectedAnchor$: Observable<Maybe<NavAnchorLink>>;
7062
7067
  readonly nextRotateAnchor$: Observable<Maybe<NavAnchorLink>>;
7063
7068
  readonly hasNoAnchors$: Observable<boolean>;
7064
7069
  readonly buttonNavAnchor$: Observable<Maybe<NavAnchorLink>>;
7065
7070
  readonly buttonDisplay$: Observable<DbxButtonDisplay>;
7066
- readonly modeSignal: _angular_core.Signal<"icon" | "button" | "bar" | undefined>;
7071
+ readonly modeSignal: _angular_core.Signal<"icon" | "bar" | "button" | undefined>;
7067
7072
  readonly anchorsSignal: _angular_core.Signal<NavAnchorLink[] | undefined>;
7068
7073
  readonly buttonDisplaySignal: _angular_core.Signal<DbxButtonDisplay | undefined>;
7069
7074
  readonly hasNoAnchorsSignal: _angular_core.Signal<boolean | undefined>;
@@ -7086,6 +7091,19 @@ declare enum SideNavDisplayMode {
7086
7091
  ICON = "icon",
7087
7092
  FULL = "full"
7088
7093
  }
7094
+ /**
7095
+ * String union type matching the {@link SideNavDisplayMode} enum values.
7096
+ *
7097
+ * Useful for template bindings where string literals are passed directly.
7098
+ */
7099
+ type SideNavDisplayModeString = `${SideNavDisplayMode}`;
7100
+ /**
7101
+ * Position of the sidenav drawer.
7102
+ *
7103
+ * - `start` - Left side (default, LTR).
7104
+ * - `end` - Right side (LTR).
7105
+ */
7106
+ type DbxSidenavPosition = 'start' | 'end';
7089
7107
 
7090
7108
  /**
7091
7109
  * Describes the current state of the sidenav sidebar, including display mode, Material drawer mode, and open/closed state.
@@ -7114,12 +7132,23 @@ declare class DbxSidenavComponent extends AbstractTransitionWatcherDirective imp
7114
7132
  private readonly _sidenavSub;
7115
7133
  private readonly _screenMediaService;
7116
7134
  readonly color: _angular_core.InputSignal<"primary" | "accent" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | undefined>;
7135
+ readonly position: _angular_core.InputSignal<DbxSidenavPosition>;
7136
+ /**
7137
+ * Overrides the responsive display mode. When set, the sidenav ignores screen-width breakpoints and uses this mode instead.
7138
+ *
7139
+ * Set to `'mobile'` to keep the sidenav always hidden as an overlay that only opens when toggled.
7140
+ */
7141
+ readonly displayMode: _angular_core.InputSignal<Maybe<"full" | "icon" | "none" | "mobile">>;
7117
7142
  readonly sidenav: _angular_core.Signal<MatSidenav>;
7118
7143
  readonly anchors: _angular_core.InputSignal<Maybe<ClickableAnchorLinkTree[]>>;
7144
+ readonly responsiveMode$: Observable<SideNavDisplayMode>;
7145
+ private readonly _displayMode$;
7119
7146
  readonly mode$: Observable<SideNavDisplayMode>;
7120
7147
  readonly modeSignal: _angular_core.Signal<SideNavDisplayMode | undefined>;
7121
7148
  readonly disableBackdropSignal: _angular_core.Signal<boolean>;
7122
7149
  readonly sizeCssClassSignal: _angular_core.Signal<string>;
7150
+ readonly positionCssClassSignal: _angular_core.Signal<"dbx-sidenav-end" | "dbx-sidenav-start">;
7151
+ readonly cssClassesSignal: _angular_core.Signal<string>;
7123
7152
  readonly state$: Observable<{
7124
7153
  mode: SideNavDisplayMode;
7125
7154
  drawer: "over" | "side";
@@ -7137,7 +7166,7 @@ declare class DbxSidenavComponent extends AbstractTransitionWatcherDirective imp
7137
7166
  toggleNav(open?: boolean): void;
7138
7167
  private _toggleNav;
7139
7168
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxSidenavComponent, never>;
7140
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxSidenavComponent, "dbx-sidenav", ["sidenav"], { "color": { "alias": "color"; "required": false; "isSignal": true; }; "anchors": { "alias": "anchors"; "required": false; "isSignal": true; }; }, {}, never, ["[top]", "[bottom]", "*"], true, never>;
7169
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxSidenavComponent, "dbx-sidenav", ["sidenav"], { "color": { "alias": "color"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; "anchors": { "alias": "anchors"; "required": false; "isSignal": true; }; }, {}, never, ["[top]", "[bottom]", "*"], true, never>;
7141
7170
  }
7142
7171
 
7143
7172
  /**
@@ -9460,7 +9489,7 @@ declare class DbxFileUploadComponent extends AbstractDbxFileUploadComponent {
9460
9489
  readonly text: _angular_core.InputSignal<Maybe<string>>;
9461
9490
  readonly icon: _angular_core.InputSignal<Maybe<string>>;
9462
9491
  readonly hint: _angular_core.InputSignal<Maybe<string | boolean>>;
9463
- readonly modeSignal: _angular_core.Signal<"button" | "default" | "area">;
9492
+ readonly modeSignal: _angular_core.Signal<"default" | "button" | "area">;
9464
9493
  readonly showButtonSignal: _angular_core.Signal<boolean>;
9465
9494
  readonly showAreaSignal: _angular_core.Signal<boolean>;
9466
9495
  readonly clickAreaToUpload: _angular_core.InputSignal<Maybe<boolean>>;
@@ -9643,4 +9672,4 @@ declare class DbxWebModule {
9643
9672
  }
9644
9673
 
9645
9674
  export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxHelpWidgetDirective, AbstractDbxListAccordionViewDirective, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_CHIP_DEFAULT_TONE, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_PREVIEW_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxInteractionModule, DbxIntroActionSectionComponent, DbxLabelBlockComponent, DbxLayoutModule, DbxLinkComponent, DbxLinkifyComponent, DbxLinkifyService, DbxLinkifyServiceConfig, DbxListAccordionViewComponentImportsModule, DbxListComponent, DbxListEmptyContentComponent, DbxListGridViewComponentImportsModule, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListModifierModule, DbxListModule, DbxListTitleGroupDirective, DbxListView, DbxListViewMetaIconComponent, DbxListViewWrapper, DbxListWrapperComponentImportsModule, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelObjectStateService, actions_d as DbxModelStateActions, model_actions_d as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNumberWithLimitComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressButtonsModule, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorModule, DbxResizedDirective, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepBlockComponent, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, DbxTextColorDirective, DbxTextModule, DbxTwoBlockComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadDirective, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListAccordionViewComponent, DbxValueListAccordionViewContentComponent, DbxValueListAccordionViewContentGroupComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListGridViewContentGroupComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewComponentImportsModule, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWebFilePreviewComponent, DbxWebFilePreviewService, DbxWebModule, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, DbxZipBlobPreviewComponent, DbxZipPreviewComponent, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, UNKNOWN_ERROR_WIDGET_CODE, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxListAccordionViewComponentImportsAndExports, dbxListGridViewComponentImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxThemeColorCssVariable, dbxThemeColorCssVariableVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, flattenAccordionGroups, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openZipPreviewDialog, overrideClickElementEffect, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
9646
- export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, DbxAccordionRenderEntry, DbxAccordionRenderGroupFooterEntry, DbxAccordionRenderGroupHeaderEntry, DbxAccordionRenderItemEntry, DbxActionConfirmConfig, DbxActionDialogFunction, DbxActionPopoverFunction, DbxActionPopoverFunctionParams, DbxActionSnackbarActionConfig, DbxActionSnackbarDisplayConfig, DbxActionSnackbarDisplayConfigGeneratorFunction, DbxActionSnackbarEvent, DbxActionSnackbarEventMakeConfig, DbxActionSnackbarGeneratorInput, DbxActionSnackbarGeneratorUndoInput, DbxActionSnackbarGeneratorUndoInputConfig, DbxActionSnackbarKnownType, DbxActionSnackbarServiceConfig, DbxActionSnackbarType, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyType, DbxAnchorListExpandedAnchor, DbxAvatarComponentForContextFunction, DbxAvatarContext, DbxAvatarInjectionComponentConfig, DbxAvatarKey, DbxAvatarSelector, DbxAvatarSize, DbxAvatarStyle, DbxButtonStyle, DbxButtonType, DbxChipDisplay, DbxColorTone, DbxContentBorderOpacity, DbxContentContainerPadding, DbxContentContainerWidth, DbxContentPitScrollableHeight, DbxContentPitScrollableHeightSetting, DbxContentPitScrollableInput, DbxDialogContentConfig, DbxDialogContentContainerWidth, DbxDialogContentFooterConfig, DbxDownloadBlobButtonConfig, DbxEmbedComponentElement, DbxEmbedDialogConfig, DbxErrorPopoverConfig, DbxErrorSnackbarConfig, DbxErrorSnackbarData, DbxErrorViewButtonEvent, DbxErrorWidgetEntry, DbxErrorWidgetEntryWithPopupComponentClass, DbxFileUploadAreaFilesChangedEvent, DbxFileUploadButtonFilesChangedEvent, DbxFileUploadComponentConfig, DbxFileUploadFilesChangedEvent, DbxFileUploadMode, DbxFilterButtonConfig, DbxFilterButtonConfigWithCustomFilter, DbxFilterButtonConfigWithPresetFilter, DbxFilterComponentConfig, DbxFilterPopoverComponentConfig, DbxFlexSize, DbxHelpContextKey, DbxHelpContextReference, DbxHelpViewPopoverButtonConfig, DbxHelpViewPopoverConfig, DbxHelpViewPopoverConfigWithoutOrigin, DbxHelpWidgetEntryData, DbxHelpWidgetServiceConfigFactory, DbxHelpWidgetServiceEntry, DbxIframeDialogConfig, DbxInjectionDialogComponentConfig, DbxLinkifyConfig, DbxLinkifyServiceConfigFactory, DbxLinkifyServiceDefaultEntry, DbxLinkifyServiceEntry, DbxLinkifyStringOptions, DbxLinkifyStringType, DbxListComponentScrolledEventPosition, DbxListConfig, DbxListLoadMoreHandler, DbxListScrollDirectionTrigger, DbxListSelectionMode, DbxListTitleGroupData, DbxListTitleGroupTitleDelegate, DbxListViewMetaIconConfig, DbxListWrapperConfig, DbxLoadingComponentState, DbxLoadingIsLoadingOrProgress, DbxLoadingProgress, DbxMakeActionSnackbarGeneratorConfiguration, DbxMakeActionSnackbarGeneratorEventConfiguration, DbxModelFullState, DbxModelIconsMap, DbxModelTypeConfiguration, DbxModelTypeConfigurationMap, DbxModelTypeConfigurationSrefFactory, DbxModelTypeConfigurationSrefFactoryBuilder, DbxModelTypeInfo, DbxModelTypesMap, DbxModelViewTrackerEvent, DbxModelViewTrackerEventSet, DbxPopoverComponentConfig, DbxPopoverConfig, DbxPopoverConfigSizing, DbxPopoverKey, DbxPopupComponentConfig, DbxPopupConfig, DbxPopupKey, DbxPopupWindowStateType, DbxPresetFilterMenuConfig, DbxProgressButtonConfig, DbxProgressButtonGlobalConfig, DbxProgressButtonIcon, DbxProgressButtonTargetedConfig, DbxPromptConfirmConfig, DbxPromptConfirmDialogConfig, DbxSectionHeaderConfig, DbxSectionHeaderHType, DbxSectionPageScrollLockedMode, DbxSelectionListWrapperConfig, DbxSelectionValueListViewConfig, DbxSetStyleMode, DbxSidenavSidebarState, DbxStepBlockComponentConfig, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, DbxThemeColor, DbxThemeColorExtra, DbxThemeColorExtraSecondary, DbxThemeColorMain, DbxThemeColorMainOrExtra, DbxTwoColumnViewState, DbxValueAsListItem, DbxValueListAccordionViewConfig, DbxValueListGridItemViewGridSizeConfig, DbxValueListGridViewConfig, DbxValueListItem, DbxValueListItemConfig, DbxValueListItemDecisionFunction, DbxValueListItemGroup, DbxValueListViewConfig, DbxValueListViewGroupValuesFunction, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebFilePreviewServicePreviewFunction, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FullDbxPopoverComponentConfig, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, TextChip, TwoColumnsState };
9675
+ export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, DbxAccordionRenderEntry, DbxAccordionRenderGroupFooterEntry, DbxAccordionRenderGroupHeaderEntry, DbxAccordionRenderItemEntry, DbxActionConfirmConfig, DbxActionDialogFunction, DbxActionPopoverFunction, DbxActionPopoverFunctionParams, DbxActionSnackbarActionConfig, DbxActionSnackbarDisplayConfig, DbxActionSnackbarDisplayConfigGeneratorFunction, DbxActionSnackbarEvent, DbxActionSnackbarEventMakeConfig, DbxActionSnackbarGeneratorInput, DbxActionSnackbarGeneratorUndoInput, DbxActionSnackbarGeneratorUndoInputConfig, DbxActionSnackbarKnownType, DbxActionSnackbarServiceConfig, DbxActionSnackbarType, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyType, DbxAnchorListExpandedAnchor, DbxAvatarComponentForContextFunction, DbxAvatarContext, DbxAvatarInjectionComponentConfig, DbxAvatarKey, DbxAvatarSelector, DbxAvatarSize, DbxAvatarStyle, DbxButtonStyle, DbxButtonType, DbxChipDisplay, DbxColorTone, DbxContentBorderOpacity, DbxContentContainerPadding, DbxContentContainerWidth, DbxContentPitScrollableHeight, DbxContentPitScrollableHeightSetting, DbxContentPitScrollableInput, DbxDialogContentConfig, DbxDialogContentContainerWidth, DbxDialogContentFooterConfig, DbxDownloadBlobButtonConfig, DbxEmbedComponentElement, DbxEmbedDialogConfig, DbxErrorPopoverConfig, DbxErrorSnackbarConfig, DbxErrorSnackbarData, DbxErrorViewButtonEvent, DbxErrorWidgetEntry, DbxErrorWidgetEntryWithPopupComponentClass, DbxFileUploadAreaFilesChangedEvent, DbxFileUploadButtonFilesChangedEvent, DbxFileUploadComponentConfig, DbxFileUploadFilesChangedEvent, DbxFileUploadMode, DbxFilterButtonConfig, DbxFilterButtonConfigWithCustomFilter, DbxFilterButtonConfigWithPresetFilter, DbxFilterComponentConfig, DbxFilterPopoverComponentConfig, DbxFlexSize, DbxHelpContextKey, DbxHelpContextReference, DbxHelpViewPopoverButtonConfig, DbxHelpViewPopoverConfig, DbxHelpViewPopoverConfigWithoutOrigin, DbxHelpWidgetEntryData, DbxHelpWidgetServiceConfigFactory, DbxHelpWidgetServiceEntry, DbxIframeDialogConfig, DbxInjectionDialogComponentConfig, DbxLinkifyConfig, DbxLinkifyServiceConfigFactory, DbxLinkifyServiceDefaultEntry, DbxLinkifyServiceEntry, DbxLinkifyStringOptions, DbxLinkifyStringType, DbxListComponentScrolledEventPosition, DbxListConfig, DbxListLoadMoreHandler, DbxListScrollDirectionTrigger, DbxListSelectionMode, DbxListTitleGroupData, DbxListTitleGroupTitleDelegate, DbxListViewMetaIconConfig, DbxListWrapperConfig, DbxLoadingComponentState, DbxLoadingIsLoadingOrProgress, DbxLoadingProgress, DbxMakeActionSnackbarGeneratorConfiguration, DbxMakeActionSnackbarGeneratorEventConfiguration, DbxModelFullState, DbxModelIconsMap, DbxModelTypeConfiguration, DbxModelTypeConfigurationMap, DbxModelTypeConfigurationSrefFactory, DbxModelTypeConfigurationSrefFactoryBuilder, DbxModelTypeInfo, DbxModelTypesMap, DbxModelViewTrackerEvent, DbxModelViewTrackerEventSet, DbxPopoverComponentConfig, DbxPopoverConfig, DbxPopoverConfigSizing, DbxPopoverKey, DbxPopupComponentConfig, DbxPopupConfig, DbxPopupKey, DbxPopupWindowStateType, DbxPresetFilterMenuConfig, DbxProgressButtonConfig, DbxProgressButtonGlobalConfig, DbxProgressButtonIcon, DbxProgressButtonTargetedConfig, DbxPromptConfirmConfig, DbxPromptConfirmDialogConfig, DbxSectionHeaderConfig, DbxSectionHeaderHType, DbxSectionPageScrollLockedMode, DbxSelectionListWrapperConfig, DbxSelectionValueListViewConfig, DbxSetStyleMode, DbxSidenavPosition, DbxSidenavSidebarState, DbxStepBlockComponentConfig, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, DbxThemeColor, DbxThemeColorExtra, DbxThemeColorExtraSecondary, DbxThemeColorMain, DbxThemeColorMainOrExtra, DbxTwoColumnViewState, DbxValueAsListItem, DbxValueListAccordionViewConfig, DbxValueListGridItemViewGridSizeConfig, DbxValueListGridViewConfig, DbxValueListItem, DbxValueListItemConfig, DbxValueListItemDecisionFunction, DbxValueListItemGroup, DbxValueListViewConfig, DbxValueListViewGroupValuesFunction, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebFilePreviewServicePreviewFunction, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FullDbxPopoverComponentConfig, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, TextChip, TwoColumnsState };