@dereekb/dbx-web 13.6.0 → 13.6.2
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/lib/layout/_layout.scss
CHANGED
|
@@ -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
|
}
|
|
@@ -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.6.
|
|
3
|
+
"version": "13.6.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "21.2.3",
|
|
6
6
|
"@angular/common": "21.2.3",
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
"@angular/forms": "21.2.3",
|
|
9
9
|
"@angular/material": "21.2.3",
|
|
10
10
|
"@angular/platform-browser": "21.2.3",
|
|
11
|
-
"@dereekb/browser": "13.6.
|
|
12
|
-
"@dereekb/date": "13.6.
|
|
13
|
-
"@dereekb/dbx-core": "13.6.
|
|
14
|
-
"@dereekb/rxjs": "13.6.
|
|
15
|
-
"@dereekb/util": "13.6.
|
|
11
|
+
"@dereekb/browser": "13.6.2",
|
|
12
|
+
"@dereekb/date": "13.6.2",
|
|
13
|
+
"@dereekb/dbx-core": "13.6.2",
|
|
14
|
+
"@dereekb/rxjs": "13.6.2",
|
|
15
|
+
"@dereekb/util": "13.6.2",
|
|
16
16
|
"@ngbracket/ngx-layout": "^21.0.0",
|
|
17
17
|
"@ngrx/component-store": "^21.0.0",
|
|
18
18
|
"@ngrx/effects": "^21.0.0",
|
|
@@ -3784,53 +3784,6 @@ 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
|
*
|
|
@@ -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
|
|
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
|
|
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
|
*
|
|
@@ -4428,11 +4418,11 @@ declare class DbxChipDirective {
|
|
|
4428
4418
|
* <dbx-chip-list [chips]="chips" [small]="true"></dbx-chip-list>
|
|
4429
4419
|
* ```
|
|
4430
4420
|
*/
|
|
4431
|
-
declare class DbxChipListComponent
|
|
4432
|
-
readonly chips: _angular_core.InputSignal<Maybe<DbxChipDisplay
|
|
4421
|
+
declare class DbxChipListComponent {
|
|
4422
|
+
readonly chips: _angular_core.InputSignal<Maybe<DbxChipDisplay[]>>;
|
|
4433
4423
|
readonly small: _angular_core.InputSignal<Maybe<boolean>>;
|
|
4434
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxChipListComponent
|
|
4435
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxChipListComponent
|
|
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>;
|
|
4436
4426
|
}
|
|
4437
4427
|
|
|
4438
4428
|
/**
|
|
@@ -4440,7 +4430,11 @@ declare class DbxChipListComponent<T = unknown> {
|
|
|
4440
4430
|
*
|
|
4441
4431
|
* Extends {@link LabeledValue} for the chip label and value.
|
|
4442
4432
|
*/
|
|
4443
|
-
interface TextChip
|
|
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;
|
|
4444
4438
|
/**
|
|
4445
4439
|
* Optional tooltip shown on hover.
|
|
4446
4440
|
*/
|
|
@@ -4453,15 +4447,7 @@ interface TextChip<T = unknown> extends LabeledValue<T> {
|
|
|
4453
4447
|
* Theme color applied to the chip background via {@link dbxColorBackground}.
|
|
4454
4448
|
*/
|
|
4455
4449
|
readonly color?: Maybe<DbxThemeColor>;
|
|
4456
|
-
/**
|
|
4457
|
-
* @deprecated use `label` instead.
|
|
4458
|
-
*/
|
|
4459
|
-
readonly text?: string;
|
|
4460
4450
|
}
|
|
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;
|
|
4465
4451
|
/**
|
|
4466
4452
|
* Renders a read-only list of Material chip options from an array of {@link TextChip} objects.
|
|
4467
4453
|
*
|
|
@@ -4470,19 +4456,15 @@ declare function textChipLabel(chip: TextChip): string;
|
|
|
4470
4456
|
* <dbx-text-chips [chips]="[{ label: 'Active', value: 'active', selected: true, color: 'primary' }]"></dbx-text-chips>
|
|
4471
4457
|
* ```
|
|
4472
4458
|
*/
|
|
4473
|
-
declare class DbxTextChipsComponent
|
|
4459
|
+
declare class DbxTextChipsComponent {
|
|
4474
4460
|
readonly defaultSelection: _angular_core.InputSignal<Maybe<boolean>>;
|
|
4475
|
-
readonly chips: _angular_core.InputSignal<Maybe<TextChip
|
|
4476
|
-
/**
|
|
4477
|
-
* Returns the display label for a chip.
|
|
4478
|
-
*/
|
|
4479
|
-
readonly chipLabel: typeof textChipLabel;
|
|
4461
|
+
readonly chips: _angular_core.InputSignal<Maybe<TextChip[]>>;
|
|
4480
4462
|
/**
|
|
4481
4463
|
* Returns the themed background CSS class for a chip's color.
|
|
4482
4464
|
*/
|
|
4483
|
-
chipColorClass(chip: TextChip
|
|
4484
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTextChipsComponent
|
|
4485
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxTextChipsComponent
|
|
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>;
|
|
4486
4468
|
}
|
|
4487
4469
|
|
|
4488
4470
|
/**
|
|
@@ -4778,7 +4760,7 @@ declare class DbxClickToCopyTextComponent {
|
|
|
4778
4760
|
*/
|
|
4779
4761
|
declare class DbxTextModule {
|
|
4780
4762
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTextModule, never>;
|
|
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]>;
|
|
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]>;
|
|
4782
4764
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxTextModule>;
|
|
4783
4765
|
}
|
|
4784
4766
|
|
|
@@ -4800,35 +4782,35 @@ interface DbxButtonStyle {
|
|
|
4800
4782
|
/**
|
|
4801
4783
|
* Material button variant.
|
|
4802
4784
|
*/
|
|
4803
|
-
readonly type?: DbxButtonType
|
|
4785
|
+
readonly type?: Maybe<DbxButtonType>;
|
|
4804
4786
|
/**
|
|
4805
4787
|
* Progress spinner mode (determinate or indeterminate).
|
|
4806
4788
|
*/
|
|
4807
|
-
readonly mode?: ProgressSpinnerMode
|
|
4789
|
+
readonly mode?: Maybe<ProgressSpinnerMode>;
|
|
4808
4790
|
/**
|
|
4809
4791
|
* Material theme palette or custom theme color for the button.
|
|
4810
4792
|
*/
|
|
4811
|
-
readonly color?: ThemePalette | DbxThemeColor
|
|
4793
|
+
readonly color?: Maybe<ThemePalette | DbxThemeColor>;
|
|
4812
4794
|
/**
|
|
4813
4795
|
* Material theme palette or custom theme color for the loading spinner.
|
|
4814
4796
|
*/
|
|
4815
|
-
readonly spinnerColor?: ThemePalette | DbxThemeColor
|
|
4797
|
+
readonly spinnerColor?: Maybe<ThemePalette | DbxThemeColor>;
|
|
4816
4798
|
/**
|
|
4817
4799
|
* Custom CSS background color for the button.
|
|
4818
4800
|
*/
|
|
4819
|
-
readonly customButtonColor?: string
|
|
4801
|
+
readonly customButtonColor?: Maybe<string>;
|
|
4820
4802
|
/**
|
|
4821
4803
|
* Custom CSS text color for the button label.
|
|
4822
4804
|
*/
|
|
4823
|
-
readonly customTextColor?: string
|
|
4805
|
+
readonly customTextColor?: Maybe<string>;
|
|
4824
4806
|
/**
|
|
4825
4807
|
* Custom CSS color for the spinner stroke.
|
|
4826
4808
|
*/
|
|
4827
|
-
readonly customSpinnerColor?: string
|
|
4809
|
+
readonly customSpinnerColor?: Maybe<string>;
|
|
4828
4810
|
/**
|
|
4829
4811
|
* Whether to render as a floating action button (FAB).
|
|
4830
4812
|
*/
|
|
4831
|
-
readonly fab?: boolean
|
|
4813
|
+
readonly fab?: Maybe<boolean>;
|
|
4832
4814
|
}
|
|
4833
4815
|
|
|
4834
4816
|
/**
|
|
@@ -5109,8 +5091,8 @@ declare class DbxButtonComponent extends AbstractDbxButtonDirective {
|
|
|
5109
5091
|
readonly bar: _angular_core.InputSignalWithTransform<boolean, Maybe<boolean | "">>;
|
|
5110
5092
|
readonly type: _angular_core.InputSignal<Maybe<DbxButtonType>>;
|
|
5111
5093
|
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
5112
|
-
readonly color: _angular_core.InputSignal<"primary" | "accent" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | undefined
|
|
5113
|
-
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>>;
|
|
5114
5096
|
readonly customButtonColor: _angular_core.InputSignal<Maybe<string>>;
|
|
5115
5097
|
readonly customTextColor: _angular_core.InputSignal<Maybe<string>>;
|
|
5116
5098
|
readonly customSpinnerColor: _angular_core.InputSignal<Maybe<string>>;
|
|
@@ -5123,7 +5105,7 @@ declare class DbxButtonComponent extends AbstractDbxButtonDirective {
|
|
|
5123
5105
|
readonly fab: _angular_core.InputSignalWithTransform<boolean, Maybe<boolean | "">>;
|
|
5124
5106
|
readonly allowClickPropagation: _angular_core.InputSignalWithTransform<boolean, Maybe<boolean | "">>;
|
|
5125
5107
|
readonly mode: _angular_core.InputSignal<Maybe<ProgressSpinnerMode>>;
|
|
5126
|
-
readonly typeSignal: _angular_core.Signal<
|
|
5108
|
+
readonly typeSignal: _angular_core.Signal<"flat" | "icon" | "basic" | "raised" | "stroked" | "tonal">;
|
|
5127
5109
|
readonly configSignal: _angular_core.Signal<DbxProgressButtonConfig>;
|
|
5128
5110
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxButtonComponent, never>;
|
|
5129
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>;
|
|
@@ -9515,5 +9497,5 @@ declare class DbxWebModule {
|
|
|
9515
9497
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxWebModule>;
|
|
9516
9498
|
}
|
|
9517
9499
|
|
|
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 };
|
|
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 };
|
|
9519
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
|
-
*/
|