@dolanske/vui 1.0.4 → 1.1.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/LICENSE +673 -673
- package/README.md +42 -42
- package/dist/components/Accordion/Accordion.vue.d.ts +3 -2
- package/dist/components/Accordion/AccordionGroup.vue.d.ts +5 -2
- package/dist/components/Alert/Alert.vue.d.ts +3 -2
- package/dist/components/Avatar/Avatar.vue.d.ts +3 -2
- package/dist/components/Badge/Badge.vue.d.ts +3 -2
- package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +3 -2
- package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +3 -2
- package/dist/components/Button/Button.vue.d.ts +3 -2
- package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +3 -2
- package/dist/components/Calendar/Calendar.vue.d.ts +6 -6
- package/dist/components/Card/Card.vue.d.ts +4 -3
- package/dist/components/Checkbox/Checkbox.vue.d.ts +7 -6
- package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +2 -1
- package/dist/components/Divider/Divider.vue.d.ts +3 -2
- package/dist/components/Drawer/Drawer.vue.d.ts +10 -9
- package/dist/components/Dropdown/Dropdown.vue.d.ts +66 -3
- package/dist/components/Dropdown/DropdownItem.vue.d.ts +3 -2
- package/dist/components/Dropdown/DropdownTitle.vue.d.ts +6 -6
- package/dist/components/Flex/Flex.vue.d.ts +13 -12
- package/dist/components/Grid/Grid.vue.d.ts +7 -6
- package/dist/components/Input/Color.vue.d.ts +5 -5
- package/dist/components/Input/Counter.vue.d.ts +5 -5
- package/dist/components/Input/Dropzone.vue.d.ts +95 -10
- package/dist/components/Input/File.vue.d.ts +4 -3
- package/dist/components/Input/Input.vue.d.ts +7 -6
- package/dist/components/Input/Password.vue.d.ts +1 -1
- package/dist/components/Input/Textarea.vue.d.ts +7 -6
- package/dist/components/Kbd/Kbd.vue.d.ts +1 -1
- package/dist/components/Kbd/KbdGroup.vue.d.ts +2 -1
- package/dist/components/Modal/Confirm.vue.d.ts +7 -9
- package/dist/components/Modal/Modal.vue.d.ts +16 -13
- package/dist/components/OTP/OTP.vue.d.ts +7 -6
- package/dist/components/OTP/OTPItem.vue.d.ts +1 -1
- package/dist/components/Pagination/Pagination.vue.d.ts +3 -2
- package/dist/components/Popout/Popout.vue.d.ts +3 -2
- package/dist/components/Progress/Progress.vue.d.ts +5 -5
- package/dist/components/Radio/Radio.vue.d.ts +7 -6
- package/dist/components/Radio/RadioGroup.vue.d.ts +7 -6
- package/dist/components/Select/Select.vue.d.ts +4 -8
- package/dist/components/Sheet/Sheet.vue.d.ts +22 -13
- package/dist/components/Sidebar/Sidebar.vue.d.ts +7 -6
- package/dist/components/Skeleton/Skeleton.vue.d.ts +1 -1
- package/dist/components/Spinner/Spinner.vue.d.ts +1 -1
- package/dist/components/Switch/Switch.vue.d.ts +7 -6
- package/dist/components/Table/Cell.vue.d.ts +5 -2
- package/dist/components/Table/Head.vue.d.ts +3 -2
- package/dist/components/Table/Root.vue.d.ts +3 -2
- package/dist/components/Table/table.d.ts +2 -2
- package/dist/components/Tabs/Tab.vue.d.ts +3 -2
- package/dist/components/Tabs/Tabs.vue.d.ts +7 -6
- package/dist/components/Toast/toast.d.ts +6 -6
- package/dist/components/Tooltip/Tooltip.vue.d.ts +2 -1
- package/dist/internal/Backdrop/Backdrop.vue.d.ts +3 -2
- package/dist/vui.css +1 -0
- package/dist/vui.js +8090 -7884
- package/package.json +73 -72
- package/src/App.vue +95 -95
- package/src/components/Accordion/Accordion.vue +91 -91
- package/src/components/Accordion/AccordionGroup.vue +43 -43
- package/src/components/Accordion/accordion.scss +82 -82
- package/src/components/Alert/Alert.vue +59 -59
- package/src/components/Alert/alert.scss +161 -161
- package/src/components/Avatar/Avatar.vue +53 -53
- package/src/components/Avatar/avatar.scss +52 -52
- package/src/components/Badge/Badge.vue +21 -21
- package/src/components/Badge/badge.scss +210 -206
- package/src/components/Breadcrumbs/BreadcrumbItem.vue +26 -26
- package/src/components/Breadcrumbs/Breadcrumbs.vue +30 -30
- package/src/components/Breadcrumbs/breadcrumbs.scss +31 -31
- package/src/components/Button/Button.vue +85 -85
- package/src/components/Button/button.scss +279 -279
- package/src/components/ButtonGroup/ButtonGroup.vue +28 -28
- package/src/components/ButtonGroup/button-group.scss +51 -51
- package/src/components/Calendar/Calendar.vue +66 -66
- package/src/components/Calendar/calendar.scss +83 -83
- package/src/components/Card/Card.vue +48 -48
- package/src/components/Card/card.scss +53 -53
- package/src/components/Checkbox/Checkbox.vue +54 -54
- package/src/components/Checkbox/checkbox.scss +80 -80
- package/src/components/CopyClipboard/CopyClipboard.vue +91 -91
- package/src/components/CopyClipboard/copy-clipboard.scss +25 -25
- package/src/components/Divider/Divider.vue +44 -44
- package/src/components/Divider/divider.scss +35 -35
- package/src/components/Drawer/Drawer.vue +102 -97
- package/src/components/Drawer/drawer.scss +37 -37
- package/src/components/Dropdown/Dropdown.vue +135 -135
- package/src/components/Dropdown/DropdownItem.vue +33 -33
- package/src/components/Dropdown/DropdownTitle.vue +14 -14
- package/src/components/Dropdown/dropdown-item.scss +84 -84
- package/src/components/Dropdown/dropdown.scss +53 -53
- package/src/components/Flex/Flex.vue +113 -113
- package/src/components/Grid/Grid.vue +79 -80
- package/src/components/Input/Color.vue +26 -26
- package/src/components/Input/Counter.vue +66 -66
- package/src/components/Input/Dropzone.vue +65 -65
- package/src/components/Input/File.vue +15 -15
- package/src/components/Input/Input.vue +123 -123
- package/src/components/Input/Password.vue +35 -35
- package/src/components/Input/Textarea.vue +78 -78
- package/src/components/Input/input.scss +302 -302
- package/src/components/Kbd/Kbd.vue +48 -48
- package/src/components/Kbd/KbdGroup.vue +27 -27
- package/src/components/Kbd/kbd.scss +19 -19
- package/src/components/Modal/Confirm.vue +56 -56
- package/src/components/Modal/Modal.vue +103 -99
- package/src/components/Modal/modal.scss +54 -54
- package/src/components/OTP/OTP.vue +133 -133
- package/src/components/OTP/OTPItem.vue +37 -37
- package/src/components/OTP/otp.scss +84 -84
- package/src/components/Pagination/Pagination.vue +77 -77
- package/src/components/Pagination/pagination.ts +78 -78
- package/src/components/Popout/Popout.vue +52 -52
- package/src/components/Popout/popout.scss +15 -15
- package/src/components/Progress/Progress.vue +103 -103
- package/src/components/Progress/progress.scss +47 -47
- package/src/components/Radio/Radio.vue +38 -38
- package/src/components/Radio/RadioGroup.vue +40 -40
- package/src/components/Radio/radio.scss +78 -78
- package/src/components/Select/Select.vue +211 -211
- package/src/components/Select/select.scss +77 -77
- package/src/components/Sheet/Sheet.vue +108 -98
- package/src/components/Sheet/sheet.scss +69 -69
- package/src/components/Sidebar/Sidebar.vue +115 -115
- package/src/components/Sidebar/sidebar.scss +124 -124
- package/src/components/Skeleton/Skeleton.vue +43 -43
- package/src/components/Skeleton/skeleton.scss +14 -14
- package/src/components/Spinner/Spinner.vue +42 -42
- package/src/components/Spinner/spinner.scss +47 -47
- package/src/components/Switch/Switch.vue +31 -31
- package/src/components/Switch/switch.scss +93 -93
- package/src/components/Table/Cell.vue +23 -23
- package/src/components/Table/Head.vue +59 -59
- package/src/components/Table/Root.vue +66 -66
- package/src/components/Table/SelectAll.vue +23 -23
- package/src/components/Table/SelectRow.vue +30 -30
- package/src/components/Table/index.ts +7 -7
- package/src/components/Table/table.scss +154 -154
- package/src/components/Table/table.ts +248 -248
- package/src/components/Tabs/Tab.vue +25 -25
- package/src/components/Tabs/Tabs.vue +90 -90
- package/src/components/Tabs/tabs.scss +87 -87
- package/src/components/Toast/Toasts.vue +52 -52
- package/src/components/Toast/toast.scss +45 -45
- package/src/components/Toast/toast.ts +75 -75
- package/src/components/Tooltip/Tooltip.vue +86 -86
- package/src/components/Tooltip/tooltip.scss +8 -8
- package/src/examples/ExampleAccordions.vue +58 -58
- package/src/examples/ExampleAlerts.vue +78 -78
- package/src/examples/ExampleAvatars.vue +44 -44
- package/src/examples/ExampleBadges.vue +48 -48
- package/src/examples/ExampleBreadcrumbs.vue +46 -46
- package/src/examples/ExampleButtons.vue +140 -140
- package/src/examples/ExampleCalendars.vue +40 -40
- package/src/examples/ExampleCards.vue +94 -94
- package/src/examples/ExampleCheckboxes.vue +123 -123
- package/src/examples/ExampleCopyClipboard.vue +47 -47
- package/src/examples/ExampleDividers.vue +39 -39
- package/src/examples/ExampleDrawers.vue +67 -67
- package/src/examples/ExampleDropdowns.vue +114 -114
- package/src/examples/ExampleFlexGrid.vue +124 -122
- package/src/examples/ExampleInputs.vue +234 -234
- package/src/examples/ExampleKBD.vue +65 -65
- package/src/examples/ExampleModals.vue +143 -143
- package/src/examples/ExamplePalette.vue +159 -159
- package/src/examples/ExamplePopouts.vue +41 -41
- package/src/examples/ExampleSheets.vue +77 -77
- package/src/examples/ExampleSidebars.vue +270 -270
- package/src/examples/ExampleSkeletons.vue +26 -26
- package/src/examples/ExampleSpinners.vue +80 -78
- package/src/examples/ExampleTables.vue +195 -195
- package/src/examples/ExampleTabs.vue +119 -119
- package/src/examples/ExampleToasts.vue +96 -96
- package/src/examples/ExampleTooltips.vue +70 -70
- package/src/examples/shared/ExampleColor.vue +28 -28
- package/src/index.ts +116 -116
- package/src/internal/Backdrop/Backdrop.vue +22 -22
- package/src/internal/Backdrop/backdrop.scss +34 -34
- package/src/main.ts +5 -5
- package/src/shared/helpers.ts +117 -117
- package/src/shared/theme.ts +22 -22
- package/src/shared/types.ts +29 -29
- package/src/style/animation.scss +22 -22
- package/src/style/core.scss +119 -125
- package/src/style/layout.scss +207 -233
- package/src/style/media-query.scss +29 -29
- package/src/style/reset.scss +135 -135
- package/src/style/text.scss +137 -124
- package/src/style/theme.scss +195 -195
- package/src/style/tooltip.scss +146 -146
- package/src/style/typography.scss +415 -415
- package/src/style/utils.scss +36 -36
- package/src/style.scss +1 -1
- package/dist/style.css +0 -1
|
@@ -7,22 +7,23 @@ interface Props {
|
|
|
7
7
|
gap?: Space | number;
|
|
8
8
|
rows?: number | string;
|
|
9
9
|
columns?: number | string;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
yCenter?: boolean;
|
|
11
|
+
yStart?: boolean;
|
|
12
|
+
yEnd?: boolean;
|
|
13
|
+
yBaseline?: boolean;
|
|
14
14
|
}
|
|
15
15
|
declare function __VLS_template(): {
|
|
16
|
+
attrs: Partial<{}>;
|
|
16
17
|
slots: {
|
|
17
18
|
default?(_: {}): any;
|
|
18
19
|
};
|
|
19
20
|
refs: {};
|
|
20
|
-
|
|
21
|
+
rootEl: HTMLDivElement;
|
|
21
22
|
};
|
|
22
23
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
24
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
24
25
|
gap: Space | number;
|
|
25
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
27
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
28
|
export default _default;
|
|
28
29
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { InputProps } from './Input.vue';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = InputProps;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: string;
|
|
5
|
-
} &
|
|
5
|
+
} & __VLS_Props;
|
|
6
6
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (
|
|
7
|
+
"update:modelValue": (value: string) => any;
|
|
8
8
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((
|
|
10
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
9
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
11
11
|
export default _default;
|
|
@@ -7,13 +7,13 @@ type Props = Omit<InputProps, 'type'> & {
|
|
|
7
7
|
decrementEnabled?: boolean;
|
|
8
8
|
hideDecrement?: boolean;
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
type __VLS_Props = Props;
|
|
11
11
|
type __VLS_PublicProps = {
|
|
12
12
|
modelValue?: number;
|
|
13
|
-
} &
|
|
13
|
+
} & __VLS_Props;
|
|
14
14
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
-
"update:modelValue": (
|
|
15
|
+
"update:modelValue": (value: number) => any;
|
|
16
16
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
-
"onUpdate:modelValue"?: ((
|
|
18
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
17
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
19
19
|
export default _default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { InputProps } from './Input.vue';
|
|
2
2
|
type Props = Omit<InputProps, 'type' | 'modelValue' | 'focus' | 'limit' | 'placeholder'>;
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
4
5
|
slots: {
|
|
5
6
|
default?(_: {
|
|
6
7
|
dragging: boolean;
|
|
@@ -11,11 +12,11 @@ declare function __VLS_template(): {
|
|
|
11
12
|
$: import('vue').ComponentInternalInstance;
|
|
12
13
|
$data: {};
|
|
13
14
|
$props: {
|
|
14
|
-
readonly modelValue?:
|
|
15
|
+
readonly modelValue?: string | number | undefined;
|
|
15
16
|
readonly type?: import('./Input.vue').InputType | undefined;
|
|
16
17
|
readonly label?: string | undefined;
|
|
17
18
|
readonly hint?: string | undefined;
|
|
18
|
-
readonly limit?:
|
|
19
|
+
readonly limit?: number | string | undefined;
|
|
19
20
|
readonly expand?: boolean | undefined;
|
|
20
21
|
readonly placeholder?: string | undefined;
|
|
21
22
|
readonly required?: boolean | undefined;
|
|
@@ -27,7 +28,7 @@ declare function __VLS_template(): {
|
|
|
27
28
|
readonly min?: number | undefined;
|
|
28
29
|
readonly max?: number | undefined;
|
|
29
30
|
readonly disabled?: boolean | undefined;
|
|
30
|
-
readonly "onUpdate:modelValue"?: ((
|
|
31
|
+
readonly "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
31
32
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
32
33
|
$attrs: {
|
|
33
34
|
[x: string]: unknown;
|
|
@@ -43,16 +44,16 @@ declare function __VLS_template(): {
|
|
|
43
44
|
$root: import('vue').ComponentPublicInstance | null;
|
|
44
45
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
45
46
|
$host: Element | null;
|
|
46
|
-
$emit: (event: "update:modelValue",
|
|
47
|
-
$el:
|
|
47
|
+
$emit: (event: "update:modelValue", value: string | number) => void;
|
|
48
|
+
$el: HTMLDivElement;
|
|
48
49
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
49
50
|
modelValue?: string | number;
|
|
50
51
|
} & InputProps> & Readonly<{
|
|
51
|
-
"onUpdate:modelValue"?: ((
|
|
52
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
52
53
|
}>, {
|
|
53
54
|
focus: () => void;
|
|
54
55
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
55
|
-
"update:modelValue": (
|
|
56
|
+
"update:modelValue": (value: string | number) => any;
|
|
56
57
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
57
58
|
beforeCreate?: (() => void) | (() => void)[];
|
|
58
59
|
created?: (() => void) | (() => void)[];
|
|
@@ -76,7 +77,7 @@ declare function __VLS_template(): {
|
|
|
76
77
|
} & Readonly<{}> & Omit<Readonly<{
|
|
77
78
|
modelValue?: string | number;
|
|
78
79
|
} & InputProps> & Readonly<{
|
|
79
|
-
"onUpdate:modelValue"?: ((
|
|
80
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
80
81
|
}>, "focus"> & import('vue').ShallowUnwrapRef<{
|
|
81
82
|
focus: () => void;
|
|
82
83
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -91,14 +92,98 @@ declare function __VLS_template(): {
|
|
|
91
92
|
};
|
|
92
93
|
}) | null;
|
|
93
94
|
};
|
|
94
|
-
|
|
95
|
+
rootEl: HTMLDivElement;
|
|
95
96
|
};
|
|
96
97
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
97
98
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
98
99
|
files: (args_0: FileList) => any;
|
|
99
100
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
100
101
|
onFiles?: ((args_0: FileList) => any) | undefined;
|
|
101
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
102
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
103
|
+
dropzone: ({
|
|
104
|
+
$: import('vue').ComponentInternalInstance;
|
|
105
|
+
$data: {};
|
|
106
|
+
$props: {
|
|
107
|
+
readonly modelValue?: string | number | undefined;
|
|
108
|
+
readonly type?: import('./Input.vue').InputType | undefined;
|
|
109
|
+
readonly label?: string | undefined;
|
|
110
|
+
readonly hint?: string | undefined;
|
|
111
|
+
readonly limit?: number | string | undefined;
|
|
112
|
+
readonly expand?: boolean | undefined;
|
|
113
|
+
readonly placeholder?: string | undefined;
|
|
114
|
+
readonly required?: boolean | undefined;
|
|
115
|
+
readonly readonly?: boolean | undefined;
|
|
116
|
+
readonly focus?: boolean | undefined;
|
|
117
|
+
readonly errors?: string[] | undefined;
|
|
118
|
+
readonly accept?: string | undefined;
|
|
119
|
+
readonly multiple?: boolean | undefined;
|
|
120
|
+
readonly min?: number | undefined;
|
|
121
|
+
readonly max?: number | undefined;
|
|
122
|
+
readonly disabled?: boolean | undefined;
|
|
123
|
+
readonly "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
124
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
125
|
+
$attrs: {
|
|
126
|
+
[x: string]: unknown;
|
|
127
|
+
};
|
|
128
|
+
$refs: {
|
|
129
|
+
[x: string]: unknown;
|
|
130
|
+
} & {
|
|
131
|
+
input: HTMLInputElement;
|
|
132
|
+
};
|
|
133
|
+
$slots: Readonly<{
|
|
134
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
135
|
+
}>;
|
|
136
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
137
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
138
|
+
$host: Element | null;
|
|
139
|
+
$emit: (event: "update:modelValue", value: string | number) => void;
|
|
140
|
+
$el: HTMLDivElement;
|
|
141
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
142
|
+
modelValue?: string | number;
|
|
143
|
+
} & InputProps> & Readonly<{
|
|
144
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
145
|
+
}>, {
|
|
146
|
+
focus: () => void;
|
|
147
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
148
|
+
"update:modelValue": (value: string | number) => any;
|
|
149
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
150
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
151
|
+
created?: (() => void) | (() => void)[];
|
|
152
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
153
|
+
mounted?: (() => void) | (() => void)[];
|
|
154
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
155
|
+
updated?: (() => void) | (() => void)[];
|
|
156
|
+
activated?: (() => void) | (() => void)[];
|
|
157
|
+
deactivated?: (() => void) | (() => void)[];
|
|
158
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
159
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
160
|
+
destroyed?: (() => void) | (() => void)[];
|
|
161
|
+
unmounted?: (() => void) | (() => void)[];
|
|
162
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
163
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
164
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
165
|
+
};
|
|
166
|
+
$forceUpdate: () => void;
|
|
167
|
+
$nextTick: typeof import('vue').nextTick;
|
|
168
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
169
|
+
} & Readonly<{}> & Omit<Readonly<{
|
|
170
|
+
modelValue?: string | number;
|
|
171
|
+
} & InputProps> & Readonly<{
|
|
172
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
173
|
+
}>, "focus"> & import('vue').ShallowUnwrapRef<{
|
|
174
|
+
focus: () => void;
|
|
175
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
176
|
+
$slots: {
|
|
177
|
+
before?(_: {}): any;
|
|
178
|
+
start?(_: {}): any;
|
|
179
|
+
__internal_replace_input?(_: {
|
|
180
|
+
inputId: string;
|
|
181
|
+
}): any;
|
|
182
|
+
end?(_: {}): any;
|
|
183
|
+
after?(_: {}): any;
|
|
184
|
+
};
|
|
185
|
+
}) | null;
|
|
186
|
+
}, HTMLDivElement>;
|
|
102
187
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
103
188
|
export default _default;
|
|
104
189
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { InputProps } from './Input.vue';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = Omit<InputProps, 'type'>;
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
4
|
files: (args_0: FileList) => any;
|
|
4
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
5
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
5
6
|
onFiles?: ((args_0: FileList) => any) | undefined;
|
|
6
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
7
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
7
8
|
export default _default;
|
|
@@ -17,11 +17,12 @@ export interface InputProps {
|
|
|
17
17
|
max?: number;
|
|
18
18
|
disabled?: boolean;
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
type __VLS_Props = InputProps;
|
|
21
21
|
type __VLS_PublicProps = {
|
|
22
22
|
modelValue?: string | number;
|
|
23
|
-
} &
|
|
23
|
+
} & __VLS_Props;
|
|
24
24
|
declare function __VLS_template(): {
|
|
25
|
+
attrs: Partial<{}>;
|
|
25
26
|
slots: {
|
|
26
27
|
before?(_: {}): any;
|
|
27
28
|
start?(_: {}): any;
|
|
@@ -34,18 +35,18 @@ declare function __VLS_template(): {
|
|
|
34
35
|
refs: {
|
|
35
36
|
input: HTMLInputElement;
|
|
36
37
|
};
|
|
37
|
-
|
|
38
|
+
rootEl: HTMLDivElement;
|
|
38
39
|
};
|
|
39
40
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
40
41
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
41
42
|
focus: () => void;
|
|
42
43
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
43
|
-
"update:modelValue": (
|
|
44
|
+
"update:modelValue": (value: string | number) => any;
|
|
44
45
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
45
|
-
"onUpdate:modelValue"?: ((
|
|
46
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
46
47
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
47
48
|
input: HTMLInputElement;
|
|
48
|
-
},
|
|
49
|
+
}, HTMLDivElement>;
|
|
49
50
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
50
51
|
export default _default;
|
|
51
52
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -2,5 +2,5 @@ import { InputProps } from './Input.vue';
|
|
|
2
2
|
type Props = Omit<InputProps, 'type'> & {
|
|
3
3
|
showPassword?: boolean;
|
|
4
4
|
};
|
|
5
|
-
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
5
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
6
6
|
export default _default;
|
|
@@ -3,24 +3,25 @@ type Props = Omit<InputProps, 'type'> & {
|
|
|
3
3
|
resize?: boolean | 'vertical' | 'horizontal';
|
|
4
4
|
autoResize?: boolean;
|
|
5
5
|
};
|
|
6
|
-
|
|
6
|
+
type __VLS_Props = Props;
|
|
7
7
|
type __VLS_PublicProps = {
|
|
8
8
|
modelValue?: string;
|
|
9
|
-
} &
|
|
9
|
+
} & __VLS_Props;
|
|
10
10
|
declare function __VLS_template(): {
|
|
11
|
+
attrs: Partial<{}>;
|
|
11
12
|
slots: {
|
|
12
13
|
before?(_: {}): any;
|
|
13
14
|
after?(_: {}): any;
|
|
14
15
|
};
|
|
15
16
|
refs: {};
|
|
16
|
-
|
|
17
|
+
rootEl: HTMLDivElement;
|
|
17
18
|
};
|
|
18
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
20
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
|
-
"update:modelValue": (
|
|
21
|
+
"update:modelValue": (value: string) => any;
|
|
21
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
-
"onUpdate:modelValue"?: ((
|
|
23
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
23
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
24
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
26
|
export default _default;
|
|
26
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -19,5 +19,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
19
19
|
trigger: () => any;
|
|
20
20
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
21
21
|
onTrigger?: (() => any) | undefined;
|
|
22
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
22
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
23
23
|
export default _default;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { default as Kbd } from './Kbd.vue';
|
|
2
2
|
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
3
4
|
slots: Readonly<{
|
|
4
5
|
default: () => Array<typeof Kbd>;
|
|
5
6
|
}> & {
|
|
6
7
|
default: () => Array<typeof Kbd>;
|
|
7
8
|
};
|
|
8
9
|
refs: {};
|
|
9
|
-
|
|
10
|
+
rootEl: any;
|
|
10
11
|
};
|
|
11
12
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
13
|
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -8,27 +8,25 @@ type Props = {
|
|
|
8
8
|
cancelText?: string;
|
|
9
9
|
showCancel?: boolean;
|
|
10
10
|
} & Partial<ModalProps>;
|
|
11
|
-
declare let __VLS_typeProps: Props;
|
|
12
|
-
type __VLS_PublicProps = {
|
|
13
|
-
modelValue?: boolean;
|
|
14
|
-
} & typeof __VLS_typeProps;
|
|
15
11
|
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
16
13
|
slots: {
|
|
17
14
|
default?(_: {}): any;
|
|
18
15
|
};
|
|
19
16
|
refs: {};
|
|
20
|
-
|
|
17
|
+
rootEl: any;
|
|
21
18
|
};
|
|
22
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
24
|
-
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
+
close: () => any;
|
|
25
22
|
confirm: () => any;
|
|
26
23
|
cancel: () => any;
|
|
27
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
28
|
-
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
25
|
+
onClose?: (() => any) | undefined;
|
|
29
26
|
onConfirm?: (() => any) | undefined;
|
|
30
27
|
onCancel?: (() => any) | undefined;
|
|
31
28
|
}>, {
|
|
29
|
+
open: boolean;
|
|
32
30
|
size: import('../../shared/types').Sizes | "full" | "screen";
|
|
33
31
|
cancelText: string;
|
|
34
32
|
canDismiss: boolean;
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { Sizes } from '../../shared/types';
|
|
2
2
|
import { Props as CardProps } from '../Card/Card.vue';
|
|
3
3
|
export interface ModalProps {
|
|
4
|
+
/**
|
|
5
|
+
* Controls the visibility of the modal
|
|
6
|
+
*/
|
|
7
|
+
open?: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* Controls the width of the modal
|
|
10
|
+
*/
|
|
4
11
|
size?: Sizes | 'full' | 'screen';
|
|
5
12
|
/**
|
|
6
13
|
* Modal wraps a floating card. You can optinally pass in any props you'd pass
|
|
@@ -20,31 +27,27 @@ export interface ModalProps {
|
|
|
20
27
|
*/
|
|
21
28
|
canDismiss?: boolean;
|
|
22
29
|
}
|
|
23
|
-
declare let __VLS_typeProps: ModalProps;
|
|
24
|
-
declare function close(): void;
|
|
25
|
-
type __VLS_PublicProps = {
|
|
26
|
-
modelValue?: boolean;
|
|
27
|
-
} & typeof __VLS_typeProps;
|
|
28
30
|
declare function __VLS_template(): {
|
|
31
|
+
attrs: Partial<{}>;
|
|
29
32
|
slots: {
|
|
30
33
|
header?(_: {
|
|
31
|
-
close:
|
|
34
|
+
close: () => void;
|
|
32
35
|
}): any;
|
|
33
36
|
default?(_: {
|
|
34
|
-
close:
|
|
37
|
+
close: () => void;
|
|
35
38
|
}): any;
|
|
36
39
|
footer?(_: {
|
|
37
|
-
close:
|
|
40
|
+
close: () => void;
|
|
38
41
|
}): any;
|
|
39
42
|
};
|
|
40
43
|
refs: {};
|
|
41
|
-
|
|
44
|
+
rootEl: any;
|
|
42
45
|
};
|
|
43
46
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
44
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
45
|
-
|
|
46
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
47
|
-
|
|
47
|
+
declare const __VLS_component: import('vue').DefineComponent<ModalProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
48
|
+
close: () => any;
|
|
49
|
+
}, string, import('vue').PublicProps, Readonly<ModalProps> & Readonly<{
|
|
50
|
+
onClose?: (() => any) | undefined;
|
|
48
51
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
49
52
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
50
53
|
export default _default;
|
|
@@ -9,31 +9,32 @@ interface Props {
|
|
|
9
9
|
mode?: 'num' | 'char' | 'both';
|
|
10
10
|
redacted?: boolean;
|
|
11
11
|
}
|
|
12
|
-
|
|
12
|
+
type __VLS_Props = Props;
|
|
13
13
|
type __VLS_PublicProps = {
|
|
14
14
|
modelValue?: string;
|
|
15
|
-
} &
|
|
15
|
+
} & __VLS_Props;
|
|
16
16
|
declare function __VLS_template(): {
|
|
17
|
+
attrs: Partial<{}>;
|
|
17
18
|
slots: {
|
|
18
19
|
default?(_: {}): any;
|
|
19
20
|
};
|
|
20
21
|
refs: {
|
|
21
22
|
inputRef: HTMLInputElement;
|
|
22
23
|
};
|
|
23
|
-
|
|
24
|
+
rootEl: HTMLDivElement;
|
|
24
25
|
};
|
|
25
26
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
26
27
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
28
|
change: (value?: string | undefined) => any;
|
|
28
|
-
"update:modelValue": (
|
|
29
|
+
"update:modelValue": (value: string) => any;
|
|
29
30
|
complete: (value: string) => any;
|
|
30
31
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
31
32
|
onChange?: ((value?: string | undefined) => any) | undefined;
|
|
32
|
-
"onUpdate:modelValue"?: ((
|
|
33
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
33
34
|
onComplete?: ((value: string) => any) | undefined;
|
|
34
35
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
35
36
|
inputRef: HTMLInputElement;
|
|
36
|
-
},
|
|
37
|
+
}, HTMLDivElement>;
|
|
37
38
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
38
39
|
export default _default;
|
|
39
40
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
i: number;
|
|
3
3
|
}
|
|
4
|
-
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
4
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
5
5
|
export default _default;
|
|
@@ -10,6 +10,7 @@ interface Props {
|
|
|
10
10
|
declare function setNext(): void;
|
|
11
11
|
declare function setPrev(): void;
|
|
12
12
|
declare function __VLS_template(): {
|
|
13
|
+
attrs: Partial<{}>;
|
|
13
14
|
slots: {
|
|
14
15
|
start?(_: {}): any;
|
|
15
16
|
prev?(_: {
|
|
@@ -23,7 +24,7 @@ declare function __VLS_template(): {
|
|
|
23
24
|
end?(_: {}): any;
|
|
24
25
|
};
|
|
25
26
|
refs: {};
|
|
26
|
-
|
|
27
|
+
rootEl: HTMLDivElement;
|
|
27
28
|
};
|
|
28
29
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
29
30
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -35,7 +36,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
35
36
|
numbers: boolean;
|
|
36
37
|
prevNext: boolean;
|
|
37
38
|
firstLast: boolean;
|
|
38
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
39
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
40
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
40
41
|
export default _default;
|
|
41
42
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -14,13 +14,14 @@ export interface Props {
|
|
|
14
14
|
offset?: number;
|
|
15
15
|
}
|
|
16
16
|
declare function __VLS_template(): {
|
|
17
|
+
attrs: Partial<{}>;
|
|
17
18
|
slots: {
|
|
18
19
|
default?(_: {}): any;
|
|
19
20
|
};
|
|
20
21
|
refs: {
|
|
21
22
|
popout: HTMLDivElement;
|
|
22
23
|
};
|
|
23
|
-
|
|
24
|
+
rootEl: HTMLDivElement;
|
|
24
25
|
};
|
|
25
26
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
26
27
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -31,7 +32,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
31
32
|
offset: number;
|
|
32
33
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
33
34
|
popout: HTMLDivElement;
|
|
34
|
-
},
|
|
35
|
+
}, HTMLDivElement>;
|
|
35
36
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
37
|
export default _default;
|
|
37
38
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -17,17 +17,17 @@ interface Props {
|
|
|
17
17
|
*/
|
|
18
18
|
height?: number | string;
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
type __VLS_Props = Props;
|
|
21
21
|
type __VLS_PublicProps = {
|
|
22
22
|
modelValue?: number;
|
|
23
|
-
} &
|
|
23
|
+
} & __VLS_Props;
|
|
24
24
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
25
|
done: () => any;
|
|
26
|
-
"update:modelValue": (
|
|
26
|
+
"update:modelValue": (value: number) => any;
|
|
27
27
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
28
28
|
onDone?: (() => any) | undefined;
|
|
29
|
-
"onUpdate:modelValue"?: ((
|
|
29
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
30
30
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
31
31
|
progress: HTMLDivElement;
|
|
32
|
-
},
|
|
32
|
+
}, HTMLDivElement>;
|
|
33
33
|
export default _default;
|
|
@@ -4,21 +4,22 @@ export interface RadioProps {
|
|
|
4
4
|
value: any;
|
|
5
5
|
accent?: boolean;
|
|
6
6
|
}
|
|
7
|
-
|
|
7
|
+
type __VLS_Props = RadioProps;
|
|
8
8
|
type __VLS_PublicProps = {
|
|
9
9
|
modelValue?: any;
|
|
10
|
-
} &
|
|
10
|
+
} & __VLS_Props;
|
|
11
11
|
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
12
13
|
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
13
14
|
refs: {};
|
|
14
|
-
|
|
15
|
+
rootEl: HTMLDivElement;
|
|
15
16
|
};
|
|
16
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
18
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
|
-
"update:modelValue": (
|
|
19
|
+
"update:modelValue": (value: any) => any;
|
|
19
20
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
|
-
"onUpdate:modelValue"?: ((
|
|
21
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
21
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
22
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
23
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
24
|
export default _default;
|
|
24
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -3,25 +3,26 @@ import { default as Radio } from './Radio.vue';
|
|
|
3
3
|
interface Props extends FlexProps {
|
|
4
4
|
disabled?: boolean;
|
|
5
5
|
}
|
|
6
|
-
|
|
6
|
+
type __VLS_Props = Props;
|
|
7
7
|
type __VLS_PublicProps = {
|
|
8
8
|
modelValue?: any;
|
|
9
|
-
} &
|
|
9
|
+
} & __VLS_Props;
|
|
10
10
|
declare function __VLS_template(): {
|
|
11
|
+
attrs: Partial<{}>;
|
|
11
12
|
slots: Readonly<{
|
|
12
13
|
default: () => Array<typeof Radio>;
|
|
13
14
|
}> & {
|
|
14
15
|
default: () => Array<typeof Radio>;
|
|
15
16
|
};
|
|
16
17
|
refs: {};
|
|
17
|
-
|
|
18
|
+
rootEl: HTMLDivElement;
|
|
18
19
|
};
|
|
19
20
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
21
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
-
"update:modelValue": (
|
|
22
|
+
"update:modelValue": (value: any) => any;
|
|
22
23
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
23
|
-
"onUpdate:modelValue"?: ((
|
|
24
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
24
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
25
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
25
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
26
27
|
export default _default;
|
|
27
28
|
type __VLS_WithTemplateSlots<T, S> = T & {
|