@db-ux/ngx-core-components 4.10.1 → 4.11.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/CHANGELOG.md +16 -0
- package/README.md +1 -1
- package/agent/Accordion.md +1 -1
- package/agent/AccordionItem.md +1 -1
- package/agent/Badge.md +1 -1
- package/agent/Brand.md +1 -1
- package/agent/Button.md +1 -1
- package/agent/Card.md +1 -1
- package/agent/Checkbox.md +1 -1
- package/agent/CustomSelect.md +1 -1
- package/agent/Divider.md +1 -1
- package/agent/Drawer.md +1 -1
- package/agent/Header.md +1 -1
- package/agent/Icon.md +1 -1
- package/agent/Infotext.md +1 -1
- package/agent/Input.md +1 -1
- package/agent/Link.md +1 -1
- package/agent/Navigation.md +1 -1
- package/agent/NavigationItem.md +1 -1
- package/agent/Notification.md +1 -1
- package/agent/Page.md +1 -1
- package/agent/Popover.md +1 -1
- package/agent/Radio.md +1 -1
- package/agent/Section.md +1 -1
- package/agent/Select.md +1 -1
- package/agent/Stack.md +1 -1
- package/agent/Switch.md +1 -1
- package/agent/TabItem.md +1 -1
- package/agent/Tabs.md +1 -1
- package/agent/Tag.md +1 -1
- package/agent/Textarea.md +1 -1
- package/agent/Tooltip.md +1 -1
- package/fesm2022/db-ux-ngx-core-components.mjs +1530 -581
- package/fesm2022/db-ux-ngx-core-components.mjs.map +1 -1
- package/package.json +3 -3
- package/types/db-ux-ngx-core-components.d.ts +457 -29
|
@@ -2,6 +2,7 @@ import * as _angular_core from '@angular/core';
|
|
|
2
2
|
import { AfterViewInit, InputSignal, ElementRef, OnDestroy, ModelSignal, Renderer2 } from '@angular/core';
|
|
3
3
|
import { IconTypes } from '@db-ux/core-foundations';
|
|
4
4
|
import { ControlValueAccessor } from '@angular/forms';
|
|
5
|
+
import * as _db_ux_ngx_core_components from '@db-ux/ngx-core-components';
|
|
5
6
|
|
|
6
7
|
interface GlobalProps {
|
|
7
8
|
/**
|
|
@@ -464,11 +465,11 @@ type CloseEventProps<T> = {
|
|
|
464
465
|
type CloseEventState<T> = {
|
|
465
466
|
handleClose: (event?: T | void, forceClose?: boolean) => void;
|
|
466
467
|
};
|
|
467
|
-
declare const AlignmentList: readonly ["start", "center"];
|
|
468
|
+
declare const AlignmentList: readonly ["start", "center", "end"];
|
|
468
469
|
type AlignmentType = (typeof AlignmentList)[number];
|
|
469
470
|
type AlignmentProps = {
|
|
470
471
|
/**
|
|
471
|
-
* Define the content alignment
|
|
472
|
+
* Define the content alignment
|
|
472
473
|
*/
|
|
473
474
|
alignment?: AlignmentType | string;
|
|
474
475
|
};
|
|
@@ -558,6 +559,48 @@ interface PatternhubProps {
|
|
|
558
559
|
*/
|
|
559
560
|
isPatternhub?: boolean;
|
|
560
561
|
}
|
|
562
|
+
type DBTableCellProps = {
|
|
563
|
+
/**
|
|
564
|
+
* The **`colSpan`** read-only property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
|
|
565
|
+
*
|
|
566
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
567
|
+
*/
|
|
568
|
+
colSpan?: number | string;
|
|
569
|
+
/**
|
|
570
|
+
* Lowercase HTML attribute alternative to `colSpan`. Use this in template languages that require lowercase attributes (e.g. Angular, Vue).
|
|
571
|
+
* If both `colSpan` and `colspan` are provided, `colSpan` takes precedence.
|
|
572
|
+
*
|
|
573
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
574
|
+
*/
|
|
575
|
+
colspan?: number | string;
|
|
576
|
+
/**
|
|
577
|
+
* The **`headers`** property of the HTMLTableCellElement interface contains a list of IDs of th elements that are _headers_ for this specific cell.
|
|
578
|
+
*
|
|
579
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/headers)
|
|
580
|
+
*/
|
|
581
|
+
headers?: string;
|
|
582
|
+
/**
|
|
583
|
+
* The **`rowSpan`** read-only property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
|
|
584
|
+
*
|
|
585
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
586
|
+
*/
|
|
587
|
+
rowSpan?: number | string;
|
|
588
|
+
/**
|
|
589
|
+
* Lowercase HTML attribute alternative to `rowSpan`. Use this in template languages that require lowercase attributes (e.g. Angular, Vue).
|
|
590
|
+
* If both `rowSpan` and `rowspan` are provided, `rowSpan` takes precedence.
|
|
591
|
+
*
|
|
592
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
593
|
+
*/
|
|
594
|
+
rowspan?: number | string;
|
|
595
|
+
/**
|
|
596
|
+
* Set the horizontal alignment of the cell content.
|
|
597
|
+
*/
|
|
598
|
+
horizontalAlignment?: AlignmentType;
|
|
599
|
+
/**
|
|
600
|
+
* Set the vertical alignment of the cell content.
|
|
601
|
+
*/
|
|
602
|
+
verticalAlignment?: AlignmentType;
|
|
603
|
+
};
|
|
561
604
|
|
|
562
605
|
declare const uuid: () => string;
|
|
563
606
|
declare const addAttributeToChildren: (element: Element, attribute: {
|
|
@@ -582,11 +625,16 @@ declare const hasVoiceOver: () => boolean;
|
|
|
582
625
|
declare const isIOSSafari: () => boolean;
|
|
583
626
|
declare const delay: (fn: () => void, ms: number) => Promise<unknown>;
|
|
584
627
|
/**
|
|
585
|
-
*
|
|
586
|
-
*
|
|
587
|
-
*
|
|
628
|
+
* Converts boolean-like inputs to "true" or "false" strings.
|
|
629
|
+
* Handles HTML-style boolean attributes where an empty string or the
|
|
630
|
+
* attribute's own name as value (e.g. noText="noText") should be treated as true.
|
|
631
|
+
* Some frameworks like Stencil do not add "true" as value for a prop
|
|
632
|
+
* if it is used in a framework like Angular e.g.: [disabled]="myDisabledProp"
|
|
633
|
+
* @param originBool Boolean or string value to convert
|
|
634
|
+
* @param propertyName The prop/attribute name — when originBool is a string equal
|
|
635
|
+
* to this name (case-insensitive), it is treated as true
|
|
588
636
|
*/
|
|
589
|
-
declare const getBooleanAsString: (originBool?: boolean | string) => any;
|
|
637
|
+
declare const getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
590
638
|
declare const getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
591
639
|
declare const getNumber: (originNumber?: number | string, alternativeNumber?: number | string) => number | undefined;
|
|
592
640
|
/**
|
|
@@ -729,7 +777,7 @@ declare class DBAccordion implements AfterViewInit {
|
|
|
729
777
|
|
|
730
778
|
declare class DBAccordionItem implements AfterViewInit {
|
|
731
779
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
732
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
780
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
733
781
|
defaultOpen: InputSignal<DBAccordionItemProps["defaultOpen"]>;
|
|
734
782
|
name: InputSignal<DBAccordionItemProps["name"]>;
|
|
735
783
|
open: InputSignal<DBAccordionItemProps["open"]>;
|
|
@@ -776,7 +824,7 @@ type DBBadgeState = DBBadgeDefaultState & GlobalState & InitializedState;
|
|
|
776
824
|
|
|
777
825
|
declare class DBBadge implements AfterViewInit {
|
|
778
826
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
779
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
827
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
780
828
|
protected readonly DEFAULT_LABEL: string;
|
|
781
829
|
placement: InputSignal<DBBadgeProps["placement"]>;
|
|
782
830
|
id: InputSignal<DBBadgeProps["id"]>;
|
|
@@ -814,7 +862,7 @@ type DBBrandState = DBBrandDefaultState & GlobalState;
|
|
|
814
862
|
|
|
815
863
|
declare class DBBrand implements AfterViewInit {
|
|
816
864
|
protected readonly DEFAULT_ICON: string;
|
|
817
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
865
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
818
866
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
819
867
|
hideLogo: InputSignal<DBBrandProps["hideLogo"]>;
|
|
820
868
|
icon: InputSignal<DBBrandProps["icon"]>;
|
|
@@ -877,7 +925,7 @@ type DBButtonState = DBButtonDefaultState & GlobalState;
|
|
|
877
925
|
declare class DBButton implements AfterViewInit {
|
|
878
926
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
879
927
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
880
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
928
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
881
929
|
type: InputSignal<DBButtonProps["type"]>;
|
|
882
930
|
id: InputSignal<DBButtonProps["id"]>;
|
|
883
931
|
propOverrides: InputSignal<DBButtonProps["propOverrides"]>;
|
|
@@ -1035,7 +1083,7 @@ type DBCustomButtonState = DBCustomButtonDefaultState & GlobalState;
|
|
|
1035
1083
|
|
|
1036
1084
|
declare class DBCustomButton implements AfterViewInit {
|
|
1037
1085
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1038
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
1086
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1039
1087
|
id: InputSignal<DBCustomButtonProps["id"]>;
|
|
1040
1088
|
propOverrides: InputSignal<DBCustomButtonProps["propOverrides"]>;
|
|
1041
1089
|
className: InputSignal<DBCustomButtonProps["className"]>;
|
|
@@ -1336,7 +1384,7 @@ type DBCustomSelectState = DBCustomSelectDefaultState & GlobalState & FormState
|
|
|
1336
1384
|
declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnDestroy {
|
|
1337
1385
|
private renderer;
|
|
1338
1386
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1339
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
1387
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1340
1388
|
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
1341
1389
|
protected readonly DEFAULT_LABEL: string;
|
|
1342
1390
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
@@ -1552,7 +1600,7 @@ declare class DBCustomSelectList implements AfterViewInit {
|
|
|
1552
1600
|
declare class DBCustomSelectListItem implements AfterViewInit, ControlValueAccessor {
|
|
1553
1601
|
private renderer;
|
|
1554
1602
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1555
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
1603
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1556
1604
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
1557
1605
|
isGroupTitle: InputSignal<DBCustomSelectListItemProps["isGroupTitle"]>;
|
|
1558
1606
|
showDivider: InputSignal<DBCustomSelectListItemProps["showDivider"]>;
|
|
@@ -1682,7 +1730,7 @@ type DBDrawerState = DBDrawerDefaultState & GlobalState & CloseEventState<ClickE
|
|
|
1682
1730
|
|
|
1683
1731
|
declare class DBDrawer implements AfterViewInit {
|
|
1684
1732
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1685
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
1733
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1686
1734
|
protected readonly DEFAULT_CLOSE_BUTTON: string;
|
|
1687
1735
|
open: InputSignal<DBDrawerProps["open"]>;
|
|
1688
1736
|
position: InputSignal<DBDrawerProps["position"]>;
|
|
@@ -1847,7 +1895,7 @@ type DBInfotextState = DBInfotextDefaultState & GlobalState;
|
|
|
1847
1895
|
|
|
1848
1896
|
declare class DBInfotext implements AfterViewInit {
|
|
1849
1897
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1850
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
1898
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1851
1899
|
id: InputSignal<DBInfotextProps["id"]>;
|
|
1852
1900
|
propOverrides: InputSignal<DBInfotextProps["propOverrides"]>;
|
|
1853
1901
|
className: InputSignal<DBInfotextProps["className"]>;
|
|
@@ -1941,7 +1989,7 @@ declare class DBInput implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
1941
1989
|
private renderer;
|
|
1942
1990
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1943
1991
|
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
1944
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
1992
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1945
1993
|
protected readonly DEFAULT_LABEL: string;
|
|
1946
1994
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
1947
1995
|
protected readonly DEFAULT_PLACEHOLDER: string;
|
|
@@ -2069,7 +2117,7 @@ type DBLinkState = DBLinkDefaultState & GlobalState & ClickEventState<HTMLAnchor
|
|
|
2069
2117
|
|
|
2070
2118
|
declare class DBLink implements AfterViewInit {
|
|
2071
2119
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2072
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2120
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2073
2121
|
id: InputSignal<DBLinkProps["id"]>;
|
|
2074
2122
|
propOverrides: InputSignal<DBLinkProps["propOverrides"]>;
|
|
2075
2123
|
className: InputSignal<DBLinkProps["className"]>;
|
|
@@ -2192,7 +2240,7 @@ type DBNavigationItemState = DBNavigationItemDefaultState & ClickEventState<HTML
|
|
|
2192
2240
|
declare class DBNavigationItem implements AfterViewInit {
|
|
2193
2241
|
dbNavigationContent: any;
|
|
2194
2242
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2195
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2243
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2196
2244
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
2197
2245
|
protected readonly DEFAULT_BACK: string;
|
|
2198
2246
|
id: InputSignal<DBNavigationItemProps["id"]>;
|
|
@@ -2315,7 +2363,7 @@ declare class DBNotification implements AfterViewInit {
|
|
|
2315
2363
|
ariaLive?: string;
|
|
2316
2364
|
}) => string | undefined;
|
|
2317
2365
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
2318
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2366
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2319
2367
|
protected readonly stringPropVisible: (givenString?: string, showString?: boolean | string) => boolean;
|
|
2320
2368
|
protected readonly DEFAULT_CLOSE_BUTTON: string;
|
|
2321
2369
|
id: InputSignal<DBNotificationProps["id"]>;
|
|
@@ -2390,7 +2438,7 @@ type DBPageState = DBPageDefaultState & GlobalState;
|
|
|
2390
2438
|
|
|
2391
2439
|
declare class DBPage implements AfterViewInit, OnDestroy {
|
|
2392
2440
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2393
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2441
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2394
2442
|
fadeIn: InputSignal<DBPageProps["fadeIn"]>;
|
|
2395
2443
|
documentOverflow: InputSignal<DBPageProps["documentOverflow"]>;
|
|
2396
2444
|
variant: InputSignal<DBPageProps["variant"]>;
|
|
@@ -2433,7 +2481,7 @@ type DBPopoverState = DBPopoverDefaultState & GlobalState & PopoverState & Initi
|
|
|
2433
2481
|
|
|
2434
2482
|
declare class DBPopover implements AfterViewInit {
|
|
2435
2483
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2436
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2484
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2437
2485
|
placement: InputSignal<DBPopoverProps["placement"]>;
|
|
2438
2486
|
id: InputSignal<DBPopoverProps["id"]>;
|
|
2439
2487
|
propOverrides: InputSignal<DBPopoverProps["propOverrides"]>;
|
|
@@ -2602,7 +2650,7 @@ declare class DBSelect implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
2602
2650
|
private renderer;
|
|
2603
2651
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2604
2652
|
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
2605
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2653
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2606
2654
|
protected readonly DEFAULT_LABEL: string;
|
|
2607
2655
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
2608
2656
|
protected readonly getOptionKey: (option: {
|
|
@@ -2719,7 +2767,7 @@ type DBStackState = DBStackDefaultState & GlobalState;
|
|
|
2719
2767
|
|
|
2720
2768
|
declare class DBStack implements AfterViewInit {
|
|
2721
2769
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2722
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2770
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2723
2771
|
id: InputSignal<DBStackProps["id"]>;
|
|
2724
2772
|
propOverrides: InputSignal<DBStackProps["propOverrides"]>;
|
|
2725
2773
|
className: InputSignal<DBStackProps["className"]>;
|
|
@@ -2760,7 +2808,7 @@ type DBSwitchState = DBSwitchDefaultState & GlobalState & ChangeEventState<HTMLI
|
|
|
2760
2808
|
|
|
2761
2809
|
declare class DBSwitch implements AfterViewInit, ControlValueAccessor, OnDestroy {
|
|
2762
2810
|
private renderer;
|
|
2763
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2811
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2764
2812
|
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
2765
2813
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2766
2814
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
@@ -2856,7 +2904,7 @@ type DBTabItemState = DBTabItemDefaultState & GlobalState & ChangeEventState<HTM
|
|
|
2856
2904
|
declare class DBTabItem implements AfterViewInit, ControlValueAccessor, OnDestroy {
|
|
2857
2905
|
private renderer;
|
|
2858
2906
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2859
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2907
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2860
2908
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
2861
2909
|
active: InputSignal<DBTabItemProps["active"]>;
|
|
2862
2910
|
name: InputSignal<DBTabItemProps["name"]>;
|
|
@@ -2953,6 +3001,386 @@ declare class DBTabPanel implements AfterViewInit {
|
|
|
2953
3001
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTabPanel, "db-tab-panel", never, { "className": { "alias": "className"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2954
3002
|
}
|
|
2955
3003
|
|
|
3004
|
+
type DBTableDataCellDefaultProps = {};
|
|
3005
|
+
type DBTableDataCellProps = DBTableDataCellDefaultProps & GlobalProps & DBTableCellProps;
|
|
3006
|
+
type DBTableDataCellDefaultState = {};
|
|
3007
|
+
type DBTableDataCellState = DBTableDataCellDefaultState & GlobalState;
|
|
3008
|
+
|
|
3009
|
+
declare const DBTableHeaderCellScopeList: readonly ["row", "col", "rowgroup", "colgroup"];
|
|
3010
|
+
type DBTableHeaderCellScopeType = (typeof DBTableHeaderCellScopeList)[number];
|
|
3011
|
+
type DBTableHeaderCellDefaultProps = {
|
|
3012
|
+
/**
|
|
3013
|
+
* The **`abbr`** property of the HTMLTableCellElement interface indicates an abbreviation associated with the cell.
|
|
3014
|
+
*
|
|
3015
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/abbr)
|
|
3016
|
+
*/
|
|
3017
|
+
abbr?: string;
|
|
3018
|
+
/**
|
|
3019
|
+
* The **`scope`** property of the HTMLTableCellElement interface indicates the scope of a th cell.
|
|
3020
|
+
*
|
|
3021
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/scope)
|
|
3022
|
+
*/
|
|
3023
|
+
scope?: DBTableHeaderCellScopeType;
|
|
3024
|
+
/**
|
|
3025
|
+
* Hide the text content of the cell.
|
|
3026
|
+
*/
|
|
3027
|
+
noText?: boolean | string;
|
|
3028
|
+
};
|
|
3029
|
+
type DBTableHeaderCellProps = DBTableHeaderCellDefaultProps & GlobalProps & DBTableCellProps;
|
|
3030
|
+
type DBTableHeaderCellDefaultState = {};
|
|
3031
|
+
type DBTableHeaderCellState = DBTableHeaderCellDefaultState & GlobalState;
|
|
3032
|
+
|
|
3033
|
+
declare const DBTableRowSubHeaderEmphasisList: readonly ["none", "weak", "strong"];
|
|
3034
|
+
type DBTableRowSubHeaderEmphasisType = (typeof DBTableRowSubHeaderEmphasisList)[number];
|
|
3035
|
+
type DBTableRowCell = (DBTableHeaderCellProps | DBTableDataCellProps) & {
|
|
3036
|
+
headerCell?: boolean;
|
|
3037
|
+
content?: any;
|
|
3038
|
+
link?: DBLinkProps;
|
|
3039
|
+
};
|
|
3040
|
+
type DBTableRowDefaultProps = {
|
|
3041
|
+
/**
|
|
3042
|
+
* All cells of the row
|
|
3043
|
+
*/
|
|
3044
|
+
cells?: DBTableRowCell[];
|
|
3045
|
+
/**
|
|
3046
|
+
* Change styling of row only if it is inside thead
|
|
3047
|
+
*/
|
|
3048
|
+
subHeaderEmphasis?: DBTableRowSubHeaderEmphasisType;
|
|
3049
|
+
/**
|
|
3050
|
+
* If true marks the row as interactive, which checks for child with data-table-row-trigger="true"
|
|
3051
|
+
*/
|
|
3052
|
+
interactive?: boolean | string;
|
|
3053
|
+
};
|
|
3054
|
+
type DBTableRowProps = DBTableRowDefaultProps & GlobalProps;
|
|
3055
|
+
type DBTableRowDefaultState = {
|
|
3056
|
+
getHeaderCell: (cell: DBTableRowCell) => DBTableHeaderCellProps | undefined;
|
|
3057
|
+
};
|
|
3058
|
+
type DBTableRowState = DBTableRowDefaultState & GlobalState;
|
|
3059
|
+
|
|
3060
|
+
declare const DBTableRowSizeList: readonly ["x-small", "small", "medium", "large"];
|
|
3061
|
+
type DBTableRowSizeType = (typeof DBTableRowSizeList)[number];
|
|
3062
|
+
declare const DBTableVariantList: readonly ["flat", "zebra", "spaced"];
|
|
3063
|
+
type DBTableVariantType = (typeof DBTableVariantList)[number];
|
|
3064
|
+
declare const DBTableDividerList: readonly ["none", "both", "horizontal", "vertical"];
|
|
3065
|
+
type DBTableDividerType = (typeof DBTableDividerList)[number];
|
|
3066
|
+
declare const DBTableMobileVariantList: readonly ["table", "list"];
|
|
3067
|
+
type DBTableMobileVariantType = (typeof DBTableMobileVariantList)[number];
|
|
3068
|
+
declare const DBTableStickyHeaderList: readonly ["none", "both", "horizontal", "vertical"];
|
|
3069
|
+
type DBTableStickyHeaderType = (typeof DBTableStickyHeaderList)[number];
|
|
3070
|
+
type DBTableData = {
|
|
3071
|
+
header?: DBTableRowDefaultProps[];
|
|
3072
|
+
body?: DBTableRowDefaultProps[];
|
|
3073
|
+
footer?: DBTableRowDefaultProps[];
|
|
3074
|
+
};
|
|
3075
|
+
declare const DBTableColumnsSizeList: readonly ["auto", "1fr", "min-content", "max-content"];
|
|
3076
|
+
type DBTableColumnsSizeType = (typeof DBTableColumnsSizeList)[number];
|
|
3077
|
+
type DBTableDefaultProps = {
|
|
3078
|
+
/**
|
|
3079
|
+
* Slot for table caption
|
|
3080
|
+
*/
|
|
3081
|
+
caption?: any;
|
|
3082
|
+
/**
|
|
3083
|
+
* String alternative for table caption slot
|
|
3084
|
+
*/
|
|
3085
|
+
captionPlain?: string;
|
|
3086
|
+
/**
|
|
3087
|
+
* Table data if you don't use default slot/children
|
|
3088
|
+
*/
|
|
3089
|
+
data?: DBTableData | string;
|
|
3090
|
+
/**
|
|
3091
|
+
* Show the divider between the rows and cells
|
|
3092
|
+
*/
|
|
3093
|
+
divider?: DBTableDividerType;
|
|
3094
|
+
/**
|
|
3095
|
+
* Show caption above table default is hidden
|
|
3096
|
+
*/
|
|
3097
|
+
showCaption?: boolean | string;
|
|
3098
|
+
/**
|
|
3099
|
+
* Size of the table rows
|
|
3100
|
+
*/
|
|
3101
|
+
size?: DBTableRowSizeType;
|
|
3102
|
+
/**
|
|
3103
|
+
* Change the layout of the table
|
|
3104
|
+
* spaced: card style table
|
|
3105
|
+
* flat: classic table
|
|
3106
|
+
*/
|
|
3107
|
+
variant?: DBTableVariantType;
|
|
3108
|
+
/**
|
|
3109
|
+
* Change the layout of the table on mobile
|
|
3110
|
+
* list: list style
|
|
3111
|
+
* table: classic table
|
|
3112
|
+
*/
|
|
3113
|
+
mobileVariant?: DBTableMobileVariantType;
|
|
3114
|
+
/**
|
|
3115
|
+
* Change the header cells to be sticky when scrolling the table
|
|
3116
|
+
*/
|
|
3117
|
+
stickyHeader?: DBTableStickyHeaderType;
|
|
3118
|
+
/**
|
|
3119
|
+
* Set the width of the columns based in their index.
|
|
3120
|
+
* Alternative: Use `--db-table-column-size-$index` inside CSS to control it.
|
|
3121
|
+
* See: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/grid-template-columns
|
|
3122
|
+
*/
|
|
3123
|
+
columnSizes?: Record<number, DBTableColumnsSizeType | string>;
|
|
3124
|
+
};
|
|
3125
|
+
type DBTableProps = DBTableDefaultProps & GlobalProps & WidthProps;
|
|
3126
|
+
type DBTableDefaultState = {
|
|
3127
|
+
_data?: DBTableData;
|
|
3128
|
+
_style?: any;
|
|
3129
|
+
convertData: () => DBTableData;
|
|
3130
|
+
};
|
|
3131
|
+
type DBTableState = DBTableDefaultState & GlobalState;
|
|
3132
|
+
|
|
3133
|
+
declare class DBTable implements AfterViewInit {
|
|
3134
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3135
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
3136
|
+
data: InputSignal<DBTableProps["data"]>;
|
|
3137
|
+
mobileVariant: InputSignal<DBTableProps["mobileVariant"]>;
|
|
3138
|
+
columnSizes: InputSignal<DBTableProps["columnSizes"]>;
|
|
3139
|
+
className: InputSignal<DBTableProps["className"]>;
|
|
3140
|
+
width: InputSignal<DBTableProps["width"]>;
|
|
3141
|
+
size: InputSignal<DBTableProps["size"]>;
|
|
3142
|
+
divider: InputSignal<DBTableProps["divider"]>;
|
|
3143
|
+
variant: InputSignal<DBTableProps["variant"]>;
|
|
3144
|
+
showCaption: InputSignal<DBTableProps["showCaption"]>;
|
|
3145
|
+
stickyHeader: InputSignal<DBTableProps["stickyHeader"]>;
|
|
3146
|
+
id: InputSignal<DBTableProps["id"]>;
|
|
3147
|
+
captionPlain: InputSignal<DBTableProps["captionPlain"]>;
|
|
3148
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3149
|
+
_data: _angular_core.WritableSignal<DBTableData | undefined>;
|
|
3150
|
+
_style: _angular_core.WritableSignal<any>;
|
|
3151
|
+
convertData(): any;
|
|
3152
|
+
constructor();
|
|
3153
|
+
/**
|
|
3154
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3155
|
+
* @param element the ref for the component
|
|
3156
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3157
|
+
*/
|
|
3158
|
+
private enableAttributePassing;
|
|
3159
|
+
ngAfterViewInit(): void;
|
|
3160
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTable, never>;
|
|
3161
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTable, "db-table", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "mobileVariant": { "alias": "mobileVariant"; "required": false; "isSignal": true; }; "columnSizes": { "alias": "columnSizes"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "divider": { "alias": "divider"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showCaption": { "alias": "showCaption"; "required": false; "isSignal": true; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "captionPlain": { "alias": "captionPlain"; "required": false; "isSignal": true; }; }, {}, never, ["[caption]", "*"], true, never>;
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
type DBTableBodyDefaultProps = {
|
|
3165
|
+
rows?: DBTableRowProps[];
|
|
3166
|
+
};
|
|
3167
|
+
type DBTableBodyProps = DBTableBodyDefaultProps & GlobalProps;
|
|
3168
|
+
type DBTableBodyDefaultState = {};
|
|
3169
|
+
type DBTableBodyState = DBTableBodyDefaultState & GlobalState;
|
|
3170
|
+
|
|
3171
|
+
declare class DBTableBody implements AfterViewInit {
|
|
3172
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3173
|
+
protected readonly uuid: () => string;
|
|
3174
|
+
id: InputSignal<DBTableBodyProps["id"]>;
|
|
3175
|
+
className: InputSignal<DBTableBodyProps["className"]>;
|
|
3176
|
+
rows: InputSignal<DBTableBodyProps["rows"]>;
|
|
3177
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3178
|
+
trackByRow0(index: number, row: any): string;
|
|
3179
|
+
constructor();
|
|
3180
|
+
/**
|
|
3181
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3182
|
+
* @param element the ref for the component
|
|
3183
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3184
|
+
*/
|
|
3185
|
+
private enableAttributePassing;
|
|
3186
|
+
ngAfterViewInit(): void;
|
|
3187
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableBody, never>;
|
|
3188
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableBody, "db-table-body", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
type DBTableCaptionDefaultProps = {};
|
|
3192
|
+
type DBTableCaptionProps = DBTableCaptionDefaultProps & GlobalProps;
|
|
3193
|
+
type DBTableCaptionDefaultState = {};
|
|
3194
|
+
type DBTableCaptionState = DBTableCaptionDefaultState & GlobalState;
|
|
3195
|
+
|
|
3196
|
+
declare class DBTableCaption implements AfterViewInit {
|
|
3197
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3198
|
+
id: InputSignal<DBTableCaptionProps["id"]>;
|
|
3199
|
+
className: InputSignal<DBTableCaptionProps["className"]>;
|
|
3200
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3201
|
+
constructor();
|
|
3202
|
+
/**
|
|
3203
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3204
|
+
* @param element the ref for the component
|
|
3205
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3206
|
+
*/
|
|
3207
|
+
private enableAttributePassing;
|
|
3208
|
+
ngAfterViewInit(): void;
|
|
3209
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableCaption, never>;
|
|
3210
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableCaption, "db-table-caption", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3213
|
+
declare class DBTableDataCell implements AfterViewInit {
|
|
3214
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3215
|
+
protected readonly getNumber: (originNumber?: number | string, alternativeNumber?: number | string) => number | undefined;
|
|
3216
|
+
id: InputSignal<DBTableDataCellProps["id"]>;
|
|
3217
|
+
className: InputSignal<DBTableDataCellProps["className"]>;
|
|
3218
|
+
horizontalAlignment: InputSignal<DBTableDataCellProps["horizontalAlignment"]>;
|
|
3219
|
+
verticalAlignment: InputSignal<DBTableDataCellProps["verticalAlignment"]>;
|
|
3220
|
+
colSpan: InputSignal<DBTableDataCellProps["colSpan"]>;
|
|
3221
|
+
colspan: InputSignal<DBTableDataCellProps["colspan"]>;
|
|
3222
|
+
rowSpan: InputSignal<DBTableDataCellProps["rowSpan"]>;
|
|
3223
|
+
rowspan: InputSignal<DBTableDataCellProps["rowspan"]>;
|
|
3224
|
+
headers: InputSignal<DBTableDataCellProps["headers"]>;
|
|
3225
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3226
|
+
constructor();
|
|
3227
|
+
/**
|
|
3228
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3229
|
+
* @param element the ref for the component
|
|
3230
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3231
|
+
*/
|
|
3232
|
+
private enableAttributePassing;
|
|
3233
|
+
ngAfterViewInit(): void;
|
|
3234
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableDataCell, never>;
|
|
3235
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableDataCell, "db-table-data-cell", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "horizontalAlignment": { "alias": "horizontalAlignment"; "required": false; "isSignal": true; }; "verticalAlignment": { "alias": "verticalAlignment"; "required": false; "isSignal": true; }; "colSpan": { "alias": "colSpan"; "required": false; "isSignal": true; }; "colspan": { "alias": "colspan"; "required": false; "isSignal": true; }; "rowSpan": { "alias": "rowSpan"; "required": false; "isSignal": true; }; "rowspan": { "alias": "rowspan"; "required": false; "isSignal": true; }; "headers": { "alias": "headers"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3236
|
+
}
|
|
3237
|
+
|
|
3238
|
+
type DBTableFooterDefaultProps = {
|
|
3239
|
+
rows?: DBTableRowProps[];
|
|
3240
|
+
};
|
|
3241
|
+
type DBTableFooterProps = DBTableFooterDefaultProps & GlobalProps;
|
|
3242
|
+
type DBTableFooterDefaultState = {};
|
|
3243
|
+
type DBTableFooterState = DBTableFooterDefaultState & GlobalState;
|
|
3244
|
+
|
|
3245
|
+
declare class DBTableFooter implements AfterViewInit {
|
|
3246
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3247
|
+
protected readonly uuid: () => string;
|
|
3248
|
+
id: InputSignal<DBTableFooterProps["id"]>;
|
|
3249
|
+
className: InputSignal<DBTableFooterProps["className"]>;
|
|
3250
|
+
rows: InputSignal<DBTableFooterProps["rows"]>;
|
|
3251
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3252
|
+
trackByRow0(index: number, row: any): string;
|
|
3253
|
+
constructor();
|
|
3254
|
+
/**
|
|
3255
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3256
|
+
* @param element the ref for the component
|
|
3257
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3258
|
+
*/
|
|
3259
|
+
private enableAttributePassing;
|
|
3260
|
+
ngAfterViewInit(): void;
|
|
3261
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableFooter, never>;
|
|
3262
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableFooter, "db-table-footer", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3263
|
+
}
|
|
3264
|
+
|
|
3265
|
+
type DBTableHeadDefaultProps = {
|
|
3266
|
+
rows?: DBTableRowProps[];
|
|
3267
|
+
};
|
|
3268
|
+
type DBTableHeadProps = DBTableHeadDefaultProps & GlobalProps;
|
|
3269
|
+
type DBTableHeadDefaultState = {
|
|
3270
|
+
getCells: (cells?: DBTableRowCell[]) => DBTableRowCell[] | undefined;
|
|
3271
|
+
};
|
|
3272
|
+
type DBTableHeadState = DBTableHeadDefaultState & GlobalState;
|
|
3273
|
+
|
|
3274
|
+
declare class DBTableHead implements AfterViewInit {
|
|
3275
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3276
|
+
protected readonly uuid: () => string;
|
|
3277
|
+
id: InputSignal<DBTableHeadProps["id"]>;
|
|
3278
|
+
className: InputSignal<DBTableHeadProps["className"]>;
|
|
3279
|
+
rows: InputSignal<DBTableHeadProps["rows"]>;
|
|
3280
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3281
|
+
getCells(cells?: DBTableRowCell[]): ({
|
|
3282
|
+
headerCell: boolean;
|
|
3283
|
+
children?: any;
|
|
3284
|
+
className?: string;
|
|
3285
|
+
class?: string | any;
|
|
3286
|
+
id?: string;
|
|
3287
|
+
autofocus?: boolean | string;
|
|
3288
|
+
propOverrides?: _db_ux_ngx_core_components.PropOverridesType;
|
|
3289
|
+
colSpan?: number | string;
|
|
3290
|
+
colspan?: number | string;
|
|
3291
|
+
headers?: string;
|
|
3292
|
+
rowSpan?: number | string;
|
|
3293
|
+
rowspan?: number | string;
|
|
3294
|
+
horizontalAlignment?: _db_ux_ngx_core_components.AlignmentType;
|
|
3295
|
+
verticalAlignment?: _db_ux_ngx_core_components.AlignmentType;
|
|
3296
|
+
content?: any;
|
|
3297
|
+
link?: _db_ux_ngx_core_components.DBLinkProps;
|
|
3298
|
+
} | {
|
|
3299
|
+
headerCell: boolean;
|
|
3300
|
+
abbr?: string;
|
|
3301
|
+
scope?: _db_ux_ngx_core_components.DBTableHeaderCellScopeType;
|
|
3302
|
+
noText?: boolean | string;
|
|
3303
|
+
children?: any;
|
|
3304
|
+
className?: string;
|
|
3305
|
+
class?: string | any;
|
|
3306
|
+
id?: string;
|
|
3307
|
+
autofocus?: boolean | string;
|
|
3308
|
+
propOverrides?: _db_ux_ngx_core_components.PropOverridesType;
|
|
3309
|
+
colSpan?: number | string;
|
|
3310
|
+
colspan?: number | string;
|
|
3311
|
+
headers?: string;
|
|
3312
|
+
rowSpan?: number | string;
|
|
3313
|
+
rowspan?: number | string;
|
|
3314
|
+
horizontalAlignment?: _db_ux_ngx_core_components.AlignmentType;
|
|
3315
|
+
verticalAlignment?: _db_ux_ngx_core_components.AlignmentType;
|
|
3316
|
+
content?: any;
|
|
3317
|
+
link?: _db_ux_ngx_core_components.DBLinkProps;
|
|
3318
|
+
})[] | undefined;
|
|
3319
|
+
trackByRow0(index: number, row: any): string;
|
|
3320
|
+
constructor();
|
|
3321
|
+
/**
|
|
3322
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3323
|
+
* @param element the ref for the component
|
|
3324
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3325
|
+
*/
|
|
3326
|
+
private enableAttributePassing;
|
|
3327
|
+
ngAfterViewInit(): void;
|
|
3328
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableHead, never>;
|
|
3329
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableHead, "db-table-head", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3330
|
+
}
|
|
3331
|
+
|
|
3332
|
+
declare class DBTableHeaderCell implements AfterViewInit {
|
|
3333
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3334
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
3335
|
+
protected readonly getNumber: (originNumber?: number | string, alternativeNumber?: number | string) => number | undefined;
|
|
3336
|
+
id: InputSignal<DBTableHeaderCellProps["id"]>;
|
|
3337
|
+
className: InputSignal<DBTableHeaderCellProps["className"]>;
|
|
3338
|
+
horizontalAlignment: InputSignal<DBTableHeaderCellProps["horizontalAlignment"]>;
|
|
3339
|
+
verticalAlignment: InputSignal<DBTableHeaderCellProps["verticalAlignment"]>;
|
|
3340
|
+
noText: InputSignal<DBTableHeaderCellProps["noText"]>;
|
|
3341
|
+
scope: InputSignal<DBTableHeaderCellProps["scope"]>;
|
|
3342
|
+
colSpan: InputSignal<DBTableHeaderCellProps["colSpan"]>;
|
|
3343
|
+
colspan: InputSignal<DBTableHeaderCellProps["colspan"]>;
|
|
3344
|
+
rowSpan: InputSignal<DBTableHeaderCellProps["rowSpan"]>;
|
|
3345
|
+
rowspan: InputSignal<DBTableHeaderCellProps["rowspan"]>;
|
|
3346
|
+
headers: InputSignal<DBTableHeaderCellProps["headers"]>;
|
|
3347
|
+
abbr: InputSignal<DBTableHeaderCellProps["abbr"]>;
|
|
3348
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3349
|
+
constructor();
|
|
3350
|
+
/**
|
|
3351
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3352
|
+
* @param element the ref for the component
|
|
3353
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3354
|
+
*/
|
|
3355
|
+
private enableAttributePassing;
|
|
3356
|
+
ngAfterViewInit(): void;
|
|
3357
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableHeaderCell, never>;
|
|
3358
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableHeaderCell, "db-table-header-cell", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "horizontalAlignment": { "alias": "horizontalAlignment"; "required": false; "isSignal": true; }; "verticalAlignment": { "alias": "verticalAlignment"; "required": false; "isSignal": true; }; "noText": { "alias": "noText"; "required": false; "isSignal": true; }; "scope": { "alias": "scope"; "required": false; "isSignal": true; }; "colSpan": { "alias": "colSpan"; "required": false; "isSignal": true; }; "colspan": { "alias": "colspan"; "required": false; "isSignal": true; }; "rowSpan": { "alias": "rowSpan"; "required": false; "isSignal": true; }; "rowspan": { "alias": "rowspan"; "required": false; "isSignal": true; }; "headers": { "alias": "headers"; "required": false; "isSignal": true; }; "abbr": { "alias": "abbr"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
declare class DBTableRow implements AfterViewInit {
|
|
3362
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3363
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
3364
|
+
protected readonly uuid: () => string;
|
|
3365
|
+
id: InputSignal<DBTableRowProps["id"]>;
|
|
3366
|
+
className: InputSignal<DBTableRowProps["className"]>;
|
|
3367
|
+
interactive: InputSignal<DBTableRowProps["interactive"]>;
|
|
3368
|
+
subHeaderEmphasis: InputSignal<DBTableRowProps["subHeaderEmphasis"]>;
|
|
3369
|
+
cells: InputSignal<DBTableRowProps["cells"]>;
|
|
3370
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3371
|
+
getHeaderCell(cell: DBTableRowCell): DBTableHeaderCellProps | undefined;
|
|
3372
|
+
constructor();
|
|
3373
|
+
/**
|
|
3374
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3375
|
+
* @param element the ref for the component
|
|
3376
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3377
|
+
*/
|
|
3378
|
+
private enableAttributePassing;
|
|
3379
|
+
ngAfterViewInit(): void;
|
|
3380
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBTableRow, never>;
|
|
3381
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBTableRow, "db-table-row", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "interactive": { "alias": "interactive"; "required": false; "isSignal": true; }; "subHeaderEmphasis": { "alias": "subHeaderEmphasis"; "required": false; "isSignal": true; }; "cells": { "alias": "cells"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3382
|
+
}
|
|
3383
|
+
|
|
2956
3384
|
declare const TabsBehaviorList: readonly ["scrollbar", "arrows"];
|
|
2957
3385
|
type TabsBehaviorType = (typeof TabsBehaviorList)[number];
|
|
2958
3386
|
declare const TabsInitialSelectedModeList: readonly ["auto", "manually"];
|
|
@@ -3107,7 +3535,7 @@ type DBTagState = DBTagDefaultState & GlobalState;
|
|
|
3107
3535
|
|
|
3108
3536
|
declare class DBTag implements AfterViewInit {
|
|
3109
3537
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3110
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
3538
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
3111
3539
|
removeButton: InputSignal<DBTagProps["removeButton"]>;
|
|
3112
3540
|
id: InputSignal<DBTagProps["id"]>;
|
|
3113
3541
|
propOverrides: InputSignal<DBTagProps["propOverrides"]>;
|
|
@@ -3277,7 +3705,7 @@ type DBTooltipState = DBTooltipDefaultState & GlobalState & ClickEventState<HTML
|
|
|
3277
3705
|
|
|
3278
3706
|
declare class DBTooltip implements AfterViewInit {
|
|
3279
3707
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3280
|
-
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
3708
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
3281
3709
|
id: InputSignal<DBTooltipProps["id"]>;
|
|
3282
3710
|
propOverrides: InputSignal<DBTooltipProps["propOverrides"]>;
|
|
3283
3711
|
variant: InputSignal<DBTooltipProps["variant"]>;
|
|
@@ -3446,5 +3874,5 @@ declare const getFloatingProps: (element: HTMLElement, parent: HTMLElement, plac
|
|
|
3446
3874
|
};
|
|
3447
3875
|
declare const handleFixedPopover: (element: HTMLElement, parent: HTMLElement, placement: string) => void;
|
|
3448
3876
|
|
|
3449
|
-
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, 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 };
|
|
3450
|
-
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, 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 };
|
|
3877
|
+
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 };
|
|
3878
|
+
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 };
|