adata-ui 4.0.34 → 4.0.36
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/Header.vue.d.ts +1 -1
- package/dist/runtime/components/Tag.vue +4 -4
- package/dist/runtime/components/accordion/Accordion.vue.d.ts +1 -1
- package/dist/runtime/components/button/Button.vue +1 -1
- package/dist/runtime/components/button/Button.vue.d.ts +2 -2
- package/dist/runtime/components/forms/input/textarea/ATextarea.vue.d.ts +1 -1
- package/dist/runtime/components/modals/NoAccessContent.vue +4 -1
- package/dist/runtime/components/modals/NoAccessContent.vue.d.ts +4 -1
- package/dist/runtime/components/pill-tabs/PillTabs.vue.d.ts +1 -1
- package/dist/runtime/components/row-card/RowCard.vue +1 -1
- package/dist/runtime/composables/projectState.d.ts +1 -1
- package/dist/runtime/i18n.d.ts +1 -1
- package/dist/runtime/icons/warning-triangle.vue +29 -29
- package/dist/runtime/server/tsconfig.json +3 -3
- package/package.json +64 -64
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
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
class="inline-flex w-full rounded-md"
|
|
4
|
-
:class="twMerge(colorOptions.description[color], textBgClasses)"
|
|
5
|
-
>
|
|
6
|
-
<div
|
|
7
|
-
class="flex items-center justify-center rounded-l-md"
|
|
8
|
-
:class="twMerge([colorOptions.icon[color], sizeOptions[size]], iconBgClasses)"
|
|
9
|
-
>
|
|
10
|
-
<slot name="icon">
|
|
11
|
-
<i-info-circle
|
|
12
|
-
v-if="iconType == 'circle'"
|
|
13
|
-
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
14
|
-
/>
|
|
15
|
-
<i-warning-triangle
|
|
16
|
-
v-if="iconType == 'triangle'"
|
|
17
|
-
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
18
|
-
/>
|
|
19
|
-
</slot>
|
|
20
|
-
</div>
|
|
21
|
-
<div
|
|
22
|
-
:class="sizeOptions[size]"
|
|
23
|
-
class="rounded-r-md flex items-center"
|
|
24
|
-
>
|
|
25
|
-
<slot name="default" />
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
2
|
+
<div
|
|
3
|
+
class="inline-flex w-full rounded-md"
|
|
4
|
+
:class="twMerge(colorOptions.description[color], textBgClasses)"
|
|
5
|
+
>
|
|
6
|
+
<div
|
|
7
|
+
class="flex items-center justify-center rounded-l-md"
|
|
8
|
+
:class="twMerge([colorOptions.icon[color], sizeOptions[size]], iconBgClasses)"
|
|
9
|
+
>
|
|
10
|
+
<slot name="icon">
|
|
11
|
+
<i-info-circle
|
|
12
|
+
v-if="iconType == 'circle'"
|
|
13
|
+
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
14
|
+
/>
|
|
15
|
+
<i-warning-triangle
|
|
16
|
+
v-if="iconType == 'triangle'"
|
|
17
|
+
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
18
|
+
/>
|
|
19
|
+
</slot>
|
|
20
|
+
</div>
|
|
21
|
+
<div
|
|
22
|
+
:class="sizeOptions[size]"
|
|
23
|
+
class="rounded-r-md flex items-center"
|
|
24
|
+
>
|
|
25
|
+
<slot name="default" />
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
28
|
</template>
|
|
29
29
|
|
|
30
30
|
<script setup>
|
|
@@ -26,10 +26,10 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
26
26
|
daysRemaining: number;
|
|
27
27
|
limitRemaining: number;
|
|
28
28
|
isAuthenticated: boolean;
|
|
29
|
-
mobileHeaderType: "search" | "default";
|
|
30
29
|
module: ProjectKeys;
|
|
31
30
|
rate: string;
|
|
32
31
|
balance: number;
|
|
32
|
+
mobileHeaderType: "search" | "default";
|
|
33
33
|
showLogIn: boolean;
|
|
34
34
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
35
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -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>
|
|
@@ -28,8 +28,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
|
28
28
|
size: import("./types.js").Size;
|
|
29
29
|
color: import("./types.js").Color;
|
|
30
30
|
disabled: boolean;
|
|
31
|
-
defaultOpen: boolean;
|
|
32
31
|
slot: string;
|
|
32
|
+
defaultOpen: boolean;
|
|
33
33
|
divider: boolean;
|
|
34
34
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
35
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -8,7 +8,7 @@ const props = defineProps({
|
|
|
8
8
|
view: { type: String, required: false, default: "default" },
|
|
9
9
|
size: { type: String, required: false, default: "lg" },
|
|
10
10
|
form: { type: String, required: false, default: "button" },
|
|
11
|
-
icon: { type:
|
|
11
|
+
icon: { type: null, required: false },
|
|
12
12
|
iconClass: { type: String, required: false, default: "" },
|
|
13
13
|
loading: { type: Boolean, required: false, default: false },
|
|
14
14
|
disabled: { type: Boolean, required: false, default: false },
|
|
@@ -21,12 +21,12 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
21
21
|
disabled: boolean;
|
|
22
22
|
active: boolean;
|
|
23
23
|
view: "default" | "outline" | "transparent";
|
|
24
|
-
to: string;
|
|
25
|
-
loading: boolean;
|
|
26
24
|
variant: "primary" | "success" | "danger" | "gray" | "ghost";
|
|
27
25
|
form: "icon" | "button";
|
|
28
26
|
iconClass: string;
|
|
27
|
+
loading: boolean;
|
|
29
28
|
block: 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;
|
|
@@ -24,9 +24,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
24
24
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
26
|
size: "sm" | "md";
|
|
27
|
-
error: string | boolean;
|
|
28
27
|
disabled: boolean;
|
|
29
28
|
required: boolean;
|
|
29
|
+
error: string | boolean;
|
|
30
30
|
label: string;
|
|
31
31
|
readonly: boolean;
|
|
32
32
|
clearable: boolean;
|
|
@@ -3,6 +3,9 @@ import AButton from "../button/Button.vue";
|
|
|
3
3
|
import { useAppConfig, useI18n } from "#imports";
|
|
4
4
|
import { navigateTo } from "#app";
|
|
5
5
|
import { useLocalePath } from "#i18n";
|
|
6
|
+
const props = defineProps({
|
|
7
|
+
redirectPath: { type: String, required: true }
|
|
8
|
+
});
|
|
6
9
|
const emit = defineEmits(["close"]);
|
|
7
10
|
const { t } = useI18n();
|
|
8
11
|
const appConfig = useAppConfig();
|
|
@@ -10,7 +13,7 @@ const mode = appConfig.adataUI.mode;
|
|
|
10
13
|
const localePath = useLocalePath();
|
|
11
14
|
function logIn() {
|
|
12
15
|
const fullPath = encodeURIComponent(window.location.toString());
|
|
13
|
-
return navigateTo(localePath(`https://id.${mode}.kz/?url=${fullPath}`), { external: true });
|
|
16
|
+
return navigateTo(localePath(`https://id.${mode}.kz/?url=${fullPath}${props.redirectPath}`), { external: true });
|
|
14
17
|
}
|
|
15
18
|
function register() {
|
|
16
19
|
return navigateTo(localePath(`https://id.${mode}.kz/register`), { external: true });
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
redirectPath: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
2
5
|
export default _default;
|
|
@@ -24,8 +24,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
24
24
|
size: "lg" | "sm" | "xs";
|
|
25
25
|
view: "transparent" | "main" | "gray" | "blue" | "mobile";
|
|
26
26
|
block: boolean;
|
|
27
|
-
align: "left" | "center";
|
|
28
27
|
badgeSize: "sm" | "md" | "lg";
|
|
28
|
+
align: "left" | "center";
|
|
29
29
|
wrapper: "column" | "row";
|
|
30
30
|
countView: "badge" | "brackets";
|
|
31
31
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -7,7 +7,7 @@ const props = defineProps({
|
|
|
7
7
|
titleClasses: { type: String, required: false },
|
|
8
8
|
cardClasses: { type: String, required: false },
|
|
9
9
|
valueClasses: { type: String, required: false },
|
|
10
|
-
icon: { type:
|
|
10
|
+
icon: { type: null, required: false }
|
|
11
11
|
});
|
|
12
12
|
const combinedCardClasses = twMerge("flex justify-between items-center rounded-md py-3 px-4 dark:bg-gray-900 bg-white", props.cardClasses);
|
|
13
13
|
const combinedLeadingClasses = twMerge("rounded-full size-4", props.leadingColor);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useContacts: () =>
|
|
1
|
+
export declare const useContacts: () => any;
|
package/dist/runtime/i18n.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: any;
|
|
2
2
|
export default _default;
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
<script setup lang="ts"></script>
|
|
2
|
-
|
|
3
|
-
<template>
|
|
4
|
-
<svg
|
|
5
|
-
width="1em"
|
|
6
|
-
height="1em"
|
|
7
|
-
viewBox="0 0 21 18"
|
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
-
>
|
|
10
|
-
<path
|
|
11
|
-
fill-rule="evenodd"
|
|
12
|
-
clip-rule="evenodd"
|
|
13
|
-
d="M20.8346 15.9914L12.328 0.753631C12.1982 0.526725 12.001 0.336301 11.7581 0.20333C11.5153 0.0703596 11.2361 0 10.9515 0C10.6668 0 10.3877 0.0703596 10.1448 0.20333C9.90195 0.336301 9.70476 0.526725 9.57497 0.753631L1.06841 15.9914C0.949762 16.2023 0.893275 16.4368 0.904309 16.6727C0.915344 16.9087 0.993533 17.1381 1.13145 17.3394C1.26937 17.5406 1.46244 17.707 1.69232 17.8226C1.92221 17.9382 2.18127 17.9993 2.44492 18H19.458C19.7217 17.9993 19.9808 17.9382 20.2106 17.8226C20.4405 17.707 20.6336 17.5406 20.7715 17.3394C20.9094 17.1381 20.9876 16.9087 20.9987 16.6727C21.0097 16.4368 20.9532 16.2023 20.8346 15.9914ZM19.4006 16.5L11.0372 1.51872C11.0214 1.51021 10.9912 1.5 10.9515 1.5C10.9118 1.5 10.8816 1.51021 10.8658 1.51872L2.50238 16.5H19.4006Z"
|
|
14
|
-
fill="currentColor"
|
|
15
|
-
/>
|
|
16
|
-
<path
|
|
17
|
-
fill-rule="evenodd"
|
|
18
|
-
clip-rule="evenodd"
|
|
19
|
-
d="M11 5.5C11.4142 5.5 11.75 5.83579 11.75 6.25V10.748C11.75 11.1623 11.4142 11.498 11 11.498C10.5858 11.498 10.25 11.1623 10.25 10.748V6.25C10.25 5.83579 10.5858 5.5 11 5.5Z"
|
|
20
|
-
fill="currentColor"
|
|
21
|
-
/>
|
|
22
|
-
<path
|
|
23
|
-
d="M11.75 13.75C11.75 14.1642 11.4142 14.5 11 14.5C10.5858 14.5 10.25 14.1642 10.25 13.75C10.25 13.3358 10.5858 13 11 13C11.4142 13 11.75 13.3358 11.75 13.75Z"
|
|
24
|
-
fill="currentColor"
|
|
25
|
-
/>
|
|
26
|
-
</svg>
|
|
27
|
-
</template>
|
|
28
|
-
|
|
29
|
-
<style scoped></style>
|
|
1
|
+
<script setup lang="ts"></script>
|
|
2
|
+
|
|
3
|
+
<template>
|
|
4
|
+
<svg
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
viewBox="0 0 21 18"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
>
|
|
10
|
+
<path
|
|
11
|
+
fill-rule="evenodd"
|
|
12
|
+
clip-rule="evenodd"
|
|
13
|
+
d="M20.8346 15.9914L12.328 0.753631C12.1982 0.526725 12.001 0.336301 11.7581 0.20333C11.5153 0.0703596 11.2361 0 10.9515 0C10.6668 0 10.3877 0.0703596 10.1448 0.20333C9.90195 0.336301 9.70476 0.526725 9.57497 0.753631L1.06841 15.9914C0.949762 16.2023 0.893275 16.4368 0.904309 16.6727C0.915344 16.9087 0.993533 17.1381 1.13145 17.3394C1.26937 17.5406 1.46244 17.707 1.69232 17.8226C1.92221 17.9382 2.18127 17.9993 2.44492 18H19.458C19.7217 17.9993 19.9808 17.9382 20.2106 17.8226C20.4405 17.707 20.6336 17.5406 20.7715 17.3394C20.9094 17.1381 20.9876 16.9087 20.9987 16.6727C21.0097 16.4368 20.9532 16.2023 20.8346 15.9914ZM19.4006 16.5L11.0372 1.51872C11.0214 1.51021 10.9912 1.5 10.9515 1.5C10.9118 1.5 10.8816 1.51021 10.8658 1.51872L2.50238 16.5H19.4006Z"
|
|
14
|
+
fill="currentColor"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
fill-rule="evenodd"
|
|
18
|
+
clip-rule="evenodd"
|
|
19
|
+
d="M11 5.5C11.4142 5.5 11.75 5.83579 11.75 6.25V10.748C11.75 11.1623 11.4142 11.498 11 11.498C10.5858 11.498 10.25 11.1623 10.25 10.748V6.25C10.25 5.83579 10.5858 5.5 11 5.5Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
d="M11.75 13.75C11.75 14.1642 11.4142 14.5 11 14.5C10.5858 14.5 10.25 14.1642 10.25 13.75C10.25 13.3358 10.5858 13 11 13C11.4142 13 11.75 13.3358 11.75 13.75Z"
|
|
24
|
+
fill="currentColor"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
</template>
|
|
28
|
+
|
|
29
|
+
<style scoped></style>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../../.nuxt/tsconfig.server.json",
|
|
3
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../.nuxt/tsconfig.server.json",
|
|
3
|
+
}
|
package/package.json
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "adata-ui",
|
|
3
|
-
"version": "4.0.
|
|
4
|
-
"description": "Adata UI",
|
|
5
|
-
"repository": "your-org/my-module",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/types.d.mts",
|
|
11
|
-
"import": "./dist/module.mjs"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"main": "./dist/module.mjs",
|
|
15
|
-
"typesVersions": {
|
|
16
|
-
"*": {
|
|
17
|
-
".": [
|
|
18
|
-
"./dist/types.d.mts"
|
|
19
|
-
]
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"files": [
|
|
23
|
-
"dist"
|
|
24
|
-
],
|
|
25
|
-
"scripts": {
|
|
26
|
-
"prepack": "nuxt-module-build build",
|
|
27
|
-
"dev": "nuxi dev playground",
|
|
28
|
-
"dev:build": "nuxi build playground",
|
|
29
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
30
|
-
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
31
|
-
"lint": "eslint .",
|
|
32
|
-
"test": "vitest run",
|
|
33
|
-
"test:watch": "vitest watch",
|
|
34
|
-
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
35
|
-
},
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@nuxt/kit": "^3.17.2",
|
|
38
|
-
"@nuxtjs/color-mode": "^3.5.2",
|
|
39
|
-
"@nuxtjs/i18n": "^9.5.4",
|
|
40
|
-
"@tailwindcss/postcss": "^4.1.6",
|
|
41
|
-
"@tailwindcss/vite": "^4.1.6",
|
|
42
|
-
"defu": "^6.1.4",
|
|
43
|
-
"reka-ui": "^2.2.1",
|
|
44
|
-
"sass": "^1.89.0",
|
|
45
|
-
"tailwind-merge": "^3.3.0",
|
|
46
|
-
"tailwindcss": "^4.1.6"
|
|
47
|
-
},
|
|
48
|
-
"devDependencies": {
|
|
49
|
-
"@nuxt/devtools": "^2.4.0",
|
|
50
|
-
"@nuxt/eslint-config": "^1.3.0",
|
|
51
|
-
"@nuxt/module-builder": "^1.0.1",
|
|
52
|
-
"@nuxt/schema": "^3.17.2",
|
|
53
|
-
"@nuxt/test-utils": "^3.18.0",
|
|
54
|
-
"@types/node": "latest",
|
|
55
|
-
"changelogen": "^0.6.1",
|
|
56
|
-
"eslint": "^9.26.0",
|
|
57
|
-
"nuxt": "^3.17.2",
|
|
58
|
-
"sass-embedded": "^1.89.0",
|
|
59
|
-
"typescript": "~5.8.3",
|
|
60
|
-
"vitest": "^3.1.2",
|
|
61
|
-
"vue-tsc": "^2.2.10"
|
|
62
|
-
},
|
|
63
|
-
"packageManager": "pnpm@8.7.6+sha1.a428b12202bc4f23b17e6dffe730734dae5728e2"
|
|
64
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "adata-ui",
|
|
3
|
+
"version": "4.0.36",
|
|
4
|
+
"description": "Adata UI",
|
|
5
|
+
"repository": "your-org/my-module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/types.d.mts",
|
|
11
|
+
"import": "./dist/module.mjs"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/module.mjs",
|
|
15
|
+
"typesVersions": {
|
|
16
|
+
"*": {
|
|
17
|
+
".": [
|
|
18
|
+
"./dist/types.d.mts"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"prepack": "nuxt-module-build build",
|
|
27
|
+
"dev": "nuxi dev playground",
|
|
28
|
+
"dev:build": "nuxi build playground",
|
|
29
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
30
|
+
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
31
|
+
"lint": "eslint .",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:watch": "vitest watch",
|
|
34
|
+
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@nuxt/kit": "^3.17.2",
|
|
38
|
+
"@nuxtjs/color-mode": "^3.5.2",
|
|
39
|
+
"@nuxtjs/i18n": "^9.5.4",
|
|
40
|
+
"@tailwindcss/postcss": "^4.1.6",
|
|
41
|
+
"@tailwindcss/vite": "^4.1.6",
|
|
42
|
+
"defu": "^6.1.4",
|
|
43
|
+
"reka-ui": "^2.2.1",
|
|
44
|
+
"sass": "^1.89.0",
|
|
45
|
+
"tailwind-merge": "^3.3.0",
|
|
46
|
+
"tailwindcss": "^4.1.6"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@nuxt/devtools": "^2.4.0",
|
|
50
|
+
"@nuxt/eslint-config": "^1.3.0",
|
|
51
|
+
"@nuxt/module-builder": "^1.0.1",
|
|
52
|
+
"@nuxt/schema": "^3.17.2",
|
|
53
|
+
"@nuxt/test-utils": "^3.18.0",
|
|
54
|
+
"@types/node": "latest",
|
|
55
|
+
"changelogen": "^0.6.1",
|
|
56
|
+
"eslint": "^9.26.0",
|
|
57
|
+
"nuxt": "^3.17.2",
|
|
58
|
+
"sass-embedded": "^1.89.0",
|
|
59
|
+
"typescript": "~5.8.3",
|
|
60
|
+
"vitest": "^3.1.2",
|
|
61
|
+
"vue-tsc": "^2.2.10"
|
|
62
|
+
},
|
|
63
|
+
"packageManager": "pnpm@8.7.6+sha1.a428b12202bc4f23b17e6dffe730734dae5728e2"
|
|
64
|
+
}
|