@dpa-id-components/dpa-shared-components 0.11.1 → 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/UiFilterButton/UiFilterButton.vue.d.ts +1 -1
- package/dist/components/UiIconButton/UiIconButton.vue.d.ts +1 -1
- package/dist/components/UiInput/UiInput.vue.d.ts +1 -1
- 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
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
date: {
|
|
4
|
+
type: __PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
dateDetail: {
|
|
8
|
+
type: __PropType<string | undefined>;
|
|
9
|
+
required: false;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
title: {
|
|
13
|
+
type: __PropType<string>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
location: {
|
|
17
|
+
type: __PropType<string | null | undefined>;
|
|
18
|
+
required: false;
|
|
19
|
+
default: null;
|
|
20
|
+
};
|
|
21
|
+
noticeType: {
|
|
22
|
+
type: __PropType<{
|
|
23
|
+
iconName: "event" | "topic";
|
|
24
|
+
displayText: string;
|
|
25
|
+
}>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
comments: {
|
|
29
|
+
type: __PropType<string | null | undefined>;
|
|
30
|
+
required: false;
|
|
31
|
+
default: null;
|
|
32
|
+
};
|
|
33
|
+
truncateTitle: {
|
|
34
|
+
type: __PropType<boolean | undefined>;
|
|
35
|
+
required: false;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
view: {
|
|
39
|
+
type: __PropType<"compact" | "standard">;
|
|
40
|
+
required: true;
|
|
41
|
+
};
|
|
42
|
+
topEntry: {
|
|
43
|
+
type: __PropType<boolean | undefined>;
|
|
44
|
+
required: false;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
description: {
|
|
48
|
+
type: __PropType<string | undefined>;
|
|
49
|
+
required: false;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
+
date: {
|
|
54
|
+
type: __PropType<string>;
|
|
55
|
+
required: true;
|
|
56
|
+
};
|
|
57
|
+
dateDetail: {
|
|
58
|
+
type: __PropType<string | undefined>;
|
|
59
|
+
required: false;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
title: {
|
|
63
|
+
type: __PropType<string>;
|
|
64
|
+
required: true;
|
|
65
|
+
};
|
|
66
|
+
location: {
|
|
67
|
+
type: __PropType<string | null | undefined>;
|
|
68
|
+
required: false;
|
|
69
|
+
default: null;
|
|
70
|
+
};
|
|
71
|
+
noticeType: {
|
|
72
|
+
type: __PropType<{
|
|
73
|
+
iconName: "event" | "topic";
|
|
74
|
+
displayText: string;
|
|
75
|
+
}>;
|
|
76
|
+
required: true;
|
|
77
|
+
};
|
|
78
|
+
comments: {
|
|
79
|
+
type: __PropType<string | null | undefined>;
|
|
80
|
+
required: false;
|
|
81
|
+
default: null;
|
|
82
|
+
};
|
|
83
|
+
truncateTitle: {
|
|
84
|
+
type: __PropType<boolean | undefined>;
|
|
85
|
+
required: false;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
view: {
|
|
89
|
+
type: __PropType<"compact" | "standard">;
|
|
90
|
+
required: true;
|
|
91
|
+
};
|
|
92
|
+
topEntry: {
|
|
93
|
+
type: __PropType<boolean | undefined>;
|
|
94
|
+
required: false;
|
|
95
|
+
default: boolean;
|
|
96
|
+
};
|
|
97
|
+
description: {
|
|
98
|
+
type: __PropType<string | undefined>;
|
|
99
|
+
required: false;
|
|
100
|
+
default: string;
|
|
101
|
+
};
|
|
102
|
+
}>>, {
|
|
103
|
+
dateDetail: string | undefined;
|
|
104
|
+
location: string | null | undefined;
|
|
105
|
+
comments: string | null | undefined;
|
|
106
|
+
truncateTitle: boolean | undefined;
|
|
107
|
+
topEntry: boolean | undefined;
|
|
108
|
+
description: string | undefined;
|
|
109
|
+
}>;
|
|
110
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
date: {
|
|
4
|
+
type: __PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
dateDetail: {
|
|
8
|
+
type: __PropType<string | undefined>;
|
|
9
|
+
required: false;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
title: {
|
|
13
|
+
type: __PropType<string>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
location: {
|
|
17
|
+
type: __PropType<string | null | undefined>;
|
|
18
|
+
required: false;
|
|
19
|
+
default: null;
|
|
20
|
+
};
|
|
21
|
+
noticeType: {
|
|
22
|
+
type: __PropType<{
|
|
23
|
+
iconName: "event" | "topic";
|
|
24
|
+
displayText: string;
|
|
25
|
+
}>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
comments: {
|
|
29
|
+
type: __PropType<string | null | undefined>;
|
|
30
|
+
required: false;
|
|
31
|
+
default: null;
|
|
32
|
+
};
|
|
33
|
+
truncateTitle: {
|
|
34
|
+
type: __PropType<boolean | undefined>;
|
|
35
|
+
required: false;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
+
date: {
|
|
40
|
+
type: __PropType<string>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
dateDetail: {
|
|
44
|
+
type: __PropType<string | undefined>;
|
|
45
|
+
required: false;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
title: {
|
|
49
|
+
type: __PropType<string>;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
location: {
|
|
53
|
+
type: __PropType<string | null | undefined>;
|
|
54
|
+
required: false;
|
|
55
|
+
default: null;
|
|
56
|
+
};
|
|
57
|
+
noticeType: {
|
|
58
|
+
type: __PropType<{
|
|
59
|
+
iconName: "event" | "topic";
|
|
60
|
+
displayText: string;
|
|
61
|
+
}>;
|
|
62
|
+
required: true;
|
|
63
|
+
};
|
|
64
|
+
comments: {
|
|
65
|
+
type: __PropType<string | null | undefined>;
|
|
66
|
+
required: false;
|
|
67
|
+
default: null;
|
|
68
|
+
};
|
|
69
|
+
truncateTitle: {
|
|
70
|
+
type: __PropType<boolean | undefined>;
|
|
71
|
+
required: false;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
74
|
+
}>>, {
|
|
75
|
+
dateDetail: string | undefined;
|
|
76
|
+
location: string | null | undefined;
|
|
77
|
+
comments: string | null | undefined;
|
|
78
|
+
truncateTitle: boolean | undefined;
|
|
79
|
+
}>;
|
|
80
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
date: {
|
|
4
|
+
type: __PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
dateDetail: {
|
|
8
|
+
type: __PropType<string | undefined>;
|
|
9
|
+
required: false;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
title: {
|
|
13
|
+
type: __PropType<string>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
location: {
|
|
17
|
+
type: __PropType<string | null | undefined>;
|
|
18
|
+
required: false;
|
|
19
|
+
default: null;
|
|
20
|
+
};
|
|
21
|
+
noticeType: {
|
|
22
|
+
type: __PropType<{
|
|
23
|
+
iconName: "event" | "topic";
|
|
24
|
+
displayText: string;
|
|
25
|
+
}>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
comments: {
|
|
29
|
+
type: __PropType<string | null | undefined>;
|
|
30
|
+
required: false;
|
|
31
|
+
default: null;
|
|
32
|
+
};
|
|
33
|
+
topEntry: {
|
|
34
|
+
type: __PropType<boolean | undefined>;
|
|
35
|
+
required: false;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
description: {
|
|
39
|
+
type: __PropType<string | undefined>;
|
|
40
|
+
required: false;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
date: {
|
|
45
|
+
type: __PropType<string>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
dateDetail: {
|
|
49
|
+
type: __PropType<string | undefined>;
|
|
50
|
+
required: false;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
title: {
|
|
54
|
+
type: __PropType<string>;
|
|
55
|
+
required: true;
|
|
56
|
+
};
|
|
57
|
+
location: {
|
|
58
|
+
type: __PropType<string | null | undefined>;
|
|
59
|
+
required: false;
|
|
60
|
+
default: null;
|
|
61
|
+
};
|
|
62
|
+
noticeType: {
|
|
63
|
+
type: __PropType<{
|
|
64
|
+
iconName: "event" | "topic";
|
|
65
|
+
displayText: string;
|
|
66
|
+
}>;
|
|
67
|
+
required: true;
|
|
68
|
+
};
|
|
69
|
+
comments: {
|
|
70
|
+
type: __PropType<string | null | undefined>;
|
|
71
|
+
required: false;
|
|
72
|
+
default: null;
|
|
73
|
+
};
|
|
74
|
+
topEntry: {
|
|
75
|
+
type: __PropType<boolean | undefined>;
|
|
76
|
+
required: false;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
description: {
|
|
80
|
+
type: __PropType<string | undefined>;
|
|
81
|
+
required: false;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
}>>, {
|
|
85
|
+
dateDetail: string | undefined;
|
|
86
|
+
location: string | null | undefined;
|
|
87
|
+
comments: string | null | undefined;
|
|
88
|
+
topEntry: boolean | undefined;
|
|
89
|
+
description: string | undefined;
|
|
90
|
+
}>;
|
|
91
|
+
export default _sfc_main;
|
|
@@ -64,8 +64,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
64
64
|
}>> & {
|
|
65
65
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
66
66
|
}, {
|
|
67
|
-
disabled: boolean | undefined;
|
|
68
67
|
title: string | undefined;
|
|
68
|
+
disabled: boolean | undefined;
|
|
69
69
|
variant: "blue-rounded" | "white-rounded" | "blank" | "blue-blank" | undefined;
|
|
70
70
|
chevronIcon: string | undefined;
|
|
71
71
|
rotateIcon: boolean | undefined;
|
|
@@ -64,10 +64,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
64
64
|
}>> & {
|
|
65
65
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
66
66
|
}, {
|
|
67
|
+
title: string;
|
|
67
68
|
iconName: string;
|
|
68
69
|
size: "small" | "medium" | "large" | "xl";
|
|
69
70
|
disabled: boolean | undefined;
|
|
70
|
-
title: string;
|
|
71
71
|
backgroundColor: "blue" | "none";
|
|
72
72
|
iconColor: "blue" | "white" | "gray";
|
|
73
73
|
}>;
|
|
@@ -179,10 +179,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
179
179
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
180
180
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
181
181
|
}, {
|
|
182
|
+
type: "number" | "text" | "time" | undefined;
|
|
182
183
|
label: string | undefined;
|
|
183
184
|
placeholder: string | undefined;
|
|
184
185
|
value: string | undefined;
|
|
185
|
-
type: "number" | "text" | "time" | undefined;
|
|
186
186
|
disabled: boolean | undefined;
|
|
187
187
|
errorMessage: string | undefined;
|
|
188
188
|
autofocus: boolean | undefined;
|
|
@@ -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'
|