@dereekb/dbx-web 13.6.17 → 13.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/dereekb-dbx-web-calendar.mjs +10 -12
- package/fesm2022/dereekb-dbx-web-calendar.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web-mapbox.mjs +94 -134
- package/fesm2022/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web-table.mjs +81 -101
- package/fesm2022/dereekb-dbx-web-table.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web.mjs +3028 -2326
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/lib/interaction/_interaction.scss +3 -0
- package/lib/interaction/detach/_detach.scss +67 -0
- package/package.json +13 -12
- package/types/dereekb-dbx-web.d.ts +363 -16
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as _dereekb_dbx_core from '@dereekb/dbx-core';
|
|
2
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
|
-
import { Signal, ElementRef, AfterViewInit, InjectionToken, Type, OnInit, OnDestroy, ViewContainerRef, Provider, Injector, TrackByFunction, OutputEmitterRef, OutputRef, EnvironmentProviders, TemplateRef } from '@angular/core';
|
|
4
|
+
import { Signal, ElementRef, AfterViewInit, InjectionToken, Type, OnInit, OnDestroy, ViewContainerRef, Provider, Injector, TrackByFunction, OutputEmitterRef, OutputRef, EnvironmentProviders, TemplateRef, ComponentRef } from '@angular/core';
|
|
5
5
|
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
6
6
|
import * as _dereekb_util from '@dereekb/util';
|
|
7
|
-
import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CharacterPrefixSuffixCleanString, DashPrefixString, CssClass, CssToken, CssTokenVar, WebsiteUrlWithPrefix, WebsitePath, Pixels, PixelsString, DecisionFunction, ModifierMap, ArrayOrValue, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, Destroyable, UnitedStatesAddressWithContact, LabeledValue, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, ContentTypeMimeType, MimeTypeWithoutParameters, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix } from '@dereekb/util';
|
|
7
|
+
import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CharacterPrefixSuffixCleanString, DashPrefixString, CssClass, CssToken, CssTokenVar, WebsiteUrlWithPrefix, WebsitePath, Pixels, PixelsString, DecisionFunction, ModifierMap, ArrayOrValue, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, HtmlHeaderLevel, Destroyable, UnitedStatesAddressWithContact, LabeledValue, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, ContentTypeMimeType, MimeTypeWithoutParameters, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix } from '@dereekb/util';
|
|
8
8
|
import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
|
|
9
9
|
import * as dist_packages_dbx_core_types_dereekb_dbx_core from 'dist/packages/dbx-core/types/dereekb-dbx-core';
|
|
10
10
|
import * as rxjs from 'rxjs';
|
|
@@ -59,7 +59,7 @@ declare class DbxBasicLoadingComponent {
|
|
|
59
59
|
readonly customLoading: Signal<Maybe<ElementRef<any>>>;
|
|
60
60
|
readonly diameter: _angular_core.InputSignal<Maybe<number>>;
|
|
61
61
|
readonly mode: _angular_core.InputSignal<Maybe<"determinate" | "indeterminate" | "buffer" | "query">>;
|
|
62
|
-
readonly color: _angular_core.InputSignal<"primary" | "
|
|
62
|
+
readonly color: _angular_core.InputSignal<"default" | "primary" | "secondary" | "tertiary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "disabled" | undefined>;
|
|
63
63
|
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
64
64
|
readonly linear: _angular_core.InputSignal<Maybe<boolean>>;
|
|
65
65
|
readonly show: _angular_core.InputSignal<Maybe<boolean>>;
|
|
@@ -100,7 +100,7 @@ declare class DbxLoadingProgressComponent {
|
|
|
100
100
|
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
101
101
|
readonly linear: _angular_core.InputSignal<Maybe<boolean>>;
|
|
102
102
|
readonly mode: _angular_core.InputSignal<"determinate" | "indeterminate" | "buffer" | "query">;
|
|
103
|
-
readonly color: _angular_core.InputSignal<"primary" | "
|
|
103
|
+
readonly color: _angular_core.InputSignal<"default" | "primary" | "secondary" | "tertiary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "disabled" | undefined>;
|
|
104
104
|
readonly value: _angular_core.InputSignal<Maybe<number>>;
|
|
105
105
|
readonly bufferValue: _angular_core.InputSignal<Maybe<number>>;
|
|
106
106
|
readonly bmode: _angular_core.Signal<ProgressBarMode>;
|
|
@@ -163,7 +163,7 @@ declare class DbxLoadingComponent {
|
|
|
163
163
|
readonly show: _angular_core.InputSignal<Maybe<boolean>>;
|
|
164
164
|
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
165
165
|
readonly mode: _angular_core.InputSignal<Maybe<ProgressBarMode>>;
|
|
166
|
-
readonly color: _angular_core.InputSignal<"primary" | "
|
|
166
|
+
readonly color: _angular_core.InputSignal<"default" | "primary" | "secondary" | "tertiary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "disabled" | undefined>;
|
|
167
167
|
readonly diameter: _angular_core.InputSignal<Maybe<number>>;
|
|
168
168
|
readonly linear: _angular_core.InputSignal<Maybe<boolean>>;
|
|
169
169
|
readonly loading: _angular_core.InputSignal<Maybe<dist_packages_dbx_core_types_dereekb_dbx_core.DbxActionWorkOrWorkProgress>>;
|
|
@@ -625,7 +625,7 @@ declare class DbxActionTransitionSafetyDirective<T, O> implements OnInit, OnDest
|
|
|
625
625
|
protected readonly viewContainerRef: ViewContainerRef;
|
|
626
626
|
protected readonly dialog: MatDialog;
|
|
627
627
|
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
628
|
-
readonly safetyType$: Observable<"
|
|
628
|
+
readonly safetyType$: Observable<"none" | "auto" | "dialog">;
|
|
629
629
|
protected readonly _dbxActionTransitionSafetyUpdateEffect: _angular_core.EffectRef;
|
|
630
630
|
private _currentDialogRef?;
|
|
631
631
|
private stopWatchingTransition?;
|
|
@@ -3693,7 +3693,7 @@ declare abstract class AbstractDbxValueListViewItemComponent<T, I extends DbxVal
|
|
|
3693
3693
|
/**
|
|
3694
3694
|
* Heading level for a section header, corresponding to HTML heading elements h1 through h5.
|
|
3695
3695
|
*/
|
|
3696
|
-
type DbxSectionHeaderHType =
|
|
3696
|
+
type DbxSectionHeaderHType = Exclude<HtmlHeaderLevel, 6>;
|
|
3697
3697
|
/**
|
|
3698
3698
|
* Configuration object for a section header's display properties, including
|
|
3699
3699
|
* heading level, text, icon, hint text, and padding options.
|
|
@@ -4256,7 +4256,7 @@ declare class DbxStepBlockComponent {
|
|
|
4256
4256
|
readonly iconSignal: _angular_core.Signal<Maybe<string>>;
|
|
4257
4257
|
readonly headerSignal: _angular_core.Signal<Maybe<string>>;
|
|
4258
4258
|
readonly hintSignal: _angular_core.Signal<Maybe<string>>;
|
|
4259
|
-
readonly colorSignal: _angular_core.Signal<"primary" | "
|
|
4259
|
+
readonly colorSignal: _angular_core.Signal<"default" | "primary" | "secondary" | "tertiary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "disabled">;
|
|
4260
4260
|
readonly centerSignal: _angular_core.Signal<boolean>;
|
|
4261
4261
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxStepBlockComponent, never>;
|
|
4262
4262
|
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>;
|
|
@@ -5241,8 +5241,8 @@ declare class DbxButtonComponent extends AbstractDbxButtonDirective {
|
|
|
5241
5241
|
readonly bar: _angular_core.InputSignalWithTransform<boolean, Maybe<boolean | "">>;
|
|
5242
5242
|
readonly type: _angular_core.InputSignal<Maybe<DbxButtonType>>;
|
|
5243
5243
|
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
5244
|
-
readonly color: _angular_core.InputSignal<Maybe<"primary" | "
|
|
5245
|
-
readonly spinnerColor: _angular_core.InputSignal<Maybe<"primary" | "
|
|
5244
|
+
readonly color: _angular_core.InputSignal<Maybe<"default" | "primary" | "secondary" | "tertiary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "disabled" | undefined>>;
|
|
5245
|
+
readonly spinnerColor: _angular_core.InputSignal<Maybe<"default" | "primary" | "secondary" | "tertiary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "disabled" | undefined>>;
|
|
5246
5246
|
readonly customButtonColor: _angular_core.InputSignal<Maybe<string>>;
|
|
5247
5247
|
readonly customTextColor: _angular_core.InputSignal<Maybe<string>>;
|
|
5248
5248
|
readonly customSpinnerColor: _angular_core.InputSignal<Maybe<string>>;
|
|
@@ -7127,6 +7127,10 @@ type DbxSidenavPosition = 'start' | 'end';
|
|
|
7127
7127
|
* resolveSideNavDisplayMode(SideNavDisplayMode.ICON, new Set([SideNavDisplayMode.MOBILE, SideNavDisplayMode.FULL]));
|
|
7128
7128
|
* // => SideNavDisplayMode.MOBILE
|
|
7129
7129
|
* ```
|
|
7130
|
+
*
|
|
7131
|
+
* @param mode - The requested display mode to resolve.
|
|
7132
|
+
* @param allowedModes - Set of modes that are permitted; if null/undefined, all modes are allowed.
|
|
7133
|
+
* @returns The resolved display mode, falling back to the nearest lower allowed mode or NONE.
|
|
7130
7134
|
*/
|
|
7131
7135
|
declare function resolveSideNavDisplayMode(mode: SideNavDisplayMode, allowedModes: Maybe<Set<SideNavDisplayMode>>): SideNavDisplayMode;
|
|
7132
7136
|
|
|
@@ -7156,14 +7160,14 @@ interface DbxSidenavSidebarState {
|
|
|
7156
7160
|
declare class DbxSidenavComponent extends AbstractTransitionWatcherDirective implements OnInit {
|
|
7157
7161
|
private readonly _sidenavSub;
|
|
7158
7162
|
private readonly _screenMediaService;
|
|
7159
|
-
readonly color: _angular_core.InputSignal<"primary" | "
|
|
7163
|
+
readonly color: _angular_core.InputSignal<"default" | "primary" | "secondary" | "tertiary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "disabled" | undefined>;
|
|
7160
7164
|
readonly position: _angular_core.InputSignal<DbxSidenavPosition>;
|
|
7161
7165
|
/**
|
|
7162
7166
|
* Overrides the responsive display mode. When set, the sidenav ignores screen-width breakpoints and uses this mode instead.
|
|
7163
7167
|
*
|
|
7164
7168
|
* Set to `'mobile'` to keep the sidenav always hidden as an overlay that only opens when toggled.
|
|
7165
7169
|
*/
|
|
7166
|
-
readonly displayMode: _angular_core.InputSignal<Maybe<"full" | "
|
|
7170
|
+
readonly displayMode: _angular_core.InputSignal<Maybe<"full" | "none" | "icon" | "mobile">>;
|
|
7167
7171
|
readonly sidenav: _angular_core.Signal<MatSidenav>;
|
|
7168
7172
|
/**
|
|
7169
7173
|
* Restricts which {@link SideNavDisplayMode} values are permitted.
|
|
@@ -7176,7 +7180,7 @@ declare class DbxSidenavComponent extends AbstractTransitionWatcherDirective imp
|
|
|
7176
7180
|
* <dbx-sidenav [allowedModes]="['mobile', 'full']">
|
|
7177
7181
|
* ```
|
|
7178
7182
|
*/
|
|
7179
|
-
readonly allowedModes: _angular_core.InputSignal<Maybe<("full" | "
|
|
7183
|
+
readonly allowedModes: _angular_core.InputSignal<Maybe<("full" | "none" | "icon" | "mobile")[]>>;
|
|
7180
7184
|
readonly anchors: _angular_core.InputSignal<Maybe<ClickableAnchorLinkTree[]>>;
|
|
7181
7185
|
private readonly _allowedModes$;
|
|
7182
7186
|
readonly responsiveMode$: Observable<SideNavDisplayMode>;
|
|
@@ -8165,6 +8169,348 @@ declare class DbxHelpViewPopoverButtonComponent extends AbstractPopoverRefDirect
|
|
|
8165
8169
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxHelpViewPopoverButtonComponent, "dbx-help-view-popover-button", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8166
8170
|
}
|
|
8167
8171
|
|
|
8172
|
+
/**
|
|
8173
|
+
* Unique key used to identify a detach instance.
|
|
8174
|
+
*/
|
|
8175
|
+
type DbxDetachKey = string;
|
|
8176
|
+
/**
|
|
8177
|
+
* Default key used when no key is specified.
|
|
8178
|
+
*/
|
|
8179
|
+
declare const DBX_DETACH_DEFAULT_KEY: DbxDetachKey;
|
|
8180
|
+
/**
|
|
8181
|
+
* Possible display states for a detach instance.
|
|
8182
|
+
*/
|
|
8183
|
+
declare const DbxDetachWindowState: {
|
|
8184
|
+
/**
|
|
8185
|
+
* Content renders at an outlet location in the page.
|
|
8186
|
+
*/
|
|
8187
|
+
readonly ATTACHED: "attached";
|
|
8188
|
+
/**
|
|
8189
|
+
* Content renders in a floating overlay (via ng-overlay-container).
|
|
8190
|
+
*/
|
|
8191
|
+
readonly DETACHED: "detached";
|
|
8192
|
+
/**
|
|
8193
|
+
* Content is in the floating overlay but body is hidden (only controls visible).
|
|
8194
|
+
*/
|
|
8195
|
+
readonly MINIMIZED: "minimized";
|
|
8196
|
+
};
|
|
8197
|
+
/**
|
|
8198
|
+
* Union type of all possible detach window state values.
|
|
8199
|
+
*/
|
|
8200
|
+
type DbxDetachWindowStateType = (typeof DbxDetachWindowState)[keyof typeof DbxDetachWindowState];
|
|
8201
|
+
/**
|
|
8202
|
+
* Overlay-specific configuration for a detach instance.
|
|
8203
|
+
*/
|
|
8204
|
+
interface DbxDetachOverlayConfig {
|
|
8205
|
+
readonly width?: string;
|
|
8206
|
+
readonly height?: string;
|
|
8207
|
+
readonly isDraggable?: boolean;
|
|
8208
|
+
}
|
|
8209
|
+
/**
|
|
8210
|
+
* Configuration for initializing a detach instance.
|
|
8211
|
+
*
|
|
8212
|
+
* Extends {@link DbxInjectionComponentConfig} with an optional key and overlay settings.
|
|
8213
|
+
*/
|
|
8214
|
+
interface DbxDetachConfig<T = unknown> extends DbxInjectionComponentConfig<T> {
|
|
8215
|
+
readonly key?: DbxDetachKey;
|
|
8216
|
+
readonly overlay?: DbxDetachOverlayConfig;
|
|
8217
|
+
}
|
|
8218
|
+
/**
|
|
8219
|
+
* Tracks a single detached component managed by {@link DbxDetachService}.
|
|
8220
|
+
*
|
|
8221
|
+
* The component is created imperatively and lives in the service.
|
|
8222
|
+
* Outlets and overlays are just display locations — this instance
|
|
8223
|
+
* tracks which location currently hosts the component.
|
|
8224
|
+
*/
|
|
8225
|
+
interface DbxDetachInstance<T = unknown> {
|
|
8226
|
+
readonly key: DbxDetachKey;
|
|
8227
|
+
readonly componentRef: ComponentRef<T>;
|
|
8228
|
+
readonly windowState$: Observable<DbxDetachWindowStateType>;
|
|
8229
|
+
readonly closing$: Observable<boolean>;
|
|
8230
|
+
/**
|
|
8231
|
+
* Moves content to an outlet in the page (if one exists for this key).
|
|
8232
|
+
*/
|
|
8233
|
+
attach(): void;
|
|
8234
|
+
/**
|
|
8235
|
+
* Moves content to the floating overlay.
|
|
8236
|
+
*/
|
|
8237
|
+
detach(): void;
|
|
8238
|
+
/**
|
|
8239
|
+
* Collapses the floating overlay so only controls are visible.
|
|
8240
|
+
*/
|
|
8241
|
+
minimize(): void;
|
|
8242
|
+
/**
|
|
8243
|
+
* Destroys the detached component entirely.
|
|
8244
|
+
*/
|
|
8245
|
+
close(): void;
|
|
8246
|
+
}
|
|
8247
|
+
/**
|
|
8248
|
+
* Abstract controller that content components can inject to
|
|
8249
|
+
* trigger state changes without being aware of the underlying mechanism.
|
|
8250
|
+
*/
|
|
8251
|
+
declare abstract class DbxDetachController<I = unknown> {
|
|
8252
|
+
abstract readonly key: DbxDetachKey;
|
|
8253
|
+
abstract readonly data?: Maybe<I>;
|
|
8254
|
+
abstract readonly windowState$: Observable<DbxDetachWindowStateType>;
|
|
8255
|
+
abstract readonly closing$: Observable<boolean>;
|
|
8256
|
+
abstract attach(): void;
|
|
8257
|
+
abstract detach(): void;
|
|
8258
|
+
abstract minimize(): void;
|
|
8259
|
+
abstract close(): void;
|
|
8260
|
+
}
|
|
8261
|
+
/**
|
|
8262
|
+
* Creates Angular providers that register a {@link DbxDetachController} implementation for DI.
|
|
8263
|
+
*
|
|
8264
|
+
* @param sourceType - The concrete class to provide as the controller.
|
|
8265
|
+
* @returns An array of Angular providers that bind the source type to {@link DbxDetachController}.
|
|
8266
|
+
*
|
|
8267
|
+
* @example
|
|
8268
|
+
* ```typescript
|
|
8269
|
+
* @Component({
|
|
8270
|
+
* providers: provideDbxDetachController(MyDetachController),
|
|
8271
|
+
* })
|
|
8272
|
+
* export class MyComponent {}
|
|
8273
|
+
* ```
|
|
8274
|
+
*/
|
|
8275
|
+
declare function provideDbxDetachController<S extends DbxDetachController>(sourceType: Type<S>): Provider[];
|
|
8276
|
+
|
|
8277
|
+
/**
|
|
8278
|
+
* Wraps detach body content, hiding the body when the panel is minimized while keeping the controls visible.
|
|
8279
|
+
*
|
|
8280
|
+
* @example
|
|
8281
|
+
* ```html
|
|
8282
|
+
* <dbx-detach-content>
|
|
8283
|
+
* <dbx-detach-controls controls [header]="'My Panel'"></dbx-detach-controls>
|
|
8284
|
+
* <p>Body content here.</p>
|
|
8285
|
+
* </dbx-detach-content>
|
|
8286
|
+
* ```
|
|
8287
|
+
*/
|
|
8288
|
+
declare class DbxDetachContentComponent {
|
|
8289
|
+
private readonly _detachController;
|
|
8290
|
+
readonly showContent$: rxjs.Observable<boolean>;
|
|
8291
|
+
readonly showContentSignal: _angular_core.Signal<boolean>;
|
|
8292
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachContentComponent, never>;
|
|
8293
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachContentComponent, "dbx-detach-content", never, {}, {}, never, ["[controls]", "*"], true, never>;
|
|
8294
|
+
}
|
|
8295
|
+
|
|
8296
|
+
/**
|
|
8297
|
+
* Renders state-dependent control buttons for a detach component.
|
|
8298
|
+
*
|
|
8299
|
+
* - ATTACHED: detach (picture_in_picture_alt) + close
|
|
8300
|
+
* - DETACHED: attach (open_in_full) + minimize + close
|
|
8301
|
+
* - MINIMIZED: attach (open_in_full) + restore (maximize) + close
|
|
8302
|
+
*/
|
|
8303
|
+
declare class DbxDetachControlButtonsComponent {
|
|
8304
|
+
private readonly _detachController;
|
|
8305
|
+
readonly windowStateSignal: _angular_core.Signal<_dereekb_dbx_web.DbxDetachWindowStateType>;
|
|
8306
|
+
attachClicked(): void;
|
|
8307
|
+
detachClicked(): void;
|
|
8308
|
+
minimizeClicked(): void;
|
|
8309
|
+
closeClicked(): void;
|
|
8310
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachControlButtonsComponent, never>;
|
|
8311
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachControlButtonsComponent, "dbx-detach-control-buttons", never, {}, {}, never, never, true, never>;
|
|
8312
|
+
}
|
|
8313
|
+
|
|
8314
|
+
/**
|
|
8315
|
+
* Renders the detach control bar with a header title and window management buttons (attach, detach, minimize, close).
|
|
8316
|
+
*
|
|
8317
|
+
* @example
|
|
8318
|
+
* ```html
|
|
8319
|
+
* <dbx-detach-controls [header]="'My Panel'"></dbx-detach-controls>
|
|
8320
|
+
* ```
|
|
8321
|
+
*/
|
|
8322
|
+
declare class DbxDetachControlsComponent {
|
|
8323
|
+
readonly header: _angular_core.InputSignal<string | undefined>;
|
|
8324
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachControlsComponent, never>;
|
|
8325
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachControlsComponent, "dbx-detach-controls", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8326
|
+
}
|
|
8327
|
+
|
|
8328
|
+
/**
|
|
8329
|
+
* Directive that ensures a detached component exists in the {@link DbxDetachService} for the given key.
|
|
8330
|
+
*
|
|
8331
|
+
* Place this on any element to declaratively initialize a detached component.
|
|
8332
|
+
* The component is created in the service on init and is NOT destroyed when this directive is destroyed —
|
|
8333
|
+
* it lives in the service until explicitly closed.
|
|
8334
|
+
*
|
|
8335
|
+
* @example
|
|
8336
|
+
* ```html
|
|
8337
|
+
* <div [dbxDetachInit]="chatWidgetConfig" dbxDetachInitKey="support-chat"></div>
|
|
8338
|
+
* ```
|
|
8339
|
+
*/
|
|
8340
|
+
declare class DbxDetachInitDirective implements OnInit {
|
|
8341
|
+
private readonly _detachService;
|
|
8342
|
+
readonly config: _angular_core.InputSignal<DbxInjectionComponentConfig<unknown>>;
|
|
8343
|
+
readonly key: _angular_core.InputSignal<string>;
|
|
8344
|
+
ngOnInit(): void;
|
|
8345
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachInitDirective, never>;
|
|
8346
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxDetachInitDirective, "[dbxDetachInit]", never, { "config": { "alias": "dbxDetachInit"; "required": true; "isSignal": true; }; "key": { "alias": "dbxDetachInitKey"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8347
|
+
}
|
|
8348
|
+
|
|
8349
|
+
/**
|
|
8350
|
+
* Outlet component that displays a detached component at its DOM location.
|
|
8351
|
+
*
|
|
8352
|
+
* When this component initializes, it tells the {@link DbxDetachService} to move
|
|
8353
|
+
* the component for the given key into this element.
|
|
8354
|
+
*
|
|
8355
|
+
* When destroyed (e.g. navigation away), behavior depends on {@link detachOnDestroy}:
|
|
8356
|
+
* - `true`: the component moves to the floating overlay and remains visible
|
|
8357
|
+
* - `false` (default): the component stays alive in the service but is hidden until a new outlet appears
|
|
8358
|
+
*
|
|
8359
|
+
* @example
|
|
8360
|
+
* ```html
|
|
8361
|
+
* <!-- Auto-floats when navigating away -->
|
|
8362
|
+
* <dbx-detach-outlet key="support-chat" [detachOnDestroy]="true"></dbx-detach-outlet>
|
|
8363
|
+
*
|
|
8364
|
+
* <!-- Hidden when navigating away, re-appears when outlet is recreated -->
|
|
8365
|
+
* <dbx-detach-outlet key="support-chat"></dbx-detach-outlet>
|
|
8366
|
+
* ```
|
|
8367
|
+
*/
|
|
8368
|
+
declare class DbxDetachOutletComponent implements OnInit, OnDestroy {
|
|
8369
|
+
private readonly _detachService;
|
|
8370
|
+
private readonly _elementRef;
|
|
8371
|
+
readonly key: _angular_core.InputSignal<string>;
|
|
8372
|
+
/**
|
|
8373
|
+
* When true, the component automatically moves to the floating overlay
|
|
8374
|
+
* when this outlet is destroyed (e.g. page navigation). Defaults to false.
|
|
8375
|
+
*/
|
|
8376
|
+
readonly detachOnDestroy: _angular_core.InputSignal<boolean>;
|
|
8377
|
+
private _currentKey?;
|
|
8378
|
+
private _contentElement?;
|
|
8379
|
+
/**
|
|
8380
|
+
* Re-attaches when the key input changes.
|
|
8381
|
+
*/
|
|
8382
|
+
protected readonly _keyEffect: _angular_core.EffectRef;
|
|
8383
|
+
ngOnInit(): void;
|
|
8384
|
+
ngOnDestroy(): void;
|
|
8385
|
+
private _attachToService;
|
|
8386
|
+
private _releaseFromService;
|
|
8387
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachOutletComponent, never>;
|
|
8388
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachOutletComponent, "dbx-detach-outlet", never, { "key": { "alias": "key"; "required": false; "isSignal": true; }; "detachOnDestroy": { "alias": "detachOnDestroy"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8389
|
+
}
|
|
8390
|
+
|
|
8391
|
+
/**
|
|
8392
|
+
* Data passed to the overlay component via {@link NgPopoverRef}.
|
|
8393
|
+
*/
|
|
8394
|
+
interface DbxDetachOverlayData {
|
|
8395
|
+
readonly controller: DbxDetachController;
|
|
8396
|
+
readonly hostElement: HTMLElement;
|
|
8397
|
+
}
|
|
8398
|
+
/**
|
|
8399
|
+
* Component rendered inside the ng-overlay-container overlay.
|
|
8400
|
+
*
|
|
8401
|
+
* Receives the detached component's host element and appends it to the overlay DOM.
|
|
8402
|
+
* The component's lifecycle and change detection are managed by {@link DbxDetachService},
|
|
8403
|
+
* not the overlay.
|
|
8404
|
+
*/
|
|
8405
|
+
declare class DbxDetachOverlayComponent implements AfterViewInit {
|
|
8406
|
+
private readonly _elementRef;
|
|
8407
|
+
private readonly _popoverRef;
|
|
8408
|
+
private readonly _compactContextStore;
|
|
8409
|
+
constructor();
|
|
8410
|
+
ngAfterViewInit(): void;
|
|
8411
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachOverlayComponent, never>;
|
|
8412
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachOverlayComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
8413
|
+
}
|
|
8414
|
+
|
|
8415
|
+
declare class DbxDetachInteractionModule {
|
|
8416
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachInteractionModule, never>;
|
|
8417
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxDetachInteractionModule, never, [typeof DbxDetachOutletComponent, typeof DbxDetachInitDirective, typeof DbxDetachOverlayComponent, typeof DbxDetachContentComponent, typeof DbxDetachControlsComponent, typeof DbxDetachControlButtonsComponent], [typeof DbxDetachOutletComponent, typeof DbxDetachInitDirective, typeof DbxDetachOverlayComponent, typeof DbxDetachContentComponent, typeof DbxDetachControlsComponent, typeof DbxDetachControlButtonsComponent]>;
|
|
8418
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxDetachInteractionModule>;
|
|
8419
|
+
}
|
|
8420
|
+
|
|
8421
|
+
/**
|
|
8422
|
+
* Root-level service that owns and manages detached components.
|
|
8423
|
+
*
|
|
8424
|
+
* Components are created imperatively via {@link createComponent} and kept alive
|
|
8425
|
+
* via {@link ApplicationRef.attachView}. They are not tied to any template.
|
|
8426
|
+
*
|
|
8427
|
+
* Outlets and overlays are just display locations — the service moves the component's
|
|
8428
|
+
* host element between them based on the current state.
|
|
8429
|
+
*
|
|
8430
|
+
* Multiple simultaneous detached components are supported via unique keys.
|
|
8431
|
+
*/
|
|
8432
|
+
declare class DbxDetachService {
|
|
8433
|
+
private readonly _appRef;
|
|
8434
|
+
private readonly _injector;
|
|
8435
|
+
private readonly _envInjector;
|
|
8436
|
+
private readonly _overlay;
|
|
8437
|
+
private readonly _overlayContainerService;
|
|
8438
|
+
private readonly _entries;
|
|
8439
|
+
private readonly _entries$;
|
|
8440
|
+
/**
|
|
8441
|
+
* Initializes a detached component for the given key. Returns the existing instance if one already exists.
|
|
8442
|
+
*
|
|
8443
|
+
* @param config - The detach configuration including component class, key, and overlay settings.
|
|
8444
|
+
* @returns The new or existing {@link DbxDetachInstance} for the given key.
|
|
8445
|
+
*/
|
|
8446
|
+
init<T>(config: DbxDetachConfig<T>): DbxDetachInstance<T>;
|
|
8447
|
+
/**
|
|
8448
|
+
* Gets the instance for the given key, if it exists.
|
|
8449
|
+
*
|
|
8450
|
+
* @param key - The detach key to look up. Defaults to {@link DBX_DETACH_DEFAULT_KEY}.
|
|
8451
|
+
* @returns The instance if found, otherwise `undefined`.
|
|
8452
|
+
*/
|
|
8453
|
+
get<T = unknown>(key?: DbxDetachKey): Maybe<DbxDetachInstance<T>>;
|
|
8454
|
+
/**
|
|
8455
|
+
* Observable of whether an entry exists for the given key.
|
|
8456
|
+
*
|
|
8457
|
+
* @param key - The detach key to observe. Defaults to {@link DBX_DETACH_DEFAULT_KEY}.
|
|
8458
|
+
* @returns An observable that emits `true` when an entry exists for the key.
|
|
8459
|
+
*/
|
|
8460
|
+
has$(key?: DbxDetachKey): Observable<boolean>;
|
|
8461
|
+
/**
|
|
8462
|
+
* Moves the component's host element into the given outlet element.
|
|
8463
|
+
*
|
|
8464
|
+
* If no outlet element is provided, falls back to the last known outlet
|
|
8465
|
+
* (for reattaching from the overlay to the previous location).
|
|
8466
|
+
*
|
|
8467
|
+
* @param key - The detach key identifying the entry.
|
|
8468
|
+
* @param outletElement - The DOM element to move the component into. Falls back to the last known outlet.
|
|
8469
|
+
*/
|
|
8470
|
+
attachToOutlet(key: DbxDetachKey, outletElement?: Element): void;
|
|
8471
|
+
/**
|
|
8472
|
+
* Moves the component to the floating overlay.
|
|
8473
|
+
*
|
|
8474
|
+
* @param key - The detach key identifying the entry.
|
|
8475
|
+
*/
|
|
8476
|
+
detachToOverlay(key: DbxDetachKey): void;
|
|
8477
|
+
/**
|
|
8478
|
+
* Moves the component to the floating overlay in minimized state.
|
|
8479
|
+
*
|
|
8480
|
+
* @param key - The detach key identifying the entry.
|
|
8481
|
+
*/
|
|
8482
|
+
minimizeToOverlay(key: DbxDetachKey): void;
|
|
8483
|
+
/**
|
|
8484
|
+
* Called when an outlet is destroyed.
|
|
8485
|
+
*
|
|
8486
|
+
* @param key - The detach key identifying the entry.
|
|
8487
|
+
* @param outletElement - The outlet element being destroyed.
|
|
8488
|
+
* @param detachToOverlay - When true, the component moves to the floating overlay.
|
|
8489
|
+
* When false, the component's DOM is removed but it stays alive in the service (hidden).
|
|
8490
|
+
*/
|
|
8491
|
+
outletDestroyed(key: DbxDetachKey, outletElement: Element, detachToOverlay: boolean): void;
|
|
8492
|
+
/**
|
|
8493
|
+
* If the last outlet is still in the DOM, reattaches the component there.
|
|
8494
|
+
* Otherwise destroys the component.
|
|
8495
|
+
*
|
|
8496
|
+
* @param key - The detach key identifying the entry.
|
|
8497
|
+
*/
|
|
8498
|
+
closeOrReattach(key: DbxDetachKey): void;
|
|
8499
|
+
/**
|
|
8500
|
+
* Destroys the component and removes it from the service.
|
|
8501
|
+
*
|
|
8502
|
+
* @param key - The detach key identifying the entry to remove.
|
|
8503
|
+
*/
|
|
8504
|
+
remove(key: DbxDetachKey): void;
|
|
8505
|
+
private _openOverlay;
|
|
8506
|
+
private _resizeOverlayForState;
|
|
8507
|
+
private _closeOverlay;
|
|
8508
|
+
private _moveDomTo;
|
|
8509
|
+
private _removeDom;
|
|
8510
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachService, never>;
|
|
8511
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxDetachService>;
|
|
8512
|
+
}
|
|
8513
|
+
|
|
8168
8514
|
/**
|
|
8169
8515
|
* Configuration for the filter popover component, defining custom and preset filter components along with display options.
|
|
8170
8516
|
*/
|
|
@@ -9196,6 +9542,7 @@ declare class DbxPromptModule {
|
|
|
9196
9542
|
/**
|
|
9197
9543
|
* @deprecated import individual modules instead.
|
|
9198
9544
|
*
|
|
9545
|
+
* @see DbxDetachInteractionModule
|
|
9199
9546
|
* @see DbxDialogModule
|
|
9200
9547
|
* @see DbxFilterInteractionModule
|
|
9201
9548
|
* @see DbxPromptModule
|
|
@@ -9204,7 +9551,7 @@ declare class DbxPromptModule {
|
|
|
9204
9551
|
*/
|
|
9205
9552
|
declare class DbxInteractionModule {
|
|
9206
9553
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxInteractionModule, never>;
|
|
9207
|
-
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxInteractionModule, never, [typeof DbxPromptModule, typeof DbxDialogModule, typeof DbxFilterInteractionModule, typeof DbxPopoverInteractionModule, typeof DbxPopupInteractionModule], [typeof DbxPromptModule, typeof DbxDialogModule, typeof DbxFilterInteractionModule, typeof DbxPopoverInteractionModule, typeof DbxPopupInteractionModule]>;
|
|
9554
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxInteractionModule, never, [typeof DbxDetachInteractionModule, typeof DbxPromptModule, typeof DbxDialogModule, typeof DbxFilterInteractionModule, typeof DbxPopoverInteractionModule, typeof DbxPopupInteractionModule], [typeof DbxDetachInteractionModule, typeof DbxPromptModule, typeof DbxDialogModule, typeof DbxFilterInteractionModule, typeof DbxPopoverInteractionModule, typeof DbxPopupInteractionModule]>;
|
|
9208
9555
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxInteractionModule>;
|
|
9209
9556
|
}
|
|
9210
9557
|
|
|
@@ -9709,5 +10056,5 @@ declare class DbxWebModule {
|
|
|
9709
10056
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxWebModule>;
|
|
9710
10057
|
}
|
|
9711
10058
|
|
|
9712
|
-
export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxHelpWidgetDirective, AbstractDbxListAccordionViewDirective, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_CHIP_DEFAULT_TONE, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_PREVIEW_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxInteractionModule, DbxIntroActionSectionComponent, DbxLabelBlockComponent, DbxLayoutModule, DbxLinkComponent, DbxLinkifyComponent, DbxLinkifyService, DbxLinkifyServiceConfig, DbxListAccordionViewComponentImportsModule, DbxListComponent, DbxListEmptyContentComponent, DbxListGridViewComponentImportsModule, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListModifierModule, DbxListModule, DbxListTitleGroupDirective, DbxListView, DbxListViewMetaIconComponent, DbxListViewWrapper, DbxListWrapperComponentImportsModule, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelObjectStateService, actions_d as DbxModelStateActions, model_actions_d as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNumberWithLimitComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressButtonsModule, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorModule, DbxResizedDirective, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepBlockComponent, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, DbxTextColorDirective, DbxTextModule, DbxTwoBlockComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadDirective, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListAccordionViewComponent, DbxValueListAccordionViewContentComponent, DbxValueListAccordionViewContentGroupComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListGridViewContentGroupComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewComponentImportsModule, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWebFilePreviewComponent, DbxWebFilePreviewService, DbxWebModule, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, DbxZipBlobPreviewComponent, DbxZipPreviewComponent, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SIDE_NAV_DISPLAY_MODE_ORDER, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, UNKNOWN_ERROR_WIDGET_CODE, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxListAccordionViewComponentImportsAndExports, dbxListGridViewComponentImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxThemeColorCssVariable, dbxThemeColorCssVariableVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, flattenAccordionGroups, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openZipPreviewDialog, overrideClickElementEffect, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
|
|
9713
|
-
export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, DbxAccordionRenderEntry, DbxAccordionRenderGroupFooterEntry, DbxAccordionRenderGroupHeaderEntry, DbxAccordionRenderItemEntry, DbxActionConfirmConfig, DbxActionDialogFunction, DbxActionPopoverFunction, DbxActionPopoverFunctionParams, DbxActionSnackbarActionConfig, DbxActionSnackbarDisplayConfig, DbxActionSnackbarDisplayConfigGeneratorFunction, DbxActionSnackbarEvent, DbxActionSnackbarEventMakeConfig, DbxActionSnackbarGeneratorInput, DbxActionSnackbarGeneratorUndoInput, DbxActionSnackbarGeneratorUndoInputConfig, DbxActionSnackbarKnownType, DbxActionSnackbarServiceConfig, DbxActionSnackbarType, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyType, DbxAnchorListExpandedAnchor, DbxAvatarComponentForContextFunction, DbxAvatarContext, DbxAvatarInjectionComponentConfig, DbxAvatarKey, DbxAvatarSelector, DbxAvatarSize, DbxAvatarStyle, DbxButtonStyle, DbxButtonType, DbxChipDisplay, DbxColorTone, DbxContentBorderOpacity, DbxContentContainerPadding, DbxContentContainerWidth, DbxContentPitScrollableHeight, DbxContentPitScrollableHeightSetting, DbxContentPitScrollableInput, DbxDialogContentConfig, DbxDialogContentContainerWidth, DbxDialogContentFooterConfig, DbxDownloadBlobButtonConfig, DbxEmbedComponentElement, DbxEmbedDialogConfig, DbxErrorPopoverConfig, DbxErrorSnackbarConfig, DbxErrorSnackbarData, DbxErrorViewButtonEvent, DbxErrorWidgetEntry, DbxErrorWidgetEntryWithPopupComponentClass, DbxFileUploadAreaFilesChangedEvent, DbxFileUploadButtonFilesChangedEvent, DbxFileUploadComponentConfig, DbxFileUploadFilesChangedEvent, DbxFileUploadMode, DbxFilterButtonConfig, DbxFilterButtonConfigWithCustomFilter, DbxFilterButtonConfigWithPresetFilter, DbxFilterComponentConfig, DbxFilterPopoverComponentConfig, DbxFlexSize, DbxHelpContextKey, DbxHelpContextReference, DbxHelpViewPopoverButtonConfig, DbxHelpViewPopoverConfig, DbxHelpViewPopoverConfigWithoutOrigin, DbxHelpWidgetEntryData, DbxHelpWidgetServiceConfigFactory, DbxHelpWidgetServiceEntry, DbxIframeDialogConfig, DbxInjectionDialogComponentConfig, DbxLinkifyConfig, DbxLinkifyServiceConfigFactory, DbxLinkifyServiceDefaultEntry, DbxLinkifyServiceEntry, DbxLinkifyStringOptions, DbxLinkifyStringType, DbxListComponentScrolledEventPosition, DbxListConfig, DbxListLoadMoreHandler, DbxListScrollDirectionTrigger, DbxListSelectionMode, DbxListTitleGroupData, DbxListTitleGroupTitleDelegate, DbxListViewMetaIconConfig, DbxListWrapperConfig, DbxLoadingComponentState, DbxLoadingIsLoadingOrProgress, DbxLoadingProgress, DbxMakeActionSnackbarGeneratorConfiguration, DbxMakeActionSnackbarGeneratorEventConfiguration, DbxModelFullState, DbxModelIconsMap, DbxModelTypeConfiguration, DbxModelTypeConfigurationMap, DbxModelTypeConfigurationSrefFactory, DbxModelTypeConfigurationSrefFactoryBuilder, DbxModelTypeInfo, DbxModelTypesMap, DbxModelViewTrackerEvent, DbxModelViewTrackerEventSet, DbxPopoverComponentConfig, DbxPopoverConfig, DbxPopoverConfigSizing, DbxPopoverKey, DbxPopupComponentConfig, DbxPopupConfig, DbxPopupKey, DbxPopupWindowStateType, DbxPresetFilterMenuConfig, DbxProgressButtonConfig, DbxProgressButtonGlobalConfig, DbxProgressButtonIcon, DbxProgressButtonTargetedConfig, DbxPromptConfirmConfig, DbxPromptConfirmDialogConfig, DbxSectionHeaderConfig, DbxSectionHeaderHType, DbxSectionPageScrollLockedMode, DbxSelectionListWrapperConfig, DbxSelectionValueListViewConfig, DbxSetStyleMode, DbxSidenavPosition, DbxSidenavSidebarState, DbxStepBlockComponentConfig, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, DbxThemeColor, DbxThemeColorExtra, DbxThemeColorExtraSecondary, DbxThemeColorMain, DbxThemeColorMainOrExtra, DbxTwoColumnViewState, DbxValueAsListItem, DbxValueListAccordionViewConfig, DbxValueListGridItemViewGridSizeConfig, DbxValueListGridViewConfig, DbxValueListItem, DbxValueListItemConfig, DbxValueListItemDecisionFunction, DbxValueListItemGroup, DbxValueListViewConfig, DbxValueListViewGroupValuesFunction, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebFilePreviewServicePreviewFunction, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FullDbxPopoverComponentConfig, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, TextChip, TwoColumnsState };
|
|
10059
|
+
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_DETACH_DEFAULT_KEY, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_PREVIEW_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetachContentComponent, DbxDetachControlButtonsComponent, DbxDetachController, DbxDetachControlsComponent, DbxDetachInitDirective, DbxDetachInteractionModule, DbxDetachOutletComponent, DbxDetachOverlayComponent, DbxDetachService, DbxDetachWindowState, 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, SIDE_NAV_DISPLAY_MODE_ORDER, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, UNKNOWN_ERROR_WIDGET_CODE, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxListAccordionViewComponentImportsAndExports, dbxListGridViewComponentImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxThemeColorCssVariable, dbxThemeColorCssVariableVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, flattenAccordionGroups, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openZipPreviewDialog, overrideClickElementEffect, provideDbxDetachController, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
|
|
10060
|
+
export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, DbxAccordionRenderEntry, DbxAccordionRenderGroupFooterEntry, DbxAccordionRenderGroupHeaderEntry, DbxAccordionRenderItemEntry, DbxActionConfirmConfig, DbxActionDialogFunction, DbxActionPopoverFunction, DbxActionPopoverFunctionParams, DbxActionSnackbarActionConfig, DbxActionSnackbarDisplayConfig, DbxActionSnackbarDisplayConfigGeneratorFunction, DbxActionSnackbarEvent, DbxActionSnackbarEventMakeConfig, DbxActionSnackbarGeneratorInput, DbxActionSnackbarGeneratorUndoInput, DbxActionSnackbarGeneratorUndoInputConfig, DbxActionSnackbarKnownType, DbxActionSnackbarServiceConfig, DbxActionSnackbarType, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyType, DbxAnchorListExpandedAnchor, DbxAvatarComponentForContextFunction, DbxAvatarContext, DbxAvatarInjectionComponentConfig, DbxAvatarKey, DbxAvatarSelector, DbxAvatarSize, DbxAvatarStyle, DbxButtonStyle, DbxButtonType, DbxChipDisplay, DbxColorTone, DbxContentBorderOpacity, DbxContentContainerPadding, DbxContentContainerWidth, DbxContentPitScrollableHeight, DbxContentPitScrollableHeightSetting, DbxContentPitScrollableInput, DbxDetachConfig, DbxDetachInstance, DbxDetachKey, DbxDetachOverlayConfig, DbxDetachOverlayData, DbxDetachWindowStateType, DbxDialogContentConfig, DbxDialogContentContainerWidth, DbxDialogContentFooterConfig, DbxDownloadBlobButtonConfig, DbxEmbedComponentElement, DbxEmbedDialogConfig, DbxErrorPopoverConfig, DbxErrorSnackbarConfig, DbxErrorSnackbarData, DbxErrorViewButtonEvent, DbxErrorWidgetEntry, DbxErrorWidgetEntryWithPopupComponentClass, DbxFileUploadAreaFilesChangedEvent, DbxFileUploadButtonFilesChangedEvent, DbxFileUploadComponentConfig, DbxFileUploadFilesChangedEvent, DbxFileUploadMode, DbxFilterButtonConfig, DbxFilterButtonConfigWithCustomFilter, DbxFilterButtonConfigWithPresetFilter, DbxFilterComponentConfig, DbxFilterPopoverComponentConfig, DbxFlexSize, DbxHelpContextKey, DbxHelpContextReference, DbxHelpViewPopoverButtonConfig, DbxHelpViewPopoverConfig, DbxHelpViewPopoverConfigWithoutOrigin, DbxHelpWidgetEntryData, DbxHelpWidgetServiceConfigFactory, DbxHelpWidgetServiceEntry, DbxIframeDialogConfig, DbxInjectionDialogComponentConfig, DbxLinkifyConfig, DbxLinkifyServiceConfigFactory, DbxLinkifyServiceDefaultEntry, DbxLinkifyServiceEntry, DbxLinkifyStringOptions, DbxLinkifyStringType, DbxListComponentScrolledEventPosition, DbxListConfig, DbxListLoadMoreHandler, DbxListScrollDirectionTrigger, DbxListSelectionMode, DbxListTitleGroupData, DbxListTitleGroupTitleDelegate, DbxListViewMetaIconConfig, DbxListWrapperConfig, DbxLoadingComponentState, DbxLoadingIsLoadingOrProgress, DbxLoadingProgress, DbxMakeActionSnackbarGeneratorConfiguration, DbxMakeActionSnackbarGeneratorEventConfiguration, DbxModelFullState, DbxModelIconsMap, DbxModelTypeConfiguration, DbxModelTypeConfigurationMap, DbxModelTypeConfigurationSrefFactory, DbxModelTypeConfigurationSrefFactoryBuilder, DbxModelTypeInfo, DbxModelTypesMap, DbxModelViewTrackerEvent, DbxModelViewTrackerEventSet, DbxPopoverComponentConfig, DbxPopoverConfig, DbxPopoverConfigSizing, DbxPopoverKey, DbxPopupComponentConfig, DbxPopupConfig, DbxPopupKey, DbxPopupWindowStateType, DbxPresetFilterMenuConfig, DbxProgressButtonConfig, DbxProgressButtonGlobalConfig, DbxProgressButtonIcon, DbxProgressButtonTargetedConfig, DbxPromptConfirmConfig, DbxPromptConfirmDialogConfig, DbxSectionHeaderConfig, DbxSectionHeaderHType, DbxSectionPageScrollLockedMode, DbxSelectionListWrapperConfig, DbxSelectionValueListViewConfig, DbxSetStyleMode, DbxSidenavPosition, DbxSidenavSidebarState, DbxStepBlockComponentConfig, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, DbxThemeColor, DbxThemeColorExtra, DbxThemeColorExtraSecondary, DbxThemeColorMain, DbxThemeColorMainOrExtra, DbxTwoColumnViewState, DbxValueAsListItem, DbxValueListAccordionViewConfig, DbxValueListGridItemViewGridSizeConfig, DbxValueListGridViewConfig, DbxValueListItem, DbxValueListItemConfig, DbxValueListItemDecisionFunction, DbxValueListItemGroup, DbxValueListViewConfig, DbxValueListViewGroupValuesFunction, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebFilePreviewServicePreviewFunction, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FullDbxPopoverComponentConfig, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, TextChip, TwoColumnsState };
|