@db-ux/ngx-core-components 2.4.4 → 3.0.1
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/components/accordion/accordion.d.ts +9 -10
- package/components/accordion-item/accordion-item.d.ts +9 -9
- package/components/badge/badge.d.ts +10 -10
- package/components/brand/brand.d.ts +9 -8
- package/components/button/button.d.ts +23 -22
- package/components/button/model.d.ts +6 -22
- package/components/card/card.d.ts +7 -6
- package/components/checkbox/checkbox.d.ts +21 -21
- package/components/custom-select/custom-select.d.ts +51 -51
- package/components/custom-select/model.d.ts +1 -0
- package/components/custom-select-dropdown/custom-select-dropdown.d.ts +5 -4
- package/components/custom-select-form-field/custom-select-form-field.d.ts +4 -3
- package/components/custom-select-list/custom-select-list.d.ts +6 -5
- package/components/custom-select-list-item/custom-select-list-item.d.ts +16 -17
- package/components/custom-select-list-item/model.d.ts +1 -1
- package/components/divider/divider.d.ts +8 -7
- package/components/drawer/drawer.d.ts +14 -14
- package/components/header/header.d.ts +9 -10
- package/components/icon/icon.d.ts +8 -7
- package/components/infotext/infotext.d.ts +10 -9
- package/components/input/input.d.ts +48 -43
- package/components/input/model.d.ts +6 -2
- package/components/link/link.d.ts +17 -19
- package/components/link/model.d.ts +3 -3
- package/components/navigation/model.d.ts +2 -2
- package/components/navigation/navigation.d.ts +5 -6
- package/components/navigation-item/model.d.ts +2 -6
- package/components/navigation-item/navigation-item.d.ts +14 -15
- package/components/notification/notification.d.ts +19 -18
- package/components/page/page.d.ts +9 -8
- package/components/popover/popover.d.ts +11 -11
- package/components/radio/radio.d.ts +15 -17
- package/components/section/section.d.ts +6 -6
- package/components/select/select.d.ts +27 -27
- package/components/stack/stack.d.ts +10 -9
- package/components/switch/model.d.ts +2 -2
- package/components/switch/switch.d.ts +20 -21
- package/components/tab-item/model.d.ts +2 -2
- package/components/tab-item/tab-item.d.ts +17 -16
- package/components/tab-list/tab-list.d.ts +4 -4
- package/components/tab-panel/model.d.ts +2 -2
- package/components/tab-panel/tab-panel.d.ts +6 -7
- package/components/tabs/tabs.d.ts +13 -14
- package/components/tag/model.d.ts +2 -6
- package/components/tag/tag.d.ts +15 -18
- package/components/textarea/textarea.d.ts +35 -35
- package/components/tooltip/tooltip.d.ts +11 -11
- package/fesm2022/db-ux-ngx-core-components.mjs +3260 -3226
- package/fesm2022/db-ux-ngx-core-components.mjs.map +1 -1
- package/index.d.ts +39 -0
- package/package.json +3 -3
- package/shared/model.d.ts +28 -27
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
2
|
import { ClickEvent } from "../../shared/model";
|
|
3
3
|
import { NavigationItemSafeTriangle } from "../../utils/navigation";
|
|
4
|
+
import { DBNavigationItemProps } from "./model";
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class DBNavigationItem implements AfterViewInit {
|
|
6
7
|
dbNavigationContent: any;
|
|
7
8
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
8
|
-
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
9
9
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
10
10
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
11
11
|
protected readonly DEFAULT_BACK: string;
|
|
12
|
-
subNavigationExpanded:
|
|
13
|
-
id:
|
|
14
|
-
className:
|
|
15
|
-
width:
|
|
16
|
-
icon:
|
|
17
|
-
showIcon:
|
|
18
|
-
active:
|
|
19
|
-
wrap:
|
|
20
|
-
disabled:
|
|
21
|
-
text:
|
|
22
|
-
backButtonId:
|
|
23
|
-
backButtonText:
|
|
12
|
+
subNavigationExpanded: InputSignal<DBNavigationItemProps["subNavigationExpanded"]>;
|
|
13
|
+
id: InputSignal<DBNavigationItemProps["id"]>;
|
|
14
|
+
className: InputSignal<DBNavigationItemProps["className"]>;
|
|
15
|
+
width: InputSignal<DBNavigationItemProps["width"]>;
|
|
16
|
+
icon: InputSignal<DBNavigationItemProps["icon"]>;
|
|
17
|
+
showIcon: InputSignal<DBNavigationItemProps["showIcon"]>;
|
|
18
|
+
active: InputSignal<DBNavigationItemProps["active"]>;
|
|
19
|
+
wrap: InputSignal<DBNavigationItemProps["wrap"]>;
|
|
20
|
+
disabled: InputSignal<DBNavigationItemProps["disabled"]>;
|
|
21
|
+
text: InputSignal<DBNavigationItemProps["text"]>;
|
|
22
|
+
backButtonId: InputSignal<DBNavigationItemProps["backButtonId"]>;
|
|
23
|
+
backButtonText: InputSignal<DBNavigationItemProps["backButtonText"]>;
|
|
24
24
|
click: import("@angular/core").OutputEmitterRef<void | MouseEvent>;
|
|
25
25
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
26
26
|
initialized: import("@angular/core").WritableSignal<boolean>;
|
|
@@ -40,7 +40,6 @@ export declare class DBNavigationItem implements AfterViewInit {
|
|
|
40
40
|
* @param customElementSelector the custom element like `my-component`
|
|
41
41
|
*/
|
|
42
42
|
private enableAttributePassing;
|
|
43
|
-
ngOnInit(): void;
|
|
44
43
|
ngAfterViewInit(): void;
|
|
45
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBNavigationItem, never>;
|
|
46
45
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBNavigationItem, "db-navigation-item", never, { "subNavigationExpanded": { "alias": "subNavigationExpanded"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "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; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "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"; }, ["dbNavigationContent"], ["*", "*", "[sub-navigation]"], true, never>;
|
|
@@ -1,28 +1,29 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
2
|
import { ClickEvent } from "../../shared/model";
|
|
3
|
+
import { DBNotificationProps } from "./model";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DBNotification implements AfterViewInit {
|
|
5
6
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
6
|
-
protected readonly
|
|
7
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
7
8
|
protected readonly stringPropVisible: (givenString?: string, showString?: boolean | string) => boolean;
|
|
8
9
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
9
10
|
protected readonly DEFAULT_CLOSE_BUTTON: string;
|
|
10
|
-
id:
|
|
11
|
-
className:
|
|
12
|
-
ariaLive:
|
|
13
|
-
semantic:
|
|
14
|
-
variant:
|
|
15
|
-
icon:
|
|
16
|
-
showIcon:
|
|
17
|
-
linkVariant:
|
|
18
|
-
headline:
|
|
19
|
-
showHeadline:
|
|
20
|
-
text:
|
|
21
|
-
timestamp:
|
|
22
|
-
showTimestamp:
|
|
23
|
-
closeable:
|
|
24
|
-
closeButtonId:
|
|
25
|
-
closeButtonText:
|
|
11
|
+
id: InputSignal<DBNotificationProps["id"]>;
|
|
12
|
+
className: InputSignal<DBNotificationProps["className"]>;
|
|
13
|
+
ariaLive: InputSignal<DBNotificationProps["ariaLive"]>;
|
|
14
|
+
semantic: InputSignal<DBNotificationProps["semantic"]>;
|
|
15
|
+
variant: InputSignal<DBNotificationProps["variant"]>;
|
|
16
|
+
icon: InputSignal<DBNotificationProps["icon"]>;
|
|
17
|
+
showIcon: InputSignal<DBNotificationProps["showIcon"]>;
|
|
18
|
+
linkVariant: InputSignal<DBNotificationProps["linkVariant"]>;
|
|
19
|
+
headline: InputSignal<DBNotificationProps["headline"]>;
|
|
20
|
+
showHeadline: InputSignal<DBNotificationProps["showHeadline"]>;
|
|
21
|
+
text: InputSignal<DBNotificationProps["text"]>;
|
|
22
|
+
timestamp: InputSignal<DBNotificationProps["timestamp"]>;
|
|
23
|
+
showTimestamp: InputSignal<DBNotificationProps["showTimestamp"]>;
|
|
24
|
+
closeable: InputSignal<DBNotificationProps["closeable"]>;
|
|
25
|
+
closeButtonId: InputSignal<DBNotificationProps["closeButtonId"]>;
|
|
26
|
+
closeButtonText: InputSignal<DBNotificationProps["closeButtonText"]>;
|
|
26
27
|
close: import("@angular/core").OutputEmitterRef<void | MouseEvent | undefined>;
|
|
27
28
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
28
29
|
handleClose(event?: ClickEvent<HTMLButtonElement> | void): void;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, OnDestroy, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBPageProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class DBPage implements AfterViewInit {
|
|
4
|
+
export declare class DBPage implements AfterViewInit, OnDestroy {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
6
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
6
|
-
fadeIn:
|
|
7
|
-
documentOverflow:
|
|
8
|
-
variant:
|
|
9
|
-
id:
|
|
10
|
-
className:
|
|
11
|
-
mainClass:
|
|
7
|
+
fadeIn: InputSignal<DBPageProps["fadeIn"]>;
|
|
8
|
+
documentOverflow: InputSignal<DBPageProps["documentOverflow"]>;
|
|
9
|
+
variant: InputSignal<DBPageProps["variant"]>;
|
|
10
|
+
id: InputSignal<DBPageProps["id"]>;
|
|
11
|
+
className: InputSignal<DBPageProps["className"]>;
|
|
12
|
+
mainClass: InputSignal<DBPageProps["mainClass"]>;
|
|
12
13
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
13
14
|
fontsLoaded: import("@angular/core").WritableSignal<boolean | undefined>;
|
|
14
15
|
constructor();
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBPopoverProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBPopover implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
6
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
6
|
-
placement:
|
|
7
|
-
id:
|
|
8
|
-
className:
|
|
9
|
-
spacing:
|
|
10
|
-
gap:
|
|
11
|
-
animation:
|
|
12
|
-
open:
|
|
13
|
-
delay:
|
|
14
|
-
width:
|
|
7
|
+
placement: InputSignal<DBPopoverProps["placement"]>;
|
|
8
|
+
id: InputSignal<DBPopoverProps["id"]>;
|
|
9
|
+
className: InputSignal<DBPopoverProps["className"]>;
|
|
10
|
+
spacing: InputSignal<DBPopoverProps["spacing"]>;
|
|
11
|
+
gap: InputSignal<DBPopoverProps["gap"]>;
|
|
12
|
+
animation: InputSignal<DBPopoverProps["animation"]>;
|
|
13
|
+
open: InputSignal<DBPopoverProps["open"]>;
|
|
14
|
+
delay: InputSignal<DBPopoverProps["delay"]>;
|
|
15
|
+
width: InputSignal<DBPopoverProps["width"]>;
|
|
15
16
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
16
17
|
initialized: import("@angular/core").WritableSignal<boolean>;
|
|
17
18
|
isExpanded: import("@angular/core").WritableSignal<boolean | undefined>;
|
|
@@ -30,7 +31,6 @@ export declare class DBPopover implements AfterViewInit {
|
|
|
30
31
|
* @param customElementSelector the custom element like `my-component`
|
|
31
32
|
*/
|
|
32
33
|
private enableAttributePassing;
|
|
33
|
-
ngOnInit(): void;
|
|
34
34
|
ngAfterViewInit(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBPopover, never>;
|
|
36
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBPopover, "db-popover", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "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; }; }, {}, never, ["[trigger]", "*"], true, never>;
|
|
@@ -1,26 +1,25 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal, ModelSignal, Renderer2 } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { ChangeEvent, InteractionEvent } from "../../shared/model";
|
|
4
|
+
import { DBRadioProps } from "./model";
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class DBRadio implements AfterViewInit, ControlValueAccessor {
|
|
6
7
|
private renderer;
|
|
7
8
|
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
8
9
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
9
10
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
10
|
-
id:
|
|
11
|
-
checked:
|
|
12
|
-
size:
|
|
13
|
-
showLabel:
|
|
14
|
-
showRequiredAsterisk:
|
|
15
|
-
className:
|
|
16
|
-
validation:
|
|
17
|
-
name:
|
|
18
|
-
disabled:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
required: import("@angular/core").InputSignal<string | boolean | undefined>;
|
|
23
|
-
label: import("@angular/core").InputSignal<string | undefined>;
|
|
11
|
+
id: InputSignal<DBRadioProps["id"]>;
|
|
12
|
+
checked: InputSignal<DBRadioProps["checked"]>;
|
|
13
|
+
size: InputSignal<DBRadioProps["size"]>;
|
|
14
|
+
showLabel: InputSignal<DBRadioProps["showLabel"]>;
|
|
15
|
+
showRequiredAsterisk: InputSignal<DBRadioProps["showRequiredAsterisk"]>;
|
|
16
|
+
className: InputSignal<DBRadioProps["className"]>;
|
|
17
|
+
validation: InputSignal<DBRadioProps["validation"]>;
|
|
18
|
+
name: InputSignal<DBRadioProps["name"]>;
|
|
19
|
+
disabled: ModelSignal<DBRadioProps["disabled"]>;
|
|
20
|
+
value: ModelSignal<DBRadioProps["value"]>;
|
|
21
|
+
required: InputSignal<DBRadioProps["required"]>;
|
|
22
|
+
label: InputSignal<DBRadioProps["label"]>;
|
|
24
23
|
change: import("@angular/core").OutputEmitterRef<void | Event>;
|
|
25
24
|
blur: import("@angular/core").OutputEmitterRef<void | FocusEvent>;
|
|
26
25
|
focus: import("@angular/core").OutputEmitterRef<void | FocusEvent>;
|
|
@@ -42,8 +41,7 @@ export declare class DBRadio implements AfterViewInit, ControlValueAccessor {
|
|
|
42
41
|
registerOnChange(onChange: any): void;
|
|
43
42
|
registerOnTouched(onTouched: any): void;
|
|
44
43
|
setDisabledState(disabled: boolean): void;
|
|
45
|
-
ngOnInit(): void;
|
|
46
44
|
ngAfterViewInit(): void;
|
|
47
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBRadio, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DBRadio, "db-radio", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "showRequiredAsterisk": { "alias": "showRequiredAsterisk"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DBRadio, "db-radio", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "showRequiredAsterisk": { "alias": "showRequiredAsterisk"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "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; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "value": "valueChange"; "change": "change"; "blur": "blur"; "focus": "focus"; }, never, ["*"], true, never>;
|
|
49
47
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBSectionProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBSection implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
|
-
id:
|
|
6
|
-
className:
|
|
7
|
-
spacing:
|
|
8
|
-
width:
|
|
6
|
+
id: InputSignal<DBSectionProps["id"]>;
|
|
7
|
+
className: InputSignal<DBSectionProps["className"]>;
|
|
8
|
+
spacing: InputSignal<DBSectionProps["spacing"]>;
|
|
9
|
+
width: InputSignal<DBSectionProps["width"]>;
|
|
9
10
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
10
11
|
_id: import("@angular/core").WritableSignal<string | undefined>;
|
|
11
12
|
constructor();
|
|
@@ -15,7 +16,6 @@ export declare class DBSection implements AfterViewInit {
|
|
|
15
16
|
* @param customElementSelector the custom element like `my-component`
|
|
16
17
|
*/
|
|
17
18
|
private enableAttributePassing;
|
|
18
|
-
ngOnInit(): void;
|
|
19
19
|
ngAfterViewInit(): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBSection, never>;
|
|
21
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBSection, "db-section", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal, ModelSignal, Renderer2 } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { ChangeEvent, ClickEvent, InputEvent, InteractionEvent } from "../../shared/model";
|
|
4
|
-
import { DBSelectOptionType } from "./model";
|
|
4
|
+
import { DBSelectOptionType, DBSelectProps } from "./model";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class DBSelect implements AfterViewInit, ControlValueAccessor {
|
|
7
7
|
private renderer;
|
|
8
8
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
9
9
|
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
10
|
+
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
10
11
|
protected readonly DEFAULT_LABEL: string;
|
|
11
12
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
12
13
|
protected readonly getOptionKey: (option: {
|
|
@@ -15,30 +16,30 @@ export declare class DBSelect implements AfterViewInit, ControlValueAccessor {
|
|
|
15
16
|
}, prefix: string) => string;
|
|
16
17
|
protected readonly stringPropVisible: (givenString?: string, showString?: boolean | string) => boolean;
|
|
17
18
|
protected readonly DEFAULT_VALID_MESSAGE: string;
|
|
18
|
-
id:
|
|
19
|
-
invalidMessage:
|
|
20
|
-
message:
|
|
21
|
-
showMessage:
|
|
22
|
-
value:
|
|
23
|
-
validMessage:
|
|
24
|
-
validation:
|
|
25
|
-
required:
|
|
26
|
-
className:
|
|
27
|
-
variant:
|
|
28
|
-
showLabel:
|
|
29
|
-
showRequiredAsterisk:
|
|
30
|
-
icon:
|
|
31
|
-
showIcon:
|
|
32
|
-
label:
|
|
33
|
-
disabled:
|
|
34
|
-
name:
|
|
35
|
-
size:
|
|
36
|
-
autocomplete:
|
|
37
|
-
multiple:
|
|
38
|
-
ariaDescribedBy:
|
|
39
|
-
options:
|
|
40
|
-
placeholder:
|
|
41
|
-
messageIcon:
|
|
19
|
+
id: InputSignal<DBSelectProps["id"]>;
|
|
20
|
+
invalidMessage: InputSignal<DBSelectProps["invalidMessage"]>;
|
|
21
|
+
message: InputSignal<DBSelectProps["message"]>;
|
|
22
|
+
showMessage: InputSignal<DBSelectProps["showMessage"]>;
|
|
23
|
+
value: ModelSignal<DBSelectProps["value"]>;
|
|
24
|
+
validMessage: InputSignal<DBSelectProps["validMessage"]>;
|
|
25
|
+
validation: InputSignal<DBSelectProps["validation"]>;
|
|
26
|
+
required: InputSignal<DBSelectProps["required"]>;
|
|
27
|
+
className: InputSignal<DBSelectProps["className"]>;
|
|
28
|
+
variant: InputSignal<DBSelectProps["variant"]>;
|
|
29
|
+
showLabel: InputSignal<DBSelectProps["showLabel"]>;
|
|
30
|
+
showRequiredAsterisk: InputSignal<DBSelectProps["showRequiredAsterisk"]>;
|
|
31
|
+
icon: InputSignal<DBSelectProps["icon"]>;
|
|
32
|
+
showIcon: InputSignal<DBSelectProps["showIcon"]>;
|
|
33
|
+
label: InputSignal<DBSelectProps["label"]>;
|
|
34
|
+
disabled: ModelSignal<DBSelectProps["disabled"]>;
|
|
35
|
+
name: InputSignal<DBSelectProps["name"]>;
|
|
36
|
+
size: InputSignal<DBSelectProps["size"]>;
|
|
37
|
+
autocomplete: InputSignal<DBSelectProps["autocomplete"]>;
|
|
38
|
+
multiple: InputSignal<DBSelectProps["multiple"]>;
|
|
39
|
+
ariaDescribedBy: InputSignal<DBSelectProps["ariaDescribedBy"]>;
|
|
40
|
+
options: InputSignal<DBSelectProps["options"]>;
|
|
41
|
+
placeholder: InputSignal<DBSelectProps["placeholder"]>;
|
|
42
|
+
messageIcon: InputSignal<DBSelectProps["messageIcon"]>;
|
|
42
43
|
click: import("@angular/core").OutputEmitterRef<void | MouseEvent>;
|
|
43
44
|
input: import("@angular/core").OutputEmitterRef<void | Event>;
|
|
44
45
|
change: import("@angular/core").OutputEmitterRef<void | Event>;
|
|
@@ -76,7 +77,6 @@ export declare class DBSelect implements AfterViewInit, ControlValueAccessor {
|
|
|
76
77
|
registerOnChange(onChange: any): void;
|
|
77
78
|
registerOnTouched(onTouched: any): void;
|
|
78
79
|
setDisabledState(disabled: boolean): void;
|
|
79
|
-
ngOnInit(): void;
|
|
80
80
|
ngAfterViewInit(): void;
|
|
81
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBSelect, never>;
|
|
82
82
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBSelect, "db-select", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "invalidMessage": { "alias": "invalidMessage"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "showMessage": { "alias": "showMessage"; "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; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "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; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "disabled": "disabledChange"; "click": "click"; "input": "input"; "change": "change"; "blur": "blur"; "focus": "focus"; }, never, ["*"], true, never>;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBStackProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBStack implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
6
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
6
|
-
id:
|
|
7
|
-
className:
|
|
8
|
-
gap:
|
|
9
|
-
variant:
|
|
10
|
-
direction:
|
|
11
|
-
alignment:
|
|
12
|
-
justifyContent:
|
|
13
|
-
wrap:
|
|
7
|
+
id: InputSignal<DBStackProps["id"]>;
|
|
8
|
+
className: InputSignal<DBStackProps["className"]>;
|
|
9
|
+
gap: InputSignal<DBStackProps["gap"]>;
|
|
10
|
+
variant: InputSignal<DBStackProps["variant"]>;
|
|
11
|
+
direction: InputSignal<DBStackProps["direction"]>;
|
|
12
|
+
alignment: InputSignal<DBStackProps["alignment"]>;
|
|
13
|
+
justifyContent: InputSignal<DBStackProps["justifyContent"]>;
|
|
14
|
+
wrap: InputSignal<DBStackProps["wrap"]>;
|
|
14
15
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
15
16
|
constructor();
|
|
16
17
|
/**
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { ChangeEventProps, ChangeEventState, EmphasisProps, FocusEventProps, FocusEventState, FormCheckProps, FormProps, FormState, GlobalProps, GlobalState,
|
|
1
|
+
import { ChangeEventProps, ChangeEventState, EmphasisProps, FocusEventProps, FocusEventState, FormCheckProps, FormProps, FormState, GlobalProps, GlobalState, IconLeadingProps, IconProps, IconTrailingProps, SizeProps } from '../../shared/model';
|
|
2
2
|
export type DBSwitchDefaultProps = {
|
|
3
3
|
/**
|
|
4
4
|
* Add additional icons to indicate active/inactive state.
|
|
5
5
|
*/
|
|
6
6
|
visualAid?: boolean | string;
|
|
7
7
|
};
|
|
8
|
-
export type DBSwitchProps = DBSwitchDefaultProps & GlobalProps & ChangeEventProps<HTMLInputElement> & FocusEventProps<HTMLInputElement> & FormProps & FormCheckProps & EmphasisProps & SizeProps & IconProps &
|
|
8
|
+
export type DBSwitchProps = DBSwitchDefaultProps & GlobalProps & ChangeEventProps<HTMLInputElement> & FocusEventProps<HTMLInputElement> & FormProps & FormCheckProps & EmphasisProps & SizeProps & IconProps & IconTrailingProps & IconLeadingProps;
|
|
9
9
|
export type DBSwitchDefaultState = {};
|
|
10
10
|
export type DBSwitchState = DBSwitchDefaultState & GlobalState & ChangeEventState<HTMLInputElement> & FocusEventState<HTMLInputElement> & FormState;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal, ModelSignal, Renderer2 } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { ChangeEvent, InteractionEvent } from "../../shared/model";
|
|
4
|
+
import { DBSwitchProps } from "./model";
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class DBSwitch implements AfterViewInit, ControlValueAccessor {
|
|
6
7
|
private renderer;
|
|
@@ -8,24 +9,23 @@ export declare class DBSwitch implements AfterViewInit, ControlValueAccessor {
|
|
|
8
9
|
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
9
10
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
10
11
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
11
|
-
id:
|
|
12
|
-
visualAid:
|
|
13
|
-
size:
|
|
14
|
-
showLabel:
|
|
15
|
-
emphasis:
|
|
16
|
-
showRequiredAsterisk:
|
|
17
|
-
className:
|
|
18
|
-
checked:
|
|
19
|
-
value:
|
|
20
|
-
disabled:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
label: import("@angular/core").InputSignal<string | undefined>;
|
|
12
|
+
id: InputSignal<DBSwitchProps["id"]>;
|
|
13
|
+
visualAid: InputSignal<DBSwitchProps["visualAid"]>;
|
|
14
|
+
size: InputSignal<DBSwitchProps["size"]>;
|
|
15
|
+
showLabel: InputSignal<DBSwitchProps["showLabel"]>;
|
|
16
|
+
emphasis: InputSignal<DBSwitchProps["emphasis"]>;
|
|
17
|
+
showRequiredAsterisk: InputSignal<DBSwitchProps["showRequiredAsterisk"]>;
|
|
18
|
+
className: InputSignal<DBSwitchProps["className"]>;
|
|
19
|
+
checked: ModelSignal<DBSwitchProps["checked"]>;
|
|
20
|
+
value: InputSignal<DBSwitchProps["value"]>;
|
|
21
|
+
disabled: ModelSignal<DBSwitchProps["disabled"]>;
|
|
22
|
+
validation: InputSignal<DBSwitchProps["validation"]>;
|
|
23
|
+
name: InputSignal<DBSwitchProps["name"]>;
|
|
24
|
+
required: InputSignal<DBSwitchProps["required"]>;
|
|
25
|
+
iconLeading: InputSignal<DBSwitchProps["iconLeading"]>;
|
|
26
|
+
icon: InputSignal<DBSwitchProps["icon"]>;
|
|
27
|
+
iconTrailing: InputSignal<DBSwitchProps["iconTrailing"]>;
|
|
28
|
+
label: InputSignal<DBSwitchProps["label"]>;
|
|
29
29
|
change: import("@angular/core").OutputEmitterRef<void | Event>;
|
|
30
30
|
blur: import("@angular/core").OutputEmitterRef<void | FocusEvent>;
|
|
31
31
|
focus: import("@angular/core").OutputEmitterRef<void | FocusEvent>;
|
|
@@ -46,8 +46,7 @@ export declare class DBSwitch implements AfterViewInit, ControlValueAccessor {
|
|
|
46
46
|
registerOnChange(onChange: any): void;
|
|
47
47
|
registerOnTouched(onTouched: any): void;
|
|
48
48
|
setDisabledState(disabled: boolean): void;
|
|
49
|
-
ngOnInit(): void;
|
|
50
49
|
ngAfterViewInit(): void;
|
|
51
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBSwitch, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DBSwitch, "db-switch", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "visualAid": { "alias": "visualAid"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "emphasis": { "alias": "emphasis"; "required": false; "isSignal": true; }; "showRequiredAsterisk": { "alias": "showRequiredAsterisk"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DBSwitch, "db-switch", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "visualAid": { "alias": "visualAid"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "emphasis": { "alias": "emphasis"; "required": false; "isSignal": true; }; "showRequiredAsterisk": { "alias": "showRequiredAsterisk"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "iconLeading": { "alias": "iconLeading"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconTrailing": { "alias": "iconTrailing"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "disabled": "disabledChange"; "change": "change"; "blur": "blur"; "focus": "focus"; }, never, ["*"], true, never>;
|
|
53
52
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ActiveProps,
|
|
1
|
+
import { ActiveProps, ChangeEventProps, ChangeEventState, GlobalProps, GlobalState, IconLeadingProps, IconProps, IconTrailingProps, InitializedState, NameProps, NameState, ShowIconLeadingProps, ShowIconProps, ShowIconTrailingProps } from '../../shared/model';
|
|
2
2
|
export type DBTabItemDefaultProps = {
|
|
3
3
|
/**
|
|
4
4
|
* To control the component
|
|
@@ -17,7 +17,7 @@ export type DBTabItemDefaultProps = {
|
|
|
17
17
|
*/
|
|
18
18
|
noText?: boolean | string;
|
|
19
19
|
};
|
|
20
|
-
export type DBTabItemProps = GlobalProps & DBTabItemDefaultProps & IconProps &
|
|
20
|
+
export type DBTabItemProps = GlobalProps & DBTabItemDefaultProps & IconProps & IconTrailingProps & IconLeadingProps & ShowIconLeadingProps & ShowIconTrailingProps & ActiveProps & ChangeEventProps<HTMLInputElement> & ShowIconProps & NameProps;
|
|
21
21
|
export type DBTabItemDefaultState = {
|
|
22
22
|
_selected: boolean;
|
|
23
23
|
};
|
|
@@ -1,24 +1,26 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal, ModelSignal, Renderer2 } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import type { DBTabItemProps } from "./model";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DBTabItem implements AfterViewInit, ControlValueAccessor {
|
|
5
6
|
private renderer;
|
|
6
7
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
7
|
-
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
8
8
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
9
9
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
10
|
-
active:
|
|
11
|
-
name:
|
|
12
|
-
className:
|
|
13
|
-
id:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
active: InputSignal<DBTabItemProps["active"]>;
|
|
11
|
+
name: InputSignal<DBTabItemProps["name"]>;
|
|
12
|
+
className: InputSignal<DBTabItemProps["className"]>;
|
|
13
|
+
id: InputSignal<DBTabItemProps["id"]>;
|
|
14
|
+
iconLeading: InputSignal<DBTabItemProps["iconLeading"]>;
|
|
15
|
+
icon: InputSignal<DBTabItemProps["icon"]>;
|
|
16
|
+
iconTrailing: InputSignal<DBTabItemProps["iconTrailing"]>;
|
|
17
|
+
showIconLeading: InputSignal<DBTabItemProps["showIconLeading"]>;
|
|
18
|
+
showIcon: InputSignal<DBTabItemProps["showIcon"]>;
|
|
19
|
+
showIconTrailing: InputSignal<DBTabItemProps["showIconTrailing"]>;
|
|
20
|
+
noText: InputSignal<DBTabItemProps["noText"]>;
|
|
21
|
+
disabled: ModelSignal<DBTabItemProps["disabled"]>;
|
|
22
|
+
checked: ModelSignal<DBTabItemProps["checked"]>;
|
|
23
|
+
label: InputSignal<DBTabItemProps["label"]>;
|
|
22
24
|
change: import("@angular/core").OutputEmitterRef<void | Event>;
|
|
23
25
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
24
26
|
_selected: import("@angular/core").WritableSignal<boolean>;
|
|
@@ -38,8 +40,7 @@ export declare class DBTabItem implements AfterViewInit, ControlValueAccessor {
|
|
|
38
40
|
registerOnChange(onChange: any): void;
|
|
39
41
|
registerOnTouched(onTouched: any): void;
|
|
40
42
|
setDisabledState(disabled: boolean): void;
|
|
41
|
-
ngOnInit(): void;
|
|
42
43
|
ngAfterViewInit(): void;
|
|
43
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBTabItem, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DBTabItem, "db-tab-item", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DBTabItem, "db-tab-item", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "iconLeading": { "alias": "iconLeading"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconTrailing": { "alias": "iconTrailing"; "required": false; "isSignal": true; }; "showIconLeading": { "alias": "showIconLeading"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "showIconTrailing": { "alias": "showIconTrailing"; "required": false; "isSignal": true; }; "noText": { "alias": "noText"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "checked": "checkedChange"; "change": "change"; }, never, ["*"], true, never>;
|
|
45
46
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBTabListProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBTabList implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
|
-
id:
|
|
6
|
-
className:
|
|
6
|
+
id: InputSignal<DBTabListProps["id"]>;
|
|
7
|
+
className: InputSignal<DBTabListProps["className"]>;
|
|
7
8
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
8
9
|
_id: import("@angular/core").WritableSignal<string | undefined>;
|
|
9
10
|
constructor();
|
|
@@ -13,7 +14,6 @@ export declare class DBTabList implements AfterViewInit {
|
|
|
13
14
|
* @param customElementSelector the custom element like `my-component`
|
|
14
15
|
*/
|
|
15
16
|
private enableAttributePassing;
|
|
16
|
-
ngOnInit(): void;
|
|
17
17
|
ngAfterViewInit(): void;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBTabList, never>;
|
|
19
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBTabList, "db-tab-list", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GlobalProps, GlobalState } from '../../shared/model';
|
|
2
2
|
export type DBTabPanelDefaultProps = {
|
|
3
3
|
/**
|
|
4
4
|
* The content if you don't want to use children.
|
|
5
5
|
*/
|
|
6
6
|
content?: string;
|
|
7
7
|
};
|
|
8
|
-
export type DBTabPanelProps = DBTabPanelDefaultProps & GlobalProps
|
|
8
|
+
export type DBTabPanelProps = DBTabPanelDefaultProps & GlobalProps;
|
|
9
9
|
export type DBTabPanelDefaultState = {};
|
|
10
10
|
export type DBTabPanelState = DBTabPanelDefaultState & GlobalState;
|