@dereekb/dbx-web 13.4.0 → 13.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/dereekb-dbx-web-calendar.mjs +51 -17
- package/fesm2022/dereekb-dbx-web-calendar.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web-mapbox.mjs +44 -12
- package/fesm2022/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web-table.mjs +48 -10
- package/fesm2022/dereekb-dbx-web-table.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web.mjs +467 -180
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/package.json +6 -6
- package/types/dereekb-dbx-web-calendar.d.ts +40 -2
- package/types/dereekb-dbx-web-mapbox.d.ts +27 -1
- package/types/dereekb-dbx-web-table.d.ts +47 -6
- package/types/dereekb-dbx-web.d.ts +500 -113
|
@@ -4,7 +4,7 @@ import * as _angular_core from '@angular/core';
|
|
|
4
4
|
import { Signal, ElementRef, AfterViewInit, InjectionToken, Type, OnInit, OnDestroy, ViewContainerRef, Provider, Injector, TrackByFunction, OutputEmitterRef, OutputRef, EnvironmentProviders, TemplateRef } from '@angular/core';
|
|
5
5
|
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
6
6
|
import * as _dereekb_util from '@dereekb/util';
|
|
7
|
-
import { Maybe, ErrorInput, GetterOrValue, Getter,
|
|
7
|
+
import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CharacterPrefixSuffixCleanString, DashPrefixString, CssClass, WebsiteUrlWithPrefix, WebsitePath, Pixels, PixelsString, DecisionFunction, ModifierMap, ArrayOrValue, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, Destroyable, UnitedStatesAddressWithContact, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, ContentTypeMimeType, MimeTypeWithoutParameters, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix } from '@dereekb/util';
|
|
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';
|
|
@@ -231,7 +231,7 @@ type DbxActionSnackbarKnownType = 'none' | 'create' | 'save' | 'delete' | 'merge
|
|
|
231
231
|
* Contains the loading state type and, depending on the outcome, either the result value or an error.
|
|
232
232
|
*/
|
|
233
233
|
interface DbxActionSnackbarEvent<O = unknown> extends Omit<LoadingState<O>, 'loading'> {
|
|
234
|
-
type: LoadingStateType;
|
|
234
|
+
readonly type: LoadingStateType;
|
|
235
235
|
}
|
|
236
236
|
/**
|
|
237
237
|
* Configuration for rendering a snackbar popup, including the message, close button, optional action, and Material snackbar settings.
|
|
@@ -240,19 +240,19 @@ interface DbxActionSnackbarDisplayConfig<T = unknown, O = unknown> {
|
|
|
240
240
|
/**
|
|
241
241
|
* Text to be shown on the close button. If action is defined, this is ignored and the action text is used.
|
|
242
242
|
*/
|
|
243
|
-
button?: string;
|
|
243
|
+
readonly button?: string;
|
|
244
244
|
/**
|
|
245
245
|
* Message to show in the snackbar.
|
|
246
246
|
*/
|
|
247
|
-
message?: Maybe<string>;
|
|
247
|
+
readonly message?: Maybe<string>;
|
|
248
248
|
/**
|
|
249
249
|
* Additional action that can occur.
|
|
250
250
|
*/
|
|
251
|
-
action?: DbxActionSnackbarActionConfig<T, O>;
|
|
251
|
+
readonly action?: DbxActionSnackbarActionConfig<T, O>;
|
|
252
252
|
/**
|
|
253
253
|
* MatSnackBar configuration
|
|
254
254
|
*/
|
|
255
|
-
snackbar?: MatSnackBarConfig;
|
|
255
|
+
readonly snackbar?: MatSnackBarConfig;
|
|
256
256
|
}
|
|
257
257
|
/**
|
|
258
258
|
* Configuration for an interactive action button displayed within the snackbar, such as an "Undo" button.
|
|
@@ -261,17 +261,17 @@ interface DbxActionSnackbarActionConfig<T = unknown, O = unknown> {
|
|
|
261
261
|
/**
|
|
262
262
|
* Action label to display on the button.
|
|
263
263
|
*/
|
|
264
|
-
button: string;
|
|
264
|
+
readonly button: string;
|
|
265
265
|
/**
|
|
266
266
|
* Action reference to use.
|
|
267
267
|
*
|
|
268
268
|
* The referred to action is used for triggering and lifecycle.
|
|
269
269
|
*/
|
|
270
|
-
reference: DbxActionContextSourceReference<T, O>;
|
|
270
|
+
readonly reference: DbxActionContextSourceReference<T, O>;
|
|
271
271
|
/**
|
|
272
272
|
* Duration to show the action.
|
|
273
273
|
*/
|
|
274
|
-
duration?:
|
|
274
|
+
readonly duration?: Milliseconds;
|
|
275
275
|
}
|
|
276
276
|
|
|
277
277
|
/**
|
|
@@ -311,9 +311,13 @@ declare class DbxActionSnackbarComponent implements AfterViewInit {
|
|
|
311
311
|
* action event and optional undo configuration.
|
|
312
312
|
*/
|
|
313
313
|
interface DbxActionSnackbarGeneratorInput<T = unknown, O = unknown> {
|
|
314
|
-
/**
|
|
314
|
+
/**
|
|
315
|
+
* The action snackbar event that triggered the generator.
|
|
316
|
+
*/
|
|
315
317
|
readonly event: DbxActionSnackbarEvent<O>;
|
|
316
|
-
/**
|
|
318
|
+
/**
|
|
319
|
+
* Optional undo action configuration, only applied on success events.
|
|
320
|
+
*/
|
|
317
321
|
readonly undo?: Maybe<DbxActionSnackbarGeneratorUndoInput<T, O>>;
|
|
318
322
|
}
|
|
319
323
|
/**
|
|
@@ -326,9 +330,13 @@ type DbxActionSnackbarGeneratorUndoInput<T = unknown, O = unknown> = Getter<DbxA
|
|
|
326
330
|
* and how to obtain the undo action source reference.
|
|
327
331
|
*/
|
|
328
332
|
interface DbxActionSnackbarGeneratorUndoInputConfig<T = unknown, O = unknown> {
|
|
329
|
-
/**
|
|
333
|
+
/**
|
|
334
|
+
* How long the undo button remains visible in the snackbar.
|
|
335
|
+
*/
|
|
330
336
|
readonly duration?: Milliseconds;
|
|
331
|
-
/**
|
|
337
|
+
/**
|
|
338
|
+
* Factory that returns the action context source reference to trigger for undo.
|
|
339
|
+
*/
|
|
332
340
|
readonly getUndoAction: Getter<DbxActionContextSourceReference<T, O>>;
|
|
333
341
|
}
|
|
334
342
|
/**
|
|
@@ -341,13 +349,21 @@ type DbxActionSnackbarDisplayConfigGeneratorFunction = <T = unknown, O = unknown
|
|
|
341
349
|
* Each property maps a loading state (idle, loading, success, error) to its message configuration.
|
|
342
350
|
*/
|
|
343
351
|
interface DbxMakeActionSnackbarGeneratorConfiguration {
|
|
344
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* Configuration shown when the action is idle.
|
|
354
|
+
*/
|
|
345
355
|
readonly idle?: GetterOrValue<DbxMakeActionSnackbarGeneratorEventConfiguration>;
|
|
346
|
-
/**
|
|
356
|
+
/**
|
|
357
|
+
* Configuration shown while the action is loading.
|
|
358
|
+
*/
|
|
347
359
|
readonly loading?: GetterOrValue<DbxMakeActionSnackbarGeneratorEventConfiguration>;
|
|
348
|
-
/**
|
|
360
|
+
/**
|
|
361
|
+
* Configuration shown when the action succeeds.
|
|
362
|
+
*/
|
|
349
363
|
readonly success?: GetterOrValue<DbxMakeActionSnackbarGeneratorEventConfiguration>;
|
|
350
|
-
/**
|
|
364
|
+
/**
|
|
365
|
+
* Configuration shown when the action fails.
|
|
366
|
+
*/
|
|
351
367
|
readonly error?: GetterOrValue<DbxMakeActionSnackbarGeneratorEventConfiguration>;
|
|
352
368
|
}
|
|
353
369
|
/**
|
|
@@ -400,15 +416,25 @@ interface DbxActionSnackbarEventMakeConfig {
|
|
|
400
416
|
* positioning, default durations, and per-type message configurations.
|
|
401
417
|
*/
|
|
402
418
|
interface DbxActionSnackbarServiceConfig<C = unknown> {
|
|
403
|
-
/**
|
|
419
|
+
/**
|
|
420
|
+
* Component class to render inside the snackbar. Defaults to {@link DbxActionSnackbarComponent}.
|
|
421
|
+
*/
|
|
404
422
|
readonly componentClass: Type<C>;
|
|
405
|
-
/**
|
|
423
|
+
/**
|
|
424
|
+
* Snackbar positioning overrides.
|
|
425
|
+
*/
|
|
406
426
|
readonly snackbar?: Pick<MatSnackBarConfig, 'horizontalPosition' | 'verticalPosition'>;
|
|
407
|
-
/**
|
|
427
|
+
/**
|
|
428
|
+
* Default duration for snackbars without an action.
|
|
429
|
+
*/
|
|
408
430
|
readonly defaultDuration?: Milliseconds;
|
|
409
|
-
/**
|
|
431
|
+
/**
|
|
432
|
+
* Default duration for snackbars that include an undo action.
|
|
433
|
+
*/
|
|
410
434
|
readonly defaultUndoDuration?: Milliseconds;
|
|
411
|
-
/**
|
|
435
|
+
/**
|
|
436
|
+
* Per-type message configurations (e.g. "save", "create", "delete").
|
|
437
|
+
*/
|
|
412
438
|
readonly eventTypeConfigs: DbxActionSnackbarEventMakeConfig;
|
|
413
439
|
}
|
|
414
440
|
/**
|
|
@@ -439,6 +465,7 @@ declare class DbxActionSnackbarService<C = DbxActionSnackbarComponent> {
|
|
|
439
465
|
*
|
|
440
466
|
* @param type - The snackbar type key (e.g. "save", "delete"), or undefined to use "none".
|
|
441
467
|
* @param input - The generator input containing the event and optional undo configuration.
|
|
468
|
+
* @returns The generated display configuration, or `undefined` if no config is registered for the given type.
|
|
442
469
|
*/
|
|
443
470
|
generateDisplayConfig<T = unknown, O = unknown>(type: Maybe<DbxActionSnackbarType>, input: DbxActionSnackbarGeneratorInput<T, O>): Maybe<DbxActionSnackbarDisplayConfig<T, O>>;
|
|
444
471
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionSnackbarService<any>, never>;
|
|
@@ -480,7 +507,7 @@ declare class DbxActionSnackbarDirective<T = unknown, O = unknown> implements On
|
|
|
480
507
|
protected readonly _sub: _dereekb_rxjs.SubscriptionObject<rxjs.Unsubscribable>;
|
|
481
508
|
ngOnInit(): void;
|
|
482
509
|
protected buildConfigurationForEvent(event: DbxActionSnackbarEvent<O>): Maybe<DbxActionSnackbarDisplayConfig<T, O>>;
|
|
483
|
-
protected showSnackbarForConfiguration(config: DbxActionSnackbarDisplayConfig<T, O>,
|
|
510
|
+
protected showSnackbarForConfiguration(config: DbxActionSnackbarDisplayConfig<T, O>, _event: DbxActionSnackbarEvent<O>): void;
|
|
484
511
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionSnackbarDirective<any, any>, never>;
|
|
485
512
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxActionSnackbarDirective<any, any>, "[dbxActionSnackbar]", never, { "dbxActionSnackbarDefault": { "alias": "dbxActionSnackbarDefault"; "required": false; "isSignal": true; }; "dbxActionSnackbarUndo": { "alias": "dbxActionSnackbarUndo"; "required": false; "isSignal": true; }; "dbxActionSnackbar": { "alias": "dbxActionSnackbar"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
486
513
|
}
|
|
@@ -623,6 +650,9 @@ declare abstract class DbxPromptConfirm {
|
|
|
623
650
|
/**
|
|
624
651
|
* Provides a {@link DbxPromptConfirm} implementation for dependency injection.
|
|
625
652
|
*
|
|
653
|
+
* @param sourceType - The concrete class that implements {@link DbxPromptConfirm}
|
|
654
|
+
* @returns An array of providers that register the given type as the {@link DbxPromptConfirm} implementation
|
|
655
|
+
*
|
|
626
656
|
* @example
|
|
627
657
|
* ```ts
|
|
628
658
|
* @Directive({ providers: provideDbxPromptConfirm(MyConfirmDirective) })
|
|
@@ -847,6 +877,9 @@ declare const DBX_THEME_COLORS: DbxThemeColor[];
|
|
|
847
877
|
* dbxColorBackground('primary'); // 'dbx-primary-bg'
|
|
848
878
|
* dbxColorBackground(undefined); // 'dbx-default'
|
|
849
879
|
* ```
|
|
880
|
+
*
|
|
881
|
+
* @param color - the theme color to convert, or nullish/empty for the default class
|
|
882
|
+
* @returns the CSS class name for the themed background (e.g., `'dbx-primary-bg'` or `'dbx-default'`)
|
|
850
883
|
*/
|
|
851
884
|
declare function dbxColorBackground(color: Maybe<DbxThemeColor | ''>): CssClass;
|
|
852
885
|
|
|
@@ -1028,18 +1061,37 @@ declare class DbxAvatarViewService {
|
|
|
1028
1061
|
* Resolves the injection component configuration for the given avatar context.
|
|
1029
1062
|
*
|
|
1030
1063
|
* Falls back to the default component config if no custom resolver is configured or if it returns null.
|
|
1064
|
+
*
|
|
1065
|
+
* @param context - the avatar context used to resolve the appropriate component configuration
|
|
1066
|
+
* @returns the resolved injection component config, or the default if no custom resolver matches
|
|
1031
1067
|
*/
|
|
1032
1068
|
avatarComponentForContext(context: DbxAvatarContext): DbxAvatarInjectionComponentConfig;
|
|
1033
1069
|
get defaultAvatarUrl(): Maybe<string>;
|
|
1034
1070
|
get defaultAvatarIcon(): Maybe<string>;
|
|
1035
1071
|
get defaultAvatarErrorIcon(): Maybe<string>;
|
|
1036
|
-
/**
|
|
1072
|
+
/**
|
|
1073
|
+
* Sets the default avatar image URL used when no context-specific URL is provided.
|
|
1074
|
+
*
|
|
1075
|
+
* @param url - the URL to use as the default avatar image, or nullish to clear
|
|
1076
|
+
*/
|
|
1037
1077
|
setDefaultAvatarUrl(url: Maybe<WebsitePath | WebsiteUrlWithPrefix>): void;
|
|
1038
|
-
/**
|
|
1078
|
+
/**
|
|
1079
|
+
* Sets the default Material icon name used as a fallback when no avatar image is available.
|
|
1080
|
+
*
|
|
1081
|
+
* @param icon - the Material icon name to use, or nullish to clear
|
|
1082
|
+
*/
|
|
1039
1083
|
setDefaultAvatarIcon(icon: Maybe<string>): void;
|
|
1040
|
-
/**
|
|
1084
|
+
/**
|
|
1085
|
+
* Sets the Material icon name displayed when the avatar image fails to load.
|
|
1086
|
+
*
|
|
1087
|
+
* @param icon - the Material icon name to display on image load error, or nullish to clear
|
|
1088
|
+
*/
|
|
1041
1089
|
setDefaultAvatarErrorIcon(icon: Maybe<string>): void;
|
|
1042
|
-
/**
|
|
1090
|
+
/**
|
|
1091
|
+
* Overrides the default component used to render avatars when no context-specific component is resolved.
|
|
1092
|
+
*
|
|
1093
|
+
* @param config - the injection component config to use as the new default
|
|
1094
|
+
*/
|
|
1043
1095
|
setDefaultAvatarComponentConfig(config: DbxAvatarInjectionComponentConfig): void;
|
|
1044
1096
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxAvatarViewService, never>;
|
|
1045
1097
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxAvatarViewService>;
|
|
@@ -1400,6 +1452,8 @@ declare class TwoColumnsContextStore extends ComponentStore<TwoColumnsState> {
|
|
|
1400
1452
|
* })
|
|
1401
1453
|
* export class MyColumnLayoutComponent { }
|
|
1402
1454
|
* ```
|
|
1455
|
+
*
|
|
1456
|
+
* @returns an array of Angular providers that supply a new {@link TwoColumnsContextStore}
|
|
1403
1457
|
*/
|
|
1404
1458
|
declare function provideTwoColumnsContext(): Provider[];
|
|
1405
1459
|
|
|
@@ -1532,7 +1586,7 @@ declare class DbxTwoColumnComponent {
|
|
|
1532
1586
|
} | undefined>;
|
|
1533
1587
|
protected readonly _reverseSizingEffect: _angular_core.EffectRef;
|
|
1534
1588
|
protected readonly _hasRightContentEffect: _angular_core.EffectRef;
|
|
1535
|
-
viewResized(
|
|
1589
|
+
viewResized(_event: ResizedEvent): void;
|
|
1536
1590
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTwoColumnComponent, never>;
|
|
1537
1591
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxTwoColumnComponent, "dbx-two-column", ["columns"], { "reverseSizing": { "alias": "reverseSizing"; "required": false; "isSignal": true; }; "inSectionPage": { "alias": "inSectionPage"; "required": false; "isSignal": true; }; "hasRightContent": { "alias": "hasRightContent"; "required": false; "isSignal": true; }; }, {}, never, ["[left]", "[right]"], true, never>;
|
|
1538
1592
|
}
|
|
@@ -1761,6 +1815,9 @@ type CompactModeOption = CompactMode | boolean;
|
|
|
1761
1815
|
* compactModeFromInput(true); // CompactMode.COMPACT
|
|
1762
1816
|
* compactModeFromInput(CompactMode.FULL); // CompactMode.FULL
|
|
1763
1817
|
* ```
|
|
1818
|
+
*
|
|
1819
|
+
* @param input - a boolean or CompactMode value to normalize
|
|
1820
|
+
* @returns the normalized CompactMode enum value
|
|
1764
1821
|
*/
|
|
1765
1822
|
declare function compactModeFromInput(input: CompactMode | boolean): CompactMode;
|
|
1766
1823
|
/**
|
|
@@ -1775,6 +1832,10 @@ declare function compactModeFromInput(input: CompactMode | boolean): CompactMode
|
|
|
1775
1832
|
* defaultMode: CompactMode.FULL
|
|
1776
1833
|
* });
|
|
1777
1834
|
* ```
|
|
1835
|
+
*
|
|
1836
|
+
* @param mode$ - an observable of the current compact mode, or nullish to use the default
|
|
1837
|
+
* @param config - the mapping configuration containing values for each mode and an optional default
|
|
1838
|
+
* @returns an observable emitting the mapped value corresponding to the current compact mode
|
|
1778
1839
|
*/
|
|
1779
1840
|
declare function mapCompactModeObs<T>(mode$: Maybe<Observable<CompactMode>>, config: CompactModeDefaultOptions<T>): Observable<Maybe<T>>;
|
|
1780
1841
|
|
|
@@ -2097,10 +2158,17 @@ type ScreenMediaHeightType = 'tiny' | 'normal';
|
|
|
2097
2158
|
* screenMediaWidthTypeIsActive('tablet', 'small'); // true
|
|
2098
2159
|
* screenMediaWidthTypeIsActive('micro', 'tablet'); // false
|
|
2099
2160
|
* ```
|
|
2161
|
+
*
|
|
2162
|
+
* @returns `true` if the current width type meets or exceeds the breakpoint
|
|
2100
2163
|
*/
|
|
2101
2164
|
declare function screenMediaWidthTypeIsActive(current: ScreenMediaWidthType, breakpoint: ScreenMediaWidthType): boolean;
|
|
2102
2165
|
/**
|
|
2103
2166
|
* Compares two {@link ScreenMediaWidthType} values using a custom comparator on their numeric sizes.
|
|
2167
|
+
*
|
|
2168
|
+
* @param a - the first screen width type
|
|
2169
|
+
* @param b - the second screen width type
|
|
2170
|
+
* @param compare - a comparator function applied to the numeric size values of `a` and `b`
|
|
2171
|
+
* @returns the result of applying the comparator to the mapped numeric sizes
|
|
2104
2172
|
*/
|
|
2105
2173
|
declare function compareScreenMediaWidthTypes(a: ScreenMediaWidthType, b: ScreenMediaWidthType, compare: (a: number, b: number) => boolean): boolean;
|
|
2106
2174
|
|
|
@@ -2211,7 +2279,22 @@ declare const DBX_VALUE_LIST_VIEW_ITEM: InjectionToken<unknown>;
|
|
|
2211
2279
|
* Describes a single item within a value-based list view, including its value, display options, and interaction state.
|
|
2212
2280
|
*/
|
|
2213
2281
|
interface DbxValueListItem<T, M = unknown> {
|
|
2282
|
+
/**
|
|
2283
|
+
* The underlying value for this list item.
|
|
2284
|
+
*
|
|
2285
|
+
* The default trackBy function checks this value for a `key` ({@link ModelKeyRef}) or `id` ({@link UniqueModel})
|
|
2286
|
+
* property to use as a stable tracking identity. To override this behavior, set {@link DbxValueListItem.key} explicitly
|
|
2287
|
+
* or provide a custom trackBy via the list view directive.
|
|
2288
|
+
*/
|
|
2214
2289
|
itemValue: T;
|
|
2290
|
+
/**
|
|
2291
|
+
* Optional stable key for tracking this item across data updates.
|
|
2292
|
+
*
|
|
2293
|
+
* When provided, the default trackBy function uses this instead of the item's index
|
|
2294
|
+
* or the `itemValue`'s `key`/`id`, preventing unnecessary component recreation when
|
|
2295
|
+
* the list re-renders.
|
|
2296
|
+
*/
|
|
2297
|
+
key?: Maybe<string>;
|
|
2215
2298
|
/**
|
|
2216
2299
|
* Arbitrary meta details available to the meta component.
|
|
2217
2300
|
*/
|
|
@@ -2243,6 +2326,7 @@ interface DbxValueListItem<T, M = unknown> {
|
|
|
2243
2326
|
type DbxValueListItemDecisionFunction<T> = DecisionFunction<DbxValueListItem<T>>;
|
|
2244
2327
|
/**
|
|
2245
2328
|
* Convenience function for mapping a DecisionFunction for a value to a DecisionFunction for a DbxValueListItem with the same value type.
|
|
2329
|
+
*
|
|
2246
2330
|
* @param decisionFunction
|
|
2247
2331
|
* @returns
|
|
2248
2332
|
*/
|
|
@@ -2263,6 +2347,9 @@ interface AbstractDbxValueListViewConfig<T, I extends DbxValueListItem<T> = DbxV
|
|
|
2263
2347
|
}
|
|
2264
2348
|
/**
|
|
2265
2349
|
* Default mapping function that wraps each raw value into a {@link DbxValueListItem} with only the `itemValue` property set.
|
|
2350
|
+
*
|
|
2351
|
+
* @param itemValues The raw values to wrap as list items
|
|
2352
|
+
* @returns An observable emitting the values wrapped in {@link DbxValueListItem} objects
|
|
2266
2353
|
*/
|
|
2267
2354
|
declare const DEFAULT_DBX_VALUE_LIST_CONFIG_MAP_VALUES: <T, I extends DbxValueListItem<T>>(itemValues: T[]) => Observable<I[]>;
|
|
2268
2355
|
/**
|
|
@@ -2275,6 +2362,10 @@ type DbxValueListItemConfig<T, I extends DbxValueListItem<T> = DbxValueListItem<
|
|
|
2275
2362
|
/**
|
|
2276
2363
|
* Maps raw values into an observable of {@link DbxValueListItemConfig} items, applying the list view config's mapping function and attaching injection configuration.
|
|
2277
2364
|
*
|
|
2365
|
+
* @param listViewConfig The list view configuration containing the component and optional mapping function
|
|
2366
|
+
* @param itemValues The raw values to map into configured list items
|
|
2367
|
+
* @returns An observable emitting the mapped and configured list item configs
|
|
2368
|
+
*
|
|
2278
2369
|
* @example
|
|
2279
2370
|
* ```ts
|
|
2280
2371
|
* const items$ = mapValuesToValuesListItemConfigObs(listViewConfig, rawValues);
|
|
@@ -2282,11 +2373,11 @@ type DbxValueListItemConfig<T, I extends DbxValueListItem<T> = DbxValueListItem<
|
|
|
2282
2373
|
*/
|
|
2283
2374
|
declare function mapValuesToValuesListItemConfigObs<T, I extends DbxValueListItem<T>, V = unknown>(listViewConfig: AbstractDbxValueListViewConfig<T, I, V>, itemValues: T[]): Observable<DbxValueListItemConfig<T, I, V>[]>;
|
|
2284
2375
|
/**
|
|
2285
|
-
* Adds
|
|
2376
|
+
* Adds injection component configuration and meta configuration to each list item, producing fully configured {@link DbxValueListItemConfig} entries ready for rendering.
|
|
2286
2377
|
*
|
|
2287
|
-
* @param listViewConfig
|
|
2288
|
-
* @param listItems
|
|
2289
|
-
* @returns
|
|
2378
|
+
* @param listViewConfig The list view configuration providing injection component config and optional meta config
|
|
2379
|
+
* @param listItems The list items to augment with configuration
|
|
2380
|
+
* @returns The list items extended with injection component configuration attached
|
|
2290
2381
|
*/
|
|
2291
2382
|
declare function addConfigToValueListItems<T, I extends DbxValueListItem<T>, V = unknown>(listViewConfig: AbstractDbxValueListViewConfig<T, I, V>, listItems: I[]): DbxValueListItemConfig<T, I, V>[];
|
|
2292
2383
|
/**
|
|
@@ -2299,6 +2390,9 @@ declare abstract class DbxValueListView<T, I extends DbxValueListItem<T> = DbxVa
|
|
|
2299
2390
|
/**
|
|
2300
2391
|
* Registers a component as a {@link DbxValueListView} provider for dependency injection.
|
|
2301
2392
|
*
|
|
2393
|
+
* @param sourceType The component class type to register as the list view provider
|
|
2394
|
+
* @returns An array of Angular providers that bind the given component to {@link DbxValueListView}
|
|
2395
|
+
*
|
|
2302
2396
|
* @example
|
|
2303
2397
|
* ```ts
|
|
2304
2398
|
* @Component({
|
|
@@ -2383,6 +2477,9 @@ declare abstract class DbxListView<T, S extends ListLoadingState<T> = ListLoadin
|
|
|
2383
2477
|
* })
|
|
2384
2478
|
* export class MyCustomListViewComponent extends DbxListView<MyItem> { ... }
|
|
2385
2479
|
* ```
|
|
2480
|
+
*
|
|
2481
|
+
* @param sourceType - the component class to register as the DbxListView provider
|
|
2482
|
+
* @returns an array of Angular providers that wire up the component as a DbxListView
|
|
2386
2483
|
*/
|
|
2387
2484
|
declare function provideDbxListView<V extends DbxListView<any>>(sourceType: Type<V>): Provider[];
|
|
2388
2485
|
|
|
@@ -2405,6 +2502,9 @@ declare abstract class DbxValueListItemModifier<T = unknown, I extends DbxValueL
|
|
|
2405
2502
|
* })
|
|
2406
2503
|
* export class MyModifierDirective extends DbxValueListItemModifier<MyItem> { ... }
|
|
2407
2504
|
* ```
|
|
2505
|
+
*
|
|
2506
|
+
* @param sourceType - the directive class to register as the DbxValueListItemModifier provider
|
|
2507
|
+
* @returns an array of Angular providers that wire up the directive as a DbxValueListItemModifier
|
|
2408
2508
|
*/
|
|
2409
2509
|
declare function provideDbxValueListViewModifier<V extends DbxValueListItemModifier>(sourceType: Type<V>): Provider[];
|
|
2410
2510
|
/**
|
|
@@ -2420,6 +2520,10 @@ type ListItemModifier<T, I extends DbxValueListItem<T> = DbxValueListItem<T>> =
|
|
|
2420
2520
|
* item.selected = item.itemValue.isImportant;
|
|
2421
2521
|
* });
|
|
2422
2522
|
* ```
|
|
2523
|
+
*
|
|
2524
|
+
* @param key - a unique string identifier for this modifier in the modifier map
|
|
2525
|
+
* @param modify - the function that mutates list item properties during rendering
|
|
2526
|
+
* @returns a new ListItemModifier with the given key and modification function
|
|
2423
2527
|
*/
|
|
2424
2528
|
declare function listItemModifier<T, I extends DbxValueListItem<T> = DbxValueListItem<T>>(key: string, modify: ModifierFunction<I>): ListItemModifier<T, I>;
|
|
2425
2529
|
|
|
@@ -2443,7 +2547,7 @@ declare abstract class AbstractDbxValueListViewDirective<T, I extends DbxValueLi
|
|
|
2443
2547
|
/**
|
|
2444
2548
|
* A group of DbxValueListItem values, grouped by common data, name, and id.
|
|
2445
2549
|
*/
|
|
2446
|
-
interface DbxValueListItemGroup<G, T, I extends DbxValueListItem<T>, H = unknown, F = unknown> extends Omit<DbxValueListItem<
|
|
2550
|
+
interface DbxValueListItemGroup<G, T, I extends DbxValueListItem<T>, H = unknown, F = unknown> extends Omit<DbxValueListItem<unknown>, 'itemValue' | 'icon'>, Readonly<Required<UniqueModel>> {
|
|
2447
2551
|
readonly data: G;
|
|
2448
2552
|
readonly items: DbxValueListItemConfig<T, I>[];
|
|
2449
2553
|
/**
|
|
@@ -2469,6 +2573,9 @@ interface DbxValueListItemGroup<G, T, I extends DbxValueListItem<T>, H = unknown
|
|
|
2469
2573
|
type DbxValueListViewGroupValuesFunction<G, T, I extends DbxValueListItem<T>, H = unknown, F = unknown> = (items: DbxValueListItemConfig<T, I>[]) => ObservableOrValue<DbxValueListItemGroup<G, T, I, H, F>[]>;
|
|
2470
2574
|
/**
|
|
2471
2575
|
* Default grouping function that places all items into a single unnamed group.
|
|
2576
|
+
*
|
|
2577
|
+
* @param items The flat list of configured list items to group
|
|
2578
|
+
* @returns An array containing a single group with all input items
|
|
2472
2579
|
*/
|
|
2473
2580
|
declare const defaultDbxValueListViewGroupValuesFunction: <T, I extends DbxValueListItem<T>>(items: DbxValueListItemConfig<T, I>[]) => DbxValueListItemGroup<unknown, T, I, unknown, unknown>[];
|
|
2474
2581
|
/**
|
|
@@ -2484,15 +2591,20 @@ declare abstract class DbxValueListViewGroupDelegate<G, T, I extends DbxValueLis
|
|
|
2484
2591
|
/**
|
|
2485
2592
|
* Creates a default {@link DbxValueListViewGroupDelegate} that places all items into a single ungrouped list.
|
|
2486
2593
|
*
|
|
2594
|
+
* @returns A group delegate that places all items into one unnamed group
|
|
2595
|
+
*
|
|
2487
2596
|
* @example
|
|
2488
2597
|
* ```ts
|
|
2489
2598
|
* const delegate = defaultDbxValueListViewGroupDelegate<MyItem>();
|
|
2490
2599
|
* ```
|
|
2491
2600
|
*/
|
|
2492
|
-
declare function defaultDbxValueListViewGroupDelegate<T, I extends DbxValueListItem<T>>(): DbxValueListViewGroupDelegate<
|
|
2601
|
+
declare function defaultDbxValueListViewGroupDelegate<T, I extends DbxValueListItem<T>>(): DbxValueListViewGroupDelegate<unknown, T, I>;
|
|
2493
2602
|
/**
|
|
2494
2603
|
* Registers a class as a {@link DbxValueListViewGroupDelegate} provider for dependency injection.
|
|
2495
2604
|
*
|
|
2605
|
+
* @param sourceType The class type to register as the group delegate provider
|
|
2606
|
+
* @returns An array of Angular providers that bind the given class to {@link DbxValueListViewGroupDelegate}
|
|
2607
|
+
*
|
|
2496
2608
|
* @example
|
|
2497
2609
|
* ```ts
|
|
2498
2610
|
* @Directive({
|
|
@@ -2524,7 +2636,7 @@ interface DbxValueListViewConfig<T, I extends DbxValueListItem<T> = DbxValueList
|
|
|
2524
2636
|
declare class DbxValueListViewContentGroupComponent<G, T, I extends DbxValueListItem<T> = DbxValueListItem<T>> {
|
|
2525
2637
|
readonly dbxValueListViewContentComponent: DbxValueListViewContentComponent<T, DbxValueListItem<T, unknown>>;
|
|
2526
2638
|
readonly group: _angular_core.InputSignal<Maybe<DbxValueListItemGroup<G, T, I, unknown, unknown>>>;
|
|
2527
|
-
readonly trackByFunctionSignal: Signal<TrackByFunction<
|
|
2639
|
+
readonly trackByFunctionSignal: Signal<TrackByFunction<DbxValueListItem<unknown, unknown>> | ((index: number, item: DbxValueListItemConfig<T, DbxValueListItem<T, unknown>>) => any)>;
|
|
2528
2640
|
readonly itemsSignal: Signal<DbxValueListItemConfig<T, I>[]>;
|
|
2529
2641
|
readonly headerConfigSignal: Signal<Maybe<_dereekb_dbx_core.DbxInjectionComponentConfig<unknown>>>;
|
|
2530
2642
|
readonly footerConfigSignal: Signal<Maybe<_dereekb_dbx_core.DbxInjectionComponentConfig<unknown>>>;
|
|
@@ -2536,9 +2648,16 @@ declare class DbxValueListViewContentGroupComponent<G, T, I extends DbxValueList
|
|
|
2536
2648
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxValueListViewContentGroupComponent<any, any, any>, "dbx-list-view-content-group", never, { "group": { "alias": "group"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2537
2649
|
}
|
|
2538
2650
|
/**
|
|
2539
|
-
* Default track-by function
|
|
2651
|
+
* Default track-by function for list view content components.
|
|
2652
|
+
*
|
|
2653
|
+
* Uses the item's {@link DbxValueListItem.key} when available for stable identity across
|
|
2654
|
+
* data updates, falling back to a prefixed index string to avoid collisions with key values.
|
|
2655
|
+
*
|
|
2656
|
+
* @param index - the item's position index in the list
|
|
2657
|
+
* @param item - the list item whose identity key is resolved
|
|
2658
|
+
* @returns the item's key, itemValue key/id, or a prefixed index string as a fallback
|
|
2540
2659
|
*/
|
|
2541
|
-
declare const DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION: TrackByFunction<
|
|
2660
|
+
declare const DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION: TrackByFunction<DbxValueListItem<unknown>>;
|
|
2542
2661
|
/**
|
|
2543
2662
|
* Renders a Material nav list of grouped value list items. Can be used directly when items are pre-configured,
|
|
2544
2663
|
* or as part of the standard list rendering pipeline via {@link DbxValueListViewComponent}.
|
|
@@ -2598,7 +2717,7 @@ interface DbxValueListAccordionViewConfig<T, I extends DbxValueListItem<T> = Dbx
|
|
|
2598
2717
|
declare class DbxValueListAccordionViewContentGroupComponent<G, T, I extends DbxValueListItem<T> = DbxValueListItem<T>> {
|
|
2599
2718
|
readonly dbxValueListAccordionViewContentComponent: DbxValueListAccordionViewContentComponent<T, DbxValueListItem<T, unknown>>;
|
|
2600
2719
|
readonly group: _angular_core.InputSignal<Maybe<DbxValueListItemGroup<G, T, I, unknown, unknown>>>;
|
|
2601
|
-
readonly trackByFunctionSignal: _angular_core.Signal<_angular_core.TrackByFunction<
|
|
2720
|
+
readonly trackByFunctionSignal: _angular_core.Signal<_angular_core.TrackByFunction<DbxValueListItem<unknown, unknown>> | ((index: number, item: _dereekb_dbx_web.DbxValueListItemConfig<T, DbxValueListItem<T, unknown>>) => any)>;
|
|
2602
2721
|
readonly itemsSignal: _angular_core.Signal<_dereekb_dbx_web.DbxValueListItemConfig<T, I>[]>;
|
|
2603
2722
|
readonly headerConfigSignal: _angular_core.Signal<Maybe<_dereekb_dbx_core.DbxInjectionComponentConfig<unknown>>>;
|
|
2604
2723
|
readonly footerConfigSignal: _angular_core.Signal<Maybe<_dereekb_dbx_core.DbxInjectionComponentConfig<unknown>>>;
|
|
@@ -2681,7 +2800,7 @@ declare abstract class AbstractDbxListViewDirective<T> implements DbxListView<T>
|
|
|
2681
2800
|
* Default template string for accordion list view components that renders a `dbx-list-accordion-view` with a `config` binding.
|
|
2682
2801
|
*/
|
|
2683
2802
|
declare const DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE = "<dbx-list-accordion-view [config]=\"config\"></dbx-list-accordion-view>";
|
|
2684
|
-
declare const
|
|
2803
|
+
declare const DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS: (typeof DbxValueListAccordionViewComponent)[];
|
|
2685
2804
|
/**
|
|
2686
2805
|
* Convenience module that imports and exports {@link DbxValueListAccordionViewComponent}.
|
|
2687
2806
|
*/
|
|
@@ -2699,6 +2818,10 @@ declare abstract class AbstractDbxListAccordionViewDirective<T> extends Abstract
|
|
|
2699
2818
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractDbxListAccordionViewDirective<any>, never>;
|
|
2700
2819
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractDbxListAccordionViewDirective<any>, never, never, {}, {}, never, never, true, never>;
|
|
2701
2820
|
}
|
|
2821
|
+
/**
|
|
2822
|
+
* @deprecated use DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS instead.
|
|
2823
|
+
*/
|
|
2824
|
+
declare const dbxListAccordionViewComponentImportsAndExports: (typeof DbxValueListAccordionViewComponent)[];
|
|
2702
2825
|
|
|
2703
2826
|
/**
|
|
2704
2827
|
* Configuration for a {@link DbxValueListGridViewComponent}. Extends the standard list view config with optional grid layout sizing.
|
|
@@ -2755,7 +2878,7 @@ declare class DbxValueListGridSizeDirective {
|
|
|
2755
2878
|
declare class DbxValueListGridViewContentGroupComponent<G, T, I extends DbxValueListItem<T> = DbxValueListItem<T>> {
|
|
2756
2879
|
readonly dbxValueListGridViewContentComponent: DbxValueListGridViewContentComponent<T, DbxValueListItem<T, unknown>>;
|
|
2757
2880
|
readonly group: _angular_core.InputSignal<Maybe<DbxValueListItemGroup<G, T, I, unknown, unknown>>>;
|
|
2758
|
-
readonly trackByFunctionSignal: Signal<_angular_core.TrackByFunction<
|
|
2881
|
+
readonly trackByFunctionSignal: Signal<_angular_core.TrackByFunction<DbxValueListItem<unknown, unknown>> | ((index: number, item: _dereekb_dbx_web.DbxValueListItemConfig<T, DbxValueListItem<T, unknown>>) => any)>;
|
|
2759
2882
|
readonly gridConfigSignal: Signal<DbxValueListGridItemViewGridSizeConfig>;
|
|
2760
2883
|
readonly itemsSignal: Signal<_dereekb_dbx_web.DbxValueListItemConfig<T, I>[]>;
|
|
2761
2884
|
readonly headerConfigSignal: Signal<Maybe<_dereekb_dbx_core.DbxInjectionComponentConfig<unknown>>>;
|
|
@@ -2800,7 +2923,7 @@ declare class DbxValueListGridViewComponent<T, I extends DbxValueListItem<T> = D
|
|
|
2800
2923
|
* Default template string for grid list view components that renders a `dbx-list-grid-view` with a `config` binding.
|
|
2801
2924
|
*/
|
|
2802
2925
|
declare const DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE = "<dbx-list-grid-view [config]=\"config\"></dbx-list-grid-view>";
|
|
2803
|
-
declare const
|
|
2926
|
+
declare const DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS: (typeof DbxValueListGridViewComponent)[];
|
|
2804
2927
|
/**
|
|
2805
2928
|
* Convenience module that imports and exports {@link DbxValueListGridViewComponent}.
|
|
2806
2929
|
*/
|
|
@@ -2818,6 +2941,10 @@ declare abstract class AbstractDbxListGridViewDirective<T> extends AbstractDbxLi
|
|
|
2818
2941
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractDbxListGridViewDirective<any>, never>;
|
|
2819
2942
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractDbxListGridViewDirective<any>, never, never, {}, {}, never, never, true, never>;
|
|
2820
2943
|
}
|
|
2944
|
+
/**
|
|
2945
|
+
* @deprecated use DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS instead.
|
|
2946
|
+
*/
|
|
2947
|
+
declare const dbxListGridViewComponentImportsAndExports: (typeof DbxValueListGridViewComponent)[];
|
|
2821
2948
|
|
|
2822
2949
|
/**
|
|
2823
2950
|
* Injection token for providing a default meta icon string to {@link DbxListViewMetaIconComponent} instances.
|
|
@@ -2966,6 +3093,9 @@ declare const DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY = "disable_rip
|
|
|
2966
3093
|
/**
|
|
2967
3094
|
* Default decision function that disables ripple on items that already have ripple disabled,
|
|
2968
3095
|
* lack an anchor, or have an anchor with no navigation target.
|
|
3096
|
+
*
|
|
3097
|
+
* @param item - the list item to evaluate for ripple disabling
|
|
3098
|
+
* @returns `true` if the ripple should be disabled for this item
|
|
2969
3099
|
*/
|
|
2970
3100
|
declare const DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION: DbxValueListItemDecisionFunction<unknown>;
|
|
2971
3101
|
/**
|
|
@@ -2991,6 +3121,9 @@ declare class DbxListItemDisableRippleModifierDirective<T> extends AbstractDbxVa
|
|
|
2991
3121
|
declare const DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY = "is_selected_item_modifier";
|
|
2992
3122
|
/**
|
|
2993
3123
|
* Default decision function that returns the item's current `selected` state (defaulting to false).
|
|
3124
|
+
*
|
|
3125
|
+
* @param item - the list item to check for selection
|
|
3126
|
+
* @returns `true` if the item is currently selected, `false` otherwise
|
|
2994
3127
|
*/
|
|
2995
3128
|
declare const DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION: DbxValueListItemDecisionFunction<unknown>;
|
|
2996
3129
|
/**
|
|
@@ -3208,6 +3341,9 @@ declare abstract class DbxListViewWrapper<T = unknown, S extends ListLoadingStat
|
|
|
3208
3341
|
* })
|
|
3209
3342
|
* export class MyListWrapperComponent extends DbxListViewWrapper<MyItem> { ... }
|
|
3210
3343
|
* ```
|
|
3344
|
+
*
|
|
3345
|
+
* @param sourceType - the component class to register as the DbxListViewWrapper provider
|
|
3346
|
+
* @returns an array of Angular providers that wire up the component as a DbxListViewWrapper
|
|
3211
3347
|
*/
|
|
3212
3348
|
declare function provideDbxListViewWrapper<V extends DbxListViewWrapper>(sourceType: Type<V>): Provider[];
|
|
3213
3349
|
|
|
@@ -3280,6 +3416,10 @@ declare class DbxListModule {
|
|
|
3280
3416
|
|
|
3281
3417
|
/**
|
|
3282
3418
|
* Angular {@link TrackByFunction} that tracks {@link UniqueModel} items by their `id` property.
|
|
3419
|
+
*
|
|
3420
|
+
* @param index - the item's index in the iterable
|
|
3421
|
+
* @param model - the model whose `id` is used as the tracking identity
|
|
3422
|
+
* @returns the model's unique `id` value
|
|
3283
3423
|
*/
|
|
3284
3424
|
declare const TRACK_BY_MODEL_ID: TrackByFunction<UniqueModel>;
|
|
3285
3425
|
/**
|
|
@@ -3289,10 +3429,16 @@ declare const TRACK_BY_MODEL_ID: TrackByFunction<UniqueModel>;
|
|
|
3289
3429
|
* ```ts
|
|
3290
3430
|
* readonly trackBy = trackByUniqueIdentifier<MyModel>();
|
|
3291
3431
|
* ```
|
|
3432
|
+
*
|
|
3433
|
+
* @returns a TrackByFunction that uses the item's `id` for identity tracking
|
|
3292
3434
|
*/
|
|
3293
3435
|
declare function trackByUniqueIdentifier<T extends UniqueModel>(): TrackByFunction<T>;
|
|
3294
3436
|
/**
|
|
3295
3437
|
* Angular {@link TrackByFunction} that tracks {@link ModelKeyRef} items by their `key` property.
|
|
3438
|
+
*
|
|
3439
|
+
* @param index - the item's index in the iterable
|
|
3440
|
+
* @param model - the model whose `key` is used as the tracking identity
|
|
3441
|
+
* @returns the model's `key` value
|
|
3296
3442
|
*/
|
|
3297
3443
|
declare const TRACK_BY_MODEL_KEY: TrackByFunction<ModelKeyRef>;
|
|
3298
3444
|
/**
|
|
@@ -3302,6 +3448,8 @@ declare const TRACK_BY_MODEL_KEY: TrackByFunction<ModelKeyRef>;
|
|
|
3302
3448
|
* ```ts
|
|
3303
3449
|
* readonly trackBy = trackByModelKeyRef<MyModelRef>();
|
|
3304
3450
|
* ```
|
|
3451
|
+
*
|
|
3452
|
+
* @returns a TrackByFunction that uses the item's `key` for identity tracking
|
|
3305
3453
|
*/
|
|
3306
3454
|
declare function trackByModelKeyRef<T extends ModelKeyRef>(): TrackByFunction<T>;
|
|
3307
3455
|
|
|
@@ -3326,7 +3474,7 @@ interface DbxSelectionValueListViewConfig<T, I extends DbxValueListItem<T> = Dbx
|
|
|
3326
3474
|
declare class DbxSelectionValueListViewContentComponent<T, I extends DbxValueListItem<T> = DbxValueListItem<T>> extends DbxValueListViewContentComponent<T, I> {
|
|
3327
3475
|
readonly multiple: _angular_core.InputSignal<Maybe<boolean>>;
|
|
3328
3476
|
readonly selectionMode: _angular_core.InputSignal<Maybe<DbxListSelectionMode>>;
|
|
3329
|
-
readonly trackByFunctionSignal: _angular_core.Signal<_angular_core.TrackByFunction<
|
|
3477
|
+
readonly trackByFunctionSignal: _angular_core.Signal<_angular_core.TrackByFunction<DbxValueListItem<unknown, unknown>> | ((index: number, item: _dereekb_dbx_web.DbxValueListItemConfig<T, I>) => any)>;
|
|
3330
3478
|
constructor();
|
|
3331
3479
|
matSelectionChanged(selection: MatSelectionListChange): void;
|
|
3332
3480
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxSelectionValueListViewContentComponent<any, any>, never>;
|
|
@@ -3787,22 +3935,32 @@ declare class DbxStyleService implements Destroyable {
|
|
|
3787
3935
|
toggleSuffix(suffix: DbxStyleClassSuffix, toggle?: Maybe<boolean>): void;
|
|
3788
3936
|
/**
|
|
3789
3937
|
* Returns the current style class suffix, if one is set.
|
|
3938
|
+
*
|
|
3939
|
+
* @returns the currently active style class suffix, or undefined if none is set
|
|
3790
3940
|
*/
|
|
3791
3941
|
get currentStyleClassSuffix(): Maybe<DbxStyleClassCleanSuffix>;
|
|
3792
3942
|
/**
|
|
3793
3943
|
* Directly sets the active style class suffix, or clears it if null/undefined.
|
|
3944
|
+
*
|
|
3945
|
+
* @param suffix - the suffix to activate, or nullish to clear the current suffix
|
|
3794
3946
|
*/
|
|
3795
3947
|
setStyleClassSuffix(suffix: Maybe<DbxStyleClassSuffix>): void;
|
|
3796
3948
|
/**
|
|
3797
3949
|
* Updates the default style configuration used when no override config is set.
|
|
3950
|
+
*
|
|
3951
|
+
* @param defaultConfig - the style configuration to use as the new default
|
|
3798
3952
|
*/
|
|
3799
3953
|
setDefaultConfig(defaultConfig: DbxStyleConfig): void;
|
|
3800
3954
|
/**
|
|
3801
3955
|
* Overrides the active style configuration with the given value or observable.
|
|
3956
|
+
*
|
|
3957
|
+
* @param config - a style configuration value or observable to set as the active override
|
|
3802
3958
|
*/
|
|
3803
3959
|
setConfig(config: ObservableOrValue<DbxStyleConfig>): void;
|
|
3804
3960
|
/**
|
|
3805
3961
|
* Clears the active config override if it matches the given reference, reverting to the default config.
|
|
3962
|
+
*
|
|
3963
|
+
* @param config - the config reference to compare against the current override
|
|
3806
3964
|
*/
|
|
3807
3965
|
unsetConfig(config: ObservableOrValue<DbxStyleConfig>): void;
|
|
3808
3966
|
destroy(): void;
|
|
@@ -3828,6 +3986,9 @@ interface ProvideDbxStyleServiceConfig {
|
|
|
3828
3986
|
* ```ts
|
|
3829
3987
|
* provideDbxStyleService({ dbxStyleConfig: { style: 'my-app', suffixes: new Set(['dark']) } });
|
|
3830
3988
|
* ```
|
|
3989
|
+
*
|
|
3990
|
+
* @param config - configuration specifying the default style and its allowed suffixes
|
|
3991
|
+
* @returns environment providers for the DbxStyleService and its default config token
|
|
3831
3992
|
*/
|
|
3832
3993
|
declare function provideDbxStyleService(config: ProvideDbxStyleServiceConfig): EnvironmentProviders;
|
|
3833
3994
|
|
|
@@ -4021,14 +4182,22 @@ declare class DbxLinkifyService {
|
|
|
4021
4182
|
register(entries: ArrayOrValue<DbxLinkifyServiceEntry>, override?: boolean): void;
|
|
4022
4183
|
/**
|
|
4023
4184
|
* Returns the default entry.
|
|
4185
|
+
*
|
|
4186
|
+
* @returns the default linkify service entry, or undefined if none is registered
|
|
4024
4187
|
*/
|
|
4025
4188
|
getDefaultEntry(): Maybe<DbxLinkifyServiceEntry>;
|
|
4026
4189
|
/**
|
|
4027
4190
|
* Returns the entry for the given type.
|
|
4191
|
+
*
|
|
4192
|
+
* @param type - the linkify string type to look up
|
|
4193
|
+
* @returns the registered entry for the given type, or undefined if not found
|
|
4028
4194
|
*/
|
|
4029
4195
|
getEntryRegisteredForType(type: DbxLinkifyStringType): Maybe<DbxLinkifyServiceEntry>;
|
|
4030
4196
|
/**
|
|
4031
4197
|
* Returns the entry for the given type, or the default type if there is no entry registered or the input type is null/undefined.
|
|
4198
|
+
*
|
|
4199
|
+
* @param type - the linkify string type to look up, or nullish to retrieve the default entry
|
|
4200
|
+
* @returns the matching entry, or the default entry if the type is not provided
|
|
4032
4201
|
*/
|
|
4033
4202
|
getEntry(type?: Maybe<DbxLinkifyStringType>): Maybe<DbxLinkifyServiceEntry>;
|
|
4034
4203
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxLinkifyService, never>;
|
|
@@ -4060,6 +4229,9 @@ interface ProvideDbxLinkifyConfig {
|
|
|
4060
4229
|
* })
|
|
4061
4230
|
* });
|
|
4062
4231
|
* ```
|
|
4232
|
+
*
|
|
4233
|
+
* @param config - configuration containing the factory function for creating the linkify service config
|
|
4234
|
+
* @returns environment providers that register the DbxLinkifyServiceConfig
|
|
4063
4235
|
*/
|
|
4064
4236
|
declare function provideDbxLinkify(config: ProvideDbxLinkifyConfig): EnvironmentProviders;
|
|
4065
4237
|
|
|
@@ -4084,15 +4256,25 @@ declare class DbxChipDirective {
|
|
|
4084
4256
|
* Configuration for a single chip displayed by {@link DbxTextChipsComponent}.
|
|
4085
4257
|
*/
|
|
4086
4258
|
interface TextChip<T = unknown> {
|
|
4087
|
-
/**
|
|
4259
|
+
/**
|
|
4260
|
+
* Display label for the chip.
|
|
4261
|
+
*/
|
|
4088
4262
|
text: string;
|
|
4089
|
-
/**
|
|
4263
|
+
/**
|
|
4264
|
+
* Optional tooltip shown on hover.
|
|
4265
|
+
*/
|
|
4090
4266
|
tooltip?: string;
|
|
4091
|
-
/**
|
|
4267
|
+
/**
|
|
4268
|
+
* Whether the chip appears selected.
|
|
4269
|
+
*/
|
|
4092
4270
|
selected?: boolean;
|
|
4093
|
-
/**
|
|
4271
|
+
/**
|
|
4272
|
+
* Theme color applied to the chip.
|
|
4273
|
+
*/
|
|
4094
4274
|
color?: 'primary' | 'accent' | 'warn' | undefined;
|
|
4095
|
-
/**
|
|
4275
|
+
/**
|
|
4276
|
+
* Arbitrary data payload associated with the chip.
|
|
4277
|
+
*/
|
|
4096
4278
|
data?: T;
|
|
4097
4279
|
}
|
|
4098
4280
|
/**
|
|
@@ -4366,6 +4548,9 @@ interface OverrideClickElementEffectConfig {
|
|
|
4366
4548
|
* childClickTarget: this.buttonElementRef
|
|
4367
4549
|
* });
|
|
4368
4550
|
* ```
|
|
4551
|
+
*
|
|
4552
|
+
* @param config - configuration specifying the click target, child element to intercept, and optional disabled signal
|
|
4553
|
+
* @returns the created Angular effect reference
|
|
4369
4554
|
*/
|
|
4370
4555
|
declare function overrideClickElementEffect(config: OverrideClickElementEffectConfig): _angular_core.EffectRef;
|
|
4371
4556
|
|
|
@@ -4383,7 +4568,7 @@ declare function overrideClickElementEffect(config: OverrideClickElementEffectCo
|
|
|
4383
4568
|
declare class DbxClickToCopyTextComponent {
|
|
4384
4569
|
readonly contentElementRef: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
4385
4570
|
readonly dbxClickToCopyText: _angular_core.Signal<DbxClickToCopyTextDirective | undefined>;
|
|
4386
|
-
readonly copyText: _angular_core.InputSignal<Maybe<string
|
|
4571
|
+
readonly copyText: _angular_core.InputSignal<Maybe<string>>;
|
|
4387
4572
|
readonly showIcon: _angular_core.InputSignal<Maybe<boolean>>;
|
|
4388
4573
|
readonly highlighted: _angular_core.InputSignal<boolean>;
|
|
4389
4574
|
readonly clipboardSnackbarMessagesConfig: _angular_core.InputSignal<Maybe<CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig>>;
|
|
@@ -4406,7 +4591,7 @@ declare class DbxTextModule {
|
|
|
4406
4591
|
|
|
4407
4592
|
declare class DbxLayoutModule {
|
|
4408
4593
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxLayoutModule, never>;
|
|
4409
|
-
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxLayoutModule, never,
|
|
4594
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxLayoutModule, never, [typeof DbxCompactDirective, typeof DbxFlexGroupDirective, typeof DbxFlexSizeDirective], [typeof DbxBarLayoutModule, typeof DbxCardBoxLayoutModule, typeof DbxColumnLayoutModule, typeof DbxCompactDirective, typeof DbxContentLayoutModule, typeof DbxFlagLayoutModule, typeof DbxFlexGroupDirective, typeof DbxFlexSizeDirective, typeof DbxSectionLayoutModule, typeof DbxStyleLayoutModule, typeof DbxTextModule]>;
|
|
4410
4595
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxLayoutModule>;
|
|
4411
4596
|
}
|
|
4412
4597
|
|
|
@@ -4419,21 +4604,37 @@ type DbxButtonType = 'basic' | 'raised' | 'stroked' | 'flat' | 'tonal' | 'icon';
|
|
|
4419
4604
|
* over button type, colors, spinner appearance, and floating action button mode.
|
|
4420
4605
|
*/
|
|
4421
4606
|
interface DbxButtonStyle {
|
|
4422
|
-
/**
|
|
4607
|
+
/**
|
|
4608
|
+
* Material button variant.
|
|
4609
|
+
*/
|
|
4423
4610
|
readonly type?: DbxButtonType;
|
|
4424
|
-
/**
|
|
4611
|
+
/**
|
|
4612
|
+
* Progress spinner mode (determinate or indeterminate).
|
|
4613
|
+
*/
|
|
4425
4614
|
readonly mode?: ProgressSpinnerMode;
|
|
4426
|
-
/**
|
|
4615
|
+
/**
|
|
4616
|
+
* Material theme palette or custom theme color for the button.
|
|
4617
|
+
*/
|
|
4427
4618
|
readonly color?: ThemePalette | DbxThemeColor;
|
|
4428
|
-
/**
|
|
4619
|
+
/**
|
|
4620
|
+
* Material theme palette or custom theme color for the loading spinner.
|
|
4621
|
+
*/
|
|
4429
4622
|
readonly spinnerColor?: ThemePalette | DbxThemeColor;
|
|
4430
|
-
/**
|
|
4623
|
+
/**
|
|
4624
|
+
* Custom CSS background color for the button.
|
|
4625
|
+
*/
|
|
4431
4626
|
readonly customButtonColor?: string;
|
|
4432
|
-
/**
|
|
4627
|
+
/**
|
|
4628
|
+
* Custom CSS text color for the button label.
|
|
4629
|
+
*/
|
|
4433
4630
|
readonly customTextColor?: string;
|
|
4434
|
-
/**
|
|
4631
|
+
/**
|
|
4632
|
+
* Custom CSS color for the spinner stroke.
|
|
4633
|
+
*/
|
|
4435
4634
|
readonly customSpinnerColor?: string;
|
|
4436
|
-
/**
|
|
4635
|
+
/**
|
|
4636
|
+
* Whether to render as a floating action button (FAB).
|
|
4637
|
+
*/
|
|
4437
4638
|
readonly fab?: boolean;
|
|
4438
4639
|
}
|
|
4439
4640
|
|
|
@@ -4442,64 +4643,116 @@ interface DbxButtonStyle {
|
|
|
4442
4643
|
* colors, spinner behavior, and button type.
|
|
4443
4644
|
*/
|
|
4444
4645
|
interface DbxProgressButtonConfig {
|
|
4445
|
-
/**
|
|
4646
|
+
/**
|
|
4647
|
+
* Current working state. A boolean enables indeterminate mode; a number (0-100) enables determinate mode.
|
|
4648
|
+
*/
|
|
4446
4649
|
readonly working?: Maybe<DbxButtonWorking>;
|
|
4447
|
-
/**
|
|
4650
|
+
/**
|
|
4651
|
+
* Button label text.
|
|
4652
|
+
*/
|
|
4448
4653
|
readonly text?: Maybe<string>;
|
|
4449
|
-
/**
|
|
4654
|
+
/**
|
|
4655
|
+
* Text displayed alongside the spinner while working.
|
|
4656
|
+
*/
|
|
4450
4657
|
readonly spinnerText?: Maybe<string>;
|
|
4451
|
-
/**
|
|
4658
|
+
/**
|
|
4659
|
+
* Theme color for the button itself.
|
|
4660
|
+
*/
|
|
4452
4661
|
readonly buttonColor?: Maybe<ThemePalette | DbxThemeColor>;
|
|
4453
|
-
/**
|
|
4662
|
+
/**
|
|
4663
|
+
* Theme color for the progress spinner.
|
|
4664
|
+
*/
|
|
4454
4665
|
readonly spinnerColor?: Maybe<ThemePalette | DbxThemeColor>;
|
|
4455
|
-
/**
|
|
4666
|
+
/**
|
|
4667
|
+
* Theme color for the progress bar (bar mode only).
|
|
4668
|
+
*/
|
|
4456
4669
|
readonly barColor?: Maybe<ThemePalette | DbxThemeColor>;
|
|
4457
|
-
/**
|
|
4670
|
+
/**
|
|
4671
|
+
* When true, renders only the icon button without text.
|
|
4672
|
+
*/
|
|
4458
4673
|
readonly iconOnly?: Maybe<boolean>;
|
|
4459
|
-
/**
|
|
4674
|
+
/**
|
|
4675
|
+
* Explicit spinner diameter in pixels.
|
|
4676
|
+
*/
|
|
4460
4677
|
readonly spinnerSize?: Maybe<number>;
|
|
4461
|
-
/**
|
|
4678
|
+
/**
|
|
4679
|
+
* Ratio of spinner size relative to button height (0-1).
|
|
4680
|
+
*/
|
|
4462
4681
|
readonly spinnerRatio?: Maybe<number>;
|
|
4463
|
-
/**
|
|
4682
|
+
/**
|
|
4683
|
+
* Spinner mode: determinate or indeterminate.
|
|
4684
|
+
*/
|
|
4464
4685
|
readonly mode?: Maybe<ProgressSpinnerMode>;
|
|
4465
|
-
/**
|
|
4686
|
+
/**
|
|
4687
|
+
* Whether the button stretches to full container width.
|
|
4688
|
+
*/
|
|
4466
4689
|
readonly fullWidth?: Maybe<boolean>;
|
|
4467
|
-
/**
|
|
4690
|
+
/**
|
|
4691
|
+
* Whether the button is disabled.
|
|
4692
|
+
*/
|
|
4468
4693
|
readonly disabled?: Maybe<boolean>;
|
|
4469
|
-
/**
|
|
4694
|
+
/**
|
|
4695
|
+
* Custom inline styles applied to the button element.
|
|
4696
|
+
*/
|
|
4470
4697
|
readonly customStyle?: Maybe<{
|
|
4471
4698
|
[key: string]: string;
|
|
4472
4699
|
}>;
|
|
4473
|
-
/**
|
|
4700
|
+
/**
|
|
4701
|
+
* Custom CSS class applied to the button element.
|
|
4702
|
+
*/
|
|
4474
4703
|
readonly customClass?: Maybe<string>;
|
|
4475
|
-
/**
|
|
4704
|
+
/**
|
|
4705
|
+
* Custom CSS color for the spinner stroke. Overrides `spinnerColor` when provided.
|
|
4706
|
+
*/
|
|
4476
4707
|
readonly customSpinnerColor?: Maybe<string>;
|
|
4477
|
-
/**
|
|
4708
|
+
/**
|
|
4709
|
+
* Icon configuration for the button.
|
|
4710
|
+
*/
|
|
4478
4711
|
readonly buttonIcon?: Maybe<DbxProgressButtonIcon>;
|
|
4479
|
-
/**
|
|
4712
|
+
/**
|
|
4713
|
+
* Identifier used for matching against global configuration.
|
|
4714
|
+
*/
|
|
4480
4715
|
readonly id?: Maybe<string>;
|
|
4481
|
-
/**
|
|
4716
|
+
/**
|
|
4717
|
+
* Material button variant to render.
|
|
4718
|
+
*/
|
|
4482
4719
|
readonly buttonType?: Maybe<DbxButtonType>;
|
|
4483
|
-
/**
|
|
4720
|
+
/**
|
|
4721
|
+
* HTML `type` attribute for the underlying button element (e.g. "submit", "button").
|
|
4722
|
+
*/
|
|
4484
4723
|
readonly buttonTypeAttribute?: Maybe<string>;
|
|
4485
|
-
/**
|
|
4724
|
+
/**
|
|
4725
|
+
* Whether to render as a floating action button (FAB).
|
|
4726
|
+
*/
|
|
4486
4727
|
readonly fab?: Maybe<boolean>;
|
|
4487
4728
|
}
|
|
4488
4729
|
/**
|
|
4489
4730
|
* Configuration for the icon displayed inside a progress button.
|
|
4490
4731
|
*/
|
|
4491
4732
|
interface DbxProgressButtonIcon {
|
|
4492
|
-
/**
|
|
4733
|
+
/**
|
|
4734
|
+
* Theme color for the icon.
|
|
4735
|
+
*/
|
|
4493
4736
|
readonly color?: Maybe<ThemePalette | DbxThemeColor>;
|
|
4494
|
-
/**
|
|
4737
|
+
/**
|
|
4738
|
+
* Material icon font ligature name (e.g. "save", "delete").
|
|
4739
|
+
*/
|
|
4495
4740
|
readonly fontIcon?: Maybe<string>;
|
|
4496
|
-
/**
|
|
4741
|
+
/**
|
|
4742
|
+
* Icon font set to use (e.g. for extended icon libraries).
|
|
4743
|
+
*/
|
|
4497
4744
|
readonly fontSet?: Maybe<string>;
|
|
4498
|
-
/**
|
|
4745
|
+
/**
|
|
4746
|
+
* Whether to render the icon inline with text.
|
|
4747
|
+
*/
|
|
4499
4748
|
readonly inline?: Maybe<boolean>;
|
|
4500
|
-
/**
|
|
4749
|
+
/**
|
|
4750
|
+
* SVG icon name registered with MatIconRegistry.
|
|
4751
|
+
*/
|
|
4501
4752
|
readonly svgIcon?: Maybe<string>;
|
|
4502
|
-
/**
|
|
4753
|
+
/**
|
|
4754
|
+
* Custom CSS class applied to the icon element.
|
|
4755
|
+
*/
|
|
4503
4756
|
readonly customClass?: Maybe<string>;
|
|
4504
4757
|
}
|
|
4505
4758
|
/**
|
|
@@ -4584,7 +4837,7 @@ declare class DbxProgressSpinnerButtonComponent extends AbstractProgressButtonDi
|
|
|
4584
4837
|
readonly buttonCssSignal: _angular_core.Signal<string | undefined>;
|
|
4585
4838
|
readonly showTextContentSignal: _angular_core.Signal<boolean>;
|
|
4586
4839
|
readonly showTextButtonIconSignal: _angular_core.Signal<false | Maybe<_dereekb_dbx_web.DbxProgressButtonIcon>>;
|
|
4587
|
-
readonly showIconSignal: _angular_core.Signal<boolean |
|
|
4840
|
+
readonly showIconSignal: _angular_core.Signal<boolean | _dereekb_util.MaybeNot>;
|
|
4588
4841
|
readonly customSpinnerStyleSignal: _angular_core.Signal<{
|
|
4589
4842
|
stroke: string;
|
|
4590
4843
|
} | undefined>;
|
|
@@ -4739,7 +4992,9 @@ declare class DbxErrorDefaultErrorWidgetComponent extends AbstractDbxErrorWidget
|
|
|
4739
4992
|
* Event emitted when the error icon button is clicked, containing the button's element reference for popover anchoring.
|
|
4740
4993
|
*/
|
|
4741
4994
|
interface DbxErrorViewButtonEvent {
|
|
4742
|
-
/**
|
|
4995
|
+
/**
|
|
4996
|
+
* The element reference of the clicked button, used as the popover origin.
|
|
4997
|
+
*/
|
|
4743
4998
|
readonly origin: ElementRef;
|
|
4744
4999
|
}
|
|
4745
5000
|
/**
|
|
@@ -4850,6 +5105,9 @@ declare class DbxActionErrorDirective {
|
|
|
4850
5105
|
* const pojoError = convertToPOJOServerErrorResponse(httpErrorResponse);
|
|
4851
5106
|
* console.log(pojoError.message);
|
|
4852
5107
|
* ```
|
|
5108
|
+
*
|
|
5109
|
+
* @param httpError - The HTTP error response or generic error object to convert.
|
|
5110
|
+
* @returns A plain JSON-serializable {@link ServerError} object.
|
|
4853
5111
|
*/
|
|
4854
5112
|
declare function convertToPOJOServerErrorResponse(httpError: HttpErrorResponse | object): ServerError;
|
|
4855
5113
|
/**
|
|
@@ -4865,6 +5123,9 @@ declare function convertToPOJOServerErrorResponse(httpError: HttpErrorResponse |
|
|
|
4865
5123
|
* console.log(serverError.status, serverError.message);
|
|
4866
5124
|
* }
|
|
4867
5125
|
* ```
|
|
5126
|
+
*
|
|
5127
|
+
* @param error - The HTTP error response or generic error object to convert.
|
|
5128
|
+
* @returns A {@link ServerErrorResponse} derived from the error, or `undefined` if the input is falsy.
|
|
4868
5129
|
*/
|
|
4869
5130
|
declare function convertToServerErrorResponse(error: HttpErrorResponse | object): ServerErrorResponse | undefined;
|
|
4870
5131
|
|
|
@@ -4912,14 +5173,18 @@ declare class DbxLoadingErrorDirective {
|
|
|
4912
5173
|
/**
|
|
4913
5174
|
* Configuration for error snackbar display, extending Material snackbar config but excluding `data` and `viewContainerRef`.
|
|
4914
5175
|
*/
|
|
4915
|
-
type DbxErrorSnackbarConfig = Omit<MatSnackBarConfig<
|
|
5176
|
+
type DbxErrorSnackbarConfig = Omit<MatSnackBarConfig<unknown>, 'data' | 'viewContainerRef'>;
|
|
4916
5177
|
/**
|
|
4917
5178
|
* Data passed to the error snackbar component via `MAT_SNACK_BAR_DATA`.
|
|
4918
5179
|
*/
|
|
4919
5180
|
interface DbxErrorSnackbarData<T extends ErrorInput = ErrorInput> {
|
|
4920
|
-
/**
|
|
5181
|
+
/**
|
|
5182
|
+
* The error to display in the snackbar.
|
|
5183
|
+
*/
|
|
4921
5184
|
readonly error: T;
|
|
4922
|
-
/**
|
|
5185
|
+
/**
|
|
5186
|
+
* Optional auto-dismiss duration in milliseconds. If omitted, the snackbar persists until manually dismissed.
|
|
5187
|
+
*/
|
|
4923
5188
|
readonly duration?: number;
|
|
4924
5189
|
}
|
|
4925
5190
|
/**
|
|
@@ -5160,9 +5425,13 @@ declare const DEFAULT_ERROR_POPOVER_KEY = "error";
|
|
|
5160
5425
|
* Configuration for opening an error popover via {@link DbxErrorPopoverComponent.openPopover}.
|
|
5161
5426
|
*/
|
|
5162
5427
|
interface DbxErrorPopoverConfig {
|
|
5163
|
-
/**
|
|
5428
|
+
/**
|
|
5429
|
+
* The element that the popover should be anchored to.
|
|
5430
|
+
*/
|
|
5164
5431
|
readonly origin: ElementRef;
|
|
5165
|
-
/**
|
|
5432
|
+
/**
|
|
5433
|
+
* The error to display in the popover.
|
|
5434
|
+
*/
|
|
5166
5435
|
readonly error: ReadableError;
|
|
5167
5436
|
}
|
|
5168
5437
|
/**
|
|
@@ -5310,6 +5579,9 @@ interface ServerErrorParams {
|
|
|
5310
5579
|
* const params = convertServerErrorParams(httpErrorResponse);
|
|
5311
5580
|
* store.dispatch(myErrorAction(params));
|
|
5312
5581
|
* ```
|
|
5582
|
+
*
|
|
5583
|
+
* @param httpError - The HTTP error response or generic error object to convert.
|
|
5584
|
+
* @returns A {@link ServerErrorParams} object wrapping the converted server error.
|
|
5313
5585
|
*/
|
|
5314
5586
|
declare function convertServerErrorParams(httpError: HttpErrorResponse | object): ServerErrorParams;
|
|
5315
5587
|
/**
|
|
@@ -5324,6 +5596,10 @@ declare function convertServerErrorParams(httpError: HttpErrorResponse | object)
|
|
|
5324
5596
|
* ))
|
|
5325
5597
|
* );
|
|
5326
5598
|
* ```
|
|
5599
|
+
*
|
|
5600
|
+
* @param action - The NgRx action creator to dispatch with the converted error params.
|
|
5601
|
+
* @param mapError - Optional function to transform the {@link ServerErrorParams} before dispatching. Defaults to identity.
|
|
5602
|
+
* @returns An RxJS operator that catches errors and emits the corresponding error action.
|
|
5327
5603
|
*/
|
|
5328
5604
|
declare function catchErrorServerParams<E extends ServerErrorParams, T extends string>(action: ActionCreator<T, (props: E) => E & Action<T>>, mapError?: (error: ServerErrorParams) => E): MonoTypeOperatorFunction<E & Action<T>>;
|
|
5329
5605
|
|
|
@@ -5335,29 +5611,41 @@ interface DbxModelModuleStateConfiguration {
|
|
|
5335
5611
|
/**
|
|
5336
5612
|
* NgRx feature key for the model module configuration state slice.
|
|
5337
5613
|
*/
|
|
5338
|
-
declare const
|
|
5614
|
+
declare const STATE_FEATURE_KEY = "model.module.config";
|
|
5339
5615
|
|
|
5340
|
-
declare const
|
|
5616
|
+
declare const FEATURE_KEY = "app.model";
|
|
5341
5617
|
interface DbxModelState {
|
|
5342
|
-
[
|
|
5618
|
+
[STATE_FEATURE_KEY]: DbxModelModuleStateConfiguration;
|
|
5343
5619
|
}
|
|
5344
5620
|
interface State {
|
|
5345
|
-
[
|
|
5621
|
+
[FEATURE_KEY]: DbxModelState;
|
|
5346
5622
|
}
|
|
5623
|
+
/**
|
|
5624
|
+
* Combined reducer for the DbxModel NgRx feature state, delegating to sub-reducers for each state slice.
|
|
5625
|
+
*
|
|
5626
|
+
* @param state The current DbxModel feature state, or undefined for initial state
|
|
5627
|
+
* @param action The NgRx action to process
|
|
5628
|
+
* @returns The new DbxModelState produced by the combined sub-reducers
|
|
5629
|
+
*/
|
|
5347
5630
|
declare function reducers(state: DbxModelState | undefined, action: Action): {
|
|
5348
5631
|
"model.module.config": DbxModelModuleStateConfiguration;
|
|
5349
5632
|
};
|
|
5350
5633
|
declare const selectDbxModelFeature: _ngrx_store.MemoizedSelector<State, DbxModelState, _ngrx_store.DefaultProjectorFn<DbxModelState>>;
|
|
5351
5634
|
declare const selectDbxModelFeatureObjectModuleConfig: _ngrx_store.MemoizedSelector<State, DbxModelModuleStateConfiguration, (s1: DbxModelState) => DbxModelModuleStateConfiguration>;
|
|
5635
|
+
/**
|
|
5636
|
+
* @deprecated use FEATURE_KEY instead.
|
|
5637
|
+
*/
|
|
5638
|
+
declare const featureKey = "app.model";
|
|
5352
5639
|
|
|
5353
5640
|
type index_d$1_DbxModelState = DbxModelState;
|
|
5641
|
+
declare const index_d$1_FEATURE_KEY: typeof FEATURE_KEY;
|
|
5354
5642
|
type index_d$1_State = State;
|
|
5355
5643
|
declare const index_d$1_featureKey: typeof featureKey;
|
|
5356
5644
|
declare const index_d$1_reducers: typeof reducers;
|
|
5357
5645
|
declare const index_d$1_selectDbxModelFeature: typeof selectDbxModelFeature;
|
|
5358
5646
|
declare const index_d$1_selectDbxModelFeatureObjectModuleConfig: typeof selectDbxModelFeatureObjectModuleConfig;
|
|
5359
5647
|
declare namespace index_d$1 {
|
|
5360
|
-
export { index_d$1_featureKey as featureKey, index_d$1_reducers as reducers, index_d$1_selectDbxModelFeature as selectDbxModelFeature, index_d$1_selectDbxModelFeatureObjectModuleConfig as selectDbxModelFeatureObjectModuleConfig };
|
|
5648
|
+
export { index_d$1_FEATURE_KEY as FEATURE_KEY, index_d$1_featureKey as featureKey, index_d$1_reducers as reducers, index_d$1_selectDbxModelFeature as selectDbxModelFeature, index_d$1_selectDbxModelFeatureObjectModuleConfig as selectDbxModelFeatureObjectModuleConfig };
|
|
5361
5649
|
export type { index_d$1_DbxModelState as DbxModelState, index_d$1_State as State };
|
|
5362
5650
|
}
|
|
5363
5651
|
|
|
@@ -5453,6 +5741,9 @@ interface DbxModelViewTrackerEventSet {
|
|
|
5453
5741
|
* ```typescript
|
|
5454
5742
|
* const keys = allDbxModelViewTrackerEventSetModelKeys(eventSet);
|
|
5455
5743
|
* ```
|
|
5744
|
+
*
|
|
5745
|
+
* @param eventSet - The event set from which to extract model keys
|
|
5746
|
+
* @returns Array of model keys from all events in the set
|
|
5456
5747
|
*/
|
|
5457
5748
|
declare function allDbxModelViewTrackerEventSetModelKeys(eventSet: DbxModelViewTrackerEventSet): ModelKey[];
|
|
5458
5749
|
/**
|
|
@@ -5462,6 +5753,9 @@ declare function allDbxModelViewTrackerEventSetModelKeys(eventSet: DbxModelViewT
|
|
|
5462
5753
|
* ```typescript
|
|
5463
5754
|
* const keys = allDbxModelViewTrackerEventModelKeys(events);
|
|
5464
5755
|
* ```
|
|
5756
|
+
*
|
|
5757
|
+
* @param events - Array of view tracker events from which to extract model keys
|
|
5758
|
+
* @returns Array of model keys, one per event
|
|
5465
5759
|
*/
|
|
5466
5760
|
declare function allDbxModelViewTrackerEventModelKeys(events: DbxModelViewTrackerEvent[]): ModelKey[];
|
|
5467
5761
|
|
|
@@ -5472,6 +5766,9 @@ declare function allDbxModelViewTrackerEventModelKeys(events: DbxModelViewTracke
|
|
|
5472
5766
|
* ```typescript
|
|
5473
5767
|
* const accessor = defaultDbxModelViewTrackerStorageAccessorFactory(storageAccessorFactory);
|
|
5474
5768
|
* ```
|
|
5769
|
+
*
|
|
5770
|
+
* @param storageAccessorFactory - The factory used to create typed storage accessors
|
|
5771
|
+
* @returns A storage accessor configured with the `mtvs` prefix for model view tracker events
|
|
5475
5772
|
*/
|
|
5476
5773
|
declare function defaultDbxModelViewTrackerStorageAccessorFactory(storageAccessorFactory: SimpleStorageAccessorFactory): StorageAccessor<DbxModelViewTrackerEventSet>;
|
|
5477
5774
|
/**
|
|
@@ -5488,6 +5785,10 @@ declare class DbxModelObjectStateService {
|
|
|
5488
5785
|
readonly store: Store<any>;
|
|
5489
5786
|
/**
|
|
5490
5787
|
* Emit a model viewed event.
|
|
5788
|
+
*
|
|
5789
|
+
* @param params - The model viewed event parameters
|
|
5790
|
+
* @param params.modelKeyTypeNamePair - Identifies the model that was viewed
|
|
5791
|
+
* @param params.context - Optional context describing how the model was viewed
|
|
5491
5792
|
*/
|
|
5492
5793
|
emitModelViewEvent({ modelKeyTypeNamePair, context }: DbxModelObjectViewedParams): void;
|
|
5493
5794
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxModelObjectStateService, never>;
|
|
@@ -5506,6 +5807,8 @@ declare class DbxModelTrackerService {
|
|
|
5506
5807
|
readonly newEvent$: Observable<DbxModelViewTrackerEvent>;
|
|
5507
5808
|
/**
|
|
5508
5809
|
* The default storage folder used when no folder is specified in tracking calls.
|
|
5810
|
+
*
|
|
5811
|
+
* @returns The current default folder name, or undefined if not set
|
|
5509
5812
|
*/
|
|
5510
5813
|
get defaultFolder(): Maybe<string>;
|
|
5511
5814
|
set defaultFolder(folder: Maybe<string>);
|
|
@@ -5521,12 +5824,14 @@ declare class DbxModelTrackerService {
|
|
|
5521
5824
|
* Returns all recorded view events for the given folder, sorted by most recent first.
|
|
5522
5825
|
*
|
|
5523
5826
|
* @param folder - Storage folder; defaults to {@link defaultFolder}
|
|
5827
|
+
* @returns Observable of view events sorted by most recent first
|
|
5524
5828
|
*/
|
|
5525
5829
|
getAllViewEvents(folder?: Maybe<string>): Observable<DbxModelViewTrackerEvent[]>;
|
|
5526
5830
|
/**
|
|
5527
5831
|
* Returns the complete event set (events and last-update timestamp) for the given folder.
|
|
5528
5832
|
*
|
|
5529
5833
|
* @param folder - Storage folder; defaults to {@link defaultFolder}
|
|
5834
|
+
* @returns Observable of the complete event set including events and last-update timestamp
|
|
5530
5835
|
*/
|
|
5531
5836
|
getViewEventSet(folder?: Maybe<string>): Observable<DbxModelViewTrackerEventSet>;
|
|
5532
5837
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxModelTrackerService, never>;
|
|
@@ -5559,12 +5864,14 @@ declare class DbxModelViewTrackerStorage {
|
|
|
5559
5864
|
* Returns all stored view events for the given folder.
|
|
5560
5865
|
*
|
|
5561
5866
|
* @param folder - Optional folder name; defaults to `'default'`
|
|
5867
|
+
* @returns Observable of all view tracker events in the folder
|
|
5562
5868
|
*/
|
|
5563
5869
|
getAllEvents(folder?: Maybe<string>): Observable<DbxModelViewTrackerEvent[]>;
|
|
5564
5870
|
/**
|
|
5565
5871
|
* Returns the complete event set for the given folder.
|
|
5566
5872
|
*
|
|
5567
5873
|
* @param folder - Optional folder name; defaults to `'default'`
|
|
5874
|
+
* @returns Observable of the event set containing events and the last-update timestamp
|
|
5568
5875
|
*/
|
|
5569
5876
|
getEventSet(folder?: Maybe<string>): Observable<DbxModelViewTrackerEventSet>;
|
|
5570
5877
|
private _getEventSetForStorageKey;
|
|
@@ -5572,6 +5879,7 @@ declare class DbxModelViewTrackerStorage {
|
|
|
5572
5879
|
* Computes the storage key for a given folder name.
|
|
5573
5880
|
*
|
|
5574
5881
|
* @param folder - Optional folder name; defaults to `'default'`
|
|
5882
|
+
* @returns The computed storage key string combining the base key and folder name
|
|
5575
5883
|
*/
|
|
5576
5884
|
getStorageKeyForFolder(folder?: Maybe<string>): string;
|
|
5577
5885
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxModelViewTrackerStorage, never>;
|
|
@@ -5680,6 +5988,7 @@ declare class DbxModelTypesService<I extends DbxModelTypeInfo = DbxModelTypeInfo
|
|
|
5680
5988
|
* Returns an observable of the Material icon name for the given model type.
|
|
5681
5989
|
*
|
|
5682
5990
|
* @param type - The model type string to look up
|
|
5991
|
+
* @returns Observable emitting the icon name for the given model type
|
|
5683
5992
|
*/
|
|
5684
5993
|
iconForType(type: ModelTypeString): Observable<string>;
|
|
5685
5994
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxModelTypesService<any>, never>;
|
|
@@ -5840,7 +6149,7 @@ interface DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog extend
|
|
|
5840
6149
|
/**
|
|
5841
6150
|
* Used for previewing a src url and embedMimeType in a dialog.
|
|
5842
6151
|
*/
|
|
5843
|
-
type DbxWebFilePreviewServicePreviewDialogFunction = (input: DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog) => MatDialogRef<
|
|
6152
|
+
type DbxWebFilePreviewServicePreviewDialogFunction = (input: DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog) => MatDialogRef<unknown, unknown>;
|
|
5844
6153
|
/**
|
|
5845
6154
|
* Configuration for a preview entry.
|
|
5846
6155
|
*/
|
|
@@ -5872,7 +6181,7 @@ interface DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput extend
|
|
|
5872
6181
|
/**
|
|
5873
6182
|
* Used for previewing a src url and embedMimeType in a dialog.
|
|
5874
6183
|
*/
|
|
5875
|
-
type DbxWebFilePreviewServicePreviewDialogWithComponentFunction = (input: DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput) => MatDialogRef<
|
|
6184
|
+
type DbxWebFilePreviewServicePreviewDialogWithComponentFunction = (input: DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput) => MatDialogRef<unknown, unknown>;
|
|
5876
6185
|
/**
|
|
5877
6186
|
* @deprecated use DbxWebFilePreviewServicePreviewDialogFunction instead.
|
|
5878
6187
|
*/
|
|
@@ -5885,6 +6194,9 @@ declare const DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN: InjectionToken<DbxWebF
|
|
|
5885
6194
|
/**
|
|
5886
6195
|
* Creates a provider that registers the given entries with the {@link DbxWebFilePreviewService} via the {@link DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN}.
|
|
5887
6196
|
*
|
|
6197
|
+
* @param entries - Array of preview service entries to register, each mapping a MIME type to its preview component
|
|
6198
|
+
* @returns A provider configuration that supplies the entries via the injection token
|
|
6199
|
+
*
|
|
5888
6200
|
* @example
|
|
5889
6201
|
* ```typescript
|
|
5890
6202
|
* provideDbxWebFilePreviewServiceEntries([DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY]);
|
|
@@ -5894,15 +6206,18 @@ declare function provideDbxWebFilePreviewServiceEntries(entries: DbxWebFilePrevi
|
|
|
5894
6206
|
provide: InjectionToken<DbxWebFilePreviewServiceEntry[]>;
|
|
5895
6207
|
useValue: DbxWebFilePreviewServiceEntry[];
|
|
5896
6208
|
};
|
|
5897
|
-
/**
|
|
5898
|
-
* Default preset for previewing a file using a DbxEmbedDialogComponent.
|
|
5899
|
-
*/
|
|
5900
6209
|
/**
|
|
5901
6210
|
* Default preview component function that embeds files using {@link DbxEmbedComponent}. Images are rendered with an `img` element; all other types use `embed`.
|
|
6211
|
+
*
|
|
6212
|
+
* @param input - The preview input containing blob data, source URL, and MIME type information
|
|
6213
|
+
* @returns An injection component config that initializes a {@link DbxEmbedComponent} with the appropriate embed element and content
|
|
5902
6214
|
*/
|
|
5903
6215
|
declare const DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_PREVIEW_COMPONENT_FUNCTION: DbxWebFilePreviewServicePreviewComponentFunction;
|
|
5904
6216
|
/**
|
|
5905
6217
|
* Default dialog-with-component function that opens the preview component inside a {@link DbxInjectionDialogComponent} with a close button.
|
|
6218
|
+
*
|
|
6219
|
+
* @param input - The dialog input containing the MatDialog instance and the component config to display
|
|
6220
|
+
* @returns A MatDialogRef for the opened injection dialog
|
|
5906
6221
|
*/
|
|
5907
6222
|
declare const DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTION: DbxWebFilePreviewServicePreviewDialogWithComponentFunction;
|
|
5908
6223
|
/**
|
|
@@ -5911,7 +6226,7 @@ declare const DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTIO
|
|
|
5911
6226
|
declare class DbxWebFilePreviewService {
|
|
5912
6227
|
readonly matDialog: MatDialog;
|
|
5913
6228
|
private readonly _entries;
|
|
5914
|
-
constructor(
|
|
6229
|
+
constructor();
|
|
5915
6230
|
private _defaultPreviewComponentFunction;
|
|
5916
6231
|
private _defaultPreviewDialogWithComponentFunction;
|
|
5917
6232
|
/**
|
|
@@ -5928,16 +6243,21 @@ declare class DbxWebFilePreviewService {
|
|
|
5928
6243
|
registerPreviewEntry(entry: DbxWebFilePreviewServiceEntry): void;
|
|
5929
6244
|
/**
|
|
5930
6245
|
* Overrides the default preview component function used when no MIME-specific entry is registered.
|
|
6246
|
+
*
|
|
6247
|
+
* @param previewFunction - The preview component function to use as the new default
|
|
5931
6248
|
*/
|
|
5932
6249
|
setDefaultPreviewComponentFunction(previewFunction: DbxWebFilePreviewServicePreviewComponentFunction): void;
|
|
5933
6250
|
/**
|
|
5934
6251
|
* Overrides the default dialog-with-component function used when no MIME-specific dialog handler is registered.
|
|
6252
|
+
*
|
|
6253
|
+
* @param previewDialogWithComponentFunction - The dialog-with-component function to use as the new default
|
|
5935
6254
|
*/
|
|
5936
6255
|
setDefaultPreviewDialogWithComponentFunction(previewDialogWithComponentFunction: DbxWebFilePreviewServicePreviewDialogWithComponentFunction): void;
|
|
5937
6256
|
/**
|
|
5938
6257
|
* Creates an injection component config for previewing a file. Uses a MIME-specific preview function if registered, otherwise falls back to the default.
|
|
5939
6258
|
*
|
|
5940
6259
|
* @param input - The preview input containing blob, URL, and MIME type information
|
|
6260
|
+
* @returns An injection component config suitable for rendering the file preview
|
|
5941
6261
|
*/
|
|
5942
6262
|
createPreviewConfig(input: DbxWebFilePreviewServicePreviewComponentFunctionInput): dist_packages_dbx_core_types_dereekb_dbx_core.DbxInjectionComponentConfig<any>;
|
|
5943
6263
|
/**
|
|
@@ -5946,8 +6266,8 @@ declare class DbxWebFilePreviewService {
|
|
|
5946
6266
|
* @param input - The dialog input containing file data and MIME type
|
|
5947
6267
|
* @returns Reference to the opened dialog
|
|
5948
6268
|
*/
|
|
5949
|
-
openPreviewDialog(input: DbxWebFilePreviewServicePreviewDialogFunctionInput): MatDialogRef<
|
|
5950
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxWebFilePreviewService,
|
|
6269
|
+
openPreviewDialog(input: DbxWebFilePreviewServicePreviewDialogFunctionInput): MatDialogRef<unknown, unknown>;
|
|
6270
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxWebFilePreviewService, never>;
|
|
5951
6271
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxWebFilePreviewService>;
|
|
5952
6272
|
}
|
|
5953
6273
|
|
|
@@ -5973,6 +6293,9 @@ declare class DbxWebFilePreviewComponent {
|
|
|
5973
6293
|
|
|
5974
6294
|
/**
|
|
5975
6295
|
* Preview component function preset that renders zip files using {@link DbxZipPreviewComponent}.
|
|
6296
|
+
*
|
|
6297
|
+
* @param input - The preview input containing the source URL and MIME type of the zip file
|
|
6298
|
+
* @returns An injection component config that initializes a {@link DbxZipPreviewComponent} with the given source URL
|
|
5976
6299
|
*/
|
|
5977
6300
|
declare const DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET: DbxWebFilePreviewServicePreviewComponentFunction;
|
|
5978
6301
|
/**
|
|
@@ -6069,8 +6392,9 @@ declare class DbxWidgetService {
|
|
|
6069
6392
|
/**
|
|
6070
6393
|
* Used to register an entry. If an entry with the same type is already registered, this will override it by default.
|
|
6071
6394
|
*
|
|
6072
|
-
* @param entry
|
|
6073
|
-
* @param override
|
|
6395
|
+
* @param entry - The widget entry mapping a type identifier to its component class
|
|
6396
|
+
* @param override - Whether to replace an existing entry with the same type. Defaults to true.
|
|
6397
|
+
* @returns True if the entry was registered, false if an entry with the same type already exists and override is false
|
|
6074
6398
|
*/
|
|
6075
6399
|
register(entry: DbxWidgetEntry, override?: boolean): boolean;
|
|
6076
6400
|
getWidgetIdentifiers(): DbxWidgetType[];
|
|
@@ -6166,6 +6490,9 @@ type DbxZipBlobPreviewEntryTreeRoot = SlashPathDirectoryTreeRoot<Entry, DbxZipBl
|
|
|
6166
6490
|
/**
|
|
6167
6491
|
* Builds a directory tree from an array of zip archive entries, enriching each node with MIME type detection and blob retrieval capability.
|
|
6168
6492
|
*
|
|
6493
|
+
* @param entries - Array of zip archive entries to build the tree from, or null/undefined for an empty tree
|
|
6494
|
+
* @returns The root node of the constructed directory tree with MIME types and blob getters attached
|
|
6495
|
+
*
|
|
6169
6496
|
* @example
|
|
6170
6497
|
* ```typescript
|
|
6171
6498
|
* const root = dbxZipBlobPreviewEntryTreeFromEntries(zipEntries);
|
|
@@ -6616,6 +6943,8 @@ declare class DbxAngularRouterSegueAnchorComponent extends AbstractDbxSegueAncho
|
|
|
6616
6943
|
* providers: [provideDbxRouterWebAngularRouterProviderConfig()]
|
|
6617
6944
|
* });
|
|
6618
6945
|
* ```
|
|
6946
|
+
*
|
|
6947
|
+
* @returns environment providers that configure the Angular Router-based segue anchor component
|
|
6619
6948
|
*/
|
|
6620
6949
|
declare function provideDbxRouterWebAngularRouterProviderConfig(): EnvironmentProviders;
|
|
6621
6950
|
|
|
@@ -6646,6 +6975,8 @@ declare class DbxUIRouterSegueAnchorComponent extends AbstractDbxSegueAnchorDire
|
|
|
6646
6975
|
* providers: [provideDbxRouterWebUiRouterProviderConfig()]
|
|
6647
6976
|
* });
|
|
6648
6977
|
* ```
|
|
6978
|
+
*
|
|
6979
|
+
* @returns environment providers that configure the UIRouter-based segue anchor component
|
|
6649
6980
|
*/
|
|
6650
6981
|
declare function provideDbxRouterWebUiRouterProviderConfig(): EnvironmentProviders;
|
|
6651
6982
|
|
|
@@ -6881,6 +7212,9 @@ type DbxDialogContentConfig = Omit<MatDialogConfig, 'viewContainerRef' | 'inject
|
|
|
6881
7212
|
/**
|
|
6882
7213
|
* Sanitizes a {@link DbxDialogContentConfig} by normalizing the panelClass into an array.
|
|
6883
7214
|
*
|
|
7215
|
+
* @param input - The dialog content config to sanitize, or null/undefined
|
|
7216
|
+
* @returns A new config with panelClass normalized to an array of CSS class strings
|
|
7217
|
+
*
|
|
6884
7218
|
* @example
|
|
6885
7219
|
* ```ts
|
|
6886
7220
|
* const config = sanitizeDbxDialogContentConfig({ panelClass: 'my-panel my-other-panel' });
|
|
@@ -6998,6 +7332,9 @@ declare class DbxHelpContextService {
|
|
|
6998
7332
|
* // In a component or directive constructor
|
|
6999
7333
|
* const destroy = registerHelpContextKeysWithDbxHelpContextService(of(['feature-help', 'general-help']));
|
|
7000
7334
|
* ```
|
|
7335
|
+
*
|
|
7336
|
+
* @param helpContextKeys - Observable or static array of help context keys to register with the service
|
|
7337
|
+
* @returns A destroy function that unregisters the help context keys when called
|
|
7001
7338
|
*/
|
|
7002
7339
|
declare function registerHelpContextKeysWithDbxHelpContextService(helpContextKeys: ObservableOrValue<DbxHelpContextKey[]>): DestroyFunction;
|
|
7003
7340
|
|
|
@@ -7097,29 +7434,39 @@ declare class DbxHelpWidgetService {
|
|
|
7097
7434
|
private _helpListFooterComponentConfig;
|
|
7098
7435
|
private _defaultIcon;
|
|
7099
7436
|
private _popoverHeaderComponentConfig;
|
|
7100
|
-
constructor(
|
|
7437
|
+
constructor();
|
|
7101
7438
|
/**
|
|
7102
7439
|
* Returns the component class used for unrecognized help context keys.
|
|
7440
|
+
*
|
|
7441
|
+
* @returns The default widget component class, or undefined if not set
|
|
7103
7442
|
*/
|
|
7104
7443
|
getDefaultWidgetComponentClass(): Maybe<Type<unknown>>;
|
|
7105
7444
|
setDefaultWidgetComponentClass(componentClass: Maybe<Type<unknown>>): void;
|
|
7106
7445
|
/**
|
|
7107
7446
|
* Returns the default icon used for help entries without a specific icon.
|
|
7447
|
+
*
|
|
7448
|
+
* @returns The default icon string, or undefined if not set
|
|
7108
7449
|
*/
|
|
7109
7450
|
getDefaultIcon(): Maybe<string>;
|
|
7110
7451
|
setDefaultIcon(icon: Maybe<string>): void;
|
|
7111
7452
|
/**
|
|
7112
7453
|
* Returns the component config displayed in the popover header, if set.
|
|
7454
|
+
*
|
|
7455
|
+
* @returns The popover header component config, or undefined if not set
|
|
7113
7456
|
*/
|
|
7114
7457
|
getPopoverHeaderComponentConfig(): Maybe<DbxInjectionComponentConfig>;
|
|
7115
7458
|
setPopoverHeaderComponentConfig(componentConfig: Maybe<DbxInjectionComponentConfig>): void;
|
|
7116
7459
|
/**
|
|
7117
7460
|
* Returns the component config displayed at the top of the help list view, if set.
|
|
7461
|
+
*
|
|
7462
|
+
* @returns The help list header component config, or undefined if not set
|
|
7118
7463
|
*/
|
|
7119
7464
|
getHelpListHeaderComponentConfig(): Maybe<DbxInjectionComponentConfig>;
|
|
7120
7465
|
setHelpListHeaderComponentConfig(componentConfig: Maybe<DbxInjectionComponentConfig>): void;
|
|
7121
7466
|
/**
|
|
7122
7467
|
* Returns the component config displayed at the bottom of the help list view, if set.
|
|
7468
|
+
*
|
|
7469
|
+
* @returns The help list footer component config, or undefined if not set
|
|
7123
7470
|
*/
|
|
7124
7471
|
getHelpListFooterComponentConfig(): Maybe<DbxInjectionComponentConfig>;
|
|
7125
7472
|
setHelpListFooterComponentConfig(componentConfig: Maybe<DbxInjectionComponentConfig>): void;
|
|
@@ -7130,33 +7477,43 @@ declare class DbxHelpWidgetService {
|
|
|
7130
7477
|
*
|
|
7131
7478
|
* @param entries The entries to register
|
|
7132
7479
|
* @param override Whether to override existing entries (default: true)
|
|
7480
|
+
* @returns Always returns true after registration completes
|
|
7133
7481
|
*/
|
|
7134
7482
|
register(entries: ArrayOrValue<DbxHelpWidgetServiceEntry>, override?: boolean): boolean;
|
|
7135
7483
|
/**
|
|
7136
7484
|
* Returns all currently registered help context keys.
|
|
7485
|
+
*
|
|
7486
|
+
* @returns Array of all registered help context keys
|
|
7137
7487
|
*/
|
|
7138
7488
|
getAllRegisteredHelpContextKeys(): DbxHelpContextKey[];
|
|
7139
7489
|
/**
|
|
7140
7490
|
* Retrieves the widget entry for a given help context key. Falls back to a default entry if a default widget component class is configured.
|
|
7141
7491
|
*
|
|
7142
7492
|
* @param helpContextKey - The help context key to look up
|
|
7493
|
+
* @returns The matching widget entry, a default entry if a default component class is configured, or undefined
|
|
7143
7494
|
*/
|
|
7144
7495
|
getHelpWidgetEntry(helpContextKey: DbxHelpContextKey): Maybe<DbxHelpWidgetServiceEntry>;
|
|
7145
7496
|
/**
|
|
7146
7497
|
* Retrieves widget entries for multiple help context keys, filtering out any unresolvable keys.
|
|
7147
7498
|
*
|
|
7148
7499
|
* @param helpContextKeys - Array of help context keys to look up
|
|
7500
|
+
* @returns Array of resolved widget entries, excluding any keys that could not be resolved
|
|
7149
7501
|
*/
|
|
7150
7502
|
getHelpWidgetEntriesForHelpContextKeys(helpContextKeys: DbxHelpContextKey[]): DbxHelpWidgetServiceEntry[];
|
|
7151
7503
|
/**
|
|
7152
7504
|
* Checks whether a widget entry is registered for the given help context key.
|
|
7505
|
+
*
|
|
7506
|
+
* @param context - The help context key to check
|
|
7507
|
+
* @returns True if a widget entry exists for the given key
|
|
7153
7508
|
*/
|
|
7154
7509
|
hasHelpWidgetEntry(context: DbxHelpContextKey): boolean;
|
|
7155
7510
|
/**
|
|
7156
7511
|
* Returns a cached map of help context keys to their sort priority values.
|
|
7512
|
+
*
|
|
7513
|
+
* @returns Map of help context keys to their numeric sort priorities
|
|
7157
7514
|
*/
|
|
7158
7515
|
getSortPriorityMap(): Map<string, number>;
|
|
7159
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxHelpWidgetService,
|
|
7516
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxHelpWidgetService, never>;
|
|
7160
7517
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxHelpWidgetService>;
|
|
7161
7518
|
}
|
|
7162
7519
|
|
|
@@ -7359,8 +7716,8 @@ declare abstract class AbstractPopoverRefDirective<T = unknown, R = unknown> {
|
|
|
7359
7716
|
showPopover(origin?: ElementRef): void;
|
|
7360
7717
|
private _showPopoverRef;
|
|
7361
7718
|
protected abstract _makePopoverRef(origin?: ElementRef): NgPopoverRef<T, R>;
|
|
7362
|
-
protected _afterOpened(
|
|
7363
|
-
protected _afterClosed(
|
|
7719
|
+
protected _afterOpened(_popoverRef: NgPopoverRef<T, R>): void;
|
|
7720
|
+
protected _afterClosed(_value: NgPopoverCloseEvent<R>): void;
|
|
7364
7721
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractPopoverRefDirective<any, any>, never>;
|
|
7365
7722
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractPopoverRefDirective<any, any>, never, never, {}, {}, never, never, true, never>;
|
|
7366
7723
|
}
|
|
@@ -7521,6 +7878,11 @@ interface DbxPresetFilterMenuConfig {
|
|
|
7521
7878
|
/**
|
|
7522
7879
|
* Creates an observable that emits the button text for a preset filter menu based on the current selection.
|
|
7523
7880
|
*
|
|
7881
|
+
* @param config$ - Observable of the preset filter menu configuration
|
|
7882
|
+
* @param selection$ - Observable of the currently selected preset, used to derive the display title
|
|
7883
|
+
* @param defaultText - Fallback text when no selection or unknownSelectionText is configured. Defaults to 'Filter'.
|
|
7884
|
+
* @returns An observable emitting the resolved button text string
|
|
7885
|
+
*
|
|
7524
7886
|
* @example
|
|
7525
7887
|
* ```ts
|
|
7526
7888
|
* const text$ = dbxPresetFilterMenuButtonTextObservable(config$, selectedPreset$);
|
|
@@ -7530,6 +7892,11 @@ declare function dbxPresetFilterMenuButtonTextObservable(config$: Observable<Dbx
|
|
|
7530
7892
|
/**
|
|
7531
7893
|
* Creates an observable that emits the button icon for a preset filter menu based on the current selection and config.
|
|
7532
7894
|
*
|
|
7895
|
+
* @param config$ - Observable of the preset filter menu configuration controlling icon behavior
|
|
7896
|
+
* @param selection$ - Observable of the currently selected preset, used to derive the display icon
|
|
7897
|
+
* @param defaultIcon - Fallback icon when no filterIcon is configured. Defaults to 'arrow_drop_down'.
|
|
7898
|
+
* @returns An observable emitting the resolved icon string, or undefined when no icon should be shown
|
|
7899
|
+
*
|
|
7533
7900
|
* @example
|
|
7534
7901
|
* ```ts
|
|
7535
7902
|
* const icon$ = dbxPresetFilterMenuButtonIconObservable(config$, selectedPreset$);
|
|
@@ -7765,6 +8132,10 @@ interface DbxIframeDialogConfig extends Omit<MatDialogConfig, 'data'> {
|
|
|
7765
8132
|
/**
|
|
7766
8133
|
* Opens a dialog containing a {@link DbxIframeComponent} to display a URL in an iframe.
|
|
7767
8134
|
*
|
|
8135
|
+
* @param matDialog - The Angular Material dialog service used to open the dialog
|
|
8136
|
+
* @param config - Configuration specifying the content URL and dialog options
|
|
8137
|
+
* @returns A reference to the opened dialog for controlling or subscribing to its lifecycle
|
|
8138
|
+
*
|
|
7768
8139
|
* @example
|
|
7769
8140
|
* ```ts
|
|
7770
8141
|
* const ref = openIframeDialog(matDialog, { contentUrl: 'https://example.com' });
|
|
@@ -7833,6 +8204,10 @@ interface DbxEmbedDialogConfig extends Omit<MatDialogConfig, 'data'> {
|
|
|
7833
8204
|
/**
|
|
7834
8205
|
* Opens a dialog containing a {@link DbxEmbedComponent} to display embedded content from a URL or Blob.
|
|
7835
8206
|
*
|
|
8207
|
+
* @param matDialog - The Angular Material dialog service used to open the dialog
|
|
8208
|
+
* @param config - Configuration specifying the content source (URL or Blob), MIME type, and dialog options
|
|
8209
|
+
* @returns A reference to the opened dialog for controlling or subscribing to its lifecycle
|
|
8210
|
+
*
|
|
7836
8211
|
* @example
|
|
7837
8212
|
* ```ts
|
|
7838
8213
|
* const ref = openEmbedDialog(matDialog, { srcUrl: 'https://example.com/doc.pdf', embedMimeType: 'application/pdf' });
|
|
@@ -8441,8 +8816,8 @@ type FileAcceptString = string;
|
|
|
8441
8816
|
/**
|
|
8442
8817
|
* Returns a string that can be used as the "accept" attribute of a file input element.
|
|
8443
8818
|
*
|
|
8444
|
-
* @param accept
|
|
8445
|
-
* @returns
|
|
8819
|
+
* @param accept - A file accept string or array of filter type strings to convert
|
|
8820
|
+
* @returns A comma-separated string suitable for the HTML accept attribute
|
|
8446
8821
|
*/
|
|
8447
8822
|
declare function fileAcceptString(accept: FileAcceptString | FileAcceptFilterTypeStringArray): FileAcceptString;
|
|
8448
8823
|
/**
|
|
@@ -8458,6 +8833,9 @@ type FileAcceptFilterTypeStringArray = FileAcceptFilterTypeString[];
|
|
|
8458
8833
|
/**
|
|
8459
8834
|
* Converts a comma-separated accept string or array into a {@link FileAcceptFilterTypeStringArray}.
|
|
8460
8835
|
*
|
|
8836
|
+
* @param accept - A file accept string or array of filter type strings to normalize
|
|
8837
|
+
* @returns An array of individual filter type strings
|
|
8838
|
+
*
|
|
8461
8839
|
* @example
|
|
8462
8840
|
* ```ts
|
|
8463
8841
|
* const types = fileAcceptFilterTypeStringArray('image/png, .pdf');
|
|
@@ -8517,6 +8895,9 @@ type FileArrayAcceptMatchFunction = (input: File[]) => FileArrayAcceptMatchResul
|
|
|
8517
8895
|
/**
|
|
8518
8896
|
* Creates a {@link FileArrayAcceptMatchFunction} that filters and separates files based on accept criteria and multiple file support.
|
|
8519
8897
|
*
|
|
8898
|
+
* @param config - Configuration specifying the accept criteria and whether multiple files are allowed
|
|
8899
|
+
* @returns A function that accepts an array of files and returns the categorized match result
|
|
8900
|
+
*
|
|
8520
8901
|
* @example
|
|
8521
8902
|
* ```ts
|
|
8522
8903
|
* const matchFn = fileArrayAcceptMatchFunction({ accept: 'image/*', multiple: false });
|
|
@@ -8538,6 +8919,9 @@ type FileAcceptFunction = DecisionFunction<FileAcceptFunctionInput>;
|
|
|
8538
8919
|
/**
|
|
8539
8920
|
* Creates a {@link FileAcceptFunction} that checks individual files against accept criteria (MIME types, wildcards, or file extensions).
|
|
8540
8921
|
*
|
|
8922
|
+
* @param accept - A file accept string or array specifying which MIME types, wildcards, or file extensions to allow
|
|
8923
|
+
* @returns A decision function that returns true if a file matches any of the accept criteria
|
|
8924
|
+
*
|
|
8541
8925
|
* @example
|
|
8542
8926
|
* ```ts
|
|
8543
8927
|
* const isAccepted = fileAcceptFunction(['image/*', '.pdf']);
|
|
@@ -8559,6 +8943,9 @@ declare abstract class DbxFileUploadActionCompatable {
|
|
|
8559
8943
|
/**
|
|
8560
8944
|
* Provides a {@link DbxFileUploadActionCompatable} for dependency injection from the given component type.
|
|
8561
8945
|
*
|
|
8946
|
+
* @param sourceType - The concrete component class that implements {@link DbxFileUploadActionCompatable}
|
|
8947
|
+
* @returns An array of providers that register the given type as the {@link DbxFileUploadActionCompatable} implementation
|
|
8948
|
+
*
|
|
8562
8949
|
* @example
|
|
8563
8950
|
* ```ts
|
|
8564
8951
|
* @Component({ providers: provideDbxFileUploadActionCompatable(MyUploadComponent) })
|
|
@@ -8874,7 +9261,7 @@ declare class DbxScreenMediaService implements Destroyable {
|
|
|
8874
9261
|
private readonly _updateHeight;
|
|
8875
9262
|
readonly widthType$: Observable<ScreenMediaWidthType>;
|
|
8876
9263
|
readonly heightType$: Observable<ScreenMediaHeightType>;
|
|
8877
|
-
constructor(
|
|
9264
|
+
constructor();
|
|
8878
9265
|
destroy(): void;
|
|
8879
9266
|
/**
|
|
8880
9267
|
* Returns an observable that emits `true` when the current screen width is at least as wide as the given breakpoint.
|
|
@@ -8916,5 +9303,5 @@ declare class DbxWebModule {
|
|
|
8916
9303
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxWebModule>;
|
|
8917
9304
|
}
|
|
8918
9305
|
|
|
8919
|
-
export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxHelpWidgetDirective, AbstractDbxListAccordionViewDirective, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_PREVIEW_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_VALUE_LIST_CONFIG_MAP_VALUES, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxInteractionModule, DbxIntroActionSectionComponent, DbxLabelBlockComponent, DbxLayoutModule, DbxLinkComponent, DbxLinkifyComponent, DbxLinkifyService, DbxLinkifyServiceConfig, DbxListAccordionViewComponentImportsModule, DbxListComponent, DbxListEmptyContentComponent, DbxListGridViewComponentImportsModule, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListModifierModule, DbxListModule, DbxListTitleGroupDirective, DbxListView, DbxListViewMetaIconComponent, DbxListViewWrapper, DbxListWrapperComponentImportsModule, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelObjectStateService, actions_d as DbxModelStateActions, model_actions_d as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNumberWithLimitComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressButtonsModule, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorModule, DbxResizedDirective, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepComponent, DbxStepLayoutModule, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, 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, 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 };
|
|
9306
|
+
export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxHelpWidgetDirective, AbstractDbxListAccordionViewDirective, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_PREVIEW_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_VALUE_LIST_CONFIG_MAP_VALUES, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxInteractionModule, DbxIntroActionSectionComponent, DbxLabelBlockComponent, DbxLayoutModule, DbxLinkComponent, DbxLinkifyComponent, DbxLinkifyService, DbxLinkifyServiceConfig, DbxListAccordionViewComponentImportsModule, DbxListComponent, DbxListEmptyContentComponent, DbxListGridViewComponentImportsModule, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListModifierModule, DbxListModule, DbxListTitleGroupDirective, DbxListView, DbxListViewMetaIconComponent, DbxListViewWrapper, DbxListWrapperComponentImportsModule, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelObjectStateService, actions_d as DbxModelStateActions, model_actions_d as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNumberWithLimitComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressButtonsModule, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorModule, DbxResizedDirective, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepComponent, DbxStepLayoutModule, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, 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, 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 };
|
|
8920
9307
|
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, 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 };
|