@db-ux/ngx-core-components 4.13.1-angular-signal-forms13-577b861 → 4.14.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/ngx-core-components",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.14.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Angular components @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"main": "fesm2022/db-ux-ngx-core-components.mjs",
|
|
12
12
|
"module": "fesm2022/db-ux-ngx-core-components.mjs",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@db-ux/core-components": "4.
|
|
15
|
-
"@db-ux/core-foundations": "4.
|
|
14
|
+
"@db-ux/core-components": "4.14.0",
|
|
15
|
+
"@db-ux/core-foundations": "4.14.0",
|
|
16
16
|
"tslib": "^2.3.0"
|
|
17
17
|
},
|
|
18
18
|
"publishConfig": {
|
|
@@ -242,11 +242,13 @@ type ValueProps = {
|
|
|
242
242
|
*/
|
|
243
243
|
value?: any;
|
|
244
244
|
};
|
|
245
|
-
type
|
|
245
|
+
type DisabledProps = {
|
|
246
246
|
/**
|
|
247
|
-
* The disabled attribute can be set to keep a user from clicking on the
|
|
247
|
+
* The disabled attribute can be set to keep a user from clicking on the item.
|
|
248
248
|
*/
|
|
249
249
|
disabled?: boolean | string;
|
|
250
|
+
};
|
|
251
|
+
type BaseFormProps = {
|
|
250
252
|
/**
|
|
251
253
|
* The label attribute specifies the caption of the form element.
|
|
252
254
|
*/
|
|
@@ -255,7 +257,7 @@ type BaseFormProps = {
|
|
|
255
257
|
* The name attribute gives the name of the form control, as used in form submission and in the form element's elements object.
|
|
256
258
|
*/
|
|
257
259
|
name?: string;
|
|
258
|
-
};
|
|
260
|
+
} & DisabledProps;
|
|
259
261
|
type CustomFormProps = {
|
|
260
262
|
/**
|
|
261
263
|
* Overwrites auto handling for aria-describedby.
|
|
@@ -542,10 +544,31 @@ type ValueLabelType = {
|
|
|
542
544
|
value: string;
|
|
543
545
|
label?: string;
|
|
544
546
|
};
|
|
547
|
+
type OverflowScrollButtonProps = {
|
|
548
|
+
/**
|
|
549
|
+
* Change amount of scroll distance when clicking on an overflow scroll arrow button.
|
|
550
|
+
*/
|
|
551
|
+
arrowScrollDistance?: number | string;
|
|
552
|
+
/**
|
|
553
|
+
* Set the text for the scroll left button
|
|
554
|
+
*/
|
|
555
|
+
scrollLeftText?: string;
|
|
556
|
+
/**
|
|
557
|
+
* Set the text for the scroll right button
|
|
558
|
+
*/
|
|
559
|
+
scrollRightText?: string;
|
|
560
|
+
};
|
|
561
|
+
type OverflowScrollButtonState = {
|
|
562
|
+
scroll: (left?: boolean) => void;
|
|
563
|
+
showScrollLeft?: boolean;
|
|
564
|
+
showScrollRight?: boolean;
|
|
565
|
+
evaluateScrollButtons: (tabList: Element) => void;
|
|
566
|
+
};
|
|
545
567
|
type DocumentScrollState = {
|
|
546
568
|
_documentScrollListenerCallbackId?: string;
|
|
547
569
|
handleDocumentScroll: (event: any, parent?: HTMLElement) => void;
|
|
548
|
-
|
|
570
|
+
_intersectionObserverCallbackId?: string;
|
|
571
|
+
_resizeObserverCallbackId?: string;
|
|
549
572
|
};
|
|
550
573
|
type PopoverState = {
|
|
551
574
|
handleEscape: (event: any) => void;
|
|
@@ -1097,7 +1120,7 @@ declare class DBCheckbox implements AfterViewInit, ControlValueAccessor, OnDestr
|
|
|
1097
1120
|
*/
|
|
1098
1121
|
private enableAttributePassing;
|
|
1099
1122
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
1100
|
-
hidden:
|
|
1123
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1101
1124
|
errors: InputSignal<readonly {
|
|
1102
1125
|
message?: string;
|
|
1103
1126
|
}[] | undefined>;
|
|
@@ -1410,6 +1433,10 @@ type DBCustomSelectDefaultState = {
|
|
|
1410
1433
|
_infoTextId?: string;
|
|
1411
1434
|
_internalChangeTimestamp: number;
|
|
1412
1435
|
_documentClickListenerCallbackId?: string;
|
|
1436
|
+
_documentScrollListenerCallbackId?: string;
|
|
1437
|
+
handleDocumentScroll: (event: any) => void;
|
|
1438
|
+
_intersectionObserverCallbackId?: string;
|
|
1439
|
+
_resizeObserverCallbackId?: string;
|
|
1413
1440
|
_searchValue?: string;
|
|
1414
1441
|
_userInteraction?: boolean;
|
|
1415
1442
|
getNativeSelectValue: () => string;
|
|
@@ -1420,7 +1447,7 @@ type DBCustomSelectDefaultState = {
|
|
|
1420
1447
|
searchEnabled: boolean;
|
|
1421
1448
|
amountOptions: number;
|
|
1422
1449
|
setDescById: (descId?: string) => void;
|
|
1423
|
-
handleTagRemove: (option: CustomSelectOptionType, event?: ClickEvent<HTMLButtonElement> | void) => void;
|
|
1450
|
+
handleTagRemove: (option: CustomSelectOptionType, event?: ClickEvent<HTMLButtonElement> | Event | void) => void;
|
|
1424
1451
|
handleSummaryFocus: () => void;
|
|
1425
1452
|
handleSelect: (value?: string) => void;
|
|
1426
1453
|
handleSelectAll: (event: any) => void;
|
|
@@ -1541,7 +1568,8 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
|
|
|
1541
1568
|
_documentClickListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1542
1569
|
_internalChangeTimestamp: _angular_core.WritableSignal<number>;
|
|
1543
1570
|
_documentScrollListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1544
|
-
|
|
1571
|
+
_intersectionObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1572
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1545
1573
|
_searchValue: _angular_core.WritableSignal<string | undefined>;
|
|
1546
1574
|
selectAllChecked: _angular_core.WritableSignal<boolean>;
|
|
1547
1575
|
selectAllIndeterminate: _angular_core.WritableSignal<boolean>;
|
|
@@ -1556,7 +1584,7 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
|
|
|
1556
1584
|
getOptionLabel(option: CustomSelectOptionType): string;
|
|
1557
1585
|
getOptionChecked(value?: string): boolean | undefined;
|
|
1558
1586
|
getTagRemoveLabel(option: CustomSelectOptionType): string;
|
|
1559
|
-
handleTagRemove(option: CustomSelectOptionType, event?: ClickEvent<HTMLButtonElement> |
|
|
1587
|
+
handleTagRemove(option: CustomSelectOptionType, event?: ClickEvent<HTMLButtonElement> | Event | void): void;
|
|
1560
1588
|
handleAutoPlacement(): void;
|
|
1561
1589
|
handleArrowDownUp(event: any): void;
|
|
1562
1590
|
handleKeyboardPress(event: any): void;
|
|
@@ -1584,7 +1612,7 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
|
|
|
1584
1612
|
*/
|
|
1585
1613
|
private enableAttributePassing;
|
|
1586
1614
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
1587
|
-
hidden:
|
|
1615
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1588
1616
|
errors: InputSignal<readonly {
|
|
1589
1617
|
message?: string;
|
|
1590
1618
|
}[] | undefined>;
|
|
@@ -1595,11 +1623,15 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
|
|
|
1595
1623
|
/** Signal Forms alias — maps to 'values' for FormValueControl duck-typing */
|
|
1596
1624
|
value: ModelSignal<any>;
|
|
1597
1625
|
/**
|
|
1598
|
-
* @internal Tracks the origin of the last write to prevent
|
|
1599
|
-
*
|
|
1600
|
-
*
|
|
1626
|
+
* @internal Tracks the origin of the last write to prevent redundant
|
|
1627
|
+
* re-processing within the same synchronous microtask.
|
|
1628
|
+
* NOTE: The actual infinite-loop prevention relies on Angular's signal
|
|
1629
|
+
* equality check (setting a signal to the same value does not re-notify).
|
|
1630
|
+
* This marker is an optimization to skip unnecessary array conversions.
|
|
1601
1631
|
*/
|
|
1602
1632
|
private _syncSource;
|
|
1633
|
+
/** @internal Tracks whether the value alias has been explicitly bound (driven by Signal Forms). */
|
|
1634
|
+
private _valueAliasActive;
|
|
1603
1635
|
/** @internal Sync value → values (Signal Forms writes to value) */
|
|
1604
1636
|
private _syncValueToValues;
|
|
1605
1637
|
/** @internal Sync values → value (CVA/user interaction writes to values) */
|
|
@@ -1739,7 +1771,7 @@ declare class DBCustomSelectListItem implements AfterViewInit, ControlValueAcces
|
|
|
1739
1771
|
*/
|
|
1740
1772
|
private enableAttributePassing;
|
|
1741
1773
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
1742
|
-
hidden:
|
|
1774
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1743
1775
|
errors: InputSignal<readonly {
|
|
1744
1776
|
message?: string;
|
|
1745
1777
|
}[] | undefined>;
|
|
@@ -2237,7 +2269,7 @@ declare class DBInput implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
2237
2269
|
*/
|
|
2238
2270
|
private enableAttributePassing;
|
|
2239
2271
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
2240
|
-
hidden:
|
|
2272
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2241
2273
|
errors: InputSignal<readonly {
|
|
2242
2274
|
message?: string;
|
|
2243
2275
|
}[] | undefined>;
|
|
@@ -2677,7 +2709,6 @@ type DBPopoverState = DBPopoverDefaultState & GlobalState & PopoverState & Initi
|
|
|
2677
2709
|
declare class DBPopover implements AfterViewInit, OnDestroy {
|
|
2678
2710
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2679
2711
|
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2680
|
-
placement: InputSignal<DBPopoverProps["placement"]>;
|
|
2681
2712
|
id: InputSignal<DBPopoverProps["id"]>;
|
|
2682
2713
|
propOverrides: InputSignal<DBPopoverProps["propOverrides"]>;
|
|
2683
2714
|
className: InputSignal<DBPopoverProps["className"]>;
|
|
@@ -2687,11 +2718,13 @@ declare class DBPopover implements AfterViewInit, OnDestroy {
|
|
|
2687
2718
|
open: InputSignal<DBPopoverProps["open"]>;
|
|
2688
2719
|
delay: InputSignal<DBPopoverProps["delay"]>;
|
|
2689
2720
|
width: InputSignal<DBPopoverProps["width"]>;
|
|
2721
|
+
placement: InputSignal<DBPopoverProps["placement"]>;
|
|
2690
2722
|
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
2691
2723
|
initialized: _angular_core.WritableSignal<boolean>;
|
|
2692
2724
|
isExpanded: _angular_core.WritableSignal<boolean | undefined>;
|
|
2693
2725
|
_documentScrollListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
2694
|
-
|
|
2726
|
+
_intersectionObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
2727
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
2695
2728
|
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
2696
2729
|
handleEscape(event: any): void;
|
|
2697
2730
|
handleAutoPlacement(): void;
|
|
@@ -2710,7 +2743,7 @@ declare class DBPopover implements AfterViewInit, OnDestroy {
|
|
|
2710
2743
|
ngAfterViewInit(): void;
|
|
2711
2744
|
ngOnDestroy(): void;
|
|
2712
2745
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBPopover, never>;
|
|
2713
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBPopover, "db-popover", never, { "
|
|
2746
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBPopover, "db-popover", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; }, {}, never, ["[trigger]", "*"], true, never>;
|
|
2714
2747
|
}
|
|
2715
2748
|
|
|
2716
2749
|
type DBRadioDefaultProps = {};
|
|
@@ -2759,7 +2792,7 @@ declare class DBRadio implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
2759
2792
|
*/
|
|
2760
2793
|
private enableAttributePassing;
|
|
2761
2794
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
2762
|
-
hidden:
|
|
2795
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2763
2796
|
errors: InputSignal<readonly {
|
|
2764
2797
|
message?: string;
|
|
2765
2798
|
}[] | undefined>;
|
|
@@ -2948,7 +2981,7 @@ declare class DBSelect implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
2948
2981
|
*/
|
|
2949
2982
|
private enableAttributePassing;
|
|
2950
2983
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
2951
|
-
hidden:
|
|
2984
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2952
2985
|
errors: InputSignal<readonly {
|
|
2953
2986
|
message?: string;
|
|
2954
2987
|
}[] | undefined>;
|
|
@@ -3121,7 +3154,7 @@ declare class DBSwitch implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
3121
3154
|
*/
|
|
3122
3155
|
private enableAttributePassing;
|
|
3123
3156
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
3124
|
-
hidden:
|
|
3157
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3125
3158
|
errors: InputSignal<readonly {
|
|
3126
3159
|
message?: string;
|
|
3127
3160
|
}[] | undefined>;
|
|
@@ -3223,7 +3256,7 @@ declare class DBTabItem implements AfterViewInit, ControlValueAccessor, OnDestro
|
|
|
3223
3256
|
*/
|
|
3224
3257
|
private enableAttributePassing;
|
|
3225
3258
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
3226
|
-
hidden:
|
|
3259
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3227
3260
|
errors: InputSignal<readonly {
|
|
3228
3261
|
message?: string;
|
|
3229
3262
|
}[] | undefined>;
|
|
@@ -3715,10 +3748,6 @@ declare const TabsInitialSelectedModeList: readonly ["auto", "manually"];
|
|
|
3715
3748
|
type TabsInitialSelectedModeType = (typeof TabsInitialSelectedModeList)[number];
|
|
3716
3749
|
type DBSimpleTabProps = DBTabItemProps & DBTabPanelProps;
|
|
3717
3750
|
type DBTabsDefaultProps = {
|
|
3718
|
-
/**
|
|
3719
|
-
* Change amount of distance if you click on an arrow, only available with behavior="arrows"
|
|
3720
|
-
*/
|
|
3721
|
-
arrowScrollDistance?: number | string;
|
|
3722
3751
|
/**
|
|
3723
3752
|
* Show a scrollbar or buttons with arrows to navigate for horizontal tabs with overflow visible
|
|
3724
3753
|
*/
|
|
@@ -3758,24 +3787,22 @@ type DBTabsEventProps = {
|
|
|
3758
3787
|
*/
|
|
3759
3788
|
tabSelect?: (event?: InputEvent<HTMLElement>) => void;
|
|
3760
3789
|
};
|
|
3761
|
-
type DBTabsProps = DBTabsDefaultProps & GlobalProps & OrientationProps & WidthProps & AlignmentProps & DBTabsEventProps;
|
|
3790
|
+
type DBTabsProps = DBTabsDefaultProps & GlobalProps & OrientationProps & WidthProps & AlignmentProps & OverflowScrollButtonProps & DBTabsEventProps;
|
|
3762
3791
|
type DBTabsDefaultState = {
|
|
3763
3792
|
_name: string;
|
|
3764
3793
|
scrollContainer?: Element | null;
|
|
3765
|
-
scroll: (left?: boolean) => void;
|
|
3766
|
-
showScrollLeft?: boolean;
|
|
3767
|
-
showScrollRight?: boolean;
|
|
3768
|
-
evaluateScrollButtons: (tabList: Element) => void;
|
|
3769
3794
|
convertTabs: () => DBSimpleTabProps[];
|
|
3770
3795
|
initTabList: () => void;
|
|
3771
3796
|
initTabs: (init?: boolean) => void;
|
|
3772
3797
|
handleChange: (event: InputEvent<HTMLElement>) => void;
|
|
3773
|
-
|
|
3798
|
+
_resizeObserverCallbackId?: string;
|
|
3774
3799
|
};
|
|
3775
|
-
type DBTabsState = DBTabsDefaultState & InitializedState;
|
|
3800
|
+
type DBTabsState = DBTabsDefaultState & InitializedState & OverflowScrollButtonState;
|
|
3776
3801
|
|
|
3777
3802
|
declare class DBTabs implements AfterViewInit, OnDestroy {
|
|
3778
3803
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3804
|
+
protected readonly DEFAULT_SCROLL_LEFT: string;
|
|
3805
|
+
protected readonly DEFAULT_SCROLL_RIGHT: string;
|
|
3779
3806
|
name: InputSignal<DBTabsProps["name"]>;
|
|
3780
3807
|
tabs: InputSignal<DBTabsProps["tabs"]>;
|
|
3781
3808
|
arrowScrollDistance: InputSignal<DBTabsProps["arrowScrollDistance"]>;
|
|
@@ -3788,6 +3815,8 @@ declare class DBTabs implements AfterViewInit, OnDestroy {
|
|
|
3788
3815
|
className: InputSignal<DBTabsProps["className"]>;
|
|
3789
3816
|
alignment: InputSignal<DBTabsProps["alignment"]>;
|
|
3790
3817
|
width: InputSignal<DBTabsProps["width"]>;
|
|
3818
|
+
scrollLeftText: InputSignal<DBTabsProps["scrollLeftText"]>;
|
|
3819
|
+
scrollRightText: InputSignal<DBTabsProps["scrollRightText"]>;
|
|
3791
3820
|
indexChange: _angular_core.OutputEmitterRef<number | void | undefined>;
|
|
3792
3821
|
tabSelect: _angular_core.OutputEmitterRef<void | Event | undefined>;
|
|
3793
3822
|
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
@@ -3796,7 +3825,7 @@ declare class DBTabs implements AfterViewInit, OnDestroy {
|
|
|
3796
3825
|
showScrollLeft: _angular_core.WritableSignal<boolean | undefined>;
|
|
3797
3826
|
showScrollRight: _angular_core.WritableSignal<boolean | undefined>;
|
|
3798
3827
|
scrollContainer: _angular_core.WritableSignal<Element | null | undefined>;
|
|
3799
|
-
|
|
3828
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
3800
3829
|
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
3801
3830
|
convertTabs(): any;
|
|
3802
3831
|
evaluateScrollButtons(tList: Element): void;
|
|
@@ -3817,7 +3846,7 @@ declare class DBTabs implements AfterViewInit, OnDestroy {
|
|
|
3817
3846
|
ngAfterViewInit(): void;
|
|
3818
3847
|
ngOnDestroy(): void;
|
|
3819
3848
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTabs, never>;
|
|
3820
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTabs, "db-tabs", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "arrowScrollDistance": { "alias": "arrowScrollDistance"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "behavior": { "alias": "behavior"; "required": false; "isSignal": true; }; "initialSelectedMode": { "alias": "initialSelectedMode"; "required": false; "isSignal": true; }; "initialSelectedIndex": { "alias": "initialSelectedIndex"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, { "indexChange": "indexChange"; "tabSelect": "tabSelect"; }, never, ["*"], true, never>;
|
|
3849
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTabs, "db-tabs", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "arrowScrollDistance": { "alias": "arrowScrollDistance"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "behavior": { "alias": "behavior"; "required": false; "isSignal": true; }; "initialSelectedMode": { "alias": "initialSelectedMode"; "required": false; "isSignal": true; }; "initialSelectedIndex": { "alias": "initialSelectedIndex"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "scrollLeftText": { "alias": "scrollLeftText"; "required": false; "isSignal": true; }; "scrollRightText": { "alias": "scrollRightText"; "required": false; "isSignal": true; }; }, { "indexChange": "indexChange"; "tabSelect": "tabSelect"; }, never, ["*"], true, never>;
|
|
3821
3850
|
}
|
|
3822
3851
|
|
|
3823
3852
|
declare const TagBehaviorList: readonly ["static", "removable"];
|
|
@@ -4008,7 +4037,7 @@ declare class DBTextarea implements AfterViewInit, ControlValueAccessor, OnDestr
|
|
|
4008
4037
|
*/
|
|
4009
4038
|
private enableAttributePassing;
|
|
4010
4039
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
4011
|
-
hidden:
|
|
4040
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4012
4041
|
errors: InputSignal<readonly {
|
|
4013
4042
|
message?: string;
|
|
4014
4043
|
}[] | undefined>;
|
|
@@ -4078,7 +4107,6 @@ declare class DBTooltip implements AfterViewInit, OnDestroy {
|
|
|
4078
4107
|
id: InputSignal<DBTooltipProps["id"]>;
|
|
4079
4108
|
propOverrides: InputSignal<DBTooltipProps["propOverrides"]>;
|
|
4080
4109
|
variant: InputSignal<DBTooltipProps["variant"]>;
|
|
4081
|
-
placement: InputSignal<DBTooltipProps["placement"]>;
|
|
4082
4110
|
className: InputSignal<DBTooltipProps["className"]>;
|
|
4083
4111
|
emphasis: InputSignal<DBTooltipProps["emphasis"]>;
|
|
4084
4112
|
wrap: InputSignal<DBTooltipProps["wrap"]>;
|
|
@@ -4086,12 +4114,14 @@ declare class DBTooltip implements AfterViewInit, OnDestroy {
|
|
|
4086
4114
|
delay: InputSignal<DBTooltipProps["delay"]>;
|
|
4087
4115
|
width: InputSignal<DBTooltipProps["width"]>;
|
|
4088
4116
|
showArrow: InputSignal<DBTooltipProps["showArrow"]>;
|
|
4117
|
+
placement: InputSignal<DBTooltipProps["placement"]>;
|
|
4089
4118
|
text: InputSignal<DBTooltipProps["text"]>;
|
|
4090
4119
|
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
4091
4120
|
_id: _angular_core.WritableSignal<string | undefined>;
|
|
4092
4121
|
initialized: _angular_core.WritableSignal<boolean>;
|
|
4093
4122
|
_documentScrollListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
4094
|
-
|
|
4123
|
+
_intersectionObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
4124
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
4095
4125
|
_attachedParent: _angular_core.WritableSignal<HTMLElement | undefined>;
|
|
4096
4126
|
_attachedId: _angular_core.WritableSignal<string | undefined>;
|
|
4097
4127
|
_activeTriggerCount: _angular_core.WritableSignal<number | undefined>;
|
|
@@ -4121,7 +4151,7 @@ declare class DBTooltip implements AfterViewInit, OnDestroy {
|
|
|
4121
4151
|
ngAfterViewInit(): void;
|
|
4122
4152
|
ngOnDestroy(): void;
|
|
4123
4153
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTooltip, never>;
|
|
4124
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTooltip, "db-tooltip", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "
|
|
4154
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTooltip, "db-tooltip", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "emphasis": { "alias": "emphasis"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "showArrow": { "alias": "showArrow"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
4125
4155
|
}
|
|
4126
4156
|
|
|
4127
4157
|
declare const DEFAULT_ID: string;
|
|
@@ -4140,6 +4170,8 @@ declare const DEFAULT_INVALID_MESSAGE: string;
|
|
|
4140
4170
|
declare const DEFAULT_REMOVE: string;
|
|
4141
4171
|
declare const DEFAULT_BACK: string;
|
|
4142
4172
|
declare const DEFAULT_SELECTED: string;
|
|
4173
|
+
declare const DEFAULT_SCROLL_LEFT: string;
|
|
4174
|
+
declare const DEFAULT_SCROLL_RIGHT: string;
|
|
4143
4175
|
declare const DEFAULT_BURGER_MENU: string;
|
|
4144
4176
|
declare const DEFAULT_ICON: string;
|
|
4145
4177
|
declare const DEFAULT_ROWS: number;
|
|
@@ -4215,30 +4247,42 @@ declare const TESTING_VIEWPORTS: {
|
|
|
4215
4247
|
declare const DB_UX_LOCAL_STORAGE_FRAMEWORK = "db-ux-framework";
|
|
4216
4248
|
declare const DB_UX_LOCAL_STORAGE_MODE = "db-ux-mode";
|
|
4217
4249
|
|
|
4218
|
-
|
|
4250
|
+
/**
|
|
4251
|
+
* Generic base class for singleton document event listeners.
|
|
4252
|
+
* Manages a shared set of callbacks dispatched when a document-level
|
|
4253
|
+
* event fires.
|
|
4254
|
+
*
|
|
4255
|
+
* Subclasses own their static state (callbacks, instance) and expose
|
|
4256
|
+
* it via the abstract accessor methods below.
|
|
4257
|
+
*
|
|
4258
|
+
* @template TEvent - The event type passed to callbacks (Event, MouseEvent, etc.)
|
|
4259
|
+
*/
|
|
4260
|
+
declare abstract class AbstractDocumentListener<TEvent = any> {
|
|
4261
|
+
/**
|
|
4262
|
+
* Subclasses must return a reference to their own static callbacks store.
|
|
4263
|
+
*/
|
|
4264
|
+
protected abstract getCallbacks(): Record<string, (event: TEvent) => void>;
|
|
4265
|
+
addCallback(callback: (event: TEvent) => void): string;
|
|
4266
|
+
removeCallback(id: string): void;
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4269
|
+
declare class DocumentClickListener extends AbstractDocumentListener {
|
|
4219
4270
|
private static callbacks;
|
|
4220
4271
|
private static _instance;
|
|
4221
4272
|
private static runCallbacks;
|
|
4222
4273
|
constructor();
|
|
4223
|
-
|
|
4224
|
-
removeCallback(id: string): void;
|
|
4274
|
+
protected getCallbacks(): Record<string, (event: any) => void>;
|
|
4225
4275
|
}
|
|
4226
4276
|
|
|
4227
|
-
declare class DocumentScrollListener {
|
|
4277
|
+
declare class DocumentScrollListener extends AbstractDocumentListener {
|
|
4228
4278
|
private static callbacks;
|
|
4229
4279
|
private static _instance;
|
|
4230
4280
|
private static runCallbacks;
|
|
4231
4281
|
private ticking;
|
|
4232
4282
|
constructor();
|
|
4233
|
-
|
|
4234
|
-
removeCallback(id: string): void;
|
|
4283
|
+
protected getCallbacks(): Record<string, (event: any) => void>;
|
|
4235
4284
|
}
|
|
4236
4285
|
|
|
4237
|
-
interface DBDataOutsidePair {
|
|
4238
|
-
vx?: 'left' | 'right';
|
|
4239
|
-
vy?: 'top' | 'bottom';
|
|
4240
|
-
}
|
|
4241
|
-
declare const handleDataOutside: (el: HTMLElement) => DBDataOutsidePair;
|
|
4242
4286
|
declare const handleFixedDropdown: (element: HTMLElement, parent: HTMLElement, placement: string) => void;
|
|
4243
4287
|
declare const getFloatingProps: (element: HTMLElement, parent: HTMLElement, placement: string) => {
|
|
4244
4288
|
top: number;
|
|
@@ -4252,8 +4296,36 @@ declare const getFloatingProps: (element: HTMLElement, parent: HTMLElement, plac
|
|
|
4252
4296
|
correctedPlacement: string;
|
|
4253
4297
|
innerWidth: number;
|
|
4254
4298
|
innerHeight: number;
|
|
4299
|
+
outsideYBoth?: undefined;
|
|
4300
|
+
} | {
|
|
4301
|
+
top: number;
|
|
4302
|
+
bottom: number;
|
|
4303
|
+
right: number;
|
|
4304
|
+
height: number;
|
|
4305
|
+
width: number;
|
|
4306
|
+
left: number;
|
|
4307
|
+
childHeight: number;
|
|
4308
|
+
childWidth: number;
|
|
4309
|
+
correctedPlacement: string;
|
|
4310
|
+
innerWidth: number;
|
|
4311
|
+
innerHeight: number;
|
|
4312
|
+
outsideYBoth: boolean;
|
|
4255
4313
|
};
|
|
4256
|
-
declare const handleFixedPopover: (element: HTMLElement, parent: HTMLElement, placement
|
|
4314
|
+
declare const handleFixedPopover: (element: HTMLElement, parent: HTMLElement, placement?: string) => void;
|
|
4315
|
+
/**
|
|
4316
|
+
* Detects whether a floating element overflows the viewport edges
|
|
4317
|
+
* and sets `data-outside-vy` / `data-outside-vx` attributes accordingly.
|
|
4318
|
+
* CSS rules can use these attributes to flip/reposition the element.
|
|
4319
|
+
*
|
|
4320
|
+
* If the element was already flipped (has existing data-outside-* attributes),
|
|
4321
|
+
* it checks whether the flipped position would overflow on the opposite side
|
|
4322
|
+
* using the parent's rect as reference, preventing infinite flip-flop.
|
|
4323
|
+
*/
|
|
4324
|
+
interface DBDataOutsidePair {
|
|
4325
|
+
vx?: 'left' | 'right';
|
|
4326
|
+
vy?: 'top' | 'bottom';
|
|
4327
|
+
}
|
|
4328
|
+
declare const handleDataOutside: (el: HTMLElement) => DBDataOutsidePair;
|
|
4257
4329
|
|
|
4258
|
-
export { AccordionBehaviorList, AccordionVariantList, AlignmentList, AutoCompleteList, BadgePlacementList, ButtonTypeList, ButtonVariantList, COLOR, COLORS, COLORS_SIMPLE, COLOR_CONST, COLOR_SIMPLE, CardBehaviorList, CardElevationLevelList, CustomSelectDropdownWidthList, CustomSelectListItemTypeList, DBAccordion, DBAccordionItem, DBBadge, DBBrand, DBButton, DBCard, DBCheckbox, DBCustomButton, DBCustomSelect, DBCustomSelectDropdown, DBCustomSelectFormField, DBCustomSelectList, DBCustomSelectListItem, DBDivider, DBDrawer, DBHeader, DBIcon, DBInfotext, DBInput, DBLink, DBNavigation, DBNavigationItem, DBNotification, DBPage, DBPopover, DBRadio, DBSection, DBSelect, DBStack, DBSwitch, DBTabItem, DBTabList, DBTabPanel, DBTable, DBTableBody, DBTableCaption, DBTableColumnsSizeList, DBTableDataCell, DBTableDividerList, DBTableFooter, DBTableHead, DBTableHeaderCell, DBTableHeaderCellScopeList, DBTableMobileVariantList, DBTableRow, DBTableRowSizeList, DBTableRowSubHeaderEmphasisList, DBTableStickyHeaderList, DBTableVariantList, DBTabs, DBTag, DBTextarea, DBTooltip, DB_UX_LOCAL_STORAGE_FRAMEWORK, DB_UX_LOCAL_STORAGE_MODE, DEFAULT_BACK, DEFAULT_BURGER_MENU, DEFAULT_CLOSE_BUTTON, DEFAULT_DATALIST_ID_SUFFIX, DEFAULT_ICON, DEFAULT_ID, DEFAULT_INVALID_MESSAGE, DEFAULT_INVALID_MESSAGE_ID_SUFFIX, DEFAULT_LABEL, DEFAULT_LABEL_ID_SUFFIX, DEFAULT_MESSAGE, DEFAULT_MESSAGE_ID_SUFFIX, DEFAULT_PLACEHOLDER, DEFAULT_PLACEHOLDER_ID_SUFFIX, DEFAULT_REMOVE, DEFAULT_ROWS, DEFAULT_SELECTED, DEFAULT_SELECT_ID_SUFFIX, DEFAULT_VALID_MESSAGE, DEFAULT_VALID_MESSAGE_ID_SUFFIX, DEFAULT_VIEWPORT, DENSITIES, DENSITY, DENSITY_CONST, DESKTOP_VIEWPORT, DividerMarginList, DividerVariantList, DocumentClickListener, DocumentScrollListener, DrawerBackdropList, DrawerDirectionList, DrawerPositionList, DrawerVariantList, EmphasisList, FieldSizingList, GapSpacingList, IconWeightList, InputTypeList, LabelVariantHorizontalList, LabelVariantList, LinkContentList, LinkReferrerPolicyList, LinkSizeList, LinkTargetList, LinkVariantList, MarginList, MaxWidthList, MetaNavigationDirective, NavigationContentDirective, NavigationDirective, NavigationItemSafeTriangle, NotificationAriaLiveList, NotificationLinkVariantList, NotificationVariantList, OrientationList, PageDocumentOverflowList, PageVariantList, PlacementHorizontalList, PlacementList, PlacementVerticalList, PopoverDelayList, PopoverWidthList, SEMANTIC, SEMANTICS, SecondaryActionDirective, SelectedTypeList, SemanticList, SizeList, SpacingList, StackAlignmentList, StackDirectionList, StackJustifyContentList, StackVariantList, TESTING_VIEWPORTS, TabsBehaviorList, TabsInitialSelectedModeList, TagBehaviorList, TextareaResizeList, TextareaWrapList, TooltipVariantList, ValidationList, WidthList, addAttributeToChildren, cls, delay, getBoolean, getBooleanAsString, getFloatingProps, getHideProp, getInputValue, getNotificationRole, getNumber, getOptionKey, getSearchInput, getStep, handleDataOutside, handleFixedDropdown, handleFixedPopover, hasVoiceOver, isArrayOfStrings, isEventTargetNavigationItem, isIOSSafari, isKeyboardEvent, stringPropVisible, uuid };
|
|
4259
|
-
export type { AccordionBehaviorType, AccordionVariantType, ActiveProps, AlignmentProps, AlignmentType, AriaControlsProps, AutoCompleteType, BadgePlacementType, BaseFormProps, ButtonTypeType, ButtonVariantType, CardBehaviorType, CardElevationLevelType, ChangeEvent, ChangeEventProps, ChangeEventState, ClassNameArg, ClickEvent, ClickEventProps, ClickEventState, CloseEventProps, CloseEventState, ContainerWidthProps, ContentSlotProps, CustomFormProps, CustomSelectDropdownWidthType, CustomSelectListItemTypeType, CustomSelectOptionType, DBAccordionDefaultProps, DBAccordionDefaultState, DBAccordionItemDefaultProps, DBAccordionItemDefaultState, DBAccordionItemProps, DBAccordionItemState, DBAccordionProps, DBAccordionState, DBBadgeDefaultProps, DBBadgeDefaultState, DBBadgeProps, DBBadgeState, DBBrandDefaultProps, DBBrandDefaultState, DBBrandProps, DBBrandState, DBButtonDefaultProps, DBButtonDefaultState, DBButtonProps, DBButtonSharedProps, DBButtonState, DBCardDefaultProps, DBCardDefaultState, DBCardProps, DBCardState, DBCheckboxDefaultProps, DBCheckboxDefaultState, DBCheckboxProps, DBCheckboxState, DBCustomButtonDefaultProps, DBCustomButtonDefaultState, DBCustomButtonProps, DBCustomButtonState, DBCustomSelectDefaultProps, DBCustomSelectDefaultState, DBCustomSelectDropdownDefaultProps, DBCustomSelectDropdownDefaultState, DBCustomSelectDropdownProps, DBCustomSelectDropdownState, DBCustomSelectEvents, DBCustomSelectFormFieldDefaultProps, DBCustomSelectFormFieldDefaultState, DBCustomSelectFormFieldProps, DBCustomSelectFormFieldState, DBCustomSelectListDefaultProps, DBCustomSelectListDefaultState, DBCustomSelectListItemDefaultProps, DBCustomSelectListItemDefaultState, DBCustomSelectListItemExtraProps, DBCustomSelectListItemProps, DBCustomSelectListItemState, DBCustomSelectListProps, DBCustomSelectListState, DBCustomSelectProps, DBCustomSelectState, DBDataOutsidePair, DBDividerDefaultProps, DBDividerDefaultState, DBDividerProps, DBDividerState, DBDrawerDefaultProps, DBDrawerDefaultState, DBDrawerProps, DBDrawerState, DBHeaderDefaultProps, DBHeaderDefaultState, DBHeaderProps, DBHeaderState, DBIconDefaultProps, DBIconDefaultState, DBIconProps, DBIconState, DBInfotextDefaultProps, DBInfotextDefaultState, DBInfotextProps, DBInfotextState, DBInputDefaultProps, DBInputDefaultState, DBInputProps, DBInputState, DBLinkDefaultProps, DBLinkDefaultState, DBLinkProps, DBLinkState, DBNavigationDefaultProps, DBNavigationDefaultState, DBNavigationItemDefaultProps, DBNavigationItemDefaultState, DBNavigationItemProps, DBNavigationItemState, DBNavigationProps, DBNavigationState, DBNotificationDefaultProps, DBNotificationDefaultState, DBNotificationProps, DBNotificationState, DBPageDefaultProps, DBPageDefaultState, DBPageProps, DBPageState, DBPopoverDefaultProps, DBPopoverDefaultState, DBPopoverProps, DBPopoverState, DBRadioDefaultProps, DBRadioDefaultState, DBRadioProps, DBRadioState, DBSectionDefaultProps, DBSectionProps, DBSelectDefaultProps, DBSelectDefaultState, DBSelectOptionType, DBSelectProps, DBSelectState, DBSimpleTabProps, DBStackDefaultProps, DBStackDefaultState, DBStackProps, DBStackState, DBSwitchDefaultProps, DBSwitchDefaultState, DBSwitchProps, DBSwitchState, DBTabItemDefaultProps, DBTabItemDefaultState, DBTabItemProps, DBTabItemState, DBTabListDefaultProps, DBTabListDefaultState, DBTabListProps, DBTabListState, DBTabPanelDefaultProps, DBTabPanelDefaultState, DBTabPanelProps, DBTabPanelState, DBTableBodyDefaultProps, DBTableBodyDefaultState, DBTableBodyProps, DBTableBodyState, DBTableCaptionDefaultProps, DBTableCaptionDefaultState, DBTableCaptionProps, DBTableCaptionState, DBTableCellProps, DBTableColumnsSizeType, DBTableData, DBTableDataCellDefaultProps, DBTableDataCellDefaultState, DBTableDataCellProps, DBTableDataCellState, DBTableDefaultProps, DBTableDefaultState, DBTableDividerType, DBTableFooterDefaultProps, DBTableFooterDefaultState, DBTableFooterProps, DBTableFooterState, DBTableHeadDefaultProps, DBTableHeadDefaultState, DBTableHeadProps, DBTableHeadState, DBTableHeaderCellDefaultProps, DBTableHeaderCellDefaultState, DBTableHeaderCellProps, DBTableHeaderCellScopeType, DBTableHeaderCellState, DBTableMobileVariantType, DBTableProps, DBTableRowCell, DBTableRowDefaultProps, DBTableRowDefaultState, DBTableRowProps, DBTableRowSizeType, DBTableRowState, DBTableRowSubHeaderEmphasisType, DBTableState, DBTableStickyHeaderType, DBTableVariantType, DBTabsDefaultProps, DBTabsDefaultState, DBTabsEventProps, DBTabsProps, DBTabsState, DBTagDefaultProps, DBTagDefaultState, DBTagEventsProps, DBTagProps, DBTagState, DBTextareaDefaultProps, DBTextareaDefaultState, DBTextareaProps, DBTextareaState, DBTooltipDefaultProps, DBTooltipDefaultState, DBTooltipProps, DBTooltipState, DividerMarginType, DividerVariantType, DocumentScrollState, DrawerBackdropType, DrawerDirectionType, DrawerPositionType, DrawerVariantType, EmphasisProps, EmphasisType, FieldSizingType, FocusEventProps, FocusEventState, FormCheckProps, FormMessageProps, FormProps, FormSizeProps, FormState, FormTextProps, FromValidState, GapProps, GapSpacingProps, GapSpacingType, GeneralEvent, GeneralKeyboardEvent, GlobalProps, GlobalState, IconLeadingProps, IconProps, IconTrailingProps, IconWeightType, InitializedState, InnerCloseButtonProps, InputEvent, InputEventProps, InputEventState, InputTypeType, InteractionEvent, LabelVariantHorizontalType, LabelVariantType, LinkContentType, LinkProps, LinkReferrerPolicyType, LinkSizeType, LinkTargetType, LinkVariantType, MarginProps, MarginType, MaxWidthType, NameProps, NameState, NavigationBackButtonProps, NavigationBehaviorState, NoTextProps, NotificationAriaLiveType, NotificationLinkVariantType, NotificationVariantType, OrientationProps, OrientationType, OverflowProps, PageDocumentOverflowType, PageVariantType, PatternhubProps, PlacementHorizontalType, PlacementProps, PlacementType, PlacementVerticalType, PopoverDelayType, PopoverProps, PopoverState, PopoverWidthType, PropOverridesType, RequiredProps, ResetIdState, RoleProps, SelectedTypeType, SemanticProps, SemanticType, ShowIconLeadingProps, ShowIconProps, ShowIconTrailingProps, ShowLabelProps, SizeProps, SizeType, SpacingProps, SpacingType, StackAlignmentType, StackDirectionType, StackJustifyContentType, StackVariantType, TabsBehaviorType, TabsInitialSelectedModeType, TagBehaviorType, TextProps, TextareaResizeType, TextareaWrapType, ToggleEventProps, ToggleEventState, TooltipVariantType, TriangleData, ValidationType, ValueLabelType, ValueProps, WidthProps, WidthType, WrapProps };
|
|
4330
|
+
export { AccordionBehaviorList, AccordionVariantList, AlignmentList, AutoCompleteList, BadgePlacementList, ButtonTypeList, ButtonVariantList, COLOR, COLORS, COLORS_SIMPLE, COLOR_CONST, COLOR_SIMPLE, CardBehaviorList, CardElevationLevelList, CustomSelectDropdownWidthList, CustomSelectListItemTypeList, DBAccordion, DBAccordionItem, DBBadge, DBBrand, DBButton, DBCard, DBCheckbox, DBCustomButton, DBCustomSelect, DBCustomSelectDropdown, DBCustomSelectFormField, DBCustomSelectList, DBCustomSelectListItem, DBDivider, DBDrawer, DBHeader, DBIcon, DBInfotext, DBInput, DBLink, DBNavigation, DBNavigationItem, DBNotification, DBPage, DBPopover, DBRadio, DBSection, DBSelect, DBStack, DBSwitch, DBTabItem, DBTabList, DBTabPanel, DBTable, DBTableBody, DBTableCaption, DBTableColumnsSizeList, DBTableDataCell, DBTableDividerList, DBTableFooter, DBTableHead, DBTableHeaderCell, DBTableHeaderCellScopeList, DBTableMobileVariantList, DBTableRow, DBTableRowSizeList, DBTableRowSubHeaderEmphasisList, DBTableStickyHeaderList, DBTableVariantList, DBTabs, DBTag, DBTextarea, DBTooltip, DB_UX_LOCAL_STORAGE_FRAMEWORK, DB_UX_LOCAL_STORAGE_MODE, DEFAULT_BACK, DEFAULT_BURGER_MENU, DEFAULT_CLOSE_BUTTON, DEFAULT_DATALIST_ID_SUFFIX, DEFAULT_ICON, DEFAULT_ID, DEFAULT_INVALID_MESSAGE, DEFAULT_INVALID_MESSAGE_ID_SUFFIX, DEFAULT_LABEL, DEFAULT_LABEL_ID_SUFFIX, DEFAULT_MESSAGE, DEFAULT_MESSAGE_ID_SUFFIX, DEFAULT_PLACEHOLDER, DEFAULT_PLACEHOLDER_ID_SUFFIX, DEFAULT_REMOVE, DEFAULT_ROWS, DEFAULT_SCROLL_LEFT, DEFAULT_SCROLL_RIGHT, DEFAULT_SELECTED, DEFAULT_SELECT_ID_SUFFIX, DEFAULT_VALID_MESSAGE, DEFAULT_VALID_MESSAGE_ID_SUFFIX, DEFAULT_VIEWPORT, DENSITIES, DENSITY, DENSITY_CONST, DESKTOP_VIEWPORT, DividerMarginList, DividerVariantList, DocumentClickListener, DocumentScrollListener, DrawerBackdropList, DrawerDirectionList, DrawerPositionList, DrawerVariantList, EmphasisList, FieldSizingList, GapSpacingList, IconWeightList, InputTypeList, LabelVariantHorizontalList, LabelVariantList, LinkContentList, LinkReferrerPolicyList, LinkSizeList, LinkTargetList, LinkVariantList, MarginList, MaxWidthList, MetaNavigationDirective, NavigationContentDirective, NavigationDirective, NavigationItemSafeTriangle, NotificationAriaLiveList, NotificationLinkVariantList, NotificationVariantList, OrientationList, PageDocumentOverflowList, PageVariantList, PlacementHorizontalList, PlacementList, PlacementVerticalList, PopoverDelayList, PopoverWidthList, SEMANTIC, SEMANTICS, SecondaryActionDirective, SelectedTypeList, SemanticList, SizeList, SpacingList, StackAlignmentList, StackDirectionList, StackJustifyContentList, StackVariantList, TESTING_VIEWPORTS, TabsBehaviorList, TabsInitialSelectedModeList, TagBehaviorList, TextareaResizeList, TextareaWrapList, TooltipVariantList, ValidationList, WidthList, addAttributeToChildren, cls, delay, getBoolean, getBooleanAsString, getFloatingProps, getHideProp, getInputValue, getNotificationRole, getNumber, getOptionKey, getSearchInput, getStep, handleDataOutside, handleFixedDropdown, handleFixedPopover, hasVoiceOver, isArrayOfStrings, isEventTargetNavigationItem, isIOSSafari, isKeyboardEvent, stringPropVisible, uuid };
|
|
4331
|
+
export type { AccordionBehaviorType, AccordionVariantType, ActiveProps, AlignmentProps, AlignmentType, AriaControlsProps, AutoCompleteType, BadgePlacementType, BaseFormProps, ButtonTypeType, ButtonVariantType, CardBehaviorType, CardElevationLevelType, ChangeEvent, ChangeEventProps, ChangeEventState, ClassNameArg, ClickEvent, ClickEventProps, ClickEventState, CloseEventProps, CloseEventState, ContainerWidthProps, ContentSlotProps, CustomFormProps, CustomSelectDropdownWidthType, CustomSelectListItemTypeType, CustomSelectOptionType, DBAccordionDefaultProps, DBAccordionDefaultState, DBAccordionItemDefaultProps, DBAccordionItemDefaultState, DBAccordionItemProps, DBAccordionItemState, DBAccordionProps, DBAccordionState, DBBadgeDefaultProps, DBBadgeDefaultState, DBBadgeProps, DBBadgeState, DBBrandDefaultProps, DBBrandDefaultState, DBBrandProps, DBBrandState, DBButtonDefaultProps, DBButtonDefaultState, DBButtonProps, DBButtonSharedProps, DBButtonState, DBCardDefaultProps, DBCardDefaultState, DBCardProps, DBCardState, DBCheckboxDefaultProps, DBCheckboxDefaultState, DBCheckboxProps, DBCheckboxState, DBCustomButtonDefaultProps, DBCustomButtonDefaultState, DBCustomButtonProps, DBCustomButtonState, DBCustomSelectDefaultProps, DBCustomSelectDefaultState, DBCustomSelectDropdownDefaultProps, DBCustomSelectDropdownDefaultState, DBCustomSelectDropdownProps, DBCustomSelectDropdownState, DBCustomSelectEvents, DBCustomSelectFormFieldDefaultProps, DBCustomSelectFormFieldDefaultState, DBCustomSelectFormFieldProps, DBCustomSelectFormFieldState, DBCustomSelectListDefaultProps, DBCustomSelectListDefaultState, DBCustomSelectListItemDefaultProps, DBCustomSelectListItemDefaultState, DBCustomSelectListItemExtraProps, DBCustomSelectListItemProps, DBCustomSelectListItemState, DBCustomSelectListProps, DBCustomSelectListState, DBCustomSelectProps, DBCustomSelectState, DBDataOutsidePair, DBDividerDefaultProps, DBDividerDefaultState, DBDividerProps, DBDividerState, DBDrawerDefaultProps, DBDrawerDefaultState, DBDrawerProps, DBDrawerState, DBHeaderDefaultProps, DBHeaderDefaultState, DBHeaderProps, DBHeaderState, DBIconDefaultProps, DBIconDefaultState, DBIconProps, DBIconState, DBInfotextDefaultProps, DBInfotextDefaultState, DBInfotextProps, DBInfotextState, DBInputDefaultProps, DBInputDefaultState, DBInputProps, DBInputState, DBLinkDefaultProps, DBLinkDefaultState, DBLinkProps, DBLinkState, DBNavigationDefaultProps, DBNavigationDefaultState, DBNavigationItemDefaultProps, DBNavigationItemDefaultState, DBNavigationItemProps, DBNavigationItemState, DBNavigationProps, DBNavigationState, DBNotificationDefaultProps, DBNotificationDefaultState, DBNotificationProps, DBNotificationState, DBPageDefaultProps, DBPageDefaultState, DBPageProps, DBPageState, DBPopoverDefaultProps, DBPopoverDefaultState, DBPopoverProps, DBPopoverState, DBRadioDefaultProps, DBRadioDefaultState, DBRadioProps, DBRadioState, DBSectionDefaultProps, DBSectionProps, DBSelectDefaultProps, DBSelectDefaultState, DBSelectOptionType, DBSelectProps, DBSelectState, DBSimpleTabProps, DBStackDefaultProps, DBStackDefaultState, DBStackProps, DBStackState, DBSwitchDefaultProps, DBSwitchDefaultState, DBSwitchProps, DBSwitchState, DBTabItemDefaultProps, DBTabItemDefaultState, DBTabItemProps, DBTabItemState, DBTabListDefaultProps, DBTabListDefaultState, DBTabListProps, DBTabListState, DBTabPanelDefaultProps, DBTabPanelDefaultState, DBTabPanelProps, DBTabPanelState, DBTableBodyDefaultProps, DBTableBodyDefaultState, DBTableBodyProps, DBTableBodyState, DBTableCaptionDefaultProps, DBTableCaptionDefaultState, DBTableCaptionProps, DBTableCaptionState, DBTableCellProps, DBTableColumnsSizeType, DBTableData, DBTableDataCellDefaultProps, DBTableDataCellDefaultState, DBTableDataCellProps, DBTableDataCellState, DBTableDefaultProps, DBTableDefaultState, DBTableDividerType, DBTableFooterDefaultProps, DBTableFooterDefaultState, DBTableFooterProps, DBTableFooterState, DBTableHeadDefaultProps, DBTableHeadDefaultState, DBTableHeadProps, DBTableHeadState, DBTableHeaderCellDefaultProps, DBTableHeaderCellDefaultState, DBTableHeaderCellProps, DBTableHeaderCellScopeType, DBTableHeaderCellState, DBTableMobileVariantType, DBTableProps, DBTableRowCell, DBTableRowDefaultProps, DBTableRowDefaultState, DBTableRowProps, DBTableRowSizeType, DBTableRowState, DBTableRowSubHeaderEmphasisType, DBTableState, DBTableStickyHeaderType, DBTableVariantType, DBTabsDefaultProps, DBTabsDefaultState, DBTabsEventProps, DBTabsProps, DBTabsState, DBTagDefaultProps, DBTagDefaultState, DBTagEventsProps, DBTagProps, DBTagState, DBTextareaDefaultProps, DBTextareaDefaultState, DBTextareaProps, DBTextareaState, DBTooltipDefaultProps, DBTooltipDefaultState, DBTooltipProps, DBTooltipState, DisabledProps, DividerMarginType, DividerVariantType, DocumentScrollState, DrawerBackdropType, DrawerDirectionType, DrawerPositionType, DrawerVariantType, EmphasisProps, EmphasisType, FieldSizingType, FocusEventProps, FocusEventState, FormCheckProps, FormMessageProps, FormProps, FormSizeProps, FormState, FormTextProps, FromValidState, GapProps, GapSpacingProps, GapSpacingType, GeneralEvent, GeneralKeyboardEvent, GlobalProps, GlobalState, IconLeadingProps, IconProps, IconTrailingProps, IconWeightType, InitializedState, InnerCloseButtonProps, InputEvent, InputEventProps, InputEventState, InputTypeType, InteractionEvent, LabelVariantHorizontalType, LabelVariantType, LinkContentType, LinkProps, LinkReferrerPolicyType, LinkSizeType, LinkTargetType, LinkVariantType, MarginProps, MarginType, MaxWidthType, NameProps, NameState, NavigationBackButtonProps, NavigationBehaviorState, NoTextProps, NotificationAriaLiveType, NotificationLinkVariantType, NotificationVariantType, OrientationProps, OrientationType, OverflowProps, OverflowScrollButtonProps, OverflowScrollButtonState, PageDocumentOverflowType, PageVariantType, PatternhubProps, PlacementHorizontalType, PlacementProps, PlacementType, PlacementVerticalType, PopoverDelayType, PopoverProps, PopoverState, PopoverWidthType, PropOverridesType, RequiredProps, ResetIdState, RoleProps, SelectedTypeType, SemanticProps, SemanticType, ShowIconLeadingProps, ShowIconProps, ShowIconTrailingProps, ShowLabelProps, SizeProps, SizeType, SpacingProps, SpacingType, StackAlignmentType, StackDirectionType, StackJustifyContentType, StackVariantType, TabsBehaviorType, TabsInitialSelectedModeType, TagBehaviorType, TextProps, TextareaResizeType, TextareaWrapType, ToggleEventProps, ToggleEventState, TooltipVariantType, TriangleData, ValidationType, ValueLabelType, ValueProps, WidthProps, WidthType, WrapProps };
|