@dpa-id-components/dpa-shared-components 0.11.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/DpaEventItem/DpaEventItem.vue.d.ts +110 -0
- package/dist/components/DpaEventItem/DpaEventItemCompact.vue.d.ts +80 -0
- package/dist/components/DpaEventItem/DpaEventItemStandard.vue.d.ts +91 -0
- package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +14 -472
- package/dist/components/UiBadge/UiBadge.vue.d.ts +20 -22
- package/dist/components/UiButton/UiButton.vue.d.ts +20 -65
- package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +20 -24
- package/dist/components/UiChip/UiChip.vue.d.ts +11 -13
- package/dist/components/UiDialog/UiDialog.vue.d.ts +20 -23
- package/dist/components/UiFilterBadge/UiFilterBadge.vue.d.ts +14 -53
- package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +20 -76
- package/dist/components/UiIcon/UiIcon.vue.d.ts +10 -14
- package/dist/components/UiIconButton/UiIconButton.vue.d.ts +19 -90
- package/dist/components/UiInfoContent/UiInfoContent.vue.d.ts +8 -49
- package/dist/components/UiInput/UiInput.vue.d.ts +52 -68
- package/dist/components/UiListItem/UiListItem.vue.d.ts +25 -145
- package/dist/components/UiMenu/UiMenu.vue.d.ts +30 -378
- package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +7 -11
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +26 -29
- package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +17 -175
- package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +13 -169
- package/dist/components/UiSection/UiSection.vue.d.ts +14 -18
- package/dist/components/UiSectionDivider/UiSectionDivider.vue.d.ts +8 -11
- package/dist/components/UiSkeletonBox/UiSkeletonBox.vue.d.ts +11 -13
- package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +11 -52
- package/dist/components/UiSpinner/UiSpinner.vue.d.ts +8 -49
- package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +14 -18
- package/dist/components/index.d.ts +2 -1
- package/dist/dpa-shared-components.d.ts +1 -52
- package/dist/dpa-shared-components.mjs +1715 -1501
- package/dist/dpa-shared-components.umd.js +3 -3
- package/package.json +1 -1
- package/dist/shims-vue.d.ts +0 -6
|
@@ -1,74 +1,33 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
1
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
3
|
isShown: {
|
|
3
|
-
type:
|
|
4
|
+
type: __PropType<boolean | undefined>;
|
|
4
5
|
required: false;
|
|
5
6
|
default: boolean;
|
|
6
7
|
};
|
|
7
8
|
position: {
|
|
8
|
-
type:
|
|
9
|
+
type: __PropType<"left" | "right" | undefined>;
|
|
9
10
|
required: false;
|
|
10
11
|
default: string;
|
|
11
12
|
};
|
|
12
13
|
iconName: {
|
|
13
|
-
type: null
|
|
14
|
+
type: __PropType<string | null | undefined>;
|
|
14
15
|
required: false;
|
|
15
16
|
default: null;
|
|
16
17
|
};
|
|
17
|
-
}, {
|
|
18
|
-
emits: (event: "input" | "action-click", ...args: any[]) => void;
|
|
19
|
-
props: any;
|
|
20
|
-
UiIcon: import("vue").DefineComponent<{
|
|
21
|
-
name: {
|
|
22
|
-
type: null;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
size: {
|
|
26
|
-
type: StringConstructor;
|
|
27
|
-
required: false;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
sizeClasses: {
|
|
31
|
-
type: StringConstructor;
|
|
32
|
-
required: false;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
}, {
|
|
36
|
-
props: any;
|
|
37
|
-
dynamicSvg: import("vue").Ref<null>;
|
|
38
|
-
importSvg: (name: string) => Promise<any>;
|
|
39
|
-
sizeClass: import("vue").ComputedRef<string>;
|
|
40
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
-
name: {
|
|
42
|
-
type: null;
|
|
43
|
-
required: true;
|
|
44
|
-
};
|
|
45
|
-
size: {
|
|
46
|
-
type: StringConstructor;
|
|
47
|
-
required: false;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
sizeClasses: {
|
|
51
|
-
type: StringConstructor;
|
|
52
|
-
required: false;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
}>>, {
|
|
56
|
-
size: string;
|
|
57
|
-
sizeClasses: string;
|
|
58
|
-
}>;
|
|
59
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "action-click")[], "input" | "action-click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "action-click")[], "input" | "action-click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
60
19
|
isShown: {
|
|
61
|
-
type:
|
|
20
|
+
type: __PropType<boolean | undefined>;
|
|
62
21
|
required: false;
|
|
63
22
|
default: boolean;
|
|
64
23
|
};
|
|
65
24
|
position: {
|
|
66
|
-
type:
|
|
25
|
+
type: __PropType<"left" | "right" | undefined>;
|
|
67
26
|
required: false;
|
|
68
27
|
default: string;
|
|
69
28
|
};
|
|
70
29
|
iconName: {
|
|
71
|
-
type: null
|
|
30
|
+
type: __PropType<string | null | undefined>;
|
|
72
31
|
required: false;
|
|
73
32
|
default: null;
|
|
74
33
|
};
|
|
@@ -76,8 +35,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
76
35
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
77
36
|
"onAction-click"?: ((...args: any[]) => any) | undefined;
|
|
78
37
|
}, {
|
|
79
|
-
iconName:
|
|
80
|
-
isShown: boolean;
|
|
81
|
-
position:
|
|
38
|
+
iconName: string | null | undefined;
|
|
39
|
+
isShown: boolean | undefined;
|
|
40
|
+
position: "left" | "right" | undefined;
|
|
82
41
|
}>;
|
|
83
42
|
export default _sfc_main;
|
|
@@ -1,69 +1,28 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
1
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
3
|
color: {
|
|
3
|
-
type:
|
|
4
|
+
type: __PropType<"blue" | "white" | "green" | undefined>;
|
|
4
5
|
required: false;
|
|
5
6
|
default: string;
|
|
6
7
|
};
|
|
7
8
|
variant: {
|
|
8
|
-
type:
|
|
9
|
+
type: __PropType<"spinner" | "bubbles" | undefined>;
|
|
9
10
|
required: false;
|
|
10
11
|
default: string;
|
|
11
12
|
};
|
|
12
|
-
}, {
|
|
13
|
-
props: any;
|
|
14
|
-
colorClass: import("vue").ComputedRef<string>;
|
|
15
|
-
UiIcon: import("vue").DefineComponent<{
|
|
16
|
-
name: {
|
|
17
|
-
type: null;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
size: {
|
|
21
|
-
type: StringConstructor;
|
|
22
|
-
required: false;
|
|
23
|
-
default: string;
|
|
24
|
-
};
|
|
25
|
-
sizeClasses: {
|
|
26
|
-
type: StringConstructor;
|
|
27
|
-
required: false;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
}, {
|
|
31
|
-
props: any;
|
|
32
|
-
dynamicSvg: import("vue").Ref<null>;
|
|
33
|
-
importSvg: (name: string) => Promise<any>;
|
|
34
|
-
sizeClass: import("vue").ComputedRef<string>;
|
|
35
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
-
name: {
|
|
37
|
-
type: null;
|
|
38
|
-
required: true;
|
|
39
|
-
};
|
|
40
|
-
size: {
|
|
41
|
-
type: StringConstructor;
|
|
42
|
-
required: false;
|
|
43
|
-
default: string;
|
|
44
|
-
};
|
|
45
|
-
sizeClasses: {
|
|
46
|
-
type: StringConstructor;
|
|
47
|
-
required: false;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
}>>, {
|
|
51
|
-
size: string;
|
|
52
|
-
sizeClasses: string;
|
|
53
|
-
}>;
|
|
54
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
14
|
color: {
|
|
56
|
-
type:
|
|
15
|
+
type: __PropType<"blue" | "white" | "green" | undefined>;
|
|
57
16
|
required: false;
|
|
58
17
|
default: string;
|
|
59
18
|
};
|
|
60
19
|
variant: {
|
|
61
|
-
type:
|
|
20
|
+
type: __PropType<"spinner" | "bubbles" | undefined>;
|
|
62
21
|
required: false;
|
|
63
22
|
default: string;
|
|
64
23
|
};
|
|
65
24
|
}>>, {
|
|
66
|
-
color:
|
|
67
|
-
variant:
|
|
25
|
+
color: "blue" | "white" | "green" | undefined;
|
|
26
|
+
variant: "spinner" | "bubbles" | undefined;
|
|
68
27
|
}>;
|
|
69
28
|
export default _sfc_main;
|
|
@@ -1,56 +1,52 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
1
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
3
|
isChecked: {
|
|
3
|
-
type:
|
|
4
|
+
type: __PropType<boolean | undefined>;
|
|
4
5
|
required: false;
|
|
5
6
|
default: boolean;
|
|
6
7
|
};
|
|
7
8
|
disabled: {
|
|
8
|
-
type:
|
|
9
|
+
type: __PropType<boolean | undefined>;
|
|
9
10
|
required: false;
|
|
10
11
|
default: boolean;
|
|
11
12
|
};
|
|
12
13
|
labelText: {
|
|
13
|
-
type:
|
|
14
|
+
type: __PropType<string | undefined>;
|
|
14
15
|
required: false;
|
|
15
16
|
default: string;
|
|
16
17
|
};
|
|
17
18
|
labelSpace: {
|
|
18
|
-
type:
|
|
19
|
+
type: __PropType<"default" | "xl" | undefined>;
|
|
19
20
|
required: false;
|
|
20
21
|
default: string;
|
|
21
22
|
};
|
|
22
|
-
}, {
|
|
23
|
-
emit: (event: "change", checked: boolean) => void;
|
|
24
|
-
props: any;
|
|
25
|
-
labelSpaceClass: import("vue").ComputedRef<"mr-3" | "mr-12">;
|
|
26
|
-
handleChange: (event: Event) => void;
|
|
27
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
24
|
isChecked: {
|
|
29
|
-
type:
|
|
25
|
+
type: __PropType<boolean | undefined>;
|
|
30
26
|
required: false;
|
|
31
27
|
default: boolean;
|
|
32
28
|
};
|
|
33
29
|
disabled: {
|
|
34
|
-
type:
|
|
30
|
+
type: __PropType<boolean | undefined>;
|
|
35
31
|
required: false;
|
|
36
32
|
default: boolean;
|
|
37
33
|
};
|
|
38
34
|
labelText: {
|
|
39
|
-
type:
|
|
35
|
+
type: __PropType<string | undefined>;
|
|
40
36
|
required: false;
|
|
41
37
|
default: string;
|
|
42
38
|
};
|
|
43
39
|
labelSpace: {
|
|
44
|
-
type:
|
|
40
|
+
type: __PropType<"default" | "xl" | undefined>;
|
|
45
41
|
required: false;
|
|
46
42
|
default: string;
|
|
47
43
|
};
|
|
48
44
|
}>> & {
|
|
49
45
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
50
46
|
}, {
|
|
51
|
-
disabled: boolean;
|
|
52
|
-
isChecked: boolean;
|
|
53
|
-
labelText: string;
|
|
54
|
-
labelSpace:
|
|
47
|
+
disabled: boolean | undefined;
|
|
48
|
+
isChecked: boolean | undefined;
|
|
49
|
+
labelText: string | undefined;
|
|
50
|
+
labelSpace: "default" | "xl" | undefined;
|
|
55
51
|
}>;
|
|
56
52
|
export default _sfc_main;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import DpaEventItem from "./DpaEventItem/DpaEventItem.vue";
|
|
1
2
|
import UiAutocomplete from "./UiAutocomplete/UiAutocomplete.vue";
|
|
2
3
|
import UiBadge from "./UiBadge/UiBadge.vue";
|
|
3
4
|
import UiButton from "./UiButton/UiButton.vue";
|
|
@@ -26,4 +27,4 @@ import UiSnackbar from "./UiSnackbar/UiSnackbar.vue";
|
|
|
26
27
|
import UiToggleButton from "./UiToggleButton/UiToggleButton.vue";
|
|
27
28
|
import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
|
|
28
29
|
import UiSearchBar from "./UiSearchBar/UiSearchBar.vue";
|
|
29
|
-
export { UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiChip, UiDialog, UiFilterBadge, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiRadioInputGroup, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, UiSearchInput, UiSearchBar, };
|
|
30
|
+
export { DpaEventItem, UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiChip, UiDialog, UiFilterBadge, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiRadioInputGroup, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, UiSearchInput, UiSearchBar, };
|
|
@@ -1,52 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import type { ComponentCustomProps } from 'vue';
|
|
3
|
-
import type { ComponentOptionsMixin } from 'vue';
|
|
4
|
-
import type { DefineComponent } from 'vue';
|
|
5
|
-
import type { ExtractPropTypes } from 'vue';
|
|
6
|
-
import type { VNodeProps } from 'vue';
|
|
7
|
-
|
|
8
|
-
export declare const UiAutocomplete: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
9
|
-
|
|
10
|
-
export declare const UiBadge: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
11
|
-
|
|
12
|
-
export declare const UiButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
13
|
-
|
|
14
|
-
export declare const UiCard: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
15
|
-
|
|
16
|
-
export declare const UiCheckbox: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
17
|
-
|
|
18
|
-
export declare const UiChip: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
19
|
-
|
|
20
|
-
export declare const UiDialog: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
21
|
-
|
|
22
|
-
export declare const UiFilterBadge: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
23
|
-
|
|
24
|
-
export declare const UiFilterButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
25
|
-
|
|
26
|
-
export declare const UiIcon: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
27
|
-
|
|
28
|
-
export declare const UiIconButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
29
|
-
|
|
30
|
-
export declare const UiInfoContent: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
31
|
-
|
|
32
|
-
export declare const UiInput: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
33
|
-
|
|
34
|
-
export declare const UiList: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
35
|
-
|
|
36
|
-
export declare const UiListItem: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
37
|
-
|
|
38
|
-
export declare const UiOverlay: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
39
|
-
|
|
40
|
-
export declare const UiOverlayMenu: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
41
|
-
|
|
42
|
-
export declare const UiSearchInput: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
43
|
-
|
|
44
|
-
export declare const UiSection: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
45
|
-
|
|
46
|
-
export declare const UiSkeletonBox: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
47
|
-
|
|
48
|
-
export declare const UiSpinner: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
49
|
-
|
|
50
|
-
export declare const UiToggleButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
51
|
-
|
|
52
|
-
export { }
|
|
1
|
+
export * from './index'
|