@dereekb/dbx-web 13.6.2 → 13.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/dereekb-dbx-web-table.mjs +0 -1
- package/fesm2022/dereekb-dbx-web-table.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web.mjs +87 -31
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/lib/button/_button.scss +24 -0
- package/lib/button/progress/bar.button.component.scss +48 -8
- package/lib/button/progress/spinner.button.component.scss +15 -6
- package/lib/layout/text/_text.scss +1 -1
- package/package.json +6 -6
- package/types/dereekb-dbx-web.d.ts +63 -8
package/lib/button/_button.scss
CHANGED
|
@@ -17,6 +17,30 @@ $big-button-height: 46px; // 33% bigger
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
// Neutral hover/pressed/focus state layer instead of the primary-colored default.
|
|
21
|
+
// Apply to buttons with custom background colors where the primary tint looks wrong.
|
|
22
|
+
.dbx-button-neutral-interaction-color {
|
|
23
|
+
.mdc-button,
|
|
24
|
+
&.mdc-button {
|
|
25
|
+
$neutral: var(--mat-sys-on-surface, #000);
|
|
26
|
+
|
|
27
|
+
--mat-button-text-state-layer-color: #{$neutral};
|
|
28
|
+
--mat-button-text-pressed-state-layer-color: #{$neutral};
|
|
29
|
+
--mat-button-text-focus-state-layer-color: #{$neutral};
|
|
30
|
+
--mat-button-text-ripple-color: color-mix(in srgb, #{$neutral} 12%, transparent);
|
|
31
|
+
--mat-button-protected-state-layer-color: #{$neutral};
|
|
32
|
+
--mat-button-protected-pressed-state-layer-color: #{$neutral};
|
|
33
|
+
--mat-button-protected-focus-state-layer-color: #{$neutral};
|
|
34
|
+
--mat-button-protected-ripple-color: color-mix(in srgb, #{$neutral} 12%, transparent);
|
|
35
|
+
--mat-button-outlined-state-layer-color: #{$neutral};
|
|
36
|
+
--mat-button-outlined-pressed-state-layer-color: #{$neutral};
|
|
37
|
+
--mat-button-outlined-focus-state-layer-color: #{$neutral};
|
|
38
|
+
--mat-button-filled-state-layer-color: #{$neutral};
|
|
39
|
+
--mat-button-filled-pressed-state-layer-color: #{$neutral};
|
|
40
|
+
--mat-button-filled-focus-state-layer-color: #{$neutral};
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
20
44
|
.dbx-button-wide {
|
|
21
45
|
.dbx-button {
|
|
22
46
|
min-width: 120px;
|
|
@@ -4,15 +4,23 @@ $bar-button-progress-bar-height-default: 5px;
|
|
|
4
4
|
> button.dbx-progress-bar-button.mdc-button.mat-mdc-button {
|
|
5
5
|
overflow: hidden; // clip progress bar to rounded corners
|
|
6
6
|
|
|
7
|
+
// normalize icon offset to match spinner button
|
|
8
|
+
--mat-button-text-icon-offset: 0px;
|
|
9
|
+
--mat-button-outlined-icon-offset: 0px;
|
|
10
|
+
--mat-button-protected-icon-offset: 0px;
|
|
11
|
+
--mat-button-filled-icon-offset: 0px;
|
|
12
|
+
--mat-button-tonal-icon-offset: 0px;
|
|
13
|
+
|
|
7
14
|
&.working {
|
|
8
15
|
cursor: not-allowed;
|
|
9
16
|
}
|
|
10
17
|
&.fullWidth {
|
|
11
18
|
width: 100%;
|
|
12
19
|
}
|
|
20
|
+
|
|
21
|
+
// ::ng-deep required for Material's internal .mdc-button__label element
|
|
13
22
|
> ::ng-deep .mdc-button__label {
|
|
14
23
|
position: unset; // required so the bar can expand fully
|
|
15
|
-
|
|
16
24
|
display: flex;
|
|
17
25
|
align-items: center;
|
|
18
26
|
|
|
@@ -23,15 +31,47 @@ $bar-button-progress-bar-height-default: 5px;
|
|
|
23
31
|
--mat-progress-bar-track-height: var(--dbx-progress-bar-button-height, #{$bar-button-progress-bar-height-default});
|
|
24
32
|
--mat-progress-bar-active-indicator-height: var(--dbx-progress-bar-button-height, #{$bar-button-progress-bar-height-default});
|
|
25
33
|
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// icon and text styles — outside ::ng-deep for proper view encapsulation
|
|
37
|
+
mat-icon.mat-button-icon {
|
|
38
|
+
padding-right: 5px;
|
|
39
|
+
|
|
40
|
+
font-size: 1.125rem;
|
|
41
|
+
height: 1.125rem;
|
|
42
|
+
width: 1.125rem;
|
|
43
|
+
|
|
44
|
+
margin-right: var(--mat-button-protected-icon-spacing, 8px);
|
|
45
|
+
|
|
46
|
+
&.is-mat-icon {
|
|
47
|
+
position: relative;
|
|
48
|
+
}
|
|
26
49
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
font-size: 18px;
|
|
31
|
-
position: relative;
|
|
32
|
-
top: 3px;
|
|
33
|
-
}
|
|
50
|
+
&.working {
|
|
51
|
+
opacity: 0;
|
|
52
|
+
transition: opacity 0.3s ease-in-out;
|
|
34
53
|
}
|
|
35
54
|
}
|
|
55
|
+
|
|
56
|
+
span {
|
|
57
|
+
transition: opacity 0.3s ease-in-out;
|
|
58
|
+
|
|
59
|
+
&.working {
|
|
60
|
+
opacity: 0;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// echo overlay icon — centered within the button
|
|
65
|
+
.echo-overlay-icon {
|
|
66
|
+
position: absolute;
|
|
67
|
+
inset: 0;
|
|
68
|
+
margin: 0;
|
|
69
|
+
width: 100%;
|
|
70
|
+
height: 100%;
|
|
71
|
+
display: flex;
|
|
72
|
+
align-items: center;
|
|
73
|
+
justify-content: center;
|
|
74
|
+
opacity: 1;
|
|
75
|
+
}
|
|
36
76
|
}
|
|
37
77
|
}
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
&.mat-mdc-button.mat-mdc-icon-button {
|
|
19
19
|
// icon button fixes
|
|
20
20
|
min-width: unset;
|
|
21
|
+
width: var(--mat-icon-button-state-layer-size, 36px);
|
|
22
|
+
padding: 0;
|
|
21
23
|
--mat-icon-button-icon-size: unset;
|
|
22
24
|
--mat-text-button-with-icon-horizontal-padding: 0px;
|
|
23
25
|
--mat-icon-button-state-layer-size: 36px;
|
|
@@ -55,12 +57,6 @@
|
|
|
55
57
|
}
|
|
56
58
|
}
|
|
57
59
|
|
|
58
|
-
// mat-spinners marked with dbx-progress-spinner-custom should allow the stroke to be inherited.
|
|
59
|
-
.dbx-progress-spinner-custom.mat-progress-spinner.mat-accent circle,
|
|
60
|
-
.dbx-progress-spinner-custom.mat-mdc-progress-spinner.mat-accent circle {
|
|
61
|
-
stroke: unset !important;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
60
|
.button-text {
|
|
65
61
|
opacity: 1;
|
|
66
62
|
transition: opacity 0.3s ease-in-out;
|
|
@@ -89,5 +85,18 @@
|
|
|
89
85
|
opacity: 0;
|
|
90
86
|
}
|
|
91
87
|
}
|
|
88
|
+
|
|
89
|
+
// echo overlay icon — mirrors the spinner: absolutely positioned, centered in the button
|
|
90
|
+
.echo-overlay-icon {
|
|
91
|
+
position: absolute;
|
|
92
|
+
inset: 0;
|
|
93
|
+
margin: 0;
|
|
94
|
+
width: 100%;
|
|
95
|
+
height: 100%;
|
|
96
|
+
display: flex;
|
|
97
|
+
align-items: center;
|
|
98
|
+
justify-content: center;
|
|
99
|
+
opacity: 1;
|
|
100
|
+
}
|
|
92
101
|
}
|
|
93
102
|
}
|
|
@@ -15,7 +15,7 @@ $dbx-detail-block-big-header-icon-size: 18px;
|
|
|
15
15
|
|
|
16
16
|
$dbx-step-block-badge-size: 32px;
|
|
17
17
|
$dbx-step-block-gap: 16px;
|
|
18
|
-
$dbx-step-block-padding:
|
|
18
|
+
$dbx-step-block-padding: 16px;
|
|
19
19
|
$dbx-step-block-badge-font-size: 14px;
|
|
20
20
|
$dbx-step-block-badge-icon-size: 18px;
|
|
21
21
|
$dbx-step-block-header-font-weight: 500;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web",
|
|
3
|
-
"version": "13.6.
|
|
3
|
+
"version": "13.6.4",
|
|
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.4",
|
|
12
|
+
"@dereekb/date": "13.6.4",
|
|
13
|
+
"@dereekb/dbx-core": "13.6.4",
|
|
14
|
+
"@dereekb/rxjs": "13.6.4",
|
|
15
|
+
"@dereekb/util": "13.6.4",
|
|
16
16
|
"@ngbracket/ngx-layout": "^21.0.0",
|
|
17
17
|
"@ngrx/component-store": "^21.0.0",
|
|
18
18
|
"@ngrx/effects": "^21.0.0",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _dereekb_dbx_core from '@dereekb/dbx-core';
|
|
2
|
-
import { DbxActionWorkOrWorkProgress, DbxActionWorkProgress, DbxActionContextStoreSourceInstance, DbxActionContextSourceReference, DbxActionSuccessHandlerFunction, AbstractTransitionWatcherDirective, AbstractDbxButtonDirective, AuthUserIdentifier, DbxInjectionComponentConfig, SegueRef, ClickableAnchor, SegueRefOrSegueRefRouterLink, DbxButtonWorking, SimpleStorageAccessorFactory, StorageAccessor, DbxButtonDisplay, AbstractDbxAnchorDirective, ClickableIconAnchorLink, ClickableAnchorLink, DbxInjectionTemplateConfig, ClickableAnchorLinkTree, ExpandedClickableAnchorLinkTree, AbstractTransitionDirective, ClickableAnchorLinkSegueRef, AbstractIfDirective, AbstractDbxActionValueGetterDirective, FilterSourceDirective, ClickablePartialFilterPreset, AbstractDbxActionHandlerDirective, ClickableFilterPresetOrPartialPreset, ClickableFilterPreset, DbxButtonInterceptor, DbxButton } from '@dereekb/dbx-core';
|
|
2
|
+
import { DbxActionWorkOrWorkProgress, DbxActionWorkProgress, DbxActionContextStoreSourceInstance, DbxActionContextSourceReference, DbxActionSuccessHandlerFunction, AbstractTransitionWatcherDirective, AbstractDbxButtonDirective, AuthUserIdentifier, DbxInjectionComponentConfig, SegueRef, ClickableAnchor, SegueRefOrSegueRefRouterLink, DbxButtonWorking, DbxButtonEcho, SimpleStorageAccessorFactory, StorageAccessor, DbxButtonDisplay, AbstractDbxAnchorDirective, ClickableIconAnchorLink, ClickableAnchorLink, DbxInjectionTemplateConfig, ClickableAnchorLinkTree, ExpandedClickableAnchorLinkTree, AbstractTransitionDirective, ClickableAnchorLinkSegueRef, AbstractIfDirective, AbstractDbxActionValueGetterDirective, FilterSourceDirective, ClickablePartialFilterPreset, AbstractDbxActionHandlerDirective, ClickableFilterPresetOrPartialPreset, ClickableFilterPreset, DbxButtonInterceptor, DbxButton } from '@dereekb/dbx-core';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
4
|
import { Signal, ElementRef, AfterViewInit, InjectionToken, Type, OnInit, OnDestroy, ViewContainerRef, Provider, Injector, TrackByFunction, OutputEmitterRef, OutputRef, EnvironmentProviders, TemplateRef } from '@angular/core';
|
|
5
5
|
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
@@ -769,6 +769,10 @@ declare class DbxActionModule {
|
|
|
769
769
|
* Lightweight button that renders as either an icon-only Material icon button or a text button
|
|
770
770
|
* with an icon prefix, depending on whether text is provided.
|
|
771
771
|
*
|
|
772
|
+
* @deprecated Use `dbx-button` instead. For icon-only buttons use `<dbx-button icon="settings" iconOnly>`.
|
|
773
|
+
* For icon+text buttons use `<dbx-button icon="settings" text="Label">`. The `dbx-button` component
|
|
774
|
+
* supports all the same inputs plus working/loading states, colors, and button style variants.
|
|
775
|
+
*
|
|
772
776
|
* @example
|
|
773
777
|
* ```html
|
|
774
778
|
* <dbx-icon-button icon="settings" (buttonClick)="openSettings()"></dbx-icon-button>
|
|
@@ -785,7 +789,7 @@ declare class DbxIconButtonComponent extends AbstractDbxButtonDirective {
|
|
|
785
789
|
}
|
|
786
790
|
|
|
787
791
|
/**
|
|
788
|
-
* @deprecated
|
|
792
|
+
* @deprecated Use `dbx-button` instead of `dbx-icon-button`. See {@link DbxIconButtonComponent} for migration guidance.
|
|
789
793
|
*/
|
|
790
794
|
declare class DbxIconButtonModule {
|
|
791
795
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxIconButtonModule, never>;
|
|
@@ -4107,6 +4111,30 @@ declare class DbxDetailBlockHeaderComponent {
|
|
|
4107
4111
|
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>;
|
|
4108
4112
|
}
|
|
4109
4113
|
|
|
4114
|
+
/**
|
|
4115
|
+
* Configuration object for {@link DbxStepBlockComponent}.
|
|
4116
|
+
*
|
|
4117
|
+
* Pass via the `config` input as an alternative to setting individual inputs.
|
|
4118
|
+
* Individual inputs take precedence over config values.
|
|
4119
|
+
*
|
|
4120
|
+
* @example
|
|
4121
|
+
* ```typescript
|
|
4122
|
+
* const stepConfig: DbxStepBlockComponentConfig = {
|
|
4123
|
+
* step: 1,
|
|
4124
|
+
* header: 'Create Account',
|
|
4125
|
+
* hint: 'Fill in the registration form.',
|
|
4126
|
+
* color: 'primary'
|
|
4127
|
+
* };
|
|
4128
|
+
* ```
|
|
4129
|
+
*/
|
|
4130
|
+
interface DbxStepBlockComponentConfig {
|
|
4131
|
+
readonly step?: Maybe<number>;
|
|
4132
|
+
readonly icon?: Maybe<string>;
|
|
4133
|
+
readonly header?: Maybe<string>;
|
|
4134
|
+
readonly hint?: Maybe<string>;
|
|
4135
|
+
readonly color?: Maybe<DbxThemeColor>;
|
|
4136
|
+
readonly center?: Maybe<boolean>;
|
|
4137
|
+
}
|
|
4110
4138
|
/**
|
|
4111
4139
|
* A step-oriented content block that displays a numbered circle badge on the left
|
|
4112
4140
|
* with header, hint, and projected content on the right.
|
|
@@ -4117,12 +4145,19 @@ declare class DbxDetailBlockHeaderComponent {
|
|
|
4117
4145
|
*
|
|
4118
4146
|
* Use the `center` input to vertically center the badge with the content.
|
|
4119
4147
|
*
|
|
4148
|
+
* Accepts either individual inputs or a single `config` object. Individual inputs
|
|
4149
|
+
* take precedence over config values when both are provided.
|
|
4150
|
+
*
|
|
4120
4151
|
* @example
|
|
4121
4152
|
* ```html
|
|
4122
4153
|
* <dbx-step-block [step]="1" header="Create Account" hint="Fill in the registration form.">
|
|
4123
4154
|
* <p>Enter your email and password to get started.</p>
|
|
4124
4155
|
* </dbx-step-block>
|
|
4125
4156
|
*
|
|
4157
|
+
* <dbx-step-block [config]="stepConfig">
|
|
4158
|
+
* <p>Content using a config object.</p>
|
|
4159
|
+
* </dbx-step-block>
|
|
4160
|
+
*
|
|
4126
4161
|
* <dbx-step-block [step]="2" color="accent" header="Custom Header Content">
|
|
4127
4162
|
* <span header>Extra header content</span>
|
|
4128
4163
|
* <p>Detail content goes here.</p>
|
|
@@ -4130,14 +4165,21 @@ declare class DbxDetailBlockHeaderComponent {
|
|
|
4130
4165
|
* ```
|
|
4131
4166
|
*/
|
|
4132
4167
|
declare class DbxStepBlockComponent {
|
|
4133
|
-
readonly
|
|
4168
|
+
readonly config: _angular_core.InputSignal<Maybe<DbxStepBlockComponentConfig>>;
|
|
4169
|
+
readonly step: _angular_core.InputSignal<Maybe<number>>;
|
|
4134
4170
|
readonly icon: _angular_core.InputSignal<Maybe<string>>;
|
|
4135
4171
|
readonly header: _angular_core.InputSignal<Maybe<string>>;
|
|
4136
4172
|
readonly hint: _angular_core.InputSignal<Maybe<string>>;
|
|
4137
|
-
readonly color: _angular_core.InputSignal<DbxThemeColor
|
|
4138
|
-
readonly center: _angular_core.InputSignal<boolean
|
|
4173
|
+
readonly color: _angular_core.InputSignal<Maybe<DbxThemeColor>>;
|
|
4174
|
+
readonly center: _angular_core.InputSignal<Maybe<boolean>>;
|
|
4175
|
+
readonly stepSignal: _angular_core.Signal<number>;
|
|
4176
|
+
readonly iconSignal: _angular_core.Signal<Maybe<string>>;
|
|
4177
|
+
readonly headerSignal: _angular_core.Signal<Maybe<string>>;
|
|
4178
|
+
readonly hintSignal: _angular_core.Signal<Maybe<string>>;
|
|
4179
|
+
readonly colorSignal: _angular_core.Signal<"primary" | "accent" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled">;
|
|
4180
|
+
readonly centerSignal: _angular_core.Signal<boolean>;
|
|
4139
4181
|
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>;
|
|
4182
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxStepBlockComponent, "dbx-step-block", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "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
4183
|
}
|
|
4142
4184
|
|
|
4143
4185
|
/**
|
|
@@ -4905,6 +4947,11 @@ interface DbxProgressButtonConfig {
|
|
|
4905
4947
|
* Especially important for icon-only buttons that lack visible text.
|
|
4906
4948
|
*/
|
|
4907
4949
|
readonly ariaLabel?: Maybe<string>;
|
|
4950
|
+
/**
|
|
4951
|
+
* Active button echo. When set, the button's text/icon fade out (preserving width)
|
|
4952
|
+
* and a centered echo icon overlay appears, mirroring the spinner working animation.
|
|
4953
|
+
*/
|
|
4954
|
+
readonly buttonEcho?: Maybe<DbxButtonEcho>;
|
|
4908
4955
|
}
|
|
4909
4956
|
/**
|
|
4910
4957
|
* Configuration for the icon displayed inside a progress button.
|
|
@@ -4976,6 +5023,14 @@ declare abstract class AbstractProgressButtonDirective {
|
|
|
4976
5023
|
readonly buttonTypeAttributeSignal: Signal<Maybe<string>>;
|
|
4977
5024
|
readonly buttonDisabledSignal: Signal<Maybe<boolean>>;
|
|
4978
5025
|
readonly showProgressSignal: Signal<boolean>;
|
|
5026
|
+
/**
|
|
5027
|
+
* Whether a button echo overlay is active (iconOnly echo mode).
|
|
5028
|
+
*/
|
|
5029
|
+
readonly echoActiveSignal: Signal<boolean>;
|
|
5030
|
+
/**
|
|
5031
|
+
* Whether button content should be hidden via opacity (working spinner or echo overlay active).
|
|
5032
|
+
*/
|
|
5033
|
+
readonly hideContentSignal: Signal<boolean>;
|
|
4979
5034
|
/**
|
|
4980
5035
|
* When true, the click handler will not call `stopImmediatePropagation()`,
|
|
4981
5036
|
* allowing the click event to continue bubbling. Needed for components like
|
|
@@ -5025,7 +5080,7 @@ declare class DbxProgressSpinnerButtonComponent extends AbstractProgressButtonDi
|
|
|
5025
5080
|
readonly showTextButtonIconSignal: _angular_core.Signal<false | Maybe<_dereekb_dbx_web.DbxProgressButtonIcon>>;
|
|
5026
5081
|
readonly showIconSignal: _angular_core.Signal<boolean | _dereekb_util.MaybeNot>;
|
|
5027
5082
|
readonly customSpinnerStyleSignal: _angular_core.Signal<{
|
|
5028
|
-
|
|
5083
|
+
'--mat-progress-spinner-active-indicator-color': string;
|
|
5029
5084
|
} | undefined>;
|
|
5030
5085
|
readonly customSpinnerStyleClassSignal: _angular_core.Signal<{
|
|
5031
5086
|
'dbx-progress-spinner-custom': boolean;
|
|
@@ -9498,4 +9553,4 @@ declare class DbxWebModule {
|
|
|
9498
9553
|
}
|
|
9499
9554
|
|
|
9500
9555
|
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 };
|
|
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 };
|
|
9556
|
+
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, DbxStepBlockComponentConfig, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, DbxThemeColor, DbxThemeColorExtra, DbxThemeColorExtraSecondary, DbxThemeColorMain, DbxThemeColorMainOrExtra, DbxTwoColumnViewState, DbxValueAsListItem, DbxValueListAccordionViewConfig, DbxValueListGridItemViewGridSizeConfig, DbxValueListGridViewConfig, DbxValueListItem, DbxValueListItemConfig, DbxValueListItemDecisionFunction, DbxValueListItemGroup, DbxValueListViewConfig, DbxValueListViewGroupValuesFunction, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebFilePreviewServicePreviewFunction, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FullDbxPopoverComponentConfig, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, TextChip, TwoColumnsState };
|