@dereekb/dbx-web 13.5.2 → 13.6.1

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.
@@ -78,6 +78,7 @@ $big-button-height: 46px; // 33% bigger
78
78
  .dbx-button-column {
79
79
  display: flex;
80
80
  flex-direction: column;
81
+ align-items: flex-start;
81
82
 
82
83
  > * {
83
84
  margin-bottom: 6px !important;
@@ -9,7 +9,6 @@
9
9
  @use './item/item';
10
10
  @use './list/list';
11
11
  @use './section/section';
12
- @use './step/step';
13
12
  @use './style/style';
14
13
  @use './text/text';
15
14
 
@@ -25,7 +24,6 @@
25
24
  @include item.core();
26
25
  @include list.core();
27
26
  @include section.core();
28
- @include step.core();
29
27
  @include style.core();
30
28
  @include text.core();
31
29
  }
@@ -45,7 +43,6 @@
45
43
  @include item.theme($theme-config);
46
44
  @include list.theme($theme-config);
47
45
  @include section.theme($theme-config);
48
- @include step.theme($theme-config);
49
46
  @include style.theme($theme-config);
50
47
  @include text.theme($theme-config);
51
48
  }
@@ -142,6 +142,12 @@
142
142
  @include define-dbx-color-class($color, map.get($colorConfig, 'color'), map.get($colorConfig, 'contrast'));
143
143
  }
144
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
+
145
151
  // material color overrides
146
152
  // --mdc-text-button-label-text-color: #{theming.$dbx-color-var};
147
153
  --mat-button-text-label-text-color: #{theming.$dbx-color-var};
@@ -13,6 +13,14 @@ $dbx-detail-block-content-offset: 30px;
13
13
  $click-to-copy-icon-size: 18px;
14
14
  $dbx-detail-block-big-header-icon-size: 18px;
15
15
 
16
+ $dbx-step-block-badge-size: 32px;
17
+ $dbx-step-block-gap: 16px;
18
+ $dbx-step-block-padding: 6px;
19
+ $dbx-step-block-badge-font-size: 14px;
20
+ $dbx-step-block-badge-icon-size: 18px;
21
+ $dbx-step-block-header-font-weight: 500;
22
+ $dbx-step-block-badge-font-weight: 600;
23
+
16
24
  // MARK: Mixin
17
25
  @mixin core() {
18
26
  .dbx-small,
@@ -125,6 +133,57 @@ $dbx-detail-block-big-header-icon-size: 18px;
125
133
  }
126
134
  }
127
135
 
136
+ .dbx-step-block {
137
+ display: flex;
138
+ flex-direction: row;
139
+ gap: var(--dbx-step-block-gap, #{$dbx-step-block-gap});
140
+ align-items: flex-start;
141
+ padding: var(--dbx-step-block-padding, #{$dbx-step-block-padding}) 0;
142
+ }
143
+
144
+ .dbx-step-block.dbx-step-block-center {
145
+ align-items: center;
146
+ }
147
+
148
+ .dbx-step-block-badge {
149
+ width: var(--dbx-step-block-badge-size, #{$dbx-step-block-badge-size});
150
+ height: var(--dbx-step-block-badge-size, #{$dbx-step-block-badge-size});
151
+ min-width: var(--dbx-step-block-badge-size, #{$dbx-step-block-badge-size});
152
+ border-radius: var(--dbx-step-block-badge-shape, 50%);
153
+ display: flex;
154
+ align-items: center;
155
+ justify-content: center;
156
+ font-size: var(--dbx-step-block-badge-font-size, #{$dbx-step-block-badge-font-size});
157
+ font-weight: var(--dbx-step-block-badge-font-weight, #{$dbx-step-block-badge-font-weight});
158
+
159
+ .mat-icon {
160
+ width: var(--dbx-step-block-badge-icon-size, #{$dbx-step-block-badge-icon-size});
161
+ height: var(--dbx-step-block-badge-icon-size, #{$dbx-step-block-badge-icon-size});
162
+ font-size: var(--dbx-step-block-badge-icon-size, #{$dbx-step-block-badge-icon-size});
163
+ }
164
+ }
165
+
166
+ .dbx-step-block-content {
167
+ flex: 1;
168
+ min-width: 0;
169
+ }
170
+
171
+ .dbx-step-block-header {
172
+ display: flex;
173
+ align-items: center;
174
+ font-weight: var(--dbx-step-block-header-font-weight, #{$dbx-step-block-header-font-weight});
175
+ }
176
+
177
+ .dbx-step-block-header-label {
178
+ padding-right: 4px;
179
+ }
180
+
181
+ .dbx-step-block-hint {
182
+ display: block;
183
+ font-size: var(--dbx-step-block-hint-font-size, var(--mat-sys-body-small-size));
184
+ opacity: var(--dbx-step-block-hint-opacity, #{$hint-opacity});
185
+ }
186
+
128
187
  .dbx-text-no-overflow {
129
188
  white-space: pre-wrap !important;
130
189
  overflow: visible !important;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-web",
3
- "version": "13.5.2",
3
+ "version": "13.6.1",
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.5.2",
12
- "@dereekb/date": "13.5.2",
13
- "@dereekb/dbx-core": "13.5.2",
14
- "@dereekb/rxjs": "13.5.2",
15
- "@dereekb/util": "13.5.2",
11
+ "@dereekb/browser": "13.6.1",
12
+ "@dereekb/date": "13.6.1",
13
+ "@dereekb/dbx-core": "13.6.1",
14
+ "@dereekb/rxjs": "13.6.1",
15
+ "@dereekb/util": "13.6.1",
16
16
  "@ngbracket/ngx-layout": "^21.0.0",
17
17
  "@ngrx/component-store": "^21.0.0",
18
18
  "@ngrx/effects": "^21.0.0",
@@ -889,11 +889,11 @@ type DbxColorTone = number;
889
889
  * @example
890
890
  * ```ts
891
891
  * dbxColorBackground('primary'); // 'dbx-primary-bg'
892
- * dbxColorBackground(undefined); // 'dbx-default-bg'
892
+ * dbxColorBackground(undefined); // 'dbx-default'
893
893
  * ```
894
894
  *
895
895
  * @param color - the theme color to convert, or nullish/empty for the default class
896
- * @returns the CSS class name for the themed background (e.g., `'dbx-primary-bg'` or `'dbx-default-bg'`)
896
+ * @returns the CSS class name for the themed background (e.g., `'dbx-primary-bg'` or `'dbx-default'`)
897
897
  */
898
898
  declare function dbxColorBackground(color: Maybe<DbxThemeColor | ''>): CssClass;
899
899
  /**
@@ -3784,57 +3784,12 @@ declare class DbxSectionLayoutModule {
3784
3784
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxSectionLayoutModule>;
3785
3785
  }
3786
3786
 
3787
- /**
3788
- * Displays a numbered step with optional completion state, header text, and hint.
3789
- *
3790
- * Projects child content into a step section body below the header. When `done` is true,
3791
- * a checkmark icon is shown and the `done` CSS class is applied to the host element.
3792
- *
3793
- * **Note:** This component is currently incomplete and requires additional styling.
3794
- *
3795
- * @example
3796
- * ```html
3797
- * <dbx-step [step]="1" text="Create your account" hint="Fill in all required fields" [done]="accountCreated">
3798
- * <form>...</form>
3799
- * </dbx-step>
3800
- * ```
3801
- */
3802
- declare class DbxStepComponent {
3803
- /**
3804
- * Whether this step has been completed. Shows a checkmark icon when true.
3805
- */
3806
- readonly done: _angular_core.InputSignal<boolean | undefined>;
3807
- /**
3808
- * The step number displayed in the header.
3809
- */
3810
- readonly step: _angular_core.InputSignal<number | undefined>;
3811
- /**
3812
- * The main label text for this step.
3813
- */
3814
- readonly text: _angular_core.InputSignal<Maybe<string>>;
3815
- /**
3816
- * Optional hint text displayed below the step label.
3817
- */
3818
- readonly hint: _angular_core.InputSignal<Maybe<string>>;
3819
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxStepComponent, never>;
3820
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxStepComponent, "dbx-step", never, { "done": { "alias": "done"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3821
- }
3822
-
3823
- /**
3824
- * Module that exports {@link DbxStepComponent}.
3825
- *
3826
- * @deprecated Import `DbxStepComponent` directly instead.
3827
- */
3828
- declare class DbxStepLayoutModule {
3829
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxStepLayoutModule, never>;
3830
- static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxStepLayoutModule, never, [typeof DbxStepComponent], [typeof DbxStepComponent]>;
3831
- static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxStepLayoutModule>;
3832
- }
3833
-
3834
3787
  /**
3835
3788
  * Applies a themed background color to the host element based on a {@link DbxThemeColor} value.
3836
3789
  *
3837
3790
  * Optionally set {@link dbxColorTone} to control background opacity for a tonal/muted appearance.
3791
+ * When tonal mode is active, the `dbx-color-tonal` CSS class is added and a CSS rule
3792
+ * overrides the text color to the vibrant theme color (via `--dbx-bg-color-current`).
3838
3793
  *
3839
3794
  * @example
3840
3795
  * ```html
@@ -3851,17 +3806,15 @@ declare class DbxColorDirective {
3851
3806
  readonly dbxColorTone: _angular_core.InputSignal<Maybe<number>>;
3852
3807
  readonly cssClassSignal: _angular_core.Signal<string>;
3853
3808
  /**
3854
- * Sets `--dbx-color-bg-tone` on the host to control the background opacity via `color-mix` in the `-bg` class mixin.
3809
+ * Whether tonal mode is active. Adds the `dbx-color-tonal` CSS class which
3810
+ * overrides the text color to the vibrant theme color via CSS rather than
3811
+ * an inline style binding (which would conflict with `[ngStyle]`).
3855
3812
  */
3856
- readonly bgToneStyleSignal: _angular_core.Signal<string | null>;
3813
+ readonly isTonalSignal: _angular_core.Signal<boolean>;
3857
3814
  /**
3858
- * Overrides the host text color to use the vibrant theme color when tonal mode is active.
3859
- *
3860
- * Normally a `-bg` class sets the contrast color as text (e.g. white on blue).
3861
- * In tonal mode the background is semi-transparent, so white text would be unreadable.
3862
- * Instead we use `--dbx-bg-color-current` (the vibrant color set by the `-bg` mixin) as the text color.
3815
+ * Sets `--dbx-color-bg-tone` on the host to control the background opacity via `color-mix` in the `-bg` class mixin.
3863
3816
  */
3864
- readonly tonalColorSignal: _angular_core.Signal<"var(--dbx-bg-color-current)" | null>;
3817
+ readonly bgToneStyleSignal: _angular_core.Signal<string | null>;
3865
3818
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxColorDirective, never>;
3866
3819
  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>;
3867
3820
  }
@@ -4154,6 +4107,39 @@ declare class DbxDetailBlockHeaderComponent {
4154
4107
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetailBlockHeaderComponent, "dbx-detail-block-header", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "alignHeader": { "alias": "alignHeader"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
4155
4108
  }
4156
4109
 
4110
+ /**
4111
+ * A step-oriented content block that displays a numbered circle badge on the left
4112
+ * with header, hint, and projected content on the right.
4113
+ *
4114
+ * Use the `icon` input to replace the step number with a Material icon.
4115
+ * Use the `[header]` content slot for extra header-level content (like `dbx-detail-block`).
4116
+ * Use the `color` input to customize the badge color (defaults to `'primary'`).
4117
+ *
4118
+ * Use the `center` input to vertically center the badge with the content.
4119
+ *
4120
+ * @example
4121
+ * ```html
4122
+ * <dbx-step-block [step]="1" header="Create Account" hint="Fill in the registration form.">
4123
+ * <p>Enter your email and password to get started.</p>
4124
+ * </dbx-step-block>
4125
+ *
4126
+ * <dbx-step-block [step]="2" color="accent" header="Custom Header Content">
4127
+ * <span header>Extra header content</span>
4128
+ * <p>Detail content goes here.</p>
4129
+ * </dbx-step-block>
4130
+ * ```
4131
+ */
4132
+ declare class DbxStepBlockComponent {
4133
+ readonly step: _angular_core.InputSignal<number>;
4134
+ readonly icon: _angular_core.InputSignal<Maybe<string>>;
4135
+ readonly header: _angular_core.InputSignal<Maybe<string>>;
4136
+ readonly hint: _angular_core.InputSignal<Maybe<string>>;
4137
+ readonly color: _angular_core.InputSignal<DbxThemeColor>;
4138
+ readonly center: _angular_core.InputSignal<boolean>;
4139
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxStepBlockComponent, never>;
4140
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxStepBlockComponent, "dbx-step-block", never, { "step": { "alias": "step"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "center": { "alias": "center"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "*"], true, never>;
4141
+ }
4142
+
4157
4143
  /**
4158
4144
  * Adds inline spacing sized for icons, typically used to align text that sits next to icon-bearing siblings.
4159
4145
  *
@@ -4346,7 +4332,11 @@ declare function provideDbxLinkify(config: ProvideDbxLinkifyConfig): Environment
4346
4332
  *
4347
4333
  * Combines a labeled value with a theme color for rendering a styled chip.
4348
4334
  */
4349
- interface DbxChipDisplay<T = unknown> extends LabeledValue<T> {
4335
+ interface DbxChipDisplay extends LabeledValue<string> {
4336
+ /**
4337
+ * Optional unique key for tracking in `@for` loops. Falls back to `label` when not provided.
4338
+ */
4339
+ readonly key?: string;
4350
4340
  /**
4351
4341
  * Theme color applied to the chip background.
4352
4342
  */
@@ -4392,7 +4382,7 @@ declare class DbxChipDirective {
4392
4382
  *
4393
4383
  * The color from `display` is used as a fallback when `color` is not explicitly set.
4394
4384
  */
4395
- readonly display: _angular_core.InputSignal<Maybe<DbxChipDisplay<unknown>>>;
4385
+ readonly display: _angular_core.InputSignal<Maybe<DbxChipDisplay>>;
4396
4386
  /**
4397
4387
  * Background tone level for tonal appearance. Defaults to {@link DBX_CHIP_DEFAULT_TONE}.
4398
4388
  *
@@ -4408,13 +4398,11 @@ declare class DbxChipDirective {
4408
4398
  */
4409
4399
  readonly bgToneStyleSignal: _angular_core.Signal<string | null>;
4410
4400
  /**
4411
- * Overrides the host text color to use the vibrant theme color when tonal mode is active.
4412
- *
4413
- * Normally a `-bg` class sets the contrast color as text (e.g. white on blue).
4414
- * In tonal mode the background is semi-transparent, so white text would be unreadable.
4415
- * Instead we use `--dbx-bg-color-current` (the vibrant color set by the `-bg` mixin) as the text color.
4401
+ * Whether tonal mode is active (color is set and tone < 100). Adds the `dbx-color-tonal`
4402
+ * CSS class which overrides text color to the vibrant theme color via CSS rather than
4403
+ * an inline style binding (which would conflict with `[ngStyle]`).
4416
4404
  */
4417
- readonly tonalColorSignal: _angular_core.Signal<"var(--dbx-bg-color-current)" | null>;
4405
+ readonly isTonalSignal: _angular_core.Signal<boolean>;
4418
4406
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxChipDirective, never>;
4419
4407
  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>;
4420
4408
  }
@@ -4430,11 +4418,11 @@ declare class DbxChipDirective {
4430
4418
  * <dbx-chip-list [chips]="chips" [small]="true"></dbx-chip-list>
4431
4419
  * ```
4432
4420
  */
4433
- declare class DbxChipListComponent<T = unknown> {
4434
- readonly chips: _angular_core.InputSignal<Maybe<DbxChipDisplay<T>[]>>;
4421
+ declare class DbxChipListComponent {
4422
+ readonly chips: _angular_core.InputSignal<Maybe<DbxChipDisplay[]>>;
4435
4423
  readonly small: _angular_core.InputSignal<Maybe<boolean>>;
4436
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxChipListComponent<any>, never>;
4437
- 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>;
4424
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxChipListComponent, never>;
4425
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxChipListComponent, "dbx-chip-list", never, { "chips": { "alias": "chips"; "required": false; "isSignal": true; }; "small": { "alias": "small"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
4438
4426
  }
4439
4427
 
4440
4428
  /**
@@ -4442,7 +4430,11 @@ declare class DbxChipListComponent<T = unknown> {
4442
4430
  *
4443
4431
  * Extends {@link LabeledValue} for the chip label and value.
4444
4432
  */
4445
- interface TextChip<T = unknown> extends LabeledValue<T> {
4433
+ interface TextChip extends LabeledValue<string> {
4434
+ /**
4435
+ * Optional unique key for tracking in `@for` loops. Falls back to `label` when not provided.
4436
+ */
4437
+ readonly key?: string;
4446
4438
  /**
4447
4439
  * Optional tooltip shown on hover.
4448
4440
  */
@@ -4455,15 +4447,7 @@ interface TextChip<T = unknown> extends LabeledValue<T> {
4455
4447
  * Theme color applied to the chip background via {@link dbxColorBackground}.
4456
4448
  */
4457
4449
  readonly color?: Maybe<DbxThemeColor>;
4458
- /**
4459
- * @deprecated use `label` instead.
4460
- */
4461
- readonly text?: string;
4462
4450
  }
4463
- /**
4464
- * Returns the display label for a {@link TextChip}, preferring `label` over the deprecated `text` field.
4465
- */
4466
- declare function textChipLabel(chip: TextChip): string;
4467
4451
  /**
4468
4452
  * Renders a read-only list of Material chip options from an array of {@link TextChip} objects.
4469
4453
  *
@@ -4472,19 +4456,15 @@ declare function textChipLabel(chip: TextChip): string;
4472
4456
  * <dbx-text-chips [chips]="[{ label: 'Active', value: 'active', selected: true, color: 'primary' }]"></dbx-text-chips>
4473
4457
  * ```
4474
4458
  */
4475
- declare class DbxTextChipsComponent<T = unknown> {
4459
+ declare class DbxTextChipsComponent {
4476
4460
  readonly defaultSelection: _angular_core.InputSignal<Maybe<boolean>>;
4477
- readonly chips: _angular_core.InputSignal<Maybe<TextChip<T>[]>>;
4478
- /**
4479
- * Returns the display label for a chip.
4480
- */
4481
- readonly chipLabel: typeof textChipLabel;
4461
+ readonly chips: _angular_core.InputSignal<Maybe<TextChip[]>>;
4482
4462
  /**
4483
4463
  * Returns the themed background CSS class for a chip's color.
4484
4464
  */
4485
- chipColorClass(chip: TextChip<T>): string;
4486
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTextChipsComponent<any>, never>;
4487
- 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>;
4465
+ chipColorClass(chip: TextChip): string;
4466
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTextChipsComponent, never>;
4467
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxTextChipsComponent, "dbx-text-chips", never, { "defaultSelection": { "alias": "defaultSelection"; "required": false; "isSignal": true; }; "chips": { "alias": "chips"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
4488
4468
  }
4489
4469
 
4490
4470
  /**
@@ -4780,7 +4760,7 @@ declare class DbxClickToCopyTextComponent {
4780
4760
  */
4781
4761
  declare class DbxTextModule {
4782
4762
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTextModule, never>;
4783
- 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]>;
4763
+ static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxTextModule, never, [typeof DbxUnitedStatesAddressComponent, typeof DbxNumberWithLimitComponent, typeof DbxClickToCopyTextDirective, typeof DbxClickToCopyTextComponent, typeof DbxChipDirective, typeof DbxChipListComponent, typeof DbxDetailBlockComponent, typeof DbxDetailBlockHeaderComponent, typeof DbxStepBlockComponent, 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 DbxStepBlockComponent, typeof DbxLabelBlockComponent, typeof DbxLinkifyComponent, typeof DbxTextChipsComponent, typeof DbxIconSpacerDirective]>;
4784
4764
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxTextModule>;
4785
4765
  }
4786
4766
 
@@ -4802,35 +4782,35 @@ interface DbxButtonStyle {
4802
4782
  /**
4803
4783
  * Material button variant.
4804
4784
  */
4805
- readonly type?: DbxButtonType;
4785
+ readonly type?: Maybe<DbxButtonType>;
4806
4786
  /**
4807
4787
  * Progress spinner mode (determinate or indeterminate).
4808
4788
  */
4809
- readonly mode?: ProgressSpinnerMode;
4789
+ readonly mode?: Maybe<ProgressSpinnerMode>;
4810
4790
  /**
4811
4791
  * Material theme palette or custom theme color for the button.
4812
4792
  */
4813
- readonly color?: ThemePalette | DbxThemeColor;
4793
+ readonly color?: Maybe<ThemePalette | DbxThemeColor>;
4814
4794
  /**
4815
4795
  * Material theme palette or custom theme color for the loading spinner.
4816
4796
  */
4817
- readonly spinnerColor?: ThemePalette | DbxThemeColor;
4797
+ readonly spinnerColor?: Maybe<ThemePalette | DbxThemeColor>;
4818
4798
  /**
4819
4799
  * Custom CSS background color for the button.
4820
4800
  */
4821
- readonly customButtonColor?: string;
4801
+ readonly customButtonColor?: Maybe<string>;
4822
4802
  /**
4823
4803
  * Custom CSS text color for the button label.
4824
4804
  */
4825
- readonly customTextColor?: string;
4805
+ readonly customTextColor?: Maybe<string>;
4826
4806
  /**
4827
4807
  * Custom CSS color for the spinner stroke.
4828
4808
  */
4829
- readonly customSpinnerColor?: string;
4809
+ readonly customSpinnerColor?: Maybe<string>;
4830
4810
  /**
4831
4811
  * Whether to render as a floating action button (FAB).
4832
4812
  */
4833
- readonly fab?: boolean;
4813
+ readonly fab?: Maybe<boolean>;
4834
4814
  }
4835
4815
 
4836
4816
  /**
@@ -4920,6 +4900,11 @@ interface DbxProgressButtonConfig {
4920
4900
  * Whether to render as a floating action button (FAB).
4921
4901
  */
4922
4902
  readonly fab?: Maybe<boolean>;
4903
+ /**
4904
+ * Accessible label for the button, applied as `aria-label`.
4905
+ * Especially important for icon-only buttons that lack visible text.
4906
+ */
4907
+ readonly ariaLabel?: Maybe<string>;
4923
4908
  }
4924
4909
  /**
4925
4910
  * Configuration for the icon displayed inside a progress button.
@@ -5106,8 +5091,8 @@ declare class DbxButtonComponent extends AbstractDbxButtonDirective {
5106
5091
  readonly bar: _angular_core.InputSignalWithTransform<boolean, Maybe<boolean | "">>;
5107
5092
  readonly type: _angular_core.InputSignal<Maybe<DbxButtonType>>;
5108
5093
  readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
5109
- readonly color: _angular_core.InputSignal<"primary" | "accent" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | undefined>;
5110
- readonly spinnerColor: _angular_core.InputSignal<"primary" | "accent" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | undefined>;
5094
+ readonly color: _angular_core.InputSignal<Maybe<"primary" | "accent" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | undefined>>;
5095
+ readonly spinnerColor: _angular_core.InputSignal<Maybe<"primary" | "accent" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | undefined>>;
5111
5096
  readonly customButtonColor: _angular_core.InputSignal<Maybe<string>>;
5112
5097
  readonly customTextColor: _angular_core.InputSignal<Maybe<string>>;
5113
5098
  readonly customSpinnerColor: _angular_core.InputSignal<Maybe<string>>;
@@ -5120,7 +5105,7 @@ declare class DbxButtonComponent extends AbstractDbxButtonDirective {
5120
5105
  readonly fab: _angular_core.InputSignalWithTransform<boolean, Maybe<boolean | "">>;
5121
5106
  readonly allowClickPropagation: _angular_core.InputSignalWithTransform<boolean, Maybe<boolean | "">>;
5122
5107
  readonly mode: _angular_core.InputSignal<Maybe<ProgressSpinnerMode>>;
5123
- readonly typeSignal: _angular_core.Signal<DbxButtonType>;
5108
+ readonly typeSignal: _angular_core.Signal<"flat" | "icon" | "basic" | "raised" | "stroked" | "tonal">;
5124
5109
  readonly configSignal: _angular_core.Signal<DbxProgressButtonConfig>;
5125
5110
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxButtonComponent, never>;
5126
5111
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxButtonComponent, "dbx-button", never, { "bar": { "alias": "bar"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "spinnerColor": { "alias": "spinnerColor"; "required": false; "isSignal": true; }; "customButtonColor": { "alias": "customButtonColor"; "required": false; "isSignal": true; }; "customTextColor": { "alias": "customTextColor"; "required": false; "isSignal": true; }; "customSpinnerColor": { "alias": "customSpinnerColor"; "required": false; "isSignal": true; }; "basic": { "alias": "basic"; "required": false; "isSignal": true; }; "tonal": { "alias": "tonal"; "required": false; "isSignal": true; }; "raised": { "alias": "raised"; "required": false; "isSignal": true; }; "stroked": { "alias": "stroked"; "required": false; "isSignal": true; }; "flat": { "alias": "flat"; "required": false; "isSignal": true; }; "iconOnly": { "alias": "iconOnly"; "required": false; "isSignal": true; }; "fab": { "alias": "fab"; "required": false; "isSignal": true; }; "allowClickPropagation": { "alias": "allowClickPropagation"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
@@ -9262,6 +9247,7 @@ declare class DbxFileUploadButtonComponent extends AbstractDbxFileUploadComponen
9262
9247
  readonly fileInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
9263
9248
  readonly text: _angular_core.InputSignal<Maybe<string>>;
9264
9249
  readonly icon: _angular_core.InputSignal<Maybe<string>>;
9250
+ readonly ariaLabel: _angular_core.InputSignal<Maybe<string>>;
9265
9251
  readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
9266
9252
  readonly filesChanged: _angular_core.OutputEmitterRef<DbxFileUploadFilesChangedEvent>;
9267
9253
  readonly buttonAcceptSignal: _angular_core.Signal<string | undefined>;
@@ -9280,7 +9266,7 @@ declare class DbxFileUploadButtonComponent extends AbstractDbxFileUploadComponen
9280
9266
  openInput(): void;
9281
9267
  fileInputChanged(): void;
9282
9268
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFileUploadButtonComponent, never>;
9283
- 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>;
9269
+ 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>;
9284
9270
  }
9285
9271
 
9286
9272
  /**
@@ -9511,5 +9497,5 @@ declare class DbxWebModule {
9511
9497
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxWebModule>;
9512
9498
  }
9513
9499
 
9514
- 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 };
9500
+ 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, 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, 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 };
9515
9501
  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 };
@@ -1,43 +0,0 @@
1
- @use '../../style/theming';
2
-
3
- // MARK: Variables
4
-
5
- // MARK: Mixin
6
- @mixin core() {
7
- }
8
-
9
- @mixin theme($theme-config) {
10
- }
11
-
12
- /*
13
- .step-section {
14
- margin: 12px 0;
15
-
16
- &.done {
17
- .text {
18
- // text-decoration: line-through;
19
- }
20
- }
21
-
22
- .step-section-header {
23
- margin-bottom: 8px;
24
-
25
- .step {
26
- font-weight: bold;
27
- font-size: 1.3em;
28
- margin-right: 8px;
29
- }
30
-
31
- .hint {
32
- opacity: $hint-opacity;
33
- }
34
-
35
- .done-check {
36
- color: green;
37
- }
38
- }
39
-
40
- .step-section-content {}
41
-
42
- }
43
- */