@dereekb/dbx-web 14.7.0 → 14.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _dereekb_dbx_core from '@dereekb/dbx-core';
|
|
2
|
-
import { DbxActionWorkOrWorkProgress, DbxActionWorkProgress, DbxActionContextStoreSourceInstance, DbxActionContextSourceReference, DbxActionSuccessHandlerFunction, AbstractTransitionWatcherDirective,
|
|
2
|
+
import { DbxActionWorkOrWorkProgress, DbxActionWorkProgress, DbxActionContextStoreSourceInstance, DbxActionContextSourceReference, DbxActionSuccessHandlerFunction, AbstractTransitionWatcherDirective, AuthUserIdentifier, DbxInjectionComponentConfig, SegueRef, ClickableAnchor, SegueRefOrSegueRefRouterLink, DbxButtonDisplay, AbstractDbxButtonDirective, DbxButtonWorking, DbxButtonEcho, SimpleStorageAccessorFactory, StorageAccessor, AbstractDbxAnchorDirective, ClickableIconAnchorLink, ClickableAnchorLink, DbxInjectionTemplateConfig, ClickableAnchorLinkTree, ExpandedClickableAnchorLinkTree, AbstractTransitionDirective, ClickableAnchorLinkSegueRef, AbstractIfDirective, AbstractDbxActionValueGetterDirective, DbxActionWorkable, DbxButton, FilterSourceDirective, ClickablePartialFilterPreset, AbstractDbxActionHandlerDirective, ClickableFilterPresetOrPartialPreset, ClickableFilterPreset, DbxButtonInterceptor } from '@dereekb/dbx-core';
|
|
3
3
|
import * as _angular_core from '@angular/core';
|
|
4
|
-
import { Signal, ElementRef, AfterViewInit, InjectionToken, Type, OnInit,
|
|
4
|
+
import { Signal, ElementRef, AfterViewInit, InjectionToken, Type, OnInit, Injector, Provider, TrackByFunction, OutputEmitterRef, OnDestroy, OutputRef, EnvironmentProviders, ViewContainerRef, TemplateRef, ComponentRef } from '@angular/core';
|
|
5
5
|
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
6
6
|
import * as _dereekb_util from '@dereekb/util';
|
|
7
7
|
import { Maybe, ErrorInput, Milliseconds, GetterOrValue, Getter, CssClass, CharacterPrefixSuffixCleanString, DashPrefixString, CssStyleObject, CssToken, CssTokenVar, WebsiteUrlWithPrefix, WebsitePath, ArrayOrValue, Pixels, PixelsString, DecisionFunction, ModifierMap, Modifier, ModifierFunction, UniqueModel, CssClassesArray, PrimativeKey, SortCompareFunction, ModelKeyRef, HtmlHeaderLevel, Destroyable, UnitedStatesAddressWithContact, LabeledValue, GetterOrValueWithInput, Seconds, DestroyFunction, ReadableError, ReadableErrorWithCode, ServerError, ServerErrorResponseData, ServerErrorResponse, PromiseOrValue, SpaceSeparatedCssClasses, StringErrorCode, ModelKeyTypeNamePair, UnixDateTimeSecondsNumber, ModelKey, ModelTypeString, MimeTypeWithoutParameters, ContentTypeMimeType, ModelTypeDataPair, MapFunction, SlashPathDirectoryTreeNode, SlashPathDirectoryTreeNodeValue, SlashPathDirectoryTreeRoot, FileSize, MimeTypeWildcard, MimeTypeWithSubtypeWildcardWithoutParameters, SlashPathTypedFileSuffix, ISO8601DateString, ModelIdFactory } from '@dereekb/util';
|
|
@@ -13,8 +13,8 @@ import * as _dereekb_rxjs from '@dereekb/rxjs';
|
|
|
13
13
|
import { MaybeObservableOrValue, LoadingContext, LoadingContextEvent, LoadingState, LoadingStateType, ListLoadingState, ListLoadingStateContext, ObservableOrValue, LockSet, WorkUsingObservable, IsModifiedFunction, IsEqualFunction, WorkUsingContext, FilterSource, PresetFilterSource, FilterSourceConnector, FilterWithPreset } from '@dereekb/rxjs';
|
|
14
14
|
import { MatSnackBarConfig, MatSnackBarRef, MatSnackBar } from '@angular/material/snack-bar';
|
|
15
15
|
import { MatDialogRef, MatDialog, MatDialogConfig } from '@angular/material/dialog';
|
|
16
|
-
import { TransitionService, Transition, HookResult } from '@uirouter/core';
|
|
17
16
|
import { ThemePalette } from '@angular/material/core';
|
|
17
|
+
import { TransitionService, Transition, HookResult } from '@uirouter/core';
|
|
18
18
|
import * as _dereekb_dbx_web from '@dereekb/dbx-web';
|
|
19
19
|
import * as ng_overlay_container from 'ng-overlay-container';
|
|
20
20
|
import { NgPopoverRef, NgPopoverCloseType, NgOverlayContainerConfiguration, NgPopoverCloseEvent } from 'ng-overlay-container';
|
|
@@ -563,359 +563,142 @@ declare abstract class AbstractDialogDirective<R = unknown, D = unknown, T = unk
|
|
|
563
563
|
}
|
|
564
564
|
|
|
565
565
|
/**
|
|
566
|
-
*
|
|
567
|
-
*/
|
|
568
|
-
interface DbxPromptConfirmConfig {
|
|
569
|
-
readonly title?: string;
|
|
570
|
-
readonly prompt?: string;
|
|
571
|
-
readonly confirmText?: string;
|
|
572
|
-
readonly cancelText?: string;
|
|
573
|
-
}
|
|
574
|
-
/**
|
|
575
|
-
* Renders a confirmation prompt with customizable title, message, confirm, and cancel buttons.
|
|
566
|
+
* Calculates and applies a dynamic height to a Material expansion panel header based on text content.
|
|
576
567
|
*
|
|
577
|
-
*
|
|
578
|
-
*
|
|
579
|
-
*
|
|
580
|
-
* @dbxWebRelated prompt, action-confirm
|
|
581
|
-
* @dbxWebSkillRefs dbx__ref__dbx-app-structure
|
|
582
|
-
* @dbxWebMinimalExample ```html
|
|
583
|
-
* <dbx-prompt-confirm [config]="cfg"></dbx-prompt-confirm>
|
|
584
|
-
* ```
|
|
568
|
+
* Sets the `--mat-expansion-header-collapsed-state-height` and `--mat-expansion-header-expanded-state-height`
|
|
569
|
+
* CSS custom properties. On small screens, the estimated line count is scaled up to account for text wrapping.
|
|
570
|
+
* If the calculated height is zero or nullish, no style override is applied.
|
|
585
571
|
*
|
|
586
572
|
* @example
|
|
587
573
|
* ```html
|
|
588
|
-
* <
|
|
574
|
+
* <mat-expansion-panel [dbxAccordionHeaderHeight]="64" [heightText]="item.description" [maxHeaderHeight]="120">
|
|
575
|
+
* <mat-expansion-panel-header>
|
|
576
|
+
* {{ item.title }}
|
|
577
|
+
* </mat-expansion-panel-header>
|
|
578
|
+
* <p>Panel content</p>
|
|
579
|
+
* </mat-expansion-panel>
|
|
589
580
|
* ```
|
|
590
581
|
*/
|
|
591
|
-
declare class
|
|
592
|
-
readonly
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
readonly
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
582
|
+
declare class DbxAccordionHeaderHeightDirective {
|
|
583
|
+
private readonly _screenMediaService;
|
|
584
|
+
/**
|
|
585
|
+
* The base height of the header.
|
|
586
|
+
*/
|
|
587
|
+
readonly dbxAccordionHeaderHeight: _angular_core.InputSignal<Maybe<number>>;
|
|
588
|
+
/**
|
|
589
|
+
* The amount of height to add to the header when expanded.
|
|
590
|
+
*/
|
|
591
|
+
readonly expandedHeightIncrease: _angular_core.InputSignal<Maybe<number>>;
|
|
592
|
+
/**
|
|
593
|
+
* The maximum allowed height of the header.
|
|
594
|
+
*/
|
|
595
|
+
readonly maxHeaderHeight: _angular_core.InputSignal<Maybe<number>>;
|
|
596
|
+
/**
|
|
597
|
+
* Text used to help determine the height of the header.
|
|
598
|
+
*
|
|
599
|
+
* Height will stay static to the given header height when this is not set.
|
|
600
|
+
*
|
|
601
|
+
* Ignored if heightTextLines is set.
|
|
602
|
+
*/
|
|
603
|
+
readonly heightText: _angular_core.InputSignal<Maybe<string>>;
|
|
604
|
+
/**
|
|
605
|
+
* The number of characters used for calculating a line.
|
|
606
|
+
*/
|
|
607
|
+
readonly heightTextLineLength: _angular_core.InputSignal<number>;
|
|
608
|
+
/**
|
|
609
|
+
* Number of lines of text to use for the height calculation.
|
|
610
|
+
*/
|
|
611
|
+
readonly heightTextLines: _angular_core.InputSignal<Maybe<number>>;
|
|
612
|
+
/**
|
|
613
|
+
* The amount of height to add for every line of text.
|
|
614
|
+
*/
|
|
615
|
+
readonly heightTextLineHeight: _angular_core.InputSignal<number>;
|
|
616
|
+
/**
|
|
617
|
+
* Multiplier to apply to the height on small screens.
|
|
618
|
+
*/
|
|
619
|
+
readonly heightTextSmallScreenMultiplier: _angular_core.InputSignal<Maybe<number>>;
|
|
620
|
+
readonly widthTypeSignal: _angular_core.Signal<_dereekb_dbx_web.ScreenMediaWidthType | undefined>;
|
|
621
|
+
readonly expansionPanelHeightSignal: _angular_core.Signal<Maybe<number>>;
|
|
622
|
+
readonly expansionPanelStyleSignal: _angular_core.Signal<Maybe<Record<string, string>>>;
|
|
623
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxAccordionHeaderHeightDirective, never>;
|
|
624
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxAccordionHeaderHeightDirective, "[dbxAccordionHeaderHeight]", never, { "dbxAccordionHeaderHeight": { "alias": "dbxAccordionHeaderHeight"; "required": false; "isSignal": true; }; "expandedHeightIncrease": { "alias": "expandedHeightIncrease"; "required": false; "isSignal": true; }; "maxHeaderHeight": { "alias": "maxHeaderHeight"; "required": false; "isSignal": true; }; "heightText": { "alias": "heightText"; "required": false; "isSignal": true; }; "heightTextLineLength": { "alias": "heightTextLineLength"; "required": false; "isSignal": true; }; "heightTextLines": { "alias": "heightTextLines"; "required": false; "isSignal": true; }; "heightTextLineHeight": { "alias": "heightTextLineHeight"; "required": false; "isSignal": true; }; "heightTextSmallScreenMultiplier": { "alias": "heightTextSmallScreenMultiplier"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
601
625
|
}
|
|
602
626
|
|
|
603
627
|
/**
|
|
604
|
-
*
|
|
628
|
+
* An kebab-case style name that uniquely identifies a styling for an app.
|
|
605
629
|
*
|
|
606
|
-
*
|
|
607
|
-
* - `'stay'` - The user chose to stay on the current page.
|
|
608
|
-
* - `'discard'` - The user chose to discard changes and allow the transition.
|
|
609
|
-
* - `'none'` - The dialog was closed programmatically without a user decision.
|
|
630
|
+
* Examples: 'doc-app'
|
|
610
631
|
*/
|
|
611
|
-
type
|
|
632
|
+
type DbxStyleName = string;
|
|
612
633
|
/**
|
|
613
|
-
*
|
|
614
|
-
*
|
|
615
|
-
*
|
|
634
|
+
* A suffix that can be added to a style class to differentiate a separate mode.
|
|
635
|
+
*
|
|
636
|
+
* Dark mode is an example, with the suffix 'dark' or '-dark'. The suffix does not have to
|
|
616
637
|
*/
|
|
617
|
-
|
|
618
|
-
readonly config: DbxPromptConfirmConfig;
|
|
619
|
-
confirm(): void;
|
|
620
|
-
cancel(): void;
|
|
621
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionUIRouterTransitionSafetyDialogComponent, never>;
|
|
622
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxActionUIRouterTransitionSafetyDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
623
|
-
}
|
|
624
|
-
|
|
638
|
+
type DbxStyleClassSuffix = DbxStyleClassCleanSuffix | DbxStyleClassDashSuffix;
|
|
625
639
|
/**
|
|
626
|
-
*
|
|
640
|
+
* A DbxStyleClassSuffix that does not start with a dash.
|
|
627
641
|
*
|
|
628
|
-
*
|
|
629
|
-
* - `'dialog'` - Always show a confirmation dialog and act based on the user's choice.
|
|
630
|
-
* - `'auto'` - Attempt to auto-trigger the action if possible. If modified but not triggerable, fall back to showing a dialog. Best used with an auto-save mechanism.
|
|
642
|
+
* Dark mode is an example, with the suffix 'dark'.
|
|
631
643
|
*/
|
|
632
|
-
type
|
|
644
|
+
type DbxStyleClassCleanSuffix = CharacterPrefixSuffixCleanString;
|
|
633
645
|
/**
|
|
634
|
-
*
|
|
635
|
-
* configured safety type, it can auto-trigger the action, show a confirmation dialog,
|
|
636
|
-
* or allow the transition without intervention.
|
|
637
|
-
*
|
|
638
|
-
* NOTE: This directive only works with UI-Router (not Angular Router).
|
|
639
|
-
*
|
|
640
|
-
* @dbxWebComponent
|
|
641
|
-
* @dbxWebSlug action-transition-safety
|
|
642
|
-
* @dbxWebCategory action
|
|
643
|
-
* @dbxWebRelated action-confirm
|
|
644
|
-
* @dbxWebSkillRefs dbx__ref__dbx-component-patterns
|
|
645
|
-
* @dbxWebMinimalExample ```html
|
|
646
|
-
* <form [dbxActionTransitionSafety]></form>
|
|
647
|
-
* ```
|
|
646
|
+
* A DbxStyleClassSuffix that starts with a dash.
|
|
648
647
|
*
|
|
649
|
-
*
|
|
650
|
-
* ```html
|
|
651
|
-
* <form [dbxAction]="formAction" dbxActionTransitionSafety>...</form>
|
|
652
|
-
* ```
|
|
648
|
+
* Dark mode is an example, with the suffix '-dark'.
|
|
653
649
|
*/
|
|
654
|
-
|
|
655
|
-
protected readonly _safetyType: BehaviorSubject<Maybe<DbxActionTransitionSafetyType>>;
|
|
656
|
-
readonly dbxActionTransitionSafety: _angular_core.InputSignal<DbxActionTransitionSafetyType | undefined>;
|
|
657
|
-
protected readonly transitionService: TransitionService;
|
|
658
|
-
protected readonly viewContainerRef: ViewContainerRef;
|
|
659
|
-
protected readonly dialog: MatDialog;
|
|
660
|
-
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
661
|
-
readonly safetyType$: Observable<"none" | "auto" | "dialog">;
|
|
662
|
-
protected readonly _dbxActionTransitionSafetyUpdateEffect: _angular_core.EffectRef;
|
|
663
|
-
private _currentDialogRef?;
|
|
664
|
-
private stopWatchingTransition?;
|
|
665
|
-
private checkIsDestroyed;
|
|
666
|
-
ngOnInit(): void;
|
|
667
|
-
ngOnDestroy(): void;
|
|
668
|
-
protected _handleOnBeforeTransition(transition: Transition): HookResult;
|
|
669
|
-
protected _handleIsModifiedState(transition: Transition, safetyType: DbxActionTransitionSafetyType): Observable<HookResult>;
|
|
670
|
-
private _autoTrigger;
|
|
671
|
-
private _showDialog;
|
|
672
|
-
private _closeDialog;
|
|
673
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionTransitionSafetyDirective<any, any>, never>;
|
|
674
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxActionTransitionSafetyDirective<any, any>, "[dbxActionTransitionSafety]", never, { "dbxActionTransitionSafety": { "alias": "dbxActionTransitionSafety"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
675
|
-
}
|
|
676
|
-
|
|
650
|
+
type DbxStyleClassDashSuffix = DashPrefixString;
|
|
677
651
|
/**
|
|
678
|
-
*
|
|
652
|
+
* Strips a leading dash from a style class suffix string, producing a clean suffix.
|
|
679
653
|
*/
|
|
680
|
-
declare
|
|
681
|
-
|
|
682
|
-
|
|
654
|
+
declare const dbxStyleClassCleanSuffix: {
|
|
655
|
+
<T extends string>(input: T | `-${T}` | `${T}`): T;
|
|
656
|
+
(input: string): string;
|
|
657
|
+
};
|
|
683
658
|
/**
|
|
684
|
-
*
|
|
685
|
-
*
|
|
686
|
-
* @param sourceType - The concrete class that implements {@link DbxPromptConfirm}
|
|
687
|
-
* @returns The providers that register the given type as the {@link DbxPromptConfirm} implementation.
|
|
688
|
-
*
|
|
689
|
-
* @Directive ({ providers: provideDbxPromptConfirm(MyConfirmDirective) })
|
|
690
|
-
* ```
|
|
659
|
+
* A style class that is a combination of a style name and a suffix.
|
|
691
660
|
*
|
|
692
|
-
*
|
|
693
|
-
*
|
|
661
|
+
* Examples:
|
|
662
|
+
* - 'doc-app': the default style of an app
|
|
663
|
+
* - 'doc-app-dark': the dark mode style of an app
|
|
694
664
|
*/
|
|
695
|
-
|
|
696
|
-
|
|
665
|
+
type DbxStyleClass = string | `${DbxStyleName}${DbxStyleClassSuffix}`;
|
|
697
666
|
/**
|
|
698
|
-
*
|
|
699
|
-
*
|
|
700
|
-
* Subclasses provide the default dialog configuration.
|
|
667
|
+
* The standard suffix used for dark mode styling.
|
|
701
668
|
*/
|
|
702
|
-
declare
|
|
703
|
-
protected readonly matDialog: MatDialog;
|
|
704
|
-
private _currentDialogRef?;
|
|
705
|
-
private _currentDialogPromise?;
|
|
706
|
-
protected abstract getDefaultDialogConfig(): Maybe<DbxPromptConfirmConfig>;
|
|
707
|
-
showDialog(): Observable<boolean>;
|
|
708
|
-
protected showDialogWithConfig(config: Maybe<DbxPromptConfirmConfig>): Observable<boolean>;
|
|
709
|
-
protected _handleDialogResult(result: boolean): boolean;
|
|
710
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractPromptConfirmDirective, never>;
|
|
711
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractPromptConfirmDirective, never, never, {}, {}, never, never, true, never>;
|
|
712
|
-
}
|
|
669
|
+
declare const DBX_DARK_STYLE_CLASS_SUFFIX: DbxStyleClassSuffix;
|
|
713
670
|
/**
|
|
714
|
-
*
|
|
715
|
-
*
|
|
716
|
-
* @example
|
|
717
|
-
* ```html
|
|
718
|
-
* <button [dbxPromptConfirm]="{ title: 'Delete?', confirmText: 'Yes' }" dbxPromptConfirmButton>Delete</button>
|
|
719
|
-
* ```
|
|
671
|
+
* Configuration for an application's style, including the root style class and allowed suffixes for variant modes (e.g., dark mode).
|
|
720
672
|
*/
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
673
|
+
interface DbxStyleConfig {
|
|
674
|
+
/**
|
|
675
|
+
* Root style class name.
|
|
676
|
+
*/
|
|
677
|
+
readonly style: DbxStyleClass;
|
|
678
|
+
/**
|
|
679
|
+
* Set of all allowed DbxStyleClassSuffixes for the DbxStyleClass in the config, if applicable.
|
|
680
|
+
*/
|
|
681
|
+
readonly suffixes?: Set<DbxStyleClassSuffix>;
|
|
726
682
|
}
|
|
727
|
-
|
|
728
683
|
/**
|
|
729
|
-
*
|
|
730
|
-
*
|
|
684
|
+
* Supplemental classes / inline styles (CSS custom properties) applied on top of the configured global style.
|
|
685
|
+
*
|
|
686
|
+
* Used by `DbxStyleService` to layer additional styling onto `document.body` (via `DbxStyleBodyDirective`) without
|
|
687
|
+
* replacing the configured root style class — e.g. the style-demo controls forward their active levers here so they
|
|
688
|
+
* repaint the entire app.
|
|
731
689
|
*/
|
|
732
|
-
interface
|
|
690
|
+
interface DbxStyleSupplement {
|
|
733
691
|
/**
|
|
734
|
-
*
|
|
692
|
+
* Supplemental classes added alongside the configured root style class.
|
|
735
693
|
*/
|
|
736
|
-
readonly
|
|
694
|
+
readonly classes?: Maybe<CssClass[]>;
|
|
737
695
|
/**
|
|
738
|
-
*
|
|
739
|
-
*
|
|
740
|
-
* Useful for actions that need no confirmation but are rendered by the same template as actions that do,
|
|
741
|
-
* and for passing a readyValue through without prompting.
|
|
742
|
-
*
|
|
743
|
-
* Defaults to false.
|
|
696
|
+
* Supplemental inline styles (typically CSS custom properties such as `--mat-sys-*`).
|
|
744
697
|
*/
|
|
745
|
-
readonly
|
|
698
|
+
readonly style?: Maybe<CssStyleObject>;
|
|
746
699
|
}
|
|
747
700
|
/**
|
|
748
|
-
*
|
|
749
|
-
* the configured ready value is passed to the action. If the user cancels, the action is rejected.
|
|
750
|
-
*
|
|
751
|
-
* A config with `autoConfirm` true shows no dialog and marks the action ready immediately. This lets a
|
|
752
|
-
* template bind the same input for actions that need confirmation and actions that do not.
|
|
753
|
-
*
|
|
754
|
-
* This directive works with action triggering only, not button clicks.
|
|
755
|
-
* For button-based confirmation, use an appPromptConfirmButton directive instead.
|
|
756
|
-
*
|
|
757
|
-
* @dbxWebComponent
|
|
758
|
-
* @dbxWebSlug action-confirm
|
|
759
|
-
* @dbxWebCategory action
|
|
760
|
-
* @dbxWebRelated action-snackbar, prompt-confirm
|
|
761
|
-
* @dbxWebSkillRefs dbx__ref__dbx-component-patterns
|
|
762
|
-
* @dbxWebMinimalExample ```html
|
|
763
|
-
* <div [dbxActionConfirm]="cfg"></div>
|
|
764
|
-
* ```
|
|
765
|
-
*
|
|
766
|
-
* @example
|
|
767
|
-
* ```html
|
|
768
|
-
* <button [dbxAction]="deleteAction" [dbxActionConfirm]="{ header: 'Delete account?', confirmText: 'Delete' }">Delete</button>
|
|
769
|
-
* ```
|
|
770
|
-
*/
|
|
771
|
-
declare class DbxActionConfirmDirective<T = unknown, O = unknown> extends AbstractPromptConfirmDirective {
|
|
772
|
-
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
773
|
-
readonly dbxActionConfirm: _angular_core.InputSignalWithTransform<Maybe<DbxActionConfirmConfig<T>>, Maybe<"" | DbxActionConfirmConfig<T>>>;
|
|
774
|
-
/**
|
|
775
|
-
* When true, the confirmation dialog is disabled and the action proceeds without prompting.
|
|
776
|
-
*/
|
|
777
|
-
readonly dbxActionConfirmSkip: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
778
|
-
constructor();
|
|
779
|
-
protected getDefaultDialogConfig(): Maybe<DbxPromptConfirmConfig>;
|
|
780
|
-
protected _handleDialogResult(result: boolean): boolean;
|
|
781
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionConfirmDirective<any, any>, never>;
|
|
782
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxActionConfirmDirective<any, any>, "[dbxActionConfirm]", never, { "dbxActionConfirm": { "alias": "dbxActionConfirm"; "required": false; "isSignal": true; }; "dbxActionConfirmSkip": { "alias": "dbxActionConfirmSkip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
/**
|
|
786
|
-
* Triggers the parent action context when a specific keyboard key is released.
|
|
787
|
-
* Defaults to the "enter" key. Key names should be lowercase.
|
|
788
|
-
*
|
|
789
|
-
* @dbxWebComponent
|
|
790
|
-
* @dbxWebSlug action-key-trigger
|
|
791
|
-
* @dbxWebCategory action
|
|
792
|
-
* @dbxWebRelated action-confirm, action-snackbar
|
|
793
|
-
* @dbxWebSkillRefs dbx__ref__dbx-component-patterns
|
|
794
|
-
* @dbxWebMinimalExample ```html
|
|
795
|
-
* <div [dbxActionKeyTrigger]="'enter'"></div>
|
|
796
|
-
* ```
|
|
797
|
-
*
|
|
798
|
-
* @example
|
|
799
|
-
* ```html
|
|
800
|
-
* <form [dbxAction]="saveAction" [dbxActionKeyTrigger]="'cmd+s'">...</form>
|
|
801
|
-
* ```
|
|
802
|
-
*/
|
|
803
|
-
declare class DbxActionKeyTriggerDirective<T = unknown, O = unknown> {
|
|
804
|
-
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
805
|
-
readonly key: _angular_core.InputSignalWithTransform<string, Maybe<string>>;
|
|
806
|
-
onKeyupHandler(event: KeyboardEvent): void;
|
|
807
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionKeyTriggerDirective<any, any>, never>;
|
|
808
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxActionKeyTriggerDirective<any, any>, "[dbxActionKeyTrigger]", never, { "key": { "alias": "dbxActionKeyTrigger"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
/**
|
|
812
|
-
* Convenience module that bundles all base dbxAction-related directives from
|
|
813
|
-
* both @dereekb/dbx-core and @dereekb/dbx-web, including key triggers and confirmation dialogs.
|
|
814
|
-
*/
|
|
815
|
-
declare class DbxActionModule {
|
|
816
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionModule, never>;
|
|
817
|
-
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxActionModule, never, [typeof _dereekb_dbx_core.DbxCoreActionModule, typeof _dereekb_dbx_core.DbxActionButtonDirective, typeof DbxActionKeyTriggerDirective, typeof DbxActionConfirmDirective], [typeof _dereekb_dbx_core.DbxCoreActionModule, typeof _dereekb_dbx_core.DbxActionButtonDirective, typeof DbxActionKeyTriggerDirective, typeof DbxActionConfirmDirective]>;
|
|
818
|
-
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxActionModule>;
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
/**
|
|
822
|
-
* Lightweight button that renders as either an icon-only Material icon button or a text button
|
|
823
|
-
* with an icon prefix, depending on whether text is provided.
|
|
824
|
-
*
|
|
825
|
-
* @dbxWebComponent
|
|
826
|
-
* @dbxWebSlug icon-button
|
|
827
|
-
* @dbxWebCategory button
|
|
828
|
-
* @dbxWebRelated button
|
|
829
|
-
* @dbxWebSkillRefs dbx__migration__migrate-dbx-icon-button
|
|
830
|
-
* @dbxWebMinimalExample ```html
|
|
831
|
-
* <dbx-icon-button icon="add"></dbx-icon-button>
|
|
832
|
-
* ```
|
|
833
|
-
*
|
|
834
|
-
* @example
|
|
835
|
-
* ```html
|
|
836
|
-
* <dbx-icon-button icon="delete" color="warn" [dbxAction]="deleteAction"></dbx-icon-button>
|
|
837
|
-
* ```
|
|
838
|
-
*/
|
|
839
|
-
declare class DbxIconButtonComponent extends AbstractDbxButtonDirective {
|
|
840
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxIconButtonComponent, never>;
|
|
841
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxIconButtonComponent, "dbx-icon-button", never, {}, {}, never, ["*"], true, never>;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
/**
|
|
845
|
-
* An kebab-case style name that uniquely identifies a styling for an app.
|
|
846
|
-
*
|
|
847
|
-
* Examples: 'doc-app'
|
|
848
|
-
*/
|
|
849
|
-
type DbxStyleName = string;
|
|
850
|
-
/**
|
|
851
|
-
* A suffix that can be added to a style class to differentiate a separate mode.
|
|
852
|
-
*
|
|
853
|
-
* Dark mode is an example, with the suffix 'dark' or '-dark'. The suffix does not have to
|
|
854
|
-
*/
|
|
855
|
-
type DbxStyleClassSuffix = DbxStyleClassCleanSuffix | DbxStyleClassDashSuffix;
|
|
856
|
-
/**
|
|
857
|
-
* A DbxStyleClassSuffix that does not start with a dash.
|
|
858
|
-
*
|
|
859
|
-
* Dark mode is an example, with the suffix 'dark'.
|
|
860
|
-
*/
|
|
861
|
-
type DbxStyleClassCleanSuffix = CharacterPrefixSuffixCleanString;
|
|
862
|
-
/**
|
|
863
|
-
* A DbxStyleClassSuffix that starts with a dash.
|
|
864
|
-
*
|
|
865
|
-
* Dark mode is an example, with the suffix '-dark'.
|
|
866
|
-
*/
|
|
867
|
-
type DbxStyleClassDashSuffix = DashPrefixString;
|
|
868
|
-
/**
|
|
869
|
-
* Strips a leading dash from a style class suffix string, producing a clean suffix.
|
|
870
|
-
*/
|
|
871
|
-
declare const dbxStyleClassCleanSuffix: {
|
|
872
|
-
<T extends string>(input: T | `-${T}` | `${T}`): T;
|
|
873
|
-
(input: string): string;
|
|
874
|
-
};
|
|
875
|
-
/**
|
|
876
|
-
* A style class that is a combination of a style name and a suffix.
|
|
877
|
-
*
|
|
878
|
-
* Examples:
|
|
879
|
-
* - 'doc-app': the default style of an app
|
|
880
|
-
* - 'doc-app-dark': the dark mode style of an app
|
|
881
|
-
*/
|
|
882
|
-
type DbxStyleClass = string | `${DbxStyleName}${DbxStyleClassSuffix}`;
|
|
883
|
-
/**
|
|
884
|
-
* The standard suffix used for dark mode styling.
|
|
885
|
-
*/
|
|
886
|
-
declare const DBX_DARK_STYLE_CLASS_SUFFIX: DbxStyleClassSuffix;
|
|
887
|
-
/**
|
|
888
|
-
* Configuration for an application's style, including the root style class and allowed suffixes for variant modes (e.g., dark mode).
|
|
889
|
-
*/
|
|
890
|
-
interface DbxStyleConfig {
|
|
891
|
-
/**
|
|
892
|
-
* Root style class name.
|
|
893
|
-
*/
|
|
894
|
-
readonly style: DbxStyleClass;
|
|
895
|
-
/**
|
|
896
|
-
* Set of all allowed DbxStyleClassSuffixes for the DbxStyleClass in the config, if applicable.
|
|
897
|
-
*/
|
|
898
|
-
readonly suffixes?: Set<DbxStyleClassSuffix>;
|
|
899
|
-
}
|
|
900
|
-
/**
|
|
901
|
-
* Supplemental classes / inline styles (CSS custom properties) applied on top of the configured global style.
|
|
902
|
-
*
|
|
903
|
-
* Used by `DbxStyleService` to layer additional styling onto `document.body` (via `DbxStyleBodyDirective`) without
|
|
904
|
-
* replacing the configured root style class — e.g. the style-demo controls forward their active levers here so they
|
|
905
|
-
* repaint the entire app.
|
|
906
|
-
*/
|
|
907
|
-
interface DbxStyleSupplement {
|
|
908
|
-
/**
|
|
909
|
-
* Supplemental classes added alongside the configured root style class.
|
|
910
|
-
*/
|
|
911
|
-
readonly classes?: Maybe<CssClass[]>;
|
|
912
|
-
/**
|
|
913
|
-
* Supplemental inline styles (typically CSS custom properties such as `--mat-sys-*`).
|
|
914
|
-
*/
|
|
915
|
-
readonly style?: Maybe<CssStyleObject>;
|
|
916
|
-
}
|
|
917
|
-
/**
|
|
918
|
-
* Flattened body application: the root style class plus any supplement classes, alongside the supplement inline styles.
|
|
701
|
+
* Flattened body application: the root style class plus any supplement classes, alongside the supplement inline styles.
|
|
919
702
|
*
|
|
920
703
|
* Emitted by `DbxStyleService.styleApplication$` and consumed by `DbxStyleBodyDirective` to apply both classes and
|
|
921
704
|
* inline custom properties to `document.body`.
|
|
@@ -1163,68 +946,6 @@ declare function dbxThemeColorCssToken(color: Maybe<DbxThemeColor>, returnDefaul
|
|
|
1163
946
|
declare function dbxThemeColorCssTokenVar(color: Maybe<DbxThemeColor>, returnDefault: true): CssTokenVar;
|
|
1164
947
|
declare function dbxThemeColorCssTokenVar(color: Maybe<DbxThemeColor>, returnDefault?: Maybe<boolean>): Maybe<CssTokenVar>;
|
|
1165
948
|
|
|
1166
|
-
/**
|
|
1167
|
-
* Calculates and applies a dynamic height to a Material expansion panel header based on text content.
|
|
1168
|
-
*
|
|
1169
|
-
* Sets the `--mat-expansion-header-collapsed-state-height` and `--mat-expansion-header-expanded-state-height`
|
|
1170
|
-
* CSS custom properties. On small screens, the estimated line count is scaled up to account for text wrapping.
|
|
1171
|
-
* If the calculated height is zero or nullish, no style override is applied.
|
|
1172
|
-
*
|
|
1173
|
-
* @example
|
|
1174
|
-
* ```html
|
|
1175
|
-
* <mat-expansion-panel [dbxAccordionHeaderHeight]="64" [heightText]="item.description" [maxHeaderHeight]="120">
|
|
1176
|
-
* <mat-expansion-panel-header>
|
|
1177
|
-
* {{ item.title }}
|
|
1178
|
-
* </mat-expansion-panel-header>
|
|
1179
|
-
* <p>Panel content</p>
|
|
1180
|
-
* </mat-expansion-panel>
|
|
1181
|
-
* ```
|
|
1182
|
-
*/
|
|
1183
|
-
declare class DbxAccordionHeaderHeightDirective {
|
|
1184
|
-
private readonly _screenMediaService;
|
|
1185
|
-
/**
|
|
1186
|
-
* The base height of the header.
|
|
1187
|
-
*/
|
|
1188
|
-
readonly dbxAccordionHeaderHeight: _angular_core.InputSignal<Maybe<number>>;
|
|
1189
|
-
/**
|
|
1190
|
-
* The amount of height to add to the header when expanded.
|
|
1191
|
-
*/
|
|
1192
|
-
readonly expandedHeightIncrease: _angular_core.InputSignal<Maybe<number>>;
|
|
1193
|
-
/**
|
|
1194
|
-
* The maximum allowed height of the header.
|
|
1195
|
-
*/
|
|
1196
|
-
readonly maxHeaderHeight: _angular_core.InputSignal<Maybe<number>>;
|
|
1197
|
-
/**
|
|
1198
|
-
* Text used to help determine the height of the header.
|
|
1199
|
-
*
|
|
1200
|
-
* Height will stay static to the given header height when this is not set.
|
|
1201
|
-
*
|
|
1202
|
-
* Ignored if heightTextLines is set.
|
|
1203
|
-
*/
|
|
1204
|
-
readonly heightText: _angular_core.InputSignal<Maybe<string>>;
|
|
1205
|
-
/**
|
|
1206
|
-
* The number of characters used for calculating a line.
|
|
1207
|
-
*/
|
|
1208
|
-
readonly heightTextLineLength: _angular_core.InputSignal<number>;
|
|
1209
|
-
/**
|
|
1210
|
-
* Number of lines of text to use for the height calculation.
|
|
1211
|
-
*/
|
|
1212
|
-
readonly heightTextLines: _angular_core.InputSignal<Maybe<number>>;
|
|
1213
|
-
/**
|
|
1214
|
-
* The amount of height to add for every line of text.
|
|
1215
|
-
*/
|
|
1216
|
-
readonly heightTextLineHeight: _angular_core.InputSignal<number>;
|
|
1217
|
-
/**
|
|
1218
|
-
* Multiplier to apply to the height on small screens.
|
|
1219
|
-
*/
|
|
1220
|
-
readonly heightTextSmallScreenMultiplier: _angular_core.InputSignal<Maybe<number>>;
|
|
1221
|
-
readonly widthTypeSignal: _angular_core.Signal<_dereekb_dbx_web.ScreenMediaWidthType | undefined>;
|
|
1222
|
-
readonly expansionPanelHeightSignal: _angular_core.Signal<Maybe<number>>;
|
|
1223
|
-
readonly expansionPanelStyleSignal: _angular_core.Signal<Maybe<Record<string, string>>>;
|
|
1224
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxAccordionHeaderHeightDirective, never>;
|
|
1225
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxAccordionHeaderHeightDirective, "[dbxAccordionHeaderHeight]", never, { "dbxAccordionHeaderHeight": { "alias": "dbxAccordionHeaderHeight"; "required": false; "isSignal": true; }; "expandedHeightIncrease": { "alias": "expandedHeightIncrease"; "required": false; "isSignal": true; }; "maxHeaderHeight": { "alias": "maxHeaderHeight"; "required": false; "isSignal": true; }; "heightText": { "alias": "heightText"; "required": false; "isSignal": true; }; "heightTextLineLength": { "alias": "heightTextLineLength"; "required": false; "isSignal": true; }; "heightTextLines": { "alias": "heightTextLines"; "required": false; "isSignal": true; }; "heightTextLineHeight": { "alias": "heightTextLineHeight"; "required": false; "isSignal": true; }; "heightTextSmallScreenMultiplier": { "alias": "heightTextSmallScreenMultiplier"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1226
|
-
}
|
|
1227
|
-
|
|
1228
949
|
/**
|
|
1229
950
|
* Arbitrary string selector used to differentiate avatars by category or context.
|
|
1230
951
|
*/
|
|
@@ -4467,6 +4188,10 @@ declare class DbxSectionComponent extends DbxSectionHeaderComponent {
|
|
|
4467
4188
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxSectionComponent, "dbx-section", never, { "elevate": { "alias": "elevate"; "required": false; "isSignal": true; }; }, {}, never, ["[sectionHeader]", "*"], true, never>;
|
|
4468
4189
|
}
|
|
4469
4190
|
|
|
4191
|
+
/**
|
|
4192
|
+
* Default style for the intro action button.
|
|
4193
|
+
*/
|
|
4194
|
+
declare const DEFAULT_INTRO_ACTION_SECTION_BUTTON_STYLE: DbxButtonStyle;
|
|
4470
4195
|
/**
|
|
4471
4196
|
* Displays an introductory message with a call-to-action button. When the button is clicked,
|
|
4472
4197
|
* the intro is replaced by the projected content. Useful for onboarding or first-time-use flows.
|
|
@@ -4495,10 +4220,18 @@ declare class DbxIntroActionSectionComponent {
|
|
|
4495
4220
|
readonly hint: _angular_core.InputSignal<Maybe<string>>;
|
|
4496
4221
|
readonly showIntro: _angular_core.InputSignal<Maybe<boolean>>;
|
|
4497
4222
|
readonly action: _angular_core.InputSignal<Maybe<string>>;
|
|
4223
|
+
/**
|
|
4224
|
+
* (Optional) Style for the action button.
|
|
4225
|
+
*
|
|
4226
|
+
* Defaults to {@link DEFAULT_INTRO_ACTION_SECTION_BUTTON_STYLE}. Set a `color` here to paint the button with an
|
|
4227
|
+
* arbitrary {@link DbxColorInput} (including a registered color template) rather than the default accent palette.
|
|
4228
|
+
*/
|
|
4229
|
+
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
4230
|
+
readonly buttonStyleSignal: _angular_core.Signal<DbxButtonStyle>;
|
|
4498
4231
|
readonly showAction: _angular_core.OutputEmitterRef<void>;
|
|
4499
4232
|
actionClicked(): void;
|
|
4500
4233
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxIntroActionSectionComponent, never>;
|
|
4501
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxIntroActionSectionComponent, "dbx-intro-action-section", never, { "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "showIntro": { "alias": "showIntro"; "required": false; "isSignal": true; }; "action": { "alias": "action"; "required": false; "isSignal": true; }; }, { "showAction": "showAction"; }, never, ["[info]", "*"], true, never>;
|
|
4234
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxIntroActionSectionComponent, "dbx-intro-action-section", never, { "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "showIntro": { "alias": "showIntro"; "required": false; "isSignal": true; }; "action": { "alias": "action"; "required": false; "isSignal": true; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; "isSignal": true; }; }, { "showAction": "showAction"; }, never, ["[info]", "*"], true, never>;
|
|
4502
4235
|
}
|
|
4503
4236
|
|
|
4504
4237
|
/**
|
|
@@ -5139,7 +4872,7 @@ declare class DbxStepBlockComponent {
|
|
|
5139
4872
|
readonly iconSignal: _angular_core.Signal<Maybe<string>>;
|
|
5140
4873
|
readonly headerSignal: _angular_core.Signal<Maybe<string>>;
|
|
5141
4874
|
readonly hintSignal: _angular_core.Signal<Maybe<string>>;
|
|
5142
|
-
readonly colorSignal: _angular_core.Signal<"" | "
|
|
4875
|
+
readonly colorSignal: _angular_core.Signal<"" | "accent" | "primary" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | _dereekb_dbx_web.DbxColorConfig>;
|
|
5143
4876
|
readonly centerSignal: _angular_core.Signal<boolean>;
|
|
5144
4877
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxStepBlockComponent, never>;
|
|
5145
4878
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxStepBlockComponent, "dbx-step-block", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "center": { "alias": "center"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "*"], true, never>;
|
|
@@ -5732,157 +5465,459 @@ declare class DbxClickToCopyTextDirective extends AbstractDbxClipboardDirective
|
|
|
5732
5465
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxClickToCopyTextDirective, never>;
|
|
5733
5466
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxClickToCopyTextDirective, "[dbxClickToCopyText]", never, { "copyTextFromElement": { "alias": "copyTextFromElement"; "required": false; "isSignal": true; }; "copyText": { "alias": "dbxClickToCopyText"; "required": false; "isSignal": true; }; "disableCopy": { "alias": "disableCopy"; "required": false; "isSignal": true; }; "highlighted": { "alias": "highlighted"; "required": false; "isSignal": true; }; }, { "copyTextFromElement": "copyTextFromElementChange"; }, never, never, true, never>;
|
|
5734
5467
|
}
|
|
5735
|
-
|
|
5468
|
+
|
|
5469
|
+
/**
|
|
5470
|
+
* Disables the browser right-click context menu on the CDK overlay container element.
|
|
5471
|
+
*
|
|
5472
|
+
* Useful for preventing the default context menu from appearing over dialogs or popups.
|
|
5473
|
+
*
|
|
5474
|
+
* @param classes - CSS class name of the overlay container element to target. Defaults to `'cdk-overlay-container'`.
|
|
5475
|
+
* @param onEvent - Optional callback invoked on each suppressed right-click event.
|
|
5476
|
+
* @returns A cleanup function that removes the event listener.
|
|
5477
|
+
*
|
|
5478
|
+
* @example
|
|
5479
|
+
* ```ts
|
|
5480
|
+
* const cleanup = disableRightClickInCdkBackdrop();
|
|
5481
|
+
* // later, to re-enable:
|
|
5482
|
+
* cleanup();
|
|
5483
|
+
* ```
|
|
5484
|
+
*/
|
|
5485
|
+
declare function disableRightClickInCdkBackdrop(classes?: string, onEvent?: (event: MouseEvent) => void): DestroyFunction;
|
|
5486
|
+
|
|
5487
|
+
/**
|
|
5488
|
+
* Configuration for {@link overrideClickElementEffect} specifying the click target
|
|
5489
|
+
* and the child element whose clicks should be intercepted.
|
|
5490
|
+
*/
|
|
5491
|
+
interface OverrideClickElementEffectConfig {
|
|
5492
|
+
/**
|
|
5493
|
+
* Target to transfer "click" events to.
|
|
5494
|
+
*/
|
|
5495
|
+
readonly clickTarget?: Maybe<Signal<Maybe<ElementRef<HTMLElement>>>>;
|
|
5496
|
+
/**
|
|
5497
|
+
* The child target to watch and override clicks for.
|
|
5498
|
+
*/
|
|
5499
|
+
readonly childClickTarget: Signal<Maybe<ElementRef<HTMLElement>>>;
|
|
5500
|
+
/**
|
|
5501
|
+
* Optional signal to disable the clicking override.
|
|
5502
|
+
*/
|
|
5503
|
+
readonly disabledSignal?: Maybe<Signal<boolean>>;
|
|
5504
|
+
}
|
|
5505
|
+
/**
|
|
5506
|
+
* Creates an Angular effect that intercepts clicks on a child element and redirects them
|
|
5507
|
+
* to a parent click target, while preventing the default browser navigation.
|
|
5508
|
+
*
|
|
5509
|
+
* Solves the problem where an injected element calls `event.stopPropagation()` without
|
|
5510
|
+
* `event.preventDefault()` — for example, a `dbx-button` inside a router anchor would
|
|
5511
|
+
* stop the router link from firing but still trigger the anchor's href navigation.
|
|
5512
|
+
*
|
|
5513
|
+
* Modifier clicks (ctrl, cmd, shift, middle-click) are allowed through for new tab/window behavior.
|
|
5514
|
+
*
|
|
5515
|
+
* Must be called in an Angular injection context.
|
|
5516
|
+
*
|
|
5517
|
+
* @param config - Configuration specifying the click target, child element to intercept, and optional disabled signal.
|
|
5518
|
+
* @returns The created Angular effect reference.
|
|
5519
|
+
*
|
|
5520
|
+
* @example
|
|
5521
|
+
* ```ts
|
|
5522
|
+
* overrideClickElementEffect({
|
|
5523
|
+
* clickTarget: this.anchorElementRef,
|
|
5524
|
+
* childClickTarget: this.buttonElementRef
|
|
5525
|
+
* });
|
|
5526
|
+
* ```
|
|
5527
|
+
*/
|
|
5528
|
+
declare function overrideClickElementEffect(config: OverrideClickElementEffectConfig): _angular_core.EffectRef;
|
|
5529
|
+
|
|
5530
|
+
/**
|
|
5531
|
+
* Wraps projected content with click-to-copy functionality and a copy icon button.
|
|
5532
|
+
*
|
|
5533
|
+
* Clicking the text or the icon copies the text to the clipboard and optionally shows a snackbar confirmation.
|
|
5534
|
+
*
|
|
5535
|
+
* @dbxWebComponent
|
|
5536
|
+
* @dbxWebSlug click-to-copy-text
|
|
5537
|
+
* @dbxWebCategory text
|
|
5538
|
+
* @dbxWebRelated chip
|
|
5539
|
+
* @dbxWebSkillRefs dbx__ref__dbx-ui-building-blocks
|
|
5540
|
+
* @dbxWebMinimalExample ```html
|
|
5541
|
+
* <dbx-click-to-copy-text [text]="value"></dbx-click-to-copy-text>
|
|
5542
|
+
* ```
|
|
5543
|
+
*
|
|
5544
|
+
* @example
|
|
5545
|
+
* ```html
|
|
5546
|
+
* <dbx-click-to-copy-text [text]="userId"></dbx-click-to-copy-text>
|
|
5547
|
+
* ```
|
|
5548
|
+
*/
|
|
5549
|
+
declare class DbxClickToCopyTextComponent {
|
|
5550
|
+
readonly contentElementRef: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
5551
|
+
readonly dbxClickToCopyText: _angular_core.Signal<DbxClickToCopyTextDirective | undefined>;
|
|
5552
|
+
readonly copyText: _angular_core.InputSignal<Maybe<string>>;
|
|
5553
|
+
readonly showIcon: _angular_core.InputSignal<Maybe<boolean>>;
|
|
5554
|
+
readonly highlighted: _angular_core.InputSignal<boolean>;
|
|
5555
|
+
readonly clipboardSnackbarMessagesConfig: _angular_core.InputSignal<Maybe<CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig>>;
|
|
5556
|
+
readonly clipboardSnackbarMessagesEnabled: _angular_core.InputSignal<boolean>;
|
|
5557
|
+
readonly clickToCopyIcon: _angular_core.InputSignal<string>;
|
|
5558
|
+
readonly clickIconToCopyOnly: _angular_core.InputSignal<boolean>;
|
|
5559
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxClickToCopyTextComponent, never>;
|
|
5560
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxClickToCopyTextComponent, "dbx-click-to-copy-text", never, { "copyText": { "alias": "copyText"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "highlighted": { "alias": "highlighted"; "required": false; "isSignal": true; }; "clipboardSnackbarMessagesConfig": { "alias": "clipboardSnackbarMessagesConfig"; "required": false; "isSignal": true; }; "clipboardSnackbarMessagesEnabled": { "alias": "clipboardSnackbarMessagesEnabled"; "required": false; "isSignal": true; }; "clickToCopyIcon": { "alias": "clickToCopyIcon"; "required": false; "isSignal": true; }; "clickIconToCopyOnly": { "alias": "clickIconToCopyOnly"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5561
|
+
}
|
|
5562
|
+
|
|
5563
|
+
/**
|
|
5564
|
+
* Angular module that bundles all text-related layout components and directives, including
|
|
5565
|
+
* address display, chips, detail blocks, copy-to-clipboard, linkify, and number-with-limit.
|
|
5566
|
+
*/
|
|
5567
|
+
declare class DbxTextModule {
|
|
5568
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxTextModule, never>;
|
|
5569
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxTextModule, never, [typeof DbxUnitedStatesAddressComponent, typeof DbxNumberWithLimitComponent, typeof DbxClickToCopyTextDirective, typeof DbxClickToCopyTextComponent, typeof DbxChipDirective, typeof DbxChipListComponent, typeof DbxDetailBlockComponent, typeof DbxDetailBlockHeaderComponent, typeof DbxStepBlockComponent, typeof DbxLabelBlockComponent, typeof DbxLinkifyComponent, typeof DbxTextChipsComponent, typeof DbxIconSpacerDirective], [typeof DbxUnitedStatesAddressComponent, typeof DbxNumberWithLimitComponent, typeof DbxClickToCopyTextDirective, typeof DbxClickToCopyTextComponent, typeof DbxChipDirective, typeof DbxChipListComponent, typeof DbxDetailBlockComponent, typeof DbxDetailBlockHeaderComponent, typeof DbxStepBlockComponent, typeof DbxLabelBlockComponent, typeof DbxLinkifyComponent, typeof DbxTextChipsComponent, typeof DbxIconSpacerDirective]>;
|
|
5570
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxTextModule>;
|
|
5571
|
+
}
|
|
5572
|
+
|
|
5573
|
+
/**
|
|
5574
|
+
* Material button display variant used by dbx-button components.
|
|
5575
|
+
*/
|
|
5576
|
+
type DbxButtonType = 'basic' | 'raised' | 'stroked' | 'flat' | 'tonal' | 'icon';
|
|
5577
|
+
/**
|
|
5578
|
+
* Programmatic style configuration for a dbx-button, providing fine-grained control
|
|
5579
|
+
* over button type, colors, spinner appearance, and floating action button mode.
|
|
5580
|
+
*/
|
|
5581
|
+
interface DbxButtonStyle {
|
|
5582
|
+
/**
|
|
5583
|
+
* Material button variant.
|
|
5584
|
+
*/
|
|
5585
|
+
readonly type?: Maybe<DbxButtonType>;
|
|
5586
|
+
/**
|
|
5587
|
+
* Progress spinner mode (determinate or indeterminate).
|
|
5588
|
+
*/
|
|
5589
|
+
readonly mode?: Maybe<ProgressSpinnerMode>;
|
|
5590
|
+
/**
|
|
5591
|
+
* Material theme palette, theme color, or {@link DbxColorConfig} for the button.
|
|
5592
|
+
*
|
|
5593
|
+
* Forwarded to the button host's `[dbxColor]` directive.
|
|
5594
|
+
*/
|
|
5595
|
+
readonly color?: Maybe<ThemePalette | DbxColorInput>;
|
|
5596
|
+
/**
|
|
5597
|
+
* Material theme palette or custom theme color for the loading spinner.
|
|
5598
|
+
*/
|
|
5599
|
+
readonly spinnerColor?: Maybe<ThemePalette | DbxThemeColor>;
|
|
5600
|
+
/**
|
|
5601
|
+
* Custom CSS text color for the button label.
|
|
5602
|
+
*/
|
|
5603
|
+
readonly customTextColor?: Maybe<string>;
|
|
5604
|
+
/**
|
|
5605
|
+
* Custom CSS color for the spinner stroke.
|
|
5606
|
+
*/
|
|
5607
|
+
readonly customSpinnerColor?: Maybe<string>;
|
|
5608
|
+
/**
|
|
5609
|
+
* Whether to render as a floating action button (FAB).
|
|
5610
|
+
*/
|
|
5611
|
+
readonly fab?: Maybe<boolean>;
|
|
5612
|
+
}
|
|
5613
|
+
/**
|
|
5614
|
+
* A button style and display pair.
|
|
5615
|
+
*/
|
|
5616
|
+
interface DbxButtonDisplayStylePair {
|
|
5617
|
+
readonly style?: Maybe<DbxButtonStyle>;
|
|
5618
|
+
readonly display?: Maybe<DbxButtonDisplay>;
|
|
5619
|
+
}
|
|
5620
|
+
|
|
5621
|
+
/**
|
|
5622
|
+
* Configuration for the confirmation prompt display.
|
|
5623
|
+
*/
|
|
5624
|
+
interface DbxPromptConfirmConfig {
|
|
5625
|
+
readonly title?: string;
|
|
5626
|
+
readonly prompt?: string;
|
|
5627
|
+
readonly confirmText?: string;
|
|
5628
|
+
readonly cancelText?: string;
|
|
5629
|
+
/**
|
|
5630
|
+
* (Optional) Style for the confirm button.
|
|
5631
|
+
*
|
|
5632
|
+
* Defaults to {@link DEFAULT_PROMPT_CONFIRM_BUTTON_STYLE}. Set a `color` here to paint the button with an arbitrary
|
|
5633
|
+
* {@link DbxColorInput} (including a registered color template) rather than the default palette.
|
|
5634
|
+
*/
|
|
5635
|
+
readonly confirmButtonStyle?: Maybe<DbxButtonStyle>;
|
|
5636
|
+
/**
|
|
5637
|
+
* (Optional) Style for the cancel button.
|
|
5638
|
+
*
|
|
5639
|
+
* Defaults to {@link DEFAULT_PROMPT_CANCEL_BUTTON_STYLE}.
|
|
5640
|
+
*/
|
|
5641
|
+
readonly cancelButtonStyle?: Maybe<DbxButtonStyle>;
|
|
5642
|
+
}
|
|
5643
|
+
/**
|
|
5644
|
+
* Default style for the confirm button.
|
|
5645
|
+
*/
|
|
5646
|
+
declare const DEFAULT_PROMPT_CONFIRM_BUTTON_STYLE: DbxButtonStyle;
|
|
5647
|
+
/**
|
|
5648
|
+
* Default style for the cancel button.
|
|
5649
|
+
*/
|
|
5650
|
+
declare const DEFAULT_PROMPT_CANCEL_BUTTON_STYLE: DbxButtonStyle;
|
|
5651
|
+
/**
|
|
5652
|
+
* Renders a confirmation prompt with customizable title, message, confirm, and cancel buttons.
|
|
5653
|
+
*
|
|
5654
|
+
* @dbxWebComponent
|
|
5655
|
+
* @dbxWebSlug prompt-confirm
|
|
5656
|
+
* @dbxWebCategory overlay
|
|
5657
|
+
* @dbxWebRelated prompt, action-confirm
|
|
5658
|
+
* @dbxWebSkillRefs dbx__ref__dbx-app-structure
|
|
5659
|
+
* @dbxWebMinimalExample ```html
|
|
5660
|
+
* <dbx-prompt-confirm [config]="cfg"></dbx-prompt-confirm>
|
|
5661
|
+
* ```
|
|
5662
|
+
*
|
|
5663
|
+
* @example
|
|
5664
|
+
* ```html
|
|
5665
|
+
* <dbx-prompt-confirm [config]="{ header: 'Delete?', confirmText: 'Delete', cancelText: 'Cancel' }"></dbx-prompt-confirm>
|
|
5666
|
+
* ```
|
|
5667
|
+
*/
|
|
5668
|
+
declare class DbxPromptConfirmComponent {
|
|
5669
|
+
readonly config: _angular_core.InputSignal<Maybe<DbxPromptConfirmConfig>>;
|
|
5670
|
+
readonly confirmTextSignal: _angular_core.Signal<string>;
|
|
5671
|
+
readonly cancelTextSignal: _angular_core.Signal<string>;
|
|
5672
|
+
readonly confirmButtonStyleSignal: _angular_core.Signal<DbxButtonStyle>;
|
|
5673
|
+
readonly cancelButtonStyleSignal: _angular_core.Signal<DbxButtonStyle>;
|
|
5674
|
+
readonly confirm: _angular_core.OutputEmitterRef<void>;
|
|
5675
|
+
readonly cancel: _angular_core.OutputEmitterRef<void>;
|
|
5676
|
+
onConfirm(): void;
|
|
5677
|
+
onCancel(): void;
|
|
5678
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPromptConfirmComponent, never>;
|
|
5679
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxPromptConfirmComponent, "dbx-prompt-confirm", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; }, { "confirm": "confirm"; "cancel": "cancel"; }, never, ["*"], true, never>;
|
|
5680
|
+
}
|
|
5681
|
+
|
|
5682
|
+
/**
|
|
5683
|
+
* Possible outcomes of the transition safety dialog.
|
|
5684
|
+
*
|
|
5685
|
+
* - `'success'` - The action completed successfully; allow the transition.
|
|
5686
|
+
* - `'stay'` - The user chose to stay on the current page.
|
|
5687
|
+
* - `'discard'` - The user chose to discard changes and allow the transition.
|
|
5688
|
+
* - `'none'` - The dialog was closed programmatically without a user decision.
|
|
5689
|
+
*/
|
|
5690
|
+
type DbxActionTransitionSafetyDialogResult = 'success' | 'stay' | 'discard' | 'none';
|
|
5691
|
+
/**
|
|
5692
|
+
* Confirmation dialog displayed by {@link DbxActionTransitionSafetyDirective} when the user
|
|
5693
|
+
* attempts to navigate away with unsaved changes. Offers options to stay on the page,
|
|
5694
|
+
* discard changes, or save before leaving.
|
|
5695
|
+
*/
|
|
5696
|
+
declare class DbxActionUIRouterTransitionSafetyDialogComponent extends AbstractDialogDirective {
|
|
5697
|
+
readonly config: DbxPromptConfirmConfig;
|
|
5698
|
+
confirm(): void;
|
|
5699
|
+
cancel(): void;
|
|
5700
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionUIRouterTransitionSafetyDialogComponent, never>;
|
|
5701
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxActionUIRouterTransitionSafetyDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
5702
|
+
}
|
|
5703
|
+
|
|
5704
|
+
/**
|
|
5705
|
+
* Strategy for handling route transitions when the action has unsaved changes.
|
|
5706
|
+
*
|
|
5707
|
+
* - `'none'` - Allow the transition without any prompt.
|
|
5708
|
+
* - `'dialog'` - Always show a confirmation dialog and act based on the user's choice.
|
|
5709
|
+
* - `'auto'` - Attempt to auto-trigger the action if possible. If modified but not triggerable, fall back to showing a dialog. Best used with an auto-save mechanism.
|
|
5710
|
+
*/
|
|
5711
|
+
type DbxActionTransitionSafetyType = 'none' | 'dialog' | 'auto';
|
|
5712
|
+
/**
|
|
5713
|
+
* Prevents UI Router transitions when the action has unsaved changes. Depending on the
|
|
5714
|
+
* configured safety type, it can auto-trigger the action, show a confirmation dialog,
|
|
5715
|
+
* or allow the transition without intervention.
|
|
5716
|
+
*
|
|
5717
|
+
* NOTE: This directive only works with UI-Router (not Angular Router).
|
|
5718
|
+
*
|
|
5719
|
+
* @dbxWebComponent
|
|
5720
|
+
* @dbxWebSlug action-transition-safety
|
|
5721
|
+
* @dbxWebCategory action
|
|
5722
|
+
* @dbxWebRelated action-confirm
|
|
5723
|
+
* @dbxWebSkillRefs dbx__ref__dbx-component-patterns
|
|
5724
|
+
* @dbxWebMinimalExample ```html
|
|
5725
|
+
* <form [dbxActionTransitionSafety]></form>
|
|
5726
|
+
* ```
|
|
5727
|
+
*
|
|
5728
|
+
* @example
|
|
5729
|
+
* ```html
|
|
5730
|
+
* <form [dbxAction]="formAction" dbxActionTransitionSafety>...</form>
|
|
5731
|
+
* ```
|
|
5732
|
+
*/
|
|
5733
|
+
declare class DbxActionTransitionSafetyDirective<T, O> implements OnInit, OnDestroy {
|
|
5734
|
+
protected readonly _safetyType: BehaviorSubject<Maybe<DbxActionTransitionSafetyType>>;
|
|
5735
|
+
readonly dbxActionTransitionSafety: _angular_core.InputSignal<DbxActionTransitionSafetyType | undefined>;
|
|
5736
|
+
protected readonly transitionService: TransitionService;
|
|
5737
|
+
protected readonly viewContainerRef: ViewContainerRef;
|
|
5738
|
+
protected readonly dialog: MatDialog;
|
|
5739
|
+
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
5740
|
+
readonly safetyType$: Observable<"none" | "auto" | "dialog">;
|
|
5741
|
+
protected readonly _dbxActionTransitionSafetyUpdateEffect: _angular_core.EffectRef;
|
|
5742
|
+
private _currentDialogRef?;
|
|
5743
|
+
private stopWatchingTransition?;
|
|
5744
|
+
private checkIsDestroyed;
|
|
5745
|
+
ngOnInit(): void;
|
|
5746
|
+
ngOnDestroy(): void;
|
|
5747
|
+
protected _handleOnBeforeTransition(transition: Transition): HookResult;
|
|
5748
|
+
protected _handleIsModifiedState(transition: Transition, safetyType: DbxActionTransitionSafetyType): Observable<HookResult>;
|
|
5749
|
+
private _autoTrigger;
|
|
5750
|
+
private _showDialog;
|
|
5751
|
+
private _closeDialog;
|
|
5752
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionTransitionSafetyDirective<any, any>, never>;
|
|
5753
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxActionTransitionSafetyDirective<any, any>, "[dbxActionTransitionSafety]", never, { "dbxActionTransitionSafety": { "alias": "dbxActionTransitionSafety"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5754
|
+
}
|
|
5755
|
+
|
|
5756
|
+
/**
|
|
5757
|
+
* Abstract class representing a confirmation prompt that shows a dialog and returns the user's decision.
|
|
5758
|
+
*/
|
|
5759
|
+
declare abstract class DbxPromptConfirm {
|
|
5760
|
+
abstract showDialog(): Observable<Maybe<boolean>>;
|
|
5761
|
+
}
|
|
5736
5762
|
/**
|
|
5737
|
-
*
|
|
5763
|
+
* Provides a {@link DbxPromptConfirm} implementation for dependency injection.
|
|
5738
5764
|
*
|
|
5739
|
-
*
|
|
5765
|
+
* @param sourceType - The concrete class that implements {@link DbxPromptConfirm}
|
|
5766
|
+
* @returns The providers that register the given type as the {@link DbxPromptConfirm} implementation.
|
|
5740
5767
|
*
|
|
5741
|
-
* @
|
|
5742
|
-
*
|
|
5743
|
-
* @returns A cleanup function that removes the event listener.
|
|
5768
|
+
* @Directive ({ providers: provideDbxPromptConfirm(MyConfirmDirective) })
|
|
5769
|
+
* ```
|
|
5744
5770
|
*
|
|
5745
5771
|
* @example
|
|
5746
5772
|
* ```ts
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
|
|
5773
|
+
*/
|
|
5774
|
+
declare function provideDbxPromptConfirm<S extends DbxPromptConfirm>(sourceType: Type<S>): Provider[];
|
|
5775
|
+
|
|
5776
|
+
/**
|
|
5777
|
+
* Abstract base directive that opens a confirmation dialog and resolves with the user's boolean decision.
|
|
5778
|
+
*
|
|
5779
|
+
* Subclasses provide the default dialog configuration.
|
|
5780
|
+
*/
|
|
5781
|
+
declare abstract class AbstractPromptConfirmDirective implements DbxPromptConfirm {
|
|
5782
|
+
protected readonly matDialog: MatDialog;
|
|
5783
|
+
private _currentDialogRef?;
|
|
5784
|
+
private _currentDialogPromise?;
|
|
5785
|
+
protected abstract getDefaultDialogConfig(): Maybe<DbxPromptConfirmConfig>;
|
|
5786
|
+
showDialog(): Observable<boolean>;
|
|
5787
|
+
protected showDialogWithConfig(config: Maybe<DbxPromptConfirmConfig>): Observable<boolean>;
|
|
5788
|
+
protected _handleDialogResult(result: boolean): boolean;
|
|
5789
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractPromptConfirmDirective, never>;
|
|
5790
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractPromptConfirmDirective, never, never, {}, {}, never, never, true, never>;
|
|
5791
|
+
}
|
|
5792
|
+
/**
|
|
5793
|
+
* Directive that provides a {@link DbxPromptConfirm} implementation, opening a confirmation dialog with the given config.
|
|
5794
|
+
*
|
|
5795
|
+
* @example
|
|
5796
|
+
* ```html
|
|
5797
|
+
* <button [dbxPromptConfirm]="{ title: 'Delete?', confirmText: 'Yes' }" dbxPromptConfirmButton>Delete</button>
|
|
5750
5798
|
* ```
|
|
5751
5799
|
*/
|
|
5752
|
-
declare
|
|
5800
|
+
declare class DbxPromptConfirmDirective extends AbstractPromptConfirmDirective {
|
|
5801
|
+
readonly dbxPromptConfirm: _angular_core.InputSignal<Maybe<DbxPromptConfirmConfig>>;
|
|
5802
|
+
protected getDefaultDialogConfig(): Maybe<DbxPromptConfirmConfig>;
|
|
5803
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxPromptConfirmDirective, never>;
|
|
5804
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxPromptConfirmDirective, "[dbxPromptConfirm]", never, { "dbxPromptConfirm": { "alias": "dbxPromptConfirm"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5805
|
+
}
|
|
5753
5806
|
|
|
5754
5807
|
/**
|
|
5755
|
-
* Configuration for
|
|
5756
|
-
*
|
|
5808
|
+
* Configuration for the action confirmation dialog, extending the base prompt configuration
|
|
5809
|
+
* with an optional value to pass to the action when confirmed.
|
|
5757
5810
|
*/
|
|
5758
|
-
interface
|
|
5759
|
-
/**
|
|
5760
|
-
* Target to transfer "click" events to.
|
|
5761
|
-
*/
|
|
5762
|
-
readonly clickTarget?: Maybe<Signal<Maybe<ElementRef<HTMLElement>>>>;
|
|
5811
|
+
interface DbxActionConfirmConfig<T = unknown> extends DbxPromptConfirmConfig {
|
|
5763
5812
|
/**
|
|
5764
|
-
*
|
|
5813
|
+
* Value to pass to the action's ready state when the user confirms.
|
|
5765
5814
|
*/
|
|
5766
|
-
readonly
|
|
5815
|
+
readonly readyValue?: T;
|
|
5767
5816
|
/**
|
|
5768
|
-
*
|
|
5817
|
+
* Whether to confirm the action immediately instead of showing the dialog.
|
|
5818
|
+
*
|
|
5819
|
+
* Useful for actions that need no confirmation but are rendered by the same template as actions that do,
|
|
5820
|
+
* and for passing a readyValue through without prompting.
|
|
5821
|
+
*
|
|
5822
|
+
* Defaults to false.
|
|
5769
5823
|
*/
|
|
5770
|
-
readonly
|
|
5824
|
+
readonly autoConfirm?: boolean;
|
|
5771
5825
|
}
|
|
5772
5826
|
/**
|
|
5773
|
-
*
|
|
5774
|
-
* to
|
|
5775
|
-
*
|
|
5776
|
-
* Solves the problem where an injected element calls `event.stopPropagation()` without
|
|
5777
|
-
* `event.preventDefault()` — for example, a `dbx-button` inside a router anchor would
|
|
5778
|
-
* stop the router link from firing but still trigger the anchor's href navigation.
|
|
5827
|
+
* Displays a confirmation dialog when the action is triggered. If the user confirms,
|
|
5828
|
+
* the configured ready value is passed to the action. If the user cancels, the action is rejected.
|
|
5779
5829
|
*
|
|
5780
|
-
*
|
|
5830
|
+
* A config with `autoConfirm` true shows no dialog and marks the action ready immediately. This lets a
|
|
5831
|
+
* template bind the same input for actions that need confirmation and actions that do not.
|
|
5781
5832
|
*
|
|
5782
|
-
*
|
|
5833
|
+
* This directive works with action triggering only, not button clicks.
|
|
5834
|
+
* For button-based confirmation, use an appPromptConfirmButton directive instead.
|
|
5783
5835
|
*
|
|
5784
|
-
* @
|
|
5785
|
-
* @
|
|
5836
|
+
* @dbxWebComponent
|
|
5837
|
+
* @dbxWebSlug action-confirm
|
|
5838
|
+
* @dbxWebCategory action
|
|
5839
|
+
* @dbxWebRelated action-snackbar, prompt-confirm
|
|
5840
|
+
* @dbxWebSkillRefs dbx__ref__dbx-component-patterns
|
|
5841
|
+
* @dbxWebMinimalExample ```html
|
|
5842
|
+
* <div [dbxActionConfirm]="cfg"></div>
|
|
5843
|
+
* ```
|
|
5786
5844
|
*
|
|
5787
5845
|
* @example
|
|
5788
|
-
* ```
|
|
5789
|
-
*
|
|
5790
|
-
* clickTarget: this.anchorElementRef,
|
|
5791
|
-
* childClickTarget: this.buttonElementRef
|
|
5792
|
-
* });
|
|
5846
|
+
* ```html
|
|
5847
|
+
* <button [dbxAction]="deleteAction" [dbxActionConfirm]="{ header: 'Delete account?', confirmText: 'Delete' }">Delete</button>
|
|
5793
5848
|
* ```
|
|
5794
5849
|
*/
|
|
5795
|
-
declare
|
|
5850
|
+
declare class DbxActionConfirmDirective<T = unknown, O = unknown> extends AbstractPromptConfirmDirective {
|
|
5851
|
+
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
5852
|
+
readonly dbxActionConfirm: _angular_core.InputSignalWithTransform<Maybe<DbxActionConfirmConfig<T>>, Maybe<"" | DbxActionConfirmConfig<T>>>;
|
|
5853
|
+
/**
|
|
5854
|
+
* When true, the confirmation dialog is disabled and the action proceeds without prompting.
|
|
5855
|
+
*/
|
|
5856
|
+
readonly dbxActionConfirmSkip: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5857
|
+
constructor();
|
|
5858
|
+
protected getDefaultDialogConfig(): Maybe<DbxPromptConfirmConfig>;
|
|
5859
|
+
protected _handleDialogResult(result: boolean): boolean;
|
|
5860
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionConfirmDirective<any, any>, never>;
|
|
5861
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxActionConfirmDirective<any, any>, "[dbxActionConfirm]", never, { "dbxActionConfirm": { "alias": "dbxActionConfirm"; "required": false; "isSignal": true; }; "dbxActionConfirmSkip": { "alias": "dbxActionConfirmSkip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5862
|
+
}
|
|
5796
5863
|
|
|
5797
5864
|
/**
|
|
5798
|
-
*
|
|
5799
|
-
*
|
|
5800
|
-
* Clicking the text or the icon copies the text to the clipboard and optionally shows a snackbar confirmation.
|
|
5865
|
+
* Triggers the parent action context when a specific keyboard key is released.
|
|
5866
|
+
* Defaults to the "enter" key. Key names should be lowercase.
|
|
5801
5867
|
*
|
|
5802
5868
|
* @dbxWebComponent
|
|
5803
|
-
* @dbxWebSlug
|
|
5804
|
-
* @dbxWebCategory
|
|
5805
|
-
* @dbxWebRelated
|
|
5806
|
-
* @dbxWebSkillRefs dbx__ref__dbx-
|
|
5869
|
+
* @dbxWebSlug action-key-trigger
|
|
5870
|
+
* @dbxWebCategory action
|
|
5871
|
+
* @dbxWebRelated action-confirm, action-snackbar
|
|
5872
|
+
* @dbxWebSkillRefs dbx__ref__dbx-component-patterns
|
|
5807
5873
|
* @dbxWebMinimalExample ```html
|
|
5808
|
-
* <
|
|
5874
|
+
* <div [dbxActionKeyTrigger]="'enter'"></div>
|
|
5809
5875
|
* ```
|
|
5810
5876
|
*
|
|
5811
5877
|
* @example
|
|
5812
5878
|
* ```html
|
|
5813
|
-
* <
|
|
5879
|
+
* <form [dbxAction]="saveAction" [dbxActionKeyTrigger]="'cmd+s'">...</form>
|
|
5814
5880
|
* ```
|
|
5815
5881
|
*/
|
|
5816
|
-
declare class
|
|
5817
|
-
readonly
|
|
5818
|
-
readonly
|
|
5819
|
-
|
|
5820
|
-
|
|
5821
|
-
|
|
5822
|
-
readonly clipboardSnackbarMessagesConfig: _angular_core.InputSignal<Maybe<CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig>>;
|
|
5823
|
-
readonly clipboardSnackbarMessagesEnabled: _angular_core.InputSignal<boolean>;
|
|
5824
|
-
readonly clickToCopyIcon: _angular_core.InputSignal<string>;
|
|
5825
|
-
readonly clickIconToCopyOnly: _angular_core.InputSignal<boolean>;
|
|
5826
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxClickToCopyTextComponent, never>;
|
|
5827
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxClickToCopyTextComponent, "dbx-click-to-copy-text", never, { "copyText": { "alias": "copyText"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "highlighted": { "alias": "highlighted"; "required": false; "isSignal": true; }; "clipboardSnackbarMessagesConfig": { "alias": "clipboardSnackbarMessagesConfig"; "required": false; "isSignal": true; }; "clipboardSnackbarMessagesEnabled": { "alias": "clipboardSnackbarMessagesEnabled"; "required": false; "isSignal": true; }; "clickToCopyIcon": { "alias": "clickToCopyIcon"; "required": false; "isSignal": true; }; "clickIconToCopyOnly": { "alias": "clickIconToCopyOnly"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5882
|
+
declare class DbxActionKeyTriggerDirective<T = unknown, O = unknown> {
|
|
5883
|
+
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
5884
|
+
readonly key: _angular_core.InputSignalWithTransform<string, Maybe<string>>;
|
|
5885
|
+
onKeyupHandler(event: KeyboardEvent): void;
|
|
5886
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionKeyTriggerDirective<any, any>, never>;
|
|
5887
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxActionKeyTriggerDirective<any, any>, "[dbxActionKeyTrigger]", never, { "key": { "alias": "dbxActionKeyTrigger"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5828
5888
|
}
|
|
5829
5889
|
|
|
5830
5890
|
/**
|
|
5831
|
-
*
|
|
5832
|
-
*
|
|
5891
|
+
* Convenience module that bundles all base dbxAction-related directives from
|
|
5892
|
+
* both @dereekb/dbx-core and @dereekb/dbx-web, including key triggers and confirmation dialogs.
|
|
5833
5893
|
*/
|
|
5834
|
-
declare class
|
|
5835
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
5836
|
-
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<
|
|
5837
|
-
static ɵinj: _angular_core.ɵɵInjectorDeclaration<
|
|
5894
|
+
declare class DbxActionModule {
|
|
5895
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionModule, never>;
|
|
5896
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<DbxActionModule, never, [typeof _dereekb_dbx_core.DbxCoreActionModule, typeof _dereekb_dbx_core.DbxActionButtonDirective, typeof DbxActionKeyTriggerDirective, typeof DbxActionConfirmDirective], [typeof _dereekb_dbx_core.DbxCoreActionModule, typeof _dereekb_dbx_core.DbxActionButtonDirective, typeof DbxActionKeyTriggerDirective, typeof DbxActionConfirmDirective]>;
|
|
5897
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxActionModule>;
|
|
5838
5898
|
}
|
|
5839
5899
|
|
|
5840
5900
|
/**
|
|
5841
|
-
*
|
|
5842
|
-
|
|
5843
|
-
|
|
5844
|
-
|
|
5845
|
-
*
|
|
5846
|
-
*
|
|
5847
|
-
|
|
5848
|
-
|
|
5849
|
-
|
|
5850
|
-
|
|
5851
|
-
|
|
5852
|
-
|
|
5853
|
-
|
|
5854
|
-
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
/**
|
|
5858
|
-
* Material theme palette, theme color, or {@link DbxColorConfig} for the button.
|
|
5859
|
-
*
|
|
5860
|
-
* Forwarded to the button host's `[dbxColor]` directive.
|
|
5861
|
-
*/
|
|
5862
|
-
readonly color?: Maybe<ThemePalette | DbxColorInput>;
|
|
5863
|
-
/**
|
|
5864
|
-
* Material theme palette or custom theme color for the loading spinner.
|
|
5865
|
-
*/
|
|
5866
|
-
readonly spinnerColor?: Maybe<ThemePalette | DbxThemeColor>;
|
|
5867
|
-
/**
|
|
5868
|
-
* Custom CSS text color for the button label.
|
|
5869
|
-
*/
|
|
5870
|
-
readonly customTextColor?: Maybe<string>;
|
|
5871
|
-
/**
|
|
5872
|
-
* Custom CSS color for the spinner stroke.
|
|
5873
|
-
*/
|
|
5874
|
-
readonly customSpinnerColor?: Maybe<string>;
|
|
5875
|
-
/**
|
|
5876
|
-
* Whether to render as a floating action button (FAB).
|
|
5877
|
-
*/
|
|
5878
|
-
readonly fab?: Maybe<boolean>;
|
|
5879
|
-
}
|
|
5880
|
-
/**
|
|
5881
|
-
* A button style and display pair.
|
|
5901
|
+
* Lightweight button that renders as either an icon-only Material icon button or a text button
|
|
5902
|
+
* with an icon prefix, depending on whether text is provided.
|
|
5903
|
+
*
|
|
5904
|
+
* @dbxWebComponent
|
|
5905
|
+
* @dbxWebSlug icon-button
|
|
5906
|
+
* @dbxWebCategory button
|
|
5907
|
+
* @dbxWebRelated button
|
|
5908
|
+
* @dbxWebSkillRefs dbx__migration__migrate-dbx-icon-button
|
|
5909
|
+
* @dbxWebMinimalExample ```html
|
|
5910
|
+
* <dbx-icon-button icon="add"></dbx-icon-button>
|
|
5911
|
+
* ```
|
|
5912
|
+
*
|
|
5913
|
+
* @example
|
|
5914
|
+
* ```html
|
|
5915
|
+
* <dbx-icon-button icon="delete" color="warn" [dbxAction]="deleteAction"></dbx-icon-button>
|
|
5916
|
+
* ```
|
|
5882
5917
|
*/
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
|
|
5918
|
+
declare class DbxIconButtonComponent extends AbstractDbxButtonDirective {
|
|
5919
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxIconButtonComponent, never>;
|
|
5920
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxIconButtonComponent, "dbx-icon-button", never, {}, {}, never, ["*"], true, never>;
|
|
5886
5921
|
}
|
|
5887
5922
|
|
|
5888
5923
|
/**
|
|
@@ -6198,8 +6233,8 @@ declare class DbxButtonComponent extends AbstractDbxButtonDirective {
|
|
|
6198
6233
|
readonly bar: _angular_core.InputSignalWithTransform<boolean, Maybe<boolean | "">>;
|
|
6199
6234
|
readonly type: _angular_core.InputSignal<Maybe<DbxButtonType>>;
|
|
6200
6235
|
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
6201
|
-
readonly color: _angular_core.InputSignal<Maybe<"" | "
|
|
6202
|
-
readonly spinnerColor: _angular_core.InputSignal<Maybe<"
|
|
6236
|
+
readonly color: _angular_core.InputSignal<Maybe<"" | "accent" | "primary" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | _dereekb_dbx_web.DbxColorConfig | undefined>>;
|
|
6237
|
+
readonly spinnerColor: _angular_core.InputSignal<Maybe<"accent" | "primary" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | undefined>>;
|
|
6203
6238
|
readonly customTextColor: _angular_core.InputSignal<Maybe<string>>;
|
|
6204
6239
|
readonly customSpinnerColor: _angular_core.InputSignal<Maybe<string>>;
|
|
6205
6240
|
readonly basic: _angular_core.InputSignalWithTransform<boolean, Maybe<boolean | "">>;
|
|
@@ -6222,7 +6257,7 @@ declare class DbxButtonComponent extends AbstractDbxButtonDirective {
|
|
|
6222
6257
|
* into the host {@link DbxColorDirective}, which provides the color tokens + `.dbx-color` marker that the button's
|
|
6223
6258
|
* `dbx-button.dbx-color .mdc-button` SCSS paints from; an active echo's color temporarily takes over those tokens.
|
|
6224
6259
|
*/
|
|
6225
|
-
readonly colorSignal: _angular_core.Signal<Maybe<"" | "
|
|
6260
|
+
readonly colorSignal: _angular_core.Signal<Maybe<"" | "accent" | "primary" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | _dereekb_dbx_web.DbxColorConfig | undefined>>;
|
|
6226
6261
|
readonly styleTypeSignal: _angular_core.Signal<Maybe<DbxButtonType>>;
|
|
6227
6262
|
readonly configSignal: _angular_core.Signal<DbxProgressButtonConfig>;
|
|
6228
6263
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxButtonComponent, never>;
|
|
@@ -8492,14 +8527,14 @@ declare class DbxNavbarComponent extends AbstractTransitionDirective {
|
|
|
8492
8527
|
readonly breakpoint: _angular_core.InputSignal<ScreenMediaWidthType>;
|
|
8493
8528
|
readonly anchors: _angular_core.InputSignal<Maybe<ClickableAnchorLinkSegueRef[]>>;
|
|
8494
8529
|
readonly isBreakpointActive$: Observable<boolean>;
|
|
8495
|
-
readonly mode$: Observable<"icon" | "
|
|
8530
|
+
readonly mode$: Observable<"icon" | "button" | "bar">;
|
|
8496
8531
|
readonly anchors$: Observable<NavAnchorLink[]>;
|
|
8497
8532
|
readonly selectedAnchor$: Observable<Maybe<NavAnchorLink>>;
|
|
8498
8533
|
readonly nextRotateAnchor$: Observable<Maybe<NavAnchorLink>>;
|
|
8499
8534
|
readonly hasNoAnchors$: Observable<boolean>;
|
|
8500
8535
|
readonly buttonNavAnchor$: Observable<Maybe<NavAnchorLink>>;
|
|
8501
8536
|
readonly buttonDisplay$: Observable<DbxButtonDisplay>;
|
|
8502
|
-
readonly modeSignal: _angular_core.Signal<"icon" | "
|
|
8537
|
+
readonly modeSignal: _angular_core.Signal<"icon" | "button" | "bar" | undefined>;
|
|
8503
8538
|
readonly isIconModeSignal: _angular_core.Signal<boolean | undefined>;
|
|
8504
8539
|
readonly anchorsSignal: _angular_core.Signal<NavAnchorLink[] | undefined>;
|
|
8505
8540
|
readonly buttonDisplaySignal: _angular_core.Signal<DbxButtonDisplay | undefined>;
|
|
@@ -8600,7 +8635,7 @@ declare class DbxSidenavComponent extends AbstractTransitionWatcherDirective imp
|
|
|
8600
8635
|
*
|
|
8601
8636
|
* Set to `'mobile'` to keep the sidenav always hidden as an overlay that only opens when toggled.
|
|
8602
8637
|
*/
|
|
8603
|
-
readonly displayMode: _angular_core.InputSignal<Maybe<"
|
|
8638
|
+
readonly displayMode: _angular_core.InputSignal<Maybe<"icon" | "none" | "full" | "mobile">>;
|
|
8604
8639
|
readonly sidenav: _angular_core.Signal<MatSidenav>;
|
|
8605
8640
|
/**
|
|
8606
8641
|
* Restricts which {@link SideNavDisplayMode} values are permitted.
|
|
@@ -8613,7 +8648,7 @@ declare class DbxSidenavComponent extends AbstractTransitionWatcherDirective imp
|
|
|
8613
8648
|
* <dbx-sidenav [allowedModes]="['mobile', 'full']">
|
|
8614
8649
|
* ```
|
|
8615
8650
|
*/
|
|
8616
|
-
readonly allowedModes: _angular_core.InputSignal<Maybe<("
|
|
8651
|
+
readonly allowedModes: _angular_core.InputSignal<Maybe<("icon" | "none" | "full" | "mobile")[]>>;
|
|
8617
8652
|
readonly anchors: _angular_core.InputSignal<Maybe<ClickableAnchorLinkTree[]>>;
|
|
8618
8653
|
private readonly _allowedModes$;
|
|
8619
8654
|
readonly responsiveMode$: Observable<SideNavDisplayMode>;
|
|
@@ -8960,9 +8995,25 @@ declare class DbxDialogContentCloseComponent {
|
|
|
8960
8995
|
* Configuration for the dialog content footer button appearance.
|
|
8961
8996
|
*/
|
|
8962
8997
|
interface DbxDialogContentFooterConfig {
|
|
8998
|
+
/**
|
|
8999
|
+
* (Optional) Material theme palette for the close button.
|
|
9000
|
+
*
|
|
9001
|
+
* Only accepts a {@link ThemePalette}; prefer {@link buttonStyle} to paint the button with an arbitrary
|
|
9002
|
+
* {@link DbxColorInput} (including a registered color template).
|
|
9003
|
+
*/
|
|
8963
9004
|
readonly buttonColor?: ThemePalette;
|
|
8964
9005
|
readonly closeText?: string;
|
|
9006
|
+
/**
|
|
9007
|
+
* (Optional) Style for the close button.
|
|
9008
|
+
*
|
|
9009
|
+
* Defaults to {@link DEFAULT_DIALOG_CONTENT_FOOTER_BUTTON_STYLE}. A `color` set here wins over {@link buttonColor}.
|
|
9010
|
+
*/
|
|
9011
|
+
readonly buttonStyle?: Maybe<DbxButtonStyle>;
|
|
8965
9012
|
}
|
|
9013
|
+
/**
|
|
9014
|
+
* Default style for the dialog content footer's close button.
|
|
9015
|
+
*/
|
|
9016
|
+
declare const DEFAULT_DIALOG_CONTENT_FOOTER_BUTTON_STYLE: DbxButtonStyle;
|
|
8966
9017
|
/**
|
|
8967
9018
|
* Renders a close button at the bottom of a dialog with customizable text and color.
|
|
8968
9019
|
*
|
|
@@ -8970,17 +9021,27 @@ interface DbxDialogContentFooterConfig {
|
|
|
8970
9021
|
* ```html
|
|
8971
9022
|
* <dbx-dialog-content-footer [closeText]="'Done'" [buttonColor]="'primary'" (close)="onClose()"></dbx-dialog-content-footer>
|
|
8972
9023
|
* ```
|
|
9024
|
+
*
|
|
9025
|
+
* @example
|
|
9026
|
+
* ```html
|
|
9027
|
+
* <dbx-dialog-content-footer [closeText]="'Done'" [buttonStyle]="{ type: 'flat', color: brandColor }" (close)="onClose()"></dbx-dialog-content-footer>
|
|
9028
|
+
* ```
|
|
8973
9029
|
*/
|
|
8974
9030
|
declare class DbxDialogContentFooterComponent {
|
|
8975
9031
|
readonly config: _angular_core.InputSignal<Maybe<DbxDialogContentFooterConfig>>;
|
|
8976
9032
|
readonly closeText: _angular_core.InputSignal<Maybe<string>>;
|
|
8977
9033
|
readonly buttonColor: _angular_core.InputSignal<Maybe<ThemePalette>>;
|
|
9034
|
+
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
8978
9035
|
readonly closeTextSignal: _angular_core.Signal<string>;
|
|
8979
|
-
|
|
9036
|
+
/**
|
|
9037
|
+
* Resolved close button style. The narrower {@link buttonColor} is folded in as the color only when the resolved
|
|
9038
|
+
* style does not already carry one, so a `buttonStyle` color always wins.
|
|
9039
|
+
*/
|
|
9040
|
+
readonly buttonStyleSignal: _angular_core.Signal<DbxButtonStyle>;
|
|
8980
9041
|
readonly close: _angular_core.OutputEmitterRef<void>;
|
|
8981
9042
|
closeClicked(): void;
|
|
8982
9043
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxDialogContentFooterComponent, never>;
|
|
8983
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDialogContentFooterComponent, "dbx-dialog-content-footer", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "closeText": { "alias": "closeText"; "required": false; "isSignal": true; }; "buttonColor": { "alias": "buttonColor"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, never, true, never>;
|
|
9044
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxDialogContentFooterComponent, "dbx-dialog-content-footer", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "closeText": { "alias": "closeText"; "required": false; "isSignal": true; }; "buttonColor": { "alias": "buttonColor"; "required": false; "isSignal": true; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, never, true, never>;
|
|
8984
9045
|
}
|
|
8985
9046
|
|
|
8986
9047
|
/**
|
|
@@ -12154,7 +12215,7 @@ declare class DbxPdfMergeUploadDialogComponent extends AbstractDialogDirective<B
|
|
|
12154
12215
|
readonly uploadIconSignal: _angular_core.Signal<Maybe<string>>;
|
|
12155
12216
|
readonly uploadTextSignal: _angular_core.Signal<Maybe<string>>;
|
|
12156
12217
|
readonly uploadStyleSignal: _angular_core.Signal<Maybe<DbxButtonStyle>>;
|
|
12157
|
-
readonly uploadColorSignal: _angular_core.Signal<Maybe<"" | "
|
|
12218
|
+
readonly uploadColorSignal: _angular_core.Signal<Maybe<"" | "accent" | "primary" | "warn" | "secondary" | "tertiary" | "notice" | "ok" | "success" | "grey" | "default" | "disabled" | _dereekb_dbx_web.DbxColorConfig | undefined>>;
|
|
12158
12219
|
readonly uploadRaisedSignal: _angular_core.Signal<boolean>;
|
|
12159
12220
|
readonly uploadFlatSignal: _angular_core.Signal<boolean>;
|
|
12160
12221
|
readonly uploadStrokedSignal: _angular_core.Signal<boolean>;
|
|
@@ -12642,10 +12703,31 @@ interface DbxFilterComponentConfig<F extends object = object, P extends string =
|
|
|
12642
12703
|
* Custom customize button text. If not defined, defaults to "Customize"
|
|
12643
12704
|
*/
|
|
12644
12705
|
readonly customizeButtonText?: string;
|
|
12706
|
+
/**
|
|
12707
|
+
* Custom presets button text. If not defined, defaults to "Presets"
|
|
12708
|
+
*/
|
|
12709
|
+
readonly presetsButtonText?: string;
|
|
12645
12710
|
/**
|
|
12646
12711
|
* Custom close button text. If not defined, defaults to "Close"
|
|
12647
12712
|
*/
|
|
12648
12713
|
readonly closeButtonText?: string;
|
|
12714
|
+
/**
|
|
12715
|
+
* (Optional) Style for the "Customize"/"Presets" switch buttons in the popover header.
|
|
12716
|
+
*
|
|
12717
|
+
* Defaults to {@link DEFAULT_FILTER_POPOVER_SWITCH_BUTTON_STYLE}.
|
|
12718
|
+
*
|
|
12719
|
+
* Only the style is configurable here; the button text comes from {@link customizeButtonText} / {@link presetsButtonText}.
|
|
12720
|
+
*/
|
|
12721
|
+
readonly switchButtonStyle?: Maybe<DbxButtonStyle>;
|
|
12722
|
+
/**
|
|
12723
|
+
* (Optional) Style for the close button in the popover header.
|
|
12724
|
+
*
|
|
12725
|
+
* Defaults to {@link DEFAULT_FILTER_POPOVER_CLOSE_BUTTON_STYLE}. Set a `color` here to paint the close button with an
|
|
12726
|
+
* arbitrary {@link DbxColorInput} (including a registered color template) rather than the default accent palette.
|
|
12727
|
+
*
|
|
12728
|
+
* Only the style is configurable here; the button text comes from {@link closeButtonText}.
|
|
12729
|
+
*/
|
|
12730
|
+
readonly closeButtonStyle?: Maybe<DbxButtonStyle>;
|
|
12649
12731
|
/**
|
|
12650
12732
|
* Whether or not to show the close button. Defaults to the value of !closeOnFilterChange
|
|
12651
12733
|
*/
|
|
@@ -12794,6 +12876,14 @@ interface DbxFilterPopoverComponentConfig<F extends object = object> extends Dbx
|
|
|
12794
12876
|
* Default popover key used by filter popovers to ensure only one filter popover is open at a time.
|
|
12795
12877
|
*/
|
|
12796
12878
|
declare const DEFAULT_FILTER_POPOVER_KEY = "filter";
|
|
12879
|
+
/**
|
|
12880
|
+
* Default style for the popover header's "Customize"/"Presets" switch buttons.
|
|
12881
|
+
*/
|
|
12882
|
+
declare const DEFAULT_FILTER_POPOVER_SWITCH_BUTTON_STYLE: DbxButtonStyle;
|
|
12883
|
+
/**
|
|
12884
|
+
* Default style for the popover header's close button.
|
|
12885
|
+
*/
|
|
12886
|
+
declare const DEFAULT_FILTER_POPOVER_CLOSE_BUTTON_STYLE: DbxButtonStyle;
|
|
12797
12887
|
/**
|
|
12798
12888
|
* Popover component that renders custom and/or preset filter components with toggling support.
|
|
12799
12889
|
*
|
|
@@ -12815,6 +12905,9 @@ declare class DbxFilterPopoverComponent<F extends object> extends AbstractPopove
|
|
|
12815
12905
|
readonly showCloseButton: boolean;
|
|
12816
12906
|
readonly closeButtonText: string;
|
|
12817
12907
|
readonly customizeButtonText: string;
|
|
12908
|
+
readonly presetsButtonText: string;
|
|
12909
|
+
readonly switchButtonStyle: DbxButtonStyle;
|
|
12910
|
+
readonly closeButtonStyle: DbxButtonStyle;
|
|
12818
12911
|
/**
|
|
12819
12912
|
* Whether or not to display buttons to toggle between custom and preset filters.
|
|
12820
12913
|
*/
|
|
@@ -12822,7 +12915,7 @@ declare class DbxFilterPopoverComponent<F extends object> extends AbstractPopove
|
|
|
12822
12915
|
readonly showPresetSignal: _angular_core.WritableSignal<boolean>;
|
|
12823
12916
|
readonly config$: Observable<DbxInjectionComponentConfig<FilterSource<F>>>;
|
|
12824
12917
|
readonly configSignal: _angular_core.Signal<DbxInjectionComponentConfig<FilterSource<F>> | undefined>;
|
|
12825
|
-
static openPopover<F extends object>(popupService: DbxPopoverService, { width, height, isResizable, origin, header, icon, customFilterComponentClass, presetFilterComponentClass, customFilterComponentConfig, presetFilterComponentConfig, connector, initialFilterObs, closeOnFilterChange, customizeButtonText, showCloseButton, closeButtonText }: DbxFilterPopoverComponentConfig<F>, popoverKey?: DbxPopoverKey): NgPopoverRef;
|
|
12918
|
+
static openPopover<F extends object>(popupService: DbxPopoverService, { width, height, isResizable, origin, header, icon, customFilterComponentClass, presetFilterComponentClass, customFilterComponentConfig, presetFilterComponentConfig, connector, initialFilterObs, closeOnFilterChange, customizeButtonText, presetsButtonText, showCloseButton, closeButtonText, switchButtonStyle, closeButtonStyle }: DbxFilterPopoverComponentConfig<F>, popoverKey?: DbxPopoverKey): NgPopoverRef;
|
|
12826
12919
|
constructor();
|
|
12827
12920
|
showPresets(): void;
|
|
12828
12921
|
showCustom(): void;
|
|
@@ -13855,5 +13948,5 @@ declare class DbxWebModule {
|
|
|
13855
13948
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<DbxWebModule>;
|
|
13856
13949
|
}
|
|
13857
13950
|
|
|
13858
|
-
export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxHelpWidgetDirective, AbstractDbxListAccordionViewDirective, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_COLOR_CUSTOM_BG_CSS_CLASS, DBX_COLOR_CUSTOM_TEXT_CSS_CLASS, DBX_CURATED_COLOR_COUNT, DBX_CURATED_COLOR_TEMPLATES, DBX_CURATED_COLOR_TEMPLATE_KEY_PREFIX, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PDF_MERGE_EDITOR_CONFIG, DBX_PDF_MERGE_EDITOR_INITIAL_STATE, DBX_PDF_MERGE_EDITOR_PRESERVE_ENTRIES_ON_SLOT_DESTROY, DBX_PDF_MERGE_ENCRYPTED_ERROR_MESSAGE, DBX_PDF_MERGE_ENCRYPTED_NOT_EDITABLE_MESSAGE, DBX_PDF_MERGE_IGNORED_ENTRY_MESSAGE, DBX_PDF_MERGE_IMPORT_ERROR_MESSAGES, DBX_PDF_MERGE_SUPERSEDED_SLOT_MESSAGE, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DBX_WEB_PAGE_TITLE_SERVICE_CONFIG, DEFAULT_DBX_CHIP_TONE, DEFAULT_DBX_DETACH_KEY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_FILE_LIST_ITEM_DETAILS_CLASS, DEFAULT_DBX_FILE_LIST_ITEM_DETAILS_DATE_STYLE, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_DISABLE_FUNCTION, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_LIST_SCROLL_DISTANCE, DEFAULT_DBX_LIST_THROTTLE_SCROLL, DEFAULT_DBX_LIST_VIEW_META_ICON, DEFAULT_DBX_PDF_MERGE_ENCRYPTED_HANDLING, DEFAULT_DBX_PDF_MERGE_PAGE_EDITING, DEFAULT_DBX_PDF_MERGE_RESTORE_IMPORT_ON_CLEAR, DEFAULT_DBX_PDF_MERGE_SIDECAR, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_STYLE_CONFIG_TOKEN, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_WEB_FILE_PREVIEW_SERVICE_DIALOG_WITH_COMPONENT_FUNCTION, DEFAULT_DBX_WEB_FILE_PREVIEW_SERVICE_PREVIEW_COMPONENT_FUNCTION, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_IMAGE_BITMAP_TO_BLOB_ENCODER, DEFAULT_IMAGE_JPEG_QUALITY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_PDF_MERGE_ACCEPT, DEFAULT_PDF_MERGE_PAGE_GROUP_KEY, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColorService, DbxColorServiceConfig, DbxCompactDirective, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetachContentComponent, DbxDetachControlButtonsComponent, DbxDetachController, DbxDetachControlsComponent, DbxDetachInitDirective, DbxDetachInteractionModule, DbxDetachOutletComponent, DbxDetachOverlayComponent, DbxDetachService, DbxDetachWindowState, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileListComponent, DbxFileListItemComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconItemComponent, DbxIconSpacerDirective, DbxIconTileComponent, DbxIconTileDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxIntroActionSectionComponent, DbxLabelBlockComponent, 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, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPdfMergeEditorComponent, DbxPdfMergeEditorFileUploadComponent, DbxPdfMergeEditorFileUploadHasStateDirective, DbxPdfMergeEditorFileUploadValidatorDirective, DbxPdfMergeEditorStore, DbxPdfMergeEditorStoreDirective, DbxPdfMergeEntryComponent, DbxPdfMergeImportComponent, DbxPdfMergeListComponent, DbxPdfMergePageComponent, DbxPdfMergePageListComponent, DbxPdfMergeUploadActionDirective, DbxPdfMergeUploadButtonDirective, DbxPdfMergeUploadDialogComponent, DbxPdfPreviewComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxResizedDirective, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepBlockComponent, DbxStructureDirective, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, DbxTextColorDirective, DbxTextModule, DbxTwoBlockComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadDirective, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListAccordionViewComponent, DbxValueListAccordionViewContentComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListGridViewContentGroupComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewComponentImportsModule, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWebFilePreviewComponent, DbxWebFilePreviewService, DbxWebModule, DbxWebPageTitleInfoDirective, DbxWebPageTitleService, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, DbxZipBlobPreviewComponent, DbxZipPreviewComponent, PDF_MERGE_PAGE_ID_SEPARATOR, PDF_MERGE_PAGE_TAG_KEY, PDF_MERGE_RESULT_MIME_TYPE, PDF_MERGE_SIDECAR_DESCRIPTION, PDF_MERGE_SIDECAR_FILE_NAME, PDF_MERGE_SIDECAR_VERSION, 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, asPdfMergeFile, attachPdfMergeSidecar, buildPdfMergeEntriesFromSidecar, buildPdfMergeEntry, buildPdfMergeEntrySync, buildPdfMergePagePlan, catchErrorServerParams, classifyPdfMergeFile, compactModeFromInput, compareScreenMediaWidthTypes, compressImageFile, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxCuratedColorConfigForString, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxWebDefaultPageTitleDelegate, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, entryIdForPdfMergePageId, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, fileArrayAcceptMaxFiles, flattenAccordionGroups, formatPdfMergeEntrySize, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, isDbxColorConfig, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, makePdfMergePageId, makePdfMergeSidecar, makePdfMergeSidecarPageTag, mapCompactModeObs, mapValuesToValuesListItemConfigObs, mergePdfMergeEntries, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openPdfPreviewDialog, openZipPreviewDialog, overrideClickElementEffect, pdfMergeEntriesUseEncryptedPassthrough, pdfMergePageGroupKeyForSlotId, provideDbxDetachController, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxPdfMergeEditorConfig, provideDbxPdfMergeEditorPreserveEntriesOnSlotDestroy, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideDbxWebPageTitleService, provideTwoColumnsContext, readPdfMergeEntryPageMetas, readPdfMergePageTag, readPdfMergeSidecar, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, splitPdfMergeSidecarDocuments, trackByModelKeyRef, trackByUniqueIdentifier, validatePdfMergeEntry, writePdfMergePageTag };
|
|
13951
|
+
export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxClipboardDirective, AbstractDbxErrorWidgetComponent, AbstractDbxFileUploadComponent, AbstractDbxHelpWidgetDirective, AbstractDbxListAccordionViewDirective, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_AVATAR_CONTEXT_DATA_TOKEN, DBX_COLOR_CUSTOM_BG_CSS_CLASS, DBX_COLOR_CUSTOM_TEXT_CSS_CLASS, DBX_CURATED_COLOR_COUNT, DBX_CURATED_COLOR_TEMPLATES, DBX_CURATED_COLOR_TEMPLATE_KEY_PREFIX, DBX_DARK_STYLE_CLASS_SUFFIX, DBX_HELP_WIDGET_ENTRY_DATA_TOKEN, DBX_LIST_ACCORDION_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_GRID_VIEW_COMPONENT_IMPORTS_AND_EXPORTS, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_MODEL_VIEW_TRACKER_STORAGE_ACCESSOR_TOKEN, DBX_PDF_MERGE_EDITOR_CONFIG, DBX_PDF_MERGE_EDITOR_INITIAL_STATE, DBX_PDF_MERGE_EDITOR_PRESERVE_ENTRIES_ON_SLOT_DESTROY, DBX_PDF_MERGE_ENCRYPTED_ERROR_MESSAGE, DBX_PDF_MERGE_ENCRYPTED_NOT_EDITABLE_MESSAGE, DBX_PDF_MERGE_IGNORED_ENTRY_MESSAGE, DBX_PDF_MERGE_IMPORT_ERROR_MESSAGES, DBX_PDF_MERGE_SUPERSEDED_SLOT_MESSAGE, DBX_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_ANCHOR_COMPONENTS, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, DBX_VALUE_LIST_VIEW_ITEM, DBX_WEB_FILE_PREVIEW_SERVICE_ENTRIES_TOKEN, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_COMPONENT_PRESET, DBX_WEB_FILE_PREVIEW_SERVICE_ZIP_PRESET_ENTRY, DBX_WEB_PAGE_TITLE_SERVICE_CONFIG, DEFAULT_DBX_CHIP_TONE, DEFAULT_DBX_DETACH_KEY, DEFAULT_DBX_ERROR_SNACKBAR_CONFIG, DEFAULT_DBX_FILE_LIST_ITEM_DETAILS_CLASS, DEFAULT_DBX_FILE_LIST_ITEM_DETAILS_DATE_STYLE, DEFAULT_DBX_HELP_VIEW_POPOVER_KEY, DEFAULT_DBX_LINKIFY_STRING_TYPE, DEFAULT_DBX_LIST_ACCORDION_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_GRID_VIEW_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_LIST_ITEM_DISABLE_FUNCTION, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_LIST_SCROLL_DISTANCE, DEFAULT_DBX_LIST_THROTTLE_SCROLL, DEFAULT_DBX_LIST_VIEW_META_ICON, DEFAULT_DBX_PDF_MERGE_ENCRYPTED_HANDLING, DEFAULT_DBX_PDF_MERGE_PAGE_EDITING, DEFAULT_DBX_PDF_MERGE_RESTORE_IMPORT_ON_CLEAR, DEFAULT_DBX_PDF_MERGE_SIDECAR, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_STYLE_CONFIG_TOKEN, DEFAULT_DBX_VALUE_LIST_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_DBX_WEB_FILE_PREVIEW_SERVICE_DIALOG_WITH_COMPONENT_FUNCTION, DEFAULT_DBX_WEB_FILE_PREVIEW_SERVICE_PREVIEW_COMPONENT_FUNCTION, DEFAULT_DIALOG_CONTENT_FOOTER_BUTTON_STYLE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_CLOSE_BUTTON_STYLE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_FILTER_POPOVER_SWITCH_BUTTON_STYLE, DEFAULT_IMAGE_BITMAP_TO_BLOB_ENCODER, DEFAULT_IMAGE_JPEG_QUALITY, DEFAULT_INTRO_ACTION_SECTION_BUTTON_STYLE, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_COMPONENT_CONFIGURATION_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_PDF_MERGE_ACCEPT, DEFAULT_PDF_MERGE_PAGE_GROUP_KEY, DEFAULT_PROMPT_CANCEL_BUTTON_STYLE, DEFAULT_PROMPT_CONFIRM_BUTTON_STYLE, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DEFAULT_VALUE_LIST_VIEW_CONTENT_COMPONENT_TRACK_BY_FUNCTION, DbxAccordionHeaderHeightDirective, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarErrorDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxAvatarComponent, DbxAvatarViewComponent, DbxAvatarViewService, DbxAvatarViewServiceConfig, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBodyDirective, DbxButtonComponent, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerDirective, DbxCardBoxLayoutModule, DbxChipDirective, DbxChipListComponent, DbxClickToCopyTextComponent, DbxClickToCopyTextDirective, DbxColorDirective, DbxColorService, DbxColorServiceConfig, DbxCompactDirective, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetachContentComponent, DbxDetachControlButtonsComponent, DbxDetachController, DbxDetachControlsComponent, DbxDetachInitDirective, DbxDetachInteractionModule, DbxDetachOutletComponent, DbxDetachOverlayComponent, DbxDetachService, DbxDetachWindowState, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogModule, DbxDownloadBlobButtonComponent, DbxDownloadTextViewComponent, DbxEmbedComponent, DbxErrorComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorSnackbarComponent, DbxErrorSnackbarService, DbxErrorViewComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFileListComponent, DbxFileListItemComponent, DbxFileUploadActionCompatable, DbxFileUploadActionSyncDirective, DbxFileUploadAreaComponent, DbxFileUploadButtonComponent, DbxFileUploadComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexSizeDirective, DbxHelpContextDirective, DbxHelpContextService, DbxHelpViewListComponent, DbxHelpViewListEntryComponent, DbxHelpViewPopoverButtonComponent, DbxHelpViewPopoverComponent, DbxHelpWidgetService, DbxHelpWidgetServiceConfig, DbxIconButtonComponent, DbxIconItemComponent, DbxIconSpacerDirective, DbxIconTileComponent, DbxIconTileDirective, DbxIfSidenavDisplayModeDirective, DbxIframeComponent, DbxInjectionDialogComponent, DbxIntroActionSectionComponent, DbxLabelBlockComponent, 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, DbxPagebarComponent, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPdfMergeEditorComponent, DbxPdfMergeEditorFileUploadComponent, DbxPdfMergeEditorFileUploadHasStateDirective, DbxPdfMergeEditorFileUploadValidatorDirective, DbxPdfMergeEditorStore, DbxPdfMergeEditorStoreDirective, DbxPdfMergeEntryComponent, DbxPdfMergeImportComponent, DbxPdfMergeListComponent, DbxPdfMergePageComponent, DbxPdfMergePageListComponent, DbxPdfMergeUploadActionDirective, DbxPdfMergeUploadButtonDirective, DbxPdfMergeUploadDialogComponent, DbxPdfPreviewComponent, DbxPopoverCloseButtonComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentDirective, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressBarButtonComponent, DbxProgressSpinnerButtonComponent, DbxPromptBoxDirective, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptModule, DbxPromptPageComponent, DbxResizedDirective, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListViewComponent, DbxSelectionValueListViewComponentImportsModule, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxStepBlockComponent, DbxStructureDirective, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxTextChipsComponent, DbxTextColorDirective, DbxTextModule, DbxTwoBlockComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadDirective, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListAccordionViewComponent, DbxValueListAccordionViewContentComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListGridViewContentGroupComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewComponentImportsModule, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWebFilePreviewComponent, DbxWebFilePreviewService, DbxWebModule, DbxWebPageTitleInfoDirective, DbxWebPageTitleService, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, DbxZipBlobPreviewComponent, DbxZipPreviewComponent, PDF_MERGE_PAGE_ID_SEPARATOR, PDF_MERGE_PAGE_TAG_KEY, PDF_MERGE_RESULT_MIME_TYPE, PDF_MERGE_SIDECAR_DESCRIPTION, PDF_MERGE_SIDECAR_FILE_NAME, PDF_MERGE_SIDECAR_VERSION, 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, asPdfMergeFile, attachPdfMergeSidecar, buildPdfMergeEntriesFromSidecar, buildPdfMergeEntry, buildPdfMergeEntrySync, buildPdfMergePagePlan, catchErrorServerParams, classifyPdfMergeFile, compactModeFromInput, compareScreenMediaWidthTypes, compressImageFile, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, copyToClipboardFunction, dbxColorBackground, dbxCuratedColorConfigForString, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxStyleClassCleanSuffix, dbxThemeColorCssToken, dbxThemeColorCssTokenVar, dbxValueListItemDecisionFunction, dbxValueListItemKeyForItemValue, dbxWebDefaultPageTitleDelegate, dbxZipBlobPreviewEntryTreeFromEntries, defaultDbxModelViewTrackerStorageAccessorFactory, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, entryIdForPdfMergePageId, fileAcceptFilterTypeStringArray, fileAcceptFunction, fileAcceptString, fileArrayAcceptMatchFunction, fileArrayAcceptMaxFiles, flattenAccordionGroups, formatPdfMergeEntrySize, index_d$1 as fromDbxModel, injectCopyToClipboardFunction, injectCopyToClipboardFunctionWithSnackbarMessage, isDbxColorConfig, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, makePdfMergePageId, makePdfMergeSidecar, makePdfMergeSidecarPageTag, mapCompactModeObs, mapValuesToValuesListItemConfigObs, mergePdfMergeEntries, index_d as onDbxModel, openEmbedDialog, openIframeDialog, openPdfPreviewDialog, openZipPreviewDialog, overrideClickElementEffect, pdfMergeEntriesUseEncryptedPassthrough, pdfMergePageGroupKeyForSlotId, provideDbxDetachController, provideDbxFileUploadActionCompatable, provideDbxHelpServices, provideDbxLinkify, provideDbxListView, provideDbxListViewWrapper, provideDbxModelService, provideDbxPdfMergeEditorConfig, provideDbxPdfMergeEditorPreserveEntriesOnSlotDestroy, provideDbxProgressButtonGlobalConfig, provideDbxPromptConfirm, provideDbxRouterWebAngularRouterProviderConfig, provideDbxRouterWebUiRouterProviderConfig, provideDbxScreenMediaService, provideDbxStyleService, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideDbxWebFilePreviewServiceEntries, provideDbxWebPageTitleService, provideTwoColumnsContext, readPdfMergeEntryPageMetas, readPdfMergePageTag, readPdfMergeSidecar, registerHelpContextKeysWithDbxHelpContextService, resizeSignal, resolveSideNavDisplayMode, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, splitPdfMergeSidecarDocuments, trackByModelKeyRef, trackByUniqueIdentifier, validatePdfMergeEntry, writePdfMergePageTag };
|
|
13859
13952
|
export type { AbstractDbxValueListViewConfig, AnchorForValueFunction, BuildPdfMergeEntriesFromSidecarConfig, BuildPdfMergeEntryConfig, BuildPdfMergePagePlanInput, CompactContextState, CompactModeDefaultOptions, CompactModeOption, CompactModeOptions, CompressImageDimensions, CompressImageFileResult, CopyToClipboardContent, CopyToClipboardFunction, CopyToClipboardFunctionConfig, CopyToClipboardFunctionWithSnackbarMessage, CopyToClipboardFunctionWithSnackbarMessageConfig, CopyToClipboardFunctionWithSnackbarMessageSnackbarConfig, CopyToClipboardSuccess, DbxAccordionRenderEntry, DbxAccordionRenderGroupFooterEntry, DbxAccordionRenderGroupHeaderEntry, DbxAccordionRenderItemEntry, DbxActionConfirmConfig, DbxActionDialogFunction, DbxActionPopoverFunction, DbxActionPopoverFunctionParams, DbxActionSnackbarActionConfig, DbxActionSnackbarDisplayConfig, DbxActionSnackbarDisplayConfigGeneratorFunction, DbxActionSnackbarEvent, DbxActionSnackbarEventMakeConfig, DbxActionSnackbarGeneratorInput, DbxActionSnackbarGeneratorUndoInput, DbxActionSnackbarGeneratorUndoInputConfig, DbxActionSnackbarKnownType, DbxActionSnackbarServiceConfig, DbxActionSnackbarType, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyType, DbxAnchorListExpandedAnchor, DbxAvatarComponentForContextFunction, DbxAvatarContext, DbxAvatarImageFit, DbxAvatarInjectionComponentConfig, DbxAvatarKey, DbxAvatarSelector, DbxAvatarSize, DbxAvatarStyle, DbxButtonDisplayStylePair, DbxButtonStyle, DbxButtonType, DbxChipDisplay, DbxColorConfig, DbxColorConfigTemplate, DbxColorConfigTemplateKey, DbxColorInput, DbxColorTone, DbxContentBorderOpacity, DbxContentContainerPadding, DbxContentContainerWidth, DbxContentPitScrollableHeight, DbxContentPitScrollableHeightSetting, DbxContentPitScrollableInput, DbxDetachConfig, DbxDetachInstance, DbxDetachKey, DbxDetachOverlayConfig, DbxDetachOverlayData, DbxDetachWindowStateType, DbxDialogContentConfig, DbxDialogContentContainerWidth, DbxDialogContentFooterConfig, DbxDownloadBlobButtonConfig, DbxEmbedComponentElement, DbxEmbedDialogConfig, DbxErrorPopoverConfig, DbxErrorSnackbarConfig, DbxErrorSnackbarData, DbxErrorViewButtonEvent, DbxErrorWidgetEntry, DbxErrorWidgetEntryWithPopupComponentClass, DbxFileListComponentConfig, DbxFileListEntry, DbxFileListItemComponentConfig, DbxFileListItemDetailsDateStyle, DbxFileUploadAreaFilesChangedEvent, DbxFileUploadButtonFilesChangedEvent, DbxFileUploadComponentConfig, DbxFileUploadFilesChangedEvent, DbxFileUploadMode, DbxFilterButtonConfig, DbxFilterButtonConfigWithCustomFilter, DbxFilterButtonConfigWithPresetFilter, DbxFilterComponentConfig, DbxFilterPopoverComponentConfig, DbxFlexSize, DbxHelpContextKey, DbxHelpContextReference, DbxHelpViewPopoverButtonConfig, DbxHelpViewPopoverConfig, DbxHelpViewPopoverConfigWithoutOrigin, DbxHelpWidgetEntryData, DbxHelpWidgetServiceConfigFactory, DbxHelpWidgetServiceEntry, DbxIframeDialogConfig, DbxImageCompressionConfig, DbxInjectionDialogComponentConfig, DbxLinkifyConfig, DbxLinkifyServiceConfigFactory, DbxLinkifyServiceDefaultEntry, DbxLinkifyServiceEntry, DbxLinkifyStringOptions, DbxLinkifyStringType, DbxListComponentScrolledEventPosition, DbxListConfig, DbxListLoadMoreHandler, DbxListScrollDirectionTrigger, DbxListSelectionMode, DbxListTitleGroupData, DbxListTitleGroupTitleDelegate, DbxListViewMetaIconConfig, DbxListWrapperConfig, DbxLoadingComponentState, DbxLoadingIsLoadingOrProgress, DbxLoadingProgress, DbxMakeActionSnackbarGeneratorConfiguration, DbxMakeActionSnackbarGeneratorEventConfiguration, DbxModelFullState, DbxModelIconsMap, DbxModelTypeConfiguration, DbxModelTypeConfigurationMap, DbxModelTypeConfigurationSrefFactory, DbxModelTypeConfigurationSrefFactoryBuilder, DbxModelTypeInfo, DbxModelTypesMap, DbxModelViewTrackerEvent, DbxModelViewTrackerEventSet, DbxPdfMergeEditorAddFileToSlotInput, DbxPdfMergeEditorAddFilesInput, DbxPdfMergeEditorClearEntriesInput, DbxPdfMergeEditorClearEntriesResult, DbxPdfMergeEditorConfig, DbxPdfMergeEditorFileUploadConfig, DbxPdfMergeEditorFileUploadState, DbxPdfMergeEditorFileUploadValidatorSlot, DbxPdfMergeEditorImportErrorReason, DbxPdfMergeEditorImportMergedPdfInput, DbxPdfMergeEditorImportOrigin, DbxPdfMergeEditorImportResult, DbxPdfMergeEditorImportState, DbxPdfMergeEditorOutputSizeState, DbxPdfMergeEditorSourceConfig, DbxPdfMergeEditorValidator, DbxPdfMergeEncryptedHandling, DbxPdfMergeImportConfig, DbxPdfMergeOutputSizeLimitsConfig, DbxPdfMergeUploadButtonConfig, DbxPdfMergeUploadDialogConfig, DbxPdfMergeUploadDialogUploadButtonConfig, DbxPdfPreviewDialogConfig, DbxPopoverComponentConfig, DbxPopoverConfig, DbxPopoverConfigSizing, DbxPopoverKey, DbxPopupComponentConfig, DbxPopupConfig, DbxPopupKey, DbxPopupWindowStateType, DbxPresetFilterMenuConfig, DbxProgressButtonConfig, DbxProgressButtonGlobalConfig, DbxProgressButtonIcon, DbxProgressButtonTargetedConfig, DbxPromptConfirmConfig, DbxPromptConfirmDialogConfig, DbxSectionHeaderConfig, DbxSectionHeaderHType, DbxSectionPageScrollLockedMode, DbxSelectionListWrapperConfig, DbxSelectionValueListViewConfig, DbxSetStyleMode, DbxSidenavPosition, DbxSidenavSidebarState, DbxStepBlockComponentConfig, DbxStyleApplication, DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassDashSuffix, DbxStyleClassSuffix, DbxStyleConfig, DbxStyleName, DbxStyleSupplement, DbxThemeColor, DbxThemeColorExtra, DbxThemeColorExtraSecondary, DbxThemeColorMain, DbxThemeColorMainOrExtra, DbxTwoColumnViewState, DbxValueAsListItem, DbxValueListAccordionViewConfig, DbxValueListGridItemViewGridSizeConfig, DbxValueListGridViewConfig, DbxValueListItem, DbxValueListItemConfig, DbxValueListItemDecisionFunction, DbxValueListItemGroup, DbxValueListViewConfig, DbxValueListViewGroupValuesFunction, DbxWebDefaultPageTitleDelegateConfig, DbxWebFilePreviewComponentConfig, DbxWebFilePreviewServiceEntry, DbxWebFilePreviewServicePreviewComponentFunction, DbxWebFilePreviewServicePreviewComponentFunctionInput, DbxWebFilePreviewServicePreviewDialogFunction, DbxWebFilePreviewServicePreviewDialogFunctionInput, DbxWebFilePreviewServicePreviewDialogFunctionInputWithMatDialog, DbxWebFilePreviewServicePreviewDialogWithComponentFunction, DbxWebFilePreviewServicePreviewDialogWithComponentFunctionInput, DbxWebPageTitleDelegate, DbxWebPageTitleDelegateInput, DbxWebPageTitleDetails, DbxWebPageTitleInfoConfig, DbxWebPageTitleInfoReference, DbxWebPageTitleServiceConfig, DbxWidgetDataPair, DbxWidgetDataPairFactory, DbxWidgetDataPairWithSelection, DbxWidgetEntry, DbxWidgetType, DbxWidgetViewComponentConfig, DbxZipBlobPreviewEntryNodeValue, DbxZipBlobPreviewEntryTreeNode, DbxZipBlobPreviewEntryTreeRoot, DbxZipBlobPreviewGroupData, DbxZipBlobPreviewGroupValue, DbxZipBlobPreviewMode, DbxZipPreviewDialogConfig, DownloadTextContent, FileAcceptFilterTypeString, FileAcceptFilterTypeStringArray, FileAcceptFunction, FileAcceptFunctionInput, FileAcceptString, FileArrayAcceptMatchConfig, FileArrayAcceptMatchFunction, FileArrayAcceptMatchResult, FileArrayAcceptMaxFilesInput, FullDbxPopoverComponentConfig, ImageBitmapToBlobEncoder, ImageBitmapToBlobEncoderInput, ImageCompressionStatus, ListItemModifier, ListSelectionState, ListSelectionStateItem, LoadingComponentState, MergePdfMergeEntriesOptions, ModelViewContext, NavBarContentAlign, NavbarButtonMode, NavbarMode, NumberWithLimit, OverrideClickElementEffectConfig, PdfMergeEditorState, PdfMergeEntry, PdfMergeEntryKind, PdfMergeEntryMove, PdfMergeEntryOriginal, PdfMergeEntryStatus, PdfMergeEntryValidationResult, PdfMergeEntryView, PdfMergePageGroup, PdfMergePageMeta, PdfMergePageMove, PdfMergePageOverride, PdfMergePageRemovedChange, PdfMergePageRotation, PdfMergePageRotationChange, PdfMergePageView, PdfMergeSidecar, PdfMergeSidecarDocument, PdfMergeSidecarDocumentFile, PdfMergeSidecarImportErrorReason, PdfMergeSidecarImportResult, PdfMergeSidecarPage, PdfMergeSidecarReadInput, PdfMergeSidecarReadResult, PdfMergeSidecarResolvedDocument, PdfMergeSidecarResolvedPage, PopoverPositionStrategyConfig, PopupPosition, PopupPositionOffset, ProvideDbxHelpServicesConfig, ProvideDbxLinkifyConfig, ProvideDbxScreenMediaServiceConfig, ProvideDbxStyleServiceConfig, ProvideDbxWebPageTitleServiceConfig, ResizedEvent, ScreenMediaHeightType, ScreenMediaWidthType, ServerErrorParams, SideNavDisplayModeString, SplitPdfMergeSidecarResult, TextChip, TwoColumnsState };
|