@dereekb/dbx-web 13.5.1 → 13.6.0
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.
- package/fesm2022/dereekb-dbx-web-mapbox.mjs +1 -1
- package/fesm2022/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web.mjs +206 -65
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/lib/button/_button.scss +1 -0
- package/lib/layout/style/_style.scss +8 -1
- package/lib/layout/text/_text.scss +11 -1
- package/lib/router/layout/anchorlist/_anchorlist.scss +2 -1
- package/lib/style/_root-variables.scss +3 -3
- package/lib/style/_variables.scss +1 -0
- package/package.json +6 -6
- package/types/dereekb-dbx-web.d.ts +141 -21
package/lib/button/_button.scss
CHANGED
|
@@ -115,7 +115,8 @@
|
|
|
115
115
|
.dbx-#{$name}-bg {
|
|
116
116
|
#{theming.$dbx-color-var}: #{$bg-text};
|
|
117
117
|
#{theming.$dbx-bg-color-var}: #{$bg-color};
|
|
118
|
-
|
|
118
|
+
#{theming.$dbx-bg-tone-var}: 100%;
|
|
119
|
+
background: color-mix(in srgb, #{theming.$dbx-bg-color} var(#{theming.$dbx-bg-tone-var}), transparent);
|
|
119
120
|
color: #{theming.$dbx-color};
|
|
120
121
|
}
|
|
121
122
|
|
|
@@ -141,6 +142,12 @@
|
|
|
141
142
|
@include define-dbx-color-class($color, map.get($colorConfig, 'color'), map.get($colorConfig, 'contrast'));
|
|
142
143
|
}
|
|
143
144
|
|
|
145
|
+
// tonal mode: use the vibrant theme color as text instead of the contrast color.
|
|
146
|
+
// Applied via CSS class (not [style.color]) to avoid conflicting with [ngStyle] on buttons.
|
|
147
|
+
.dbx-color-tonal {
|
|
148
|
+
color: var(#{theming.$dbx-bg-color-var});
|
|
149
|
+
}
|
|
150
|
+
|
|
144
151
|
// material color overrides
|
|
145
152
|
// --mdc-text-button-label-text-color: #{theming.$dbx-color-var};
|
|
146
153
|
--mat-button-text-label-text-color: #{theming.$dbx-color-var};
|
|
@@ -157,7 +157,7 @@ $dbx-detail-block-big-header-icon-size: 18px;
|
|
|
157
157
|
transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
158
158
|
display: inline-flex;
|
|
159
159
|
padding: 7px 12px;
|
|
160
|
-
border-radius: var(--dbx-chip-container-shape, var(--mat-sys-corner-
|
|
160
|
+
border-radius: var(--dbx-chip-container-shape, var(--mat-sys-corner-full, 9999px));
|
|
161
161
|
align-items: center;
|
|
162
162
|
cursor: default;
|
|
163
163
|
min-height: 32px;
|
|
@@ -203,6 +203,16 @@ $dbx-detail-block-big-header-icon-size: 18px;
|
|
|
203
203
|
user-select: none;
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
+
// override Material's chip styling when a -bg color class is applied
|
|
207
|
+
.dbx-text-chips-listbox mat-chip-option[class*='-bg'] {
|
|
208
|
+
--mat-chip-elevated-selected-container-color: #{theming.$dbx-bg-color};
|
|
209
|
+
--mat-chip-elevated-container-color: #{theming.$dbx-bg-color};
|
|
210
|
+
--mat-chip-selected-label-text-color: #{theming.$dbx-color};
|
|
211
|
+
--mat-chip-label-text-color: #{theming.$dbx-color};
|
|
212
|
+
--mat-chip-with-icon-selected-icon-color: #{theming.$dbx-color};
|
|
213
|
+
--mat-chip-with-icon-icon-color: #{theming.$dbx-color};
|
|
214
|
+
}
|
|
215
|
+
|
|
206
216
|
.dbx-hint,
|
|
207
217
|
.dbx-clear-hint {
|
|
208
218
|
opacity: $hint-opacity;
|
|
@@ -52,7 +52,8 @@ $default-mdc-list-list-item-leading-icon-size: 24px;
|
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
.dbx-anchor-list.mat-mdc-nav-list
|
|
55
|
+
.dbx-anchor-list.mat-mdc-nav-list,
|
|
56
|
+
.dbx-list-view .mat-mdc-nav-list {
|
|
56
57
|
--mat-divider-color: color-mix(in srgb, var(--mat-sys-outline-variant) 15%, transparent);
|
|
57
58
|
|
|
58
59
|
// MARK: Muting
|
|
@@ -107,13 +107,13 @@
|
|
|
107
107
|
|
|
108
108
|
// Custom dbx colors - still from theme config (no --mat-sys-* equivalent)
|
|
109
109
|
#{theming.$dbx-notice-color-var}: theming.get-dbx-notice-color($theme-config);
|
|
110
|
-
#{theming.$dbx-notice-color-contrast-var}: var(--
|
|
110
|
+
#{theming.$dbx-notice-color-contrast-var}: var(--mat-sys-surface);
|
|
111
111
|
|
|
112
112
|
#{theming.$dbx-success-color-var}: theming.get-dbx-success-color($theme-config);
|
|
113
|
-
#{theming.$dbx-success-color-contrast-var}: var(--
|
|
113
|
+
#{theming.$dbx-success-color-contrast-var}: var(--mat-sys-surface);
|
|
114
114
|
|
|
115
115
|
#{theming.$dbx-ok-color-var}: theming.get-dbx-ok-color($theme-config);
|
|
116
|
-
#{theming.$dbx-ok-color-contrast-var}: var(--
|
|
116
|
+
#{theming.$dbx-ok-color-contrast-var}: var(--mat-sys-surface);
|
|
117
117
|
|
|
118
118
|
// Grey - foreground text / background
|
|
119
119
|
#{theming.$dbx-grey-color-var}: var(--mat-sys-outline);
|
|
@@ -23,6 +23,7 @@ $two-column-left-width-var: --dbx-two-column-left-width;
|
|
|
23
23
|
|
|
24
24
|
$dbx-color-var: --dbx-color-current;
|
|
25
25
|
$dbx-bg-color-var: --dbx-bg-color-current;
|
|
26
|
+
$dbx-bg-tone-var: --dbx-color-bg-tone;
|
|
26
27
|
|
|
27
28
|
$dbx-primary-color-var: --dbx-primary-color;
|
|
28
29
|
$dbx-secondary-color-var: --dbx-secondary-color;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.6.0",
|
|
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.
|
|
12
|
-
"@dereekb/date": "13.
|
|
13
|
-
"@dereekb/dbx-core": "13.
|
|
14
|
-
"@dereekb/rxjs": "13.
|
|
15
|
-
"@dereekb/util": "13.
|
|
11
|
+
"@dereekb/browser": "13.6.0",
|
|
12
|
+
"@dereekb/date": "13.6.0",
|
|
13
|
+
"@dereekb/dbx-core": "13.6.0",
|
|
14
|
+
"@dereekb/rxjs": "13.6.0",
|
|
15
|
+
"@dereekb/util": "13.6.0",
|
|
16
16
|
"@ngbracket/ngx-layout": "^21.0.0",
|
|
17
17
|
"@ngrx/component-store": "^21.0.0",
|
|
18
18
|
"@ngrx/effects": "^21.0.0",
|
|
@@ -4,7 +4,7 @@ import * as _angular_core from '@angular/core';
|
|
|
4
4
|
import { Signal, ElementRef, AfterViewInit, InjectionToken, Type, OnInit, OnDestroy, ViewContainerRef, Provider, Injector, TrackByFunction, OutputEmitterRef, OutputRef, EnvironmentProviders, TemplateRef } from '@angular/core';
|
|
5
5
|
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
6
6
|
import * as _dereekb_util from '@dereekb/util';
|
|
7
|
-
import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CharacterPrefixSuffixCleanString, DashPrefixString, CssClass, CssToken, CssTokenVar, WebsiteUrlWithPrefix, WebsitePath, Pixels, PixelsString, DecisionFunction, ModifierMap, ArrayOrValue, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, Destroyable, UnitedStatesAddressWithContact, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, ContentTypeMimeType, MimeTypeWithoutParameters, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix } from '@dereekb/util';
|
|
7
|
+
import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CharacterPrefixSuffixCleanString, DashPrefixString, CssClass, CssToken, CssTokenVar, WebsiteUrlWithPrefix, WebsitePath, Pixels, PixelsString, DecisionFunction, ModifierMap, ArrayOrValue, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, Destroyable, UnitedStatesAddressWithContact, LabeledValue, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, ContentTypeMimeType, MimeTypeWithoutParameters, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix } from '@dereekb/util';
|
|
8
8
|
import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
|
|
9
9
|
import * as dist_packages_dbx_core_types_dereekb_dbx_core from 'dist/packages/dbx-core/types/dereekb-dbx-core';
|
|
10
10
|
import * as rxjs from 'rxjs';
|
|
@@ -876,6 +876,13 @@ declare const DBX_THEME_COLORS_MAIN: DbxThemeColorMain[];
|
|
|
876
876
|
declare const DBX_THEME_COLORS_EXTRA: DbxThemeColorExtra[];
|
|
877
877
|
declare const DBX_THEME_COLORS_EXTRA_SECONDARY: DbxThemeColorExtraSecondary[];
|
|
878
878
|
declare const DBX_THEME_COLORS: DbxThemeColor[];
|
|
879
|
+
/**
|
|
880
|
+
* Background mix percentage (0-100) that controls the opacity of a themed background color.
|
|
881
|
+
*
|
|
882
|
+
* Used with `--dbx-color-bg-tone` to create tonal/muted color appearances.
|
|
883
|
+
* A value of `100` produces a fully opaque background, while lower values (e.g. `18`) produce a subtle tonal effect.
|
|
884
|
+
*/
|
|
885
|
+
type DbxColorTone = number;
|
|
879
886
|
/**
|
|
880
887
|
* Returns the CSS class name for a themed background color.
|
|
881
888
|
*
|
|
@@ -3827,16 +3834,36 @@ declare class DbxStepLayoutModule {
|
|
|
3827
3834
|
/**
|
|
3828
3835
|
* Applies a themed background color to the host element based on a {@link DbxThemeColor} value.
|
|
3829
3836
|
*
|
|
3837
|
+
* Optionally set {@link dbxColorTone} to control background opacity for a tonal/muted appearance.
|
|
3838
|
+
* When tonal mode is active, the `dbx-color-tonal` CSS class is added and a CSS rule
|
|
3839
|
+
* overrides the text color to the vibrant theme color (via `--dbx-bg-color-current`).
|
|
3840
|
+
*
|
|
3830
3841
|
* @example
|
|
3831
3842
|
* ```html
|
|
3832
|
-
* <div [dbxColor]="'primary'">
|
|
3843
|
+
* <div [dbxColor]="'primary'">Full background</div>
|
|
3844
|
+
* <div [dbxColor]="'primary'" [dbxColorTone]="18">Tonal background</div>
|
|
3833
3845
|
* ```
|
|
3834
3846
|
*/
|
|
3835
3847
|
declare class DbxColorDirective {
|
|
3836
3848
|
readonly dbxColor: _angular_core.InputSignal<Maybe<"" | DbxThemeColor>>;
|
|
3849
|
+
/**
|
|
3850
|
+
* Background tone level (0-100). When set, the background becomes semi-transparent
|
|
3851
|
+
* and text color switches to the vibrant theme color for a tonal appearance.
|
|
3852
|
+
*/
|
|
3853
|
+
readonly dbxColorTone: _angular_core.InputSignal<Maybe<number>>;
|
|
3837
3854
|
readonly cssClassSignal: _angular_core.Signal<string>;
|
|
3855
|
+
/**
|
|
3856
|
+
* Whether tonal mode is active. Adds the `dbx-color-tonal` CSS class which
|
|
3857
|
+
* overrides the text color to the vibrant theme color via CSS rather than
|
|
3858
|
+
* an inline style binding (which would conflict with `[ngStyle]`).
|
|
3859
|
+
*/
|
|
3860
|
+
readonly isTonalSignal: _angular_core.Signal<boolean>;
|
|
3861
|
+
/**
|
|
3862
|
+
* Sets `--dbx-color-bg-tone` on the host to control the background opacity via `color-mix` in the `-bg` class mixin.
|
|
3863
|
+
*/
|
|
3864
|
+
readonly bgToneStyleSignal: _angular_core.Signal<string | null>;
|
|
3838
3865
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxColorDirective, never>;
|
|
3839
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxColorDirective, "[dbxColor]", never, { "dbxColor": { "alias": "dbxColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3866
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxColorDirective, "[dbxColor]", never, { "dbxColor": { "alias": "dbxColor"; "required": false; "isSignal": true; }; "dbxColorTone": { "alias": "dbxColorTone"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3840
3867
|
}
|
|
3841
3868
|
|
|
3842
3869
|
/**
|
|
@@ -4315,58 +4342,145 @@ interface ProvideDbxLinkifyConfig {
|
|
|
4315
4342
|
declare function provideDbxLinkify(config: ProvideDbxLinkifyConfig): EnvironmentProviders;
|
|
4316
4343
|
|
|
4317
4344
|
/**
|
|
4318
|
-
*
|
|
4345
|
+
* Display configuration for a single colored chip.
|
|
4346
|
+
*
|
|
4347
|
+
* Combines a labeled value with a theme color for rendering a styled chip.
|
|
4348
|
+
*/
|
|
4349
|
+
interface DbxChipDisplay<T = unknown> extends LabeledValue<T> {
|
|
4350
|
+
/**
|
|
4351
|
+
* Theme color applied to the chip background.
|
|
4352
|
+
*/
|
|
4353
|
+
readonly color?: Maybe<DbxThemeColor>;
|
|
4354
|
+
/**
|
|
4355
|
+
* Whether to render the chip in small mode.
|
|
4356
|
+
*/
|
|
4357
|
+
readonly small?: Maybe<boolean>;
|
|
4358
|
+
/**
|
|
4359
|
+
* Whether to render the chip in block mode (no border-radius).
|
|
4360
|
+
*/
|
|
4361
|
+
readonly block?: Maybe<boolean>;
|
|
4362
|
+
/**
|
|
4363
|
+
* Background tone level controlling the opacity of the chip color.
|
|
4364
|
+
*/
|
|
4365
|
+
readonly tone?: Maybe<DbxColorTone>;
|
|
4366
|
+
}
|
|
4367
|
+
/**
|
|
4368
|
+
* Default background tone percentage for tonal chip coloring.
|
|
4369
|
+
*/
|
|
4370
|
+
declare const DBX_CHIP_DEFAULT_TONE = 18;
|
|
4371
|
+
/**
|
|
4372
|
+
* Renders a styled chip element with optional small, block, and color modes.
|
|
4319
4373
|
*
|
|
4320
4374
|
* @example
|
|
4321
4375
|
* ```html
|
|
4322
4376
|
* <dbx-chip [small]="true">Tag</dbx-chip>
|
|
4323
4377
|
* <dbx-chip [block]="true">Full Width</dbx-chip>
|
|
4378
|
+
* <dbx-chip [color]="'primary'">Primary</dbx-chip>
|
|
4324
4379
|
* ```
|
|
4325
4380
|
*/
|
|
4326
4381
|
declare class DbxChipDirective {
|
|
4327
4382
|
readonly small: _angular_core.InputSignal<Maybe<boolean>>;
|
|
4328
4383
|
readonly block: _angular_core.InputSignal<Maybe<boolean>>;
|
|
4384
|
+
/**
|
|
4385
|
+
* Theme color applied to the chip background via {@link dbxColorBackground}.
|
|
4386
|
+
*
|
|
4387
|
+
* When {@link display} is also set, its color is used as a fallback.
|
|
4388
|
+
*/
|
|
4389
|
+
readonly color: _angular_core.InputSignal<Maybe<DbxThemeColor>>;
|
|
4390
|
+
/**
|
|
4391
|
+
* Display configuration that provides color (and optionally label/value metadata).
|
|
4392
|
+
*
|
|
4393
|
+
* The color from `display` is used as a fallback when `color` is not explicitly set.
|
|
4394
|
+
*/
|
|
4395
|
+
readonly display: _angular_core.InputSignal<Maybe<DbxChipDisplay<unknown>>>;
|
|
4396
|
+
/**
|
|
4397
|
+
* Background tone level for tonal appearance. Defaults to {@link DBX_CHIP_DEFAULT_TONE}.
|
|
4398
|
+
*
|
|
4399
|
+
* Set to `100` for fully opaque background.
|
|
4400
|
+
*/
|
|
4401
|
+
readonly tone: _angular_core.InputSignal<Maybe<number>>;
|
|
4402
|
+
readonly colorSignal: _angular_core.Signal<Maybe<DbxThemeColor>>;
|
|
4403
|
+
readonly toneSignal: _angular_core.Signal<number>;
|
|
4329
4404
|
readonly styleSignal: _angular_core.Signal<string>;
|
|
4405
|
+
/**
|
|
4406
|
+
* Sets `--dbx-color-bg-tone` on the host to control the background opacity via `color-mix` in the `-bg` class mixin.
|
|
4407
|
+
* Only applied when a color is set.
|
|
4408
|
+
*/
|
|
4409
|
+
readonly bgToneStyleSignal: _angular_core.Signal<string | null>;
|
|
4410
|
+
/**
|
|
4411
|
+
* Whether tonal mode is active (color is set and tone < 100). Adds the `dbx-color-tonal`
|
|
4412
|
+
* CSS class which overrides text color to the vibrant theme color via CSS rather than
|
|
4413
|
+
* an inline style binding (which would conflict with `[ngStyle]`).
|
|
4414
|
+
*/
|
|
4415
|
+
readonly isTonalSignal: _angular_core.Signal<boolean>;
|
|
4330
4416
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxChipDirective, never>;
|
|
4331
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxChipDirective, "dbx-chip", never, { "small": { "alias": "small"; "required": false; "isSignal": true; }; "block": { "alias": "block"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4417
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxChipDirective, "dbx-chip", never, { "small": { "alias": "small"; "required": false; "isSignal": true; }; "block": { "alias": "block"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "display": { "alias": "display"; "required": false; "isSignal": true; }; "tone": { "alias": "tone"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
/**
|
|
4421
|
+
* Renders a row of colored chips from an array of {@link DbxChipDisplay} items.
|
|
4422
|
+
*
|
|
4423
|
+
* Uses {@link DbxChipDirective} internally with `dbx-chip-spacer` class for spacing.
|
|
4424
|
+
*
|
|
4425
|
+
* @example
|
|
4426
|
+
* ```html
|
|
4427
|
+
* <dbx-chip-list [chips]="[{ label: 'Active', value: 'active', color: 'primary' }, { label: 'Pending', value: 'pending', color: 'accent' }]"></dbx-chip-list>
|
|
4428
|
+
* <dbx-chip-list [chips]="chips" [small]="true"></dbx-chip-list>
|
|
4429
|
+
* ```
|
|
4430
|
+
*/
|
|
4431
|
+
declare class DbxChipListComponent<T = unknown> {
|
|
4432
|
+
readonly chips: _angular_core.InputSignal<Maybe<DbxChipDisplay<T>[]>>;
|
|
4433
|
+
readonly small: _angular_core.InputSignal<Maybe<boolean>>;
|
|
4434
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxChipListComponent<any>, never>;
|
|
4435
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxChipListComponent<any>, "dbx-chip-list", never, { "chips": { "alias": "chips"; "required": false; "isSignal": true; }; "small": { "alias": "small"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4332
4436
|
}
|
|
4333
4437
|
|
|
4334
4438
|
/**
|
|
4335
4439
|
* Configuration for a single chip displayed by {@link DbxTextChipsComponent}.
|
|
4440
|
+
*
|
|
4441
|
+
* Extends {@link LabeledValue} for the chip label and value.
|
|
4336
4442
|
*/
|
|
4337
|
-
interface TextChip<T = unknown> {
|
|
4338
|
-
/**
|
|
4339
|
-
* Display label for the chip.
|
|
4340
|
-
*/
|
|
4341
|
-
text: string;
|
|
4443
|
+
interface TextChip<T = unknown> extends LabeledValue<T> {
|
|
4342
4444
|
/**
|
|
4343
4445
|
* Optional tooltip shown on hover.
|
|
4344
4446
|
*/
|
|
4345
|
-
tooltip?: string;
|
|
4447
|
+
readonly tooltip?: string;
|
|
4346
4448
|
/**
|
|
4347
4449
|
* Whether the chip appears selected.
|
|
4348
4450
|
*/
|
|
4349
|
-
selected?: boolean;
|
|
4451
|
+
readonly selected?: boolean;
|
|
4350
4452
|
/**
|
|
4351
|
-
* Theme color applied to the chip.
|
|
4453
|
+
* Theme color applied to the chip background via {@link dbxColorBackground}.
|
|
4352
4454
|
*/
|
|
4353
|
-
color?:
|
|
4455
|
+
readonly color?: Maybe<DbxThemeColor>;
|
|
4354
4456
|
/**
|
|
4355
|
-
*
|
|
4457
|
+
* @deprecated use `label` instead.
|
|
4356
4458
|
*/
|
|
4357
|
-
|
|
4459
|
+
readonly text?: string;
|
|
4358
4460
|
}
|
|
4461
|
+
/**
|
|
4462
|
+
* Returns the display label for a {@link TextChip}, preferring `label` over the deprecated `text` field.
|
|
4463
|
+
*/
|
|
4464
|
+
declare function textChipLabel(chip: TextChip): string;
|
|
4359
4465
|
/**
|
|
4360
4466
|
* Renders a read-only list of Material chip options from an array of {@link TextChip} objects.
|
|
4361
4467
|
*
|
|
4362
4468
|
* @example
|
|
4363
4469
|
* ```html
|
|
4364
|
-
* <dbx-text-chips [chips]="[{
|
|
4470
|
+
* <dbx-text-chips [chips]="[{ label: 'Active', value: 'active', selected: true, color: 'primary' }]"></dbx-text-chips>
|
|
4365
4471
|
* ```
|
|
4366
4472
|
*/
|
|
4367
4473
|
declare class DbxTextChipsComponent<T = unknown> {
|
|
4368
4474
|
readonly defaultSelection: _angular_core.InputSignal<Maybe<boolean>>;
|
|
4369
4475
|
readonly chips: _angular_core.InputSignal<Maybe<TextChip<T>[]>>;
|
|
4476
|
+
/**
|
|
4477
|
+
* Returns the display label for a chip.
|
|
4478
|
+
*/
|
|
4479
|
+
readonly chipLabel: typeof textChipLabel;
|
|
4480
|
+
/**
|
|
4481
|
+
* Returns the themed background CSS class for a chip's color.
|
|
4482
|
+
*/
|
|
4483
|
+
chipColorClass(chip: TextChip<T>): string;
|
|
4370
4484
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTextChipsComponent<any>, never>;
|
|
4371
4485
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxTextChipsComponent<any>, "dbx-text-chips", never, { "defaultSelection": { "alias": "defaultSelection"; "required": false; "isSignal": true; }; "chips": { "alias": "chips"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4372
4486
|
}
|
|
@@ -4664,7 +4778,7 @@ declare class DbxClickToCopyTextComponent {
|
|
|
4664
4778
|
*/
|
|
4665
4779
|
declare class DbxTextModule {
|
|
4666
4780
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTextModule, never>;
|
|
4667
|
-
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxTextModule, never, [typeof DbxUnitedStatesAddressComponent, typeof DbxNumberWithLimitComponent, typeof DbxClickToCopyTextDirective, typeof DbxClickToCopyTextComponent, typeof DbxChipDirective, typeof DbxDetailBlockComponent, typeof DbxDetailBlockHeaderComponent, typeof DbxLabelBlockComponent, typeof DbxLinkifyComponent, typeof DbxTextChipsComponent, typeof DbxIconSpacerDirective], [typeof DbxUnitedStatesAddressComponent, typeof DbxNumberWithLimitComponent, typeof DbxClickToCopyTextDirective, typeof DbxClickToCopyTextComponent, typeof DbxChipDirective, typeof DbxDetailBlockComponent, typeof DbxDetailBlockHeaderComponent, typeof DbxLabelBlockComponent, typeof DbxLinkifyComponent, typeof DbxTextChipsComponent, typeof DbxIconSpacerDirective]>;
|
|
4781
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxTextModule, never, [typeof DbxUnitedStatesAddressComponent, typeof DbxNumberWithLimitComponent, typeof DbxClickToCopyTextDirective, typeof DbxClickToCopyTextComponent, typeof DbxChipDirective, typeof DbxChipListComponent, typeof DbxDetailBlockComponent, typeof DbxDetailBlockHeaderComponent, typeof DbxLabelBlockComponent, typeof DbxLinkifyComponent, typeof DbxTextChipsComponent, typeof DbxIconSpacerDirective], [typeof DbxUnitedStatesAddressComponent, typeof DbxNumberWithLimitComponent, typeof DbxClickToCopyTextDirective, typeof DbxClickToCopyTextComponent, typeof DbxChipDirective, typeof DbxChipListComponent, typeof DbxDetailBlockComponent, typeof DbxDetailBlockHeaderComponent, typeof DbxLabelBlockComponent, typeof DbxLinkifyComponent, typeof DbxTextChipsComponent, typeof DbxIconSpacerDirective]>;
|
|
4668
4782
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxTextModule>;
|
|
4669
4783
|
}
|
|
4670
4784
|
|
|
@@ -4804,6 +4918,11 @@ interface DbxProgressButtonConfig {
|
|
|
4804
4918
|
* Whether to render as a floating action button (FAB).
|
|
4805
4919
|
*/
|
|
4806
4920
|
readonly fab?: Maybe<boolean>;
|
|
4921
|
+
/**
|
|
4922
|
+
* Accessible label for the button, applied as `aria-label`.
|
|
4923
|
+
* Especially important for icon-only buttons that lack visible text.
|
|
4924
|
+
*/
|
|
4925
|
+
readonly ariaLabel?: Maybe<string>;
|
|
4807
4926
|
}
|
|
4808
4927
|
/**
|
|
4809
4928
|
* Configuration for the icon displayed inside a progress button.
|
|
@@ -9146,6 +9265,7 @@ declare class DbxFileUploadButtonComponent extends AbstractDbxFileUploadComponen
|
|
|
9146
9265
|
readonly fileInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
9147
9266
|
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
9148
9267
|
readonly icon: _angular_core.InputSignal<Maybe<string>>;
|
|
9268
|
+
readonly ariaLabel: _angular_core.InputSignal<Maybe<string>>;
|
|
9149
9269
|
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
9150
9270
|
readonly filesChanged: _angular_core.OutputEmitterRef<DbxFileUploadFilesChangedEvent>;
|
|
9151
9271
|
readonly buttonAcceptSignal: _angular_core.Signal<string | undefined>;
|
|
@@ -9164,7 +9284,7 @@ declare class DbxFileUploadButtonComponent extends AbstractDbxFileUploadComponen
|
|
|
9164
9284
|
openInput(): void;
|
|
9165
9285
|
fileInputChanged(): void;
|
|
9166
9286
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFileUploadButtonComponent, never>;
|
|
9167
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFileUploadButtonComponent, "dbx-file-upload-button", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; }, never, ["*"], true, never>;
|
|
9287
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFileUploadButtonComponent, "dbx-file-upload-button", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; }, never, ["*"], true, never>;
|
|
9168
9288
|
}
|
|
9169
9289
|
|
|
9170
9290
|
/**
|
|
@@ -9395,5 +9515,5 @@ declare class DbxWebModule {
|
|
|
9395
9515
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxWebModule>;
|
|
9396
9516
|
}
|
|
9397
9517
|
|
|
9398
|
-
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_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_DBX_VALUE_LIST_CONFIG_MAP_VALUES, 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, 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, DbxStepComponent, DbxStepLayoutModule, 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, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, 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 };
|
|
9399
|
-
export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, 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, 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, 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 };
|
|
9518
|
+
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_DBX_VALUE_LIST_CONFIG_MAP_VALUES, 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, DbxStepComponent, DbxStepLayoutModule, 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, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, 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 };
|
|
9519
|
+
export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, 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, 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 };
|