@dereekb/dbx-web 13.31.0 → 13.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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, ComponentRef } from '@angular/core';
5
5
  import { ProgressBarMode } from '@angular/material/progress-bar';
6
6
  import * as _dereekb_util from '@dereekb/util';
7
- import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CssClass, CharacterPrefixSuffixCleanString, DashPrefixString, CssStyleObject, CssToken, CssTokenVar, WebsiteUrlWithPrefix, WebsitePath, Pixels, PixelsString, DecisionFunction, ModifierMap, ArrayOrValue, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, HtmlHeaderLevel, Destroyable, UnitedStatesAddressWithContact, LabeledValue, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, MimeTypeWithoutParameters, ContentTypeMimeType, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, FileSize, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix, ModelIdFactory } from '@dereekb/util';
7
+ import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CssClass, CharacterPrefixSuffixCleanString, DashPrefixString, CssStyleObject, CssToken, CssTokenVar, WebsiteUrlWithPrefix, WebsitePath, ArrayOrValue, Pixels, PixelsString, DecisionFunction, ModifierMap, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, HtmlHeaderLevel, Destroyable, UnitedStatesAddressWithContact, LabeledValue, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, MimeTypeWithoutParameters, ContentTypeMimeType, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, FileSize, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix, ModelIdFactory } 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';
@@ -733,11 +733,23 @@ interface DbxActionConfirmConfig<T = unknown> extends DbxPromptConfirmConfig {
733
733
  * Value to pass to the action's ready state when the user confirms.
734
734
  */
735
735
  readonly readyValue?: T;
736
+ /**
737
+ * Whether to confirm the action immediately instead of showing the dialog.
738
+ *
739
+ * Useful for actions that need no confirmation but are rendered by the same template as actions that do,
740
+ * and for passing a readyValue through without prompting.
741
+ *
742
+ * Defaults to false.
743
+ */
744
+ readonly autoConfirm?: boolean;
736
745
  }
737
746
  /**
738
747
  * Displays a confirmation dialog when the action is triggered. If the user confirms,
739
748
  * the configured ready value is passed to the action. If the user cancels, the action is rejected.
740
749
  *
750
+ * A config with `autoConfirm` true shows no dialog and marks the action ready immediately. This lets a
751
+ * template bind the same input for actions that need confirmation and actions that do not.
752
+ *
741
753
  * This directive works with action triggering only, not button clicks.
742
754
  * For button-based confirmation, use an appPromptConfirmButton directive instead.
743
755
  *
@@ -1245,6 +1257,13 @@ type DbxAvatarStyle = 'circle' | 'square';
1245
1257
  * Size variant for the avatar display. Controls the rendered dimensions of the avatar.
1246
1258
  */
1247
1259
  type DbxAvatarSize = 'small' | 'normal' | 'large';
1260
+ /**
1261
+ * How an avatar image is fitted into the avatar box.
1262
+ *
1263
+ * `'cover'` fills the box and crops (the right choice for a photo); `'contain'` fits the whole image
1264
+ * inside the box (the right choice for a brand logo, which must never be cropped).
1265
+ */
1266
+ type DbxAvatarImageFit = 'cover' | 'contain';
1248
1267
  /**
1249
1268
  * Contextual information for displaying an avatar, including its image URL, fallback icon, style, and user association.
1250
1269
  *
@@ -1287,6 +1306,37 @@ interface DbxAvatarContext {
1287
1306
  * If true, when the image cannot be loaded then the entire avatar view should be hidden.
1288
1307
  */
1289
1308
  readonly hideOnError?: Maybe<boolean>;
1309
+ /**
1310
+ * If true, the avatar renders with the `<dbx-icon-tile>` presentation: the avatar view takes the
1311
+ * `dbx-icon-tile` class, so the `--dbx-icon-tile-*` customizations and the tile's `[dbxColor]`
1312
+ * surface apply. Use it for a branded/iconographic avatar rather than a person's photo.
1313
+ */
1314
+ readonly tile?: Maybe<boolean>;
1315
+ /**
1316
+ * Color painted behind the avatar. Pair with {@link colorTone} for a tonal (muted) surface.
1317
+ */
1318
+ readonly color?: Maybe<DbxColorInput>;
1319
+ /**
1320
+ * Background tone level (0-100) for {@link color}.
1321
+ */
1322
+ readonly colorTone?: Maybe<DbxColorTone>;
1323
+ /**
1324
+ * How the avatar image fills the avatar box. Defaults to `'contain'` in {@link tile} mode (a logo
1325
+ * must not be cropped) and `'cover'` otherwise.
1326
+ */
1327
+ readonly imageFit?: Maybe<DbxAvatarImageFit>;
1328
+ /**
1329
+ * Optional CSS filter applied to the avatar image (e.g. `'brightness(0) invert(1)'` to force a
1330
+ * single-color logo to render white).
1331
+ */
1332
+ readonly imageFilter?: Maybe<string>;
1333
+ /**
1334
+ * If true, `DbxAvatarViewService.defaultAvatarUrl` is not used when no url is available.
1335
+ *
1336
+ * That default is an app-wide *person* placeholder; an avatar that means to fall through to its
1337
+ * {@link icon} (a provider tile, say) has to be able to opt out of it.
1338
+ */
1339
+ readonly ignoreDefaultUrl?: Maybe<boolean>;
1290
1340
  }
1291
1341
  /**
1292
1342
  * Injection token for the avatar context data.
@@ -1393,6 +1443,19 @@ declare class DbxAvatarViewService {
1393
1443
  * Merges individual input properties with the optional `context` input and delegates rendering
1394
1444
  * to the component resolved by {@link DbxAvatarViewService}. Supports size variants via CSS classes.
1395
1445
  *
1446
+ * Renders an image when one is available, then name initials on a curated color, then a Material icon.
1447
+ * With `[avatarTile]` the avatar takes the `<dbx-icon-tile>` presentation — every `--dbx-icon-tile-*`
1448
+ * customization applies and `[avatarColor]` / `[avatarColorTone]` paint the tile surface — which makes
1449
+ * it the right choice for a branded row (a connected app, an integration) rather than a person.
1450
+ *
1451
+ * @dbxWebComponent
1452
+ * @dbxWebSlug avatar
1453
+ * @dbxWebCategory layout
1454
+ * @dbxWebRelated icon-tile, dbx-color, avatar-view
1455
+ * @dbxWebMinimalExample ```html
1456
+ * <dbx-avatar [avatarUrl]="user.photoUrl"></dbx-avatar>
1457
+ * ```
1458
+ *
1396
1459
  * @example
1397
1460
  * ```html
1398
1461
  * <dbx-avatar [avatarUrl]="user.photoUrl" [avatarStyle]="'circle'" [avatarSize]="'large'"></dbx-avatar>
@@ -1400,6 +1463,12 @@ declare class DbxAvatarViewService {
1400
1463
  *
1401
1464
  * @example
1402
1465
  * ```html
1466
+ * <!-- branded tile: logo image when there is one, Material icon otherwise -->
1467
+ * <dbx-avatar [avatarTile]="true" avatarStyle="square" [avatarUrl]="provider.logoUrl" avatarIcon="link" [avatarIgnoreDefaultUrl]="true" avatarColor="success" [avatarColorTone]="18"></dbx-avatar>
1468
+ * ```
1469
+ *
1470
+ * @example
1471
+ * ```html
1403
1472
  * <dbx-avatar [context]="avatarContext"></dbx-avatar>
1404
1473
  * ```
1405
1474
  */
@@ -1416,19 +1485,283 @@ declare class DbxAvatarComponent {
1416
1485
  readonly avatarStyle: _angular_core.InputSignal<Maybe<DbxAvatarStyle>>;
1417
1486
  readonly avatarSize: _angular_core.InputSignal<Maybe<DbxAvatarSize>>;
1418
1487
  readonly avatarHideOnError: _angular_core.InputSignal<Maybe<boolean>>;
1419
- readonly contextSignal: _angular_core.Signal<{
1420
- selector: Maybe<string>;
1421
- uid: Maybe<string>;
1422
- url: Maybe<string>;
1423
- name: Maybe<string>;
1424
- key: Maybe<string>;
1425
- icon: Maybe<string>;
1426
- style: DbxAvatarStyle | undefined;
1427
- hideOnError: Maybe<boolean>;
1428
- }>;
1488
+ readonly avatarTile: _angular_core.InputSignal<Maybe<boolean>>;
1489
+ readonly avatarColor: _angular_core.InputSignal<Maybe<DbxColorInput>>;
1490
+ readonly avatarColorTone: _angular_core.InputSignal<Maybe<number>>;
1491
+ readonly avatarImageFit: _angular_core.InputSignal<Maybe<DbxAvatarImageFit>>;
1492
+ readonly avatarImageFilter: _angular_core.InputSignal<Maybe<string>>;
1493
+ readonly avatarIgnoreDefaultUrl: _angular_core.InputSignal<Maybe<boolean>>;
1494
+ readonly contextSignal: _angular_core.Signal<DbxAvatarContext>;
1429
1495
  readonly configSignal: _angular_core.Signal<DbxInjectionComponentConfig<unknown>>;
1430
1496
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxAvatarComponent, never>;
1431
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxAvatarComponent, "dbx-avatar", never, { "context": { "alias": "context"; "required": false; "isSignal": true; }; "avatarSelector": { "alias": "avatarSelector"; "required": false; "isSignal": true; }; "avatarUid": { "alias": "avatarUid"; "required": false; "isSignal": true; }; "avatarUrl": { "alias": "avatarUrl"; "required": false; "isSignal": true; }; "avatarName": { "alias": "avatarName"; "required": false; "isSignal": true; }; "avatarKey": { "alias": "avatarKey"; "required": false; "isSignal": true; }; "avatarIcon": { "alias": "avatarIcon"; "required": false; "isSignal": true; }; "avatarStyle": { "alias": "avatarStyle"; "required": false; "isSignal": true; }; "avatarSize": { "alias": "avatarSize"; "required": false; "isSignal": true; }; "avatarHideOnError": { "alias": "avatarHideOnError"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1497
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxAvatarComponent, "dbx-avatar", never, { "context": { "alias": "context"; "required": false; "isSignal": true; }; "avatarSelector": { "alias": "avatarSelector"; "required": false; "isSignal": true; }; "avatarUid": { "alias": "avatarUid"; "required": false; "isSignal": true; }; "avatarUrl": { "alias": "avatarUrl"; "required": false; "isSignal": true; }; "avatarName": { "alias": "avatarName"; "required": false; "isSignal": true; }; "avatarKey": { "alias": "avatarKey"; "required": false; "isSignal": true; }; "avatarIcon": { "alias": "avatarIcon"; "required": false; "isSignal": true; }; "avatarStyle": { "alias": "avatarStyle"; "required": false; "isSignal": true; }; "avatarSize": { "alias": "avatarSize"; "required": false; "isSignal": true; }; "avatarHideOnError": { "alias": "avatarHideOnError"; "required": false; "isSignal": true; }; "avatarTile": { "alias": "avatarTile"; "required": false; "isSignal": true; }; "avatarColor": { "alias": "avatarColor"; "required": false; "isSignal": true; }; "avatarColorTone": { "alias": "avatarColorTone"; "required": false; "isSignal": true; }; "avatarImageFit": { "alias": "avatarImageFit"; "required": false; "isSignal": true; }; "avatarImageFilter": { "alias": "avatarImageFilter"; "required": false; "isSignal": true; }; "avatarIgnoreDefaultUrl": { "alias": "avatarIgnoreDefaultUrl"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1498
+ }
1499
+
1500
+ /**
1501
+ * Configuration provided in the root module/environment for seeding {@link DbxColorService} with initial templates.
1502
+ */
1503
+ declare abstract class DbxColorServiceConfig {
1504
+ /**
1505
+ * Templates to register at service construction time.
1506
+ */
1507
+ abstract readonly templates?: Maybe<DbxColorConfigTemplate[]>;
1508
+ }
1509
+ /**
1510
+ * Service that registers named {@link DbxColorConfigTemplate} entries and expands
1511
+ * {@link DbxColorConfig} values that reference a template by key.
1512
+ *
1513
+ * Seeded via `provideDbxStyleService({ dbxColorServiceConfig: { templates: [...] } })`,
1514
+ * then injected by {@link DbxColorDirective} and {@link DbxTextColorDirective} to resolve
1515
+ * template references at render time.
1516
+ *
1517
+ * @dbxWebComponent
1518
+ * @dbxWebSlug color-service
1519
+ * @dbxWebCategory layout
1520
+ * @dbxWebRelated color, text-color, style-service
1521
+ *
1522
+ * @example
1523
+ * ```ts
1524
+ * const colorService = inject(DbxColorService);
1525
+ * colorService.register({ key: 'brand-positive', config: { color: '#1f9b59', contrast: 'white', tone: 18 } });
1526
+ * colorService.expandColorConfig({ template: 'brand-positive' });
1527
+ * // -> { template: 'brand-positive', color: '#1f9b59', contrast: 'white', tone: 18 }
1528
+ * ```
1529
+ */
1530
+ declare class DbxColorService {
1531
+ private readonly _templates;
1532
+ constructor();
1533
+ /**
1534
+ * Registers one or more {@link DbxColorConfigTemplate} entries.
1535
+ *
1536
+ * @param templates - The template(s) to register.
1537
+ * @param override - Whether existing entries with the same key should be replaced (default true)
1538
+ */
1539
+ register(templates: ArrayOrValue<DbxColorConfigTemplate>, override?: boolean): void;
1540
+ /**
1541
+ * Returns whether a template with the given key has been registered.
1542
+ *
1543
+ * @param key - The template key to check.
1544
+ * @returns True when a template is registered under the given key.
1545
+ */
1546
+ hasTemplate(key: DbxColorConfigTemplateKey): boolean;
1547
+ /**
1548
+ * Returns the {@link DbxColorConfigTemplate} registered under the given key, or undefined if none.
1549
+ *
1550
+ * @param key - The template key to look up.
1551
+ * @returns The registered template, or undefined when no template matches.
1552
+ */
1553
+ getTemplate(key: DbxColorConfigTemplateKey): Maybe<DbxColorConfigTemplate>;
1554
+ /**
1555
+ * Returns all currently registered template keys.
1556
+ *
1557
+ * @returns Array of all registered template keys.
1558
+ */
1559
+ getAllRegisteredTemplateKeys(): DbxColorConfigTemplateKey[];
1560
+ /**
1561
+ * Returns all registered templates flagged as part of the curated color set, in registration order.
1562
+ *
1563
+ * Includes the default {@link DBX_CURATED_COLOR_TEMPLATES} plus any app-registered curated templates.
1564
+ *
1565
+ * @returns The curated templates in insertion order.
1566
+ */
1567
+ getCuratedColorTemplates(): DbxColorConfigTemplate[];
1568
+ /**
1569
+ * Deterministically selects a curated {@link DbxColorConfig} for the given string from the registered curated set.
1570
+ *
1571
+ * The same input always maps to the same curated color, making it suitable for stable, name-derived
1572
+ * colors such as avatar initials backgrounds.
1573
+ *
1574
+ * @param value - The string to derive a curated color from (e.g. a person's name).
1575
+ * @returns The selected curated config, or `null` when the value is blank or no curated templates are registered.
1576
+ */
1577
+ getCuratedColorForValue(value: Maybe<string>): Maybe<DbxColorConfig>;
1578
+ /**
1579
+ * Resolves the {@link DbxColorConfig.template} reference (if any) and merges the template's
1580
+ * fields beneath the input config. Input config fields override the template's fields.
1581
+ *
1582
+ * Returns the input unchanged when no template is set or when the template key is unknown.
1583
+ *
1584
+ * @param config - The input config to expand.
1585
+ * @returns An expanded config, or the input unchanged when no expansion applies.
1586
+ *
1587
+ * @example
1588
+ * ```ts
1589
+ * service.register({ key: 'brand-positive', config: { color: '#1f9b59', contrast: 'white', tone: 18 } });
1590
+ * service.expandColorConfig({ template: 'brand-positive' });
1591
+ * // -> { template: 'brand-positive', color: '#1f9b59', contrast: 'white', tone: 18 }
1592
+ * service.expandColorConfig({ template: 'brand-positive', tone: 60 });
1593
+ * // -> { template: 'brand-positive', color: '#1f9b59', contrast: 'white', tone: 60 }
1594
+ * ```
1595
+ */
1596
+ expandColorConfig(config: Maybe<DbxColorConfig>): Maybe<DbxColorConfig>;
1597
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxColorService, never>;
1598
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxColorService>;
1599
+ }
1600
+
1601
+ /**
1602
+ * Provides themed color *tokens* to the host element — it never paints a background itself.
1603
+ *
1604
+ * Accepts either a {@link DbxThemeColor} string (e.g. `'primary'`, `'success'`) or a {@link DbxColorConfig}
1605
+ * object carrying arbitrary CSS color values (any hex, `rgb()`, `hsl()`, `var(...)`, `color-mix(...)`, etc.).
1606
+ * The directive sets the `--dbx-bg-color-current` / `--dbx-color-current` (and tone) custom properties and adds the
1607
+ * `.dbx-color` marker class, leaving the actual painting to either the explicit `.dbx-color-bg` utility on the same
1608
+ * element or a colored-surface component's own `.dbx-color`-scoped SCSS (e.g. `<dbx-bar>`, `<dbx-button>`, `<dbx-loading>`,
1609
+ * `<dbx-icon-tile>`, `<mat-card>`) that reads the inherited tokens.
1610
+ *
1611
+ * Optionally set {@link dbxColorTone} (0-100) to control background opacity for a tonal/muted appearance.
1612
+ * When tonal mode is active, the `dbx-color-tonal` CSS class is added and a CSS rule overrides the text
1613
+ * color to the vibrant color (via `--dbx-bg-color-current`).
1614
+ *
1615
+ * The standalone `[dbxColorTone]` input wins over `config.tone` when both are set; the same precedence
1616
+ * applies to tonal mode.
1617
+ *
1618
+ * @dbxWebComponent
1619
+ * @dbxWebSlug color
1620
+ * @dbxWebCategory layout
1621
+ * @dbxWebRelated text-color, color-service
1622
+ * @dbxWebMinimalExample ```html
1623
+ * <div dbxColor="primary" class="dbx-color-bg"></div>
1624
+ * ```
1625
+ *
1626
+ * @example
1627
+ * ```html
1628
+ * <!-- pair with .dbx-color-bg to paint a plain element -->
1629
+ * <div dbxColor="primary" class="dbx-color-bg">Themed background</div>
1630
+ * <div dbxColor="primary" [dbxColorTone]="18" class="dbx-color-bg">Tonal themed</div>
1631
+ * <div [dbxColor]="{ color: '#ff0066', contrast: 'white' }" class="dbx-color-bg">Custom hex</div>
1632
+ *
1633
+ * <!-- a colored-surface component paints itself from the tokens; no .dbx-color-bg needed -->
1634
+ * <dbx-bar dbxColor="primary">Bar paints itself</dbx-bar>
1635
+ * <dbx-button color="warn" raised text="Delete"></dbx-button>
1636
+ * ```
1637
+ */
1638
+ declare class DbxColorDirective {
1639
+ private readonly _colorService;
1640
+ /**
1641
+ * The color to provide tokens for. Declared as a `model` so a colored-surface component on the same host (e.g.
1642
+ * `dbx-button`) can push its resolved color into the directive, keeping it the single token provider on the element.
1643
+ */
1644
+ readonly dbxColor: _angular_core.ModelSignal<Maybe<DbxColorInput>>;
1645
+ /**
1646
+ * Background tone level (0-100). When set, the background becomes semi-transparent
1647
+ * and text color switches to the vibrant theme color for a tonal appearance.
1648
+ *
1649
+ * Declared as a `model` for the same reason as {@link dbxColor}: a colored-surface component on the same host (e.g.
1650
+ * `dbx-avatar-view`) resolves its tone from its own inputs/context and pushes it here, keeping this directive the
1651
+ * single token provider on the element.
1652
+ */
1653
+ readonly dbxColorTone: _angular_core.ModelSignal<Maybe<number>>;
1654
+ /**
1655
+ * Whether a color is currently bound. When nothing is bound the directive is fully inert — it adds no marker class
1656
+ * and no token class — so color tokens inherited from a `[dbxColor]` ancestor pass through untouched (important for
1657
+ * components that host this directive unconditionally, e.g. `dbx-button` inside a tonal `[dbxColor]` card).
1658
+ */
1659
+ readonly hasColorSignal: _angular_core.Signal<boolean>;
1660
+ /**
1661
+ * Applies the named `dbx-{color}-bg` token class for a {@link DbxThemeColor} string, or `''` both for a
1662
+ * {@link DbxColorConfig} (whose tokens are supplied by the inline `--dbx-bg-color-current` / `--dbx-color-current`
1663
+ * style bindings instead) and when no color is bound (inert; inherited tokens pass through). The directive is a pure
1664
+ * token provider — none of these classes paint a background; painting is done by the `.dbx-color-bg` utility or a
1665
+ * component's own `.dbx-color`-scoped SCSS.
1666
+ */
1667
+ readonly cssClassSignal: _angular_core.Signal<string>;
1668
+ private readonly _configSignal;
1669
+ /**
1670
+ * Inline `--dbx-bg-color-current` value applied when a {@link DbxColorConfig} is bound. Resolves to `null` in string mode so the named `.dbx-{color}-bg` class supplies the variable instead.
1671
+ */
1672
+ readonly bgColorStyleSignal: _angular_core.Signal<string | null>;
1673
+ /**
1674
+ * Inline `--dbx-color-current` value applied when a {@link DbxColorConfig} is bound. Resolves to `null` (and inherits from the named bg class) when omitted or in string mode.
1675
+ */
1676
+ readonly colorStyleSignal: _angular_core.Signal<string | null>;
1677
+ /**
1678
+ * Effective tone used for opacity. The standalone `[dbxColorTone]` input wins when set; otherwise `config.tone` applies.
1679
+ */
1680
+ readonly effectiveToneSignal: _angular_core.Signal<Maybe<number>>;
1681
+ /**
1682
+ * Whether tonal mode is active. Adds the `dbx-color-tonal` CSS class which
1683
+ * overrides the text color to the vibrant theme color via CSS rather than
1684
+ * an inline style binding (which would conflict with `[ngStyle]`).
1685
+ *
1686
+ * Precedence: an input-tone always implies tonal (existing behavior); otherwise
1687
+ * `config.tonal` wins when explicitly set, then falls back to inferring tonal mode
1688
+ * from `config.tone`.
1689
+ */
1690
+ readonly isTonalSignal: _angular_core.Signal<boolean>;
1691
+ /**
1692
+ * Sets `--dbx-color-bg-tone` on the host to control the background opacity via `color-mix` in the `-bg` class mixin.
1693
+ */
1694
+ readonly bgToneStyleSignal: _angular_core.Signal<string | null>;
1695
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxColorDirective, never>;
1696
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxColorDirective, "[dbxColor]", never, { "dbxColor": { "alias": "dbxColor"; "required": false; "isSignal": true; }; "dbxColorTone": { "alias": "dbxColorTone"; "required": false; "isSignal": true; }; }, { "dbxColor": "dbxColorChange"; "dbxColorTone": "dbxColorToneChange"; }, never, never, true, never>;
1697
+ }
1698
+
1699
+ /**
1700
+ * Displays an avatar image with automatic fallback to name initials and then a Material icon when no image is
1701
+ * available or when the image fails to load.
1702
+ *
1703
+ * Supports circle and square styles, and can optionally hide entirely on image error.
1704
+ * Receives context via the {@link DBX_AVATAR_CONTEXT_DATA_TOKEN} injection token or direct inputs.
1705
+ *
1706
+ * In tile mode the host also takes the `dbx-icon-tile` class, so the `--dbx-icon-tile-*` customizations and the
1707
+ * tile's own `.dbx-color` surface rule apply to the avatar. The color is pushed into the host
1708
+ * {@link DbxColorDirective} rather than bound by the caller, since the avatar view is usually created dynamically
1709
+ * by {@link DbxAvatarComponent} and has no template bindings of its own.
1710
+ *
1711
+ * @example
1712
+ * ```html
1713
+ * <dbx-avatar-view [avatarUrl]="user.photoUrl" [avatarStyle]="'circle'" [avatarIcon]="'account_circle'"></dbx-avatar-view>
1714
+ * ```
1715
+ */
1716
+ declare class DbxAvatarViewComponent {
1717
+ readonly defaultContext: Maybe<DbxAvatarContext>;
1718
+ readonly avatarService: DbxAvatarViewService;
1719
+ readonly colorService: DbxColorService | null;
1720
+ readonly defaultAvatarUrl: Maybe<string>;
1721
+ readonly avatarUrl: _angular_core.InputSignal<Maybe<string>>;
1722
+ readonly avatarErrorUrlSignal: _angular_core.WritableSignal<Maybe<string | boolean>>;
1723
+ readonly avatarName: _angular_core.InputSignal<Maybe<string>>;
1724
+ readonly avatarStyle: _angular_core.InputSignal<Maybe<DbxAvatarStyle>>;
1725
+ readonly avatarIcon: _angular_core.InputSignal<Maybe<string>>;
1726
+ readonly avatarHideOnError: _angular_core.InputSignal<Maybe<boolean>>;
1727
+ readonly avatarTile: _angular_core.InputSignal<Maybe<boolean>>;
1728
+ readonly avatarColor: _angular_core.InputSignal<Maybe<DbxColorInput>>;
1729
+ readonly avatarColorTone: _angular_core.InputSignal<Maybe<number>>;
1730
+ readonly avatarImageFit: _angular_core.InputSignal<Maybe<DbxAvatarImageFit>>;
1731
+ readonly avatarImageFilter: _angular_core.InputSignal<Maybe<string>>;
1732
+ readonly avatarIgnoreDefaultUrl: _angular_core.InputSignal<Maybe<boolean>>;
1733
+ constructor();
1734
+ readonly avatarHideOnErrorSignal: _angular_core.Signal<boolean>;
1735
+ readonly avatarTileSignal: _angular_core.Signal<boolean>;
1736
+ readonly avatarColorSignal: _angular_core.Signal<Maybe<DbxColorInput>>;
1737
+ readonly avatarColorToneSignal: _angular_core.Signal<Maybe<number>>;
1738
+ readonly avatarImageFilterSignal: _angular_core.Signal<Maybe<string>>;
1739
+ /**
1740
+ * A tile is a branded surface, so its image defaults to `'contain'` — cropping a logo is never right.
1741
+ */
1742
+ readonly avatarImageFitSignal: _angular_core.Signal<DbxAvatarImageFit>;
1743
+ readonly avatarIgnoreDefaultUrlSignal: _angular_core.Signal<boolean>;
1744
+ readonly currentAvatarUrlSignal: _angular_core.Signal<Maybe<string>>;
1745
+ readonly hasAvatarErrorSignal: _angular_core.Signal<boolean>;
1746
+ readonly avatarUrlSignal: _angular_core.Signal<Maybe<string>>;
1747
+ readonly hasAvatarSignal: _angular_core.Signal<boolean>;
1748
+ readonly missingAvatarSignal: _angular_core.Signal<boolean>;
1749
+ readonly avatarStyleClassSignal: _angular_core.Signal<"circle" | "square">;
1750
+ readonly hideAvatarSignal: _angular_core.Signal<boolean>;
1751
+ readonly avatarIconSignal: _angular_core.Signal<string>;
1752
+ readonly nameSignal: _angular_core.Signal<Maybe<string>>;
1753
+ readonly initialsSignal: _angular_core.Signal<Maybe<string>>;
1754
+ readonly hasInitialsSignal: _angular_core.Signal<boolean>;
1755
+ /**
1756
+ * The curated color the initials are painted on.
1757
+ *
1758
+ * Null when an explicit color is set: the initials surface is 100% of the avatar box, so a curated color would
1759
+ * cover the host's painted surface entirely, and the host's inherited `--dbx-color-bg-tone` would wash it out.
1760
+ */
1761
+ readonly curatedColorSignal: _angular_core.Signal<Maybe<DbxColorConfig>>;
1762
+ onAvatarImageError(event: Event): void;
1763
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxAvatarViewComponent, never>;
1764
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxAvatarViewComponent, "dbx-avatar-view", never, { "avatarUrl": { "alias": "avatarUrl"; "required": false; "isSignal": true; }; "avatarName": { "alias": "avatarName"; "required": false; "isSignal": true; }; "avatarStyle": { "alias": "avatarStyle"; "required": false; "isSignal": true; }; "avatarIcon": { "alias": "avatarIcon"; "required": false; "isSignal": true; }; "avatarHideOnError": { "alias": "avatarHideOnError"; "required": false; "isSignal": true; }; "avatarTile": { "alias": "avatarTile"; "required": false; "isSignal": true; }; "avatarColor": { "alias": "avatarColor"; "required": false; "isSignal": true; }; "avatarColorTone": { "alias": "avatarColorTone"; "required": false; "isSignal": true; }; "avatarImageFit": { "alias": "avatarImageFit"; "required": false; "isSignal": true; }; "avatarImageFilter": { "alias": "avatarImageFilter"; "required": false; "isSignal": true; }; "avatarIgnoreDefaultUrl": { "alias": "avatarIgnoreDefaultUrl"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof DbxColorDirective; inputs: {}; outputs: {}; }]>;
1432
1765
  }
1433
1766
 
1434
1767
  /**
@@ -4329,100 +4662,6 @@ declare class DbxSectionLayoutModule {
4329
4662
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxSectionLayoutModule>;
4330
4663
  }
4331
4664
 
4332
- /**
4333
- * Provides themed color *tokens* to the host element — it never paints a background itself.
4334
- *
4335
- * Accepts either a {@link DbxThemeColor} string (e.g. `'primary'`, `'success'`) or a {@link DbxColorConfig}
4336
- * object carrying arbitrary CSS color values (any hex, `rgb()`, `hsl()`, `var(...)`, `color-mix(...)`, etc.).
4337
- * The directive sets the `--dbx-bg-color-current` / `--dbx-color-current` (and tone) custom properties and adds the
4338
- * `.dbx-color` marker class, leaving the actual painting to either the explicit `.dbx-color-bg` utility on the same
4339
- * element or a colored-surface component's own `.dbx-color`-scoped SCSS (e.g. `<dbx-bar>`, `<dbx-button>`, `<dbx-loading>`,
4340
- * `<dbx-icon-tile>`, `<mat-card>`) that reads the inherited tokens.
4341
- *
4342
- * Optionally set {@link dbxColorTone} (0-100) to control background opacity for a tonal/muted appearance.
4343
- * When tonal mode is active, the `dbx-color-tonal` CSS class is added and a CSS rule overrides the text
4344
- * color to the vibrant color (via `--dbx-bg-color-current`).
4345
- *
4346
- * The standalone `[dbxColorTone]` input wins over `config.tone` when both are set; the same precedence
4347
- * applies to tonal mode.
4348
- *
4349
- * @dbxWebComponent
4350
- * @dbxWebSlug color
4351
- * @dbxWebCategory layout
4352
- * @dbxWebRelated text-color, color-service
4353
- * @dbxWebMinimalExample ```html
4354
- * <div dbxColor="primary" class="dbx-color-bg"></div>
4355
- * ```
4356
- *
4357
- * @example
4358
- * ```html
4359
- * <!-- pair with .dbx-color-bg to paint a plain element -->
4360
- * <div dbxColor="primary" class="dbx-color-bg">Themed background</div>
4361
- * <div dbxColor="primary" [dbxColorTone]="18" class="dbx-color-bg">Tonal themed</div>
4362
- * <div [dbxColor]="{ color: '#ff0066', contrast: 'white' }" class="dbx-color-bg">Custom hex</div>
4363
- *
4364
- * <!-- a colored-surface component paints itself from the tokens; no .dbx-color-bg needed -->
4365
- * <dbx-bar dbxColor="primary">Bar paints itself</dbx-bar>
4366
- * <dbx-button color="warn" raised text="Delete"></dbx-button>
4367
- * ```
4368
- */
4369
- declare class DbxColorDirective {
4370
- private readonly _colorService;
4371
- /**
4372
- * The color to provide tokens for. Declared as a `model` so a colored-surface component on the same host (e.g.
4373
- * `dbx-button`) can push its resolved color into the directive, keeping it the single token provider on the element.
4374
- */
4375
- readonly dbxColor: _angular_core.ModelSignal<Maybe<DbxColorInput>>;
4376
- /**
4377
- * Background tone level (0-100). When set, the background becomes semi-transparent
4378
- * and text color switches to the vibrant theme color for a tonal appearance.
4379
- */
4380
- readonly dbxColorTone: _angular_core.InputSignal<Maybe<number>>;
4381
- /**
4382
- * Whether a color is currently bound. When nothing is bound the directive is fully inert — it adds no marker class
4383
- * and no token class — so color tokens inherited from a `[dbxColor]` ancestor pass through untouched (important for
4384
- * components that host this directive unconditionally, e.g. `dbx-button` inside a tonal `[dbxColor]` card).
4385
- */
4386
- readonly hasColorSignal: _angular_core.Signal<boolean>;
4387
- /**
4388
- * Applies the named `dbx-{color}-bg` token class for a {@link DbxThemeColor} string, or `''` both for a
4389
- * {@link DbxColorConfig} (whose tokens are supplied by the inline `--dbx-bg-color-current` / `--dbx-color-current`
4390
- * style bindings instead) and when no color is bound (inert; inherited tokens pass through). The directive is a pure
4391
- * token provider — none of these classes paint a background; painting is done by the `.dbx-color-bg` utility or a
4392
- * component's own `.dbx-color`-scoped SCSS.
4393
- */
4394
- readonly cssClassSignal: _angular_core.Signal<string>;
4395
- private readonly _configSignal;
4396
- /**
4397
- * Inline `--dbx-bg-color-current` value applied when a {@link DbxColorConfig} is bound. Resolves to `null` in string mode so the named `.dbx-{color}-bg` class supplies the variable instead.
4398
- */
4399
- readonly bgColorStyleSignal: _angular_core.Signal<string | null>;
4400
- /**
4401
- * Inline `--dbx-color-current` value applied when a {@link DbxColorConfig} is bound. Resolves to `null` (and inherits from the named bg class) when omitted or in string mode.
4402
- */
4403
- readonly colorStyleSignal: _angular_core.Signal<string | null>;
4404
- /**
4405
- * Effective tone used for opacity. The standalone `[dbxColorTone]` input wins when set; otherwise `config.tone` applies.
4406
- */
4407
- readonly effectiveToneSignal: _angular_core.Signal<Maybe<number>>;
4408
- /**
4409
- * Whether tonal mode is active. Adds the `dbx-color-tonal` CSS class which
4410
- * overrides the text color to the vibrant theme color via CSS rather than
4411
- * an inline style binding (which would conflict with `[ngStyle]`).
4412
- *
4413
- * Precedence: an input-tone always implies tonal (existing behavior); otherwise
4414
- * `config.tonal` wins when explicitly set, then falls back to inferring tonal mode
4415
- * from `config.tone`.
4416
- */
4417
- readonly isTonalSignal: _angular_core.Signal<boolean>;
4418
- /**
4419
- * Sets `--dbx-color-bg-tone` on the host to control the background opacity via `color-mix` in the `-bg` class mixin.
4420
- */
4421
- readonly bgToneStyleSignal: _angular_core.Signal<string | null>;
4422
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxColorDirective, never>;
4423
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxColorDirective, "[dbxColor]", never, { "dbxColor": { "alias": "dbxColor"; "required": false; "isSignal": true; }; "dbxColorTone": { "alias": "dbxColorTone"; "required": false; "isSignal": true; }; }, { "dbxColor": "dbxColorChange"; }, never, never, true, never>;
4424
- }
4425
-
4426
4665
  /**
4427
4666
  * Adds flexible spacing between sibling elements in a flex container.
4428
4667
  *
@@ -4682,107 +4921,6 @@ declare class DbxStyleService implements Destroyable {
4682
4921
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxStyleService>;
4683
4922
  }
4684
4923
 
4685
- /**
4686
- * Configuration provided in the root module/environment for seeding {@link DbxColorService} with initial templates.
4687
- */
4688
- declare abstract class DbxColorServiceConfig {
4689
- /**
4690
- * Templates to register at service construction time.
4691
- */
4692
- abstract readonly templates?: Maybe<DbxColorConfigTemplate[]>;
4693
- }
4694
- /**
4695
- * Service that registers named {@link DbxColorConfigTemplate} entries and expands
4696
- * {@link DbxColorConfig} values that reference a template by key.
4697
- *
4698
- * Seeded via `provideDbxStyleService({ dbxColorServiceConfig: { templates: [...] } })`,
4699
- * then injected by {@link DbxColorDirective} and {@link DbxTextColorDirective} to resolve
4700
- * template references at render time.
4701
- *
4702
- * @dbxWebComponent
4703
- * @dbxWebSlug color-service
4704
- * @dbxWebCategory layout
4705
- * @dbxWebRelated color, text-color, style-service
4706
- *
4707
- * @example
4708
- * ```ts
4709
- * const colorService = inject(DbxColorService);
4710
- * colorService.register({ key: 'brand-positive', config: { color: '#1f9b59', contrast: 'white', tone: 18 } });
4711
- * colorService.expandColorConfig({ template: 'brand-positive' });
4712
- * // -> { template: 'brand-positive', color: '#1f9b59', contrast: 'white', tone: 18 }
4713
- * ```
4714
- */
4715
- declare class DbxColorService {
4716
- private readonly _templates;
4717
- constructor();
4718
- /**
4719
- * Registers one or more {@link DbxColorConfigTemplate} entries.
4720
- *
4721
- * @param templates - The template(s) to register.
4722
- * @param override - Whether existing entries with the same key should be replaced (default true)
4723
- */
4724
- register(templates: ArrayOrValue<DbxColorConfigTemplate>, override?: boolean): void;
4725
- /**
4726
- * Returns whether a template with the given key has been registered.
4727
- *
4728
- * @param key - The template key to check.
4729
- * @returns True when a template is registered under the given key.
4730
- */
4731
- hasTemplate(key: DbxColorConfigTemplateKey): boolean;
4732
- /**
4733
- * Returns the {@link DbxColorConfigTemplate} registered under the given key, or undefined if none.
4734
- *
4735
- * @param key - The template key to look up.
4736
- * @returns The registered template, or undefined when no template matches.
4737
- */
4738
- getTemplate(key: DbxColorConfigTemplateKey): Maybe<DbxColorConfigTemplate>;
4739
- /**
4740
- * Returns all currently registered template keys.
4741
- *
4742
- * @returns Array of all registered template keys.
4743
- */
4744
- getAllRegisteredTemplateKeys(): DbxColorConfigTemplateKey[];
4745
- /**
4746
- * Returns all registered templates flagged as part of the curated color set, in registration order.
4747
- *
4748
- * Includes the default {@link DBX_CURATED_COLOR_TEMPLATES} plus any app-registered curated templates.
4749
- *
4750
- * @returns The curated templates in insertion order.
4751
- */
4752
- getCuratedColorTemplates(): DbxColorConfigTemplate[];
4753
- /**
4754
- * Deterministically selects a curated {@link DbxColorConfig} for the given string from the registered curated set.
4755
- *
4756
- * The same input always maps to the same curated color, making it suitable for stable, name-derived
4757
- * colors such as avatar initials backgrounds.
4758
- *
4759
- * @param value - The string to derive a curated color from (e.g. a person's name).
4760
- * @returns The selected curated config, or `null` when the value is blank or no curated templates are registered.
4761
- */
4762
- getCuratedColorForValue(value: Maybe<string>): Maybe<DbxColorConfig>;
4763
- /**
4764
- * Resolves the {@link DbxColorConfig.template} reference (if any) and merges the template's
4765
- * fields beneath the input config. Input config fields override the template's fields.
4766
- *
4767
- * Returns the input unchanged when no template is set or when the template key is unknown.
4768
- *
4769
- * @param config - The input config to expand.
4770
- * @returns An expanded config, or the input unchanged when no expansion applies.
4771
- *
4772
- * @example
4773
- * ```ts
4774
- * service.register({ key: 'brand-positive', config: { color: '#1f9b59', contrast: 'white', tone: 18 } });
4775
- * service.expandColorConfig({ template: 'brand-positive' });
4776
- * // -> { template: 'brand-positive', color: '#1f9b59', contrast: 'white', tone: 18 }
4777
- * service.expandColorConfig({ template: 'brand-positive', tone: 60 });
4778
- * // -> { template: 'brand-positive', color: '#1f9b59', contrast: 'white', tone: 60 }
4779
- * ```
4780
- */
4781
- expandColorConfig(config: Maybe<DbxColorConfig>): Maybe<DbxColorConfig>;
4782
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxColorService, never>;
4783
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxColorService>;
4784
- }
4785
-
4786
4924
  /**
4787
4925
  * Configuration for provideDbxStyleService().
4788
4926
  */
@@ -12525,5 +12663,5 @@ declare class DbxWebModule {
12525
12663
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxWebModule>;
12526
12664
  }
12527
12665
 
12528
- 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_COLOR_CUSTOM_BG_CSS_CLASS, DBX_COLOR_CUSTOM_TEXT_CSS_CLASS, DBX_CURATED_COLOR_COUNT, DBX_CURATED_COLOR_TEMPLATES, DBX_CURATED_COLOR_TEMPLATE_KEY_PREFIX, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PDF_MERGE_EDITOR_CONFIG, DBX_PDF_MERGE_EDITOR_INITIAL_STATE, DBX_PDF_MERGE_EDITOR_PRESERVE_ENTRIES_ON_SLOT_DESTROY, DBX_PDF_MERGE_ENCRYPTED_ERROR_MESSAGE, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, 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_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DBX_WEB_PAGE_TITLE_SERVICE_CONFIG, DEFAULT_DBX_CHIP_TONE, DEFAULT_DBX_DETACH_KEY, 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_DISABLE_FUNCTION, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_LIST_SCROLL_DISTANCE, DEFAULT_DBX_LIST_THROTTLE_SCROLL, DEFAULT_DBX_LIST_VIEW_META_ICON, DEFAULT_DBX_PDF_MERGE_ENCRYPTED_HANDLING, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_STYLE_CONFIG_TOKEN, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_WEB_FILE_PREVIEW_SERVICE_DIALOG_WITH_COMPONENT_FUNCTION, DEFAULT_DBX_WEB_FILE_PREVIEW_SERVICE_PREVIEW_COMPONENT_FUNCTION, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_IMAGE_BITMAP_TO_BLOB_ENCODER, DEFAULT_IMAGE_JPEG_QUALITY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_PDF_MERGE_ACCEPT, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColorService, DbxColorServiceConfig, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetachContentComponent, DbxDetachControlButtonsComponent, DbxDetachController, DbxDetachControlsComponent, DbxDetachInitDirective, DbxDetachInteractionModule, DbxDetachOutletComponent, DbxDetachOverlayComponent, DbxDetachService, DbxDetachWindowState, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIconTileComponent, DbxIconTileDirective, 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, DbxPdfMergeEditorComponent, DbxPdfMergeEditorFileUploadComponent, DbxPdfMergeEditorFileUploadHasStateDirective, DbxPdfMergeEditorFileUploadValidatorDirective, DbxPdfMergeEditorStore, DbxPdfMergeEditorStoreDirective, DbxPdfMergeEntryComponent, DbxPdfMergeListComponent, DbxPdfMergeUploadActionDirective, DbxPdfMergeUploadButtonDirective, DbxPdfMergeUploadDialogComponent, DbxPdfPreviewComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressButtonsModule, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorModule, DbxResizedDirective, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepBlockComponent, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, DbxTextColorDirective, DbxTextModule, DbxTwoBlockComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadDirective, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListAccordionViewComponent, DbxValueListAccordionViewContentComponent, DbxValueListAccordionViewContentGroupComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListGridViewContentGroupComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewComponentImportsModule, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWebFilePreviewComponent, DbxWebFilePreviewService, DbxWebModule, DbxWebPageTitleInfoDirective, DbxWebPageTitleService, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, DbxZipBlobPreviewComponent, DbxZipPreviewComponent, PDF_MERGE_RESULT_MIME_TYPE, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SIDE_NAV_DISPLAY_MODE_ORDER, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, UNKNOWN_ERROR_WIDGET_CODE, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, buildPdfMergeEntry, buildPdfMergeEntrySync, catchErrorServerParams, classifyPdfMergeFile, compactModeFromInput, compareScreenMediaWidthTypes, compressImageFile, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxCuratedColorConfigForString, dbxListAccordionViewComponentImportsAndExports, dbxListGridViewComponentImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxThemeColorCssVariable, dbxThemeColorCssVariableVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxWebDefaultPageTitleDelegate, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, flattenAccordionGroups, formatPdfMergeEntrySize, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, isDbxColorConfig, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, mergePdfMergeEntries, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openPdfPreviewDialog, openZipPreviewDialog, overrideClickElementEffect, provideDbxDetachController, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxPdfMergeEditorConfig, provideDbxPdfMergeEditorPreserveEntriesOnSlotDestroy, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideDbxWebPageTitleService, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier, validatePdfMergeEntry };
12529
- export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, BuildPdfMergeEntryConfig, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CompressImageDimensions, CompressImageFileResult, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, DbxAccordionRenderEntry, DbxAccordionRenderGroupFooterEntry, DbxAccordionRenderGroupHeaderEntry, DbxAccordionRenderItemEntry, DbxActionConfirmConfig, DbxActionDialogFunction, DbxActionPopoverFunction, DbxActionPopoverFunctionParams, DbxActionSnackbarActionConfig, DbxActionSnackbarDisplayConfig, DbxActionSnackbarDisplayConfigGeneratorFunction, DbxActionSnackbarEvent, DbxActionSnackbarEventMakeConfig, DbxActionSnackbarGeneratorInput, DbxActionSnackbarGeneratorUndoInput, DbxActionSnackbarGeneratorUndoInputConfig, DbxActionSnackbarKnownType, DbxActionSnackbarServiceConfig, DbxActionSnackbarType, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyType, DbxAnchorListExpandedAnchor, DbxAvatarComponentForContextFunction, DbxAvatarContext, DbxAvatarInjectionComponentConfig, DbxAvatarKey, DbxAvatarSelector, DbxAvatarSize, DbxAvatarStyle, DbxButtonDisplayStylePair, DbxButtonStyle, DbxButtonType, DbxChipDisplay, DbxColorConfig, DbxColorConfigTemplate, DbxColorConfigTemplateKey, DbxColorInput, DbxColorTone, DbxContentBorderOpacity, DbxContentContainerPadding, DbxContentContainerWidth, DbxContentPitScrollableHeight, DbxContentPitScrollableHeightSetting, DbxContentPitScrollableInput, DbxDetachConfig, DbxDetachInstance, DbxDetachKey, DbxDetachOverlayConfig, DbxDetachOverlayData, DbxDetachWindowStateType, DbxDialogContentConfig, DbxDialogContentContainerWidth, DbxDialogContentFooterConfig, DbxDownloadBlobButtonConfig, DbxEmbedComponentElement, DbxEmbedDialogConfig, DbxErrorPopoverConfig, DbxErrorSnackbarConfig, DbxErrorSnackbarData, DbxErrorViewButtonEvent, DbxErrorWidgetEntry, DbxErrorWidgetEntryWithPopupComponentClass, DbxFileUploadAreaFilesChangedEvent, DbxFileUploadButtonFilesChangedEvent, DbxFileUploadComponentConfig, DbxFileUploadFilesChangedEvent, DbxFileUploadMode, DbxFilterButtonConfig, DbxFilterButtonConfigWithCustomFilter, DbxFilterButtonConfigWithPresetFilter, DbxFilterComponentConfig, DbxFilterPopoverComponentConfig, DbxFlexSize, DbxHelpContextKey, DbxHelpContextReference, DbxHelpViewPopoverButtonConfig, DbxHelpViewPopoverConfig, DbxHelpViewPopoverConfigWithoutOrigin, DbxHelpWidgetEntryData, DbxHelpWidgetServiceConfigFactory, DbxHelpWidgetServiceEntry, DbxIframeDialogConfig, DbxImageCompressionConfig, 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, DbxPdfMergeEditorAddFilesInput, DbxPdfMergeEditorConfig, DbxPdfMergeEditorFileUploadConfig, DbxPdfMergeEditorFileUploadState, DbxPdfMergeEditorFileUploadValidatorSlot, DbxPdfMergeEditorOutputSizeState, DbxPdfMergeEditorValidator, DbxPdfMergeEncryptedHandling, DbxPdfMergeOutputSizeLimitsConfig, DbxPdfMergeUploadButtonConfig, DbxPdfMergeUploadDialogConfig, DbxPdfMergeUploadDialogUploadButtonConfig, DbxPdfPreviewDialogConfig, DbxPopoverComponentConfig, DbxPopoverConfig, DbxPopoverConfigSizing, DbxPopoverKey, DbxPopupComponentConfig, DbxPopupConfig, DbxPopupKey, DbxPopupWindowStateType, DbxPresetFilterMenuConfig, DbxProgressButtonConfig, DbxProgressButtonGlobalConfig, DbxProgressButtonIcon, DbxProgressButtonTargetedConfig, DbxPromptConfirmConfig, DbxPromptConfirmDialogConfig, DbxSectionHeaderConfig, DbxSectionHeaderHType, DbxSectionPageScrollLockedMode, DbxSelectionListWrapperConfig, DbxSelectionValueListViewConfig, DbxSetStyleMode, DbxSidenavPosition, DbxSidenavSidebarState, DbxStepBlockComponentConfig, DbxStyleApplication, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, DbxStyleSupplement, DbxThemeColor, DbxThemeColorExtra, DbxThemeColorExtraSecondary, DbxThemeColorMain, DbxThemeColorMainOrExtra, DbxTwoColumnViewState, DbxValueAsListItem, DbxValueListAccordionViewConfig, DbxValueListGridItemViewGridSizeConfig, DbxValueListGridViewConfig, DbxValueListItem, DbxValueListItemConfig, DbxValueListItemDecisionFunction, DbxValueListItemGroup, DbxValueListViewConfig, DbxValueListViewGroupValuesFunction, DbxWebDefaultPageTitleDelegateConfig, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebFilePreviewServicePreviewFunction, DbxWebPageTitleDelegate, DbxWebPageTitleDelegateInput, DbxWebPageTitleDetails, DbxWebPageTitleInfoConfig, DbxWebPageTitleInfoReference, DbxWebPageTitleServiceConfig, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FullDbxPopoverComponentConfig, ImageBitmapToBlobEncoder, ImageBitmapToBlobEncoderInput, ImageCompressionStatus, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PdfMergeEditorState, PdfMergeEntry, PdfMergeEntryKind, PdfMergeEntryMove, PdfMergeEntryOriginal, PdfMergeEntryStatus, PdfMergeEntryValidationResult, PdfMergeEntryView, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ProvideDbxWebPageTitleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, TextChip, TwoColumnsState };
12666
+ 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_COLOR_CUSTOM_BG_CSS_CLASS, DBX_COLOR_CUSTOM_TEXT_CSS_CLASS, DBX_CURATED_COLOR_COUNT, DBX_CURATED_COLOR_TEMPLATES, DBX_CURATED_COLOR_TEMPLATE_KEY_PREFIX, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PDF_MERGE_EDITOR_CONFIG, DBX_PDF_MERGE_EDITOR_INITIAL_STATE, DBX_PDF_MERGE_EDITOR_PRESERVE_ENTRIES_ON_SLOT_DESTROY, DBX_PDF_MERGE_ENCRYPTED_ERROR_MESSAGE, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, 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_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DBX_WEB_PAGE_TITLE_SERVICE_CONFIG, DEFAULT_DBX_CHIP_TONE, DEFAULT_DBX_DETACH_KEY, 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_DISABLE_FUNCTION, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_LIST_SCROLL_DISTANCE, DEFAULT_DBX_LIST_THROTTLE_SCROLL, DEFAULT_DBX_LIST_VIEW_META_ICON, DEFAULT_DBX_PDF_MERGE_ENCRYPTED_HANDLING, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_STYLE_CONFIG_TOKEN, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_WEB_FILE_PREVIEW_SERVICE_DIALOG_WITH_COMPONENT_FUNCTION, DEFAULT_DBX_WEB_FILE_PREVIEW_SERVICE_PREVIEW_COMPONENT_FUNCTION, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_IMAGE_BITMAP_TO_BLOB_ENCODER, DEFAULT_IMAGE_JPEG_QUALITY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_PDF_MERGE_ACCEPT, 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, DbxAvatarViewComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColorService, DbxColorServiceConfig, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetachContentComponent, DbxDetachControlButtonsComponent, DbxDetachController, DbxDetachControlsComponent, DbxDetachInitDirective, DbxDetachInteractionModule, DbxDetachOutletComponent, DbxDetachOverlayComponent, DbxDetachService, DbxDetachWindowState, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIconTileComponent, DbxIconTileDirective, 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, DbxPdfMergeEditorComponent, DbxPdfMergeEditorFileUploadComponent, DbxPdfMergeEditorFileUploadHasStateDirective, DbxPdfMergeEditorFileUploadValidatorDirective, DbxPdfMergeEditorStore, DbxPdfMergeEditorStoreDirective, DbxPdfMergeEntryComponent, DbxPdfMergeListComponent, DbxPdfMergeUploadActionDirective, DbxPdfMergeUploadButtonDirective, DbxPdfMergeUploadDialogComponent, DbxPdfPreviewComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressButtonsModule, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorModule, DbxResizedDirective, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepBlockComponent, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, DbxTextColorDirective, DbxTextModule, DbxTwoBlockComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadDirective, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListAccordionViewComponent, DbxValueListAccordionViewContentComponent, DbxValueListAccordionViewContentGroupComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListGridViewContentGroupComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewComponentImportsModule, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWebFilePreviewComponent, DbxWebFilePreviewService, DbxWebModule, DbxWebPageTitleInfoDirective, DbxWebPageTitleService, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, DbxZipBlobPreviewComponent, DbxZipPreviewComponent, PDF_MERGE_RESULT_MIME_TYPE, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SIDE_NAV_DISPLAY_MODE_ORDER, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, UNKNOWN_ERROR_WIDGET_CODE, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, buildPdfMergeEntry, buildPdfMergeEntrySync, catchErrorServerParams, classifyPdfMergeFile, compactModeFromInput, compareScreenMediaWidthTypes, compressImageFile, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxCuratedColorConfigForString, dbxListAccordionViewComponentImportsAndExports, dbxListGridViewComponentImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxThemeColorCssVariable, dbxThemeColorCssVariableVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxWebDefaultPageTitleDelegate, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, flattenAccordionGroups, formatPdfMergeEntrySize, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, isDbxColorConfig, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, mergePdfMergeEntries, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openPdfPreviewDialog, openZipPreviewDialog, overrideClickElementEffect, provideDbxDetachController, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxPdfMergeEditorConfig, provideDbxPdfMergeEditorPreserveEntriesOnSlotDestroy, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideDbxWebPageTitleService, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier, validatePdfMergeEntry };
12667
+ export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, BuildPdfMergeEntryConfig, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CompressImageDimensions, CompressImageFileResult, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, DbxAccordionRenderEntry, DbxAccordionRenderGroupFooterEntry, DbxAccordionRenderGroupHeaderEntry, DbxAccordionRenderItemEntry, DbxActionConfirmConfig, DbxActionDialogFunction, DbxActionPopoverFunction, DbxActionPopoverFunctionParams, DbxActionSnackbarActionConfig, DbxActionSnackbarDisplayConfig, DbxActionSnackbarDisplayConfigGeneratorFunction, DbxActionSnackbarEvent, DbxActionSnackbarEventMakeConfig, DbxActionSnackbarGeneratorInput, DbxActionSnackbarGeneratorUndoInput, DbxActionSnackbarGeneratorUndoInputConfig, DbxActionSnackbarKnownType, DbxActionSnackbarServiceConfig, DbxActionSnackbarType, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyType, DbxAnchorListExpandedAnchor, DbxAvatarComponentForContextFunction, DbxAvatarContext, DbxAvatarImageFit, DbxAvatarInjectionComponentConfig, DbxAvatarKey, DbxAvatarSelector, DbxAvatarSize, DbxAvatarStyle, DbxButtonDisplayStylePair, DbxButtonStyle, DbxButtonType, DbxChipDisplay, DbxColorConfig, DbxColorConfigTemplate, DbxColorConfigTemplateKey, DbxColorInput, DbxColorTone, DbxContentBorderOpacity, DbxContentContainerPadding, DbxContentContainerWidth, DbxContentPitScrollableHeight, DbxContentPitScrollableHeightSetting, DbxContentPitScrollableInput, DbxDetachConfig, DbxDetachInstance, DbxDetachKey, DbxDetachOverlayConfig, DbxDetachOverlayData, DbxDetachWindowStateType, DbxDialogContentConfig, DbxDialogContentContainerWidth, DbxDialogContentFooterConfig, DbxDownloadBlobButtonConfig, DbxEmbedComponentElement, DbxEmbedDialogConfig, DbxErrorPopoverConfig, DbxErrorSnackbarConfig, DbxErrorSnackbarData, DbxErrorViewButtonEvent, DbxErrorWidgetEntry, DbxErrorWidgetEntryWithPopupComponentClass, DbxFileUploadAreaFilesChangedEvent, DbxFileUploadButtonFilesChangedEvent, DbxFileUploadComponentConfig, DbxFileUploadFilesChangedEvent, DbxFileUploadMode, DbxFilterButtonConfig, DbxFilterButtonConfigWithCustomFilter, DbxFilterButtonConfigWithPresetFilter, DbxFilterComponentConfig, DbxFilterPopoverComponentConfig, DbxFlexSize, DbxHelpContextKey, DbxHelpContextReference, DbxHelpViewPopoverButtonConfig, DbxHelpViewPopoverConfig, DbxHelpViewPopoverConfigWithoutOrigin, DbxHelpWidgetEntryData, DbxHelpWidgetServiceConfigFactory, DbxHelpWidgetServiceEntry, DbxIframeDialogConfig, DbxImageCompressionConfig, 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, DbxPdfMergeEditorAddFilesInput, DbxPdfMergeEditorConfig, DbxPdfMergeEditorFileUploadConfig, DbxPdfMergeEditorFileUploadState, DbxPdfMergeEditorFileUploadValidatorSlot, DbxPdfMergeEditorOutputSizeState, DbxPdfMergeEditorValidator, DbxPdfMergeEncryptedHandling, DbxPdfMergeOutputSizeLimitsConfig, DbxPdfMergeUploadButtonConfig, DbxPdfMergeUploadDialogConfig, DbxPdfMergeUploadDialogUploadButtonConfig, DbxPdfPreviewDialogConfig, DbxPopoverComponentConfig, DbxPopoverConfig, DbxPopoverConfigSizing, DbxPopoverKey, DbxPopupComponentConfig, DbxPopupConfig, DbxPopupKey, DbxPopupWindowStateType, DbxPresetFilterMenuConfig, DbxProgressButtonConfig, DbxProgressButtonGlobalConfig, DbxProgressButtonIcon, DbxProgressButtonTargetedConfig, DbxPromptConfirmConfig, DbxPromptConfirmDialogConfig, DbxSectionHeaderConfig, DbxSectionHeaderHType, DbxSectionPageScrollLockedMode, DbxSelectionListWrapperConfig, DbxSelectionValueListViewConfig, DbxSetStyleMode, DbxSidenavPosition, DbxSidenavSidebarState, DbxStepBlockComponentConfig, DbxStyleApplication, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, DbxStyleSupplement, DbxThemeColor, DbxThemeColorExtra, DbxThemeColorExtraSecondary, DbxThemeColorMain, DbxThemeColorMainOrExtra, DbxTwoColumnViewState, DbxValueAsListItem, DbxValueListAccordionViewConfig, DbxValueListGridItemViewGridSizeConfig, DbxValueListGridViewConfig, DbxValueListItem, DbxValueListItemConfig, DbxValueListItemDecisionFunction, DbxValueListItemGroup, DbxValueListViewConfig, DbxValueListViewGroupValuesFunction, DbxWebDefaultPageTitleDelegateConfig, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebFilePreviewServicePreviewFunction, DbxWebPageTitleDelegate, DbxWebPageTitleDelegateInput, DbxWebPageTitleDetails, DbxWebPageTitleInfoConfig, DbxWebPageTitleInfoReference, DbxWebPageTitleServiceConfig, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FullDbxPopoverComponentConfig, ImageBitmapToBlobEncoder, ImageBitmapToBlobEncoderInput, ImageCompressionStatus, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PdfMergeEditorState, PdfMergeEntry, PdfMergeEntryKind, PdfMergeEntryMove, PdfMergeEntryOriginal, PdfMergeEntryStatus, PdfMergeEntryValidationResult, PdfMergeEntryView, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ProvideDbxWebPageTitleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, TextChip, TwoColumnsState };