@dereekb/dbx-web 13.10.4 → 13.10.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@ import * as _angular_core from '@angular/core';
4
4
  import { Signal, ElementRef, AfterViewInit, InjectionToken, Type, OnInit, OnDestroy, ViewContainerRef, Provider, Injector, TrackByFunction, OutputEmitterRef, OutputRef, EnvironmentProviders, TemplateRef, ComponentRef } from '@angular/core';
5
5
  import { ProgressBarMode } from '@angular/material/progress-bar';
6
6
  import * as _dereekb_util from '@dereekb/util';
7
- import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CharacterPrefixSuffixCleanString, DashPrefixString, CssClass, CssToken, CssTokenVar, WebsiteUrlWithPrefix, WebsitePath, Pixels, PixelsString, DecisionFunction, ModifierMap, ArrayOrValue, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, HtmlHeaderLevel, Destroyable, UnitedStatesAddressWithContact, LabeledValue, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, ContentTypeMimeType, MimeTypeWithoutParameters, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix } from '@dereekb/util';
7
+ import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CharacterPrefixSuffixCleanString, DashPrefixString, CssClass, CssToken, CssTokenVar, WebsiteUrlWithPrefix, WebsitePath, Pixels, PixelsString, DecisionFunction, ModifierMap, ArrayOrValue, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, HtmlHeaderLevel, Destroyable, UnitedStatesAddressWithContact, LabeledValue, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, ContentTypeMimeType, MimeTypeWithoutParameters, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, FileSize, ModelIdFactory, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix } from '@dereekb/util';
8
8
  import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
9
9
  import * as dist_packages_dbx_core_types_dereekb_dbx_core from 'dist/packages/dbx-core/types/dereekb-dbx-core';
10
10
  import * as rxjs from 'rxjs';
@@ -25,8 +25,9 @@ import * as _angular_platform_browser from '@angular/platform-browser';
25
25
  import { SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
26
26
  import { Clipboard } from '@angular/cdk/clipboard';
27
27
  import { Entry, ZipReader, FileEntry } from '@zip.js/zip.js';
28
- import { HorizontalConnectionPos, Overlay, FlexibleConnectedPositionStrategy, GlobalPositionStrategy } from '@angular/cdk/overlay';
29
28
  import { ComponentStore } from '@ngrx/component-store';
29
+ import { CdkDragDrop } from '@angular/cdk/drag-drop';
30
+ import { HorizontalConnectionPos, Overlay, FlexibleConnectedPositionStrategy, GlobalPositionStrategy } from '@angular/cdk/overlay';
30
31
  import { MatSelectionListChange } from '@angular/material/list';
31
32
  import linkifyStr from 'linkify-string';
32
33
  import { MatSidenav, MatDrawerMode } from '@angular/material/sidenav';
@@ -6713,12 +6714,20 @@ declare class DbxModelTypesService<I extends DbxModelTypeInfo = DbxModelTypeInfo
6713
6714
  interface DbxDownloadBlobButtonConfig {
6714
6715
  /**
6715
6716
  * Button display customization.
6717
+ *
6718
+ * @deprecated use {@link buttonStylePair} instead.
6716
6719
  */
6717
6720
  readonly buttonDisplay?: Maybe<DbxButtonDisplay>;
6718
6721
  /**
6719
6722
  * Custom button style to use.
6723
+ *
6724
+ * @deprecated use {@link buttonStylePair} instead.
6720
6725
  */
6721
6726
  readonly buttonStyle?: Maybe<DbxButtonStyle>;
6727
+ /**
6728
+ * Custom button style pair to use.
6729
+ */
6730
+ readonly buttonStylePair?: Maybe<DbxButtonDisplayStylePair>;
6722
6731
  /**
6723
6732
  * Name of the file to save when downloaded.
6724
6733
  */
@@ -8591,268 +8600,717 @@ declare class DbxHelpViewPopoverButtonComponent extends AbstractPopoverRefDirect
8591
8600
  }
8592
8601
 
8593
8602
  /**
8594
- * Unique key used to identify a detach instance.
8595
- */
8596
- type DbxDetachKey = string;
8597
- /**
8598
- * Default key used when no key is specified.
8603
+ * Identifies which kind of source file a {@link PdfMergeEntry} represents.
8604
+ *
8605
+ * - `pdf` — an existing PDF document whose pages are copied into the merged output.
8606
+ * - `image` — a raster image (PNG/JPEG) embedded as a single page in the merged output.
8599
8607
  */
8600
- declare const DBX_DETACH_DEFAULT_KEY: DbxDetachKey;
8608
+ type PdfMergeEntryKind = 'pdf' | 'image';
8601
8609
  /**
8602
- * Possible display states for a detach instance.
8610
+ * Lifecycle status of a {@link PdfMergeEntry} as it is added, validated, and (potentially) merged.
8611
+ *
8612
+ * - `validating` — the entry has been added but its bytes have not yet been verified.
8613
+ * - `ready` — validation succeeded; the entry can participate in a merge.
8614
+ * - `error` — validation failed (corrupt, unsupported, password protected, etc.).
8603
8615
  */
8604
- declare const DbxDetachWindowState: {
8605
- /**
8606
- * Content renders at an outlet location in the page.
8607
- */
8608
- readonly ATTACHED: "attached";
8609
- /**
8610
- * Content renders in a floating overlay (via ng-overlay-container).
8611
- */
8612
- readonly DETACHED: "detached";
8613
- /**
8614
- * Content is in the floating overlay but body is hidden (only controls visible).
8615
- */
8616
- readonly MINIMIZED: "minimized";
8617
- };
8616
+ type PdfMergeEntryStatus = 'validating' | 'ready' | 'error';
8618
8617
  /**
8619
- * Union type of all possible detach window state values.
8618
+ * Validation result for a single {@link PdfMergeEntry}.
8620
8619
  */
8621
- type DbxDetachWindowStateType = (typeof DbxDetachWindowState)[keyof typeof DbxDetachWindowState];
8620
+ interface PdfMergeEntryValidationResult {
8621
+ readonly ok: boolean;
8622
+ readonly errorMessage?: Maybe<string>;
8623
+ }
8622
8624
  /**
8623
- * Overlay-specific configuration for a detach instance.
8625
+ * MIME types accepted by the PDF merge editor by default: PDF documents and PNG/JPEG images.
8624
8626
  */
8625
- interface DbxDetachOverlayConfig {
8626
- readonly width?: string;
8627
- readonly height?: string;
8628
- readonly isDraggable?: boolean;
8629
- }
8627
+ declare const PDF_MERGE_DEFAULT_ACCEPT: readonly MimeTypeWithoutParameters[];
8630
8628
  /**
8631
- * Configuration for initializing a detach instance.
8632
- *
8633
- * Extends {@link DbxInjectionComponentConfig} with an optional key and overlay settings.
8629
+ * MIME type emitted by the merged result blob.
8634
8630
  */
8635
- interface DbxDetachConfig<T = unknown> extends DbxInjectionComponentConfig<T> {
8636
- readonly key?: DbxDetachKey;
8637
- readonly overlay?: DbxDetachOverlayConfig;
8638
- }
8631
+ declare const PDF_MERGE_RESULT_MIME_TYPE: MimeTypeWithoutParameters;
8639
8632
  /**
8640
- * Tracks a single detached component managed by {@link DbxDetachService}.
8641
- *
8642
- * The component is created imperatively and lives in the service.
8643
- * Outlets and overlays are just display locations — this instance
8644
- * tracks which location currently hosts the component.
8633
+ * A single source file that has been added to the PDF merge editor.
8645
8634
  */
8646
- interface DbxDetachInstance<T = unknown> {
8647
- readonly key: DbxDetachKey;
8648
- readonly componentRef: ComponentRef<T>;
8649
- readonly windowState$: Observable<DbxDetachWindowStateType>;
8650
- readonly closing$: Observable<boolean>;
8635
+ interface PdfMergeEntry extends Pick<PdfMergeEntryValidationResult, 'errorMessage'> {
8651
8636
  /**
8652
- * Moves content to an outlet in the page (if one exists for this key).
8637
+ * Stable identifier for this entry, generated when the entry is created.
8653
8638
  */
8654
- attach(): void;
8639
+ readonly id: string;
8655
8640
  /**
8656
- * Moves content to the floating overlay.
8641
+ * Original file selected by the user. Retained for both validation and merging.
8657
8642
  */
8658
- detach(): void;
8643
+ readonly file: File;
8659
8644
  /**
8660
- * Collapses the floating overlay so only controls are visible.
8645
+ * Display name (the file's `name`).
8661
8646
  */
8662
- minimize(): void;
8647
+ readonly name: string;
8663
8648
  /**
8664
- * Destroys the detached component entirely.
8649
+ * Resolved MIME type. Falls back to extension-based inference when the file did not provide one.
8665
8650
  */
8666
- close(): void;
8651
+ readonly mimeType: MimeTypeWithoutParameters;
8652
+ /**
8653
+ * File size in bytes.
8654
+ */
8655
+ readonly size: FileSize;
8656
+ /**
8657
+ * Whether the entry contributes pages from a PDF or from an image.
8658
+ */
8659
+ readonly kind: PdfMergeEntryKind;
8660
+ /**
8661
+ * Current validation/merge readiness status.
8662
+ */
8663
+ readonly status: PdfMergeEntryStatus;
8664
+ /**
8665
+ * The validation promise.
8666
+ */
8667
+ readonly validation: Promise<PdfMergeEntryValidationResult>;
8667
8668
  }
8668
8669
  /**
8669
- * Abstract controller that content components can inject to
8670
- * trigger state changes without being aware of the underlying mechanism.
8670
+ * State managed by the PDF merge editor's component store.
8671
8671
  */
8672
- declare abstract class DbxDetachController<I = unknown> {
8673
- abstract readonly key: DbxDetachKey;
8674
- abstract readonly data?: Maybe<I>;
8675
- abstract readonly windowState$: Observable<DbxDetachWindowStateType>;
8676
- abstract readonly closing$: Observable<boolean>;
8677
- abstract attach(): void;
8678
- abstract detach(): void;
8679
- abstract minimize(): void;
8680
- abstract close(): void;
8672
+ interface PdfMergeEditorState {
8673
+ /**
8674
+ * Ordered list of entries the user has added. Order determines page order in the merged output.
8675
+ */
8676
+ readonly rawEntries: PdfMergeEntry[];
8681
8677
  }
8682
8678
  /**
8683
- * Creates Angular providers that register a {@link DbxDetachController} implementation for DI.
8684
- *
8685
- * @param sourceType - The concrete class to provide as the controller.
8686
- * @returns An array of Angular providers that bind the source type to {@link DbxDetachController}.
8687
- *
8688
- * @example
8689
- * ```typescript
8690
- * @Component({
8691
- * providers: provideDbxDetachController(MyDetachController),
8692
- * })
8693
- * export class MyComponent {}
8694
- * ```
8679
+ * Index movement payload used by the editor's reorder updater.
8695
8680
  */
8696
- declare function provideDbxDetachController<S extends DbxDetachController>(sourceType: Type<S>): Provider[];
8681
+ interface PdfMergeEntryMove {
8682
+ readonly previousIndex: number;
8683
+ readonly currentIndex: number;
8684
+ }
8697
8685
 
8698
8686
  /**
8699
- * Wraps detach body content, hiding the body when the panel is minimized while keeping the controls visible.
8687
+ * Returns the {@link PdfMergeEntryKind} for a file based on its MIME type, with a small fallback to file-extension matching when the browser provided no MIME type.
8700
8688
  *
8701
- * @example
8702
- * ```html
8703
- * <dbx-detach-content>
8704
- * <dbx-detach-controls controls [header]="'My Panel'"></dbx-detach-controls>
8705
- * <p>Body content here.</p>
8706
- * </dbx-detach-content>
8707
- * ```
8689
+ * @param file - File picked from the upload component.
8690
+ * @returns The classified kind, or `null` if the file is not a supported PDF/PNG/JPEG.
8708
8691
  */
8709
- declare class DbxDetachContentComponent {
8710
- private readonly _detachController;
8711
- readonly showContent$: rxjs.Observable<boolean>;
8712
- readonly showContentSignal: _angular_core.Signal<boolean>;
8713
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachContentComponent, never>;
8714
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachContentComponent, "dbx-detach-content", never, {}, {}, never, ["[controls]", "*"], true, never>;
8715
- }
8716
-
8692
+ declare function classifyPdfMergeFile(file: File): PdfMergeEntryKind | null;
8717
8693
  /**
8718
- * Renders state-dependent control buttons for a detach component.
8694
+ * 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.
8719
8695
  *
8720
- * - ATTACHED: detach (picture_in_picture_alt) + close
8721
- * - DETACHED: attach (open_in_full) + minimize + close
8722
- * - MINIMIZED: attach (open_in_full) + restore (maximize) + close
8696
+ * @param file - File the user added.
8697
+ * @param idFactory - Optional id factory override (used by tests for deterministic ids).
8698
+ * @returns The new entry with `validating` status, or `null` when the file is not a supported PDF/PNG/JPEG.
8723
8699
  */
8724
- declare class DbxDetachControlButtonsComponent {
8725
- private readonly _detachController;
8726
- readonly windowStateSignal: _angular_core.Signal<_dereekb_dbx_web.DbxDetachWindowStateType>;
8727
- attachClicked(): void;
8728
- detachClicked(): void;
8729
- minimizeClicked(): void;
8730
- closeClicked(): void;
8731
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachControlButtonsComponent, never>;
8732
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachControlButtonsComponent, "dbx-detach-control-buttons", never, {}, {}, never, never, true, never>;
8733
- }
8734
-
8700
+ declare function buildPdfMergeEntry(file: File, idFactory?: ModelIdFactory): PdfMergeEntry | null;
8735
8701
  /**
8736
- * Renders the detach control bar with a header title and window management buttons (attach, detach, minimize, close).
8702
+ * 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.
8737
8703
  *
8738
- * @example
8739
- * ```html
8740
- * <dbx-detach-controls [header]="'My Panel'"></dbx-detach-controls>
8741
- * ```
8704
+ * @param entry - Entry to validate.
8705
+ * @returns Result indicating whether the entry can be merged plus an error message when validation fails.
8742
8706
  */
8743
- declare class DbxDetachControlsComponent {
8744
- readonly header: _angular_core.InputSignal<string | undefined>;
8745
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachControlsComponent, never>;
8746
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachControlsComponent, "dbx-detach-controls", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
8747
- }
8748
-
8707
+ declare function validatePdfMergeEntry(entry: Omit<PdfMergeEntry, 'validation'>): Promise<PdfMergeEntryValidationResult>;
8749
8708
  /**
8750
- * Directive that ensures a detached component exists in the {@link DbxDetachService} for the given key.
8751
- *
8752
- * Place this on any element to declaratively initialize a detached component.
8753
- * The component is created in the service on init and is NOT destroyed when this directive is destroyed —
8754
- * it lives in the service until explicitly closed.
8709
+ * Merges every `ready` entry in the provided array order into a single PDF and returns it as a `Blob`. PDF entries contribute their full set of pages in order; image entries contribute one page sized to the image. Throws if no `ready` entries are provided.
8755
8710
  *
8756
- * @example
8757
- * ```html
8758
- * <div [dbxDetachInit]="chatWidgetConfig" dbxDetachInitKey="support-chat"></div>
8759
- * ```
8711
+ * @param entries - Ordered entries to merge.
8712
+ * @returns A Blob with `application/pdf` MIME type.
8760
8713
  */
8761
- declare class DbxDetachInitDirective implements OnInit {
8762
- private readonly _detachService;
8763
- readonly config: _angular_core.InputSignal<DbxInjectionComponentConfig<unknown>>;
8764
- readonly key: _angular_core.InputSignal<string>;
8765
- ngOnInit(): void;
8766
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachInitDirective, never>;
8767
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxDetachInitDirective, "[dbxDetachInit]", never, { "config": { "alias": "dbxDetachInit"; "required": true; "isSignal": true; }; "key": { "alias": "dbxDetachInitKey"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
8768
- }
8714
+ declare function mergePdfMergeEntries(entries: readonly PdfMergeEntry[]): Promise<Blob>;
8769
8715
 
8770
8716
  /**
8771
- * Outlet component that displays a detached component at its DOM location.
8772
- *
8773
- * When this component initializes, it tells the {@link DbxDetachService} to move
8774
- * the component for the given key into this element.
8775
- *
8776
- * When destroyed (e.g. navigation away), behavior depends on {@link detachOnDestroy}:
8777
- * - `true`: the component moves to the floating overlay and remains visible
8778
- * - `false` (default): the component stays alive in the service but is hidden until a new outlet appears
8779
- *
8780
- * @example
8781
- * ```html
8782
- * <!-- Auto-floats when navigating away -->
8783
- * <dbx-detach-outlet key="support-chat" [detachOnDestroy]="true"></dbx-detach-outlet>
8784
- *
8785
- * <!-- Hidden when navigating away, re-appears when outlet is recreated -->
8786
- * <dbx-detach-outlet key="support-chat"></dbx-detach-outlet>
8787
- * ```
8717
+ * Initial state used by {@link DbxPdfMergeEditorStore} no entries.
8788
8718
  */
8789
- declare class DbxDetachOutletComponent implements OnInit, OnDestroy {
8790
- private readonly _detachService;
8791
- private readonly _elementRef;
8792
- readonly key: _angular_core.InputSignal<string>;
8719
+ declare const DBX_PDF_MERGE_EDITOR_INITIAL_STATE: PdfMergeEditorState;
8720
+ /**
8721
+ * 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 and at least one is `ready`.
8722
+ */
8723
+ declare class DbxPdfMergeEditorStore extends ComponentStore<PdfMergeEditorState> {
8724
+ constructor();
8793
8725
  /**
8794
- * When true, the component automatically moves to the floating overlay
8795
- * when this outlet is destroyed (e.g. page navigation). Defaults to false.
8726
+ * 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.
8796
8727
  */
8797
- readonly detachOnDestroy: _angular_core.InputSignal<boolean>;
8798
- private _currentKey?;
8799
- private _contentElement?;
8728
+ readonly entries$: Observable<PdfMergeEntry[]>;
8729
+ readonly entryCount$: Observable<number>;
8730
+ readonly hasReadyEntries$: Observable<boolean>;
8800
8731
  /**
8801
- * Re-attaches when the key input changes.
8732
+ * Emits `true` while any entry's validation promise has not yet resolved (i.e. one or more entries are still in `validating` status).
8802
8733
  */
8803
- protected readonly _keyEffect: _angular_core.EffectRef;
8804
- ngOnInit(): void;
8805
- ngOnDestroy(): void;
8806
- private _attachToService;
8807
- private _releaseFromService;
8808
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachOutletComponent, never>;
8809
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachOutletComponent, "dbx-detach-outlet", never, { "key": { "alias": "key"; "required": false; "isSignal": true; }; "detachOnDestroy": { "alias": "detachOnDestroy"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
8734
+ readonly isValidating$: Observable<boolean>;
8735
+ /**
8736
+ * Emits the merged PDF blob whenever every entry has finished validating (see {@link isValidating$}) and at least one is `ready`. Emits `undefined` while validation is in flight, when the list is empty, or when the most recent merge failed. Multicast via {@link shareReplay} so multiple subscribers share a single merge.
8737
+ */
8738
+ readonly currentMergeOutput$: Observable<Maybe<Blob>>;
8739
+ readonly mergeOutput$: Observable<Blob>;
8740
+ /**
8741
+ * 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.
8742
+ */
8743
+ readonly addFiles: (observableOrValue: readonly File[] | Observable<readonly File[]>) => rxjs.Subscription;
8744
+ readonly removeEntry: (observableOrValue: string | Observable<string>) => rxjs.Subscription;
8745
+ readonly moveEntry: (observableOrValue: PdfMergeEntryMove | Observable<PdfMergeEntryMove>) => rxjs.Subscription;
8746
+ readonly clearAll: () => void;
8747
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfMergeEditorStore, never>;
8748
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxPdfMergeEditorStore>;
8810
8749
  }
8811
8750
 
8812
8751
  /**
8813
- * Data passed to the overlay component via {@link NgPopoverRef}.
8752
+ * String used as input for the "accept" attribute of a file input element.
8814
8753
  */
8815
- interface DbxDetachOverlayData {
8816
- readonly controller: DbxDetachController;
8817
- readonly hostElement: HTMLElement;
8818
- }
8754
+ type FileAcceptString = string;
8819
8755
  /**
8820
- * Component rendered inside the ng-overlay-container overlay.
8756
+ * Returns a string that can be used as the "accept" attribute of a file input element.
8821
8757
  *
8822
- * Receives the detached component's host element and appends it to the overlay DOM.
8823
- * The component's lifecycle and change detection are managed by {@link DbxDetachService},
8824
- * not the overlay.
8758
+ * @param accept - A file accept string or array of filter type strings to convert
8759
+ * @returns A comma-separated string suitable for the HTML accept attribute
8825
8760
  */
8826
- declare class DbxDetachOverlayComponent implements AfterViewInit {
8827
- private readonly _elementRef;
8828
- private readonly _popoverRef;
8829
- private readonly _compactContextStore;
8830
- constructor();
8831
- ngAfterViewInit(): void;
8832
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachOverlayComponent, never>;
8833
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachOverlayComponent, "ng-component", never, {}, {}, never, never, true, never>;
8834
- }
8835
-
8836
- declare class DbxDetachInteractionModule {
8837
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachInteractionModule, never>;
8838
- static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxDetachInteractionModule, never, [typeof DbxDetachOutletComponent, typeof DbxDetachInitDirective, typeof DbxDetachOverlayComponent, typeof DbxDetachContentComponent, typeof DbxDetachControlsComponent, typeof DbxDetachControlButtonsComponent], [typeof DbxDetachOutletComponent, typeof DbxDetachInitDirective, typeof DbxDetachOverlayComponent, typeof DbxDetachContentComponent, typeof DbxDetachControlsComponent, typeof DbxDetachControlButtonsComponent]>;
8839
- static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxDetachInteractionModule>;
8840
- }
8841
-
8761
+ declare function fileAcceptString(accept: FileAcceptString | FileAcceptFilterTypeStringArray): FileAcceptString;
8842
8762
  /**
8843
- * Root-level service that owns and manages detached components.
8763
+ * A string that describes a type of file that can be selected.
8844
8764
  *
8845
- * Components are created imperatively via {@link createComponent} and kept alive
8846
- * via {@link ApplicationRef.attachView}. They are not tied to any template.
8765
+ * Can either be a mime type or a file suffix.
8766
+ */
8767
+ type FileAcceptFilterTypeString = MimeTypeWildcard | MimeTypeWithoutParameters | MimeTypeWithSubtypeWildcardWithoutParameters | SlashPathTypedFileSuffix;
8768
+ /**
8769
+ * An array of file accept filter type strings.
8770
+ */
8771
+ type FileAcceptFilterTypeStringArray = FileAcceptFilterTypeString[];
8772
+ /**
8773
+ * Converts a comma-separated accept string or array into a {@link FileAcceptFilterTypeStringArray}.
8847
8774
  *
8848
- * Outlets and overlays are just display locations the service moves the component's
8849
- * host element between them based on the current state.
8775
+ * @param accept - A file accept string or array of filter type strings to normalize
8776
+ * @returns An array of individual filter type strings
8850
8777
  *
8851
- * Multiple simultaneous detached components are supported via unique keys.
8778
+ * @example
8779
+ * ```ts
8780
+ * const types = fileAcceptFilterTypeStringArray('image/png, .pdf');
8781
+ * // ['image/png', '.pdf']
8782
+ * ```
8852
8783
  */
8853
- declare class DbxDetachService {
8854
- private readonly _appRef;
8855
- private readonly _injector;
8784
+ declare function fileAcceptFilterTypeStringArray(accept: FileAcceptString | FileAcceptFilterTypeStringArray): FileAcceptFilterTypeStringArray;
8785
+ /**
8786
+ * Configuration for matching an array of files against accept criteria with optional multiple file support.
8787
+ */
8788
+ interface FileArrayAcceptMatchConfig {
8789
+ readonly accept: FileAcceptFunction | FileAcceptString | FileAcceptFilterTypeStringArray;
8790
+ /**
8791
+ * If false, then only the first file will be accepted.
8792
+ *
8793
+ * Defaults to true.
8794
+ */
8795
+ readonly multiple?: boolean;
8796
+ }
8797
+ /**
8798
+ * Result of matching files against accept criteria, categorizing them into accepted and rejected lists.
8799
+ */
8800
+ interface FileArrayAcceptMatchResult {
8801
+ /**
8802
+ * If multiple is allowed or not.
8803
+ */
8804
+ readonly multiple: boolean;
8805
+ /**
8806
+ * The input files.
8807
+ */
8808
+ readonly input: File[];
8809
+ /**
8810
+ * The final list of accepted files.
8811
+ */
8812
+ readonly accepted: File[];
8813
+ /**
8814
+ * The final list of rejected files.
8815
+ */
8816
+ readonly rejected: File[];
8817
+ /**
8818
+ * The list of accepted files based on the file type.
8819
+ *
8820
+ * If multiple is false, all files that would have been accepted are included here.
8821
+ */
8822
+ readonly acceptedType: File[];
8823
+ /**
8824
+ * The list of rejected files based on the file type.
8825
+ *
8826
+ * If multiple is false, only files that would have been rejected by type are included here.
8827
+ */
8828
+ readonly rejectedType: File[];
8829
+ }
8830
+ /**
8831
+ * A function that matches an array of files based on the internal configuration.
8832
+ */
8833
+ type FileArrayAcceptMatchFunction = (input: File[]) => FileArrayAcceptMatchResult;
8834
+ /**
8835
+ * Creates a {@link FileArrayAcceptMatchFunction} that filters and separates files based on accept criteria and multiple file support.
8836
+ *
8837
+ * @param config - Configuration specifying the accept criteria and whether multiple files are allowed
8838
+ * @returns A function that accepts an array of files and returns the categorized match result
8839
+ *
8840
+ * @example
8841
+ * ```ts
8842
+ * const matchFn = fileArrayAcceptMatchFunction({ accept: 'image/*', multiple: false });
8843
+ * const result = matchFn(fileList);
8844
+ * console.log(result.accepted, result.rejected);
8845
+ * ```
8846
+ */
8847
+ declare function fileArrayAcceptMatchFunction(config: FileArrayAcceptMatchConfig): FileArrayAcceptMatchFunction;
8848
+ /**
8849
+ * Type of input used for a FileAcceptFunction.
8850
+ *
8851
+ * Isolates the name and type fields from a File.
8852
+ */
8853
+ type FileAcceptFunctionInput = Pick<File, 'name' | 'type'>;
8854
+ /**
8855
+ * Used to determine if a file is an accepted type based on the internal configuration.
8856
+ */
8857
+ type FileAcceptFunction = DecisionFunction<FileAcceptFunctionInput>;
8858
+ /**
8859
+ * Creates a {@link FileAcceptFunction} that checks individual files against accept criteria (MIME types, wildcards, or file extensions).
8860
+ *
8861
+ * @param accept - A file accept string or array specifying which MIME types, wildcards, or file extensions to allow
8862
+ * @returns A decision function that returns true if a file matches any of the accept criteria
8863
+ *
8864
+ * @example
8865
+ * ```ts
8866
+ * const isAccepted = fileAcceptFunction(['image/*', '.pdf']);
8867
+ * isAccepted({ name: 'photo.png', type: 'image/png' }); // true
8868
+ * isAccepted({ name: 'doc.txt', type: 'text/plain' }); // false
8869
+ * ```
8870
+ */
8871
+ declare function fileAcceptFunction(accept: FileAcceptString | FileAcceptFilterTypeStringArray): FileAcceptFunction;
8872
+
8873
+ /**
8874
+ * Abstract interface for file upload components that can be controlled by the action system (disabled, working, multiple, accept states).
8875
+ */
8876
+ declare abstract class DbxFileUploadActionCompatable {
8877
+ abstract setDisabled(disabled?: Maybe<boolean>): void;
8878
+ abstract setWorking(working?: Maybe<DbxButtonWorking>): void;
8879
+ abstract setMultiple(multiple?: Maybe<boolean>): void;
8880
+ abstract setAccept(accept?: Maybe<FileArrayAcceptMatchConfig['accept']>): void;
8881
+ }
8882
+ /**
8883
+ * Provides a {@link DbxFileUploadActionCompatable} for dependency injection from the given component type.
8884
+ *
8885
+ * @param sourceType - The concrete component class that implements {@link DbxFileUploadActionCompatable}
8886
+ * @returns An array of providers that register the given type as the {@link DbxFileUploadActionCompatable} implementation
8887
+ *
8888
+ * @example
8889
+ * ```ts
8890
+ * @Component({ providers: provideDbxFileUploadActionCompatable(MyUploadComponent) })
8891
+ * ```
8892
+ */
8893
+ declare function provideDbxFileUploadActionCompatable<S extends DbxFileUploadActionCompatable>(sourceType: Type<S>): Provider[];
8894
+
8895
+ /**
8896
+ * Event emitted when files are selected or dropped, containing both the raw file list and accept match results.
8897
+ */
8898
+ interface DbxFileUploadFilesChangedEvent {
8899
+ readonly allFiles: File[];
8900
+ readonly matchResult: FileArrayAcceptMatchResult;
8901
+ }
8902
+ /**
8903
+ * Abstract base component for file upload components, managing disabled, working, multiple, and accept states.
8904
+ *
8905
+ * Implements {@link DbxFileUploadActionCompatable} for integration with the action system.
8906
+ */
8907
+ declare abstract class AbstractDbxFileUploadComponent implements DbxFileUploadActionCompatable {
8908
+ /**
8909
+ * Whether or not multiple files can be uploaded.
8910
+ */
8911
+ readonly multiple: _angular_core.InputSignalWithTransform<Maybe<boolean>, Maybe<boolean | "">>;
8912
+ /**
8913
+ * Accepted file types filter.
8914
+ */
8915
+ readonly accept: _angular_core.InputSignal<string | _dereekb_dbx_web.FileAcceptFilterTypeStringArray | _dereekb_dbx_web.FileAcceptFunction>;
8916
+ /**
8917
+ * This disabled is input-only
8918
+ */
8919
+ readonly disabled: _angular_core.InputSignal<Maybe<boolean>>;
8920
+ /**
8921
+ * This working is input-only
8922
+ */
8923
+ readonly working: _angular_core.InputSignal<Maybe<_dereekb_dbx_core.DbxActionWorkOrWorkProgress>>;
8924
+ /**
8925
+ * This signal is set by setMultiple
8926
+ */
8927
+ private readonly _multipleSignal;
8928
+ /**
8929
+ * This signal is set by setAccept
8930
+ */
8931
+ private readonly _acceptSignal;
8932
+ /**
8933
+ * This signal is set by setDisabled
8934
+ */
8935
+ private readonly _disabledSignal;
8936
+ /**
8937
+ * This signal is set by setWorking
8938
+ */
8939
+ private readonly _workingSignal;
8940
+ readonly multipleSignal: _angular_core.Signal<Maybe<boolean>>;
8941
+ readonly acceptSignal: _angular_core.Signal<string | _dereekb_dbx_web.FileAcceptFilterTypeStringArray | _dereekb_dbx_web.FileAcceptFunction>;
8942
+ readonly disabledSignal: _angular_core.Signal<boolean>;
8943
+ readonly workingSignal: _angular_core.Signal<Maybe<_dereekb_dbx_core.DbxActionWorkOrWorkProgress>>;
8944
+ readonly isWorkingSignal: _angular_core.Signal<boolean>;
8945
+ setDisabled(disabled?: Maybe<boolean>): void;
8946
+ setWorking(working?: Maybe<DbxButtonWorking>): void;
8947
+ setMultiple(multiple?: Maybe<boolean>): void;
8948
+ setAccept(accept?: Maybe<FileArrayAcceptMatchConfig['accept']>): void;
8949
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractDbxFileUploadComponent, never>;
8950
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractDbxFileUploadComponent, never, never, { "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "working": { "alias": "working"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
8951
+ }
8952
+
8953
+ /**
8954
+ * Editor that lets the user collect PDFs and images, reorder them via drag-and-drop, and produce a single merged PDF for preview/download. Reads from an ancestor-provided {@link DbxPdfMergeEditorStore}. Optionally embeds a {@link DbxDownloadBlobButtonComponent} to offer a download affordance for the most recent merge.
8955
+ *
8956
+ * The parent view (or another directive) is responsible for providing {@link DbxPdfMergeEditorStore} so the editor and its peer components ({@link DbxPdfMergeListComponent}, {@link DbxPdfMergeEntryComponent}) share the same instance. Subscribe to the store's {@link DbxPdfMergeEditorStore.mergeOutput$} directly for downstream merge consumers.
8957
+ *
8958
+ * @example
8959
+ * ```html
8960
+ * <dbx-pdf-merge-editor [showDownloadButton]="true" fileName="receipts.pdf" [downloadButton]="{ display: { icon: 'cloud_download', text: 'Save' }, style: { type: 'flat', color: 'primary' } }"></dbx-pdf-merge-editor>
8961
+ * ```
8962
+ */
8963
+ declare class DbxPdfMergeEditorComponent {
8964
+ readonly store: DbxPdfMergeEditorStore;
8965
+ private readonly _matDialog;
8966
+ private readonly _destroyRef;
8967
+ readonly accept: _angular_core.InputSignal<string | _dereekb_dbx_web.FileAcceptFilterTypeStringArray | _dereekb_dbx_web.FileAcceptFunction>;
8968
+ readonly multiple: _angular_core.InputSignal<boolean>;
8969
+ readonly fileName: _angular_core.InputSignal<string>;
8970
+ readonly showDownloadButton: _angular_core.InputSignal<boolean>;
8971
+ readonly showPreviewButton: _angular_core.InputSignal<boolean>;
8972
+ readonly downloadButton: _angular_core.InputSignal<Maybe<DbxButtonDisplayStylePair>>;
8973
+ readonly entriesChanged: _angular_core.OutputEmitterRef<readonly PdfMergeEntry[]>;
8974
+ readonly hasReadyEntriesSignal: _angular_core.Signal<boolean>;
8975
+ readonly entryCountSignal: _angular_core.Signal<number>;
8976
+ /**
8977
+ * 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.
8978
+ */
8979
+ readonly mergeBlobSignal: _angular_core.Signal<Maybe<Blob>>;
8980
+ readonly downloadConfigSignal: _angular_core.Signal<DbxDownloadBlobButtonConfig>;
8981
+ constructor();
8982
+ onFiles(event: DbxFileUploadFilesChangedEvent): void;
8983
+ onClear(): void;
8984
+ onPreview(): void;
8985
+ private openPreviewDialog;
8986
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfMergeEditorComponent, never>;
8987
+ 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, never, true, never>;
8988
+ }
8989
+
8990
+ /**
8991
+ * Renders the staged entries inside a CDK drop list. Each row is a {@link DbxPdfMergeEntryComponent} that hosts its own `cdkDrag`, so reordering events bubble up here as `cdkDropListDropped` and forward to the store's `moveEntry` updater.
8992
+ */
8993
+ declare class DbxPdfMergeListComponent {
8994
+ readonly store: DbxPdfMergeEditorStore;
8995
+ readonly entries$: rxjs.Observable<_dereekb_dbx_web.PdfMergeEntry[]>;
8996
+ onDrop(event: CdkDragDrop<unknown>): void;
8997
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfMergeListComponent, never>;
8998
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxPdfMergeListComponent, "dbx-pdf-merge-list", never, {}, {}, never, never, true, never>;
8999
+ }
9000
+
9001
+ /**
9002
+ * Single row inside the {@link DbxPdfMergeListComponent}: shows the file's icon, name, formatted size, status, drag handle, and a remove button. The component's template is itself a `cdkDrag` element so each row can be reordered inside the parent's `cdkDropList`.
9003
+ */
9004
+ declare class DbxPdfMergeEntryComponent {
9005
+ readonly store: DbxPdfMergeEditorStore;
9006
+ readonly entry: _angular_core.InputSignal<PdfMergeEntry>;
9007
+ readonly iconSignal: _angular_core.Signal<string>;
9008
+ readonly sizeSignal: _angular_core.Signal<string>;
9009
+ readonly isValidatingSignal: _angular_core.Signal<boolean>;
9010
+ readonly isErrorSignal: _angular_core.Signal<boolean>;
9011
+ readonly statusLabelSignal: _angular_core.Signal<string | null>;
9012
+ onRemove(): void;
9013
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfMergeEntryComponent, never>;
9014
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxPdfMergeEntryComponent, "dbx-pdf-merge-entry", never, { "entry": { "alias": "entry"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
9015
+ }
9016
+
9017
+ /**
9018
+ * Renders a PDF in a fixed-height embed container. Accepts either a URL or a `Blob` source.
9019
+ *
9020
+ * @example
9021
+ * ```html
9022
+ * <dbx-pdf-preview [blob]="mergedBlob"></dbx-pdf-preview>
9023
+ * ```
9024
+ */
9025
+ declare class DbxPdfPreviewComponent {
9026
+ readonly blob: _angular_core.ModelSignal<Maybe<Blob>>;
9027
+ readonly srcUrl: _angular_core.ModelSignal<Maybe<string>>;
9028
+ readonly downloadFileName: _angular_core.ModelSignal<Maybe<string>>;
9029
+ readonly mimeType: string;
9030
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPdfPreviewComponent, never>;
9031
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxPdfPreviewComponent, "dbx-pdf-preview", never, { "blob": { "alias": "blob"; "required": false; "isSignal": true; }; "srcUrl": { "alias": "srcUrl"; "required": false; "isSignal": true; }; "downloadFileName": { "alias": "downloadFileName"; "required": false; "isSignal": true; }; }, { "blob": "blobChange"; "srcUrl": "srcUrlChange"; "downloadFileName": "downloadFileNameChange"; }, never, never, true, never>;
9032
+ }
9033
+
9034
+ /**
9035
+ * Configuration for opening a PDF preview dialog. Extends {@link MatDialogConfig} with PDF-specific source options (blob or URL) and an optional download file name.
9036
+ */
9037
+ interface DbxPdfPreviewDialogConfig extends Omit<MatDialogConfig, 'data'> {
9038
+ readonly srcUrl?: Maybe<WebsiteUrlWithPrefix>;
9039
+ readonly blob?: Maybe<Blob>;
9040
+ readonly downloadFileName?: Maybe<string>;
9041
+ }
9042
+ /**
9043
+ * Opens a dialog containing a {@link DbxPdfPreviewComponent} for previewing a PDF blob or URL.
9044
+ *
9045
+ * @param matDialog The {@link MatDialog} instance to use.
9046
+ * @param config Source (blob or URL) and Material dialog options.
9047
+ * @returns The {@link MatDialogRef} for the opened dialog.
9048
+ */
9049
+ declare function openPdfPreviewDialog(matDialog: MatDialog, config: DbxPdfPreviewDialogConfig): MatDialogRef<DbxInjectionDialogComponent<DbxPdfPreviewComponent>, void>;
9050
+
9051
+ /**
9052
+ * Unique key used to identify a detach instance.
9053
+ */
9054
+ type DbxDetachKey = string;
9055
+ /**
9056
+ * Default key used when no key is specified.
9057
+ */
9058
+ declare const DBX_DETACH_DEFAULT_KEY: DbxDetachKey;
9059
+ /**
9060
+ * Possible display states for a detach instance.
9061
+ */
9062
+ declare const DbxDetachWindowState: {
9063
+ /**
9064
+ * Content renders at an outlet location in the page.
9065
+ */
9066
+ readonly ATTACHED: "attached";
9067
+ /**
9068
+ * Content renders in a floating overlay (via ng-overlay-container).
9069
+ */
9070
+ readonly DETACHED: "detached";
9071
+ /**
9072
+ * Content is in the floating overlay but body is hidden (only controls visible).
9073
+ */
9074
+ readonly MINIMIZED: "minimized";
9075
+ };
9076
+ /**
9077
+ * Union type of all possible detach window state values.
9078
+ */
9079
+ type DbxDetachWindowStateType = (typeof DbxDetachWindowState)[keyof typeof DbxDetachWindowState];
9080
+ /**
9081
+ * Overlay-specific configuration for a detach instance.
9082
+ */
9083
+ interface DbxDetachOverlayConfig {
9084
+ readonly width?: string;
9085
+ readonly height?: string;
9086
+ readonly isDraggable?: boolean;
9087
+ }
9088
+ /**
9089
+ * Configuration for initializing a detach instance.
9090
+ *
9091
+ * Extends {@link DbxInjectionComponentConfig} with an optional key and overlay settings.
9092
+ */
9093
+ interface DbxDetachConfig<T = unknown> extends DbxInjectionComponentConfig<T> {
9094
+ readonly key?: DbxDetachKey;
9095
+ readonly overlay?: DbxDetachOverlayConfig;
9096
+ }
9097
+ /**
9098
+ * Tracks a single detached component managed by {@link DbxDetachService}.
9099
+ *
9100
+ * The component is created imperatively and lives in the service.
9101
+ * Outlets and overlays are just display locations — this instance
9102
+ * tracks which location currently hosts the component.
9103
+ */
9104
+ interface DbxDetachInstance<T = unknown> {
9105
+ readonly key: DbxDetachKey;
9106
+ readonly componentRef: ComponentRef<T>;
9107
+ readonly windowState$: Observable<DbxDetachWindowStateType>;
9108
+ readonly closing$: Observable<boolean>;
9109
+ /**
9110
+ * Moves content to an outlet in the page (if one exists for this key).
9111
+ */
9112
+ attach(): void;
9113
+ /**
9114
+ * Moves content to the floating overlay.
9115
+ */
9116
+ detach(): void;
9117
+ /**
9118
+ * Collapses the floating overlay so only controls are visible.
9119
+ */
9120
+ minimize(): void;
9121
+ /**
9122
+ * Destroys the detached component entirely.
9123
+ */
9124
+ close(): void;
9125
+ }
9126
+ /**
9127
+ * Abstract controller that content components can inject to
9128
+ * trigger state changes without being aware of the underlying mechanism.
9129
+ */
9130
+ declare abstract class DbxDetachController<I = unknown> {
9131
+ abstract readonly key: DbxDetachKey;
9132
+ abstract readonly data?: Maybe<I>;
9133
+ abstract readonly windowState$: Observable<DbxDetachWindowStateType>;
9134
+ abstract readonly closing$: Observable<boolean>;
9135
+ abstract attach(): void;
9136
+ abstract detach(): void;
9137
+ abstract minimize(): void;
9138
+ abstract close(): void;
9139
+ }
9140
+ /**
9141
+ * Creates Angular providers that register a {@link DbxDetachController} implementation for DI.
9142
+ *
9143
+ * @param sourceType - The concrete class to provide as the controller.
9144
+ * @returns An array of Angular providers that bind the source type to {@link DbxDetachController}.
9145
+ *
9146
+ * @example
9147
+ * ```typescript
9148
+ * @Component({
9149
+ * providers: provideDbxDetachController(MyDetachController),
9150
+ * })
9151
+ * export class MyComponent {}
9152
+ * ```
9153
+ */
9154
+ declare function provideDbxDetachController<S extends DbxDetachController>(sourceType: Type<S>): Provider[];
9155
+
9156
+ /**
9157
+ * Wraps detach body content, hiding the body when the panel is minimized while keeping the controls visible.
9158
+ *
9159
+ * @example
9160
+ * ```html
9161
+ * <dbx-detach-content>
9162
+ * <dbx-detach-controls controls [header]="'My Panel'"></dbx-detach-controls>
9163
+ * <p>Body content here.</p>
9164
+ * </dbx-detach-content>
9165
+ * ```
9166
+ */
9167
+ declare class DbxDetachContentComponent {
9168
+ private readonly _detachController;
9169
+ readonly showContent$: rxjs.Observable<boolean>;
9170
+ readonly showContentSignal: _angular_core.Signal<boolean>;
9171
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachContentComponent, never>;
9172
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachContentComponent, "dbx-detach-content", never, {}, {}, never, ["[controls]", "*"], true, never>;
9173
+ }
9174
+
9175
+ /**
9176
+ * Renders state-dependent control buttons for a detach component.
9177
+ *
9178
+ * - ATTACHED: detach (picture_in_picture_alt) + close
9179
+ * - DETACHED: attach (open_in_full) + minimize + close
9180
+ * - MINIMIZED: attach (open_in_full) + restore (maximize) + close
9181
+ */
9182
+ declare class DbxDetachControlButtonsComponent {
9183
+ private readonly _detachController;
9184
+ readonly windowStateSignal: _angular_core.Signal<_dereekb_dbx_web.DbxDetachWindowStateType>;
9185
+ attachClicked(): void;
9186
+ detachClicked(): void;
9187
+ minimizeClicked(): void;
9188
+ closeClicked(): void;
9189
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachControlButtonsComponent, never>;
9190
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachControlButtonsComponent, "dbx-detach-control-buttons", never, {}, {}, never, never, true, never>;
9191
+ }
9192
+
9193
+ /**
9194
+ * Renders the detach control bar with a header title and window management buttons (attach, detach, minimize, close).
9195
+ *
9196
+ * @example
9197
+ * ```html
9198
+ * <dbx-detach-controls [header]="'My Panel'"></dbx-detach-controls>
9199
+ * ```
9200
+ */
9201
+ declare class DbxDetachControlsComponent {
9202
+ readonly header: _angular_core.InputSignal<string | undefined>;
9203
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachControlsComponent, never>;
9204
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachControlsComponent, "dbx-detach-controls", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
9205
+ }
9206
+
9207
+ /**
9208
+ * Directive that ensures a detached component exists in the {@link DbxDetachService} for the given key.
9209
+ *
9210
+ * Place this on any element to declaratively initialize a detached component.
9211
+ * The component is created in the service on init and is NOT destroyed when this directive is destroyed —
9212
+ * it lives in the service until explicitly closed.
9213
+ *
9214
+ * @example
9215
+ * ```html
9216
+ * <div [dbxDetachInit]="chatWidgetConfig" dbxDetachInitKey="support-chat"></div>
9217
+ * ```
9218
+ */
9219
+ declare class DbxDetachInitDirective implements OnInit {
9220
+ private readonly _detachService;
9221
+ readonly config: _angular_core.InputSignal<DbxInjectionComponentConfig<unknown>>;
9222
+ readonly key: _angular_core.InputSignal<string>;
9223
+ ngOnInit(): void;
9224
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachInitDirective, never>;
9225
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxDetachInitDirective, "[dbxDetachInit]", never, { "config": { "alias": "dbxDetachInit"; "required": true; "isSignal": true; }; "key": { "alias": "dbxDetachInitKey"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
9226
+ }
9227
+
9228
+ /**
9229
+ * Outlet component that displays a detached component at its DOM location.
9230
+ *
9231
+ * When this component initializes, it tells the {@link DbxDetachService} to move
9232
+ * the component for the given key into this element.
9233
+ *
9234
+ * When destroyed (e.g. navigation away), behavior depends on {@link detachOnDestroy}:
9235
+ * - `true`: the component moves to the floating overlay and remains visible
9236
+ * - `false` (default): the component stays alive in the service but is hidden until a new outlet appears
9237
+ *
9238
+ * @example
9239
+ * ```html
9240
+ * <!-- Auto-floats when navigating away -->
9241
+ * <dbx-detach-outlet key="support-chat" [detachOnDestroy]="true"></dbx-detach-outlet>
9242
+ *
9243
+ * <!-- Hidden when navigating away, re-appears when outlet is recreated -->
9244
+ * <dbx-detach-outlet key="support-chat"></dbx-detach-outlet>
9245
+ * ```
9246
+ */
9247
+ declare class DbxDetachOutletComponent implements OnInit, OnDestroy {
9248
+ private readonly _detachService;
9249
+ private readonly _elementRef;
9250
+ readonly key: _angular_core.InputSignal<string>;
9251
+ /**
9252
+ * When true, the component automatically moves to the floating overlay
9253
+ * when this outlet is destroyed (e.g. page navigation). Defaults to false.
9254
+ */
9255
+ readonly detachOnDestroy: _angular_core.InputSignal<boolean>;
9256
+ private _currentKey?;
9257
+ private _contentElement?;
9258
+ /**
9259
+ * Re-attaches when the key input changes.
9260
+ */
9261
+ protected readonly _keyEffect: _angular_core.EffectRef;
9262
+ ngOnInit(): void;
9263
+ ngOnDestroy(): void;
9264
+ private _attachToService;
9265
+ private _releaseFromService;
9266
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachOutletComponent, never>;
9267
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachOutletComponent, "dbx-detach-outlet", never, { "key": { "alias": "key"; "required": false; "isSignal": true; }; "detachOnDestroy": { "alias": "detachOnDestroy"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
9268
+ }
9269
+
9270
+ /**
9271
+ * Data passed to the overlay component via {@link NgPopoverRef}.
9272
+ */
9273
+ interface DbxDetachOverlayData {
9274
+ readonly controller: DbxDetachController;
9275
+ readonly hostElement: HTMLElement;
9276
+ }
9277
+ /**
9278
+ * Component rendered inside the ng-overlay-container overlay.
9279
+ *
9280
+ * Receives the detached component's host element and appends it to the overlay DOM.
9281
+ * The component's lifecycle and change detection are managed by {@link DbxDetachService},
9282
+ * not the overlay.
9283
+ */
9284
+ declare class DbxDetachOverlayComponent implements AfterViewInit {
9285
+ private readonly _elementRef;
9286
+ private readonly _popoverRef;
9287
+ private readonly _compactContextStore;
9288
+ constructor();
9289
+ ngAfterViewInit(): void;
9290
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachOverlayComponent, never>;
9291
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDetachOverlayComponent, "ng-component", never, {}, {}, never, never, true, never>;
9292
+ }
9293
+
9294
+ declare class DbxDetachInteractionModule {
9295
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDetachInteractionModule, never>;
9296
+ static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxDetachInteractionModule, never, [typeof DbxDetachOutletComponent, typeof DbxDetachInitDirective, typeof DbxDetachOverlayComponent, typeof DbxDetachContentComponent, typeof DbxDetachControlsComponent, typeof DbxDetachControlButtonsComponent], [typeof DbxDetachOutletComponent, typeof DbxDetachInitDirective, typeof DbxDetachOverlayComponent, typeof DbxDetachContentComponent, typeof DbxDetachControlsComponent, typeof DbxDetachControlButtonsComponent]>;
9297
+ static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxDetachInteractionModule>;
9298
+ }
9299
+
9300
+ /**
9301
+ * Root-level service that owns and manages detached components.
9302
+ *
9303
+ * Components are created imperatively via {@link createComponent} and kept alive
9304
+ * via {@link ApplicationRef.attachView}. They are not tied to any template.
9305
+ *
9306
+ * Outlets and overlays are just display locations — the service moves the component's
9307
+ * host element between them based on the current state.
9308
+ *
9309
+ * Multiple simultaneous detached components are supported via unique keys.
9310
+ */
9311
+ declare class DbxDetachService {
9312
+ private readonly _appRef;
9313
+ private readonly _injector;
8856
9314
  private readonly _envInjector;
8857
9315
  private readonly _overlay;
8858
9316
  private readonly _overlayContainerService;
@@ -10008,208 +10466,6 @@ declare class DbxInteractionModule {
10008
10466
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxInteractionModule>;
10009
10467
  }
10010
10468
 
10011
- /**
10012
- * String used as input for the "accept" attribute of a file input element.
10013
- */
10014
- type FileAcceptString = string;
10015
- /**
10016
- * Returns a string that can be used as the "accept" attribute of a file input element.
10017
- *
10018
- * @param accept - A file accept string or array of filter type strings to convert
10019
- * @returns A comma-separated string suitable for the HTML accept attribute
10020
- */
10021
- declare function fileAcceptString(accept: FileAcceptString | FileAcceptFilterTypeStringArray): FileAcceptString;
10022
- /**
10023
- * A string that describes a type of file that can be selected.
10024
- *
10025
- * Can either be a mime type or a file suffix.
10026
- */
10027
- type FileAcceptFilterTypeString = MimeTypeWildcard | MimeTypeWithoutParameters | MimeTypeWithSubtypeWildcardWithoutParameters | SlashPathTypedFileSuffix;
10028
- /**
10029
- * An array of file accept filter type strings.
10030
- */
10031
- type FileAcceptFilterTypeStringArray = FileAcceptFilterTypeString[];
10032
- /**
10033
- * Converts a comma-separated accept string or array into a {@link FileAcceptFilterTypeStringArray}.
10034
- *
10035
- * @param accept - A file accept string or array of filter type strings to normalize
10036
- * @returns An array of individual filter type strings
10037
- *
10038
- * @example
10039
- * ```ts
10040
- * const types = fileAcceptFilterTypeStringArray('image/png, .pdf');
10041
- * // ['image/png', '.pdf']
10042
- * ```
10043
- */
10044
- declare function fileAcceptFilterTypeStringArray(accept: FileAcceptString | FileAcceptFilterTypeStringArray): FileAcceptFilterTypeStringArray;
10045
- /**
10046
- * Configuration for matching an array of files against accept criteria with optional multiple file support.
10047
- */
10048
- interface FileArrayAcceptMatchConfig {
10049
- readonly accept: FileAcceptFunction | FileAcceptString | FileAcceptFilterTypeStringArray;
10050
- /**
10051
- * If false, then only the first file will be accepted.
10052
- *
10053
- * Defaults to true.
10054
- */
10055
- readonly multiple?: boolean;
10056
- }
10057
- /**
10058
- * Result of matching files against accept criteria, categorizing them into accepted and rejected lists.
10059
- */
10060
- interface FileArrayAcceptMatchResult {
10061
- /**
10062
- * If multiple is allowed or not.
10063
- */
10064
- readonly multiple: boolean;
10065
- /**
10066
- * The input files.
10067
- */
10068
- readonly input: File[];
10069
- /**
10070
- * The final list of accepted files.
10071
- */
10072
- readonly accepted: File[];
10073
- /**
10074
- * The final list of rejected files.
10075
- */
10076
- readonly rejected: File[];
10077
- /**
10078
- * The list of accepted files based on the file type.
10079
- *
10080
- * If multiple is false, all files that would have been accepted are included here.
10081
- */
10082
- readonly acceptedType: File[];
10083
- /**
10084
- * The list of rejected files based on the file type.
10085
- *
10086
- * If multiple is false, only files that would have been rejected by type are included here.
10087
- */
10088
- readonly rejectedType: File[];
10089
- }
10090
- /**
10091
- * A function that matches an array of files based on the internal configuration.
10092
- */
10093
- type FileArrayAcceptMatchFunction = (input: File[]) => FileArrayAcceptMatchResult;
10094
- /**
10095
- * Creates a {@link FileArrayAcceptMatchFunction} that filters and separates files based on accept criteria and multiple file support.
10096
- *
10097
- * @param config - Configuration specifying the accept criteria and whether multiple files are allowed
10098
- * @returns A function that accepts an array of files and returns the categorized match result
10099
- *
10100
- * @example
10101
- * ```ts
10102
- * const matchFn = fileArrayAcceptMatchFunction({ accept: 'image/*', multiple: false });
10103
- * const result = matchFn(fileList);
10104
- * console.log(result.accepted, result.rejected);
10105
- * ```
10106
- */
10107
- declare function fileArrayAcceptMatchFunction(config: FileArrayAcceptMatchConfig): FileArrayAcceptMatchFunction;
10108
- /**
10109
- * Type of input used for a FileAcceptFunction.
10110
- *
10111
- * Isolates the name and type fields from a File.
10112
- */
10113
- type FileAcceptFunctionInput = Pick<File, 'name' | 'type'>;
10114
- /**
10115
- * Used to determine if a file is an accepted type based on the internal configuration.
10116
- */
10117
- type FileAcceptFunction = DecisionFunction<FileAcceptFunctionInput>;
10118
- /**
10119
- * Creates a {@link FileAcceptFunction} that checks individual files against accept criteria (MIME types, wildcards, or file extensions).
10120
- *
10121
- * @param accept - A file accept string or array specifying which MIME types, wildcards, or file extensions to allow
10122
- * @returns A decision function that returns true if a file matches any of the accept criteria
10123
- *
10124
- * @example
10125
- * ```ts
10126
- * const isAccepted = fileAcceptFunction(['image/*', '.pdf']);
10127
- * isAccepted({ name: 'photo.png', type: 'image/png' }); // true
10128
- * isAccepted({ name: 'doc.txt', type: 'text/plain' }); // false
10129
- * ```
10130
- */
10131
- declare function fileAcceptFunction(accept: FileAcceptString | FileAcceptFilterTypeStringArray): FileAcceptFunction;
10132
-
10133
- /**
10134
- * Abstract interface for file upload components that can be controlled by the action system (disabled, working, multiple, accept states).
10135
- */
10136
- declare abstract class DbxFileUploadActionCompatable {
10137
- abstract setDisabled(disabled?: Maybe<boolean>): void;
10138
- abstract setWorking(working?: Maybe<DbxButtonWorking>): void;
10139
- abstract setMultiple(multiple?: Maybe<boolean>): void;
10140
- abstract setAccept(accept?: Maybe<FileArrayAcceptMatchConfig['accept']>): void;
10141
- }
10142
- /**
10143
- * Provides a {@link DbxFileUploadActionCompatable} for dependency injection from the given component type.
10144
- *
10145
- * @param sourceType - The concrete component class that implements {@link DbxFileUploadActionCompatable}
10146
- * @returns An array of providers that register the given type as the {@link DbxFileUploadActionCompatable} implementation
10147
- *
10148
- * @example
10149
- * ```ts
10150
- * @Component({ providers: provideDbxFileUploadActionCompatable(MyUploadComponent) })
10151
- * ```
10152
- */
10153
- declare function provideDbxFileUploadActionCompatable<S extends DbxFileUploadActionCompatable>(sourceType: Type<S>): Provider[];
10154
-
10155
- /**
10156
- * Event emitted when files are selected or dropped, containing both the raw file list and accept match results.
10157
- */
10158
- interface DbxFileUploadFilesChangedEvent {
10159
- readonly allFiles: File[];
10160
- readonly matchResult: FileArrayAcceptMatchResult;
10161
- }
10162
- /**
10163
- * Abstract base component for file upload components, managing disabled, working, multiple, and accept states.
10164
- *
10165
- * Implements {@link DbxFileUploadActionCompatable} for integration with the action system.
10166
- */
10167
- declare abstract class AbstractDbxFileUploadComponent implements DbxFileUploadActionCompatable {
10168
- /**
10169
- * Whether or not multiple files can be uploaded.
10170
- */
10171
- readonly multiple: _angular_core.InputSignalWithTransform<Maybe<boolean>, Maybe<boolean | "">>;
10172
- /**
10173
- * Accepted file types filter.
10174
- */
10175
- readonly accept: _angular_core.InputSignal<string | _dereekb_dbx_web.FileAcceptFilterTypeStringArray | _dereekb_dbx_web.FileAcceptFunction>;
10176
- /**
10177
- * This disabled is input-only
10178
- */
10179
- readonly disabled: _angular_core.InputSignal<Maybe<boolean>>;
10180
- /**
10181
- * This working is input-only
10182
- */
10183
- readonly working: _angular_core.InputSignal<Maybe<_dereekb_dbx_core.DbxActionWorkOrWorkProgress>>;
10184
- /**
10185
- * This signal is set by setMultiple
10186
- */
10187
- private readonly _multipleSignal;
10188
- /**
10189
- * This signal is set by setAccept
10190
- */
10191
- private readonly _acceptSignal;
10192
- /**
10193
- * This signal is set by setDisabled
10194
- */
10195
- private readonly _disabledSignal;
10196
- /**
10197
- * This signal is set by setWorking
10198
- */
10199
- private readonly _workingSignal;
10200
- readonly multipleSignal: _angular_core.Signal<Maybe<boolean>>;
10201
- readonly acceptSignal: _angular_core.Signal<string | _dereekb_dbx_web.FileAcceptFilterTypeStringArray | _dereekb_dbx_web.FileAcceptFunction>;
10202
- readonly disabledSignal: _angular_core.Signal<boolean>;
10203
- readonly workingSignal: _angular_core.Signal<Maybe<_dereekb_dbx_core.DbxActionWorkOrWorkProgress>>;
10204
- readonly isWorkingSignal: _angular_core.Signal<boolean>;
10205
- setDisabled(disabled?: Maybe<boolean>): void;
10206
- setWorking(working?: Maybe<DbxButtonWorking>): void;
10207
- setMultiple(multiple?: Maybe<boolean>): void;
10208
- setAccept(accept?: Maybe<FileArrayAcceptMatchConfig['accept']>): void;
10209
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractDbxFileUploadComponent, never>;
10210
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractDbxFileUploadComponent, never, never, { "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "working": { "alias": "working"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10211
- }
10212
-
10213
10469
  /**
10214
10470
  * Event emitted by {@link DbxFileUploadAreaComponent} when files are dropped.
10215
10471
  */
@@ -10516,5 +10772,5 @@ declare class DbxWebModule {
10516
10772
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxWebModule>;
10517
10773
  }
10518
10774
 
10519
- export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxHelpWidgetDirective, AbstractDbxListAccordionViewDirective, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_CHIP_DEFAULT_TONE, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_DETACH_DEFAULT_KEY, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_DEFAULT_SCROLL_DISTANCE, DBX_LIST_DEFAULT_THROTTLE_SCROLL, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_LIST_VIEW_DEFAULT_META_ICON, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_DIALOG_WITH_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_DEFAULT_PREVIEW_COMPONENT_FUNCTION, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetachContentComponent, DbxDetachControlButtonsComponent, DbxDetachController, DbxDetachControlsComponent, DbxDetachInitDirective, DbxDetachInteractionModule, DbxDetachOutletComponent, DbxDetachOverlayComponent, DbxDetachService, DbxDetachWindowState, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxInteractionModule, DbxIntroActionSectionComponent, DbxLabelBlockComponent, DbxLayoutModule, DbxLinkComponent, DbxLinkifyComponent, DbxLinkifyService, DbxLinkifyServiceConfig, DbxListAccordionViewComponentImportsModule, DbxListComponent, DbxListEmptyContentComponent, DbxListGridViewComponentImportsModule, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListModifierModule, DbxListModule, DbxListTitleGroupDirective, DbxListView, DbxListViewMetaIconComponent, DbxListViewWrapper, DbxListWrapperComponentImportsModule, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelObjectStateService, actions_d as DbxModelStateActions, model_actions_d as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNumberWithLimitComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressButtonsModule, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorModule, DbxResizedDirective, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepBlockComponent, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, DbxTextColorDirective, DbxTextModule, DbxTwoBlockComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadDirective, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListAccordionViewComponent, DbxValueListAccordionViewContentComponent, DbxValueListAccordionViewContentGroupComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListGridViewContentGroupComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewComponentImportsModule, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWebFilePreviewComponent, DbxWebFilePreviewService, DbxWebModule, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, DbxZipBlobPreviewComponent, DbxZipPreviewComponent, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SIDE_NAV_DISPLAY_MODE_ORDER, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, UNKNOWN_ERROR_WIDGET_CODE, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxListAccordionViewComponentImportsAndExports, dbxListGridViewComponentImportsAndExports, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxThemeColorCssVariable, dbxThemeColorCssVariableVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, flattenAccordionGroups, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openZipPreviewDialog, overrideClickElementEffect, provideDbxDetachController, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
10520
- 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, DbxPopoverComponentConfig, DbxPopoverConfig, DbxPopoverConfigSizing, DbxPopoverKey, DbxPopupComponentConfig, DbxPopupConfig, DbxPopupKey, DbxPopupWindowStateType, DbxPresetFilterMenuConfig, DbxProgressButtonConfig, DbxProgressButtonGlobalConfig, DbxProgressButtonIcon, DbxProgressButtonTargetedConfig, DbxPromptConfirmConfig, DbxPromptConfirmDialogConfig, DbxSectionHeaderConfig, DbxSectionHeaderHType, DbxSectionPageScrollLockedMode, DbxSelectionListWrapperConfig, DbxSelectionValueListViewConfig, DbxSetStyleMode, DbxSidenavPosition, DbxSidenavSidebarState, DbxStepBlockComponentConfig, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, DbxThemeColor, DbxThemeColorExtra, DbxThemeColorExtraSecondary, DbxThemeColorMain, DbxThemeColorMainOrExtra, DbxTwoColumnViewState, DbxValueAsListItem, DbxValueListAccordionViewConfig, DbxValueListGridItemViewGridSizeConfig, DbxValueListGridViewConfig, DbxValueListItem, DbxValueListItemConfig, DbxValueListItemDecisionFunction, DbxValueListItemGroup, DbxValueListViewConfig, DbxValueListViewGroupValuesFunction, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebFilePreviewServicePreviewFunction, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FullDbxPopoverComponentConfig, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, TextChip, TwoColumnsState };
10775
+ 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, 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, 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, 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, provideTwoColumnsContext, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier, validatePdfMergeEntry };
10776
+ 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, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebFilePreviewServicePreviewFunction, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FullDbxPopoverComponentConfig, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PdfMergeEditorState, PdfMergeEntry, PdfMergeEntryKind, PdfMergeEntryMove, PdfMergeEntryStatus, PdfMergeEntryValidationResult, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, TextChip, TwoColumnsState };