@db-ux/v-core-components 2.0.2 → 2.0.4
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/dist/components/accordion/accordion.vue.d.ts +3 -25
- package/dist/components/accordion-item/accordion-item.vue.d.ts +3 -30
- package/dist/components/badge/badge.vue.d.ts +2 -21
- package/dist/components/brand/brand.vue.d.ts +2 -20
- package/dist/components/button/button.vue.d.ts +3 -37
- package/dist/components/card/card.vue.d.ts +3 -20
- package/dist/components/checkbox/checkbox.vue.d.ts +3 -65
- package/dist/components/custom-select/custom-select.vue.d.ts +3 -199
- package/dist/components/custom-select-dropdown/custom-select-dropdown.vue.d.ts +2 -14
- package/dist/components/custom-select-form-field/custom-select-form-field.vue.d.ts +2 -13
- package/dist/components/custom-select-list/custom-select-list.vue.d.ts +2 -15
- package/dist/components/custom-select-list-item/custom-select-list-item.vue.d.ts +3 -41
- package/dist/components/drawer/drawer.vue.d.ts +3 -33
- package/dist/components/header/header.vue.d.ts +3 -34
- package/dist/components/icon/icon.vue.d.ts +2 -17
- package/dist/components/infotext/infotext.vue.d.ts +2 -19
- package/dist/components/input/input.vue.d.ts +3 -98
- package/dist/components/link/link.vue.d.ts +3 -33
- package/dist/components/navigation/navigation.vue.d.ts +2 -16
- package/dist/components/navigation-item/navigation-item.vue.d.ts +3 -59
- package/dist/components/notification/notification.vue.d.ts +3 -39
- package/dist/components/page/page.vue.d.ts +2 -20
- package/dist/components/popover/popover.vue.d.ts +3 -26
- package/dist/components/radio/radio.vue.d.ts +3 -41
- package/dist/components/section/section.vue.d.ts +2 -17
- package/dist/components/select/select.vue.d.ts +3 -84
- package/dist/components/stack/stack.vue.d.ts +2 -20
- package/dist/components/switch/switch.vue.d.ts +3 -48
- package/dist/components/tab-item/tab-item.vue.d.ts +3 -38
- package/dist/components/tab-list/tab-list.vue.d.ts +2 -15
- package/dist/components/tab-panel/tab-panel.vue.d.ts +2 -15
- package/dist/components/tabs/tabs.vue.d.ts +3 -45
- package/dist/components/tag/tag.vue.d.ts +3 -33
- package/dist/components/tooltip/tooltip.vue.d.ts +3 -26
- package/package.json +5 -5
|
@@ -1,40 +1,10 @@
|
|
|
1
|
-
import { DBDrawerProps
|
|
2
|
-
import DBButton from "../button/button.vue";
|
|
3
|
-
import { DEFAULT_CLOSE_BUTTON } from "../../shared/constants";
|
|
4
|
-
import { cls, getBooleanAsString } from "../../utils";
|
|
5
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
6
|
-
declare const dialogContainerRef: import("vue").Ref<any, any>;
|
|
7
|
-
declare function handleClose(event: any): ReturnType<DBDrawerState["handleClose"]>;
|
|
8
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
1
|
+
import { DBDrawerProps } from "./model";
|
|
9
2
|
declare var __VLS_1: {}, __VLS_6: {};
|
|
10
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
11
4
|
'drawer-header'?: (props: typeof __VLS_1) => any;
|
|
12
5
|
} & {
|
|
13
6
|
default?: (props: typeof __VLS_6) => any;
|
|
14
|
-
}
|
|
15
|
-
declare const __VLS_self: import("vue").DefineComponent<DBDrawerProps, {
|
|
16
|
-
DBButton: typeof DBButton;
|
|
17
|
-
DEFAULT_CLOSE_BUTTON: typeof DEFAULT_CLOSE_BUTTON;
|
|
18
|
-
cls: typeof cls;
|
|
19
|
-
getBooleanAsString: typeof getBooleanAsString;
|
|
20
|
-
_ref: typeof _ref;
|
|
21
|
-
dialogContainerRef: typeof dialogContainerRef;
|
|
22
|
-
handleClose: typeof handleClose;
|
|
23
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDrawerProps> & Readonly<{}>, {
|
|
24
|
-
variant: import("./model").DrawerVariantType;
|
|
25
|
-
children: any;
|
|
26
|
-
className: string;
|
|
27
|
-
id: string;
|
|
28
|
-
width: import("../..").WidthType | string;
|
|
29
|
-
onClose: (event?: any) => void;
|
|
30
|
-
closeButtonId: string;
|
|
31
|
-
closeButtonText: string;
|
|
32
|
-
spacing: import("../..").SpacingType | string;
|
|
33
|
-
backdrop: import("./model").DrawerBackdropType;
|
|
34
|
-
direction: import("./model").DrawerDirectionType;
|
|
35
|
-
open: boolean | string;
|
|
36
|
-
rounded: boolean | string;
|
|
37
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
};
|
|
38
8
|
declare const __VLS_component: import("vue").DefineComponent<DBDrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBDrawerProps> & Readonly<{}>, {
|
|
39
9
|
variant: import("./model").DrawerVariantType;
|
|
40
10
|
children: any;
|
|
@@ -1,16 +1,6 @@
|
|
|
1
|
-
import { DBHeaderProps
|
|
2
|
-
import { cls, getBoolean } from "../../utils";
|
|
3
|
-
import DBButton from "../button/button.vue";
|
|
4
|
-
import DBDrawer from "../drawer/drawer.vue";
|
|
5
|
-
import { DEFAULT_BURGER_MENU } from "../../shared/constants";
|
|
6
|
-
declare const _id: import("vue").Ref<string | undefined, string | undefined>;
|
|
7
|
-
declare const forcedToMobile: import("vue").Ref<boolean | undefined, boolean | undefined>;
|
|
8
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
9
|
-
declare function handleToggle(): ReturnType<DBHeaderState["handleToggle"]>;
|
|
10
|
-
declare function handleNavigationItemClick(event: unknown): ReturnType<DBHeaderState["handleNavigationItemClick"]>;
|
|
11
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
1
|
+
import { DBHeaderProps } from "./model";
|
|
12
2
|
declare var __VLS_4: {}, __VLS_6: {}, __VLS_8: {}, __VLS_10: {}, __VLS_12: {}, __VLS_14: {}, __VLS_16: {}, __VLS_21: {};
|
|
13
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
14
4
|
default?: (props: typeof __VLS_4) => any;
|
|
15
5
|
} & {
|
|
16
6
|
'meta-navigation'?: (props: typeof __VLS_6) => any;
|
|
@@ -26,28 +16,7 @@ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$
|
|
|
26
16
|
'primary-action'?: (props: typeof __VLS_16) => any;
|
|
27
17
|
} & {
|
|
28
18
|
'secondary-action'?: (props: typeof __VLS_21) => any;
|
|
29
|
-
}
|
|
30
|
-
declare const __VLS_self: import("vue").DefineComponent<DBHeaderProps, {
|
|
31
|
-
cls: typeof cls;
|
|
32
|
-
getBoolean: typeof getBoolean;
|
|
33
|
-
DBButton: typeof DBButton;
|
|
34
|
-
DBDrawer: typeof DBDrawer;
|
|
35
|
-
DEFAULT_BURGER_MENU: typeof DEFAULT_BURGER_MENU;
|
|
36
|
-
_id: typeof _id;
|
|
37
|
-
forcedToMobile: typeof forcedToMobile;
|
|
38
|
-
_ref: typeof _ref;
|
|
39
|
-
handleToggle: typeof handleToggle;
|
|
40
|
-
handleNavigationItemClick: typeof handleNavigationItemClick;
|
|
41
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBHeaderProps> & Readonly<{}>, {
|
|
42
|
-
children: any;
|
|
43
|
-
className: string;
|
|
44
|
-
id: string;
|
|
45
|
-
width: import("../..").MaxWidthType;
|
|
46
|
-
drawerOpen: boolean | string;
|
|
47
|
-
forceMobile: boolean | string;
|
|
48
|
-
burgerMenuLabel: string;
|
|
49
|
-
onToggle: (open: boolean | any) => void;
|
|
50
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
};
|
|
51
20
|
declare const __VLS_component: import("vue").DefineComponent<DBHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBHeaderProps> & Readonly<{}>, {
|
|
52
21
|
children: any;
|
|
53
22
|
className: string;
|
|
@@ -1,23 +1,8 @@
|
|
|
1
1
|
import type { DBIconProps } from "./model";
|
|
2
|
-
import { cls } from "../../utils";
|
|
3
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
4
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
5
2
|
declare var __VLS_1: {};
|
|
6
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
7
4
|
default?: (props: typeof __VLS_1) => any;
|
|
8
|
-
}
|
|
9
|
-
declare const __VLS_self: import("vue").DefineComponent<DBIconProps, {
|
|
10
|
-
cls: typeof cls;
|
|
11
|
-
_ref: typeof _ref;
|
|
12
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBIconProps> & Readonly<{}>, {
|
|
13
|
-
text: string;
|
|
14
|
-
variant: import("./model").IconVariantType;
|
|
15
|
-
children: any;
|
|
16
|
-
className: string;
|
|
17
|
-
id: string;
|
|
18
|
-
icon: import("@db-ux/core-foundations").IconTypes;
|
|
19
|
-
weight: import("./model").IconWeightType;
|
|
20
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
};
|
|
21
6
|
declare const __VLS_component: import("vue").DefineComponent<DBIconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBIconProps> & Readonly<{}>, {
|
|
22
7
|
text: string;
|
|
23
8
|
variant: import("./model").IconVariantType;
|
|
@@ -1,25 +1,8 @@
|
|
|
1
1
|
import { DBInfotextProps } from "./model";
|
|
2
|
-
import { cls, getHideProp } from "../../utils";
|
|
3
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
4
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
5
2
|
declare var __VLS_1: {};
|
|
6
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
7
4
|
default?: (props: typeof __VLS_1) => any;
|
|
8
|
-
}
|
|
9
|
-
declare const __VLS_self: import("vue").DefineComponent<DBInfotextProps, {
|
|
10
|
-
cls: typeof cls;
|
|
11
|
-
getHideProp: typeof getHideProp;
|
|
12
|
-
_ref: typeof _ref;
|
|
13
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBInfotextProps> & Readonly<{}>, {
|
|
14
|
-
text: string;
|
|
15
|
-
children: any;
|
|
16
|
-
className: string;
|
|
17
|
-
id: string;
|
|
18
|
-
icon: import("@db-ux/core-foundations").IconTypes;
|
|
19
|
-
size: import("../..").SizeType;
|
|
20
|
-
showIcon: boolean | string;
|
|
21
|
-
semantic: import("../..").SemanticType;
|
|
22
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
};
|
|
23
6
|
declare const __VLS_component: import("vue").DefineComponent<DBInfotextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBInfotextProps> & Readonly<{}>, {
|
|
24
7
|
text: string;
|
|
25
8
|
children: any;
|
|
@@ -1,104 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { DBInputProps, DBInputState } from "./model";
|
|
3
|
-
import { DEFAULT_LABEL, DEFAULT_PLACEHOLDER, DEFAULT_VALID_MESSAGE } from "../../shared/constants";
|
|
1
|
+
import { DBInputProps } from "./model";
|
|
4
2
|
import { ChangeEvent, InputEvent, InteractionEvent, ValueLabelType } from "../../shared/model";
|
|
5
|
-
import DBInfotext from "../infotext/infotext.vue";
|
|
6
|
-
declare const _id: import("vue").Ref<string | undefined, string | undefined>;
|
|
7
|
-
declare const _messageId: import("vue").Ref<string | undefined, string | undefined>;
|
|
8
|
-
declare const _validMessageId: import("vue").Ref<string | undefined, string | undefined>;
|
|
9
|
-
declare const _invalidMessageId: import("vue").Ref<string | undefined, string | undefined>;
|
|
10
|
-
declare const _invalidMessage: import("vue").Ref<string | undefined, string | undefined>;
|
|
11
|
-
declare const _dataListId: import("vue").Ref<string | undefined, string | undefined>;
|
|
12
|
-
declare const _descByIds: import("vue").Ref<string | undefined, string | undefined>;
|
|
13
|
-
declare const _value: import("vue").Ref<string | undefined, string | undefined>;
|
|
14
|
-
declare const _voiceOverFallback: import("vue").Ref<string | undefined, string | undefined>;
|
|
15
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
16
|
-
declare function hasValidState(): ReturnType<DBInputState["hasValidState"]>;
|
|
17
|
-
declare function handleInput(event: InputEvent<HTMLInputElement>): ReturnType<DBInputState["handleInput"]>;
|
|
18
|
-
declare function handleChange(event: ChangeEvent<HTMLInputElement>): ReturnType<DBInputState["handleChange"]>;
|
|
19
|
-
declare function handleBlur(event: InteractionEvent<HTMLInputElement> | any): ReturnType<DBInputState["handleBlur"]>;
|
|
20
|
-
declare function handleFocus(event: InteractionEvent<HTMLInputElement> | any): ReturnType<DBInputState["handleFocus"]>;
|
|
21
|
-
declare function getDataList(): ReturnType<DBInputState["getDataList"]>;
|
|
22
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
23
3
|
declare var __VLS_1: {};
|
|
24
|
-
type __VLS_Slots =
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
25
5
|
default?: (props: typeof __VLS_1) => any;
|
|
26
|
-
}
|
|
27
|
-
declare const __VLS_self: import("vue").DefineComponent<DBInputProps, {
|
|
28
|
-
cls: typeof cls;
|
|
29
|
-
getBoolean: typeof getBoolean;
|
|
30
|
-
getHideProp: typeof getHideProp;
|
|
31
|
-
getNumber: typeof getNumber;
|
|
32
|
-
stringPropVisible: typeof stringPropVisible;
|
|
33
|
-
DEFAULT_LABEL: typeof DEFAULT_LABEL;
|
|
34
|
-
DEFAULT_PLACEHOLDER: typeof DEFAULT_PLACEHOLDER;
|
|
35
|
-
DEFAULT_VALID_MESSAGE: typeof DEFAULT_VALID_MESSAGE;
|
|
36
|
-
DBInfotext: typeof DBInfotext;
|
|
37
|
-
_id: typeof _id;
|
|
38
|
-
_messageId: typeof _messageId;
|
|
39
|
-
_validMessageId: typeof _validMessageId;
|
|
40
|
-
_invalidMessageId: typeof _invalidMessageId;
|
|
41
|
-
_invalidMessage: typeof _invalidMessage;
|
|
42
|
-
_dataListId: typeof _dataListId;
|
|
43
|
-
_descByIds: typeof _descByIds;
|
|
44
|
-
_value: typeof _value;
|
|
45
|
-
_voiceOverFallback: typeof _voiceOverFallback;
|
|
46
|
-
_ref: typeof _ref;
|
|
47
|
-
hasValidState: typeof hasValidState;
|
|
48
|
-
handleInput: typeof handleInput;
|
|
49
|
-
handleChange: typeof handleChange;
|
|
50
|
-
handleBlur: typeof handleBlur;
|
|
51
|
-
handleFocus: typeof handleFocus;
|
|
52
|
-
getDataList: typeof getDataList;
|
|
53
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
54
|
-
"update:value": (...args: any[]) => void;
|
|
55
|
-
}, string, import("vue").PublicProps, Readonly<DBInputProps> & Readonly<{
|
|
56
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
57
|
-
}>, {
|
|
58
|
-
name: string;
|
|
59
|
-
step: number | string;
|
|
60
|
-
form: string;
|
|
61
|
-
input: (event: InputEvent<HTMLInputElement>) => void;
|
|
62
|
-
label: string;
|
|
63
|
-
pattern: string;
|
|
64
|
-
disabled: boolean | string;
|
|
65
|
-
type: import("./model").InputTypeType | string;
|
|
66
|
-
value: any;
|
|
67
|
-
variant: import("../../shared/model").LabelVariantType;
|
|
68
|
-
children: any;
|
|
69
|
-
className: string;
|
|
70
|
-
id: string;
|
|
71
|
-
autofocus: boolean | string;
|
|
72
|
-
icon: import("@db-ux/core-foundations").IconTypes;
|
|
73
|
-
size: number;
|
|
74
|
-
showIcon: boolean | string;
|
|
75
|
-
onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
|
|
76
|
-
onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
|
|
77
|
-
onChange: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
78
|
-
onInput: (event: InputEvent<HTMLInputElement>) => void;
|
|
79
|
-
ariaDescribedBy: string;
|
|
80
|
-
validation: import("../../shared/model").ValidationType;
|
|
81
|
-
required: boolean | string;
|
|
82
|
-
showLabel: boolean | string;
|
|
83
|
-
placeholder: string;
|
|
84
|
-
message: string;
|
|
85
|
-
validMessage: string;
|
|
86
|
-
invalidMessage: string;
|
|
87
|
-
messageIcon: import("@db-ux/core-foundations").IconTypes;
|
|
88
|
-
autocomplete: string | import("../../shared/model").AutoCompleteType;
|
|
89
|
-
showMessage: boolean | string;
|
|
90
|
-
dataList: string[] | ValueLabelType[];
|
|
91
|
-
dataListId: string;
|
|
92
|
-
max: number | string;
|
|
93
|
-
min: number | string;
|
|
94
|
-
maxLength: number | string;
|
|
95
|
-
minLength: number | string;
|
|
96
|
-
maxlength: number | string;
|
|
97
|
-
minlength: number | string;
|
|
98
|
-
readOnly: boolean | string;
|
|
99
|
-
readonly: boolean | string;
|
|
100
|
-
iconAfter: import("@db-ux/core-foundations").IconTypes;
|
|
101
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
};
|
|
102
7
|
declare const __VLS_component: import("vue").DefineComponent<DBInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
103
8
|
"update:value": (...args: any[]) => void;
|
|
104
9
|
}, string, import("vue").PublicProps, Readonly<DBInputProps> & Readonly<{
|
|
@@ -1,39 +1,9 @@
|
|
|
1
|
-
import { DBLinkProps
|
|
2
|
-
import { cls, getBooleanAsString, getHideProp } from "../../utils";
|
|
1
|
+
import { DBLinkProps } from "./model";
|
|
3
2
|
import { ClickEvent } from "../../shared/model";
|
|
4
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
5
|
-
declare function handleClick(event: ClickEvent<HTMLAnchorElement>): ReturnType<DBLinkState["handleClick"]>;
|
|
6
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
7
3
|
declare var __VLS_1: {};
|
|
8
|
-
type __VLS_Slots =
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
9
5
|
default?: (props: typeof __VLS_1) => any;
|
|
10
|
-
}
|
|
11
|
-
declare const __VLS_self: import("vue").DefineComponent<DBLinkProps, {
|
|
12
|
-
cls: typeof cls;
|
|
13
|
-
getBooleanAsString: typeof getBooleanAsString;
|
|
14
|
-
getHideProp: typeof getHideProp;
|
|
15
|
-
_ref: typeof _ref;
|
|
16
|
-
handleClick: typeof handleClick;
|
|
17
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBLinkProps> & Readonly<{}>, {
|
|
18
|
-
label: string;
|
|
19
|
-
text: string;
|
|
20
|
-
disabled: boolean | string;
|
|
21
|
-
variant: import("./model").LinkVariantType;
|
|
22
|
-
children: any;
|
|
23
|
-
className: string;
|
|
24
|
-
id: string;
|
|
25
|
-
onClick: (event: ClickEvent<HTMLAnchorElement>) => void;
|
|
26
|
-
size: import("./model").LinkSizeType;
|
|
27
|
-
showIcon: boolean | string;
|
|
28
|
-
target: import("../../shared/model").LinkTargetType;
|
|
29
|
-
role: string;
|
|
30
|
-
content: import("./model").LinkContentType;
|
|
31
|
-
current: boolean | import("../../shared/model").LinkCurrentType;
|
|
32
|
-
href: string;
|
|
33
|
-
hreflang: string;
|
|
34
|
-
rel: string;
|
|
35
|
-
selected: boolean | string;
|
|
36
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
};
|
|
37
7
|
declare const __VLS_component: import("vue").DefineComponent<DBLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBLinkProps> & Readonly<{}>, {
|
|
38
8
|
label: string;
|
|
39
9
|
text: string;
|
|
@@ -1,22 +1,8 @@
|
|
|
1
1
|
import { DBNavigationProps } from "./model";
|
|
2
|
-
import { cls } from "../../utils";
|
|
3
|
-
declare const _id: import("vue").Ref<string | undefined, string | undefined>;
|
|
4
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
5
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
2
|
declare var __VLS_1: {};
|
|
7
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
8
4
|
default?: (props: typeof __VLS_1) => any;
|
|
9
|
-
}
|
|
10
|
-
declare const __VLS_self: import("vue").DefineComponent<DBNavigationProps, {
|
|
11
|
-
cls: typeof cls;
|
|
12
|
-
_id: typeof _id;
|
|
13
|
-
_ref: typeof _ref;
|
|
14
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationProps> & Readonly<{}>, {
|
|
15
|
-
children: any;
|
|
16
|
-
className: string;
|
|
17
|
-
id: string;
|
|
18
|
-
labelledBy: string;
|
|
19
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
};
|
|
20
6
|
declare const __VLS_component: import("vue").DefineComponent<DBNavigationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationProps> & Readonly<{}>, {
|
|
21
7
|
children: any;
|
|
22
8
|
className: string;
|
|
@@ -1,69 +1,13 @@
|
|
|
1
|
-
import { DBNavigationItemProps
|
|
2
|
-
import DBButton from "../button/button.vue";
|
|
3
|
-
import { cls, getBoolean, getBooleanAsString, getHideProp } from "../../utils";
|
|
4
|
-
import { NavigationItemSafeTriangle } from "../../utils/navigation";
|
|
5
|
-
import { DEFAULT_BACK } from "../../shared/constants";
|
|
1
|
+
import { DBNavigationItemProps } from "./model";
|
|
6
2
|
import { ClickEvent } from "../../shared/model";
|
|
7
|
-
declare const hasAreaPopup: import("vue").Ref<boolean, boolean>;
|
|
8
|
-
declare const hasSubNavigation: import("vue").Ref<boolean | undefined, boolean | undefined>;
|
|
9
|
-
declare const isSubNavigationExpanded: import("vue").Ref<boolean, boolean>;
|
|
10
|
-
declare const autoClose: import("vue").Ref<boolean | undefined, boolean | undefined>;
|
|
11
|
-
declare const subNavigationId: import("vue").Ref<string, string>;
|
|
12
|
-
declare const navigationItemSafeTriangle: import("vue").Ref<{
|
|
13
|
-
enableFollow: () => void;
|
|
14
|
-
disableFollow: () => void;
|
|
15
|
-
followByMouseEvent: (event: MouseEvent) => void;
|
|
16
|
-
} | undefined, NavigationItemSafeTriangle | {
|
|
17
|
-
enableFollow: () => void;
|
|
18
|
-
disableFollow: () => void;
|
|
19
|
-
followByMouseEvent: (event: MouseEvent) => void;
|
|
20
|
-
} | undefined>;
|
|
21
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
22
|
-
declare function handleNavigationItemClick(event: unknown): ReturnType<DBNavigationItemState["handleNavigationItemClick"]>;
|
|
23
|
-
declare function handleClick(event: ClickEvent<HTMLButtonElement> | any): ReturnType<DBNavigationItemState["handleClick"]>;
|
|
24
|
-
declare function handleBackClick(event: ClickEvent<HTMLButtonElement> | any): ReturnType<DBNavigationItemState["handleBackClick"]>;
|
|
25
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
26
3
|
declare var __VLS_1: {}, __VLS_3: {}, __VLS_8: {};
|
|
27
|
-
type __VLS_Slots =
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
28
5
|
default?: (props: typeof __VLS_1) => any;
|
|
29
6
|
} & {
|
|
30
7
|
default?: (props: typeof __VLS_3) => any;
|
|
31
8
|
} & {
|
|
32
9
|
'sub-navigation'?: (props: typeof __VLS_8) => any;
|
|
33
|
-
}
|
|
34
|
-
declare const __VLS_self: import("vue").DefineComponent<DBNavigationItemProps, {
|
|
35
|
-
DBButton: typeof DBButton;
|
|
36
|
-
cls: typeof cls;
|
|
37
|
-
getBoolean: typeof getBoolean;
|
|
38
|
-
getBooleanAsString: typeof getBooleanAsString;
|
|
39
|
-
getHideProp: typeof getHideProp;
|
|
40
|
-
DEFAULT_BACK: typeof DEFAULT_BACK;
|
|
41
|
-
hasAreaPopup: typeof hasAreaPopup;
|
|
42
|
-
hasSubNavigation: typeof hasSubNavigation;
|
|
43
|
-
isSubNavigationExpanded: typeof isSubNavigationExpanded;
|
|
44
|
-
autoClose: typeof autoClose;
|
|
45
|
-
subNavigationId: typeof subNavigationId;
|
|
46
|
-
navigationItemSafeTriangle: typeof navigationItemSafeTriangle;
|
|
47
|
-
_ref: typeof _ref;
|
|
48
|
-
handleNavigationItemClick: typeof handleNavigationItemClick;
|
|
49
|
-
handleClick: typeof handleClick;
|
|
50
|
-
handleBackClick: typeof handleBackClick;
|
|
51
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationItemProps> & Readonly<{}>, {
|
|
52
|
-
text: string;
|
|
53
|
-
disabled: boolean | string;
|
|
54
|
-
children: any;
|
|
55
|
-
className: string;
|
|
56
|
-
id: string;
|
|
57
|
-
onClick: (event: ClickEvent<HTMLButtonElement>) => void;
|
|
58
|
-
icon: import("@db-ux/core-foundations").IconTypes;
|
|
59
|
-
width: import("../../shared/model").WidthType | string;
|
|
60
|
-
showIcon: boolean | string;
|
|
61
|
-
active: boolean;
|
|
62
|
-
wrap: boolean | string;
|
|
63
|
-
subNavigationExpanded: boolean | string;
|
|
64
|
-
backButtonId: string;
|
|
65
|
-
backButtonText: string;
|
|
66
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
};
|
|
67
11
|
declare const __VLS_component: import("vue").DefineComponent<DBNavigationItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNavigationItemProps> & Readonly<{}>, {
|
|
68
12
|
text: string;
|
|
69
13
|
disabled: boolean | string;
|
|
@@ -1,48 +1,12 @@
|
|
|
1
|
-
import { DBNotificationProps
|
|
2
|
-
import DBButton from "../button/button.vue";
|
|
3
|
-
import { DEFAULT_CLOSE_BUTTON } from "../../shared/constants";
|
|
4
|
-
import { cls, getBoolean, getHideProp, stringPropVisible } from "../../utils";
|
|
5
|
-
import { ClickEvent } from "../../shared/model";
|
|
6
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
7
|
-
declare function handleClose(event: ClickEvent<HTMLButtonElement> | any): ReturnType<DBNotificationState["handleClose"]>;
|
|
8
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
1
|
+
import { DBNotificationProps } from "./model";
|
|
9
2
|
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
|
|
10
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
11
4
|
image?: (props: typeof __VLS_1) => any;
|
|
12
5
|
} & {
|
|
13
6
|
default?: (props: typeof __VLS_3) => any;
|
|
14
7
|
} & {
|
|
15
8
|
link?: (props: typeof __VLS_5) => any;
|
|
16
|
-
}
|
|
17
|
-
declare const __VLS_self: import("vue").DefineComponent<DBNotificationProps, {
|
|
18
|
-
DBButton: typeof DBButton;
|
|
19
|
-
DEFAULT_CLOSE_BUTTON: typeof DEFAULT_CLOSE_BUTTON;
|
|
20
|
-
cls: typeof cls;
|
|
21
|
-
getBoolean: typeof getBoolean;
|
|
22
|
-
getHideProp: typeof getHideProp;
|
|
23
|
-
stringPropVisible: typeof stringPropVisible;
|
|
24
|
-
_ref: typeof _ref;
|
|
25
|
-
handleClose: typeof handleClose;
|
|
26
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNotificationProps> & Readonly<{}>, {
|
|
27
|
-
text: string;
|
|
28
|
-
variant: import("./model").NotificationVariantType;
|
|
29
|
-
children: any;
|
|
30
|
-
className: string;
|
|
31
|
-
id: string;
|
|
32
|
-
icon: import("@db-ux/core-foundations").IconTypes;
|
|
33
|
-
showIcon: boolean | string;
|
|
34
|
-
ariaLive: import("./model").NotificationAriaLiveType;
|
|
35
|
-
closeable: boolean | string;
|
|
36
|
-
headline: string | any;
|
|
37
|
-
linkVariant: import("./model").NotificationLinkVariantType;
|
|
38
|
-
showHeadline: boolean | string;
|
|
39
|
-
timestamp: string;
|
|
40
|
-
showTimestamp: boolean | string;
|
|
41
|
-
onClose: (event?: any) => void;
|
|
42
|
-
semantic: import("../../shared/model").SemanticType;
|
|
43
|
-
closeButtonId: string;
|
|
44
|
-
closeButtonText: string;
|
|
45
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
};
|
|
46
10
|
declare const __VLS_component: import("vue").DefineComponent<DBNotificationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBNotificationProps> & Readonly<{}>, {
|
|
47
11
|
text: string;
|
|
48
12
|
variant: import("./model").NotificationVariantType;
|
|
@@ -1,30 +1,12 @@
|
|
|
1
1
|
import { DBPageProps } from "./model";
|
|
2
|
-
import { cls, getBooleanAsString } from "../../utils";
|
|
3
|
-
declare const fontsLoaded: import("vue").Ref<boolean | undefined, boolean | undefined>;
|
|
4
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
5
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
2
|
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
|
|
7
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
8
4
|
header?: (props: typeof __VLS_1) => any;
|
|
9
5
|
} & {
|
|
10
6
|
default?: (props: typeof __VLS_3) => any;
|
|
11
7
|
} & {
|
|
12
8
|
footer?: (props: typeof __VLS_5) => any;
|
|
13
|
-
}
|
|
14
|
-
declare const __VLS_self: import("vue").DefineComponent<DBPageProps, {
|
|
15
|
-
cls: typeof cls;
|
|
16
|
-
getBooleanAsString: typeof getBooleanAsString;
|
|
17
|
-
fontsLoaded: typeof fontsLoaded;
|
|
18
|
-
_ref: typeof _ref;
|
|
19
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPageProps> & Readonly<{}>, {
|
|
20
|
-
variant: import("./model").PageVariantType;
|
|
21
|
-
children: any;
|
|
22
|
-
className: string;
|
|
23
|
-
id: string;
|
|
24
|
-
documentOverflow: import("./model").PageDocumentOverflowType;
|
|
25
|
-
fadeIn: boolean | string;
|
|
26
|
-
mainClass: string;
|
|
27
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
};
|
|
28
10
|
declare const __VLS_component: import("vue").DefineComponent<DBPageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPageProps> & Readonly<{}>, {
|
|
29
11
|
variant: import("./model").PageVariantType;
|
|
30
12
|
children: any;
|
|
@@ -1,33 +1,10 @@
|
|
|
1
|
-
import { DBPopoverProps
|
|
2
|
-
import { cls, getBooleanAsString } from "../../utils";
|
|
3
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
4
|
-
declare function handleAutoPlacement(): ReturnType<DBPopoverState["handleAutoPlacement"]>;
|
|
5
|
-
declare function handleLeave(event: any): ReturnType<DBPopoverState["handleLeave"]>;
|
|
6
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
1
|
+
import { DBPopoverProps } from "./model";
|
|
7
2
|
declare var __VLS_1: {}, __VLS_3: {};
|
|
8
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
9
4
|
trigger?: (props: typeof __VLS_1) => any;
|
|
10
5
|
} & {
|
|
11
6
|
default?: (props: typeof __VLS_3) => any;
|
|
12
|
-
}
|
|
13
|
-
declare const __VLS_self: import("vue").DefineComponent<DBPopoverProps, {
|
|
14
|
-
cls: typeof cls;
|
|
15
|
-
getBooleanAsString: typeof getBooleanAsString;
|
|
16
|
-
_ref: typeof _ref;
|
|
17
|
-
handleAutoPlacement: typeof handleAutoPlacement;
|
|
18
|
-
handleLeave: typeof handleLeave;
|
|
19
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPopoverProps> & Readonly<{}>, {
|
|
20
|
-
children: any;
|
|
21
|
-
className: string;
|
|
22
|
-
id: string;
|
|
23
|
-
width: import("../..").PopoverWidthType;
|
|
24
|
-
delay: import("../..").PopoverDelayType;
|
|
25
|
-
animation: boolean | string;
|
|
26
|
-
placement: import("../..").PlacementType;
|
|
27
|
-
spacing: import("../..").SpacingType | string;
|
|
28
|
-
open: boolean | string;
|
|
29
|
-
gap: boolean | string;
|
|
30
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
};
|
|
31
8
|
declare const __VLS_component: import("vue").DefineComponent<DBPopoverProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBPopoverProps> & Readonly<{}>, {
|
|
32
9
|
children: any;
|
|
33
10
|
className: string;
|
|
@@ -1,47 +1,9 @@
|
|
|
1
|
-
import { DBRadioProps
|
|
2
|
-
import { cls, getBoolean, getHideProp } from "../../utils";
|
|
1
|
+
import { DBRadioProps } from "./model";
|
|
3
2
|
import { ChangeEvent, InteractionEvent } from "../../shared/model";
|
|
4
|
-
declare const _id: import("vue").Ref<string | undefined, string | undefined>;
|
|
5
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
6
|
-
declare function handleChange(event: ChangeEvent<HTMLInputElement> | any): ReturnType<DBRadioState["handleChange"]>;
|
|
7
|
-
declare function handleBlur(event: InteractionEvent<HTMLInputElement> | any): ReturnType<DBRadioState["handleBlur"]>;
|
|
8
|
-
declare function handleFocus(event: InteractionEvent<HTMLInputElement> | any): ReturnType<DBRadioState["handleFocus"]>;
|
|
9
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
10
3
|
declare var __VLS_1: {};
|
|
11
|
-
type __VLS_Slots =
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
12
5
|
default?: (props: typeof __VLS_1) => any;
|
|
13
|
-
}
|
|
14
|
-
declare const __VLS_self: import("vue").DefineComponent<DBRadioProps, {
|
|
15
|
-
cls: typeof cls;
|
|
16
|
-
getBoolean: typeof getBoolean;
|
|
17
|
-
getHideProp: typeof getHideProp;
|
|
18
|
-
_id: typeof _id;
|
|
19
|
-
_ref: typeof _ref;
|
|
20
|
-
handleChange: typeof handleChange;
|
|
21
|
-
handleBlur: typeof handleBlur;
|
|
22
|
-
handleFocus: typeof handleFocus;
|
|
23
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
-
"update:value": (...args: any[]) => void;
|
|
25
|
-
}, string, import("vue").PublicProps, Readonly<DBRadioProps> & Readonly<{
|
|
26
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
27
|
-
}>, {
|
|
28
|
-
name: string;
|
|
29
|
-
label: string;
|
|
30
|
-
disabled: boolean | string;
|
|
31
|
-
value: any;
|
|
32
|
-
children: any;
|
|
33
|
-
className: string;
|
|
34
|
-
describedbyid: string;
|
|
35
|
-
id: string;
|
|
36
|
-
size: import("../../shared/model").SizeType;
|
|
37
|
-
onFocus: (event: InteractionEvent<HTMLInputElement>) => void;
|
|
38
|
-
onBlur: (event: InteractionEvent<HTMLInputElement>) => void;
|
|
39
|
-
onChange: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
40
|
-
validation: import("../../shared/model").ValidationType;
|
|
41
|
-
required: boolean | string;
|
|
42
|
-
showLabel: boolean | string;
|
|
43
|
-
checked: boolean | string;
|
|
44
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
};
|
|
45
7
|
declare const __VLS_component: import("vue").DefineComponent<DBRadioProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
46
8
|
"update:value": (...args: any[]) => void;
|
|
47
9
|
}, string, import("vue").PublicProps, Readonly<DBRadioProps> & Readonly<{
|
|
@@ -1,23 +1,8 @@
|
|
|
1
1
|
import { DBSectionProps } from "./model";
|
|
2
|
-
import { cls } from "../../utils";
|
|
3
|
-
declare const _id: import("vue").Ref<string | undefined, string | undefined>;
|
|
4
|
-
declare const _ref: import("vue").Ref<any, any>;
|
|
5
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
6
2
|
declare var __VLS_1: {};
|
|
7
|
-
type __VLS_Slots =
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
8
4
|
default?: (props: typeof __VLS_1) => any;
|
|
9
|
-
}
|
|
10
|
-
declare const __VLS_self: import("vue").DefineComponent<DBSectionProps, {
|
|
11
|
-
cls: typeof cls;
|
|
12
|
-
_id: typeof _id;
|
|
13
|
-
_ref: typeof _ref;
|
|
14
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBSectionProps> & Readonly<{}>, {
|
|
15
|
-
children: any;
|
|
16
|
-
className: string;
|
|
17
|
-
id: string;
|
|
18
|
-
width: import("../..").MaxWidthType;
|
|
19
|
-
spacing: import("../..").SpacingType | string;
|
|
20
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
};
|
|
21
6
|
declare const __VLS_component: import("vue").DefineComponent<DBSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBSectionProps> & Readonly<{}>, {
|
|
22
7
|
children: any;
|
|
23
8
|
className: string;
|