@db-ux/ngx-core-components 4.13.1-angular-signal-forms13-577b861 → 4.14.0-shell-52d18db
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/agent/ControlPanelBrand.md +25 -0
- package/agent/ControlPanelDesktop.md +65 -0
- package/agent/ControlPanelMeta.md +30 -0
- package/agent/ControlPanelMobile.md +57 -0
- package/agent/ControlPanelNavigation.md +40 -0
- package/agent/ControlPanelNavigationItem.md +49 -0
- package/agent/ControlPanelPrimaryActions.md +30 -0
- package/agent/ControlPanelSecondaryActions.md +36 -0
- package/agent/Drawer.md +0 -8
- package/agent/Shell.md +45 -0
- package/agent/ShellSubNavigation.md +6 -0
- package/agent/_instructions.md +11 -1
- package/fesm2022/db-ux-ngx-core-components.mjs +6604 -3114
- 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 +1046 -139
|
@@ -30,6 +30,18 @@ interface GlobalProps {
|
|
|
30
30
|
*/
|
|
31
31
|
propOverrides?: PropOverridesType;
|
|
32
32
|
}
|
|
33
|
+
type StartSlotProps = {
|
|
34
|
+
/**
|
|
35
|
+
* Slot for start content, for example add a custom component between an icon and a label.
|
|
36
|
+
*/
|
|
37
|
+
startSlot?: any;
|
|
38
|
+
};
|
|
39
|
+
type EndSlotProps = {
|
|
40
|
+
/**
|
|
41
|
+
* Slot for end content, for example add a custom component between an icon and a label.
|
|
42
|
+
*/
|
|
43
|
+
endSlot?: any;
|
|
44
|
+
};
|
|
33
45
|
type PropOverridesType = Pick<GlobalProps, 'id'>;
|
|
34
46
|
type GlobalState = {
|
|
35
47
|
_id?: string;
|
|
@@ -97,6 +109,10 @@ type MarginProps = {
|
|
|
97
109
|
*/
|
|
98
110
|
margin?: MarginType;
|
|
99
111
|
};
|
|
112
|
+
declare const ShellControlPanelDesktopPosition: readonly ["top", "left"];
|
|
113
|
+
type ShellControlPanelDesktopPositionType = (typeof ShellControlPanelDesktopPosition)[number];
|
|
114
|
+
declare const ShellControlPanelMobilePosition: readonly ["top", "bottom"];
|
|
115
|
+
type ShellControlPanelMobilePositionType = (typeof ShellControlPanelMobilePosition)[number];
|
|
100
116
|
declare const PlacementHorizontalList: readonly ["left", "right", "left-start", "left-end", "right-start", "right-end"];
|
|
101
117
|
type PlacementHorizontalType = (typeof PlacementHorizontalList)[number];
|
|
102
118
|
declare const PlacementVerticalList: readonly ["top", "bottom", "top-start", "top-end", "bottom-start", "bottom-end"];
|
|
@@ -242,11 +258,13 @@ type ValueProps = {
|
|
|
242
258
|
*/
|
|
243
259
|
value?: any;
|
|
244
260
|
};
|
|
245
|
-
type
|
|
261
|
+
type DisabledProps = {
|
|
246
262
|
/**
|
|
247
|
-
* The disabled attribute can be set to keep a user from clicking on the
|
|
263
|
+
* The disabled attribute can be set to keep a user from clicking on the item.
|
|
248
264
|
*/
|
|
249
265
|
disabled?: boolean | string;
|
|
266
|
+
};
|
|
267
|
+
type BaseFormProps = {
|
|
250
268
|
/**
|
|
251
269
|
* The label attribute specifies the caption of the form element.
|
|
252
270
|
*/
|
|
@@ -255,7 +273,7 @@ type BaseFormProps = {
|
|
|
255
273
|
* The name attribute gives the name of the form control, as used in form submission and in the form element's elements object.
|
|
256
274
|
*/
|
|
257
275
|
name?: string;
|
|
258
|
-
};
|
|
276
|
+
} & DisabledProps;
|
|
259
277
|
type CustomFormProps = {
|
|
260
278
|
/**
|
|
261
279
|
* Overwrites auto handling for aria-describedby.
|
|
@@ -526,11 +544,33 @@ type NavigationBackButtonProps = {
|
|
|
526
544
|
*/
|
|
527
545
|
backButtonText?: string;
|
|
528
546
|
};
|
|
529
|
-
type
|
|
547
|
+
type ControlPanelProps = {
|
|
548
|
+
/**
|
|
549
|
+
* Slot to pass in the DBControlPanelBrand component
|
|
550
|
+
*/
|
|
551
|
+
brand?: any;
|
|
552
|
+
/**
|
|
553
|
+
* Slot to pass in a meta navigation.
|
|
554
|
+
* Desktop: Above the regular control-panel-desktop
|
|
555
|
+
* Mobile: Inside the drawer
|
|
556
|
+
*/
|
|
557
|
+
meta?: any;
|
|
558
|
+
/**
|
|
559
|
+
* Slot to pass one or more elements like DBButton (e.g. search) as primary action.
|
|
560
|
+
* Desktop: Shown next to the main-navigation
|
|
561
|
+
* Mobile: Shown next to the control-panel-brand
|
|
562
|
+
*/
|
|
563
|
+
primaryActions?: any;
|
|
564
|
+
/**
|
|
565
|
+
* Slot to pass one or more elements like DBButton (e.g. profile, language, etc.) as secondary action.
|
|
566
|
+
* Desktop: Shown separated by divider at the end of the control-panel-desktop
|
|
567
|
+
* Mobile: Shown inside the drawer at the bottom.
|
|
568
|
+
*/
|
|
569
|
+
secondaryActions?: any;
|
|
530
570
|
/**
|
|
531
|
-
*
|
|
571
|
+
* Slot to pass an anchor or link to skip the navigation and jump to main content.
|
|
532
572
|
*/
|
|
533
|
-
|
|
573
|
+
skipNavigation?: any;
|
|
534
574
|
};
|
|
535
575
|
type NoTextProps = {
|
|
536
576
|
/**
|
|
@@ -542,10 +582,72 @@ type ValueLabelType = {
|
|
|
542
582
|
value: string;
|
|
543
583
|
label?: string;
|
|
544
584
|
};
|
|
585
|
+
type OverflowScrollButtonProps = {
|
|
586
|
+
/**
|
|
587
|
+
* Change amount of scroll distance when clicking on an overflow scroll arrow button.
|
|
588
|
+
*/
|
|
589
|
+
arrowScrollDistance?: number | string;
|
|
590
|
+
/**
|
|
591
|
+
* Set the text for the scroll left button
|
|
592
|
+
*/
|
|
593
|
+
scrollLeftText?: string;
|
|
594
|
+
/**
|
|
595
|
+
* Set the text for the scroll right button
|
|
596
|
+
*/
|
|
597
|
+
scrollRightText?: string;
|
|
598
|
+
};
|
|
599
|
+
type OverflowScrollButtonState = {
|
|
600
|
+
scroll: (left?: boolean) => void;
|
|
601
|
+
showScrollLeft?: boolean;
|
|
602
|
+
showScrollRight?: boolean;
|
|
603
|
+
evaluateScrollButtons: (tabList: Element) => void;
|
|
604
|
+
};
|
|
605
|
+
type SidebarProps = {
|
|
606
|
+
/**
|
|
607
|
+
* Set the expanded/collapsed state initially for the left sidebar
|
|
608
|
+
*/
|
|
609
|
+
expanded?: boolean | string;
|
|
610
|
+
/**
|
|
611
|
+
* Set the tooltip for the expand/collapse button
|
|
612
|
+
*/
|
|
613
|
+
expandButtonTooltip?: string;
|
|
614
|
+
/**
|
|
615
|
+
* Set the tooltip for the expand/collapse button based on the state. (only react|vue)
|
|
616
|
+
*/
|
|
617
|
+
expandButtonTooltipFn?: (open: boolean) => string;
|
|
618
|
+
/**
|
|
619
|
+
* Set the tooltip for the expand/collapse button based on the state. (only react|vue)
|
|
620
|
+
*/
|
|
621
|
+
onExpandButtonTooltipFn?: (open: boolean) => string;
|
|
622
|
+
};
|
|
623
|
+
type SidebarState = {
|
|
624
|
+
_open: boolean;
|
|
625
|
+
getToggleButtonText: () => string;
|
|
626
|
+
};
|
|
627
|
+
declare const NavigationItemGroupVariantList: readonly ["popover", "tree"];
|
|
628
|
+
type NavigationItemGroupVariantType = (typeof NavigationItemGroupVariantList)[number];
|
|
629
|
+
type NavigationItemGroupVariant = {
|
|
630
|
+
/**
|
|
631
|
+
* Selects the navigation interaction model: `popover` shows sub-items
|
|
632
|
+
* in a flyout menu, `tree` shows a collapsible tree structure.
|
|
633
|
+
* Note: This selects an interaction model, not just a visual variant.
|
|
634
|
+
*/
|
|
635
|
+
variant?: NavigationItemGroupVariantType;
|
|
636
|
+
};
|
|
637
|
+
declare const CollapsibleBehaviorList: readonly ["single", "multiple"];
|
|
638
|
+
type CollapsibleBehaviorType = (typeof CollapsibleBehaviorList)[number];
|
|
639
|
+
type CollapsibleBehaviorProps = {
|
|
640
|
+
/**
|
|
641
|
+
* To allow multiple items open at the same time or only 1 item
|
|
642
|
+
* @default 'multiple'
|
|
643
|
+
*/
|
|
644
|
+
behavior?: CollapsibleBehaviorType;
|
|
645
|
+
};
|
|
545
646
|
type DocumentScrollState = {
|
|
546
647
|
_documentScrollListenerCallbackId?: string;
|
|
547
648
|
handleDocumentScroll: (event: any, parent?: HTMLElement) => void;
|
|
548
|
-
|
|
649
|
+
_intersectionObserverCallbackId?: string;
|
|
650
|
+
_resizeObserverCallbackId?: string;
|
|
549
651
|
};
|
|
550
652
|
type PopoverState = {
|
|
551
653
|
handleEscape: (event: any) => void;
|
|
@@ -624,6 +726,16 @@ declare const hasVoiceOver: () => boolean;
|
|
|
624
726
|
*/
|
|
625
727
|
declare const isIOSSafari: () => boolean;
|
|
626
728
|
declare const delay: (fn: () => void, ms: number) => Promise<unknown>;
|
|
729
|
+
/**
|
|
730
|
+
* Checks whether a CSS custom property on an element equals '1'.
|
|
731
|
+
* Useful for detecting CSS-driven boolean state (e.g. responsive breakpoints)
|
|
732
|
+
* without coupling JS to hardcoded breakpoint values.
|
|
733
|
+
*
|
|
734
|
+
* @param element - The element to read computed styles from
|
|
735
|
+
* @param property - The CSS custom property name (e.g. '--db-my-flag')
|
|
736
|
+
* @returns `true` if the trimmed property value is '1'
|
|
737
|
+
*/
|
|
738
|
+
declare const hasCssFlag: (element: Element, property: string) => boolean;
|
|
627
739
|
/**
|
|
628
740
|
* Converts boolean-like inputs to "true" or "false" strings.
|
|
629
741
|
* Handles HTML-style boolean attributes where an empty string or the
|
|
@@ -710,13 +822,7 @@ type DBAccordionItemState = DBAccordionItemDefaultState & ToggleEventState<HTMLE
|
|
|
710
822
|
|
|
711
823
|
declare const AccordionVariantList: readonly ["divider", "card"];
|
|
712
824
|
type AccordionVariantType = (typeof AccordionVariantList)[number];
|
|
713
|
-
declare const AccordionBehaviorList: readonly ["multiple", "single"];
|
|
714
|
-
type AccordionBehaviorType = (typeof AccordionBehaviorList)[number];
|
|
715
825
|
type DBAccordionDefaultProps = {
|
|
716
|
-
/**
|
|
717
|
-
* To allow multiple items open at the same time or only 1 item
|
|
718
|
-
*/
|
|
719
|
-
behavior?: AccordionBehaviorType;
|
|
720
826
|
/**
|
|
721
827
|
* The index of items which should be open when loading the accordion
|
|
722
828
|
*/
|
|
@@ -740,7 +846,7 @@ type DBAccordionDefaultProps = {
|
|
|
740
846
|
*/
|
|
741
847
|
variant?: AccordionVariantType;
|
|
742
848
|
};
|
|
743
|
-
type DBAccordionProps = DBAccordionDefaultProps & GlobalProps;
|
|
849
|
+
type DBAccordionProps = DBAccordionDefaultProps & GlobalProps & CollapsibleBehaviorProps;
|
|
744
850
|
type DBAccordionDefaultState = {
|
|
745
851
|
_initOpenIndexDone: boolean;
|
|
746
852
|
_name?: string;
|
|
@@ -1082,54 +1188,599 @@ declare class DBCheckbox implements AfterViewInit, ControlValueAccessor, OnDestr
|
|
|
1082
1188
|
_voiceOverFallback: _angular_core.WritableSignal<string | undefined>;
|
|
1083
1189
|
abortController: _angular_core.WritableSignal<AbortController | undefined>;
|
|
1084
1190
|
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1085
|
-
hasValidState(): boolean;
|
|
1086
|
-
handleValidation(): void;
|
|
1087
|
-
handleChange(event: ChangeEvent<HTMLInputElement>, reset?: boolean): void;
|
|
1088
|
-
handleBlur(event: any): void;
|
|
1089
|
-
handleFocus(event: InteractionEvent<HTMLInputElement> | any): void;
|
|
1090
|
-
resetIds(): void;
|
|
1191
|
+
hasValidState(): boolean;
|
|
1192
|
+
handleValidation(): void;
|
|
1193
|
+
handleChange(event: ChangeEvent<HTMLInputElement>, reset?: boolean): void;
|
|
1194
|
+
handleBlur(event: any): void;
|
|
1195
|
+
handleFocus(event: InteractionEvent<HTMLInputElement> | any): void;
|
|
1196
|
+
resetIds(): void;
|
|
1197
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1198
|
+
constructor(renderer: Renderer2);
|
|
1199
|
+
/**
|
|
1200
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1201
|
+
* @param element the ref for the component
|
|
1202
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1203
|
+
*/
|
|
1204
|
+
private enableAttributePassing;
|
|
1205
|
+
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
1206
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1207
|
+
errors: InputSignal<readonly {
|
|
1208
|
+
message?: string;
|
|
1209
|
+
}[] | undefined>;
|
|
1210
|
+
/** @internal Signal Forms validation state */
|
|
1211
|
+
_validMessage: _angular_core.WritableSignal<string | undefined>;
|
|
1212
|
+
/** @internal Signal Forms validation state */
|
|
1213
|
+
_valid: _angular_core.WritableSignal<string | undefined>;
|
|
1214
|
+
/** Signal Forms touch output — emitted on blur to mark the control as touched */
|
|
1215
|
+
touch: _angular_core.OutputEmitterRef<void>;
|
|
1216
|
+
/**
|
|
1217
|
+
* Reflect Signal Forms hidden state to the host element.
|
|
1218
|
+
* This intentionally intercepts Angular's native [hidden] binding —
|
|
1219
|
+
* consumers using [hidden]="condition" will hide the component via
|
|
1220
|
+
* :host([hidden]) { display: none !important }.
|
|
1221
|
+
*/
|
|
1222
|
+
get isHidden(): boolean;
|
|
1223
|
+
/** @legacy CVA - will be removed in a future major version */
|
|
1224
|
+
writeValue(value: any): void;
|
|
1225
|
+
/** @legacy CVA - will be removed in a future major version */
|
|
1226
|
+
propagateChange(_: any): void;
|
|
1227
|
+
/** @legacy CVA - will be removed in a future major version */
|
|
1228
|
+
registerOnChange(onChange: any): void;
|
|
1229
|
+
/** @legacy CVA - will be removed in a future major version */
|
|
1230
|
+
registerOnTouched(onTouched: any): void;
|
|
1231
|
+
/** @legacy CVA - will be removed in a future major version */
|
|
1232
|
+
propagateTouched(): void;
|
|
1233
|
+
/** @legacy CVA - will be removed in a future major version */
|
|
1234
|
+
setDisabledState(disabled: boolean): void;
|
|
1235
|
+
ngAfterViewInit(): void;
|
|
1236
|
+
ngOnDestroy(): void;
|
|
1237
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBCheckbox, never>;
|
|
1238
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBCheckbox, "db-checkbox", never, { "invalidMessage": { "alias": "invalidMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "showMessage": { "alias": "showMessage"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "validMessage": { "alias": "validMessage"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showRequiredAsterisk": { "alias": "showRequiredAsterisk"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "hidden": { "alias": "hidden"; "required": false; "isSignal": true; }; "errors": { "alias": "errors"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "disabled": "disabledChange"; "change": "change"; "blur": "blur"; "focus": "focus"; "touch": "touch"; }, never, ["*"], true, never>;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
type DBControlPanelBrandDefaultProps = {};
|
|
1242
|
+
type DBControlPanelBrandProps = DBControlPanelBrandDefaultProps & GlobalProps;
|
|
1243
|
+
type DBControlPanelBrandDefaultState = {};
|
|
1244
|
+
type DBControlPanelBrandState = DBControlPanelBrandDefaultState & GlobalState;
|
|
1245
|
+
|
|
1246
|
+
declare class DBControlPanelBrand implements AfterViewInit, OnDestroy {
|
|
1247
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1248
|
+
id: InputSignal<DBControlPanelBrandProps["id"]>;
|
|
1249
|
+
propOverrides: InputSignal<DBControlPanelBrandProps["propOverrides"]>;
|
|
1250
|
+
className: InputSignal<DBControlPanelBrandProps["className"]>;
|
|
1251
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1252
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1253
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1254
|
+
constructor();
|
|
1255
|
+
/**
|
|
1256
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1257
|
+
* @param element the ref for the component
|
|
1258
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1259
|
+
*/
|
|
1260
|
+
private enableAttributePassing;
|
|
1261
|
+
ngAfterViewInit(): void;
|
|
1262
|
+
ngOnDestroy(): void;
|
|
1263
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelBrand, never>;
|
|
1264
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelBrand, "db-control-panel-brand", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
type DBControlPanelDesktopDefaultProps = {};
|
|
1268
|
+
type DBControlPanelDesktopProps = DBControlPanelDesktopDefaultProps & GlobalProps & ContainerWidthProps & ControlPanelProps & OrientationProps & SidebarProps;
|
|
1269
|
+
type DBControlPanelDesktopDefaultState = {};
|
|
1270
|
+
type DBControlPanelDesktopState = DBControlPanelDesktopDefaultState & GlobalState & ToggleEventState<HTMLButtonElement> & SidebarState & ResetIdState;
|
|
1271
|
+
|
|
1272
|
+
declare class DBControlPanelDesktop implements AfterViewInit, OnDestroy {
|
|
1273
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1274
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1275
|
+
id: InputSignal<DBControlPanelDesktopProps["id"]>;
|
|
1276
|
+
propOverrides: InputSignal<DBControlPanelDesktopProps["propOverrides"]>;
|
|
1277
|
+
expanded: InputSignal<DBControlPanelDesktopProps["expanded"]>;
|
|
1278
|
+
expandButtonTooltip: InputSignal<DBControlPanelDesktopProps["expandButtonTooltip"]>;
|
|
1279
|
+
className: InputSignal<DBControlPanelDesktopProps["className"]>;
|
|
1280
|
+
width: InputSignal<DBControlPanelDesktopProps["width"]>;
|
|
1281
|
+
orientation: InputSignal<DBControlPanelDesktopProps["orientation"]>;
|
|
1282
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1283
|
+
_scrollContainerRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1284
|
+
_id: _angular_core.WritableSignal<string | undefined>;
|
|
1285
|
+
_open: _angular_core.WritableSignal<boolean>;
|
|
1286
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1287
|
+
handleToggle(event: any): void;
|
|
1288
|
+
getToggleButtonText(): string | undefined;
|
|
1289
|
+
resetIds(): void;
|
|
1290
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1291
|
+
constructor();
|
|
1292
|
+
/**
|
|
1293
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1294
|
+
* @param element the ref for the component
|
|
1295
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1296
|
+
*/
|
|
1297
|
+
private enableAttributePassing;
|
|
1298
|
+
ngOnInit(): void;
|
|
1299
|
+
ngAfterViewInit(): void;
|
|
1300
|
+
ngOnDestroy(): void;
|
|
1301
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelDesktop, never>;
|
|
1302
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelDesktop, "db-control-panel-desktop", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "expandButtonTooltip": { "alias": "expandButtonTooltip"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; }, {}, never, ["[skip-navigation]", "[brand]", "*", "[meta]", "[primary-actions]", "[secondary-actions]"], true, never>;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
type DBControlPanelFlatIconDefaultProps = {
|
|
1306
|
+
/**
|
|
1307
|
+
* Slot to pass an anchor or link to skip the navigation and jump to main content.
|
|
1308
|
+
*/
|
|
1309
|
+
skipNavigation?: any;
|
|
1310
|
+
};
|
|
1311
|
+
type DBControlPanelFlatIconProps = DBControlPanelFlatIconDefaultProps & GlobalProps & NoTextProps;
|
|
1312
|
+
type DBControlPanelFlatIconDefaultState = {
|
|
1313
|
+
_resizeObserverCallbackId?: string;
|
|
1314
|
+
};
|
|
1315
|
+
type DBControlPanelFlatIconState = DBControlPanelFlatIconDefaultState & GlobalState;
|
|
1316
|
+
|
|
1317
|
+
declare class DBControlPanelFlatIcon implements AfterViewInit, OnDestroy {
|
|
1318
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1319
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1320
|
+
id: InputSignal<DBControlPanelFlatIconProps["id"]>;
|
|
1321
|
+
propOverrides: InputSignal<DBControlPanelFlatIconProps["propOverrides"]>;
|
|
1322
|
+
noText: InputSignal<DBControlPanelFlatIconProps["noText"]>;
|
|
1323
|
+
className: InputSignal<DBControlPanelFlatIconProps["className"]>;
|
|
1324
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1325
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1326
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1327
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1328
|
+
constructor();
|
|
1329
|
+
/**
|
|
1330
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1331
|
+
* @param element the ref for the component
|
|
1332
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1333
|
+
*/
|
|
1334
|
+
private enableAttributePassing;
|
|
1335
|
+
ngAfterViewInit(): void;
|
|
1336
|
+
ngOnDestroy(): void;
|
|
1337
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelFlatIcon, never>;
|
|
1338
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelFlatIcon, "db-control-panel-flat-icon", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "noText": { "alias": "noText"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["[skip-navigation]", "*"], true, never>;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
type DBControlPanelMetaDefaultProps = {};
|
|
1342
|
+
type DBControlPanelMetaProps = DBControlPanelMetaDefaultProps & GlobalProps;
|
|
1343
|
+
type DBControlPanelMetaDefaultState = {};
|
|
1344
|
+
type DBControlPanelMetaState = DBControlPanelMetaDefaultState & GlobalState;
|
|
1345
|
+
|
|
1346
|
+
declare class DBControlPanelMeta implements AfterViewInit, OnDestroy {
|
|
1347
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1348
|
+
id: InputSignal<DBControlPanelMetaProps["id"]>;
|
|
1349
|
+
propOverrides: InputSignal<DBControlPanelMetaProps["propOverrides"]>;
|
|
1350
|
+
className: InputSignal<DBControlPanelMetaProps["className"]>;
|
|
1351
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1352
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1353
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1354
|
+
constructor();
|
|
1355
|
+
/**
|
|
1356
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1357
|
+
* @param element the ref for the component
|
|
1358
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1359
|
+
*/
|
|
1360
|
+
private enableAttributePassing;
|
|
1361
|
+
ngAfterViewInit(): void;
|
|
1362
|
+
ngOnDestroy(): void;
|
|
1363
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelMeta, never>;
|
|
1364
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelMeta, "db-control-panel-meta", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
type DBControlPanelMobileDefaultProps = {
|
|
1368
|
+
/**
|
|
1369
|
+
* Text to pass in a headline for the drawer header.
|
|
1370
|
+
*/
|
|
1371
|
+
drawerHeaderText?: string;
|
|
1372
|
+
/**
|
|
1373
|
+
* Sets the accessible label for the burger menu button of the mobile control panel.
|
|
1374
|
+
*/
|
|
1375
|
+
burgerMenuLabel?: string;
|
|
1376
|
+
/**
|
|
1377
|
+
* Change the position of the mobile content panel
|
|
1378
|
+
*/
|
|
1379
|
+
position?: ShellControlPanelMobilePositionType;
|
|
1380
|
+
};
|
|
1381
|
+
type DBControlPanelMobileProps = DBControlPanelMobileDefaultProps & GlobalProps & ToggleEventProps & ControlPanelProps;
|
|
1382
|
+
type DBControlPanelMobileDefaultState = {
|
|
1383
|
+
open: boolean;
|
|
1384
|
+
handleClose: (event: any) => void;
|
|
1385
|
+
};
|
|
1386
|
+
type DBControlPanelMobileState = DBControlPanelMobileDefaultState & GlobalState & ToggleEventState<HTMLElement> & NavigationBehaviorState;
|
|
1387
|
+
|
|
1388
|
+
declare class DBControlPanelMobile implements AfterViewInit, OnDestroy {
|
|
1389
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1390
|
+
protected readonly DEFAULT_BURGER_MENU: string;
|
|
1391
|
+
id: InputSignal<DBControlPanelMobileProps["id"]>;
|
|
1392
|
+
propOverrides: InputSignal<DBControlPanelMobileProps["propOverrides"]>;
|
|
1393
|
+
position: InputSignal<DBControlPanelMobileProps["position"]>;
|
|
1394
|
+
className: InputSignal<DBControlPanelMobileProps["className"]>;
|
|
1395
|
+
drawerHeaderText: InputSignal<DBControlPanelMobileProps["drawerHeaderText"]>;
|
|
1396
|
+
burgerMenuLabel: InputSignal<DBControlPanelMobileProps["burgerMenuLabel"]>;
|
|
1397
|
+
toggle: _angular_core.OutputEmitterRef<boolean | void>;
|
|
1398
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1399
|
+
open: _angular_core.WritableSignal<boolean>;
|
|
1400
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1401
|
+
handleToggle(event: any): void;
|
|
1402
|
+
handleClose(event: any): void;
|
|
1403
|
+
handleNavigationItemClick(event: any): void;
|
|
1404
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1405
|
+
constructor();
|
|
1406
|
+
/**
|
|
1407
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1408
|
+
* @param element the ref for the component
|
|
1409
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1410
|
+
*/
|
|
1411
|
+
private enableAttributePassing;
|
|
1412
|
+
ngAfterViewInit(): void;
|
|
1413
|
+
ngOnDestroy(): void;
|
|
1414
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelMobile, never>;
|
|
1415
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelMobile, "db-control-panel-mobile", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "drawerHeaderText": { "alias": "drawerHeaderText"; "required": false; "isSignal": true; }; "burgerMenuLabel": { "alias": "burgerMenuLabel"; "required": false; "isSignal": true; }; }, { "toggle": "toggle"; }, never, ["[skip-navigation]", "*", "[meta]", "[secondary-actions]", "[brand]", "[primary-actions]"], true, never>;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
type DBControlPanelNavigationDefaultProps = {
|
|
1419
|
+
/**
|
|
1420
|
+
* Show or hide the tree line connecting nested navigation items in tree variant.
|
|
1421
|
+
* @default true
|
|
1422
|
+
*/
|
|
1423
|
+
showTreeLine?: boolean | string;
|
|
1424
|
+
};
|
|
1425
|
+
type DBControlPanelNavigationProps = DBControlPanelNavigationDefaultProps & GlobalProps & OverflowScrollButtonProps & NavigationItemGroupVariant & CollapsibleBehaviorProps;
|
|
1426
|
+
type DBControlPanelNavigationDefaultState = {
|
|
1427
|
+
onScroll: () => void;
|
|
1428
|
+
_shellMobile?: boolean;
|
|
1429
|
+
_shellDesktopPosition?: string | null;
|
|
1430
|
+
_handleSubNavigation: () => void;
|
|
1431
|
+
_handleTreeKeyDown: (event: any) => void;
|
|
1432
|
+
_handleTreeKeys: (event: any) => void;
|
|
1433
|
+
_handlePopoverKeys: (event: any) => void;
|
|
1434
|
+
_focusParentGroupButton: (activeElement: HTMLElement) => boolean;
|
|
1435
|
+
_closeSubMenuAndReturnToParent: (parentGroupMenu: Element) => void;
|
|
1436
|
+
_resizeObserverCallbackId?: string;
|
|
1437
|
+
_singleBehaviorObserver?: MutationObserver;
|
|
1438
|
+
_attachSingleBehaviorObserver: () => void;
|
|
1439
|
+
_setShellMobile: () => void;
|
|
1440
|
+
};
|
|
1441
|
+
type DBControlPanelNavigationState = DBControlPanelNavigationDefaultState & GlobalState & OverflowScrollButtonState & InitializedState;
|
|
1442
|
+
|
|
1443
|
+
declare class DBControlPanelNavigation implements AfterViewInit, OnDestroy {
|
|
1444
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1445
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1446
|
+
protected readonly DEFAULT_SCROLL_LEFT: string;
|
|
1447
|
+
protected readonly DEFAULT_SCROLL_RIGHT: string;
|
|
1448
|
+
variant: InputSignal<DBControlPanelNavigationProps["variant"]>;
|
|
1449
|
+
behavior: InputSignal<DBControlPanelNavigationProps["behavior"]>;
|
|
1450
|
+
arrowScrollDistance: InputSignal<DBControlPanelNavigationProps["arrowScrollDistance"]>;
|
|
1451
|
+
id: InputSignal<DBControlPanelNavigationProps["id"]>;
|
|
1452
|
+
propOverrides: InputSignal<DBControlPanelNavigationProps["propOverrides"]>;
|
|
1453
|
+
showTreeLine: InputSignal<DBControlPanelNavigationProps["showTreeLine"]>;
|
|
1454
|
+
className: InputSignal<DBControlPanelNavigationProps["className"]>;
|
|
1455
|
+
scrollLeftText: InputSignal<DBControlPanelNavigationProps["scrollLeftText"]>;
|
|
1456
|
+
scrollRightText: InputSignal<DBControlPanelNavigationProps["scrollRightText"]>;
|
|
1457
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1458
|
+
menuRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1459
|
+
showScrollLeft: _angular_core.WritableSignal<boolean | undefined>;
|
|
1460
|
+
showScrollRight: _angular_core.WritableSignal<boolean | undefined>;
|
|
1461
|
+
_shellMobile: _angular_core.WritableSignal<boolean | undefined>;
|
|
1462
|
+
_shellDesktopPosition: _angular_core.WritableSignal<string | null | undefined>;
|
|
1463
|
+
initialized: _angular_core.WritableSignal<boolean>;
|
|
1464
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1465
|
+
_singleBehaviorObserver: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1466
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1467
|
+
_setShellMobile(): void;
|
|
1468
|
+
_attachSingleBehaviorObserver(): void;
|
|
1469
|
+
evaluateScrollButtons(tList: Element): void;
|
|
1470
|
+
scroll(left?: boolean): void;
|
|
1471
|
+
onScroll(): void;
|
|
1472
|
+
_handleSubNavigation(): void;
|
|
1473
|
+
_handleTreeKeyDown(event: any): void;
|
|
1474
|
+
_focusParentGroupButton(activeElement: HTMLElement): boolean;
|
|
1475
|
+
_closeSubMenuAndReturnToParent(parentGroupMenu: Element): void;
|
|
1476
|
+
_handlePopoverKeys(event: any): void;
|
|
1477
|
+
_handleTreeKeys(event: any): void;
|
|
1478
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1479
|
+
constructor();
|
|
1480
|
+
/**
|
|
1481
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1482
|
+
* @param element the ref for the component
|
|
1483
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1484
|
+
*/
|
|
1485
|
+
private enableAttributePassing;
|
|
1486
|
+
ngAfterViewInit(): void;
|
|
1487
|
+
ngOnDestroy(): void;
|
|
1488
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelNavigation, never>;
|
|
1489
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelNavigation, "db-control-panel-navigation", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "behavior": { "alias": "behavior"; "required": false; "isSignal": true; }; "arrowScrollDistance": { "alias": "arrowScrollDistance"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "showTreeLine": { "alias": "showTreeLine"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "scrollLeftText": { "alias": "scrollLeftText"; "required": false; "isSignal": true; }; "scrollRightText": { "alias": "scrollRightText"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
type DBControlPanelNavigationItemDefaultProps = {
|
|
1493
|
+
/**
|
|
1494
|
+
* Alternative indicator for active navigation item (bold font). In contrast to the use of aria-current="page" on the contained anchor, this does not guarantee correct a11y.
|
|
1495
|
+
*/
|
|
1496
|
+
active?: boolean;
|
|
1497
|
+
/**
|
|
1498
|
+
* If you use DBShell with controlPanelDesktopPosition="left" or DBControlPanelFlatIcon
|
|
1499
|
+
* you need to add a tooltip for collapsed navigation
|
|
1500
|
+
*/
|
|
1501
|
+
tooltip?: string;
|
|
1502
|
+
} & EndSlotProps & TextProps;
|
|
1503
|
+
type DBControlPanelNavigationItemProps = DBControlPanelNavigationItemDefaultProps & GlobalProps & IconProps & ShowIconProps & DisabledProps;
|
|
1504
|
+
type DBControlPanelNavigationItemDefaultState = {
|
|
1505
|
+
_tooltip?: string;
|
|
1506
|
+
_savedHref?: string;
|
|
1507
|
+
_role?: string;
|
|
1508
|
+
_attributeObserver?: MutationObserver;
|
|
1509
|
+
};
|
|
1510
|
+
type DBControlPanelNavigationItemState = DBControlPanelNavigationItemDefaultState & GlobalState & InitializedState;
|
|
1511
|
+
|
|
1512
|
+
declare class DBControlPanelNavigationItem implements AfterViewInit, OnDestroy {
|
|
1513
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1514
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1515
|
+
tooltip: InputSignal<DBControlPanelNavigationItemProps["tooltip"]>;
|
|
1516
|
+
text: InputSignal<DBControlPanelNavigationItemProps["text"]>;
|
|
1517
|
+
disabled: InputSignal<DBControlPanelNavigationItemProps["disabled"]>;
|
|
1518
|
+
id: InputSignal<DBControlPanelNavigationItemProps["id"]>;
|
|
1519
|
+
propOverrides: InputSignal<DBControlPanelNavigationItemProps["propOverrides"]>;
|
|
1520
|
+
className: InputSignal<DBControlPanelNavigationItemProps["className"]>;
|
|
1521
|
+
icon: InputSignal<DBControlPanelNavigationItemProps["icon"]>;
|
|
1522
|
+
showIcon: InputSignal<DBControlPanelNavigationItemProps["showIcon"]>;
|
|
1523
|
+
active: InputSignal<DBControlPanelNavigationItemProps["active"]>;
|
|
1524
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1525
|
+
_tooltip: _angular_core.WritableSignal<string | undefined>;
|
|
1526
|
+
_savedHref: _angular_core.WritableSignal<string | undefined>;
|
|
1527
|
+
_role: _angular_core.WritableSignal<string | undefined>;
|
|
1528
|
+
_attributeObserver: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1529
|
+
initialized: _angular_core.WritableSignal<boolean>;
|
|
1530
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1531
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1532
|
+
constructor();
|
|
1533
|
+
/**
|
|
1534
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1535
|
+
* @param element the ref for the component
|
|
1536
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1537
|
+
*/
|
|
1538
|
+
private enableAttributePassing;
|
|
1539
|
+
ngAfterViewInit(): void;
|
|
1540
|
+
ngOnDestroy(): void;
|
|
1541
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelNavigationItem, never>;
|
|
1542
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelNavigationItem, "db-control-panel-navigation-item", never, { "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "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; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; }, {}, never, ["*", "[end-slot]"], true, never>;
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
/**
|
|
1546
|
+
* Adjusts a sub-navigation's position so it stays within the viewport.
|
|
1547
|
+
* Called from _handleMouseEnter for the specific hovered item's menu.
|
|
1548
|
+
* Computes a precise pixel-based transform instead of the CSS's fixed
|
|
1549
|
+
* `translateY(-200%)` which overshoots for most menu heights.
|
|
1550
|
+
*
|
|
1551
|
+
* Only applies to menus NOT already positioned by handleFixedPopover
|
|
1552
|
+
* (i.e., nested sub-navigations that use position: absolute).
|
|
1553
|
+
*/
|
|
1554
|
+
declare const adjustNestedSubNavigationPosition: (element: HTMLElement) => void;
|
|
1555
|
+
type TriangleData = {
|
|
1556
|
+
itemRect: DOMRect;
|
|
1557
|
+
parentElementWidth: number;
|
|
1558
|
+
subNavigationHeight: number;
|
|
1559
|
+
padding: number;
|
|
1560
|
+
/**
|
|
1561
|
+
* The direction the sub-navigation opens relative to the element.
|
|
1562
|
+
* 'right' = sub-menu is to the right of the item
|
|
1563
|
+
* 'left' = sub-menu is to the left of the item
|
|
1564
|
+
* 'bottom' = sub-menu is below the item
|
|
1565
|
+
*/
|
|
1566
|
+
openDirection: 'left' | 'right' | 'bottom';
|
|
1567
|
+
};
|
|
1568
|
+
declare const isEventTargetNavigationItem: (event: unknown) => boolean;
|
|
1569
|
+
declare class NavigationItemSafeTriangle {
|
|
1570
|
+
private readonly element;
|
|
1571
|
+
private readonly subNavigation;
|
|
1572
|
+
private readonly parentSubNavigation;
|
|
1573
|
+
private triangleData?;
|
|
1574
|
+
private initialized;
|
|
1575
|
+
private mouseX;
|
|
1576
|
+
private mouseY;
|
|
1577
|
+
constructor(element: HTMLElement | null, subNavigation: HTMLElement | null);
|
|
1578
|
+
private init;
|
|
1579
|
+
enableFollow(): void;
|
|
1580
|
+
disableFollow(): void;
|
|
1581
|
+
private hasMouseEnteredSubNavigation;
|
|
1582
|
+
followByMouseEvent(event: {
|
|
1583
|
+
clientX: number;
|
|
1584
|
+
clientY: number;
|
|
1585
|
+
}): void;
|
|
1586
|
+
}
|
|
1587
|
+
declare const handleSubNavigationPosition: (element: HTMLElement, level?: number, vertical?: boolean) => void;
|
|
1588
|
+
|
|
1589
|
+
type DBControlPanelNavigationItemGroupDefaultProps = {
|
|
1590
|
+
/**
|
|
1591
|
+
* This is for mobile navigation only, if it is set the sub-navigation is a static overlay
|
|
1592
|
+
*/
|
|
1593
|
+
expanded?: boolean | string;
|
|
1594
|
+
/**
|
|
1595
|
+
* Change id for db-control-panel-navigation-item-group-menu
|
|
1596
|
+
*/
|
|
1597
|
+
menuId?: string;
|
|
1598
|
+
};
|
|
1599
|
+
type DBControlPanelNavigationItemGroupProps = DBControlPanelNavigationItemGroupDefaultProps & NavigationBackButtonProps & ClickEventProps<HTMLButtonElement> & GlobalProps & IconProps & ShowIconProps & DBControlPanelNavigationItemDefaultProps & DisabledProps;
|
|
1600
|
+
type DBControlPanelNavigationItemGroupDefaultState = {
|
|
1601
|
+
handleBackClick: (event: ClickEvent<HTMLButtonElement>) => void;
|
|
1602
|
+
isSubNavigationExpanded: boolean;
|
|
1603
|
+
_itemGroupMenuId: string;
|
|
1604
|
+
_intersectionObserverCallbackId?: string;
|
|
1605
|
+
_resizeObserverCallbackId?: string;
|
|
1606
|
+
_attributeObserver?: MutationObserver;
|
|
1607
|
+
_role?: string;
|
|
1608
|
+
_popoverListenersAttached: boolean;
|
|
1609
|
+
_isMobile: boolean;
|
|
1610
|
+
/**
|
|
1611
|
+
* Internal state property to show/hide sub-navigation button
|
|
1612
|
+
*/
|
|
1613
|
+
hasSubNavigation?: boolean;
|
|
1614
|
+
hasPopup?: boolean;
|
|
1615
|
+
navigationItemSafeTriangle?: NavigationItemSafeTriangle;
|
|
1616
|
+
autoClose?: boolean;
|
|
1617
|
+
onScroll: () => void;
|
|
1618
|
+
handleEscape: (event: any) => void;
|
|
1619
|
+
forceClose: () => void;
|
|
1620
|
+
_attachPopoverListeners: () => void;
|
|
1621
|
+
_detachPopoverListeners: () => void;
|
|
1622
|
+
_teardownPopover: () => void;
|
|
1623
|
+
_handleFocusIn: () => void;
|
|
1624
|
+
_handleFocusOut: (event: any) => void;
|
|
1625
|
+
_handleMouseEnter: () => void;
|
|
1626
|
+
_handleMouseLeave: () => void;
|
|
1627
|
+
_setSiblingsInert: (inert: boolean) => void;
|
|
1628
|
+
};
|
|
1629
|
+
type DBControlPanelNavigationItemGroupState = DBControlPanelNavigationItemGroupDefaultState & ClickEventState<HTMLButtonElement> & GlobalState & NavigationBehaviorState & InitializedState;
|
|
1630
|
+
|
|
1631
|
+
declare class DBControlPanelNavigationItemGroup implements AfterViewInit, OnDestroy {
|
|
1632
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1633
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1634
|
+
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
1635
|
+
protected readonly DEFAULT_BACK: string;
|
|
1636
|
+
expanded: InputSignal<DBControlPanelNavigationItemGroupProps["expanded"]>;
|
|
1637
|
+
id: InputSignal<DBControlPanelNavigationItemGroupProps["id"]>;
|
|
1638
|
+
propOverrides: InputSignal<DBControlPanelNavigationItemGroupProps["propOverrides"]>;
|
|
1639
|
+
className: InputSignal<DBControlPanelNavigationItemGroupProps["className"]>;
|
|
1640
|
+
icon: InputSignal<DBControlPanelNavigationItemGroupProps["icon"]>;
|
|
1641
|
+
showIcon: InputSignal<DBControlPanelNavigationItemGroupProps["showIcon"]>;
|
|
1642
|
+
active: InputSignal<DBControlPanelNavigationItemGroupProps["active"]>;
|
|
1643
|
+
disabled: InputSignal<DBControlPanelNavigationItemGroupProps["disabled"]>;
|
|
1644
|
+
menuId: InputSignal<DBControlPanelNavigationItemGroupProps["menuId"]>;
|
|
1645
|
+
text: InputSignal<DBControlPanelNavigationItemGroupProps["text"]>;
|
|
1646
|
+
backButtonId: InputSignal<DBControlPanelNavigationItemGroupProps["backButtonId"]>;
|
|
1647
|
+
backButtonText: InputSignal<DBControlPanelNavigationItemGroupProps["backButtonText"]>;
|
|
1648
|
+
click: _angular_core.OutputEmitterRef<void | MouseEvent>;
|
|
1649
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1650
|
+
_buttonRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1651
|
+
_menuRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1652
|
+
hasSubNavigation: _angular_core.WritableSignal<boolean | undefined>;
|
|
1653
|
+
isSubNavigationExpanded: _angular_core.WritableSignal<boolean>;
|
|
1654
|
+
autoClose: _angular_core.WritableSignal<boolean | undefined>;
|
|
1655
|
+
hasPopup: _angular_core.WritableSignal<boolean | undefined>;
|
|
1656
|
+
initialized: _angular_core.WritableSignal<boolean>;
|
|
1657
|
+
_isMobile: _angular_core.WritableSignal<boolean>;
|
|
1658
|
+
_role: _angular_core.WritableSignal<string | undefined>;
|
|
1659
|
+
_attributeObserver: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1660
|
+
_itemGroupMenuId: _angular_core.WritableSignal<string>;
|
|
1661
|
+
_intersectionObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1662
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1663
|
+
_popoverListenersAttached: _angular_core.WritableSignal<boolean>;
|
|
1664
|
+
navigationItemSafeTriangle: _angular_core.WritableSignal<NavigationItemSafeTriangle | undefined>;
|
|
1665
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1666
|
+
_handleFocusIn(): void;
|
|
1667
|
+
_handleFocusOut(event: any): void;
|
|
1668
|
+
_handleMouseEnter(): void;
|
|
1669
|
+
_handleMouseLeave(): void;
|
|
1670
|
+
_setSiblingsInert(inert: boolean): void;
|
|
1671
|
+
_attachPopoverListeners(): void;
|
|
1672
|
+
_detachPopoverListeners(): void;
|
|
1673
|
+
_teardownPopover(): void;
|
|
1674
|
+
onScroll(): void;
|
|
1675
|
+
handleNavigationItemClick(event: any): void;
|
|
1676
|
+
forceClose(): void;
|
|
1677
|
+
handleClick(event: ClickEvent<HTMLButtonElement> | any): void;
|
|
1678
|
+
handleBackClick(event: ClickEvent<HTMLButtonElement> | any): void;
|
|
1679
|
+
handleEscape(event: any): void;
|
|
1680
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1681
|
+
constructor();
|
|
1682
|
+
/**
|
|
1683
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1684
|
+
* @param element the ref for the component
|
|
1685
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1686
|
+
*/
|
|
1687
|
+
private enableAttributePassing;
|
|
1688
|
+
ngAfterViewInit(): void;
|
|
1689
|
+
ngOnDestroy(): void;
|
|
1690
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelNavigationItemGroup, never>;
|
|
1691
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelNavigationItemGroup, "db-control-panel-navigation-item-group", never, { "expanded": { "alias": "expanded"; "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; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "menuId": { "alias": "menuId"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "backButtonId": { "alias": "backButtonId"; "required": false; "isSignal": true; }; "backButtonText": { "alias": "backButtonText"; "required": false; "isSignal": true; }; }, { "click": "click"; }, never, ["[end-slot]", "*"], true, never>;
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
type DBControlPanelPrimaryActionsDefaultProps = {};
|
|
1695
|
+
type DBControlPanelPrimaryActionsProps = DBControlPanelPrimaryActionsDefaultProps & GlobalProps;
|
|
1696
|
+
type DBControlPanelPrimaryActionsDefaultState = {};
|
|
1697
|
+
type DBControlPanelPrimaryActionsState = DBControlPanelPrimaryActionsDefaultState & GlobalState;
|
|
1698
|
+
|
|
1699
|
+
declare class DBControlPanelPrimaryActions implements AfterViewInit, OnDestroy {
|
|
1700
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1701
|
+
id: InputSignal<DBControlPanelPrimaryActionsProps["id"]>;
|
|
1702
|
+
propOverrides: InputSignal<DBControlPanelPrimaryActionsProps["propOverrides"]>;
|
|
1703
|
+
className: InputSignal<DBControlPanelPrimaryActionsProps["className"]>;
|
|
1704
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1705
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1706
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1707
|
+
constructor();
|
|
1708
|
+
/**
|
|
1709
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1710
|
+
* @param element the ref for the component
|
|
1711
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1712
|
+
*/
|
|
1713
|
+
private enableAttributePassing;
|
|
1714
|
+
ngAfterViewInit(): void;
|
|
1715
|
+
ngOnDestroy(): void;
|
|
1716
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelPrimaryActions, never>;
|
|
1717
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelPrimaryActions, "db-control-panel-primary-actions", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
type DBControlPanelSecondaryActionsDefaultProps = {};
|
|
1721
|
+
type DBControlPanelSecondaryActionsProps = DBControlPanelSecondaryActionsDefaultProps & GlobalProps;
|
|
1722
|
+
type DBControlPanelSecondaryActionsDefaultState = {};
|
|
1723
|
+
type DBControlPanelSecondaryActionsState = DBControlPanelSecondaryActionsDefaultState & GlobalState;
|
|
1724
|
+
|
|
1725
|
+
declare class DBControlPanelSecondaryActions implements AfterViewInit, OnDestroy {
|
|
1726
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1727
|
+
id: InputSignal<DBControlPanelSecondaryActionsProps["id"]>;
|
|
1728
|
+
propOverrides: InputSignal<DBControlPanelSecondaryActionsProps["propOverrides"]>;
|
|
1729
|
+
className: InputSignal<DBControlPanelSecondaryActionsProps["className"]>;
|
|
1730
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1731
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1091
1732
|
setupObserver(element: HTMLElement | null): void;
|
|
1092
|
-
constructor(
|
|
1733
|
+
constructor();
|
|
1093
1734
|
/**
|
|
1094
1735
|
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1095
1736
|
* @param element the ref for the component
|
|
1096
1737
|
* @param customElementSelector the custom element like `my-component`
|
|
1097
1738
|
*/
|
|
1098
1739
|
private enableAttributePassing;
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
/** @internal Signal Forms validation state */
|
|
1107
|
-
_valid: _angular_core.WritableSignal<string | undefined>;
|
|
1108
|
-
/** Signal Forms touch output — emitted on blur to mark the control as touched */
|
|
1109
|
-
touch: _angular_core.OutputEmitterRef<void>;
|
|
1740
|
+
ngAfterViewInit(): void;
|
|
1741
|
+
ngOnDestroy(): void;
|
|
1742
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelSecondaryActions, never>;
|
|
1743
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelSecondaryActions, "db-control-panel-secondary-actions", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
type DBControlPanelSkipNavigationDefaultProps = {
|
|
1110
1747
|
/**
|
|
1111
|
-
*
|
|
1112
|
-
* This intentionally intercepts Angular's native [hidden] binding —
|
|
1113
|
-
* consumers using [hidden]="condition" will hide the component via
|
|
1114
|
-
* :host([hidden]) { display: none !important }.
|
|
1748
|
+
* Change the text for the link providing a skip for navigation jumping to main content
|
|
1115
1749
|
*/
|
|
1116
|
-
|
|
1117
|
-
/**
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1750
|
+
text?: string;
|
|
1751
|
+
/**
|
|
1752
|
+
* Target id for the skip-navigation link. Must match the `mainId` prop
|
|
1753
|
+
* on `DBShellContent` if you override it. Only one shell should exist per page.
|
|
1754
|
+
* @default 'main-content'
|
|
1755
|
+
*/
|
|
1756
|
+
target?: string;
|
|
1757
|
+
};
|
|
1758
|
+
type DBControlPanelSkipNavigationProps = DBControlPanelSkipNavigationDefaultProps & GlobalProps;
|
|
1759
|
+
type DBControlPanelSkipNavigationDefaultState = {};
|
|
1760
|
+
type DBControlPanelSkipNavigationState = DBControlPanelSkipNavigationDefaultState & GlobalState;
|
|
1761
|
+
|
|
1762
|
+
declare class DBControlPanelSkipNavigation implements AfterViewInit, OnDestroy {
|
|
1763
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1764
|
+
id: InputSignal<DBControlPanelSkipNavigationProps["id"]>;
|
|
1765
|
+
propOverrides: InputSignal<DBControlPanelSkipNavigationProps["propOverrides"]>;
|
|
1766
|
+
className: InputSignal<DBControlPanelSkipNavigationProps["className"]>;
|
|
1767
|
+
text: InputSignal<DBControlPanelSkipNavigationProps["text"]>;
|
|
1768
|
+
target: InputSignal<DBControlPanelSkipNavigationProps["target"]>;
|
|
1769
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1770
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1771
|
+
setupObserver(element: HTMLElement | null): void;
|
|
1772
|
+
templateStr_ggnerk(): string;
|
|
1773
|
+
constructor();
|
|
1774
|
+
/**
|
|
1775
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
1776
|
+
* @param element the ref for the component
|
|
1777
|
+
* @param customElementSelector the custom element like `my-component`
|
|
1778
|
+
*/
|
|
1779
|
+
private enableAttributePassing;
|
|
1129
1780
|
ngAfterViewInit(): void;
|
|
1130
1781
|
ngOnDestroy(): void;
|
|
1131
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
1132
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
1782
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBControlPanelSkipNavigation, never>;
|
|
1783
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBControlPanelSkipNavigation, "db-control-panel-skip-navigation", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1133
1784
|
}
|
|
1134
1785
|
|
|
1135
1786
|
type DBCustomButtonDefaultProps = {};
|
|
@@ -1410,6 +2061,10 @@ type DBCustomSelectDefaultState = {
|
|
|
1410
2061
|
_infoTextId?: string;
|
|
1411
2062
|
_internalChangeTimestamp: number;
|
|
1412
2063
|
_documentClickListenerCallbackId?: string;
|
|
2064
|
+
_documentScrollListenerCallbackId?: string;
|
|
2065
|
+
handleDocumentScroll: (event: any) => void;
|
|
2066
|
+
_intersectionObserverCallbackId?: string;
|
|
2067
|
+
_resizeObserverCallbackId?: string;
|
|
1413
2068
|
_searchValue?: string;
|
|
1414
2069
|
_userInteraction?: boolean;
|
|
1415
2070
|
getNativeSelectValue: () => string;
|
|
@@ -1420,7 +2075,7 @@ type DBCustomSelectDefaultState = {
|
|
|
1420
2075
|
searchEnabled: boolean;
|
|
1421
2076
|
amountOptions: number;
|
|
1422
2077
|
setDescById: (descId?: string) => void;
|
|
1423
|
-
handleTagRemove: (option: CustomSelectOptionType, event?: ClickEvent<HTMLButtonElement> | void) => void;
|
|
2078
|
+
handleTagRemove: (option: CustomSelectOptionType, event?: ClickEvent<HTMLButtonElement> | Event | void | any) => void;
|
|
1424
2079
|
handleSummaryFocus: () => void;
|
|
1425
2080
|
handleSelect: (value?: string) => void;
|
|
1426
2081
|
handleSelectAll: (event: any) => void;
|
|
@@ -1541,7 +2196,8 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
|
|
|
1541
2196
|
_documentClickListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1542
2197
|
_internalChangeTimestamp: _angular_core.WritableSignal<number>;
|
|
1543
2198
|
_documentScrollListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1544
|
-
|
|
2199
|
+
_intersectionObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
2200
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
1545
2201
|
_searchValue: _angular_core.WritableSignal<string | undefined>;
|
|
1546
2202
|
selectAllChecked: _angular_core.WritableSignal<boolean>;
|
|
1547
2203
|
selectAllIndeterminate: _angular_core.WritableSignal<boolean>;
|
|
@@ -1556,7 +2212,7 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
|
|
|
1556
2212
|
getOptionLabel(option: CustomSelectOptionType): string;
|
|
1557
2213
|
getOptionChecked(value?: string): boolean | undefined;
|
|
1558
2214
|
getTagRemoveLabel(option: CustomSelectOptionType): string;
|
|
1559
|
-
handleTagRemove(option: CustomSelectOptionType, event?: ClickEvent<HTMLButtonElement> |
|
|
2215
|
+
handleTagRemove(option: CustomSelectOptionType, event?: ClickEvent<HTMLButtonElement> | Event | void): void;
|
|
1560
2216
|
handleAutoPlacement(): void;
|
|
1561
2217
|
handleArrowDownUp(event: any): void;
|
|
1562
2218
|
handleKeyboardPress(event: any): void;
|
|
@@ -1584,7 +2240,7 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
|
|
|
1584
2240
|
*/
|
|
1585
2241
|
private enableAttributePassing;
|
|
1586
2242
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
1587
|
-
hidden:
|
|
2243
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1588
2244
|
errors: InputSignal<readonly {
|
|
1589
2245
|
message?: string;
|
|
1590
2246
|
}[] | undefined>;
|
|
@@ -1595,11 +2251,15 @@ declare class DBCustomSelect implements AfterViewInit, ControlValueAccessor, OnD
|
|
|
1595
2251
|
/** Signal Forms alias — maps to 'values' for FormValueControl duck-typing */
|
|
1596
2252
|
value: ModelSignal<any>;
|
|
1597
2253
|
/**
|
|
1598
|
-
* @internal Tracks the origin of the last write to prevent
|
|
1599
|
-
*
|
|
1600
|
-
*
|
|
2254
|
+
* @internal Tracks the origin of the last write to prevent redundant
|
|
2255
|
+
* re-processing within the same synchronous microtask.
|
|
2256
|
+
* NOTE: The actual infinite-loop prevention relies on Angular's signal
|
|
2257
|
+
* equality check (setting a signal to the same value does not re-notify).
|
|
2258
|
+
* This marker is an optimization to skip unnecessary array conversions.
|
|
1601
2259
|
*/
|
|
1602
2260
|
private _syncSource;
|
|
2261
|
+
/** @internal Tracks whether the value alias has been explicitly bound (driven by Signal Forms). */
|
|
2262
|
+
private _valueAliasActive;
|
|
1603
2263
|
/** @internal Sync value → values (Signal Forms writes to value) */
|
|
1604
2264
|
private _syncValueToValues;
|
|
1605
2265
|
/** @internal Sync values → value (CVA/user interaction writes to values) */
|
|
@@ -1739,7 +2399,7 @@ declare class DBCustomSelectListItem implements AfterViewInit, ControlValueAcces
|
|
|
1739
2399
|
*/
|
|
1740
2400
|
private enableAttributePassing;
|
|
1741
2401
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
1742
|
-
hidden:
|
|
2402
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1743
2403
|
errors: InputSignal<readonly {
|
|
1744
2404
|
message?: string;
|
|
1745
2405
|
}[] | undefined>;
|
|
@@ -1815,12 +2475,14 @@ declare class DBDivider implements AfterViewInit, OnDestroy {
|
|
|
1815
2475
|
|
|
1816
2476
|
declare const DrawerBackdropList: readonly ["none", "strong", "weak", "invisible"];
|
|
1817
2477
|
type DrawerBackdropType = (typeof DrawerBackdropList)[number];
|
|
1818
|
-
declare const DrawerDirectionList: readonly ["left", "right", "up", "down"];
|
|
2478
|
+
declare const DrawerDirectionList: readonly ["to-left", "to-right", "up", "down"];
|
|
1819
2479
|
type DrawerDirectionType = (typeof DrawerDirectionList)[number];
|
|
1820
2480
|
declare const DrawerVariantList: readonly ["modal", "inside"];
|
|
1821
2481
|
type DrawerVariantType = (typeof DrawerVariantList)[number];
|
|
1822
2482
|
declare const DrawerPositionList: readonly ["fixed", "absolute"];
|
|
1823
2483
|
type DrawerPositionType = (typeof DrawerPositionList)[number];
|
|
2484
|
+
declare const DrawerContainerSizeList: readonly ["small", "medium", "large", "full"];
|
|
2485
|
+
type DrawerContainerSizeType = (typeof DrawerContainerSizeList)[number];
|
|
1824
2486
|
type DBDrawerDefaultProps = {
|
|
1825
2487
|
/**
|
|
1826
2488
|
* The backdrop attribute changes the opacity of the backdrop.
|
|
@@ -1829,13 +2491,21 @@ type DBDrawerDefaultProps = {
|
|
|
1829
2491
|
backdrop?: DrawerBackdropType;
|
|
1830
2492
|
/**
|
|
1831
2493
|
* The direction attribute changes the position & animation of the drawer.
|
|
1832
|
-
* E.g. "left" slides from
|
|
2494
|
+
* E.g. "to-left" slides from right screen border to the left.
|
|
1833
2495
|
*/
|
|
1834
2496
|
direction?: DrawerDirectionType;
|
|
1835
2497
|
/**
|
|
1836
2498
|
* Slot for changing the header of the drawer.
|
|
1837
2499
|
*/
|
|
1838
|
-
|
|
2500
|
+
header?: any;
|
|
2501
|
+
/**
|
|
2502
|
+
* Slot for changing the footer of the drawer.
|
|
2503
|
+
*/
|
|
2504
|
+
footer?: any;
|
|
2505
|
+
/**
|
|
2506
|
+
* Shows a spacing between screen and drawer-content to provide enough space for the backdrop
|
|
2507
|
+
*/
|
|
2508
|
+
showSpacing?: boolean | string;
|
|
1839
2509
|
/**
|
|
1840
2510
|
* The open attribute opens or closes the drawer based on the state.
|
|
1841
2511
|
*/
|
|
@@ -1856,20 +2526,24 @@ type DBDrawerDefaultProps = {
|
|
|
1856
2526
|
* - `absolute`: Renders with `show()`, acting as a simple overlay **without** a focus trap.
|
|
1857
2527
|
*/
|
|
1858
2528
|
position?: DrawerPositionType;
|
|
2529
|
+
/**
|
|
2530
|
+
* Change the size of the drawer container.
|
|
2531
|
+
*/
|
|
2532
|
+
containerSize?: DrawerContainerSizeType;
|
|
1859
2533
|
};
|
|
1860
|
-
type DBDrawerProps = DBDrawerDefaultProps & GlobalProps & CloseEventProps<ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement
|
|
2534
|
+
type DBDrawerProps = DBDrawerDefaultProps & GlobalProps & CloseEventProps<ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement>>;
|
|
1861
2535
|
type DBDrawerDefaultState = {
|
|
1862
2536
|
handleDialogOpen: () => void;
|
|
1863
2537
|
isNotModal: () => boolean;
|
|
1864
2538
|
handleBackdropPointerDown: (event: any) => void;
|
|
1865
2539
|
backdropPointerDown: boolean;
|
|
2540
|
+
_closeTimeoutId?: number;
|
|
1866
2541
|
};
|
|
1867
2542
|
type DBDrawerState = DBDrawerDefaultState & GlobalState & CloseEventState<ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement>> & InitializedState;
|
|
1868
2543
|
|
|
1869
2544
|
declare class DBDrawer implements AfterViewInit, OnDestroy {
|
|
1870
2545
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
1871
2546
|
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
1872
|
-
protected readonly DEFAULT_CLOSE_BUTTON: string;
|
|
1873
2547
|
open: InputSignal<DBDrawerProps["open"]>;
|
|
1874
2548
|
position: InputSignal<DBDrawerProps["position"]>;
|
|
1875
2549
|
backdrop: InputSignal<DBDrawerProps["backdrop"]>;
|
|
@@ -1878,16 +2552,15 @@ declare class DBDrawer implements AfterViewInit, OnDestroy {
|
|
|
1878
2552
|
propOverrides: InputSignal<DBDrawerProps["propOverrides"]>;
|
|
1879
2553
|
direction: InputSignal<DBDrawerProps["direction"]>;
|
|
1880
2554
|
className: InputSignal<DBDrawerProps["className"]>;
|
|
1881
|
-
|
|
1882
|
-
|
|
2555
|
+
containerSize: InputSignal<DBDrawerProps["containerSize"]>;
|
|
2556
|
+
showSpacing: InputSignal<DBDrawerProps["showSpacing"]>;
|
|
1883
2557
|
rounded: InputSignal<DBDrawerProps["rounded"]>;
|
|
1884
|
-
closeButtonId: InputSignal<DBDrawerProps["closeButtonId"]>;
|
|
1885
|
-
closeButtonText: InputSignal<DBDrawerProps["closeButtonText"]>;
|
|
1886
2558
|
close: _angular_core.OutputEmitterRef<void | KeyboardEvent | MouseEvent | undefined>;
|
|
1887
2559
|
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1888
2560
|
dialogContainerRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1889
2561
|
initialized: _angular_core.WritableSignal<boolean>;
|
|
1890
2562
|
backdropPointerDown: _angular_core.WritableSignal<boolean>;
|
|
2563
|
+
_closeTimeoutId: _angular_core.WritableSignal<number | undefined>;
|
|
1891
2564
|
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1892
2565
|
isNotModal(): boolean;
|
|
1893
2566
|
handleBackdropPointerDown(event: any): void;
|
|
@@ -1904,7 +2577,69 @@ declare class DBDrawer implements AfterViewInit, OnDestroy {
|
|
|
1904
2577
|
ngAfterViewInit(): void;
|
|
1905
2578
|
ngOnDestroy(): void;
|
|
1906
2579
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBDrawer, never>;
|
|
1907
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBDrawer, "db-drawer", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "
|
|
2580
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBDrawer, "db-drawer", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "containerSize": { "alias": "containerSize"; "required": false; "isSignal": true; }; "showSpacing": { "alias": "showSpacing"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, ["[header]", "*", "[footer]"], true, never>;
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
type DBDrawerFooterDefaultProps = {};
|
|
2584
|
+
type DBDrawerFooterProps = DBDrawerFooterDefaultProps & GlobalProps;
|
|
2585
|
+
type DBDrawerFooterDefaultState = {};
|
|
2586
|
+
type DBDrawerFooterState = DBDrawerFooterDefaultState & GlobalState;
|
|
2587
|
+
|
|
2588
|
+
declare class DBDrawerFooter implements AfterViewInit, OnDestroy {
|
|
2589
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2590
|
+
id: InputSignal<DBDrawerFooterProps["id"]>;
|
|
2591
|
+
propOverrides: InputSignal<DBDrawerFooterProps["propOverrides"]>;
|
|
2592
|
+
className: InputSignal<DBDrawerFooterProps["className"]>;
|
|
2593
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
2594
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
2595
|
+
setupObserver(element: HTMLElement | null): void;
|
|
2596
|
+
constructor();
|
|
2597
|
+
/**
|
|
2598
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
2599
|
+
* @param element the ref for the component
|
|
2600
|
+
* @param customElementSelector the custom element like `my-component`
|
|
2601
|
+
*/
|
|
2602
|
+
private enableAttributePassing;
|
|
2603
|
+
ngAfterViewInit(): void;
|
|
2604
|
+
ngOnDestroy(): void;
|
|
2605
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBDrawerFooter, never>;
|
|
2606
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBDrawerFooter, "db-drawer-footer", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2607
|
+
}
|
|
2608
|
+
|
|
2609
|
+
type DBDrawerHeaderDefaultProps = {};
|
|
2610
|
+
type DBDrawerHeaderProps = DBDrawerHeaderDefaultProps & InnerCloseButtonProps & TextProps & GlobalProps & StartSlotProps & EndSlotProps;
|
|
2611
|
+
type DBDrawerHeaderDefaultState = {
|
|
2612
|
+
_headingId: string;
|
|
2613
|
+
setAriaLabelledBy: () => void;
|
|
2614
|
+
removeAriaLabelledBy: () => void;
|
|
2615
|
+
};
|
|
2616
|
+
type DBDrawerHeaderState = DBDrawerHeaderDefaultState & GlobalState;
|
|
2617
|
+
|
|
2618
|
+
declare class DBDrawerHeader implements AfterViewInit, OnDestroy {
|
|
2619
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2620
|
+
id: InputSignal<DBDrawerHeaderProps["id"]>;
|
|
2621
|
+
propOverrides: InputSignal<DBDrawerHeaderProps["propOverrides"]>;
|
|
2622
|
+
className: InputSignal<DBDrawerHeaderProps["className"]>;
|
|
2623
|
+
text: InputSignal<DBDrawerHeaderProps["text"]>;
|
|
2624
|
+
closeButtonId: InputSignal<DBDrawerHeaderProps["closeButtonId"]>;
|
|
2625
|
+
closeButtonText: InputSignal<DBDrawerHeaderProps["closeButtonText"]>;
|
|
2626
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
2627
|
+
_headingId: _angular_core.WritableSignal<string>;
|
|
2628
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
2629
|
+
setAriaLabelledBy(): void;
|
|
2630
|
+
removeAriaLabelledBy(): void;
|
|
2631
|
+
setupObserver(element: HTMLElement | null): void;
|
|
2632
|
+
constructor();
|
|
2633
|
+
/**
|
|
2634
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
2635
|
+
* @param element the ref for the component
|
|
2636
|
+
* @param customElementSelector the custom element like `my-component`
|
|
2637
|
+
*/
|
|
2638
|
+
private enableAttributePassing;
|
|
2639
|
+
ngAfterViewInit(): void;
|
|
2640
|
+
ngOnDestroy(): void;
|
|
2641
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBDrawerHeader, never>;
|
|
2642
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBDrawerHeader, "db-drawer-header", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "closeButtonId": { "alias": "closeButtonId"; "required": false; "isSignal": true; }; "closeButtonText": { "alias": "closeButtonText"; "required": false; "isSignal": true; }; }, {}, never, ["[start-slot]", "*", "[end-slot]"], true, never>;
|
|
1908
2643
|
}
|
|
1909
2644
|
|
|
1910
2645
|
type DBHeaderDefaultProps = {
|
|
@@ -1941,7 +2676,11 @@ type DBHeaderDefaultProps = {
|
|
|
1941
2676
|
*/
|
|
1942
2677
|
forceMobile?: boolean | string;
|
|
1943
2678
|
/**
|
|
1944
|
-
*
|
|
2679
|
+
* Text to pass in a headline for the drawer header.
|
|
2680
|
+
*/
|
|
2681
|
+
drawerHeaderText?: string;
|
|
2682
|
+
/**
|
|
2683
|
+
* Sets the accessible label for the burger menu button of the mobile control panel.
|
|
1945
2684
|
*/
|
|
1946
2685
|
burgerMenuLabel?: string;
|
|
1947
2686
|
};
|
|
@@ -1967,6 +2706,7 @@ declare class DBHeader implements AfterViewInit, OnDestroy {
|
|
|
1967
2706
|
burgerMenuLabel: InputSignal<DBHeaderProps["burgerMenuLabel"]>;
|
|
1968
2707
|
closeButtonId: InputSignal<DBHeaderProps["closeButtonId"]>;
|
|
1969
2708
|
closeButtonText: InputSignal<DBHeaderProps["closeButtonText"]>;
|
|
2709
|
+
drawerHeaderText: InputSignal<DBHeaderProps["drawerHeaderText"]>;
|
|
1970
2710
|
toggle: _angular_core.OutputEmitterRef<boolean | void>;
|
|
1971
2711
|
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1972
2712
|
initialized: _angular_core.WritableSignal<boolean>;
|
|
@@ -1985,7 +2725,7 @@ declare class DBHeader implements AfterViewInit, OnDestroy {
|
|
|
1985
2725
|
ngAfterViewInit(): void;
|
|
1986
2726
|
ngOnDestroy(): void;
|
|
1987
2727
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBHeader, never>;
|
|
1988
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBHeader, "db-header", never, { "forceMobile": { "alias": "forceMobile"; "required": false; "isSignal": true; }; "drawerOpen": { "alias": "drawerOpen"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "burgerMenuLabel": { "alias": "burgerMenuLabel"; "required": false; "isSignal": true; }; "closeButtonId": { "alias": "closeButtonId"; "required": false; "isSignal": true; }; "closeButtonText": { "alias": "closeButtonText"; "required": false; "isSignal": true; }; }, { "toggle": "toggle"; }, ["dbNavigation", "dbMetaNavigation", "dbSecondaryAction"], ["*", "[brand]", "*", "[primary-action]", "*", "*", "*", "*"], true, never>;
|
|
2728
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBHeader, "db-header", never, { "forceMobile": { "alias": "forceMobile"; "required": false; "isSignal": true; }; "drawerOpen": { "alias": "drawerOpen"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "burgerMenuLabel": { "alias": "burgerMenuLabel"; "required": false; "isSignal": true; }; "closeButtonId": { "alias": "closeButtonId"; "required": false; "isSignal": true; }; "closeButtonText": { "alias": "closeButtonText"; "required": false; "isSignal": true; }; "drawerHeaderText": { "alias": "drawerHeaderText"; "required": false; "isSignal": true; }; }, { "toggle": "toggle"; }, ["dbNavigation", "dbMetaNavigation", "dbSecondaryAction"], ["*", "[brand]", "*", "[primary-action]", "*", "*", "*", "*"], true, never>;
|
|
1989
2729
|
}
|
|
1990
2730
|
|
|
1991
2731
|
declare class SecondaryActionDirective {
|
|
@@ -2237,7 +2977,7 @@ declare class DBInput implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
2237
2977
|
*/
|
|
2238
2978
|
private enableAttributePassing;
|
|
2239
2979
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
2240
|
-
hidden:
|
|
2980
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2241
2981
|
errors: InputSignal<readonly {
|
|
2242
2982
|
message?: string;
|
|
2243
2983
|
}[] | undefined>;
|
|
@@ -2358,34 +3098,6 @@ declare class DBNavigation implements AfterViewInit, OnDestroy {
|
|
|
2358
3098
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBNavigation, "db-navigation", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2359
3099
|
}
|
|
2360
3100
|
|
|
2361
|
-
type TriangleData = {
|
|
2362
|
-
itemRect: DOMRect;
|
|
2363
|
-
parentElementWidth: number;
|
|
2364
|
-
subNavigationHeight: number;
|
|
2365
|
-
padding: number;
|
|
2366
|
-
outsideVX: 'left' | 'right' | undefined;
|
|
2367
|
-
outsideVY: 'top' | 'bottom' | undefined;
|
|
2368
|
-
};
|
|
2369
|
-
declare const isEventTargetNavigationItem: (event: unknown) => boolean;
|
|
2370
|
-
declare class NavigationItemSafeTriangle {
|
|
2371
|
-
private readonly element;
|
|
2372
|
-
private readonly subNavigation;
|
|
2373
|
-
private readonly parentSubNavigation;
|
|
2374
|
-
private triangleData?;
|
|
2375
|
-
private initialized;
|
|
2376
|
-
private mouseX;
|
|
2377
|
-
private mouseY;
|
|
2378
|
-
constructor(element: HTMLElement | null, subNavigation: HTMLElement | null);
|
|
2379
|
-
private init;
|
|
2380
|
-
enableFollow(): void;
|
|
2381
|
-
disableFollow(): void;
|
|
2382
|
-
private getTriangleTipX;
|
|
2383
|
-
private getTriangleTipY;
|
|
2384
|
-
private hasMouseEnteredSubNavigation;
|
|
2385
|
-
private getTriangleCoordinates;
|
|
2386
|
-
followByMouseEvent(event: MouseEvent): void;
|
|
2387
|
-
}
|
|
2388
|
-
|
|
2389
3101
|
type DBNavigationItemDefaultProps = {
|
|
2390
3102
|
/**
|
|
2391
3103
|
* Alternative indicator for active navigation item (bold font). In contrast to the use of aria-current="page" on the contained anchor, this does not guarantee correct a11y.
|
|
@@ -2677,7 +3389,6 @@ type DBPopoverState = DBPopoverDefaultState & GlobalState & PopoverState & Initi
|
|
|
2677
3389
|
declare class DBPopover implements AfterViewInit, OnDestroy {
|
|
2678
3390
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
2679
3391
|
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
2680
|
-
placement: InputSignal<DBPopoverProps["placement"]>;
|
|
2681
3392
|
id: InputSignal<DBPopoverProps["id"]>;
|
|
2682
3393
|
propOverrides: InputSignal<DBPopoverProps["propOverrides"]>;
|
|
2683
3394
|
className: InputSignal<DBPopoverProps["className"]>;
|
|
@@ -2687,11 +3398,13 @@ declare class DBPopover implements AfterViewInit, OnDestroy {
|
|
|
2687
3398
|
open: InputSignal<DBPopoverProps["open"]>;
|
|
2688
3399
|
delay: InputSignal<DBPopoverProps["delay"]>;
|
|
2689
3400
|
width: InputSignal<DBPopoverProps["width"]>;
|
|
3401
|
+
placement: InputSignal<DBPopoverProps["placement"]>;
|
|
2690
3402
|
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
2691
3403
|
initialized: _angular_core.WritableSignal<boolean>;
|
|
2692
3404
|
isExpanded: _angular_core.WritableSignal<boolean | undefined>;
|
|
2693
3405
|
_documentScrollListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
2694
|
-
|
|
3406
|
+
_intersectionObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
3407
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
2695
3408
|
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
2696
3409
|
handleEscape(event: any): void;
|
|
2697
3410
|
handleAutoPlacement(): void;
|
|
@@ -2710,7 +3423,7 @@ declare class DBPopover implements AfterViewInit, OnDestroy {
|
|
|
2710
3423
|
ngAfterViewInit(): void;
|
|
2711
3424
|
ngOnDestroy(): void;
|
|
2712
3425
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBPopover, never>;
|
|
2713
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBPopover, "db-popover", never, { "
|
|
3426
|
+
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
3427
|
}
|
|
2715
3428
|
|
|
2716
3429
|
type DBRadioDefaultProps = {};
|
|
@@ -2759,7 +3472,7 @@ declare class DBRadio implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
2759
3472
|
*/
|
|
2760
3473
|
private enableAttributePassing;
|
|
2761
3474
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
2762
|
-
hidden:
|
|
3475
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2763
3476
|
errors: InputSignal<readonly {
|
|
2764
3477
|
message?: string;
|
|
2765
3478
|
}[] | undefined>;
|
|
@@ -2948,7 +3661,7 @@ declare class DBSelect implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
2948
3661
|
*/
|
|
2949
3662
|
private enableAttributePassing;
|
|
2950
3663
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
2951
|
-
hidden:
|
|
3664
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2952
3665
|
errors: InputSignal<readonly {
|
|
2953
3666
|
message?: string;
|
|
2954
3667
|
}[] | undefined>;
|
|
@@ -2983,6 +3696,157 @@ declare class DBSelect implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
2983
3696
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBSelect, "db-select", never, { "invalidMessage": { "alias": "invalidMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "showMessage": { "alias": "showMessage"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "validMessage": { "alias": "validMessage"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showEmptyOption": { "alias": "showEmptyOption"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "showRequiredAsterisk": { "alias": "showRequiredAsterisk"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "hidden": { "alias": "hidden"; "required": false; "isSignal": true; }; "errors": { "alias": "errors"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "disabled": "disabledChange"; "click": "click"; "input": "input"; "change": "change"; "blur": "blur"; "focus": "focus"; "touch": "touch"; }, never, ["*"], true, never>;
|
|
2984
3697
|
}
|
|
2985
3698
|
|
|
3699
|
+
declare const ShellSubNavigationMobilePosition: readonly ["top", "bottom", "none"];
|
|
3700
|
+
type ShellSubNavigationMobilePositionType = (typeof ShellSubNavigationMobilePosition)[number];
|
|
3701
|
+
type DBShellDefaultProps = {
|
|
3702
|
+
/**
|
|
3703
|
+
* Change the position of the desktop content panel
|
|
3704
|
+
*/
|
|
3705
|
+
controlPanelDesktopPosition?: ShellControlPanelDesktopPositionType;
|
|
3706
|
+
/**
|
|
3707
|
+
* Change the position of the mobile content panel
|
|
3708
|
+
*/
|
|
3709
|
+
controlPanelMobilePosition?: ShellControlPanelMobilePositionType;
|
|
3710
|
+
/**
|
|
3711
|
+
* Set this to have a transition with opacity to avoid layout-shifts https://simonhearne.com/2021/layout-shifts-webfonts/
|
|
3712
|
+
*/
|
|
3713
|
+
fadeIn?: boolean | string;
|
|
3714
|
+
/**
|
|
3715
|
+
* Change the position of the optional sub navigation for desktop
|
|
3716
|
+
*/
|
|
3717
|
+
subNavigationDesktopPosition?: ShellControlPanelDesktopPositionType;
|
|
3718
|
+
/**
|
|
3719
|
+
* Change the position of the optional sub navigation for mobile
|
|
3720
|
+
*/
|
|
3721
|
+
subNavigationMobilePosition?: ShellSubNavigationMobilePositionType;
|
|
3722
|
+
/**
|
|
3723
|
+
* Shows sub-navigation
|
|
3724
|
+
*/
|
|
3725
|
+
showSubNavigation?: boolean | string;
|
|
3726
|
+
};
|
|
3727
|
+
type DBShellProps = DBShellDefaultProps & GlobalProps;
|
|
3728
|
+
type DBShellDefaultState = {
|
|
3729
|
+
fontsLoaded?: boolean;
|
|
3730
|
+
};
|
|
3731
|
+
type DBShellState = DBShellDefaultState & GlobalState;
|
|
3732
|
+
|
|
3733
|
+
declare class DBShell implements AfterViewInit, OnDestroy {
|
|
3734
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3735
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
3736
|
+
fadeIn: InputSignal<DBShellProps["fadeIn"]>;
|
|
3737
|
+
id: InputSignal<DBShellProps["id"]>;
|
|
3738
|
+
propOverrides: InputSignal<DBShellProps["propOverrides"]>;
|
|
3739
|
+
className: InputSignal<DBShellProps["className"]>;
|
|
3740
|
+
controlPanelDesktopPosition: InputSignal<DBShellProps["controlPanelDesktopPosition"]>;
|
|
3741
|
+
controlPanelMobilePosition: InputSignal<DBShellProps["controlPanelMobilePosition"]>;
|
|
3742
|
+
subNavigationDesktopPosition: InputSignal<DBShellProps["subNavigationDesktopPosition"]>;
|
|
3743
|
+
subNavigationMobilePosition: InputSignal<DBShellProps["subNavigationMobilePosition"]>;
|
|
3744
|
+
showSubNavigation: InputSignal<DBShellProps["showSubNavigation"]>;
|
|
3745
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3746
|
+
fontsLoaded: _angular_core.WritableSignal<boolean | undefined>;
|
|
3747
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
3748
|
+
setupObserver(element: HTMLElement | null): void;
|
|
3749
|
+
constructor();
|
|
3750
|
+
/**
|
|
3751
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3752
|
+
* @param element the ref for the component
|
|
3753
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3754
|
+
*/
|
|
3755
|
+
private enableAttributePassing;
|
|
3756
|
+
ngAfterViewInit(): void;
|
|
3757
|
+
ngOnDestroy(): void;
|
|
3758
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBShell, never>;
|
|
3759
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBShell, "db-shell", never, { "fadeIn": { "alias": "fadeIn"; "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; }; "controlPanelDesktopPosition": { "alias": "controlPanelDesktopPosition"; "required": false; "isSignal": true; }; "controlPanelMobilePosition": { "alias": "controlPanelMobilePosition"; "required": false; "isSignal": true; }; "subNavigationDesktopPosition": { "alias": "subNavigationDesktopPosition"; "required": false; "isSignal": true; }; "subNavigationMobilePosition": { "alias": "subNavigationMobilePosition"; "required": false; "isSignal": true; }; "showSubNavigation": { "alias": "showSubNavigation"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3760
|
+
}
|
|
3761
|
+
|
|
3762
|
+
declare const ShellContentVariantList: readonly ["auto", "fixed"];
|
|
3763
|
+
type ShellContentVariantType = (typeof ShellContentVariantList)[number];
|
|
3764
|
+
type DBShellContentDefaultProps = {
|
|
3765
|
+
/**
|
|
3766
|
+
* Adds `class` to `<main>` element
|
|
3767
|
+
*/
|
|
3768
|
+
mainClass?: string;
|
|
3769
|
+
/**
|
|
3770
|
+
* Overrides the default `id` on the `<main>` element.
|
|
3771
|
+
* This id is used as the target for the shell skip-navigation link.
|
|
3772
|
+
* Only one `DBShellContent` should exist per page to avoid duplicate IDs.
|
|
3773
|
+
* @default 'main-content'
|
|
3774
|
+
*/
|
|
3775
|
+
mainId?: string;
|
|
3776
|
+
/**
|
|
3777
|
+
* Adds `aria-label` to `<main>` element
|
|
3778
|
+
*/
|
|
3779
|
+
mainLabel?: string;
|
|
3780
|
+
/**
|
|
3781
|
+
* Change the scrolling behavior. `auto` scrolling on complete wrapper, `fixed` scrolling only in for main.
|
|
3782
|
+
* @default auto
|
|
3783
|
+
*/
|
|
3784
|
+
variant?: ShellContentVariantType;
|
|
3785
|
+
};
|
|
3786
|
+
type DBShellContentProps = DBShellContentDefaultProps & GlobalProps & StartSlotProps & EndSlotProps;
|
|
3787
|
+
type DBShellContentDefaultState = {};
|
|
3788
|
+
type DBShellContentState = DBShellContentDefaultState & GlobalState;
|
|
3789
|
+
|
|
3790
|
+
declare class DBShellContent implements AfterViewInit, OnDestroy {
|
|
3791
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3792
|
+
protected readonly MAIN_CONTENT_ID: string;
|
|
3793
|
+
id: InputSignal<DBShellContentProps["id"]>;
|
|
3794
|
+
propOverrides: InputSignal<DBShellContentProps["propOverrides"]>;
|
|
3795
|
+
className: InputSignal<DBShellContentProps["className"]>;
|
|
3796
|
+
variant: InputSignal<DBShellContentProps["variant"]>;
|
|
3797
|
+
mainId: InputSignal<DBShellContentProps["mainId"]>;
|
|
3798
|
+
mainClass: InputSignal<DBShellContentProps["mainClass"]>;
|
|
3799
|
+
mainLabel: InputSignal<DBShellContentProps["mainLabel"]>;
|
|
3800
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3801
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
3802
|
+
setupObserver(element: HTMLElement | null): void;
|
|
3803
|
+
constructor();
|
|
3804
|
+
/**
|
|
3805
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3806
|
+
* @param element the ref for the component
|
|
3807
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3808
|
+
*/
|
|
3809
|
+
private enableAttributePassing;
|
|
3810
|
+
ngAfterViewInit(): void;
|
|
3811
|
+
ngOnDestroy(): void;
|
|
3812
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBShellContent, never>;
|
|
3813
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBShellContent, "db-shell-content", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "mainId": { "alias": "mainId"; "required": false; "isSignal": true; }; "mainClass": { "alias": "mainClass"; "required": false; "isSignal": true; }; "mainLabel": { "alias": "mainLabel"; "required": false; "isSignal": true; }; }, {}, never, ["[start-slot]", "*", "[end-slot]"], true, never>;
|
|
3814
|
+
}
|
|
3815
|
+
|
|
3816
|
+
type DBShellSubNavigationDefaultProps = {};
|
|
3817
|
+
type DBShellSubNavigationProps = DBShellSubNavigationDefaultProps & GlobalProps & SidebarProps;
|
|
3818
|
+
type DBShellSubNavigationDefaultState = {};
|
|
3819
|
+
type DBShellSubNavigationState = DBShellSubNavigationDefaultState & GlobalState & ToggleEventState<HTMLButtonElement> & SidebarState;
|
|
3820
|
+
|
|
3821
|
+
declare class DBShellSubNavigation implements AfterViewInit, OnDestroy {
|
|
3822
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string, propertyName?: string) => any;
|
|
3823
|
+
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
3824
|
+
expanded: InputSignal<DBShellSubNavigationProps["expanded"]>;
|
|
3825
|
+
expandButtonTooltip: InputSignal<DBShellSubNavigationProps["expandButtonTooltip"]>;
|
|
3826
|
+
id: InputSignal<DBShellSubNavigationProps["id"]>;
|
|
3827
|
+
propOverrides: InputSignal<DBShellSubNavigationProps["propOverrides"]>;
|
|
3828
|
+
className: InputSignal<DBShellSubNavigationProps["className"]>;
|
|
3829
|
+
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
3830
|
+
_id: _angular_core.WritableSignal<string | undefined>;
|
|
3831
|
+
_open: _angular_core.WritableSignal<boolean>;
|
|
3832
|
+
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
3833
|
+
handleToggle(event: any): void;
|
|
3834
|
+
getToggleButtonText(): string | undefined;
|
|
3835
|
+
setupObserver(element: HTMLElement | null): void;
|
|
3836
|
+
constructor();
|
|
3837
|
+
/**
|
|
3838
|
+
* Passes `aria-*`, `data-*` & `class` attributes to correct child. Used in angular and stencil.
|
|
3839
|
+
* @param element the ref for the component
|
|
3840
|
+
* @param customElementSelector the custom element like `my-component`
|
|
3841
|
+
*/
|
|
3842
|
+
private enableAttributePassing;
|
|
3843
|
+
ngOnInit(): void;
|
|
3844
|
+
ngAfterViewInit(): void;
|
|
3845
|
+
ngOnDestroy(): void;
|
|
3846
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBShellSubNavigation, never>;
|
|
3847
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBShellSubNavigation, "db-shell-sub-navigation", never, { "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "expandButtonTooltip": { "alias": "expandButtonTooltip"; "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; }; }, {}, never, ["*"], true, never>;
|
|
3848
|
+
}
|
|
3849
|
+
|
|
2986
3850
|
declare const StackVariantList: readonly ["simple", "divider"];
|
|
2987
3851
|
type StackVariantType = (typeof StackVariantList)[number];
|
|
2988
3852
|
declare const StackDirectionList: readonly ["row", "column"];
|
|
@@ -3121,7 +3985,7 @@ declare class DBSwitch implements AfterViewInit, ControlValueAccessor, OnDestroy
|
|
|
3121
3985
|
*/
|
|
3122
3986
|
private enableAttributePassing;
|
|
3123
3987
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
3124
|
-
hidden:
|
|
3988
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3125
3989
|
errors: InputSignal<readonly {
|
|
3126
3990
|
message?: string;
|
|
3127
3991
|
}[] | undefined>;
|
|
@@ -3223,7 +4087,7 @@ declare class DBTabItem implements AfterViewInit, ControlValueAccessor, OnDestro
|
|
|
3223
4087
|
*/
|
|
3224
4088
|
private enableAttributePassing;
|
|
3225
4089
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
3226
|
-
hidden:
|
|
4090
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3227
4091
|
errors: InputSignal<readonly {
|
|
3228
4092
|
message?: string;
|
|
3229
4093
|
}[] | undefined>;
|
|
@@ -3715,10 +4579,6 @@ declare const TabsInitialSelectedModeList: readonly ["auto", "manually"];
|
|
|
3715
4579
|
type TabsInitialSelectedModeType = (typeof TabsInitialSelectedModeList)[number];
|
|
3716
4580
|
type DBSimpleTabProps = DBTabItemProps & DBTabPanelProps;
|
|
3717
4581
|
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
4582
|
/**
|
|
3723
4583
|
* Show a scrollbar or buttons with arrows to navigate for horizontal tabs with overflow visible
|
|
3724
4584
|
*/
|
|
@@ -3758,24 +4618,22 @@ type DBTabsEventProps = {
|
|
|
3758
4618
|
*/
|
|
3759
4619
|
tabSelect?: (event?: InputEvent<HTMLElement>) => void;
|
|
3760
4620
|
};
|
|
3761
|
-
type DBTabsProps = DBTabsDefaultProps & GlobalProps & OrientationProps & WidthProps & AlignmentProps & DBTabsEventProps;
|
|
4621
|
+
type DBTabsProps = DBTabsDefaultProps & GlobalProps & OrientationProps & WidthProps & AlignmentProps & OverflowScrollButtonProps & DBTabsEventProps;
|
|
3762
4622
|
type DBTabsDefaultState = {
|
|
3763
4623
|
_name: string;
|
|
3764
4624
|
scrollContainer?: Element | null;
|
|
3765
|
-
scroll: (left?: boolean) => void;
|
|
3766
|
-
showScrollLeft?: boolean;
|
|
3767
|
-
showScrollRight?: boolean;
|
|
3768
|
-
evaluateScrollButtons: (tabList: Element) => void;
|
|
3769
4625
|
convertTabs: () => DBSimpleTabProps[];
|
|
3770
4626
|
initTabList: () => void;
|
|
3771
4627
|
initTabs: (init?: boolean) => void;
|
|
3772
4628
|
handleChange: (event: InputEvent<HTMLElement>) => void;
|
|
3773
|
-
|
|
4629
|
+
_resizeObserverCallbackId?: string;
|
|
3774
4630
|
};
|
|
3775
|
-
type DBTabsState = DBTabsDefaultState & InitializedState;
|
|
4631
|
+
type DBTabsState = DBTabsDefaultState & InitializedState & OverflowScrollButtonState;
|
|
3776
4632
|
|
|
3777
4633
|
declare class DBTabs implements AfterViewInit, OnDestroy {
|
|
3778
4634
|
protected readonly cls: (...args: ClassNameArg[]) => string;
|
|
4635
|
+
protected readonly DEFAULT_SCROLL_LEFT: string;
|
|
4636
|
+
protected readonly DEFAULT_SCROLL_RIGHT: string;
|
|
3779
4637
|
name: InputSignal<DBTabsProps["name"]>;
|
|
3780
4638
|
tabs: InputSignal<DBTabsProps["tabs"]>;
|
|
3781
4639
|
arrowScrollDistance: InputSignal<DBTabsProps["arrowScrollDistance"]>;
|
|
@@ -3788,6 +4646,8 @@ declare class DBTabs implements AfterViewInit, OnDestroy {
|
|
|
3788
4646
|
className: InputSignal<DBTabsProps["className"]>;
|
|
3789
4647
|
alignment: InputSignal<DBTabsProps["alignment"]>;
|
|
3790
4648
|
width: InputSignal<DBTabsProps["width"]>;
|
|
4649
|
+
scrollLeftText: InputSignal<DBTabsProps["scrollLeftText"]>;
|
|
4650
|
+
scrollRightText: InputSignal<DBTabsProps["scrollRightText"]>;
|
|
3791
4651
|
indexChange: _angular_core.OutputEmitterRef<number | void | undefined>;
|
|
3792
4652
|
tabSelect: _angular_core.OutputEmitterRef<void | Event | undefined>;
|
|
3793
4653
|
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
@@ -3796,7 +4656,7 @@ declare class DBTabs implements AfterViewInit, OnDestroy {
|
|
|
3796
4656
|
showScrollLeft: _angular_core.WritableSignal<boolean | undefined>;
|
|
3797
4657
|
showScrollRight: _angular_core.WritableSignal<boolean | undefined>;
|
|
3798
4658
|
scrollContainer: _angular_core.WritableSignal<Element | null | undefined>;
|
|
3799
|
-
|
|
4659
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
3800
4660
|
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
3801
4661
|
convertTabs(): any;
|
|
3802
4662
|
evaluateScrollButtons(tList: Element): void;
|
|
@@ -3817,7 +4677,7 @@ declare class DBTabs implements AfterViewInit, OnDestroy {
|
|
|
3817
4677
|
ngAfterViewInit(): void;
|
|
3818
4678
|
ngOnDestroy(): void;
|
|
3819
4679
|
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>;
|
|
4680
|
+
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
4681
|
}
|
|
3822
4682
|
|
|
3823
4683
|
declare const TagBehaviorList: readonly ["static", "removable"];
|
|
@@ -4008,7 +4868,7 @@ declare class DBTextarea implements AfterViewInit, ControlValueAccessor, OnDestr
|
|
|
4008
4868
|
*/
|
|
4009
4869
|
private enableAttributePassing;
|
|
4010
4870
|
/** Signal Forms optional fields (Duck-Typing compatibility) */
|
|
4011
|
-
hidden:
|
|
4871
|
+
hidden: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4012
4872
|
errors: InputSignal<readonly {
|
|
4013
4873
|
message?: string;
|
|
4014
4874
|
}[] | undefined>;
|
|
@@ -4078,7 +4938,6 @@ declare class DBTooltip implements AfterViewInit, OnDestroy {
|
|
|
4078
4938
|
id: InputSignal<DBTooltipProps["id"]>;
|
|
4079
4939
|
propOverrides: InputSignal<DBTooltipProps["propOverrides"]>;
|
|
4080
4940
|
variant: InputSignal<DBTooltipProps["variant"]>;
|
|
4081
|
-
placement: InputSignal<DBTooltipProps["placement"]>;
|
|
4082
4941
|
className: InputSignal<DBTooltipProps["className"]>;
|
|
4083
4942
|
emphasis: InputSignal<DBTooltipProps["emphasis"]>;
|
|
4084
4943
|
wrap: InputSignal<DBTooltipProps["wrap"]>;
|
|
@@ -4086,12 +4945,14 @@ declare class DBTooltip implements AfterViewInit, OnDestroy {
|
|
|
4086
4945
|
delay: InputSignal<DBTooltipProps["delay"]>;
|
|
4087
4946
|
width: InputSignal<DBTooltipProps["width"]>;
|
|
4088
4947
|
showArrow: InputSignal<DBTooltipProps["showArrow"]>;
|
|
4948
|
+
placement: InputSignal<DBTooltipProps["placement"]>;
|
|
4089
4949
|
text: InputSignal<DBTooltipProps["text"]>;
|
|
4090
4950
|
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
4091
4951
|
_id: _angular_core.WritableSignal<string | undefined>;
|
|
4092
4952
|
initialized: _angular_core.WritableSignal<boolean>;
|
|
4093
4953
|
_documentScrollListenerCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
4094
|
-
|
|
4954
|
+
_intersectionObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
4955
|
+
_resizeObserverCallbackId: _angular_core.WritableSignal<string | undefined>;
|
|
4095
4956
|
_attachedParent: _angular_core.WritableSignal<HTMLElement | undefined>;
|
|
4096
4957
|
_attachedId: _angular_core.WritableSignal<string | undefined>;
|
|
4097
4958
|
_activeTriggerCount: _angular_core.WritableSignal<number | undefined>;
|
|
@@ -4121,7 +4982,7 @@ declare class DBTooltip implements AfterViewInit, OnDestroy {
|
|
|
4121
4982
|
ngAfterViewInit(): void;
|
|
4122
4983
|
ngOnDestroy(): void;
|
|
4123
4984
|
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; }; "
|
|
4985
|
+
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
4986
|
}
|
|
4126
4987
|
|
|
4127
4988
|
declare const DEFAULT_ID: string;
|
|
@@ -4140,10 +5001,15 @@ declare const DEFAULT_INVALID_MESSAGE: string;
|
|
|
4140
5001
|
declare const DEFAULT_REMOVE: string;
|
|
4141
5002
|
declare const DEFAULT_BACK: string;
|
|
4142
5003
|
declare const DEFAULT_SELECTED: string;
|
|
4143
|
-
declare const
|
|
5004
|
+
declare const DEFAULT_EXPAND: string;
|
|
5005
|
+
declare const DEFAULT_COLLAPSE: string;
|
|
5006
|
+
declare const DEFAULT_SCROLL_LEFT: string;
|
|
5007
|
+
declare const DEFAULT_SCROLL_RIGHT: string;
|
|
4144
5008
|
declare const DEFAULT_ICON: string;
|
|
5009
|
+
declare const DEFAULT_BURGER_MENU: string;
|
|
4145
5010
|
declare const DEFAULT_ROWS: number;
|
|
4146
5011
|
declare const DEFAULT_CLOSE_BUTTON: string;
|
|
5012
|
+
declare const MAIN_CONTENT_ID: string;
|
|
4147
5013
|
declare const DENSITY_CONST: string;
|
|
4148
5014
|
declare const COLOR_CONST: string;
|
|
4149
5015
|
declare enum DENSITY {
|
|
@@ -4190,6 +5056,7 @@ declare enum COLOR {
|
|
|
4190
5056
|
declare const COLORS: COLOR[];
|
|
4191
5057
|
declare const COLORS_SIMPLE: COLOR_SIMPLE[];
|
|
4192
5058
|
declare enum SEMANTIC {
|
|
5059
|
+
NEUTRAL = "neutral",
|
|
4193
5060
|
CRITICAL = "critical",
|
|
4194
5061
|
INFORMATIONAL = "informational",
|
|
4195
5062
|
WARNING = "warning",
|
|
@@ -4215,30 +5082,42 @@ declare const TESTING_VIEWPORTS: {
|
|
|
4215
5082
|
declare const DB_UX_LOCAL_STORAGE_FRAMEWORK = "db-ux-framework";
|
|
4216
5083
|
declare const DB_UX_LOCAL_STORAGE_MODE = "db-ux-mode";
|
|
4217
5084
|
|
|
4218
|
-
|
|
5085
|
+
/**
|
|
5086
|
+
* Generic base class for singleton document event listeners.
|
|
5087
|
+
* Manages a shared set of callbacks dispatched when a document-level
|
|
5088
|
+
* event fires.
|
|
5089
|
+
*
|
|
5090
|
+
* Subclasses own their static state (callbacks, instance) and expose
|
|
5091
|
+
* it via the abstract accessor methods below.
|
|
5092
|
+
*
|
|
5093
|
+
* @template TEvent - The event type passed to callbacks (Event, MouseEvent, etc.)
|
|
5094
|
+
*/
|
|
5095
|
+
declare abstract class AbstractDocumentListener<TEvent = any> {
|
|
5096
|
+
/**
|
|
5097
|
+
* Subclasses must return a reference to their own static callbacks store.
|
|
5098
|
+
*/
|
|
5099
|
+
protected abstract getCallbacks(): Record<string, (event: TEvent) => void>;
|
|
5100
|
+
addCallback(callback: (event: TEvent) => void): string;
|
|
5101
|
+
removeCallback(id: string): void;
|
|
5102
|
+
}
|
|
5103
|
+
|
|
5104
|
+
declare class DocumentClickListener extends AbstractDocumentListener {
|
|
4219
5105
|
private static callbacks;
|
|
4220
5106
|
private static _instance;
|
|
4221
5107
|
private static runCallbacks;
|
|
4222
5108
|
constructor();
|
|
4223
|
-
|
|
4224
|
-
removeCallback(id: string): void;
|
|
5109
|
+
protected getCallbacks(): Record<string, (event: any) => void>;
|
|
4225
5110
|
}
|
|
4226
5111
|
|
|
4227
|
-
declare class DocumentScrollListener {
|
|
5112
|
+
declare class DocumentScrollListener extends AbstractDocumentListener {
|
|
4228
5113
|
private static callbacks;
|
|
4229
5114
|
private static _instance;
|
|
4230
5115
|
private static runCallbacks;
|
|
4231
5116
|
private ticking;
|
|
4232
5117
|
constructor();
|
|
4233
|
-
|
|
4234
|
-
removeCallback(id: string): void;
|
|
5118
|
+
protected getCallbacks(): Record<string, (event: any) => void>;
|
|
4235
5119
|
}
|
|
4236
5120
|
|
|
4237
|
-
interface DBDataOutsidePair {
|
|
4238
|
-
vx?: 'left' | 'right';
|
|
4239
|
-
vy?: 'top' | 'bottom';
|
|
4240
|
-
}
|
|
4241
|
-
declare const handleDataOutside: (el: HTMLElement) => DBDataOutsidePair;
|
|
4242
5121
|
declare const handleFixedDropdown: (element: HTMLElement, parent: HTMLElement, placement: string) => void;
|
|
4243
5122
|
declare const getFloatingProps: (element: HTMLElement, parent: HTMLElement, placement: string) => {
|
|
4244
5123
|
top: number;
|
|
@@ -4252,8 +5131,36 @@ declare const getFloatingProps: (element: HTMLElement, parent: HTMLElement, plac
|
|
|
4252
5131
|
correctedPlacement: string;
|
|
4253
5132
|
innerWidth: number;
|
|
4254
5133
|
innerHeight: number;
|
|
5134
|
+
outsideYBoth?: undefined;
|
|
5135
|
+
} | {
|
|
5136
|
+
top: number;
|
|
5137
|
+
bottom: number;
|
|
5138
|
+
right: number;
|
|
5139
|
+
height: number;
|
|
5140
|
+
width: number;
|
|
5141
|
+
left: number;
|
|
5142
|
+
childHeight: number;
|
|
5143
|
+
childWidth: number;
|
|
5144
|
+
correctedPlacement: string;
|
|
5145
|
+
innerWidth: number;
|
|
5146
|
+
innerHeight: number;
|
|
5147
|
+
outsideYBoth: boolean;
|
|
4255
5148
|
};
|
|
4256
|
-
declare const handleFixedPopover: (element: HTMLElement, parent: HTMLElement, placement
|
|
5149
|
+
declare const handleFixedPopover: (element: HTMLElement, parent: HTMLElement, placement?: string) => void;
|
|
5150
|
+
/**
|
|
5151
|
+
* Detects whether a floating element overflows the viewport edges
|
|
5152
|
+
* and sets `data-outside-vy` / `data-outside-vx` attributes accordingly.
|
|
5153
|
+
* CSS rules can use these attributes to flip/reposition the element.
|
|
5154
|
+
*
|
|
5155
|
+
* If the element was already flipped (has existing data-outside-* attributes),
|
|
5156
|
+
* it checks whether the flipped position would overflow on the opposite side
|
|
5157
|
+
* using the parent's rect as reference, preventing infinite flip-flop.
|
|
5158
|
+
*/
|
|
5159
|
+
interface DBDataOutsidePair {
|
|
5160
|
+
vx?: 'left' | 'right';
|
|
5161
|
+
vy?: 'top' | 'bottom';
|
|
5162
|
+
}
|
|
5163
|
+
declare const handleDataOutside: (el: HTMLElement) => DBDataOutsidePair;
|
|
4257
5164
|
|
|
4258
|
-
export {
|
|
4259
|
-
export type {
|
|
5165
|
+
export { AccordionVariantList, AlignmentList, AutoCompleteList, BadgePlacementList, ButtonTypeList, ButtonVariantList, COLOR, COLORS, COLORS_SIMPLE, COLOR_CONST, COLOR_SIMPLE, CardBehaviorList, CardElevationLevelList, CollapsibleBehaviorList, CustomSelectDropdownWidthList, CustomSelectListItemTypeList, DBAccordion, DBAccordionItem, DBBadge, DBBrand, DBButton, DBCard, DBCheckbox, DBControlPanelBrand, DBControlPanelDesktop, DBControlPanelFlatIcon, DBControlPanelMeta, DBControlPanelMobile, DBControlPanelNavigation, DBControlPanelNavigationItem, DBControlPanelNavigationItemGroup, DBControlPanelPrimaryActions, DBControlPanelSecondaryActions, DBControlPanelSkipNavigation, DBCustomButton, DBCustomSelect, DBCustomSelectDropdown, DBCustomSelectFormField, DBCustomSelectList, DBCustomSelectListItem, DBDivider, DBDrawer, DBDrawerFooter, DBDrawerHeader, DBHeader, DBIcon, DBInfotext, DBInput, DBLink, DBNavigation, DBNavigationItem, DBNotification, DBPage, DBPopover, DBRadio, DBSection, DBSelect, DBShell, DBShellContent, DBShellSubNavigation, 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_COLLAPSE, DEFAULT_DATALIST_ID_SUFFIX, DEFAULT_EXPAND, 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, DrawerContainerSizeList, DrawerDirectionList, DrawerPositionList, DrawerVariantList, EmphasisList, FieldSizingList, GapSpacingList, IconWeightList, InputTypeList, LabelVariantHorizontalList, LabelVariantList, LinkContentList, LinkReferrerPolicyList, LinkSizeList, LinkTargetList, LinkVariantList, MAIN_CONTENT_ID, MarginList, MaxWidthList, MetaNavigationDirective, NavigationContentDirective, NavigationDirective, NavigationItemGroupVariantList, NavigationItemSafeTriangle, NotificationAriaLiveList, NotificationLinkVariantList, NotificationVariantList, OrientationList, PageDocumentOverflowList, PageVariantList, PlacementHorizontalList, PlacementList, PlacementVerticalList, PopoverDelayList, PopoverWidthList, SEMANTIC, SEMANTICS, SecondaryActionDirective, SelectedTypeList, SemanticList, ShellContentVariantList, ShellControlPanelDesktopPosition, ShellControlPanelMobilePosition, ShellSubNavigationMobilePosition, SizeList, SpacingList, StackAlignmentList, StackDirectionList, StackJustifyContentList, StackVariantList, TESTING_VIEWPORTS, TabsBehaviorList, TabsInitialSelectedModeList, TagBehaviorList, TextareaResizeList, TextareaWrapList, TooltipVariantList, ValidationList, WidthList, addAttributeToChildren, adjustNestedSubNavigationPosition, cls, delay, getBoolean, getBooleanAsString, getFloatingProps, getHideProp, getInputValue, getNotificationRole, getNumber, getOptionKey, getSearchInput, getStep, handleDataOutside, handleFixedDropdown, handleFixedPopover, handleSubNavigationPosition, hasCssFlag, hasVoiceOver, isArrayOfStrings, isEventTargetNavigationItem, isIOSSafari, isKeyboardEvent, stringPropVisible, uuid };
|
|
5166
|
+
export type { AccordionVariantType, ActiveProps, AlignmentProps, AlignmentType, AutoCompleteType, BadgePlacementType, BaseFormProps, ButtonTypeType, ButtonVariantType, CardBehaviorType, CardElevationLevelType, ChangeEvent, ChangeEventProps, ChangeEventState, ClassNameArg, ClickEvent, ClickEventProps, ClickEventState, CloseEventProps, CloseEventState, CollapsibleBehaviorProps, CollapsibleBehaviorType, ContainerWidthProps, ContentSlotProps, ControlPanelProps, 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, DBControlPanelBrandDefaultProps, DBControlPanelBrandDefaultState, DBControlPanelBrandProps, DBControlPanelBrandState, DBControlPanelDesktopDefaultProps, DBControlPanelDesktopDefaultState, DBControlPanelDesktopProps, DBControlPanelDesktopState, DBControlPanelFlatIconDefaultProps, DBControlPanelFlatIconDefaultState, DBControlPanelFlatIconProps, DBControlPanelFlatIconState, DBControlPanelMetaDefaultProps, DBControlPanelMetaDefaultState, DBControlPanelMetaProps, DBControlPanelMetaState, DBControlPanelMobileDefaultProps, DBControlPanelMobileDefaultState, DBControlPanelMobileProps, DBControlPanelMobileState, DBControlPanelNavigationDefaultProps, DBControlPanelNavigationDefaultState, DBControlPanelNavigationItemDefaultProps, DBControlPanelNavigationItemDefaultState, DBControlPanelNavigationItemGroupDefaultProps, DBControlPanelNavigationItemGroupDefaultState, DBControlPanelNavigationItemGroupProps, DBControlPanelNavigationItemGroupState, DBControlPanelNavigationItemProps, DBControlPanelNavigationItemState, DBControlPanelNavigationProps, DBControlPanelNavigationState, DBControlPanelPrimaryActionsDefaultProps, DBControlPanelPrimaryActionsDefaultState, DBControlPanelPrimaryActionsProps, DBControlPanelPrimaryActionsState, DBControlPanelSecondaryActionsDefaultProps, DBControlPanelSecondaryActionsDefaultState, DBControlPanelSecondaryActionsProps, DBControlPanelSecondaryActionsState, DBControlPanelSkipNavigationDefaultProps, DBControlPanelSkipNavigationDefaultState, DBControlPanelSkipNavigationProps, DBControlPanelSkipNavigationState, 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, DBDrawerFooterDefaultProps, DBDrawerFooterDefaultState, DBDrawerFooterProps, DBDrawerFooterState, DBDrawerHeaderDefaultProps, DBDrawerHeaderDefaultState, DBDrawerHeaderProps, DBDrawerHeaderState, 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, DBShellContentDefaultProps, DBShellContentDefaultState, DBShellContentProps, DBShellContentState, DBShellDefaultProps, DBShellDefaultState, DBShellProps, DBShellState, DBShellSubNavigationDefaultProps, DBShellSubNavigationDefaultState, DBShellSubNavigationProps, DBShellSubNavigationState, 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, DrawerContainerSizeType, DrawerDirectionType, DrawerPositionType, DrawerVariantType, EmphasisProps, EmphasisType, EndSlotProps, 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, NavigationItemGroupVariant, NavigationItemGroupVariantType, 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, ShellContentVariantType, ShellControlPanelDesktopPositionType, ShellControlPanelMobilePositionType, ShellSubNavigationMobilePositionType, ShowIconLeadingProps, ShowIconProps, ShowIconTrailingProps, ShowLabelProps, SidebarProps, SidebarState, SizeProps, SizeType, SpacingProps, SpacingType, StackAlignmentType, StackDirectionType, StackJustifyContentType, StackVariantType, StartSlotProps, TabsBehaviorType, TabsInitialSelectedModeType, TagBehaviorType, TextProps, TextareaResizeType, TextareaWrapType, ToggleEventProps, ToggleEventState, TooltipVariantType, TriangleData, ValidationType, ValueLabelType, ValueProps, WidthProps, WidthType, WrapProps };
|