adata-ui 4.0.39 → 4.0.41

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.
Files changed (31) hide show
  1. package/README.md +84 -84
  2. package/dist/module.json +1 -1
  3. package/dist/runtime/components/Alert.vue +26 -26
  4. package/dist/runtime/components/Header.vue.d.ts +1 -1
  5. package/dist/runtime/components/Tag.vue +4 -4
  6. package/dist/runtime/components/accordion/Accordion.vue.d.ts +1 -1
  7. package/dist/runtime/components/button/Button.vue +1 -1
  8. package/dist/runtime/components/button/Button.vue.d.ts +2 -2
  9. package/dist/runtime/components/forms/input/textarea/ATextarea.vue +1 -0
  10. package/dist/runtime/components/forms/input/textarea/ATextarea.vue.d.ts +1 -1
  11. package/dist/runtime/components/pill-tabs/PillTabs.vue.d.ts +1 -1
  12. package/dist/runtime/components/row-card/RowCard.vue +1 -1
  13. package/dist/runtime/composables/projectState.d.ts +2 -2
  14. package/dist/runtime/i18n.d.ts +1 -1
  15. package/dist/runtime/icons/arrow/arrow-right.vue +24 -0
  16. package/dist/runtime/icons/arrow/arrow-right.vue.d.ts +2 -0
  17. package/dist/runtime/icons/calendar.vue +24 -0
  18. package/dist/runtime/icons/calendar.vue.d.ts +2 -0
  19. package/dist/runtime/icons/download.vue +26 -0
  20. package/dist/runtime/icons/download.vue.d.ts +2 -0
  21. package/dist/runtime/icons/file/excel.vue +88 -0
  22. package/dist/runtime/icons/file/excel.vue.d.ts +2 -0
  23. package/dist/runtime/icons/more.vue +36 -0
  24. package/dist/runtime/icons/more.vue.d.ts +2 -0
  25. package/dist/runtime/icons/plus-circle.vue +24 -0
  26. package/dist/runtime/icons/plus-circle.vue.d.ts +2 -0
  27. package/dist/runtime/icons/upload.vue +26 -0
  28. package/dist/runtime/icons/upload.vue.d.ts +2 -0
  29. package/dist/runtime/icons/warning-triangle.vue +29 -29
  30. package/dist/runtime/server/tsconfig.json +3 -3
  31. 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
- - [✨ &nbsp;Release Notes](/CHANGELOG.md)
20
- <!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
21
- <!-- - [📖 &nbsp;Documentation](https://example.com) -->
22
-
23
- ## Features
24
-
25
- <!-- Highlight some of the features your module provide here -->
26
- - ⛰ &nbsp;Foo
27
- - 🚠 &nbsp;Bar
28
- - 🌲 &nbsp;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
+ - [✨ &nbsp;Release Notes](/CHANGELOG.md)
20
+ <!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
21
+ <!-- - [📖 &nbsp;Documentation](https://example.com) -->
22
+
23
+ ## Features
24
+
25
+ <!-- Highlight some of the features your module provide here -->
26
+ - ⛰ &nbsp;Foo
27
+ - 🚠 &nbsp;Bar
28
+ - 🌲 &nbsp;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
@@ -5,7 +5,7 @@
5
5
  "nuxt": ">=3.16.0"
6
6
  },
7
7
  "failOnWarn": false,
8
- "version": "4.0.39",
8
+ "version": "4.0.41",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "1.0.1",
11
11
  "unbuild": "3.5.0"
@@ -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: [Object, Function], required: false },
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;
@@ -1,6 +1,7 @@
1
1
  <script setup>
2
2
  import { twMerge, twJoin } from "tailwind-merge";
3
3
  import AAlert from "../../../Alert.vue";
4
+ import { computed } from "#imports";
4
5
  const props = defineProps({
5
6
  disabled: { type: Boolean, required: false, default: false },
6
7
  label: { type: String, required: false, 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;
@@ -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: [Object, Function], required: false }
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,2 +1,2 @@
1
- export declare const useCurrentModule: () => import("vue").Ref<string, string>;
2
- export declare const useContacts: () => import("vue").Ref<any, any>;
1
+ export declare const useCurrentModule: () => any;
2
+ export declare const useContacts: () => any;
@@ -1,2 +1,2 @@
1
- declare const _default: import("#app").Plugin<Record<string, unknown>> & import("#app").ObjectPlugin<Record<string, unknown>>;
1
+ declare const _default: any;
2
2
  export default _default;
@@ -0,0 +1,24 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="25"
8
+ height="24"
9
+ viewBox="0 0 25 24"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ d="M8.70938 5.23017C8.99647 4.93159 9.47125 4.92228 9.76983 5.20938L16.2698 11.4594C16.4169 11.6008 16.5 11.796 16.5 12C16.5 12.204 16.4169 12.3992 16.2698 12.5406L9.76983 18.7906C9.47125 19.0777 8.99647 19.0684 8.70938 18.7698C8.42228 18.4713 8.43159 17.9965 8.73017 17.7094L14.6679 12L8.73017 6.29063C8.43159 6.00353 8.42228 5.52875 8.70938 5.23017Z"
17
+ fill="currentColor"
18
+ />
19
+ </svg>
20
+ </template>
21
+
22
+ <style scoped>
23
+
24
+ </style>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,24 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ d="M10.5669 1C10.8568 1 11.0919 1.23505 11.0919 1.525V2.295H12.4919C13.495 2.295 14.3002 3.11434 14.3002 4.115V6.70493V13.18C14.3002 14.1807 13.495 15 12.4919 15H3.50853C2.50534 15 1.7002 14.1807 1.7002 13.18V6.70493V4.115C1.7002 3.11434 2.50534 2.295 3.50853 2.295H4.90857V1.525C4.90857 1.23505 5.14362 1 5.43356 1C5.72351 1 5.95856 1.23505 5.95856 1.525V2.295H10.0419V1.525C10.0419 1.23505 10.2769 1 10.5669 1ZM4.90857 3.345V4.11439C4.90857 4.40434 5.14362 4.63939 5.43356 4.63939C5.72351 4.63939 5.95856 4.40434 5.95856 4.11439V3.345H10.0419V4.11439C10.0419 4.40434 10.2769 4.63939 10.5669 4.63939C10.8568 4.63939 11.0919 4.40434 11.0919 4.11439V3.345H12.4919C12.9062 3.345 13.2502 3.68525 13.2502 4.115V6.17993H2.75019V4.115C2.75019 3.68525 3.09418 3.345 3.50853 3.345H4.90857ZM13.2502 7.22993V13.18C13.2502 13.6098 12.9062 13.95 12.4919 13.95H3.50853C3.09418 13.95 2.75019 13.6098 2.75019 13.18V7.22993H13.2502Z"
17
+ fill="currentColor"
18
+ />
19
+ </svg>
20
+ </template>
21
+
22
+ <style scoped>
23
+
24
+ </style>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,26 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ d="M8.52496 1.525C8.52496 1.23505 8.28991 1 7.99996 1C7.71001 1 7.47496 1.23505 7.47496 1.525V9.97001L6.21285 8.7079C6.00783 8.50288 5.67542 8.50288 5.4704 8.7079C5.26537 8.91293 5.26537 9.24534 5.4704 9.45036L7.62872 11.6087C7.72717 11.7071 7.86071 11.7625 7.99994 11.7625C8.13918 11.7625 8.27272 11.7071 8.37117 11.6087L10.5295 9.45036C10.7345 9.24534 10.7345 8.91293 10.5295 8.7079C10.3245 8.50288 9.99206 8.50288 9.78704 8.7079L8.52496 9.96999V1.525Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ d="M1.525 10.7124C1.81494 10.7124 2.04999 10.9475 2.04999 11.2374V13.9499H13.9499V11.2374C13.9499 10.9475 14.185 10.7124 14.4749 10.7124C14.7649 10.7124 14.9999 10.9475 14.9999 11.2374V14.4749C14.9999 14.7649 14.7649 14.9999 14.4749 14.9999H1.525C1.23505 14.9999 1 14.7649 1 14.4749V11.2374C1 10.9475 1.23505 10.7124 1.525 10.7124Z"
19
+ fill="currentColor"
20
+ />
21
+ </svg>
22
+ </template>
23
+
24
+ <style scoped>
25
+
26
+ </style>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,88 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="24"
8
+ height="24"
9
+ viewBox="0 0 24 24"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <g opacity="0.6">
14
+ <path
15
+ d="M14.5583 11.535L6.65137 10.1396V20.4499C6.65137 20.9207 7.03307 21.3024 7.50392 21.3024H21.1476C21.6185 21.3024 22.0002 20.9207 22.0002 20.4499V16.6513L14.5583 11.535Z"
16
+ fill="#185C37"
17
+ />
18
+ <path
19
+ d="M14.5583 2.69775H7.50392C7.03307 2.69775 6.65137 3.07945 6.65137 3.55031V7.34891L14.5583 12.0001L18.7444 13.3954L22.0002 12.0001V7.34891L14.5583 2.69775Z"
20
+ fill="#21A366"
21
+ />
22
+ <path
23
+ d="M6.65137 7.34863H14.5583V11.9998H6.65137V7.34863Z"
24
+ fill="#107C41"
25
+ />
26
+ <path
27
+ opacity="0.1"
28
+ d="M12.3103 6.41846H6.65137V18.0463H12.3103C12.7806 18.0448 13.1614 17.664 13.1629 17.1938V7.27101C13.1614 6.80079 12.7806 6.41999 12.3103 6.41846Z"
29
+ fill="#80B485"
30
+ />
31
+ <path
32
+ opacity="0.2"
33
+ d="M11.8453 6.88379H6.65137V18.5117H11.8453C12.3155 18.5101 12.6963 18.1293 12.6979 17.6591V7.73634C12.6963 7.26613 12.3155 6.88532 11.8453 6.88379Z"
34
+ fill="#80B485"
35
+ />
36
+ <path
37
+ opacity="0.2"
38
+ d="M11.8453 6.88379H6.65137V17.5814H11.8453C12.3155 17.5799 12.6963 17.1991 12.6979 16.7289V7.73634C12.6963 7.26613 12.3155 6.88532 11.8453 6.88379Z"
39
+ fill="#80B485"
40
+ />
41
+ <path
42
+ opacity="0.2"
43
+ d="M11.3802 6.88379H6.65137V17.5814H11.3802C11.8504 17.5799 12.2312 17.1991 12.2327 16.7289V7.73634C12.2312 7.26613 11.8504 6.88532 11.3802 6.88379Z"
44
+ fill="#80B485"
45
+ />
46
+ <path
47
+ d="M2.85255 6.88379H11.38C11.8508 6.88379 12.2325 7.26549 12.2325 7.73634V16.2638C12.2325 16.7346 11.8508 17.1163 11.38 17.1163H2.85255C2.3817 17.1163 2 16.7346 2 16.2638V7.73634C2 7.26549 2.3817 6.88379 2.85255 6.88379Z"
48
+ fill="url(#paint0_linear_59_59407)"
49
+ />
50
+ <path
51
+ d="M4.64062 14.7713L6.43411 11.9922L4.79086 9.22852H6.11271L7.00945 10.996C7.09225 11.1639 7.14899 11.2885 7.17969 11.3708H7.19131C7.25023 11.2369 7.31224 11.1068 7.37736 10.9806L8.33596 9.22945H9.54944L7.86433 11.9769L9.59224 14.7713H8.30108L7.26527 12.8313C7.21648 12.7488 7.17508 12.6621 7.14155 12.5722H7.12621C7.09586 12.6602 7.05561 12.7445 7.0062 12.8234L5.9397 14.7713H4.64062Z"
52
+ fill="white"
53
+ />
54
+ <path
55
+ d="M21.1469 2.69775H14.5576V7.34891H21.9995V3.55031C21.9995 3.07945 21.6178 2.69775 21.1469 2.69775Z"
56
+ fill="#33C481"
57
+ />
58
+ <path
59
+ d="M14.5576 12H21.9995V16.6512H14.5576V12Z"
60
+ fill="#107C41"
61
+ />
62
+ </g>
63
+ <defs>
64
+ <linearGradient
65
+ id="paint0_linear_59_59407"
66
+ x1="3.7776"
67
+ y1="6.21762"
68
+ x2="10.4549"
69
+ y2="17.7825"
70
+ gradientUnits="userSpaceOnUse"
71
+ >
72
+ <stop stop-color="#18884F" />
73
+ <stop
74
+ offset="0.5"
75
+ stop-color="#117E43"
76
+ />
77
+ <stop
78
+ offset="1"
79
+ stop-color="#0B6631"
80
+ />
81
+ </linearGradient>
82
+ </defs>
83
+ </svg>
84
+ </template>
85
+
86
+ <style scoped>
87
+
88
+ </style>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,36 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="17"
8
+ height="16"
9
+ viewBox="0 0 17 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ d="M8.50012 3.52181C7.80377 3.52181 7.23926 2.9573 7.23926 2.26095C7.23926 1.56459 7.80377 1.00008 8.50012 1.00008C9.19648 1.00008 9.76099 1.56459 9.76099 2.26095C9.76099 2.9573 9.19648 3.52181 8.50012 3.52181Z"
17
+ fill="currentColor"
18
+ />
19
+ <path
20
+ fill-rule="evenodd"
21
+ clip-rule="evenodd"
22
+ d="M8.50012 9.26091C7.80377 9.26091 7.23926 8.6964 7.23926 8.00004C7.23926 7.30369 7.80377 6.73918 8.50012 6.73918C9.19648 6.73918 9.76099 7.30369 9.76099 8.00004C9.76099 8.6964 9.19648 9.26091 8.50012 9.26091Z"
23
+ fill="currentColor"
24
+ />
25
+ <path
26
+ fill-rule="evenodd"
27
+ clip-rule="evenodd"
28
+ d="M8.50012 15C7.80377 15 7.23926 14.4355 7.23926 13.7391C7.23926 13.0428 7.80377 12.4783 8.50012 12.4783C9.19648 12.4783 9.76099 13.0428 9.76099 13.7391C9.76099 14.4355 9.19648 15 8.50012 15Z"
29
+ fill="currentColor"
30
+ />
31
+ </svg>
32
+ </template>
33
+
34
+ <style scoped>
35
+
36
+ </style>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,24 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="41"
8
+ height="41"
9
+ viewBox="0 0 41 41"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ d="M20.6999 6.33325C12.8758 6.33325 6.5332 12.6759 6.5332 20.4999C6.5332 28.324 12.8758 34.6666 20.6999 34.6666C28.5239 34.6666 34.8665 28.324 34.8665 20.4999C34.8665 12.6759 28.5239 6.33325 20.6999 6.33325ZM4.0332 20.4999C4.0332 11.2952 11.4951 3.83325 20.6999 3.83325C29.9046 3.83325 37.3665 11.2952 37.3665 20.4999C37.3665 29.7047 29.9046 37.1666 20.6999 37.1666C11.4951 37.1666 4.0332 29.7047 4.0332 20.4999ZM20.6999 13.0833C21.3902 13.0833 21.9499 13.643 21.9499 14.3333V19.2499H26.8665C27.5569 19.2499 28.1165 19.8096 28.1165 20.4999C28.1165 21.1903 27.5569 21.7499 26.8665 21.7499H21.9499V26.6667C21.9499 27.357 21.3902 27.9167 20.6999 27.9167C20.0095 27.9167 19.4499 27.357 19.4499 26.6667V21.7499H14.5332C13.8429 21.7499 13.2832 21.1903 13.2832 20.4999C13.2832 19.8096 13.8429 19.2499 14.5332 19.2499H19.4499V14.3333C19.4499 13.643 20.0095 13.0833 20.6999 13.0833Z"
17
+ fill="currentColor"
18
+ />
19
+ </svg>
20
+ </template>
21
+
22
+ <style scoped>
23
+
24
+ </style>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,26 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ d="M1.83301 10.583C2.10915 10.583 2.33301 10.8069 2.33301 11.083V13.6664H13.6663V11.083C13.6663 10.8069 13.8902 10.583 14.1663 10.583C14.4425 10.583 14.6663 10.8069 14.6663 11.083V14.1664C14.6663 14.4425 14.4425 14.6664 14.1663 14.6664H1.83301C1.55687 14.6664 1.33301 14.4425 1.33301 14.1664V11.083C1.33301 10.8069 1.55687 10.583 1.83301 10.583Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ d="M8.49967 11.083C8.49967 11.3592 8.27581 11.583 7.99967 11.583C7.72353 11.583 7.49967 11.3592 7.49967 11.083V3.0401L6.29766 4.24212C6.10239 4.43738 5.78581 4.43738 5.59055 4.24212C5.39529 4.04685 5.39529 3.73027 5.59055 3.53501L7.6461 1.47945C7.73987 1.38569 7.86705 1.33301 7.99966 1.33301C8.13227 1.33301 8.25944 1.38569 8.35321 1.47945L10.4088 3.53501C10.604 3.73027 10.604 4.04685 10.4088 4.24212C10.2135 4.43738 9.89692 4.43738 9.70166 4.24212L8.49967 3.04013V11.083Z"
19
+ fill="currentColor"
20
+ />
21
+ </svg>
22
+ </template>
23
+
24
+ <style scoped>
25
+
26
+ </style>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
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,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "4.0.39",
3
+ "version": "4.0.41",
4
4
  "description": "Adata UI",
5
5
  "repository": "your-org/my-module",
6
6
  "license": "MIT",