@dolanske/vui 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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.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
- package/src/{index.scss → style.scss} +1 -1
package/README.md
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
# VUI
|
|
2
|
-
|
|
3
|
-
1. `npm i @dolanske/vui`
|
|
4
|
-
2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
|
|
5
|
-
3. Build your thing bro
|
|
6
|
-
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
## 1.0 Checklist
|
|
10
|
-
|
|
11
|
-
- [ ] Real life test
|
|
12
|
-
- [x] Might be useful to build this in the hivecom project
|
|
13
|
-
- [x] Build an example page with 100% of the components
|
|
14
|
-
- [x] Run accessibility tools on it
|
|
15
|
-
- [x] Run color contrast test
|
|
16
|
-
- [ ] Make sure it works on mobile down to 340px
|
|
17
|
-
- [ ] Components
|
|
18
|
-
- [ ] Scale down Typography
|
|
19
|
-
- [x] Sidebar
|
|
20
|
-
|
|
21
|
-
---
|
|
22
|
-
|
|
23
|
-
### Post 1.2 components
|
|
24
|
-
|
|
25
|
-
- [ ] Carousel (slider)
|
|
26
|
-
- [ ] CodeBlock
|
|
27
|
-
- [ ] Code highlighting
|
|
28
|
-
- [ ] Copy code
|
|
29
|
-
- [ ] Type, padding, etc
|
|
30
|
-
- [ ] Use this https://shiki.style/guide/install
|
|
31
|
-
- [ ] Command dropdown
|
|
32
|
-
- [ ] Documentation
|
|
33
|
-
- [ ] Design my own documentation site (GENERIC?!)
|
|
34
|
-
- [ ] Pages
|
|
35
|
-
- [ ] CSS variable setup, accent, fonts
|
|
36
|
-
- [ ] CSS helpers
|
|
37
|
-
- [ ] Components
|
|
38
|
-
- [ ] Typography page
|
|
39
|
-
|
|
40
|
-
### Whenever
|
|
41
|
-
|
|
42
|
-
- [ ] Bump target from ES2022 whenever vite-plugin-dts is fixed
|
|
1
|
+
# VUI
|
|
2
|
+
|
|
3
|
+
1. `npm i @dolanske/vui`
|
|
4
|
+
2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
|
|
5
|
+
3. Build your thing bro
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 1.0 Checklist
|
|
10
|
+
|
|
11
|
+
- [ ] Real life test
|
|
12
|
+
- [x] Might be useful to build this in the hivecom project
|
|
13
|
+
- [x] Build an example page with 100% of the components
|
|
14
|
+
- [x] Run accessibility tools on it
|
|
15
|
+
- [x] Run color contrast test
|
|
16
|
+
- [ ] Make sure it works on mobile down to 340px
|
|
17
|
+
- [ ] Components
|
|
18
|
+
- [ ] Scale down Typography
|
|
19
|
+
- [x] Sidebar
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
### Post 1.2 components
|
|
24
|
+
|
|
25
|
+
- [ ] Carousel (slider)
|
|
26
|
+
- [ ] CodeBlock
|
|
27
|
+
- [ ] Code highlighting
|
|
28
|
+
- [ ] Copy code
|
|
29
|
+
- [ ] Type, padding, etc
|
|
30
|
+
- [ ] Use this https://shiki.style/guide/install
|
|
31
|
+
- [ ] Command dropdown
|
|
32
|
+
- [ ] Documentation
|
|
33
|
+
- [ ] Design my own documentation site (GENERIC?!)
|
|
34
|
+
- [ ] Pages
|
|
35
|
+
- [ ] CSS variable setup, accent, fonts
|
|
36
|
+
- [ ] CSS helpers
|
|
37
|
+
- [ ] Components
|
|
38
|
+
- [ ] Typography page
|
|
39
|
+
|
|
40
|
+
### Whenever
|
|
41
|
+
|
|
42
|
+
- [ ] Bump target from ES2022 whenever vite-plugin-dts is fixed
|
|
@@ -7,7 +7,6 @@ declare function open(): void;
|
|
|
7
7
|
declare function close(): void;
|
|
8
8
|
declare function toggle(): void;
|
|
9
9
|
declare function __VLS_template(): {
|
|
10
|
-
attrs: Partial<{}>;
|
|
11
10
|
slots: {
|
|
12
11
|
trigger?(_: {
|
|
13
12
|
open: typeof open;
|
|
@@ -21,7 +20,7 @@ declare function __VLS_template(): {
|
|
|
21
20
|
refs: {
|
|
22
21
|
content: 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<AccordionProps, {
|
|
@@ -37,7 +36,7 @@ declare const __VLS_component: import('vue').DefineComponent<AccordionProps, {
|
|
|
37
36
|
onClose?: (() => any) | undefined;
|
|
38
37
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
39
38
|
content: HTMLDivElement;
|
|
40
|
-
},
|
|
39
|
+
}, any>;
|
|
41
40
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
42
41
|
export default _default;
|
|
43
42
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -7,7 +7,6 @@ interface Props {
|
|
|
7
7
|
single?: boolean;
|
|
8
8
|
}
|
|
9
9
|
declare function __VLS_template(): {
|
|
10
|
-
attrs: Partial<{}>;
|
|
11
10
|
slots: Readonly<{
|
|
12
11
|
default: () => Array<VNode & {
|
|
13
12
|
props: AccordionProps;
|
|
@@ -20,12 +19,10 @@ declare function __VLS_template(): {
|
|
|
20
19
|
refs: {
|
|
21
20
|
accordion: unknown[];
|
|
22
21
|
};
|
|
23
|
-
|
|
22
|
+
attrs: Partial<{}>;
|
|
24
23
|
};
|
|
25
24
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
26
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
|
-
accordion: unknown[];
|
|
28
|
-
}, any>;
|
|
25
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
29
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
30
27
|
export default _default;
|
|
31
28
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -16,17 +16,16 @@ interface Props {
|
|
|
16
16
|
description?: string;
|
|
17
17
|
}
|
|
18
18
|
declare function __VLS_template(): {
|
|
19
|
-
attrs: Partial<{}>;
|
|
20
19
|
slots: {
|
|
21
20
|
default?(_: {}): any;
|
|
22
21
|
default?(_: {}): any;
|
|
23
22
|
end?(_: {}): any;
|
|
24
23
|
};
|
|
25
24
|
refs: {};
|
|
26
|
-
|
|
25
|
+
attrs: Partial<{}>;
|
|
27
26
|
};
|
|
28
27
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
29
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
28
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
30
29
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
30
|
export default _default;
|
|
32
31
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -7,15 +7,14 @@ interface Props {
|
|
|
7
7
|
alt?: string;
|
|
8
8
|
}
|
|
9
9
|
declare function __VLS_template(): {
|
|
10
|
-
attrs: Partial<{}>;
|
|
11
10
|
slots: {
|
|
12
11
|
default?(_: {}): any;
|
|
13
12
|
};
|
|
14
13
|
refs: {};
|
|
15
|
-
|
|
14
|
+
attrs: Partial<{}>;
|
|
16
15
|
};
|
|
17
16
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
18
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
19
|
export default _default;
|
|
21
20
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -4,15 +4,14 @@ interface Props {
|
|
|
4
4
|
filled?: boolean;
|
|
5
5
|
}
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
7
|
slots: {
|
|
9
8
|
default?(_: {}): any;
|
|
10
9
|
};
|
|
11
10
|
refs: {};
|
|
12
|
-
|
|
11
|
+
attrs: Partial<{}>;
|
|
13
12
|
};
|
|
14
13
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
16
|
export default _default;
|
|
18
17
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -3,16 +3,15 @@ export interface BreadcrumbItemProps {
|
|
|
3
3
|
href?: string;
|
|
4
4
|
}
|
|
5
5
|
declare function __VLS_template(): {
|
|
6
|
-
attrs: Partial<{}>;
|
|
7
6
|
slots: {
|
|
8
7
|
default?(_: {}): any;
|
|
9
8
|
default?(_: {}): any;
|
|
10
9
|
};
|
|
11
10
|
refs: {};
|
|
12
|
-
|
|
11
|
+
attrs: Partial<{}>;
|
|
13
12
|
};
|
|
14
13
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
-
declare const __VLS_component: import('vue').DefineComponent<BreadcrumbItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BreadcrumbItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<BreadcrumbItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BreadcrumbItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
16
|
export default _default;
|
|
18
17
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -4,7 +4,6 @@ interface Props {
|
|
|
4
4
|
separator?: string;
|
|
5
5
|
}
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
7
|
slots: Readonly<{
|
|
9
8
|
default: () => Array<VNode & {
|
|
10
9
|
props: BreadcrumbItemProps;
|
|
@@ -15,10 +14,10 @@ declare function __VLS_template(): {
|
|
|
15
14
|
}>;
|
|
16
15
|
};
|
|
17
16
|
refs: {};
|
|
18
|
-
|
|
17
|
+
attrs: Partial<{}>;
|
|
19
18
|
};
|
|
20
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
22
21
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
22
|
export default _default;
|
|
24
23
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -12,17 +12,16 @@ interface Props {
|
|
|
12
12
|
plain?: boolean;
|
|
13
13
|
}
|
|
14
14
|
declare function __VLS_template(): {
|
|
15
|
-
attrs: Partial<{}>;
|
|
16
15
|
slots: {
|
|
17
16
|
start?(_: {}): any;
|
|
18
17
|
default?(_: {}): any;
|
|
19
18
|
end?(_: {}): any;
|
|
20
19
|
};
|
|
21
20
|
refs: {};
|
|
22
|
-
|
|
21
|
+
attrs: Partial<{}>;
|
|
23
22
|
};
|
|
24
23
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
25
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
24
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, 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,15 +4,14 @@ interface Props {
|
|
|
4
4
|
gap?: Space | number;
|
|
5
5
|
}
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
7
|
slots: {
|
|
9
8
|
default?(_: {}): any;
|
|
10
9
|
};
|
|
11
10
|
refs: {};
|
|
12
|
-
|
|
11
|
+
attrs: Partial<{}>;
|
|
13
12
|
};
|
|
14
13
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
16
|
export default _default;
|
|
18
17
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { VueDatePickerProps } from '@vuepic/vue-datepicker';
|
|
2
|
-
type __VLS_Props = VueDatePickerProps & {
|
|
3
|
-
expand?: boolean;
|
|
4
|
-
};
|
|
5
2
|
declare function __VLS_template(): {
|
|
6
|
-
attrs: Partial<{}>;
|
|
7
3
|
slots: {
|
|
8
4
|
trigger?(_: {}): any;
|
|
9
5
|
};
|
|
10
6
|
refs: {};
|
|
11
|
-
|
|
7
|
+
attrs: Partial<{}>;
|
|
12
8
|
};
|
|
13
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<VueDatePickerProps & {
|
|
11
|
+
expand?: boolean;
|
|
12
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<VueDatePickerProps & {
|
|
13
|
+
expand?: boolean;
|
|
14
|
+
}> & Readonly<{}>, {
|
|
15
15
|
expand: boolean;
|
|
16
16
|
format: string | ((date: Date) => string) | ((dates: Date[]) => string);
|
|
17
17
|
autoApply: boolean;
|
|
@@ -5,18 +5,17 @@ export interface Props {
|
|
|
5
5
|
padding?: boolean;
|
|
6
6
|
}
|
|
7
7
|
declare function __VLS_template(): {
|
|
8
|
-
attrs: Partial<{}>;
|
|
9
8
|
slots: {
|
|
10
9
|
header?(_: {}): any;
|
|
11
|
-
|
|
10
|
+
"header-end"?(_: {}): any;
|
|
12
11
|
default?(_: {}): any;
|
|
13
12
|
footer?(_: {}): any;
|
|
14
13
|
};
|
|
15
14
|
refs: {};
|
|
16
|
-
|
|
15
|
+
attrs: Partial<{}>;
|
|
17
16
|
};
|
|
18
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
19
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
21
20
|
export default _default;
|
|
22
21
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -6,24 +6,23 @@ interface Props {
|
|
|
6
6
|
checked?: boolean;
|
|
7
7
|
accent?: boolean;
|
|
8
8
|
}
|
|
9
|
-
|
|
9
|
+
declare let __VLS_typeProps: Props;
|
|
10
10
|
type __VLS_PublicProps = {
|
|
11
11
|
modelValue?: boolean;
|
|
12
|
-
} &
|
|
12
|
+
} & typeof __VLS_typeProps;
|
|
13
13
|
declare function __VLS_template(): {
|
|
14
|
-
attrs: Partial<{}>;
|
|
15
14
|
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
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
20
|
change: (checked: boolean) => any;
|
|
22
|
-
"update:modelValue": (
|
|
21
|
+
"update:modelValue": (modelValue: boolean) => any;
|
|
23
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
24
23
|
onChange?: ((checked: boolean) => any) | undefined;
|
|
25
|
-
"onUpdate:modelValue"?: ((
|
|
26
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
24
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
25
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
27
|
export default _default;
|
|
29
28
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -13,7 +13,6 @@ interface Props {
|
|
|
13
13
|
confirmTime?: number;
|
|
14
14
|
}
|
|
15
15
|
declare function __VLS_template(): {
|
|
16
|
-
attrs: Partial<{}>;
|
|
17
16
|
slots: {
|
|
18
17
|
default?(_: {
|
|
19
18
|
copy: (text: string) => Promise<void>;
|
|
@@ -25,7 +24,7 @@ declare function __VLS_template(): {
|
|
|
25
24
|
anchor: HTMLDivElement;
|
|
26
25
|
tooltip: HTMLDivElement;
|
|
27
26
|
};
|
|
28
|
-
|
|
27
|
+
attrs: Partial<{}>;
|
|
29
28
|
};
|
|
30
29
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
31
30
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -5,15 +5,14 @@ interface Props {
|
|
|
5
5
|
margin?: string | number;
|
|
6
6
|
}
|
|
7
7
|
declare function __VLS_template(): {
|
|
8
|
-
attrs: Partial<{}>;
|
|
9
8
|
slots: {
|
|
10
9
|
default?(_: {}): any;
|
|
11
10
|
};
|
|
12
11
|
refs: {};
|
|
13
|
-
|
|
12
|
+
attrs: Partial<{}>;
|
|
14
13
|
};
|
|
15
14
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
16
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
17
|
export default _default;
|
|
19
18
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -26,23 +26,22 @@ interface Props {
|
|
|
26
26
|
rootProps?: DrawerRootProps;
|
|
27
27
|
portalProps?: DrawerPortalProps;
|
|
28
28
|
}
|
|
29
|
-
|
|
29
|
+
declare let __VLS_typeProps: Props;
|
|
30
30
|
type __VLS_PublicProps = {
|
|
31
31
|
modelValue?: boolean;
|
|
32
|
-
} &
|
|
32
|
+
} & typeof __VLS_typeProps;
|
|
33
33
|
declare function __VLS_template(): {
|
|
34
|
-
attrs: Partial<{}>;
|
|
35
34
|
slots: {
|
|
36
35
|
default?(_: {}): any;
|
|
37
36
|
};
|
|
38
37
|
refs: {};
|
|
39
|
-
|
|
38
|
+
attrs: Partial<{}>;
|
|
40
39
|
};
|
|
41
40
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
42
41
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
43
|
-
"update:modelValue": (
|
|
42
|
+
"update:modelValue": (modelValue: boolean) => any;
|
|
44
43
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
45
|
-
"onUpdate:modelValue"?: ((
|
|
44
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
46
45
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
47
46
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
48
47
|
export default _default;
|
|
@@ -21,7 +21,6 @@ declare function open(): void;
|
|
|
21
21
|
declare function close(): void;
|
|
22
22
|
declare function toggle(): void;
|
|
23
23
|
declare function __VLS_template(): {
|
|
24
|
-
attrs: Partial<{}>;
|
|
25
24
|
slots: {
|
|
26
25
|
trigger?(_: {
|
|
27
26
|
open: typeof open;
|
|
@@ -62,7 +61,7 @@ declare function __VLS_template(): {
|
|
|
62
61
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
63
62
|
$host: Element | null;
|
|
64
63
|
$emit: (event: "clickOutside") => void;
|
|
65
|
-
$el:
|
|
64
|
+
$el: any;
|
|
66
65
|
$options: import('vue').ComponentOptionsBase<Readonly<import('../Popout/Popout.vue').Props> & Readonly<{
|
|
67
66
|
onClickOutside?: (() => any) | undefined;
|
|
68
67
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -99,7 +98,7 @@ declare function __VLS_template(): {
|
|
|
99
98
|
};
|
|
100
99
|
}) | null;
|
|
101
100
|
};
|
|
102
|
-
|
|
101
|
+
attrs: Partial<{}>;
|
|
103
102
|
};
|
|
104
103
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
105
104
|
declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
@@ -111,69 +110,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
111
110
|
close: () => any;
|
|
112
111
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
113
112
|
onClose?: (() => any) | undefined;
|
|
114
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
115
|
-
anchor: HTMLDivElement;
|
|
116
|
-
dropdown: ({
|
|
117
|
-
$: import('vue').ComponentInternalInstance;
|
|
118
|
-
$data: {};
|
|
119
|
-
$props: {
|
|
120
|
-
readonly anchor: import('../../shared/types').PopoutMaybeElement<HTMLElement>;
|
|
121
|
-
readonly placement?: Placement | undefined;
|
|
122
|
-
readonly offset?: number | undefined;
|
|
123
|
-
readonly onClickOutside?: (() => 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
|
-
popout: HTMLDivElement;
|
|
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: "clickOutside") => void;
|
|
140
|
-
$el: HTMLDivElement;
|
|
141
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('../Popout/Popout.vue').Props> & Readonly<{
|
|
142
|
-
onClickOutside?: (() => any) | undefined;
|
|
143
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
144
|
-
clickOutside: () => any;
|
|
145
|
-
}, string, {
|
|
146
|
-
offset: number;
|
|
147
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
148
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
149
|
-
created?: (() => void) | (() => void)[];
|
|
150
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
151
|
-
mounted?: (() => void) | (() => void)[];
|
|
152
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
153
|
-
updated?: (() => void) | (() => void)[];
|
|
154
|
-
activated?: (() => void) | (() => void)[];
|
|
155
|
-
deactivated?: (() => void) | (() => void)[];
|
|
156
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
157
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
158
|
-
destroyed?: (() => void) | (() => void)[];
|
|
159
|
-
unmounted?: (() => void) | (() => void)[];
|
|
160
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
161
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
162
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
163
|
-
};
|
|
164
|
-
$forceUpdate: () => void;
|
|
165
|
-
$nextTick: typeof import('vue').nextTick;
|
|
166
|
-
$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;
|
|
167
|
-
} & Readonly<{
|
|
168
|
-
offset: number;
|
|
169
|
-
}> & Omit<Readonly<import('../Popout/Popout.vue').Props> & Readonly<{
|
|
170
|
-
onClickOutside?: (() => any) | undefined;
|
|
171
|
-
}>, "offset"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
172
|
-
$slots: {
|
|
173
|
-
default?(_: {}): any;
|
|
174
|
-
};
|
|
175
|
-
}) | null;
|
|
176
|
-
}, any>;
|
|
113
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
177
114
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
178
115
|
export default _default;
|
|
179
116
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -4,16 +4,15 @@ interface Props {
|
|
|
4
4
|
iconEnd?: string;
|
|
5
5
|
}
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
7
|
slots: {
|
|
9
8
|
default?(_: {}): any;
|
|
10
9
|
hint?(_: {}): any;
|
|
11
10
|
};
|
|
12
11
|
refs: {};
|
|
13
|
-
|
|
12
|
+
attrs: Partial<{}>;
|
|
14
13
|
};
|
|
15
14
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
16
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
17
|
export default _default;
|
|
19
18
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
sticky?: boolean;
|
|
3
|
-
};
|
|
4
1
|
declare function __VLS_template(): {
|
|
5
|
-
attrs: Partial<{}>;
|
|
6
2
|
slots: {
|
|
7
3
|
default?(_: {}): any;
|
|
8
4
|
end?(_: {}): any;
|
|
9
5
|
};
|
|
10
6
|
refs: {};
|
|
11
|
-
|
|
7
|
+
attrs: Partial<{}>;
|
|
12
8
|
};
|
|
13
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
11
|
+
sticky?: boolean;
|
|
12
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
13
|
+
sticky?: boolean;
|
|
14
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
16
|
export default _default;
|
|
17
17
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -21,17 +21,16 @@ export interface FlexProps {
|
|
|
21
21
|
expand?: boolean;
|
|
22
22
|
}
|
|
23
23
|
declare function __VLS_template(): {
|
|
24
|
-
attrs: Partial<{}>;
|
|
25
24
|
slots: {
|
|
26
25
|
default?(_: {}): any;
|
|
27
26
|
};
|
|
28
27
|
refs: {};
|
|
29
|
-
|
|
28
|
+
attrs: Partial<{}>;
|
|
30
29
|
};
|
|
31
30
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
32
31
|
declare const __VLS_component: import('vue').DefineComponent<FlexProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FlexProps> & Readonly<{}>, {
|
|
33
32
|
gap: Space | number;
|
|
34
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
35
34
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
35
|
export default _default;
|
|
37
36
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -13,17 +13,16 @@ interface Props {
|
|
|
13
13
|
alignBaseline?: boolean;
|
|
14
14
|
}
|
|
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<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
25
24
|
gap: Space | number;
|
|
26
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
27
|
export default _default;
|
|
29
28
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { InputProps } from './Input.vue';
|
|
2
|
-
|
|
2
|
+
declare let __VLS_typeProps: InputProps;
|
|
3
3
|
type __VLS_PublicProps = {
|
|
4
4
|
modelValue?: string;
|
|
5
|
-
} &
|
|
5
|
+
} & typeof __VLS_typeProps;
|
|
6
6
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
-
"update:modelValue": (
|
|
7
|
+
"update:modelValue": (modelValue: string) => any;
|
|
8
8
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
-
"onUpdate:modelValue"?: ((
|
|
10
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
9
|
+
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
11
|
export default _default;
|