@dereekb/dbx-web 13.10.7 → 13.10.8
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/docs/README.md +10 -0
- package/fesm2022/dereekb-dbx-web-calendar.mjs +9 -9
- package/fesm2022/dereekb-dbx-web-docs.mjs +146 -0
- package/fesm2022/dereekb-dbx-web-docs.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-web-mapbox.mjs +52 -52
- package/fesm2022/dereekb-dbx-web-table.mjs +77 -77
- package/fesm2022/dereekb-dbx-web.mjs +1438 -914
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/lib/action/snackbar/_snackbar.scss +5 -0
- package/lib/button/_button.scss +27 -0
- package/lib/error/_error.scss +5 -0
- package/lib/extension/pdf/_pdf.scss +19 -59
- package/lib/interaction/dialog/_dialog.scss +5 -0
- package/lib/interaction/popover/_popover.scss +5 -0
- package/lib/interaction/popup/_popup.scss +5 -0
- package/lib/interaction/prompt/_prompt.scss +4 -0
- package/lib/interaction/upload/_upload.scss +15 -2
- package/lib/layout/avatar/_avatar.scss +26 -0
- package/lib/layout/bar/_bar.scss +27 -0
- package/lib/layout/block/_block.scss +4 -0
- package/lib/layout/column/_column.scss +3 -0
- package/lib/layout/content/_content.scss +29 -0
- package/lib/layout/flex/_flex.scss +37 -0
- package/lib/layout/list/_list.scss +99 -0
- package/lib/layout/section/_section.scss +7 -0
- package/lib/layout/style/_style.scss +49 -0
- package/lib/layout/text/_text.scss +298 -14
- package/lib/loading/_loading.scss +6 -0
- package/package.json +27 -14
- package/types/dereekb-dbx-web-docs.d.ts +73 -0
- package/types/dereekb-dbx-web.d.ts +521 -147
|
@@ -4451,6 +4451,110 @@ declare class DbxDetailBlockHeaderComponent {
|
|
|
4451
4451
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetailBlockHeaderComponent, "dbx-detail-block-header", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "alignHeader": { "alias": "alignHeader"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
4452
4452
|
}
|
|
4453
4453
|
|
|
4454
|
+
/**
|
|
4455
|
+
* Rounded, padded leading-icon tile. Renders a `<mat-icon>` from the
|
|
4456
|
+
* `icon` input centered inside a flex tile, or projects custom content
|
|
4457
|
+
* when `icon` is not supplied. Apply `[dbxColor]` (optionally with
|
|
4458
|
+
* `[dbxColorTone]`) directly on the host to give the tile a tonal or
|
|
4459
|
+
* full-color background — the tile itself sets layout only.
|
|
4460
|
+
*
|
|
4461
|
+
* Set `[round]="true"` to apply the `dbx-icon-tile-round` modifier and
|
|
4462
|
+
* render a circle instead of the default 12px-rounded square.
|
|
4463
|
+
*
|
|
4464
|
+
* Equivalent to writing `<div dbxIconTile [dbxColor]="'…'"><mat-icon>…</mat-icon></div>`,
|
|
4465
|
+
* but with the icon name as a single input. Backed by the same
|
|
4466
|
+
* `dbx-icon-tile` host class as {@link DbxIconTileDirective}, so the CSS
|
|
4467
|
+
* utility, the directive form, and this component all share styling.
|
|
4468
|
+
*
|
|
4469
|
+
* Sizing, padding, border radius, font, and inner `.mat-icon` size are
|
|
4470
|
+
* all configurable via CSS custom properties on the host:
|
|
4471
|
+
* `--dbx-icon-tile-width`, `--dbx-icon-tile-height`,
|
|
4472
|
+
* `--dbx-icon-tile-min-width`, `--dbx-icon-tile-padding`,
|
|
4473
|
+
* `--dbx-icon-tile-border-radius`, `--dbx-icon-tile-font-size`,
|
|
4474
|
+
* `--dbx-icon-tile-font-weight`, `--dbx-icon-tile-icon-size`.
|
|
4475
|
+
*
|
|
4476
|
+
* @dbxWebComponent
|
|
4477
|
+
* @dbxWebSlug icon-tile
|
|
4478
|
+
* @dbxWebCategory layout
|
|
4479
|
+
* @dbxWebRelated icon-tile-host, dbx-color, list-two-line-item
|
|
4480
|
+
* @dbxWebSkillRefs dbx__ref__dbx-ui-building-blocks
|
|
4481
|
+
* @dbxWebContentProjection Optional fallback content rendered when `icon` is not supplied (e.g. a custom icon component).
|
|
4482
|
+
* @dbxWebMinimalExample ```html
|
|
4483
|
+
* <dbx-icon-tile [icon]="'verified'" [dbxColor]="'success'"></dbx-icon-tile>
|
|
4484
|
+
* ```
|
|
4485
|
+
*
|
|
4486
|
+
* @example
|
|
4487
|
+
* ```html
|
|
4488
|
+
* <dbx-icon-tile [icon]="'check'" [dbxColor]="'primary'" [dbxColorTone]="18"></dbx-icon-tile>
|
|
4489
|
+
*
|
|
4490
|
+
* <dbx-icon-tile [icon]="'star'" [round]="true" [dbxColor]="'accent'"></dbx-icon-tile>
|
|
4491
|
+
*
|
|
4492
|
+
* <dbx-icon-tile [dbxColor]="'accent'">
|
|
4493
|
+
* <my-custom-glyph></my-custom-glyph>
|
|
4494
|
+
* </dbx-icon-tile>
|
|
4495
|
+
* ```
|
|
4496
|
+
*/
|
|
4497
|
+
declare class DbxIconTileComponent {
|
|
4498
|
+
readonly icon: _angular_core.InputSignal<Maybe<string>>;
|
|
4499
|
+
readonly round: _angular_core.InputSignal<boolean>;
|
|
4500
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxIconTileComponent, never>;
|
|
4501
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxIconTileComponent, "dbx-icon-tile", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "round": { "alias": "round"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
4502
|
+
}
|
|
4503
|
+
|
|
4504
|
+
/**
|
|
4505
|
+
* Host-class form of the icon tile — applies the `dbx-icon-tile` utility
|
|
4506
|
+
* (flex-centered, 12px rounded, 8px padded) to an existing element. Use
|
|
4507
|
+
* this when an existing slot (e.g. a list row's `.item-icon` div) needs
|
|
4508
|
+
* the tile presentation without introducing a wrapping component, or
|
|
4509
|
+
* when stacking with another component that already owns the host (so a
|
|
4510
|
+
* `<dbx-icon-tile>` child element isn't possible).
|
|
4511
|
+
*
|
|
4512
|
+
* Pair with `[dbxColor]` (optionally `[dbxColorTone]`) on the same host
|
|
4513
|
+
* for a tonal/full-color background. The host has no background of its
|
|
4514
|
+
* own — only layout. For the convenient component form that renders the
|
|
4515
|
+
* `<mat-icon>` for you, use {@link DbxIconTileComponent} (`<dbx-icon-tile>`).
|
|
4516
|
+
*
|
|
4517
|
+
* Sizing, padding, border radius, font, and inner `.mat-icon` size are
|
|
4518
|
+
* all configurable via CSS custom properties on the host:
|
|
4519
|
+
* `--dbx-icon-tile-width`, `--dbx-icon-tile-height`,
|
|
4520
|
+
* `--dbx-icon-tile-min-width`, `--dbx-icon-tile-padding`,
|
|
4521
|
+
* `--dbx-icon-tile-border-radius`, `--dbx-icon-tile-font-size`,
|
|
4522
|
+
* `--dbx-icon-tile-font-weight`, `--dbx-icon-tile-icon-size`.
|
|
4523
|
+
*
|
|
4524
|
+
* @dbxWebComponent
|
|
4525
|
+
* @dbxWebSlug icon-tile-host
|
|
4526
|
+
* @dbxWebCategory layout
|
|
4527
|
+
* @dbxWebRelated icon-tile, dbx-color, list-two-line-item
|
|
4528
|
+
* @dbxWebSkillRefs dbx__ref__dbx-ui-building-blocks
|
|
4529
|
+
* @dbxWebMinimalExample ```html
|
|
4530
|
+
* <div dbxIconTile [dbxColor]="'primary'" [dbxColorTone]="18">
|
|
4531
|
+
* <mat-icon>star</mat-icon>
|
|
4532
|
+
* </div>
|
|
4533
|
+
* ```
|
|
4534
|
+
*
|
|
4535
|
+
* @example
|
|
4536
|
+
* ```html
|
|
4537
|
+
* <div class="dbx-list-two-line-item dbx-list-two-line-item-with-icon">
|
|
4538
|
+
* <div class="item-icon" dbxIconTile [dbxColor]="'primary'" [dbxColorTone]="18">
|
|
4539
|
+
* <mat-icon>check_circle</mat-icon>
|
|
4540
|
+
* </div>
|
|
4541
|
+
* <div class="item-left">
|
|
4542
|
+
* <span class="item-title">Title</span>
|
|
4543
|
+
* <span class="item-details">Details</span>
|
|
4544
|
+
* </div>
|
|
4545
|
+
* </div>
|
|
4546
|
+
* ```
|
|
4547
|
+
*/
|
|
4548
|
+
declare class DbxIconTileDirective {
|
|
4549
|
+
/**
|
|
4550
|
+
* When `true`, applies the `dbx-icon-tile-round` modifier to render the
|
|
4551
|
+
* tile as a circle instead of a 12px-rounded square.
|
|
4552
|
+
*/
|
|
4553
|
+
readonly dbxIconTileRound: _angular_core.InputSignal<boolean>;
|
|
4554
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxIconTileDirective, never>;
|
|
4555
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxIconTileDirective, "[dbxIconTile]", never, { "dbxIconTileRound": { "alias": "dbxIconTileRound"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4556
|
+
}
|
|
4557
|
+
|
|
4454
4558
|
/**
|
|
4455
4559
|
* Configuration object for {@link DbxStepBlockComponent}.
|
|
4456
4560
|
*
|
|
@@ -8940,6 +9044,27 @@ interface PdfMergeEntry extends Pick<PdfMergeEntryValidationResult, 'errorMessag
|
|
|
8940
9044
|
* The validation promise.
|
|
8941
9045
|
*/
|
|
8942
9046
|
readonly validation: Promise<PdfMergeEntryValidationResult>;
|
|
9047
|
+
/**
|
|
9048
|
+
* Optional slot identifier. Set when the entry was added through a {@link DbxPdfMergeEditorFileUploadComponent} slot, used by the store to filter entries per slot and clean them up when the slot component is destroyed. Entries added through the editor's default upload area have no slot id.
|
|
9049
|
+
*/
|
|
9050
|
+
readonly slotId?: Maybe<string>;
|
|
9051
|
+
}
|
|
9052
|
+
/**
|
|
9053
|
+
* Validation delegate registered on the {@link DbxPdfMergeEditorStore}. Receives the live {@link PdfMergeEntry} stream and returns a stream of `boolean` values controlling whether the store may emit a merge result. Emitting `false` causes {@link DbxPdfMergeEditorStore.currentMergeOutput$} to emit `undefined` and prevents {@link DbxPdfMergeEditorStore.mergeOutput$} from emitting.
|
|
9054
|
+
*/
|
|
9055
|
+
type DbxPdfMergeEditorValidator = (entries$: Observable<PdfMergeEntry[]>) => Observable<boolean>;
|
|
9056
|
+
/**
|
|
9057
|
+
* Minimal interface that a slot upload component exposes to {@link DbxPdfMergeEditorFileUploadValidatorDirective}. Implemented by {@link DbxPdfMergeEditorFileUploadComponent}.
|
|
9058
|
+
*/
|
|
9059
|
+
interface DbxPdfMergeEditorFileUploadValidatorSlot {
|
|
9060
|
+
/**
|
|
9061
|
+
* Identifies the slot. Used by the validator directive only for diagnostics — the directive aggregates by reference, not by id.
|
|
9062
|
+
*/
|
|
9063
|
+
readonly slotId: () => string;
|
|
9064
|
+
/**
|
|
9065
|
+
* Stream that emits `true` while this slot is satisfied (per its own config and the validator's required/optional rules) and `false` otherwise.
|
|
9066
|
+
*/
|
|
9067
|
+
readonly isValid$: Observable<boolean>;
|
|
8943
9068
|
}
|
|
8944
9069
|
/**
|
|
8945
9070
|
* State managed by the PDF merge editor's component store.
|
|
@@ -8965,14 +9090,27 @@ interface PdfMergeEntryMove {
|
|
|
8965
9090
|
* @returns The classified kind, or `null` if the file is not a supported PDF/PNG/JPEG.
|
|
8966
9091
|
*/
|
|
8967
9092
|
declare function classifyPdfMergeFile(file: File): PdfMergeEntryKind | null;
|
|
9093
|
+
/**
|
|
9094
|
+
* Optional input for {@link buildPdfMergeEntry}.
|
|
9095
|
+
*/
|
|
9096
|
+
interface BuildPdfMergeEntryConfig {
|
|
9097
|
+
/**
|
|
9098
|
+
* Optional slot identifier to attach to the entry. Used by the store to attribute the entry to a {@link DbxPdfMergeEditorFileUploadComponent} slot.
|
|
9099
|
+
*/
|
|
9100
|
+
readonly slotId?: Maybe<string>;
|
|
9101
|
+
/**
|
|
9102
|
+
* Optional id factory override (used by tests for deterministic ids).
|
|
9103
|
+
*/
|
|
9104
|
+
readonly idFactory?: ModelIdFactory;
|
|
9105
|
+
}
|
|
8968
9106
|
/**
|
|
8969
9107
|
* Builds a {@link PdfMergeEntry} from a user-provided file, classifying its kind and assigning a fresh id. Returns `null` for unsupported file types so the caller can drop them.
|
|
8970
9108
|
*
|
|
8971
9109
|
* @param file - File the user added.
|
|
8972
|
-
* @param
|
|
9110
|
+
* @param config - Optional config for slot attribution and id factory override.
|
|
8973
9111
|
* @returns The new entry with `validating` status, or `null` when the file is not a supported PDF/PNG/JPEG.
|
|
8974
9112
|
*/
|
|
8975
|
-
declare function buildPdfMergeEntry(file: File,
|
|
9113
|
+
declare function buildPdfMergeEntry(file: File, config?: Maybe<BuildPdfMergeEntryConfig>): PdfMergeEntry | null;
|
|
8976
9114
|
/**
|
|
8977
9115
|
* Lightly inspects a file's bytes to confirm the entry can participate in a merge. PDFs are checked for the standard `%PDF-` header, the `%%EOF` marker, and absence of an `/Encrypt` dictionary. Images are accepted as-is — the actual decode happens during merge.
|
|
8978
9116
|
*
|
|
@@ -8993,9 +9131,17 @@ declare function mergePdfMergeEntries(entries: readonly PdfMergeEntry[]): Promis
|
|
|
8993
9131
|
*/
|
|
8994
9132
|
declare const DBX_PDF_MERGE_EDITOR_INITIAL_STATE: PdfMergeEditorState;
|
|
8995
9133
|
/**
|
|
8996
|
-
*
|
|
9134
|
+
* Input accepted by {@link DbxPdfMergeEditorStore.addFiles}: either a bare list of files (treated as unscoped) or `{ files, slotId }` to attribute the new entries to a slot.
|
|
9135
|
+
*/
|
|
9136
|
+
type DbxPdfMergeEditorAddFilesInput = readonly File[] | {
|
|
9137
|
+
readonly files: readonly File[];
|
|
9138
|
+
readonly slotId?: Maybe<string>;
|
|
9139
|
+
};
|
|
9140
|
+
/**
|
|
9141
|
+
* Component-scoped {@link ComponentStore} that owns the list of files staged for merging in the PDF merge editor. Each {@link PdfMergeEntry} carries its own validation promise from the moment it is built; {@link entries$} composes those promises into a live stream — emitting the entry first in `validating` state and then again as each promise resolves to `ready` or `error`. {@link mergeOutput$} emits the merged PDF blob once every entry has finished validating, at least one is `ready`, and the registered validator delegate (if any) reports `true`.
|
|
8997
9142
|
*/
|
|
8998
9143
|
declare class DbxPdfMergeEditorStore extends ComponentStore<PdfMergeEditorState> {
|
|
9144
|
+
private readonly _validator$;
|
|
8999
9145
|
constructor();
|
|
9000
9146
|
/**
|
|
9001
9147
|
* Live entry list. Each raw entry's {@link PdfMergeEntry.validation} promise is mapped onto its status: while pending, the entry is emitted with status `validating`; once resolved, the entry is mutated to `ready`/`error` and re-emitted. Subsequent emissions of the underlying state pass already-resolved entries through unchanged.
|
|
@@ -9008,16 +9154,53 @@ declare class DbxPdfMergeEditorStore extends ComponentStore<PdfMergeEditorState>
|
|
|
9008
9154
|
*/
|
|
9009
9155
|
readonly isValidating$: Observable<boolean>;
|
|
9010
9156
|
/**
|
|
9011
|
-
* Emits the
|
|
9157
|
+
* Emits the boolean output of the registered {@link DbxPdfMergeEditorValidator} delegate, or a constant `true` when no delegate is registered. {@link currentMergeOutput$} gates merge emissions on this stream.
|
|
9158
|
+
*/
|
|
9159
|
+
readonly isValid$: Observable<boolean>;
|
|
9160
|
+
/**
|
|
9161
|
+
* Emits the merged PDF blob whenever every entry has finished validating (see {@link isValidating$}), at least one is `ready`, and the registered validator delegate (if any) reports `true`. Emits `undefined` while validation is in flight, when the list is empty, when the delegate reports invalid, or when the most recent merge failed. Multicast via {@link shareReplay} so multiple subscribers share a single merge.
|
|
9012
9162
|
*/
|
|
9013
9163
|
readonly currentMergeOutput$: Observable<Maybe<Blob>>;
|
|
9014
9164
|
readonly mergeOutput$: Observable<Blob>;
|
|
9015
9165
|
/**
|
|
9016
|
-
*
|
|
9166
|
+
* Returns an observable of entries belonging to the given slot id. The result is filtered from {@link entries$} so the per-slot stream still reflects validation progress and removals.
|
|
9167
|
+
*
|
|
9168
|
+
* @param slotId - Slot identifier to filter for.
|
|
9169
|
+
* @returns Observable of entries whose `slotId` matches.
|
|
9170
|
+
*/
|
|
9171
|
+
entriesForSlotId$(slotId: string): Observable<PdfMergeEntry[]>;
|
|
9172
|
+
/**
|
|
9173
|
+
* Registers a {@link DbxPdfMergeEditorValidator} delegate that gates merge emissions. Only one delegate is active at a time — calling this replaces any previously registered delegate.
|
|
9174
|
+
*
|
|
9175
|
+
* @param validator - Delegate to register, or a falsy value to clear.
|
|
9176
|
+
*/
|
|
9177
|
+
setValidator(validator: Maybe<DbxPdfMergeEditorValidator>): void;
|
|
9178
|
+
/**
|
|
9179
|
+
* Clears any registered validator delegate so {@link isValid$} returns to its default `true` stream.
|
|
9180
|
+
*/
|
|
9181
|
+
clearValidator(): void;
|
|
9182
|
+
/**
|
|
9183
|
+
* Builds {@link PdfMergeEntry} objects from the supplied files (skipping unsupported types) and appends them to state. Each entry's validation promise starts when the entry is built; {@link entries$} reflects each result as it resolves. When `input` is an object with a `slotId`, the resulting entries are tagged with that slot id.
|
|
9017
9184
|
*/
|
|
9018
|
-
readonly addFiles: (observableOrValue:
|
|
9185
|
+
readonly addFiles: (observableOrValue: DbxPdfMergeEditorAddFilesInput | Observable<DbxPdfMergeEditorAddFilesInput>) => rxjs.Subscription;
|
|
9019
9186
|
readonly removeEntry: (observableOrValue: string | Observable<string>) => rxjs.Subscription;
|
|
9187
|
+
/**
|
|
9188
|
+
* Removes every entry whose `slotId` matches the given id. Used by {@link DbxPdfMergeEditorFileUploadComponent} on destroy so a slot's entries leave with it.
|
|
9189
|
+
*/
|
|
9190
|
+
readonly removeEntriesBySlotId: (observableOrValue: string | Observable<string>) => rxjs.Subscription;
|
|
9020
9191
|
readonly moveEntry: (observableOrValue: PdfMergeEntryMove | Observable<PdfMergeEntryMove>) => rxjs.Subscription;
|
|
9192
|
+
/**
|
|
9193
|
+
* Reorders entries inside a single slot. The `previousIndex`/`currentIndex` are slot-local — the indices a {@link DbxPdfMergeEditorFileUploadComponent} sees in its filtered view of {@link entries$}. The updater translates them to global `rawEntries` positions and applies an in-place {@link moveItemInArray}, leaving entries from other slots untouched.
|
|
9194
|
+
*/
|
|
9195
|
+
readonly moveEntryWithinSlot: (observableOrValue: {
|
|
9196
|
+
readonly slotId: string;
|
|
9197
|
+
readonly previousIndex: number;
|
|
9198
|
+
readonly currentIndex: number;
|
|
9199
|
+
} | Observable<{
|
|
9200
|
+
readonly slotId: string;
|
|
9201
|
+
readonly previousIndex: number;
|
|
9202
|
+
readonly currentIndex: number;
|
|
9203
|
+
}>) => rxjs.Subscription;
|
|
9021
9204
|
readonly clearAll: () => void;
|
|
9022
9205
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfMergeEditorStore, never>;
|
|
9023
9206
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxPdfMergeEditorStore>;
|
|
@@ -9238,16 +9421,35 @@ declare abstract class AbstractDbxFileUploadComponent implements DbxFileUploadAc
|
|
|
9238
9421
|
declare class DbxPdfMergeEditorComponent {
|
|
9239
9422
|
readonly store: DbxPdfMergeEditorStore;
|
|
9240
9423
|
private readonly _matDialog;
|
|
9241
|
-
|
|
9424
|
+
/**
|
|
9425
|
+
* Single-slot subscription tracker for the deferred Preview path. Replacing the slot cancels any earlier in-flight wait so rapid clicks (or repeated programmatic calls) cannot stack pending dialogs.
|
|
9426
|
+
*/
|
|
9427
|
+
private readonly _pendingPreview;
|
|
9242
9428
|
readonly accept: _angular_core.InputSignal<string | _dereekb_dbx_web.FileAcceptFilterTypeStringArray | _dereekb_dbx_web.FileAcceptFunction>;
|
|
9243
9429
|
readonly multiple: _angular_core.InputSignal<boolean>;
|
|
9244
9430
|
readonly fileName: _angular_core.InputSignal<string>;
|
|
9245
9431
|
readonly showDownloadButton: _angular_core.InputSignal<boolean>;
|
|
9246
9432
|
readonly showPreviewButton: _angular_core.InputSignal<boolean>;
|
|
9247
9433
|
readonly downloadButton: _angular_core.InputSignal<Maybe<DbxButtonDisplayStylePair>>;
|
|
9434
|
+
/**
|
|
9435
|
+
* When `false`, hides the default "Add files" upload area. Use when projecting one or more {@link DbxPdfMergeEditorFileUploadComponent} slots through `<ng-content>` instead of relying on the unscoped uploader.
|
|
9436
|
+
*/
|
|
9437
|
+
readonly showAddFiles: _angular_core.InputSignal<boolean>;
|
|
9438
|
+
/**
|
|
9439
|
+
* When `false`, hides the shared {@link DbxPdfMergeListComponent} below the slot content. Useful when each slot displays its owned files inline and you don't want a duplicate unified list.
|
|
9440
|
+
*/
|
|
9441
|
+
readonly showFileList: _angular_core.InputSignal<boolean>;
|
|
9248
9442
|
readonly entriesChanged: _angular_core.OutputEmitterRef<readonly PdfMergeEntry[]>;
|
|
9249
9443
|
readonly hasReadyEntriesSignal: _angular_core.Signal<boolean>;
|
|
9250
9444
|
readonly entryCountSignal: _angular_core.Signal<number>;
|
|
9445
|
+
/**
|
|
9446
|
+
* Mirrors {@link DbxPdfMergeEditorStore.isValid$}. Defaults to `true` when no validator delegate is registered, so the Preview/Download buttons are gated only by the registered validator's output (if any).
|
|
9447
|
+
*/
|
|
9448
|
+
readonly isValidSignal: _angular_core.Signal<boolean>;
|
|
9449
|
+
/**
|
|
9450
|
+
* Computed gate for the Preview and Download affordances. Disabled while no entry is `ready` or while the registered validator delegate reports invalid.
|
|
9451
|
+
*/
|
|
9452
|
+
readonly canMergeSignal: _angular_core.Signal<boolean>;
|
|
9251
9453
|
/**
|
|
9252
9454
|
* Latest merged blob (or `undefined` while validation/merge is in flight or no entries are ready). Sourced from {@link DbxPdfMergeEditorStore.currentMergeOutput$} so the download button always reflects the current merge without needing the user to click Preview first.
|
|
9253
9455
|
*/
|
|
@@ -9259,7 +9461,316 @@ declare class DbxPdfMergeEditorComponent {
|
|
|
9259
9461
|
onPreview(): void;
|
|
9260
9462
|
private openPreviewDialog;
|
|
9261
9463
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfMergeEditorComponent, never>;
|
|
9262
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxPdfMergeEditorComponent, "dbx-pdf-merge-editor", never, { "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "showDownloadButton": { "alias": "showDownloadButton"; "required": false; "isSignal": true; }; "showPreviewButton": { "alias": "showPreviewButton"; "required": false; "isSignal": true; }; "downloadButton": { "alias": "downloadButton"; "required": false; "isSignal": true; }; }, { "entriesChanged": "entriesChanged"; }, never,
|
|
9464
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxPdfMergeEditorComponent, "dbx-pdf-merge-editor", never, { "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "showDownloadButton": { "alias": "showDownloadButton"; "required": false; "isSignal": true; }; "showPreviewButton": { "alias": "showPreviewButton"; "required": false; "isSignal": true; }; "downloadButton": { "alias": "downloadButton"; "required": false; "isSignal": true; }; "showAddFiles": { "alias": "showAddFiles"; "required": false; "isSignal": true; }; "showFileList": { "alias": "showFileList"; "required": false; "isSignal": true; }; }, { "entriesChanged": "entriesChanged"; }, never, ["*"], true, never>;
|
|
9465
|
+
}
|
|
9466
|
+
|
|
9467
|
+
/**
|
|
9468
|
+
* Event emitted by {@link DbxFileUploadButtonComponent} when files are selected.
|
|
9469
|
+
*/
|
|
9470
|
+
type DbxFileUploadButtonFilesChangedEvent = DbxFileUploadFilesChangedEvent;
|
|
9471
|
+
/**
|
|
9472
|
+
* File upload button that opens a native file picker and emits accepted/rejected file results.
|
|
9473
|
+
*
|
|
9474
|
+
* @example
|
|
9475
|
+
* ```html
|
|
9476
|
+
* <dbx-file-upload-button [text]="'Upload'" [icon]="'upload'" [accept]="['image/*']" [multiple]="true" (filesChanged)="onFiles($event)"></dbx-file-upload-button>
|
|
9477
|
+
* ```
|
|
9478
|
+
*/
|
|
9479
|
+
declare class DbxFileUploadButtonComponent extends AbstractDbxFileUploadComponent {
|
|
9480
|
+
readonly fileInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
9481
|
+
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
9482
|
+
readonly icon: _angular_core.InputSignal<Maybe<string>>;
|
|
9483
|
+
readonly ariaLabel: _angular_core.InputSignal<Maybe<string>>;
|
|
9484
|
+
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
9485
|
+
readonly filesChanged: _angular_core.OutputEmitterRef<DbxFileUploadFilesChangedEvent>;
|
|
9486
|
+
readonly buttonAcceptSignal: _angular_core.Signal<string | undefined>;
|
|
9487
|
+
readonly buttonMultipleSignal: _angular_core.Signal<boolean>;
|
|
9488
|
+
readonly filesAcceptedFunctionSignal: _angular_core.Signal<_dereekb_dbx_web.FileArrayAcceptMatchFunction | undefined>;
|
|
9489
|
+
/**
|
|
9490
|
+
* The HTML attribute should not be added if it is false, so we return null.
|
|
9491
|
+
*/
|
|
9492
|
+
readonly multipleAttributeSignal: _angular_core.Signal<"" | null>;
|
|
9493
|
+
/**
|
|
9494
|
+
* NOTE: A Chrome bug can cause "File chooser dialog can only be shown with a user activation" errors
|
|
9495
|
+
* when Chrome's "Restart to Update" banner is visible. Restarting Chrome to apply the update resolves it.
|
|
9496
|
+
*
|
|
9497
|
+
* See https://issues.chromium.org/issues/330663542 (scroll to bottom for details).
|
|
9498
|
+
*/
|
|
9499
|
+
openInput(): void;
|
|
9500
|
+
fileInputChanged(): void;
|
|
9501
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFileUploadButtonComponent, never>;
|
|
9502
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFileUploadButtonComponent, "dbx-file-upload-button", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; }, never, ["*"], true, never>;
|
|
9503
|
+
}
|
|
9504
|
+
|
|
9505
|
+
/**
|
|
9506
|
+
* Event emitted by {@link DbxFileUploadAreaComponent} when files are dropped.
|
|
9507
|
+
*/
|
|
9508
|
+
type DbxFileUploadAreaFilesChangedEvent = DbxFileUploadFilesChangedEvent;
|
|
9509
|
+
/**
|
|
9510
|
+
* Drag-and-drop file upload area that accepts dropped files and emits accepted/rejected results.
|
|
9511
|
+
*
|
|
9512
|
+
* @example
|
|
9513
|
+
* ```html
|
|
9514
|
+
* <dbx-file-upload-area [accept]="['image/*']" [multiple]="true" [hint]="true" (filesChanged)="onFiles($event)">
|
|
9515
|
+
* <p>Drop files here</p>
|
|
9516
|
+
* </dbx-file-upload-area>
|
|
9517
|
+
* ```
|
|
9518
|
+
*/
|
|
9519
|
+
declare class DbxFileUploadAreaComponent extends AbstractDbxFileUploadComponent {
|
|
9520
|
+
readonly icon: _angular_core.InputSignal<Maybe<string>>;
|
|
9521
|
+
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
9522
|
+
readonly hint: _angular_core.InputSignal<Maybe<string | boolean>>;
|
|
9523
|
+
readonly show: _angular_core.InputSignal<boolean>;
|
|
9524
|
+
readonly hintSignal: _angular_core.Signal<string | null>;
|
|
9525
|
+
readonly filesChanged: _angular_core.OutputEmitterRef<DbxFileUploadFilesChangedEvent>;
|
|
9526
|
+
readonly areaClicked: _angular_core.OutputEmitterRef<void>;
|
|
9527
|
+
readonly areaDragActiveChanged: _angular_core.OutputEmitterRef<boolean>;
|
|
9528
|
+
readonly dragOverStateSignal: _angular_core.WritableSignal<boolean>;
|
|
9529
|
+
readonly filesAcceptedFunctionSignal: _angular_core.Signal<_dereekb_dbx_web.FileArrayAcceptMatchFunction>;
|
|
9530
|
+
onClick(evt: MouseEvent): void;
|
|
9531
|
+
onDragOver(evt: DragEvent): void;
|
|
9532
|
+
onDragLeave(evt: DragEvent): void;
|
|
9533
|
+
onDrop(evt: DragEvent): void;
|
|
9534
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFileUploadAreaComponent, never>;
|
|
9535
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFileUploadAreaComponent, "dbx-file-upload-area", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "show": { "alias": "show"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; "areaClicked": "areaClicked"; "areaDragActiveChanged": "areaDragActiveChanged"; }, never, ["*"], true, never>;
|
|
9536
|
+
}
|
|
9537
|
+
|
|
9538
|
+
/**
|
|
9539
|
+
* Display mode for the file upload component: area-only, button-only, or both (default).
|
|
9540
|
+
*/
|
|
9541
|
+
type DbxFileUploadMode = 'area' | 'button' | 'default';
|
|
9542
|
+
/**
|
|
9543
|
+
* Configuration for the combined file upload component, controlling display mode, accept filters, and area/button appearance.
|
|
9544
|
+
*/
|
|
9545
|
+
interface DbxFileUploadComponentConfig {
|
|
9546
|
+
readonly mode?: DbxFileUploadMode;
|
|
9547
|
+
readonly accept?: Maybe<FileArrayAcceptMatchConfig['accept']>;
|
|
9548
|
+
readonly multiple?: Maybe<boolean>;
|
|
9549
|
+
/**
|
|
9550
|
+
* If true, the area will be clickable to open the file picker.
|
|
9551
|
+
*/
|
|
9552
|
+
readonly clickAreaToUpload?: Maybe<boolean>;
|
|
9553
|
+
readonly area?: Maybe<{
|
|
9554
|
+
readonly icon?: Maybe<string>;
|
|
9555
|
+
readonly text?: Maybe<string>;
|
|
9556
|
+
readonly hint?: Maybe<string | boolean>;
|
|
9557
|
+
}>;
|
|
9558
|
+
readonly button?: Maybe<{
|
|
9559
|
+
readonly icon?: Maybe<string>;
|
|
9560
|
+
readonly text?: Maybe<string>;
|
|
9561
|
+
readonly style?: DbxButtonStyle;
|
|
9562
|
+
}>;
|
|
9563
|
+
}
|
|
9564
|
+
/**
|
|
9565
|
+
* Combines a drag-and-drop upload area with a file picker button into a single configurable component.
|
|
9566
|
+
*
|
|
9567
|
+
* Supports area-only, button-only, or combined (default) display modes.
|
|
9568
|
+
*
|
|
9569
|
+
* @example
|
|
9570
|
+
* ```html
|
|
9571
|
+
* <dbx-file-upload [mode]="'default'" [accept]="['image/*']" [multiple]="true" [hint]="'Drag files here'" [text]="'Browse'" (filesChanged)="onFiles($event)"></dbx-file-upload>
|
|
9572
|
+
* ```
|
|
9573
|
+
*/
|
|
9574
|
+
declare class DbxFileUploadComponent extends AbstractDbxFileUploadComponent {
|
|
9575
|
+
readonly config: _angular_core.InputSignal<Maybe<DbxFileUploadComponentConfig>>;
|
|
9576
|
+
readonly area: _angular_core.Signal<DbxFileUploadAreaComponent>;
|
|
9577
|
+
readonly button: _angular_core.Signal<DbxFileUploadButtonComponent>;
|
|
9578
|
+
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
9579
|
+
readonly buttonDisplay: _angular_core.InputSignal<Maybe<DbxButtonDisplay>>;
|
|
9580
|
+
readonly mode: _angular_core.InputSignal<Maybe<DbxFileUploadMode>>;
|
|
9581
|
+
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
9582
|
+
readonly icon: _angular_core.InputSignal<Maybe<string>>;
|
|
9583
|
+
readonly hint: _angular_core.InputSignal<Maybe<string | boolean>>;
|
|
9584
|
+
readonly modeSignal: _angular_core.Signal<"default" | "button" | "area">;
|
|
9585
|
+
readonly showButtonSignal: _angular_core.Signal<boolean>;
|
|
9586
|
+
readonly showAreaSignal: _angular_core.Signal<boolean>;
|
|
9587
|
+
readonly clickAreaToUpload: _angular_core.InputSignal<Maybe<boolean>>;
|
|
9588
|
+
readonly clickAreaToUploadSignal: _angular_core.Signal<Maybe<boolean>>;
|
|
9589
|
+
readonly buttonTextSignal: _angular_core.Signal<Maybe<string>>;
|
|
9590
|
+
readonly buttonIconSignal: _angular_core.Signal<Maybe<string>>;
|
|
9591
|
+
readonly areaTextSignal: _angular_core.Signal<Maybe<string>>;
|
|
9592
|
+
readonly areaIconSignal: _angular_core.Signal<Maybe<string>>;
|
|
9593
|
+
readonly areaHintSignal: _angular_core.Signal<Maybe<string | boolean>>;
|
|
9594
|
+
readonly uploadMultipleSignal: _angular_core.Signal<Maybe<boolean>>;
|
|
9595
|
+
readonly uploadAcceptSignal: _angular_core.Signal<string | _dereekb_dbx_web.FileAcceptFilterTypeStringArray | _dereekb_dbx_web.FileAcceptFunction>;
|
|
9596
|
+
readonly filesChanged: _angular_core.OutputEmitterRef<DbxFileUploadFilesChangedEvent>;
|
|
9597
|
+
areaClicked(): void;
|
|
9598
|
+
areaFilesChanged(event: DbxFileUploadAreaFilesChangedEvent): void;
|
|
9599
|
+
buttonFilesChanged(event: DbxFileUploadButtonFilesChangedEvent): void;
|
|
9600
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFileUploadComponent, never>;
|
|
9601
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFileUploadComponent, "dbx-file-upload", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; "isSignal": true; }; "buttonDisplay": { "alias": "buttonDisplay"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "clickAreaToUpload": { "alias": "clickAreaToUpload"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; }, never, ["*"], true, never>;
|
|
9602
|
+
}
|
|
9603
|
+
|
|
9604
|
+
/**
|
|
9605
|
+
* Possible high-level UI states for a {@link DbxPdfMergeEditorFileUploadComponent}.
|
|
9606
|
+
*
|
|
9607
|
+
* - `no_file` — the slot owns no entries.
|
|
9608
|
+
* - `valid` — the slot owns entries and they satisfy the slot's `minFiles`/`maxFiles` thresholds with no validation in flight.
|
|
9609
|
+
* - `invalid` — the slot owns entries but they fail validation, are still being checked, or violate the slot's thresholds.
|
|
9610
|
+
*/
|
|
9611
|
+
type DbxPdfMergeEditorFileUploadState = 'no_file' | 'valid' | 'invalid';
|
|
9612
|
+
/**
|
|
9613
|
+
* Configures a {@link DbxPdfMergeEditorFileUploadComponent} slot — accept filter, multiplicity, validation thresholds, and the appearance passed through to the underlying {@link DbxFileUploadComponent}.
|
|
9614
|
+
*/
|
|
9615
|
+
interface DbxPdfMergeEditorFileUploadConfig {
|
|
9616
|
+
/**
|
|
9617
|
+
* Override for the accept filter. Defaults to {@link PDF_MERGE_DEFAULT_ACCEPT}.
|
|
9618
|
+
*/
|
|
9619
|
+
readonly accept?: Maybe<FileArrayAcceptMatchConfig['accept']>;
|
|
9620
|
+
/**
|
|
9621
|
+
* Whether the slot accepts multiple files. Defaults to `false` — slots are usually single-file.
|
|
9622
|
+
*/
|
|
9623
|
+
readonly multiple?: Maybe<boolean>;
|
|
9624
|
+
/**
|
|
9625
|
+
* Whether the slot must own a valid file for the validator delegate to report ready. Defaults to `true`. When `false`, the slot reports valid in the `no_file` state and only blocks the merge while `invalid`.
|
|
9626
|
+
*/
|
|
9627
|
+
readonly required?: Maybe<boolean>;
|
|
9628
|
+
/**
|
|
9629
|
+
* Minimum number of `ready` entries required for the slot to report valid. Defaults to `1`.
|
|
9630
|
+
*/
|
|
9631
|
+
readonly minFiles?: Maybe<number>;
|
|
9632
|
+
/**
|
|
9633
|
+
* Optional cap on the number of files this slot will accept. Drives both visibility of the uploader (hidden once the owned-entry count reaches `maxFiles`) and validity (the slot reports invalid if `readyCount > maxFiles`). For single-file slots (`multiple: false`) the implicit cap is `1` regardless of this value.
|
|
9634
|
+
*/
|
|
9635
|
+
readonly maxFiles?: Maybe<number>;
|
|
9636
|
+
/**
|
|
9637
|
+
* Optional heading shown above the upload area.
|
|
9638
|
+
*/
|
|
9639
|
+
readonly label?: Maybe<string>;
|
|
9640
|
+
/**
|
|
9641
|
+
* Optional hint passed through to the upload area.
|
|
9642
|
+
*/
|
|
9643
|
+
readonly hint?: Maybe<string | boolean>;
|
|
9644
|
+
/**
|
|
9645
|
+
* Optional button text passed through to the upload component.
|
|
9646
|
+
*/
|
|
9647
|
+
readonly text?: Maybe<string>;
|
|
9648
|
+
/**
|
|
9649
|
+
* Optional button icon passed through to the upload component.
|
|
9650
|
+
*/
|
|
9651
|
+
readonly icon?: Maybe<string>;
|
|
9652
|
+
/**
|
|
9653
|
+
* Display mode for the underlying {@link DbxFileUploadComponent}. Defaults to `'default'` (area + button).
|
|
9654
|
+
*/
|
|
9655
|
+
readonly mode?: Maybe<DbxFileUploadMode>;
|
|
9656
|
+
}
|
|
9657
|
+
/**
|
|
9658
|
+
* Slot-scoped uploader for use inside a {@link DbxPdfMergeEditorComponent}. Adds files to the shared {@link DbxPdfMergeEditorStore} tagged with this slot's `slotId`, displays the slot's owned entries inline using {@link DbxPdfMergeEntryComponent}, and reports its readiness to the optional ancestor {@link DbxPdfMergeEditorFileUploadValidatorDirective}. On destroy the slot removes its owned entries from the store.
|
|
9659
|
+
*
|
|
9660
|
+
* Projects an `<ng-content>` slot inside its header element so consumers can render state-aware indicators (e.g. via the `dbxPdfMergeEditorFileUploadHasState` structural directive) alongside the optional `label`.
|
|
9661
|
+
*
|
|
9662
|
+
* @example
|
|
9663
|
+
* ```html
|
|
9664
|
+
* <dbx-pdf-merge-editor-file-upload slotId="license" [config]="{ label: 'Driver’s License', accept: ['application/pdf'] }">
|
|
9665
|
+
* <mat-icon *dbxPdfMergeEditorFileUploadHasState="'valid'">check_circle</mat-icon>
|
|
9666
|
+
* </dbx-pdf-merge-editor-file-upload>
|
|
9667
|
+
* ```
|
|
9668
|
+
*/
|
|
9669
|
+
declare class DbxPdfMergeEditorFileUploadComponent implements OnInit, OnDestroy, DbxPdfMergeEditorFileUploadValidatorSlot {
|
|
9670
|
+
readonly store: DbxPdfMergeEditorStore;
|
|
9671
|
+
private readonly _validator;
|
|
9672
|
+
readonly slotId: _angular_core.InputSignal<string>;
|
|
9673
|
+
readonly config: _angular_core.InputSignal<Maybe<DbxPdfMergeEditorFileUploadConfig>>;
|
|
9674
|
+
readonly acceptSignal: _angular_core.Signal<string | _dereekb_dbx_web.FileAcceptFilterTypeStringArray | _dereekb_dbx_web.FileAcceptFunction>;
|
|
9675
|
+
readonly multipleSignal: _angular_core.Signal<boolean>;
|
|
9676
|
+
readonly modeSignal: _angular_core.Signal<DbxFileUploadMode>;
|
|
9677
|
+
readonly labelSignal: _angular_core.Signal<Maybe<string>>;
|
|
9678
|
+
readonly hintSignal: _angular_core.Signal<Maybe<string | boolean>>;
|
|
9679
|
+
readonly textSignal: _angular_core.Signal<string>;
|
|
9680
|
+
readonly iconSignal: _angular_core.Signal<string>;
|
|
9681
|
+
readonly requiredSignal: _angular_core.Signal<boolean>;
|
|
9682
|
+
readonly minFilesSignal: _angular_core.Signal<number>;
|
|
9683
|
+
readonly maxFilesSignal: _angular_core.Signal<Maybe<number>>;
|
|
9684
|
+
/**
|
|
9685
|
+
* Effective upper bound on the number of owned entries this slot will accept. Defaults to `maxFiles` when set, `1` for single-file slots (`multiple: false`), and {@link Number.POSITIVE_INFINITY} for multi-file slots without an explicit cap.
|
|
9686
|
+
*/
|
|
9687
|
+
readonly capacitySignal: _angular_core.Signal<number>;
|
|
9688
|
+
/**
|
|
9689
|
+
* Live entries owned by this slot, derived from {@link DbxPdfMergeEditorStore.entriesForSlotId$}.
|
|
9690
|
+
*/
|
|
9691
|
+
readonly ownedEntries$: Observable<PdfMergeEntry[]>;
|
|
9692
|
+
readonly ownedEntriesSignal: _angular_core.Signal<PdfMergeEntry[]>;
|
|
9693
|
+
/**
|
|
9694
|
+
* Whether the slot still has room for more files. Drives visibility of the upload UI — once the slot is at capacity, the uploader is hidden and the user must remove an existing entry to add another.
|
|
9695
|
+
*/
|
|
9696
|
+
readonly canAddFilesSignal: _angular_core.Signal<boolean>;
|
|
9697
|
+
/**
|
|
9698
|
+
* High-level state of the slot — `no_file` when empty, `valid` when owned entries satisfy the slot's thresholds, `invalid` when owned entries fail or are still being validated.
|
|
9699
|
+
*/
|
|
9700
|
+
readonly state$: Observable<DbxPdfMergeEditorFileUploadState>;
|
|
9701
|
+
readonly stateSignal: _angular_core.Signal<DbxPdfMergeEditorFileUploadState>;
|
|
9702
|
+
/**
|
|
9703
|
+
* Per-slot validity stream consumed by {@link DbxPdfMergeEditorFileUploadValidatorDirective}. Reports `true` when the slot is `valid` or when the slot is `no_file` and not `required`. An `invalid` state always reports `false`, even on optional slots — bad files block the merge until the user removes them.
|
|
9704
|
+
*/
|
|
9705
|
+
readonly isValid$: Observable<boolean>;
|
|
9706
|
+
readonly isValidSignal: _angular_core.Signal<boolean>;
|
|
9707
|
+
ngOnInit(): void;
|
|
9708
|
+
ngOnDestroy(): void;
|
|
9709
|
+
onDrop(event: CdkDragDrop<unknown>): void;
|
|
9710
|
+
onFiles(event: DbxFileUploadFilesChangedEvent): void;
|
|
9711
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfMergeEditorFileUploadComponent, never>;
|
|
9712
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxPdfMergeEditorFileUploadComponent, "dbx-pdf-merge-editor-file-upload", never, { "slotId": { "alias": "slotId"; "required": true; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
9713
|
+
}
|
|
9714
|
+
|
|
9715
|
+
/**
|
|
9716
|
+
* Directive that registers as the active {@link DbxPdfMergeEditorValidator} on a {@link DbxPdfMergeEditorStore} and gates merge emissions on the readiness of every registered slot. {@link DbxPdfMergeEditorFileUploadComponent} instances walk the injector tree, find this directive, and call {@link registerSlot}/{@link unregisterSlot} during their own lifecycle.
|
|
9717
|
+
*
|
|
9718
|
+
* @example
|
|
9719
|
+
* ```html
|
|
9720
|
+
* <dbx-pdf-merge-editor [showAddFiles]="false" [showFileList]="false">
|
|
9721
|
+
* <div dbxPdfMergeEditorFileUploadValidator>
|
|
9722
|
+
* <dbx-pdf-merge-editor-file-upload slotId="license" [config]="{ label: 'Driver’s License' }"></dbx-pdf-merge-editor-file-upload>
|
|
9723
|
+
* <dbx-pdf-merge-editor-file-upload slotId="insurance" [config]="{ label: 'Insurance Card', required: false }"></dbx-pdf-merge-editor-file-upload>
|
|
9724
|
+
* </div>
|
|
9725
|
+
* </dbx-pdf-merge-editor>
|
|
9726
|
+
* ```
|
|
9727
|
+
*/
|
|
9728
|
+
declare class DbxPdfMergeEditorFileUploadValidatorDirective implements OnInit, OnDestroy {
|
|
9729
|
+
readonly store: DbxPdfMergeEditorStore;
|
|
9730
|
+
private readonly _slots$;
|
|
9731
|
+
/**
|
|
9732
|
+
* Emits `true` when every registered slot reports valid (or when no slots are registered yet). Multicast via {@link shareReplay}.
|
|
9733
|
+
*/
|
|
9734
|
+
readonly isValid$: Observable<boolean>;
|
|
9735
|
+
ngOnInit(): void;
|
|
9736
|
+
ngOnDestroy(): void;
|
|
9737
|
+
/**
|
|
9738
|
+
* Adds a slot to the active set. Idempotent — registering the same slot twice has no effect.
|
|
9739
|
+
*
|
|
9740
|
+
* @param slot - Slot component to track.
|
|
9741
|
+
*/
|
|
9742
|
+
registerSlot(slot: DbxPdfMergeEditorFileUploadValidatorSlot): void;
|
|
9743
|
+
/**
|
|
9744
|
+
* Removes a slot from the active set. No-op when the slot is not currently registered.
|
|
9745
|
+
*
|
|
9746
|
+
* @param slot - Slot component to drop.
|
|
9747
|
+
*/
|
|
9748
|
+
unregisterSlot(slot: DbxPdfMergeEditorFileUploadValidatorSlot): void;
|
|
9749
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfMergeEditorFileUploadValidatorDirective, never>;
|
|
9750
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxPdfMergeEditorFileUploadValidatorDirective, "[dbxPdfMergeEditorFileUploadValidator]", never, {}, {}, never, never, true, never>;
|
|
9751
|
+
}
|
|
9752
|
+
|
|
9753
|
+
/**
|
|
9754
|
+
* Structural directive that conditionally renders its host element based on the current state of an ancestor {@link DbxPdfMergeEditorFileUploadComponent}.
|
|
9755
|
+
*
|
|
9756
|
+
* Use it inside a slot's projected header content to render state-aware indicators — icons, badges, status text — without subscribing to the slot's `state$` manually.
|
|
9757
|
+
*
|
|
9758
|
+
* @example
|
|
9759
|
+
* ```html
|
|
9760
|
+
* <dbx-pdf-merge-editor-file-upload slotId="license" [config]="licenseConfig">
|
|
9761
|
+
* <mat-icon *dbxPdfMergeEditorFileUploadHasState="'valid'">check_circle</mat-icon>
|
|
9762
|
+
* <mat-icon *dbxPdfMergeEditorFileUploadHasState="'invalid'">error</mat-icon>
|
|
9763
|
+
* <mat-icon *dbxPdfMergeEditorFileUploadHasState="['no_file', 'invalid']">radio_button_unchecked</mat-icon>
|
|
9764
|
+
* </dbx-pdf-merge-editor-file-upload>
|
|
9765
|
+
* ```
|
|
9766
|
+
*/
|
|
9767
|
+
declare class DbxPdfMergeEditorFileUploadHasStateDirective extends AbstractIfDirective {
|
|
9768
|
+
private readonly _slot;
|
|
9769
|
+
readonly targetState: _angular_core.InputSignal<Maybe<ArrayOrValue<DbxPdfMergeEditorFileUploadState>>>;
|
|
9770
|
+
readonly targetState$: Observable<Maybe<ArrayOrValue<DbxPdfMergeEditorFileUploadState>>>;
|
|
9771
|
+
readonly show$: Observable<boolean>;
|
|
9772
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfMergeEditorFileUploadHasStateDirective, never>;
|
|
9773
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxPdfMergeEditorFileUploadHasStateDirective, "[dbxPdfMergeEditorFileUploadHasState]", never, { "targetState": { "alias": "dbxPdfMergeEditorFileUploadHasState"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9263
9774
|
}
|
|
9264
9775
|
|
|
9265
9776
|
/**
|
|
@@ -10740,143 +11251,6 @@ declare class DbxInteractionModule {
|
|
|
10740
11251
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxInteractionModule>;
|
|
10741
11252
|
}
|
|
10742
11253
|
|
|
10743
|
-
/**
|
|
10744
|
-
* Event emitted by {@link DbxFileUploadAreaComponent} when files are dropped.
|
|
10745
|
-
*/
|
|
10746
|
-
type DbxFileUploadAreaFilesChangedEvent = DbxFileUploadFilesChangedEvent;
|
|
10747
|
-
/**
|
|
10748
|
-
* Drag-and-drop file upload area that accepts dropped files and emits accepted/rejected results.
|
|
10749
|
-
*
|
|
10750
|
-
* @example
|
|
10751
|
-
* ```html
|
|
10752
|
-
* <dbx-file-upload-area [accept]="['image/*']" [multiple]="true" [hint]="true" (filesChanged)="onFiles($event)">
|
|
10753
|
-
* <p>Drop files here</p>
|
|
10754
|
-
* </dbx-file-upload-area>
|
|
10755
|
-
* ```
|
|
10756
|
-
*/
|
|
10757
|
-
declare class DbxFileUploadAreaComponent extends AbstractDbxFileUploadComponent {
|
|
10758
|
-
readonly icon: _angular_core.InputSignal<Maybe<string>>;
|
|
10759
|
-
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
10760
|
-
readonly hint: _angular_core.InputSignal<Maybe<string | boolean>>;
|
|
10761
|
-
readonly show: _angular_core.InputSignal<boolean>;
|
|
10762
|
-
readonly hintSignal: _angular_core.Signal<string | null>;
|
|
10763
|
-
readonly filesChanged: _angular_core.OutputEmitterRef<DbxFileUploadFilesChangedEvent>;
|
|
10764
|
-
readonly areaClicked: _angular_core.OutputEmitterRef<void>;
|
|
10765
|
-
readonly areaDragActiveChanged: _angular_core.OutputEmitterRef<boolean>;
|
|
10766
|
-
readonly dragOverStateSignal: _angular_core.WritableSignal<boolean>;
|
|
10767
|
-
readonly filesAcceptedFunctionSignal: _angular_core.Signal<_dereekb_dbx_web.FileArrayAcceptMatchFunction>;
|
|
10768
|
-
onClick(evt: MouseEvent): void;
|
|
10769
|
-
onDragOver(evt: DragEvent): void;
|
|
10770
|
-
onDragLeave(evt: DragEvent): void;
|
|
10771
|
-
onDrop(evt: DragEvent): void;
|
|
10772
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFileUploadAreaComponent, never>;
|
|
10773
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFileUploadAreaComponent, "dbx-file-upload-area", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "show": { "alias": "show"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; "areaClicked": "areaClicked"; "areaDragActiveChanged": "areaDragActiveChanged"; }, never, ["*"], true, never>;
|
|
10774
|
-
}
|
|
10775
|
-
|
|
10776
|
-
/**
|
|
10777
|
-
* Event emitted by {@link DbxFileUploadButtonComponent} when files are selected.
|
|
10778
|
-
*/
|
|
10779
|
-
type DbxFileUploadButtonFilesChangedEvent = DbxFileUploadFilesChangedEvent;
|
|
10780
|
-
/**
|
|
10781
|
-
* File upload button that opens a native file picker and emits accepted/rejected file results.
|
|
10782
|
-
*
|
|
10783
|
-
* @example
|
|
10784
|
-
* ```html
|
|
10785
|
-
* <dbx-file-upload-button [text]="'Upload'" [icon]="'upload'" [accept]="['image/*']" [multiple]="true" (filesChanged)="onFiles($event)"></dbx-file-upload-button>
|
|
10786
|
-
* ```
|
|
10787
|
-
*/
|
|
10788
|
-
declare class DbxFileUploadButtonComponent extends AbstractDbxFileUploadComponent {
|
|
10789
|
-
readonly fileInput: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
10790
|
-
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
10791
|
-
readonly icon: _angular_core.InputSignal<Maybe<string>>;
|
|
10792
|
-
readonly ariaLabel: _angular_core.InputSignal<Maybe<string>>;
|
|
10793
|
-
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
10794
|
-
readonly filesChanged: _angular_core.OutputEmitterRef<DbxFileUploadFilesChangedEvent>;
|
|
10795
|
-
readonly buttonAcceptSignal: _angular_core.Signal<string | undefined>;
|
|
10796
|
-
readonly buttonMultipleSignal: _angular_core.Signal<boolean>;
|
|
10797
|
-
readonly filesAcceptedFunctionSignal: _angular_core.Signal<_dereekb_dbx_web.FileArrayAcceptMatchFunction | undefined>;
|
|
10798
|
-
/**
|
|
10799
|
-
* The HTML attribute should not be added if it is false, so we return null.
|
|
10800
|
-
*/
|
|
10801
|
-
readonly multipleAttributeSignal: _angular_core.Signal<"" | null>;
|
|
10802
|
-
/**
|
|
10803
|
-
* NOTE: A Chrome bug can cause "File chooser dialog can only be shown with a user activation" errors
|
|
10804
|
-
* when Chrome's "Restart to Update" banner is visible. Restarting Chrome to apply the update resolves it.
|
|
10805
|
-
*
|
|
10806
|
-
* See https://issues.chromium.org/issues/330663542 (scroll to bottom for details).
|
|
10807
|
-
*/
|
|
10808
|
-
openInput(): void;
|
|
10809
|
-
fileInputChanged(): void;
|
|
10810
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFileUploadButtonComponent, never>;
|
|
10811
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFileUploadButtonComponent, "dbx-file-upload-button", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; }, never, ["*"], true, never>;
|
|
10812
|
-
}
|
|
10813
|
-
|
|
10814
|
-
/**
|
|
10815
|
-
* Display mode for the file upload component: area-only, button-only, or both (default).
|
|
10816
|
-
*/
|
|
10817
|
-
type DbxFileUploadMode = 'area' | 'button' | 'default';
|
|
10818
|
-
/**
|
|
10819
|
-
* Configuration for the combined file upload component, controlling display mode, accept filters, and area/button appearance.
|
|
10820
|
-
*/
|
|
10821
|
-
interface DbxFileUploadComponentConfig {
|
|
10822
|
-
readonly mode?: DbxFileUploadMode;
|
|
10823
|
-
readonly accept?: Maybe<FileArrayAcceptMatchConfig['accept']>;
|
|
10824
|
-
readonly multiple?: Maybe<boolean>;
|
|
10825
|
-
/**
|
|
10826
|
-
* If true, the area will be clickable to open the file picker.
|
|
10827
|
-
*/
|
|
10828
|
-
readonly clickAreaToUpload?: Maybe<boolean>;
|
|
10829
|
-
readonly area?: Maybe<{
|
|
10830
|
-
readonly icon?: Maybe<string>;
|
|
10831
|
-
readonly text?: Maybe<string>;
|
|
10832
|
-
readonly hint?: Maybe<string | boolean>;
|
|
10833
|
-
}>;
|
|
10834
|
-
readonly button?: Maybe<{
|
|
10835
|
-
readonly icon?: Maybe<string>;
|
|
10836
|
-
readonly text?: Maybe<string>;
|
|
10837
|
-
readonly style?: DbxButtonStyle;
|
|
10838
|
-
}>;
|
|
10839
|
-
}
|
|
10840
|
-
/**
|
|
10841
|
-
* Combines a drag-and-drop upload area with a file picker button into a single configurable component.
|
|
10842
|
-
*
|
|
10843
|
-
* Supports area-only, button-only, or combined (default) display modes.
|
|
10844
|
-
*
|
|
10845
|
-
* @example
|
|
10846
|
-
* ```html
|
|
10847
|
-
* <dbx-file-upload [mode]="'default'" [accept]="['image/*']" [multiple]="true" [hint]="'Drag files here'" [text]="'Browse'" (filesChanged)="onFiles($event)"></dbx-file-upload>
|
|
10848
|
-
* ```
|
|
10849
|
-
*/
|
|
10850
|
-
declare class DbxFileUploadComponent extends AbstractDbxFileUploadComponent {
|
|
10851
|
-
readonly config: _angular_core.InputSignal<Maybe<DbxFileUploadComponentConfig>>;
|
|
10852
|
-
readonly area: _angular_core.Signal<DbxFileUploadAreaComponent>;
|
|
10853
|
-
readonly button: _angular_core.Signal<DbxFileUploadButtonComponent>;
|
|
10854
|
-
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
10855
|
-
readonly buttonDisplay: _angular_core.InputSignal<Maybe<DbxButtonDisplay>>;
|
|
10856
|
-
readonly mode: _angular_core.InputSignal<Maybe<DbxFileUploadMode>>;
|
|
10857
|
-
readonly text: _angular_core.InputSignal<Maybe<string>>;
|
|
10858
|
-
readonly icon: _angular_core.InputSignal<Maybe<string>>;
|
|
10859
|
-
readonly hint: _angular_core.InputSignal<Maybe<string | boolean>>;
|
|
10860
|
-
readonly modeSignal: _angular_core.Signal<"default" | "button" | "area">;
|
|
10861
|
-
readonly showButtonSignal: _angular_core.Signal<boolean>;
|
|
10862
|
-
readonly showAreaSignal: _angular_core.Signal<boolean>;
|
|
10863
|
-
readonly clickAreaToUpload: _angular_core.InputSignal<Maybe<boolean>>;
|
|
10864
|
-
readonly clickAreaToUploadSignal: _angular_core.Signal<Maybe<boolean>>;
|
|
10865
|
-
readonly buttonTextSignal: _angular_core.Signal<Maybe<string>>;
|
|
10866
|
-
readonly buttonIconSignal: _angular_core.Signal<Maybe<string>>;
|
|
10867
|
-
readonly areaTextSignal: _angular_core.Signal<Maybe<string>>;
|
|
10868
|
-
readonly areaIconSignal: _angular_core.Signal<Maybe<string>>;
|
|
10869
|
-
readonly areaHintSignal: _angular_core.Signal<Maybe<string | boolean>>;
|
|
10870
|
-
readonly uploadMultipleSignal: _angular_core.Signal<Maybe<boolean>>;
|
|
10871
|
-
readonly uploadAcceptSignal: _angular_core.Signal<string | _dereekb_dbx_web.FileAcceptFilterTypeStringArray | _dereekb_dbx_web.FileAcceptFunction>;
|
|
10872
|
-
readonly filesChanged: _angular_core.OutputEmitterRef<DbxFileUploadFilesChangedEvent>;
|
|
10873
|
-
areaClicked(): void;
|
|
10874
|
-
areaFilesChanged(event: DbxFileUploadAreaFilesChangedEvent): void;
|
|
10875
|
-
buttonFilesChanged(event: DbxFileUploadButtonFilesChangedEvent): void;
|
|
10876
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFileUploadComponent, never>;
|
|
10877
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFileUploadComponent, "dbx-file-upload", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; "isSignal": true; }; "buttonDisplay": { "alias": "buttonDisplay"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "clickAreaToUpload": { "alias": "clickAreaToUpload"; "required": false; "isSignal": true; }; }, { "filesChanged": "filesChanged"; }, never, ["*"], true, never>;
|
|
10878
|
-
}
|
|
10879
|
-
|
|
10880
11254
|
/**
|
|
10881
11255
|
* Syncs the disabled and working states from an ActionContextStoreSource to a {@link DbxFileUploadActionCompatable} component.
|
|
10882
11256
|
*
|
|
@@ -11046,5 +11420,5 @@ declare class DbxWebModule {
|
|
|
11046
11420
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxWebModule>;
|
|
11047
11421
|
}
|
|
11048
11422
|
|
|
11049
|
-
export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxHelpWidgetDirective, AbstractDbxListAccordionViewDirective, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_CHIP_DEFAULT_TONE, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_DETACH_DEFAULT_KEY, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PDF_MERGE_EDITOR_INITIAL_STATE, 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, DBX_WEB_PAGE_TITLE_SERVICE_CONFIG, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetachContentComponent, DbxDetachControlButtonsComponent, DbxDetachController, DbxDetachControlsComponent, DbxDetachInitDirective, DbxDetachInteractionModule, DbxDetachOutletComponent, DbxDetachOverlayComponent, DbxDetachService, DbxDetachWindowState, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxInteractionModule, DbxIntroActionSectionComponent, DbxLabelBlockComponent, DbxLayoutModule, DbxLinkComponent, DbxLinkifyComponent, DbxLinkifyService, DbxLinkifyServiceConfig, DbxListAccordionViewComponentImportsModule, DbxListComponent, DbxListEmptyContentComponent, DbxListGridViewComponentImportsModule, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListModifierModule, DbxListModule, DbxListTitleGroupDirective, DbxListView, DbxListViewMetaIconComponent, DbxListViewWrapper, DbxListWrapperComponentImportsModule, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelObjectStateService, actions_d as DbxModelStateActions, model_actions_d as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNumberWithLimitComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPdfMergeEditorComponent, DbxPdfMergeEditorStore, DbxPdfMergeEntryComponent, DbxPdfMergeListComponent, 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_DEFAULT_ACCEPT, 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, catchErrorServerParams, classifyPdfMergeFile, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxListAccordionViewComponentImportsAndExports, dbxListGridViewComponentImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxThemeColorCssVariable, dbxThemeColorCssVariableVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxWebDefaultPageTitleDelegate, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, flattenAccordionGroups, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, mergePdfMergeEntries, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openPdfPreviewDialog, openZipPreviewDialog, overrideClickElementEffect, provideDbxDetachController, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideDbxWebPageTitleService, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier, validatePdfMergeEntry };
|
|
11050
|
-
export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, DbxAccordionRenderEntry, DbxAccordionRenderGroupFooterEntry, DbxAccordionRenderGroupHeaderEntry, DbxAccordionRenderItemEntry, DbxActionConfirmConfig, DbxActionDialogFunction, DbxActionPopoverFunction, DbxActionPopoverFunctionParams, DbxActionSnackbarActionConfig, DbxActionSnackbarDisplayConfig, DbxActionSnackbarDisplayConfigGeneratorFunction, DbxActionSnackbarEvent, DbxActionSnackbarEventMakeConfig, DbxActionSnackbarGeneratorInput, DbxActionSnackbarGeneratorUndoInput, DbxActionSnackbarGeneratorUndoInputConfig, DbxActionSnackbarKnownType, DbxActionSnackbarServiceConfig, DbxActionSnackbarType, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyType, DbxAnchorListExpandedAnchor, DbxAvatarComponentForContextFunction, DbxAvatarContext, DbxAvatarInjectionComponentConfig, DbxAvatarKey, DbxAvatarSelector, DbxAvatarSize, DbxAvatarStyle, DbxButtonDisplayStylePair, DbxButtonStyle, DbxButtonType, DbxChipDisplay, DbxColorTone, DbxContentBorderOpacity, DbxContentContainerPadding, DbxContentContainerWidth, DbxContentPitScrollableHeight, DbxContentPitScrollableHeightSetting, DbxContentPitScrollableInput, DbxDetachConfig, DbxDetachInstance, DbxDetachKey, DbxDetachOverlayConfig, DbxDetachOverlayData, DbxDetachWindowStateType, DbxDialogContentConfig, DbxDialogContentContainerWidth, DbxDialogContentFooterConfig, DbxDownloadBlobButtonConfig, DbxEmbedComponentElement, DbxEmbedDialogConfig, DbxErrorPopoverConfig, DbxErrorSnackbarConfig, DbxErrorSnackbarData, DbxErrorViewButtonEvent, DbxErrorWidgetEntry, DbxErrorWidgetEntryWithPopupComponentClass, DbxFileUploadAreaFilesChangedEvent, DbxFileUploadButtonFilesChangedEvent, DbxFileUploadComponentConfig, DbxFileUploadFilesChangedEvent, DbxFileUploadMode, DbxFilterButtonConfig, DbxFilterButtonConfigWithCustomFilter, DbxFilterButtonConfigWithPresetFilter, DbxFilterComponentConfig, DbxFilterPopoverComponentConfig, DbxFlexSize, DbxHelpContextKey, DbxHelpContextReference, DbxHelpViewPopoverButtonConfig, DbxHelpViewPopoverConfig, DbxHelpViewPopoverConfigWithoutOrigin, DbxHelpWidgetEntryData, DbxHelpWidgetServiceConfigFactory, DbxHelpWidgetServiceEntry, DbxIframeDialogConfig, DbxInjectionDialogComponentConfig, DbxLinkifyConfig, DbxLinkifyServiceConfigFactory, DbxLinkifyServiceDefaultEntry, DbxLinkifyServiceEntry, DbxLinkifyStringOptions, DbxLinkifyStringType, DbxListComponentScrolledEventPosition, DbxListConfig, DbxListLoadMoreHandler, DbxListScrollDirectionTrigger, DbxListSelectionMode, DbxListTitleGroupData, DbxListTitleGroupTitleDelegate, DbxListViewMetaIconConfig, DbxListWrapperConfig, DbxLoadingComponentState, DbxLoadingIsLoadingOrProgress, DbxLoadingProgress, DbxMakeActionSnackbarGeneratorConfiguration, DbxMakeActionSnackbarGeneratorEventConfiguration, DbxModelFullState, DbxModelIconsMap, DbxModelTypeConfiguration, DbxModelTypeConfigurationMap, DbxModelTypeConfigurationSrefFactory, DbxModelTypeConfigurationSrefFactoryBuilder, DbxModelTypeInfo, DbxModelTypesMap, DbxModelViewTrackerEvent, DbxModelViewTrackerEventSet, 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, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, 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, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PdfMergeEditorState, PdfMergeEntry, PdfMergeEntryKind, PdfMergeEntryMove, PdfMergeEntryStatus, PdfMergeEntryValidationResult, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ProvideDbxWebPageTitleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, TextChip, TwoColumnsState };
|
|
11423
|
+
export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxHelpWidgetDirective, AbstractDbxListAccordionViewDirective, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_CHIP_DEFAULT_TONE, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_DETACH_DEFAULT_KEY, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PDF_MERGE_EDITOR_INITIAL_STATE, 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, DBX_WEB_PAGE_TITLE_SERVICE_CONFIG, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetachContentComponent, DbxDetachControlButtonsComponent, DbxDetachController, DbxDetachControlsComponent, DbxDetachInitDirective, DbxDetachInteractionModule, DbxDetachOutletComponent, DbxDetachOverlayComponent, DbxDetachService, DbxDetachWindowState, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, 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, DbxPdfMergeEntryComponent, DbxPdfMergeListComponent, 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_DEFAULT_ACCEPT, 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, catchErrorServerParams, classifyPdfMergeFile, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxListAccordionViewComponentImportsAndExports, dbxListGridViewComponentImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxThemeColorCssVariable, dbxThemeColorCssVariableVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxWebDefaultPageTitleDelegate, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, flattenAccordionGroups, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, mergePdfMergeEntries, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openPdfPreviewDialog, openZipPreviewDialog, overrideClickElementEffect, provideDbxDetachController, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideDbxWebPageTitleService, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier, validatePdfMergeEntry };
|
|
11424
|
+
export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, BuildPdfMergeEntryConfig, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, DbxAccordionRenderEntry, DbxAccordionRenderGroupFooterEntry, DbxAccordionRenderGroupHeaderEntry, DbxAccordionRenderItemEntry, DbxActionConfirmConfig, DbxActionDialogFunction, DbxActionPopoverFunction, DbxActionPopoverFunctionParams, DbxActionSnackbarActionConfig, DbxActionSnackbarDisplayConfig, DbxActionSnackbarDisplayConfigGeneratorFunction, DbxActionSnackbarEvent, DbxActionSnackbarEventMakeConfig, DbxActionSnackbarGeneratorInput, DbxActionSnackbarGeneratorUndoInput, DbxActionSnackbarGeneratorUndoInputConfig, DbxActionSnackbarKnownType, DbxActionSnackbarServiceConfig, DbxActionSnackbarType, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyType, DbxAnchorListExpandedAnchor, DbxAvatarComponentForContextFunction, DbxAvatarContext, DbxAvatarInjectionComponentConfig, DbxAvatarKey, DbxAvatarSelector, DbxAvatarSize, DbxAvatarStyle, DbxButtonDisplayStylePair, DbxButtonStyle, DbxButtonType, DbxChipDisplay, DbxColorTone, DbxContentBorderOpacity, DbxContentContainerPadding, DbxContentContainerWidth, DbxContentPitScrollableHeight, DbxContentPitScrollableHeightSetting, DbxContentPitScrollableInput, DbxDetachConfig, DbxDetachInstance, DbxDetachKey, DbxDetachOverlayConfig, DbxDetachOverlayData, DbxDetachWindowStateType, DbxDialogContentConfig, DbxDialogContentContainerWidth, DbxDialogContentFooterConfig, DbxDownloadBlobButtonConfig, DbxEmbedComponentElement, DbxEmbedDialogConfig, DbxErrorPopoverConfig, DbxErrorSnackbarConfig, DbxErrorSnackbarData, DbxErrorViewButtonEvent, DbxErrorWidgetEntry, DbxErrorWidgetEntryWithPopupComponentClass, DbxFileUploadAreaFilesChangedEvent, DbxFileUploadButtonFilesChangedEvent, DbxFileUploadComponentConfig, DbxFileUploadFilesChangedEvent, DbxFileUploadMode, DbxFilterButtonConfig, DbxFilterButtonConfigWithCustomFilter, DbxFilterButtonConfigWithPresetFilter, DbxFilterComponentConfig, DbxFilterPopoverComponentConfig, DbxFlexSize, DbxHelpContextKey, DbxHelpContextReference, DbxHelpViewPopoverButtonConfig, DbxHelpViewPopoverConfig, DbxHelpViewPopoverConfigWithoutOrigin, DbxHelpWidgetEntryData, DbxHelpWidgetServiceConfigFactory, DbxHelpWidgetServiceEntry, DbxIframeDialogConfig, DbxInjectionDialogComponentConfig, DbxLinkifyConfig, DbxLinkifyServiceConfigFactory, DbxLinkifyServiceDefaultEntry, DbxLinkifyServiceEntry, DbxLinkifyStringOptions, DbxLinkifyStringType, DbxListComponentScrolledEventPosition, DbxListConfig, DbxListLoadMoreHandler, DbxListScrollDirectionTrigger, DbxListSelectionMode, DbxListTitleGroupData, DbxListTitleGroupTitleDelegate, DbxListViewMetaIconConfig, DbxListWrapperConfig, DbxLoadingComponentState, DbxLoadingIsLoadingOrProgress, DbxLoadingProgress, DbxMakeActionSnackbarGeneratorConfiguration, DbxMakeActionSnackbarGeneratorEventConfiguration, DbxModelFullState, DbxModelIconsMap, DbxModelTypeConfiguration, DbxModelTypeConfigurationMap, DbxModelTypeConfigurationSrefFactory, DbxModelTypeConfigurationSrefFactoryBuilder, DbxModelTypeInfo, DbxModelTypesMap, DbxModelViewTrackerEvent, DbxModelViewTrackerEventSet, DbxPdfMergeEditorAddFilesInput, DbxPdfMergeEditorFileUploadConfig, DbxPdfMergeEditorFileUploadState, DbxPdfMergeEditorFileUploadValidatorSlot, DbxPdfMergeEditorValidator, 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, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, 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, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PdfMergeEditorState, PdfMergeEntry, PdfMergeEntryKind, PdfMergeEntryMove, PdfMergeEntryStatus, PdfMergeEntryValidationResult, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ProvideDbxWebPageTitleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, TextChip, TwoColumnsState };
|