adata-ui 3.1.67 → 3.1.69
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/README.md +84 -84
- package/dist/module.json +1 -1
- package/dist/runtime/components/Alert.vue +26 -26
- package/dist/runtime/components/DigitBadge.vue.d.ts +1 -1
- package/dist/runtime/components/Drawer.vue +12 -16
- package/dist/runtime/components/Drawer.vue.d.ts +0 -4
- package/dist/runtime/components/Header.vue.d.ts +1 -9
- package/dist/runtime/components/Modal.vue.d.ts +3 -9
- package/dist/runtime/components/NewFooter.vue +1 -1
- package/dist/runtime/components/SidePanel.vue.d.ts +1 -1
- package/dist/runtime/components/Tag.vue +4 -4
- package/dist/runtime/components/accordion/Accordion.vue.d.ts +2 -2
- package/dist/runtime/components/button/Button.vue.d.ts +2 -2
- package/dist/runtime/components/checkbox/Checkbox.vue.d.ts +2 -6
- package/dist/runtime/components/error-template/index.vue.d.ts +1 -1
- package/dist/runtime/components/forms/input/password/InputPassword.vue.d.ts +1 -1
- package/dist/runtime/components/forms/input/textarea/ATextarea.vue.d.ts +1 -1
- package/dist/runtime/components/forms/need-more-data/NeedMoreData.vue.d.ts +1 -7
- package/dist/runtime/components/forms/request-demo/RequestDemo.vue.d.ts +1 -5
- package/dist/runtime/components/header/ContactMenu.vue.d.ts +2 -8
- package/dist/runtime/components/header/ListItem.vue +1 -1
- package/dist/runtime/components/header/ProductMenu.vue.d.ts +2 -8
- package/dist/runtime/components/header/ProfileMenu.vue.d.ts +1 -5
- package/dist/runtime/components/header/ProfileMenuContent.vue.d.ts +1 -5
- package/dist/runtime/components/header-mobile/HeaderMobile.vue.d.ts +1 -7
- package/dist/runtime/components/mobile-navigation/BottomNavigation.vue.d.ts +1 -1
- package/dist/runtime/components/mobile-navigation/MainButton.vue.d.ts +1 -5
- package/dist/runtime/components/modals/NoAccessContent.vue.d.ts +1 -5
- package/dist/runtime/components/modals/NoAccessSimple.vue.d.ts +1 -5
- package/dist/runtime/components/pill-tabs/PillTabs.vue.d.ts +2 -10
- package/dist/runtime/components/select-row/index.vue.d.ts +1 -1
- package/dist/runtime/components/tree-select/components/tree-select-nodes.vue +1 -1
- package/dist/runtime/composables/projectState.d.ts +2 -2
- package/dist/runtime/composables/useIdModals.d.ts +11 -21
- package/dist/runtime/composables/useNavigationLInks.d.ts +3 -3
- package/dist/runtime/composables/usePayment.d.ts +5 -5
- package/dist/runtime/i18n.d.ts +1 -1
- package/dist/runtime/icons/arrow/arrow-right.vue +24 -24
- package/dist/runtime/icons/calendar.vue +24 -24
- package/dist/runtime/icons/download.vue +26 -26
- package/dist/runtime/icons/edit.vue +24 -24
- package/dist/runtime/icons/file/excel.vue +88 -88
- package/dist/runtime/icons/id.vue +9 -9
- package/dist/runtime/icons/map-pin-rect.vue +15 -15
- package/dist/runtime/icons/more.vue +36 -36
- package/dist/runtime/icons/plus-circle.vue +24 -24
- package/dist/runtime/icons/tenge.vue +22 -22
- package/dist/runtime/icons/trash.vue +24 -24
- package/dist/runtime/icons/upload.vue +26 -26
- package/dist/runtime/icons/user.vue +30 -30
- package/dist/runtime/icons/warning-triangle.vue +29 -29
- package/dist/runtime/plugins/toast.d.ts +1 -503
- package/dist/runtime/server/tsconfig.json +3 -3
- package/dist/runtime/utils/localizedNavigation.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Get your module up and running quickly.
|
|
3
|
-
|
|
4
|
-
Find and replace all on all files (CMD+SHIFT+F):
|
|
5
|
-
- Name: My Module
|
|
6
|
-
- Package name: my-module
|
|
7
|
-
- Description: My new Nuxt module
|
|
8
|
-
-->
|
|
9
|
-
|
|
10
|
-
# My Module
|
|
11
|
-
|
|
12
|
-
[![npm version][npm-version-src]][npm-version-href]
|
|
13
|
-
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
14
|
-
[![License][license-src]][license-href]
|
|
15
|
-
[![Nuxt][nuxt-src]][nuxt-href]
|
|
16
|
-
|
|
17
|
-
My new Nuxt module for doing amazing things.
|
|
18
|
-
|
|
19
|
-
- [✨ Release Notes](/CHANGELOG.md)
|
|
20
|
-
<!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
|
|
21
|
-
<!-- - [📖 Documentation](https://example.com) -->
|
|
22
|
-
|
|
23
|
-
## Features
|
|
24
|
-
|
|
25
|
-
<!-- Highlight some of the features your module provide here -->
|
|
26
|
-
- ⛰ Foo
|
|
27
|
-
- 🚠 Bar
|
|
28
|
-
- 🌲 Baz
|
|
29
|
-
|
|
30
|
-
## Quick Setup
|
|
31
|
-
|
|
32
|
-
Install the module to your Nuxt application with one command:
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
npx nuxi module add my-module
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
That's it! You can now use My Module in your Nuxt app ✨
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
## Contribution
|
|
42
|
-
|
|
43
|
-
<details>
|
|
44
|
-
<summary>Local development</summary>
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
# Install dependencies
|
|
48
|
-
npm install
|
|
49
|
-
|
|
50
|
-
# Generate type stubs
|
|
51
|
-
npm run dev:prepare
|
|
52
|
-
|
|
53
|
-
# Develop with the playground
|
|
54
|
-
npm run dev
|
|
55
|
-
|
|
56
|
-
# Build the playground
|
|
57
|
-
npm run dev:build
|
|
58
|
-
|
|
59
|
-
# Run ESLint
|
|
60
|
-
npm run lint
|
|
61
|
-
|
|
62
|
-
# Run Vitest
|
|
63
|
-
npm run test
|
|
64
|
-
npm run test:watch
|
|
65
|
-
|
|
66
|
-
# Release new version
|
|
67
|
-
npm run release
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
</details>
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
<!-- Badges -->
|
|
74
|
-
[npm-version-src]: https://img.shields.io/npm/v/my-module/latest.svg?style=flat&colorA=020420&colorB=00DC82
|
|
75
|
-
[npm-version-href]: https://npmjs.com/package/my-module
|
|
76
|
-
|
|
77
|
-
[npm-downloads-src]: https://img.shields.io/npm/dm/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
78
|
-
[npm-downloads-href]: https://npm.chart.dev/my-module
|
|
79
|
-
|
|
80
|
-
[license-src]: https://img.shields.io/npm/l/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
81
|
-
[license-href]: https://npmjs.com/package/my-module
|
|
82
|
-
|
|
83
|
-
[nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
|
|
84
|
-
[nuxt-href]: https://nuxt.com
|
|
1
|
+
<!--
|
|
2
|
+
Get your module up and running quickly.
|
|
3
|
+
|
|
4
|
+
Find and replace all on all files (CMD+SHIFT+F):
|
|
5
|
+
- Name: My Module
|
|
6
|
+
- Package name: my-module
|
|
7
|
+
- Description: My new Nuxt module
|
|
8
|
+
-->
|
|
9
|
+
|
|
10
|
+
# My Module
|
|
11
|
+
|
|
12
|
+
[![npm version][npm-version-src]][npm-version-href]
|
|
13
|
+
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
14
|
+
[![License][license-src]][license-href]
|
|
15
|
+
[![Nuxt][nuxt-src]][nuxt-href]
|
|
16
|
+
|
|
17
|
+
My new Nuxt module for doing amazing things.
|
|
18
|
+
|
|
19
|
+
- [✨ Release Notes](/CHANGELOG.md)
|
|
20
|
+
<!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
|
|
21
|
+
<!-- - [📖 Documentation](https://example.com) -->
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
<!-- Highlight some of the features your module provide here -->
|
|
26
|
+
- ⛰ Foo
|
|
27
|
+
- 🚠 Bar
|
|
28
|
+
- 🌲 Baz
|
|
29
|
+
|
|
30
|
+
## Quick Setup
|
|
31
|
+
|
|
32
|
+
Install the module to your Nuxt application with one command:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npx nuxi module add my-module
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
That's it! You can now use My Module in your Nuxt app ✨
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## Contribution
|
|
42
|
+
|
|
43
|
+
<details>
|
|
44
|
+
<summary>Local development</summary>
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
# Install dependencies
|
|
48
|
+
npm install
|
|
49
|
+
|
|
50
|
+
# Generate type stubs
|
|
51
|
+
npm run dev:prepare
|
|
52
|
+
|
|
53
|
+
# Develop with the playground
|
|
54
|
+
npm run dev
|
|
55
|
+
|
|
56
|
+
# Build the playground
|
|
57
|
+
npm run dev:build
|
|
58
|
+
|
|
59
|
+
# Run ESLint
|
|
60
|
+
npm run lint
|
|
61
|
+
|
|
62
|
+
# Run Vitest
|
|
63
|
+
npm run test
|
|
64
|
+
npm run test:watch
|
|
65
|
+
|
|
66
|
+
# Release new version
|
|
67
|
+
npm run release
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
</details>
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
<!-- Badges -->
|
|
74
|
+
[npm-version-src]: https://img.shields.io/npm/v/my-module/latest.svg?style=flat&colorA=020420&colorB=00DC82
|
|
75
|
+
[npm-version-href]: https://npmjs.com/package/my-module
|
|
76
|
+
|
|
77
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
78
|
+
[npm-downloads-href]: https://npm.chart.dev/my-module
|
|
79
|
+
|
|
80
|
+
[license-src]: https://img.shields.io/npm/l/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
81
|
+
[license-href]: https://npmjs.com/package/my-module
|
|
82
|
+
|
|
83
|
+
[nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
|
|
84
|
+
[nuxt-href]: https://nuxt.com
|
package/dist/module.json
CHANGED
|
@@ -33,30 +33,30 @@ const colorOptions = {
|
|
|
33
33
|
</script>
|
|
34
34
|
|
|
35
35
|
<template>
|
|
36
|
-
<div
|
|
37
|
-
class="inline-flex w-full rounded-md"
|
|
38
|
-
:class="twMerge(colorOptions.description[color], textBgClasses)"
|
|
39
|
-
>
|
|
40
|
-
<div
|
|
41
|
-
class="flex items-center justify-center rounded-l-md"
|
|
42
|
-
:class="twMerge([colorOptions.icon[color], sizeOptions[size]], iconBgClasses)"
|
|
43
|
-
>
|
|
44
|
-
<slot name="icon">
|
|
45
|
-
<i-info-circle
|
|
46
|
-
v-if="iconType == 'circle'"
|
|
47
|
-
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
48
|
-
/>
|
|
49
|
-
<i-warning-triangle
|
|
50
|
-
v-if="iconType == 'triangle'"
|
|
51
|
-
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
52
|
-
/>
|
|
53
|
-
</slot>
|
|
54
|
-
</div>
|
|
55
|
-
<div
|
|
56
|
-
:class="sizeOptions[size]"
|
|
57
|
-
class="rounded-r-md flex items-center"
|
|
58
|
-
>
|
|
59
|
-
<slot name="default" />
|
|
60
|
-
</div>
|
|
61
|
-
</div>
|
|
36
|
+
<div
|
|
37
|
+
class="inline-flex w-full rounded-md"
|
|
38
|
+
:class="twMerge(colorOptions.description[color], textBgClasses)"
|
|
39
|
+
>
|
|
40
|
+
<div
|
|
41
|
+
class="flex items-center justify-center rounded-l-md"
|
|
42
|
+
:class="twMerge([colorOptions.icon[color], sizeOptions[size]], iconBgClasses)"
|
|
43
|
+
>
|
|
44
|
+
<slot name="icon">
|
|
45
|
+
<i-info-circle
|
|
46
|
+
v-if="iconType == 'circle'"
|
|
47
|
+
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
48
|
+
/>
|
|
49
|
+
<i-warning-triangle
|
|
50
|
+
v-if="iconType == 'triangle'"
|
|
51
|
+
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
52
|
+
/>
|
|
53
|
+
</slot>
|
|
54
|
+
</div>
|
|
55
|
+
<div
|
|
56
|
+
:class="sizeOptions[size]"
|
|
57
|
+
class="rounded-r-md flex items-center"
|
|
58
|
+
>
|
|
59
|
+
<slot name="default" />
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
62
|
</template>
|
|
@@ -15,7 +15,7 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
15
15
|
type: "primary" | "success" | "danger" | "gray" | "orange" | "warning";
|
|
16
16
|
view: "default" | "inverted";
|
|
17
17
|
disabled: boolean;
|
|
18
|
-
prefix: string;
|
|
19
18
|
customClasses: string;
|
|
19
|
+
prefix: string;
|
|
20
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
export default _default;
|
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { DrawerRoot, DrawerPortal, DrawerOverlay, DrawerContent, DrawerHandle } from "vaul-vue";
|
|
3
|
-
import { DialogContent } from "reka-ui";
|
|
4
|
-
import { computed } from "#imports";
|
|
5
3
|
const props = defineProps({
|
|
6
|
-
side: { type: String, required: false, default: "bottom" }
|
|
7
|
-
width: { type: Number, required: false, default: 300 },
|
|
8
|
-
height: { type: Number, required: false, default: 300 }
|
|
4
|
+
side: { type: String, required: false, default: "bottom" }
|
|
9
5
|
});
|
|
10
6
|
const open = defineModel({ type: Boolean, ...{ default: false } });
|
|
11
|
-
const sizeStyle = computed(() => {
|
|
12
|
-
if (["left", "right"].includes(props.side)) {
|
|
13
|
-
return { width: `${props.width}px`, height: "100%" };
|
|
14
|
-
}
|
|
15
|
-
return { width: "100%", height: `${props.height}px` };
|
|
16
|
-
});
|
|
17
7
|
const POSITION_CLASSES = {
|
|
18
8
|
right: "top-0 bottom-0 right-0",
|
|
19
9
|
left: "top-0 bottom-0 left-0",
|
|
@@ -32,6 +22,12 @@ const HANDLE_POSITION_CLASSES = {
|
|
|
32
22
|
left: "absolute top-1/2 -translate-y-1/2 rotate-90 !mr-0",
|
|
33
23
|
right: "absolute top-1/2 -translate-y-1/2 rotate-90 !ml-0"
|
|
34
24
|
};
|
|
25
|
+
const MAX_SIZE_CLASSES = {
|
|
26
|
+
top: "sm:max-h-[calc(100vh-48px)] max-h-full",
|
|
27
|
+
bottom: "sm:max-h-[calc(100vh-48px)] max-h-full",
|
|
28
|
+
left: "sm:max-w-[calc(100vw-48px)] max-w-full",
|
|
29
|
+
right: "sm:max-w-[calc(100vw-48px)] max-w-full"
|
|
30
|
+
};
|
|
35
31
|
</script>
|
|
36
32
|
|
|
37
33
|
<template>
|
|
@@ -43,11 +39,11 @@ const HANDLE_POSITION_CLASSES = {
|
|
|
43
39
|
<drawer-overlay class="fixed inset-0 bg-black/50" />
|
|
44
40
|
|
|
45
41
|
<drawer-content
|
|
46
|
-
:style="sizeStyle"
|
|
47
42
|
:class="[
|
|
48
|
-
'fixed bg-white dark:bg-gray-900 shadow-2xl',
|
|
43
|
+
'fixed bg-white dark:bg-gray-900 shadow-2xl flex flex-col',
|
|
49
44
|
POSITION_CLASSES[props.side],
|
|
50
|
-
CORNER_CLASSES[props.side]
|
|
45
|
+
CORNER_CLASSES[props.side],
|
|
46
|
+
MAX_SIZE_CLASSES[props.side]
|
|
51
47
|
]"
|
|
52
48
|
>
|
|
53
49
|
<drawer-handle
|
|
@@ -62,12 +58,12 @@ const HANDLE_POSITION_CLASSES = {
|
|
|
62
58
|
>
|
|
63
59
|
<slot name="header" />
|
|
64
60
|
</div>
|
|
65
|
-
<div class="p-4">
|
|
61
|
+
<div class="p-4 flex-1 overflow-y-auto">
|
|
66
62
|
<slot name="default" />
|
|
67
63
|
</div>
|
|
68
64
|
<div
|
|
69
65
|
v-if="$slots.footer"
|
|
70
|
-
class="border-
|
|
66
|
+
class="border-t border-deepblue-900/5 dark:border-gray-200/5 p-4"
|
|
71
67
|
>
|
|
72
68
|
<slot name="footer" />
|
|
73
69
|
</div>
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
side?: 'right' | 'left' | 'top' | 'bottom';
|
|
3
|
-
width?: number;
|
|
4
|
-
height?: number;
|
|
5
3
|
};
|
|
6
4
|
type __VLS_PublicProps = __VLS_Props & {
|
|
7
5
|
modelValue?: boolean;
|
|
@@ -19,8 +17,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
19
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
18
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
21
19
|
}>, {
|
|
22
|
-
width: number;
|
|
23
|
-
height: number;
|
|
24
20
|
side: "right" | "left" | "top" | "bottom";
|
|
25
21
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
22
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -23,15 +23,7 @@ type __VLS_Slots = {} & {
|
|
|
23
23
|
} & {
|
|
24
24
|
notifications?: (props: typeof __VLS_54) => any;
|
|
25
25
|
};
|
|
26
|
-
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
|
-
search: (...args: any[]) => void;
|
|
28
|
-
logout: (...args: any[]) => void;
|
|
29
|
-
login: (...args: any[]) => void;
|
|
30
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
31
|
-
onSearch?: ((...args: any[]) => any) | undefined;
|
|
32
|
-
onLogout?: ((...args: any[]) => any) | undefined;
|
|
33
|
-
onLogin?: ((...args: any[]) => any) | undefined;
|
|
34
|
-
}>, {
|
|
26
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
35
27
|
daysRemaining: number;
|
|
36
28
|
limitRemaining: number;
|
|
37
29
|
isAuthenticated: boolean;
|
|
@@ -21,21 +21,15 @@ type __VLS_Slots = {} & {
|
|
|
21
21
|
} & {
|
|
22
22
|
footer?: (props: typeof __VLS_22) => any;
|
|
23
23
|
};
|
|
24
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
-
close: (...args: any[]) => void;
|
|
26
|
-
"update:modelValue": (value: boolean | undefined) => void;
|
|
27
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
28
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
29
|
-
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
30
|
-
}>, {
|
|
24
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {
|
|
31
25
|
name: string;
|
|
32
|
-
title: string;
|
|
33
26
|
transition: boolean;
|
|
34
|
-
|
|
27
|
+
title: string;
|
|
35
28
|
overlay: boolean;
|
|
36
29
|
preventClose: boolean;
|
|
37
30
|
fullscreen: boolean;
|
|
38
31
|
isScrollable: boolean;
|
|
32
|
+
width: string | number;
|
|
39
33
|
heightModalClass: string;
|
|
40
34
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
41
35
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -27,9 +27,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
27
27
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
28
28
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
|
+
side: "right" | "left" | "top" | "bottom";
|
|
30
31
|
width: number;
|
|
31
32
|
height: number;
|
|
32
|
-
side: "right" | "left" | "top" | "bottom";
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
35
35
|
export default _default;
|
|
@@ -39,8 +39,8 @@ const typeSwitchValues = {
|
|
|
39
39
|
</script>
|
|
40
40
|
|
|
41
41
|
<template>
|
|
42
|
-
<div :class="[[classes], customClasses]">
|
|
43
|
-
<slot name="point" />
|
|
44
|
-
<slot />
|
|
45
|
-
</div>
|
|
42
|
+
<div :class="[[classes], customClasses]">
|
|
43
|
+
<slot name="point" />
|
|
44
|
+
<slot />
|
|
45
|
+
</div>
|
|
46
46
|
</template>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Props } from './types.js';
|
|
2
2
|
declare function emulateButtonClick(): void;
|
|
3
|
-
declare var __VLS_20: {}, __VLS_22: {}, __VLS_28: {}, __VLS_35:
|
|
3
|
+
declare var __VLS_20: {}, __VLS_22: {}, __VLS_28: {}, __VLS_35: any, __VLS_36: {
|
|
4
4
|
content: any;
|
|
5
5
|
};
|
|
6
6
|
type __VLS_Slots = {} & {
|
|
@@ -27,8 +27,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
|
27
27
|
}>, {
|
|
28
28
|
size: import("./types.js").Size;
|
|
29
29
|
color: import("./types.js").Color;
|
|
30
|
-
slot: string;
|
|
31
30
|
disabled: boolean;
|
|
31
|
+
slot: string;
|
|
32
32
|
defaultOpen: boolean;
|
|
33
33
|
divider: boolean;
|
|
34
34
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -19,14 +19,14 @@ type __VLS_Slots = {} & {
|
|
|
19
19
|
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
20
20
|
size: "sm" | "md" | "lg" | "xl";
|
|
21
21
|
view: "default" | "outline" | "transparent";
|
|
22
|
-
form: "icon" | "button";
|
|
23
22
|
disabled: boolean;
|
|
24
|
-
to: string;
|
|
25
23
|
variant: "primary" | "success" | "danger" | "gray" | "ghost";
|
|
24
|
+
form: "icon" | "button";
|
|
26
25
|
iconClass: string;
|
|
27
26
|
loading: boolean;
|
|
28
27
|
block: boolean;
|
|
29
28
|
active: boolean;
|
|
29
|
+
to: string;
|
|
30
30
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
31
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
32
32
|
export default _default;
|
|
@@ -22,15 +22,11 @@ type __VLS_Slots = {} & {
|
|
|
22
22
|
} & {
|
|
23
23
|
default?: (props: typeof __VLS_17) => any;
|
|
24
24
|
};
|
|
25
|
-
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
|
-
"update:modelValue": (...args: any[]) => void;
|
|
27
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
28
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
29
|
-
}>, {
|
|
25
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
30
26
|
name: string;
|
|
31
27
|
size: "lg" | "sm";
|
|
32
|
-
modelValue: string | number | Array<any> | object | boolean | null;
|
|
33
28
|
value: string | number | object | null;
|
|
29
|
+
modelValue: string | number | Array<any> | object | boolean | null;
|
|
34
30
|
side: "right" | "left" | null;
|
|
35
31
|
masterControl: boolean;
|
|
36
32
|
emptyCheckboxClass: string;
|
|
@@ -8,8 +8,8 @@ interface Props {
|
|
|
8
8
|
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
9
9
|
size: "sm" | "md";
|
|
10
10
|
error: string;
|
|
11
|
-
label: string;
|
|
12
11
|
disabled: boolean;
|
|
13
12
|
required: boolean;
|
|
13
|
+
label: string;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
15
|
export default _default;
|
|
@@ -25,9 +25,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
25
25
|
}>, {
|
|
26
26
|
size: "sm" | "md";
|
|
27
27
|
error: string | boolean;
|
|
28
|
-
label: string;
|
|
29
28
|
disabled: boolean;
|
|
30
29
|
required: boolean;
|
|
30
|
+
label: string;
|
|
31
31
|
readonly: boolean;
|
|
32
32
|
clearable: boolean;
|
|
33
33
|
startIcon: string | object;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
type __VLS_PublicProps = {
|
|
2
2
|
'isLoading'?: boolean;
|
|
3
3
|
};
|
|
4
|
-
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
-
submit: (...args: any[]) => void;
|
|
6
|
-
"update:isLoading": (value: boolean) => void;
|
|
7
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
8
|
-
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
9
|
-
"onUpdate:isLoading"?: ((value: boolean) => any) | undefined;
|
|
10
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
5
|
export default _default;
|
|
@@ -12,11 +12,7 @@ type __VLS_Slots = {} & {
|
|
|
12
12
|
} & {
|
|
13
13
|
info?: (props: typeof __VLS_27) => any;
|
|
14
14
|
};
|
|
15
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
-
send: (...args: any[]) => void;
|
|
17
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
-
onSend?: ((...args: any[]) => any) | undefined;
|
|
19
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
16
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
21
17
|
export default _default;
|
|
22
18
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -3,15 +3,9 @@ type __VLS_Props = {
|
|
|
3
3
|
index?: number;
|
|
4
4
|
url?: string;
|
|
5
5
|
};
|
|
6
|
-
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
outerClick: (...args: any[]) => void;
|
|
8
|
-
mouseOver: (...args: any[]) => void;
|
|
9
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
-
onOuterClick?: ((...args: any[]) => any) | undefined;
|
|
11
|
-
onMouseOver?: ((...args: any[]) => any) | undefined;
|
|
12
|
-
}>, {
|
|
13
|
-
animation: string;
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
14
7
|
index: number;
|
|
8
|
+
animation: string;
|
|
15
9
|
url: string;
|
|
16
10
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
11
|
export default _default;
|
|
@@ -3,15 +3,9 @@ type __VLS_Props = {
|
|
|
3
3
|
index?: number;
|
|
4
4
|
url?: string;
|
|
5
5
|
};
|
|
6
|
-
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
outerClick: (...args: any[]) => void;
|
|
8
|
-
mouseOver: (...args: any[]) => void;
|
|
9
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
-
onOuterClick?: ((...args: any[]) => any) | undefined;
|
|
11
|
-
onMouseOver?: ((...args: any[]) => any) | undefined;
|
|
12
|
-
}>, {
|
|
13
|
-
animation: string;
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
14
7
|
index: number;
|
|
8
|
+
animation: string;
|
|
15
9
|
url: string;
|
|
16
10
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
11
|
export default _default;
|
|
@@ -9,11 +9,7 @@ interface Props {
|
|
|
9
9
|
email?: string;
|
|
10
10
|
showLogin?: boolean;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
-
logout: (...args: any[]) => void;
|
|
14
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
15
|
-
onLogout?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
}>, {
|
|
12
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
17
13
|
daysRemaining: number;
|
|
18
14
|
limitRemaining: number;
|
|
19
15
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -10,11 +10,7 @@ interface Props {
|
|
|
10
10
|
email?: string;
|
|
11
11
|
showLogin?: boolean;
|
|
12
12
|
}
|
|
13
|
-
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
-
logout: (...args: any[]) => void;
|
|
15
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
16
|
-
onLogout?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
}>, {
|
|
13
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
18
14
|
daysRemaining: number;
|
|
19
15
|
limitRemaining: number;
|
|
20
16
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -7,13 +7,7 @@ declare var __VLS_1: {};
|
|
|
7
7
|
type __VLS_Slots = {} & {
|
|
8
8
|
burger?: (props: typeof __VLS_1) => any;
|
|
9
9
|
};
|
|
10
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
search: (...args: any[]) => void;
|
|
12
|
-
goToAnotherModule: (...args: any[]) => void;
|
|
13
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
-
onSearch?: ((...args: any[]) => any) | undefined;
|
|
15
|
-
onGoToAnotherModule?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
11
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
12
|
export default _default;
|
|
19
13
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
-
pushMain: (...args: any[]) => void;
|
|
3
|
-
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
4
|
-
onPushMain?: ((...args: any[]) => any) | undefined;
|
|
5
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
2
|
export default _default;
|