@dolanske/vui 1.0.1 → 1.0.3
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 +2 -3
- package/dist/components/Accordion/AccordionGroup.vue.d.ts +2 -5
- package/dist/components/Alert/Alert.vue.d.ts +2 -3
- package/dist/components/Avatar/Avatar.vue.d.ts +2 -3
- package/dist/components/Badge/Badge.vue.d.ts +2 -3
- package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +2 -3
- package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +2 -3
- package/dist/components/Button/Button.vue.d.ts +2 -3
- package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +2 -3
- package/dist/components/Calendar/Calendar.vue.d.ts +6 -6
- package/dist/components/Card/Card.vue.d.ts +3 -4
- package/dist/components/Checkbox/Checkbox.vue.d.ts +6 -7
- package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +1 -2
- package/dist/components/Divider/Divider.vue.d.ts +2 -3
- package/dist/components/Drawer/Drawer.vue.d.ts +5 -6
- package/dist/components/Dropdown/Dropdown.vue.d.ts +3 -66
- package/dist/components/Dropdown/DropdownItem.vue.d.ts +2 -3
- package/dist/components/Dropdown/DropdownTitle.vue.d.ts +6 -6
- package/dist/components/Flex/Flex.vue.d.ts +2 -3
- package/dist/components/Grid/Grid.vue.d.ts +2 -3
- 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 +10 -95
- package/dist/components/Input/File.vue.d.ts +3 -4
- package/dist/components/Input/Input.vue.d.ts +6 -7
- package/dist/components/Input/Password.vue.d.ts +1 -1
- package/dist/components/Input/Textarea.vue.d.ts +6 -7
- package/dist/components/Kbd/Kbd.vue.d.ts +1 -1
- package/dist/components/Kbd/KbdGroup.vue.d.ts +1 -2
- package/dist/components/Modal/Confirm.vue.d.ts +5 -6
- package/dist/components/Modal/Modal.vue.d.ts +5 -6
- package/dist/components/OTP/OTP.vue.d.ts +6 -7
- package/dist/components/OTP/OTPItem.vue.d.ts +1 -1
- package/dist/components/Pagination/Pagination.vue.d.ts +2 -3
- package/dist/components/Popout/Popout.vue.d.ts +2 -3
- package/dist/components/Progress/Progress.vue.d.ts +5 -5
- package/dist/components/Radio/Radio.vue.d.ts +6 -7
- package/dist/components/Radio/RadioGroup.vue.d.ts +6 -7
- package/dist/components/Select/Select.vue.d.ts +8 -4
- package/dist/components/Sheet/Sheet.vue.d.ts +5 -6
- package/dist/components/Sidebar/Sidebar.vue.d.ts +6 -7
- 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 +6 -7
- package/dist/components/Table/Cell.vue.d.ts +2 -5
- package/dist/components/Table/Head.vue.d.ts +2 -3
- package/dist/components/Table/Root.vue.d.ts +2 -3
- package/dist/components/Table/table.d.ts +2 -2
- package/dist/components/Tabs/Tab.vue.d.ts +2 -3
- package/dist/components/Tabs/Tabs.vue.d.ts +6 -7
- package/dist/components/Toast/toast.d.ts +6 -6
- package/dist/components/Tooltip/Tooltip.vue.d.ts +1 -2
- package/dist/internal/Backdrop/Backdrop.vue.d.ts +2 -3
- package/dist/{vui.css → style.css} +1 -1
- package/dist/vui.js +5318 -5449
- package/package.json +72 -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 +206 -206
- package/src/components/Breadcrumbs/BreadcrumbItem.vue +26 -26
- package/src/components/Breadcrumbs/Breadcrumbs.vue +30 -32
- 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 +97 -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 +80 -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 +99 -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 +98 -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 +89 -89
- 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 +122 -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 +78 -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.scss +1 -1
- 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 +125 -125
- package/src/style/layout.scss +233 -233
- package/src/style/media-query.scss +29 -29
- package/src/style/reset.scss +135 -135
- package/src/style/text.scss +124 -92
- 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
|
@@ -7,13 +7,13 @@ type Props = Omit<InputProps, 'type'> & {
|
|
|
7
7
|
decrementEnabled?: boolean;
|
|
8
8
|
hideDecrement?: boolean;
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
declare let __VLS_typeProps: Props;
|
|
11
11
|
type __VLS_PublicProps = {
|
|
12
12
|
modelValue?: number;
|
|
13
|
-
} &
|
|
13
|
+
} & typeof __VLS_typeProps;
|
|
14
14
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
-
"update:modelValue": (
|
|
15
|
+
"update:modelValue": (modelValue: number) => any;
|
|
16
16
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
-
"onUpdate:modelValue"?: ((
|
|
18
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
17
|
+
"onUpdate:modelValue"?: ((modelValue: number) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
19
|
export default _default;
|
|
@@ -1,7 +1,6 @@
|
|
|
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<{}>;
|
|
5
4
|
slots: {
|
|
6
5
|
default?(_: {
|
|
7
6
|
dragging: boolean;
|
|
@@ -12,11 +11,11 @@ declare function __VLS_template(): {
|
|
|
12
11
|
$: import('vue').ComponentInternalInstance;
|
|
13
12
|
$data: {};
|
|
14
13
|
$props: {
|
|
15
|
-
readonly modelValue?: string | number | undefined;
|
|
14
|
+
readonly modelValue?: (string | number) | undefined;
|
|
16
15
|
readonly type?: import('./Input.vue').InputType | undefined;
|
|
17
16
|
readonly label?: string | undefined;
|
|
18
17
|
readonly hint?: string | undefined;
|
|
19
|
-
readonly limit?: number | string | undefined;
|
|
18
|
+
readonly limit?: (number | string) | undefined;
|
|
20
19
|
readonly expand?: boolean | undefined;
|
|
21
20
|
readonly placeholder?: string | undefined;
|
|
22
21
|
readonly required?: boolean | undefined;
|
|
@@ -28,7 +27,7 @@ declare function __VLS_template(): {
|
|
|
28
27
|
readonly min?: number | undefined;
|
|
29
28
|
readonly max?: number | undefined;
|
|
30
29
|
readonly disabled?: boolean | undefined;
|
|
31
|
-
readonly "onUpdate:modelValue"?: ((
|
|
30
|
+
readonly "onUpdate:modelValue"?: ((modelValue: string | number) => any) | undefined;
|
|
32
31
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
33
32
|
$attrs: {
|
|
34
33
|
[x: string]: unknown;
|
|
@@ -44,16 +43,16 @@ declare function __VLS_template(): {
|
|
|
44
43
|
$root: import('vue').ComponentPublicInstance | null;
|
|
45
44
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
46
45
|
$host: Element | null;
|
|
47
|
-
$emit: (event: "update:modelValue",
|
|
48
|
-
$el:
|
|
46
|
+
$emit: (event: "update:modelValue", modelValue: string | number) => void;
|
|
47
|
+
$el: any;
|
|
49
48
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
50
49
|
modelValue?: string | number;
|
|
51
50
|
} & InputProps> & Readonly<{
|
|
52
|
-
"onUpdate:modelValue"?: ((
|
|
51
|
+
"onUpdate:modelValue"?: ((modelValue: string | number) => any) | undefined;
|
|
53
52
|
}>, {
|
|
54
53
|
focus: () => void;
|
|
55
54
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
56
|
-
"update:modelValue": (
|
|
55
|
+
"update:modelValue": (modelValue: string | number) => any;
|
|
57
56
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
58
57
|
beforeCreate?: (() => void) | (() => void)[];
|
|
59
58
|
created?: (() => void) | (() => void)[];
|
|
@@ -77,7 +76,7 @@ declare function __VLS_template(): {
|
|
|
77
76
|
} & Readonly<{}> & Omit<Readonly<{
|
|
78
77
|
modelValue?: string | number;
|
|
79
78
|
} & InputProps> & Readonly<{
|
|
80
|
-
"onUpdate:modelValue"?: ((
|
|
79
|
+
"onUpdate:modelValue"?: ((modelValue: string | number) => any) | undefined;
|
|
81
80
|
}>, "focus"> & import('vue').ShallowUnwrapRef<{
|
|
82
81
|
focus: () => void;
|
|
83
82
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -92,98 +91,14 @@ declare function __VLS_template(): {
|
|
|
92
91
|
};
|
|
93
92
|
}) | null;
|
|
94
93
|
};
|
|
95
|
-
|
|
94
|
+
attrs: Partial<{}>;
|
|
96
95
|
};
|
|
97
96
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
98
97
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
99
98
|
files: (args_0: FileList) => any;
|
|
100
99
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
101
100
|
onFiles?: ((args_0: FileList) => any) | undefined;
|
|
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>;
|
|
101
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
187
102
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
188
103
|
export default _default;
|
|
189
104
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { InputProps } from './Input.vue';
|
|
2
|
-
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import('vue').DefineComponent<Omit<InputProps, "type">, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
3
|
files: (args_0: FileList) => any;
|
|
5
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<Omit<InputProps, "type">> & Readonly<{
|
|
6
5
|
onFiles?: ((args_0: FileList) => any) | undefined;
|
|
7
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
6
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
8
7
|
export default _default;
|
|
@@ -17,12 +17,11 @@ export interface InputProps {
|
|
|
17
17
|
max?: number;
|
|
18
18
|
disabled?: boolean;
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
declare let __VLS_typeProps: InputProps;
|
|
21
21
|
type __VLS_PublicProps = {
|
|
22
22
|
modelValue?: string | number;
|
|
23
|
-
} &
|
|
23
|
+
} & typeof __VLS_typeProps;
|
|
24
24
|
declare function __VLS_template(): {
|
|
25
|
-
attrs: Partial<{}>;
|
|
26
25
|
slots: {
|
|
27
26
|
before?(_: {}): any;
|
|
28
27
|
start?(_: {}): any;
|
|
@@ -35,18 +34,18 @@ declare function __VLS_template(): {
|
|
|
35
34
|
refs: {
|
|
36
35
|
input: HTMLInputElement;
|
|
37
36
|
};
|
|
38
|
-
|
|
37
|
+
attrs: Partial<{}>;
|
|
39
38
|
};
|
|
40
39
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
41
40
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
42
41
|
focus: () => void;
|
|
43
42
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
44
|
-
"update:modelValue": (
|
|
43
|
+
"update:modelValue": (modelValue: string | number) => any;
|
|
45
44
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
46
|
-
"onUpdate:modelValue"?: ((
|
|
45
|
+
"onUpdate:modelValue"?: ((modelValue: string | number) => any) | undefined;
|
|
47
46
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
48
47
|
input: HTMLInputElement;
|
|
49
|
-
},
|
|
48
|
+
}, any>;
|
|
50
49
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
51
50
|
export default _default;
|
|
52
51
|
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, {}, any>;
|
|
6
6
|
export default _default;
|
|
@@ -3,25 +3,24 @@ type Props = Omit<InputProps, 'type'> & {
|
|
|
3
3
|
resize?: boolean | 'vertical' | 'horizontal';
|
|
4
4
|
autoResize?: boolean;
|
|
5
5
|
};
|
|
6
|
-
|
|
6
|
+
declare let __VLS_typeProps: Props;
|
|
7
7
|
type __VLS_PublicProps = {
|
|
8
8
|
modelValue?: string;
|
|
9
|
-
} &
|
|
9
|
+
} & typeof __VLS_typeProps;
|
|
10
10
|
declare function __VLS_template(): {
|
|
11
|
-
attrs: Partial<{}>;
|
|
12
11
|
slots: {
|
|
13
12
|
before?(_: {}): any;
|
|
14
13
|
after?(_: {}): any;
|
|
15
14
|
};
|
|
16
15
|
refs: {};
|
|
17
|
-
|
|
16
|
+
attrs: Partial<{}>;
|
|
18
17
|
};
|
|
19
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
19
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
-
"update:modelValue": (
|
|
20
|
+
"update:modelValue": (modelValue: string) => any;
|
|
22
21
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
23
|
-
"onUpdate:modelValue"?: ((
|
|
24
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
22
|
+
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
23
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
25
24
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
26
25
|
export default _default;
|
|
27
26
|
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, {}, any>;
|
|
23
23
|
export default _default;
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { default as Kbd } from './Kbd.vue';
|
|
2
2
|
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
3
|
slots: Readonly<{
|
|
5
4
|
default: () => Array<typeof Kbd>;
|
|
6
5
|
}> & {
|
|
7
6
|
default: () => Array<typeof Kbd>;
|
|
8
7
|
};
|
|
9
8
|
refs: {};
|
|
10
|
-
|
|
9
|
+
attrs: Partial<{}>;
|
|
11
10
|
};
|
|
12
11
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
12
|
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -8,25 +8,24 @@ type Props = {
|
|
|
8
8
|
cancelText?: string;
|
|
9
9
|
showCancel?: boolean;
|
|
10
10
|
} & Partial<ModalProps>;
|
|
11
|
-
|
|
11
|
+
declare let __VLS_typeProps: Props;
|
|
12
12
|
type __VLS_PublicProps = {
|
|
13
13
|
modelValue?: boolean;
|
|
14
|
-
} &
|
|
14
|
+
} & typeof __VLS_typeProps;
|
|
15
15
|
declare function __VLS_template(): {
|
|
16
|
-
attrs: Partial<{}>;
|
|
17
16
|
slots: {
|
|
18
17
|
default?(_: {}): any;
|
|
19
18
|
};
|
|
20
19
|
refs: {};
|
|
21
|
-
|
|
20
|
+
attrs: Partial<{}>;
|
|
22
21
|
};
|
|
23
22
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
24
23
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
|
-
"update:modelValue": (
|
|
24
|
+
"update:modelValue": (modelValue: boolean) => any;
|
|
26
25
|
confirm: () => any;
|
|
27
26
|
cancel: () => any;
|
|
28
27
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
29
|
-
"onUpdate:modelValue"?: ((
|
|
28
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
30
29
|
onConfirm?: (() => any) | undefined;
|
|
31
30
|
onCancel?: (() => any) | undefined;
|
|
32
31
|
}>, {
|
|
@@ -20,13 +20,12 @@ export interface ModalProps {
|
|
|
20
20
|
*/
|
|
21
21
|
canDismiss?: boolean;
|
|
22
22
|
}
|
|
23
|
-
|
|
23
|
+
declare let __VLS_typeProps: ModalProps;
|
|
24
24
|
declare function close(): void;
|
|
25
25
|
type __VLS_PublicProps = {
|
|
26
26
|
modelValue?: boolean;
|
|
27
|
-
} &
|
|
27
|
+
} & typeof __VLS_typeProps;
|
|
28
28
|
declare function __VLS_template(): {
|
|
29
|
-
attrs: Partial<{}>;
|
|
30
29
|
slots: {
|
|
31
30
|
header?(_: {
|
|
32
31
|
close: typeof close;
|
|
@@ -39,13 +38,13 @@ declare function __VLS_template(): {
|
|
|
39
38
|
}): any;
|
|
40
39
|
};
|
|
41
40
|
refs: {};
|
|
42
|
-
|
|
41
|
+
attrs: Partial<{}>;
|
|
43
42
|
};
|
|
44
43
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
45
44
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
46
|
-
"update:modelValue": (
|
|
45
|
+
"update:modelValue": (modelValue: boolean) => any;
|
|
47
46
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
48
|
-
"onUpdate:modelValue"?: ((
|
|
47
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
49
48
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
50
49
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
51
50
|
export default _default;
|
|
@@ -9,32 +9,31 @@ interface Props {
|
|
|
9
9
|
mode?: 'num' | 'char' | 'both';
|
|
10
10
|
redacted?: boolean;
|
|
11
11
|
}
|
|
12
|
-
|
|
12
|
+
declare let __VLS_typeProps: Props;
|
|
13
13
|
type __VLS_PublicProps = {
|
|
14
14
|
modelValue?: string;
|
|
15
|
-
} &
|
|
15
|
+
} & typeof __VLS_typeProps;
|
|
16
16
|
declare function __VLS_template(): {
|
|
17
|
-
attrs: Partial<{}>;
|
|
18
17
|
slots: {
|
|
19
18
|
default?(_: {}): any;
|
|
20
19
|
};
|
|
21
20
|
refs: {
|
|
22
21
|
inputRef: HTMLInputElement;
|
|
23
22
|
};
|
|
24
|
-
|
|
23
|
+
attrs: Partial<{}>;
|
|
25
24
|
};
|
|
26
25
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
27
26
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
27
|
change: (value?: string | undefined) => any;
|
|
29
|
-
"update:modelValue": (
|
|
28
|
+
"update:modelValue": (modelValue: string) => any;
|
|
30
29
|
complete: (value: string) => any;
|
|
31
30
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
32
31
|
onChange?: ((value?: string | undefined) => any) | undefined;
|
|
33
|
-
"onUpdate:modelValue"?: ((
|
|
32
|
+
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
34
33
|
onComplete?: ((value: string) => any) | undefined;
|
|
35
34
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
36
35
|
inputRef: HTMLInputElement;
|
|
37
|
-
},
|
|
36
|
+
}, any>;
|
|
38
37
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
39
38
|
export default _default;
|
|
40
39
|
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, {}, any>;
|
|
5
5
|
export default _default;
|
|
@@ -10,7 +10,6 @@ interface Props {
|
|
|
10
10
|
declare function setNext(): void;
|
|
11
11
|
declare function setPrev(): void;
|
|
12
12
|
declare function __VLS_template(): {
|
|
13
|
-
attrs: Partial<{}>;
|
|
14
13
|
slots: {
|
|
15
14
|
start?(_: {}): any;
|
|
16
15
|
prev?(_: {
|
|
@@ -24,7 +23,7 @@ declare function __VLS_template(): {
|
|
|
24
23
|
end?(_: {}): any;
|
|
25
24
|
};
|
|
26
25
|
refs: {};
|
|
27
|
-
|
|
26
|
+
attrs: Partial<{}>;
|
|
28
27
|
};
|
|
29
28
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
30
29
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -36,7 +35,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
36
35
|
numbers: boolean;
|
|
37
36
|
prevNext: boolean;
|
|
38
37
|
firstLast: boolean;
|
|
39
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
38
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
40
39
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
41
40
|
export default _default;
|
|
42
41
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -14,14 +14,13 @@ export interface Props {
|
|
|
14
14
|
offset?: number;
|
|
15
15
|
}
|
|
16
16
|
declare function __VLS_template(): {
|
|
17
|
-
attrs: Partial<{}>;
|
|
18
17
|
slots: {
|
|
19
18
|
default?(_: {}): any;
|
|
20
19
|
};
|
|
21
20
|
refs: {
|
|
22
21
|
popout: HTMLDivElement;
|
|
23
22
|
};
|
|
24
|
-
|
|
23
|
+
attrs: Partial<{}>;
|
|
25
24
|
};
|
|
26
25
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
27
26
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -32,7 +31,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
32
31
|
offset: number;
|
|
33
32
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
34
33
|
popout: HTMLDivElement;
|
|
35
|
-
},
|
|
34
|
+
}, any>;
|
|
36
35
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
37
36
|
export default _default;
|
|
38
37
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -17,17 +17,17 @@ interface Props {
|
|
|
17
17
|
*/
|
|
18
18
|
height?: number | string;
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
declare let __VLS_typeProps: Props;
|
|
21
21
|
type __VLS_PublicProps = {
|
|
22
22
|
modelValue?: number;
|
|
23
|
-
} &
|
|
23
|
+
} & typeof __VLS_typeProps;
|
|
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": (modelValue: number) => any;
|
|
27
27
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
28
28
|
onDone?: (() => any) | undefined;
|
|
29
|
-
"onUpdate:modelValue"?: ((
|
|
29
|
+
"onUpdate:modelValue"?: ((modelValue: number) => any) | undefined;
|
|
30
30
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
31
31
|
progress: HTMLDivElement;
|
|
32
|
-
},
|
|
32
|
+
}, any>;
|
|
33
33
|
export default _default;
|
|
@@ -4,22 +4,21 @@ export interface RadioProps {
|
|
|
4
4
|
value: any;
|
|
5
5
|
accent?: boolean;
|
|
6
6
|
}
|
|
7
|
-
|
|
7
|
+
declare let __VLS_typeProps: RadioProps;
|
|
8
8
|
type __VLS_PublicProps = {
|
|
9
9
|
modelValue?: any;
|
|
10
|
-
} &
|
|
10
|
+
} & typeof __VLS_typeProps;
|
|
11
11
|
declare function __VLS_template(): {
|
|
12
|
-
attrs: Partial<{}>;
|
|
13
12
|
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
14
13
|
refs: {};
|
|
15
|
-
|
|
14
|
+
attrs: Partial<{}>;
|
|
16
15
|
};
|
|
17
16
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
17
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
-
"update:modelValue": (
|
|
18
|
+
"update:modelValue": (modelValue: any) => any;
|
|
20
19
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
|
-
"onUpdate:modelValue"?: ((
|
|
22
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
20
|
+
"onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
|
|
21
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
22
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
23
|
export default _default;
|
|
25
24
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -3,26 +3,25 @@ import { default as Radio } from './Radio.vue';
|
|
|
3
3
|
interface Props extends FlexProps {
|
|
4
4
|
disabled?: boolean;
|
|
5
5
|
}
|
|
6
|
-
|
|
6
|
+
declare let __VLS_typeProps: Props;
|
|
7
7
|
type __VLS_PublicProps = {
|
|
8
8
|
modelValue?: any;
|
|
9
|
-
} &
|
|
9
|
+
} & typeof __VLS_typeProps;
|
|
10
10
|
declare function __VLS_template(): {
|
|
11
|
-
attrs: Partial<{}>;
|
|
12
11
|
slots: Readonly<{
|
|
13
12
|
default: () => Array<typeof Radio>;
|
|
14
13
|
}> & {
|
|
15
14
|
default: () => Array<typeof Radio>;
|
|
16
15
|
};
|
|
17
16
|
refs: {};
|
|
18
|
-
|
|
17
|
+
attrs: Partial<{}>;
|
|
19
18
|
};
|
|
20
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
20
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
-
"update:modelValue": (
|
|
21
|
+
"update:modelValue": (modelValue: any) => any;
|
|
23
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
24
|
-
"onUpdate:modelValue"?: ((
|
|
25
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
23
|
+
"onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
26
|
export default _default;
|
|
28
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -4,7 +4,7 @@ export type SelectOption = {
|
|
|
4
4
|
};
|
|
5
5
|
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
6
6
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
7
|
-
readonly "onUpdate:modelValue"?: ((
|
|
7
|
+
readonly "onUpdate:modelValue"?: ((modelValue: SelectOption[] | undefined) => any) | undefined;
|
|
8
8
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
|
|
9
9
|
modelValue?: SelectOption[] | undefined;
|
|
10
10
|
} & {
|
|
@@ -21,12 +21,16 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
21
21
|
showClear?: boolean;
|
|
22
22
|
disabled?: boolean;
|
|
23
23
|
errors?: string[];
|
|
24
|
-
}) &
|
|
24
|
+
})> & import('vue').PublicProps;
|
|
25
25
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
26
26
|
attrs: any;
|
|
27
27
|
slots: {};
|
|
28
|
-
emit:
|
|
29
|
-
|
|
28
|
+
emit: {
|
|
29
|
+
'update:modelValue': [modelValue: SelectOption[] | undefined];
|
|
30
|
+
};
|
|
31
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
}> & {
|
|
30
34
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
31
35
|
};
|
|
32
36
|
export default _default;
|
|
@@ -3,13 +3,12 @@ interface Props {
|
|
|
3
3
|
size?: number | string;
|
|
4
4
|
separator?: boolean;
|
|
5
5
|
}
|
|
6
|
-
|
|
6
|
+
declare let __VLS_typeProps: Props;
|
|
7
7
|
declare function close(): void;
|
|
8
8
|
type __VLS_PublicProps = {
|
|
9
9
|
modelValue?: boolean;
|
|
10
|
-
} &
|
|
10
|
+
} & typeof __VLS_typeProps;
|
|
11
11
|
declare function __VLS_template(): {
|
|
12
|
-
attrs: Partial<{}>;
|
|
13
12
|
slots: {
|
|
14
13
|
header?(_: {
|
|
15
14
|
close: typeof close;
|
|
@@ -22,13 +21,13 @@ declare function __VLS_template(): {
|
|
|
22
21
|
}): any;
|
|
23
22
|
};
|
|
24
23
|
refs: {};
|
|
25
|
-
|
|
24
|
+
attrs: Partial<{}>;
|
|
26
25
|
};
|
|
27
26
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
28
27
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
-
"update:modelValue": (
|
|
28
|
+
"update:modelValue": (modelValue: boolean) => any;
|
|
30
29
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
31
|
-
"onUpdate:modelValue"?: ((
|
|
30
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
32
31
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
33
32
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
34
33
|
export default _default;
|