@finema/core 1.4.49 → 1.4.51

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 (59) hide show
  1. package/README.md +63 -63
  2. package/dist/module.d.mts +5 -4
  3. package/dist/module.d.ts +5 -4
  4. package/dist/module.json +1 -1
  5. package/dist/module.mjs +1 -1
  6. package/dist/runtime/components/Alert.vue +49 -49
  7. package/dist/runtime/components/Avatar.vue +27 -27
  8. package/dist/runtime/components/Badge.vue +54 -54
  9. package/dist/runtime/components/Breadcrumb.vue +45 -45
  10. package/dist/runtime/components/Button/Group.vue +37 -37
  11. package/dist/runtime/components/Button/index.vue +77 -77
  12. package/dist/runtime/components/Card.vue +38 -38
  13. package/dist/runtime/components/Core.vue +13 -13
  14. package/dist/runtime/components/Dialog/index.vue +108 -108
  15. package/dist/runtime/components/Dropdown/index.vue +71 -71
  16. package/dist/runtime/components/Form/FieldWrapper.vue +23 -23
  17. package/dist/runtime/components/Form/Fields.vue +153 -145
  18. package/dist/runtime/components/Form/InputCheckbox/index.vue +21 -21
  19. package/dist/runtime/components/Form/InputDateTime/index.vue +51 -51
  20. package/dist/runtime/components/Form/InputRadio/index.vue +27 -27
  21. package/dist/runtime/components/Form/InputSelect/index.vue +36 -37
  22. package/dist/runtime/components/Form/InputStatic/index.vue +16 -16
  23. package/dist/runtime/components/Form/InputText/index.vue +54 -54
  24. package/dist/runtime/components/Form/InputTextarea/index.vue +25 -25
  25. package/dist/runtime/components/Form/InputToggle/index.vue +14 -14
  26. package/dist/runtime/components/Form/InputUploadDropzone/index.vue +149 -170
  27. package/dist/runtime/components/Form/InputUploadDropzoneAuto/index.vue +238 -0
  28. package/dist/runtime/components/Form/InputUploadDropzoneAuto/types.d.ts +19 -0
  29. package/dist/runtime/components/Form/InputUploadDropzoneAuto/types.mjs +0 -0
  30. package/dist/runtime/components/Form/InputUploadFileClassic/index.vue +36 -36
  31. package/dist/runtime/components/Form/InputUploadFileClassicAuto/index.vue +165 -165
  32. package/dist/runtime/components/Form/index.vue +6 -6
  33. package/dist/runtime/components/Form/types.d.ts +4 -2
  34. package/dist/runtime/components/Form/types.mjs +1 -0
  35. package/dist/runtime/components/Icon.vue +23 -23
  36. package/dist/runtime/components/Image.vue +36 -36
  37. package/dist/runtime/components/Loader.vue +14 -14
  38. package/dist/runtime/components/Modal/index.vue +146 -146
  39. package/dist/runtime/components/SimplePagination.vue +96 -96
  40. package/dist/runtime/components/Slideover/index.vue +110 -110
  41. package/dist/runtime/components/Table/Base.vue +133 -132
  42. package/dist/runtime/components/Table/ColumnDate.vue +16 -16
  43. package/dist/runtime/components/Table/ColumnDateTime.vue +18 -18
  44. package/dist/runtime/components/Table/ColumnImage.vue +13 -13
  45. package/dist/runtime/components/Table/ColumnNumber.vue +14 -14
  46. package/dist/runtime/components/Table/Simple.vue +57 -57
  47. package/dist/runtime/components/Table/index.vue +59 -52
  48. package/dist/runtime/components/Tabs/index.vue +65 -65
  49. package/dist/runtime/core.config.d.ts +1 -0
  50. package/dist/runtime/core.config.mjs +2 -1
  51. package/dist/runtime/helpers/componentHelper.d.ts +3 -0
  52. package/dist/runtime/helpers/componentHelper.mjs +16 -0
  53. package/dist/runtime/types/utils.d.ts +29 -29
  54. package/dist/runtime/ui.config/uploadFileDropzone.d.ts +4 -1
  55. package/dist/runtime/ui.config/uploadFileDropzone.mjs +7 -4
  56. package/dist/runtime/ui.css +32 -32
  57. package/dist/runtime/utils/StringHelper.d.ts +1 -1
  58. package/dist/runtime/utils/StringHelper.mjs +2 -2
  59. package/package.json +11 -11
@@ -1,57 +1,57 @@
1
- <template>
2
- <Base
3
- v-bind="$attrs"
4
- :columns="options.columns"
5
- :raw-data="itemsByPage"
6
- :status="options.status"
7
- :page-options="pageOptions"
8
- @page-change="onPageChange"
9
- >
10
- <template v-for="(_, slot) of $slots" #[slot]="slotProps">
11
- <slot :name="slot" v-bind="slotProps || {}" />
12
- </template>
13
- </Base>
14
- </template>
15
- <script lang="ts" setup>
16
- import { computed, type PropType, ref } from 'vue'
17
- import { type ISimpleTableOptions } from '#core/components/Table/types'
18
- import Base from '#core/components/Table/Base.vue'
19
- import { initPageOptions } from '#core/composables/loaderPage'
20
-
21
- const props = defineProps({
22
- options: { type: Object as PropType<ISimpleTableOptions>, required: true },
23
- })
24
-
25
- const currentPage = ref(1)
26
-
27
- const pageOptions = computed(() => {
28
- if (!props.options?.limit) {
29
- return undefined
30
- }
31
-
32
- return {
33
- ...initPageOptions({
34
- limit: props.options.limit,
35
- primary: props.options.primary,
36
- }),
37
- totalCount: props.options.rawData.length,
38
- totalPage: Math.ceil(props.options.rawData.length / props.options.limit),
39
- currentPage: currentPage.value,
40
- }
41
- })
42
-
43
- const onPageChange = (page: number) => {
44
- currentPage.value = page
45
- }
46
-
47
- const itemsByPage = computed(() => {
48
- if (!pageOptions.value) {
49
- return props.options?.rawData
50
- }
51
-
52
- const start = (pageOptions.value.currentPage - 1) * pageOptions.value.limit
53
- const end = start + pageOptions.value.limit
54
-
55
- return props.options?.rawData.slice(start, end)
56
- })
57
- </script>
1
+ <template>
2
+ <Base
3
+ v-bind="$attrs"
4
+ :columns="options.columns"
5
+ :raw-data="itemsByPage"
6
+ :status="options.status"
7
+ :page-options="pageOptions"
8
+ @page-change="onPageChange"
9
+ >
10
+ <template v-for="(_, slot) of $slots" #[slot]="slotProps">
11
+ <slot :name="slot" v-bind="slotProps || {}" />
12
+ </template>
13
+ </Base>
14
+ </template>
15
+ <script lang="ts" setup>
16
+ import { computed, type PropType, ref } from 'vue'
17
+ import { type ISimpleTableOptions } from '#core/components/Table/types'
18
+ import Base from '#core/components/Table/Base.vue'
19
+ import { initPageOptions } from '#core/composables/loaderPage'
20
+
21
+ const props = defineProps({
22
+ options: { type: Object as PropType<ISimpleTableOptions>, required: true },
23
+ })
24
+
25
+ const currentPage = ref(1)
26
+
27
+ const pageOptions = computed(() => {
28
+ if (!props.options?.limit) {
29
+ return undefined
30
+ }
31
+
32
+ return {
33
+ ...initPageOptions({
34
+ limit: props.options.limit,
35
+ primary: props.options.primary,
36
+ }),
37
+ totalCount: props.options.rawData.length,
38
+ totalPage: Math.ceil(props.options.rawData.length / props.options.limit),
39
+ currentPage: currentPage.value,
40
+ }
41
+ })
42
+
43
+ const onPageChange = (page: number) => {
44
+ currentPage.value = page
45
+ }
46
+
47
+ const itemsByPage = computed(() => {
48
+ if (!pageOptions.value) {
49
+ return props.options?.rawData
50
+ }
51
+
52
+ const start = (pageOptions.value.currentPage - 1) * pageOptions.value.limit
53
+ const end = start + pageOptions.value.limit
54
+
55
+ return props.options?.rawData.slice(start, end)
56
+ })
57
+ </script>
@@ -1,52 +1,59 @@
1
- <template>
2
- <div>
3
- <div v-if="options.isEnabledSearch" class="mb-4 flex justify-end">
4
- <UInput
5
- v-model="q"
6
- icon="i-heroicons-magnifying-glass"
7
- :placeholder="options.searchPlaceholder || 'ค้นหา...'"
8
- />
9
- </div>
10
- <Base
11
- v-bind="$attrs"
12
- :columns="options.columns"
13
- :raw-data="options.rawData"
14
- :status="options.status"
15
- :page-options="options.pageOptions"
16
- :is-simple-pagination="options.isSimplePagination"
17
- @page-change="onPageChange"
18
- >
19
- <template v-for="(_, slot) of $slots" #[slot]="slotProps">
20
- <slot :name="slot" v-bind="slotProps || {}" />
21
- </template>
22
- </Base>
23
- </div>
24
- </template>
25
- <script lang="ts" setup>
26
- import { type PropType } from 'vue'
27
- import { type ITableOptions } from '#core/components/Table/types'
28
- import { _debounce, ref, watch } from '#imports'
29
- import Base from '#core/components/Table/Base.vue'
30
-
31
- const emits = defineEmits<{
32
- (event: 'pageChange', page: number): void
33
- (event: 'search', q: string): void
34
- }>()
35
-
36
- const props = defineProps({
37
- options: { type: Object as PropType<ITableOptions>, required: true },
38
- })
39
-
40
- const q = ref(props.options?.pageOptions.search ?? '')
41
-
42
- watch(
43
- q,
44
- _debounce((value) => {
45
- emits('search', value)
46
- }, 500)
47
- )
48
-
49
- const onPageChange = (page: number) => {
50
- emits('pageChange', page)
51
- }
52
- </script>
1
+ <template>
2
+ <div>
3
+ <div v-if="options.isEnabledSearch" class="mb-4 flex justify-end">
4
+ <UInput
5
+ v-model="q"
6
+ icon="i-heroicons-magnifying-glass"
7
+ :placeholder="options.searchPlaceholder || 'ค้นหา...'"
8
+ />
9
+ </div>
10
+ <Base
11
+ v-bind="$attrs"
12
+ :columns="options.columns"
13
+ :raw-data="options.rawData"
14
+ :status="options.status"
15
+ :page-options="options.pageOptions"
16
+ :is-simple-pagination="isShowSimplePagination"
17
+ @page-change="onPageChange"
18
+ >
19
+ <template v-for="(_, slot) of $slots" #[slot]="slotProps">
20
+ <slot :name="slot" v-bind="slotProps || {}" />
21
+ </template>
22
+ </Base>
23
+ </div>
24
+ </template>
25
+ <script lang="ts" setup>
26
+ import { type PropType } from 'vue'
27
+ import { type ITableOptions } from '#core/components/Table/types'
28
+ import { _debounce, computed, ref, watch } from '#imports'
29
+ import { useCoreConfig } from '#core/composables/useConfig'
30
+ import Base from '#core/components/Table/Base.vue'
31
+
32
+ const emits = defineEmits<{
33
+ (event: 'pageChange', page: number): void
34
+ (event: 'search', q: string): void
35
+ }>()
36
+
37
+ const props = defineProps({
38
+ options: { type: Object as PropType<ITableOptions>, required: true },
39
+ })
40
+
41
+ const coreConfig = useCoreConfig()
42
+
43
+ const q = ref(props.options?.pageOptions.search ?? '')
44
+
45
+ const isShowSimplePagination = computed(
46
+ (): boolean => props.options.isSimplePagination ?? coreConfig.is_simple_pagination
47
+ )
48
+
49
+ watch(
50
+ q,
51
+ _debounce((value) => {
52
+ emits('search', value)
53
+ }, 500)
54
+ )
55
+
56
+ const onPageChange = (page: number) => {
57
+ emits('pageChange', page)
58
+ }
59
+ </script>
@@ -1,65 +1,65 @@
1
- <template>
2
- <UTabs
3
- v-bind="attrs"
4
- :model-value="modelValue"
5
- :class="$props.class"
6
- :items="items"
7
- :orientation="orientation"
8
- :default-index="defaultIndex"
9
- :ui="ui"
10
- @change="change"
11
- >
12
- <template #default="{ item, index, selected }">
13
- <slot name="default" :item="item" :index="index" :selected="selected" />
14
- </template>
15
-
16
- <template #item="{ item, index, selected }">
17
- <slot name="item" :item="item" :index="index" :selected="selected" />
18
- </template>
19
- </UTabs>
20
- </template>
21
-
22
- <script setup lang="ts">
23
- import { useUiConfig, type PropType, useUI, toRef } from '#imports'
24
- import { type TabItem } from '#ui/types'
25
- import type { Strategy } from '#core/types/utils'
26
- import { tabs } from '#core/ui.config'
27
-
28
- const config = useUiConfig<typeof tabs>(tabs, 'tabs')
29
-
30
- const props = defineProps({
31
- modelValue: {
32
- type: Number,
33
- default: undefined,
34
- },
35
- items: {
36
- type: Array as PropType<TabItem[]>,
37
- default: () => [],
38
- },
39
- orientation: {
40
- type: String as PropType<'horizontal' | 'vertical'>,
41
- default: 'horizontal',
42
- validator: (value: string) => ['horizontal', 'vertical'].includes(value),
43
- },
44
- defaultIndex: {
45
- type: Number,
46
- default: 0,
47
- },
48
- class: {
49
- type: [String, Object, Array] as PropType<any>,
50
- default: () => '',
51
- },
52
- ui: {
53
- type: Object as PropType<Partial<typeof config> & { strategy?: Strategy }>,
54
- default: () => ({}),
55
- },
56
- })
57
-
58
- const emits = defineEmits(['update:modelValue', 'change'])
59
-
60
- const change = (index: number) => {
61
- emits('change', index)
62
- }
63
-
64
- const { ui, attrs } = useUI('tabs', toRef(props, 'ui'), config, toRef(props, 'class'))
65
- </script>
1
+ <template>
2
+ <UTabs
3
+ v-bind="attrs"
4
+ :model-value="modelValue"
5
+ :class="$props.class"
6
+ :items="items"
7
+ :orientation="orientation"
8
+ :default-index="defaultIndex"
9
+ :ui="ui"
10
+ @change="change"
11
+ >
12
+ <template #default="{ item, index, selected }">
13
+ <slot name="default" :item="item" :index="index" :selected="selected" />
14
+ </template>
15
+
16
+ <template #item="{ item, index, selected }">
17
+ <slot name="item" :item="item" :index="index" :selected="selected" />
18
+ </template>
19
+ </UTabs>
20
+ </template>
21
+
22
+ <script setup lang="ts">
23
+ import { useUiConfig, type PropType, useUI, toRef } from '#imports'
24
+ import { type TabItem } from '#ui/types'
25
+ import type { Strategy } from '#core/types/utils'
26
+ import { tabs } from '#core/ui.config'
27
+
28
+ const config = useUiConfig<typeof tabs>(tabs, 'tabs')
29
+
30
+ const props = defineProps({
31
+ modelValue: {
32
+ type: Number,
33
+ default: undefined,
34
+ },
35
+ items: {
36
+ type: Array as PropType<TabItem[]>,
37
+ default: () => [],
38
+ },
39
+ orientation: {
40
+ type: String as PropType<'horizontal' | 'vertical'>,
41
+ default: 'horizontal',
42
+ validator: (value: string) => ['horizontal', 'vertical'].includes(value),
43
+ },
44
+ defaultIndex: {
45
+ type: Number,
46
+ default: 0,
47
+ },
48
+ class: {
49
+ type: [String, Object, Array] as PropType<any>,
50
+ default: () => '',
51
+ },
52
+ ui: {
53
+ type: Object as PropType<Partial<typeof config> & { strategy?: Strategy }>,
54
+ default: () => ({}),
55
+ },
56
+ })
57
+
58
+ const emits = defineEmits(['update:modelValue', 'change'])
59
+
60
+ const change = (index: number) => {
61
+ emits('change', index)
62
+ }
63
+
64
+ const { ui, attrs } = useUI('tabs', toRef(props, 'ui'), config, toRef(props, 'class'))
65
+ </script>
@@ -7,4 +7,5 @@ export declare const core: {
7
7
  is_thai_year: boolean;
8
8
  is_thai_month: boolean;
9
9
  site_name: string;
10
+ is_simple_pagination: boolean;
10
11
  };
@@ -6,5 +6,6 @@ export const core = {
6
6
  time_format: "HH:mm",
7
7
  is_thai_year: false,
8
8
  is_thai_month: false,
9
- site_name: ""
9
+ site_name: "",
10
+ is_simple_pagination: false
10
11
  };
@@ -0,0 +1,3 @@
1
+ export declare const checkMaxSize: (file: File, acceptFileSize: number) => boolean;
2
+ export declare const generateURL: (file: File) => string;
3
+ export declare const isImage: (file: File) => boolean;
@@ -0,0 +1,16 @@
1
+ export const checkMaxSize = (file, acceptFileSize) => {
2
+ if (acceptFileSize) {
3
+ return file.size / 1e3 <= acceptFileSize;
4
+ }
5
+ return true;
6
+ };
7
+ export const generateURL = (file) => {
8
+ const fileSrc = URL.createObjectURL(file);
9
+ setTimeout(() => {
10
+ URL.revokeObjectURL(fileSrc);
11
+ }, 1e3);
12
+ return fileSrc;
13
+ };
14
+ export const isImage = (file) => {
15
+ return file.type.startsWith("image/");
16
+ };
@@ -1,29 +1,29 @@
1
- export type Strategy = 'merge' | 'override'
2
-
3
- export type NestedKeyOf<ObjectType extends object> = {
4
- [Key in keyof ObjectType]: ObjectType[Key] extends object ? NestedKeyOf<ObjectType[Key]> : Key
5
- }[keyof ObjectType]
6
-
7
- export type DeepPartial<T> = Partial<{
8
- [P in keyof T]: DeepPartial<T[P]> | Record<string, string>
9
- }>
10
-
11
- type DeepKey<T, Keys extends string[]> = Keys extends [infer First, ...infer Rest]
12
- ? First extends keyof T
13
- ? Rest extends string[]
14
- ? DeepKey<T[First], Rest>
15
- : never
16
- : never
17
- : T
18
-
19
- export type ExtractDeepKey<T, Path extends string[]> = DeepKey<T, Path> extends infer Result
20
- ? Result extends Record<string, any>
21
- ? keyof Result
22
- : never
23
- : never
24
-
25
- export type ExtractDeepObject<T, Path extends string[]> = DeepKey<T, Path> extends infer Result
26
- ? Result extends Record<string, any>
27
- ? Result
28
- : never
29
- : never
1
+ export type Strategy = 'merge' | 'override'
2
+
3
+ export type NestedKeyOf<ObjectType extends object> = {
4
+ [Key in keyof ObjectType]: ObjectType[Key] extends object ? NestedKeyOf<ObjectType[Key]> : Key
5
+ }[keyof ObjectType]
6
+
7
+ export type DeepPartial<T> = Partial<{
8
+ [P in keyof T]: DeepPartial<T[P]> | Record<string, string>
9
+ }>
10
+
11
+ type DeepKey<T, Keys extends string[]> = Keys extends [infer First, ...infer Rest]
12
+ ? First extends keyof T
13
+ ? Rest extends string[]
14
+ ? DeepKey<T[First], Rest>
15
+ : never
16
+ : never
17
+ : T
18
+
19
+ export type ExtractDeepKey<T, Path extends string[]> = DeepKey<T, Path> extends infer Result
20
+ ? Result extends Record<string, any>
21
+ ? keyof Result
22
+ : never
23
+ : never
24
+
25
+ export type ExtractDeepObject<T, Path extends string[]> = DeepKey<T, Path> extends infer Result
26
+ ? Result extends Record<string, any>
27
+ ? Result
28
+ : never
29
+ : never
@@ -13,7 +13,10 @@ export declare const uploadFileDropzone: {
13
13
  img: string;
14
14
  };
15
15
  filename: string;
16
- fileInfo: string;
16
+ };
17
+ uploadStatus: {
18
+ wrapper: string;
19
+ progressBar: string;
17
20
  };
18
21
  background: {
19
22
  default: string;
@@ -9,11 +9,14 @@ export const uploadFileDropzone = {
9
9
  wrapper: "flex flex-col items-center w-full",
10
10
  icon: "mb-2 h-10 w-10 text-gray-400",
11
11
  image: {
12
- wrapper: "flex justify-center mb-2 rounded overflow-hidden",
13
- img: "max-w-[300px]"
12
+ wrapper: "flex justify-center mb-2 rounded overflow-hidden max-w-[300px]",
13
+ img: "w-full object-contain"
14
14
  },
15
- filename: "flex items-center justify-center w-full font-semibold truncate",
16
- fileInfo: "text-center text-gray-400 mt-1 text-sm font-light"
15
+ filename: "flex items-center justify-center w-full font-semibold truncate"
16
+ },
17
+ uploadStatus: {
18
+ wrapper: "w-full md:w-1/2 mt-2",
19
+ progressBar: ""
17
20
  },
18
21
  background: {
19
22
  default: "bg-white border-gray-border",
@@ -1,32 +1,32 @@
1
- :root {
2
- --dp-font-family: inherit !important;
3
- }
4
-
5
- .dp__theme_light {
6
- --dp-primary-color: rgb(var(--color-primary-DEFAULT)) !important;
7
- --dp-primary-disabled-color: rgb(var(--color-primary-200)) !important;
8
- }
9
-
10
- ::-webkit-scrollbar {
11
- -webkit-appearance: none;
12
- width: 10px;
13
- height: 10px;
14
- }
15
-
16
- ::-webkit-scrollbar-thumb {
17
- border-radius: 4px;
18
- background-color: rgb(0 0 0 / 30%);
19
- box-shadow: 0 0 1px rgb(255 255 255 / 50%);
20
- }
21
-
22
-
23
- html,
24
- body,
25
- #__nuxt,
26
- #__layout,
27
- .root-container {
28
- height: 100%;
29
- display: flex;
30
- flex-direction: column;
31
- }
32
-
1
+ :root {
2
+ --dp-font-family: inherit !important;
3
+ }
4
+
5
+ .dp__theme_light {
6
+ --dp-primary-color: rgb(var(--color-primary-DEFAULT)) !important;
7
+ --dp-primary-disabled-color: rgb(var(--color-primary-200)) !important;
8
+ }
9
+
10
+ ::-webkit-scrollbar {
11
+ -webkit-appearance: none;
12
+ width: 10px;
13
+ height: 10px;
14
+ }
15
+
16
+ ::-webkit-scrollbar-thumb {
17
+ border-radius: 4px;
18
+ background-color: rgb(0 0 0 / 30%);
19
+ box-shadow: 0 0 1px rgb(255 255 255 / 50%);
20
+ }
21
+
22
+
23
+ html,
24
+ body,
25
+ #__nuxt,
26
+ #__layout,
27
+ .root-container {
28
+ height: 100%;
29
+ display: flex;
30
+ flex-direction: column;
31
+ }
32
+
@@ -2,7 +2,7 @@ export declare class StringHelper {
2
2
  static genString: (length?: number) => string;
3
3
  static withComma: (value?: number | string) => string;
4
4
  static split: (str: string | null | undefined, separator: string | RegExp) => string[];
5
- static joinURL: (value: any, value2: any) => string;
5
+ static joinURL: (...parts: string[]) => string;
6
6
  static truncate: (str: any, num?: number) => any;
7
7
  static getError: (errorData: {
8
8
  code: string;
@@ -15,8 +15,8 @@ export class StringHelper {
15
15
  static split = (str, separator) => {
16
16
  return `${str || ""}`.split(separator).filter((item) => item).map((item) => item.trim());
17
17
  };
18
- static joinURL = (value, value2) => {
19
- return urlJoin(value, value2);
18
+ static joinURL = (...parts) => {
19
+ return urlJoin(...parts);
20
20
  };
21
21
  static truncate = (str, num = 300) => {
22
22
  const newStr = str || "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.4.49",
3
+ "version": "1.4.51",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",
@@ -36,19 +36,19 @@
36
36
  "@nuxt/kit": "^3.7.4",
37
37
  "@nuxt/ui": "^2.13.0",
38
38
  "@pinia/nuxt": "^0.5.1",
39
- "@vee-validate/nuxt": "^4.12.4",
40
- "@vee-validate/zod": "^4.12.4",
39
+ "@vee-validate/nuxt": "^4.12.5",
40
+ "@vee-validate/zod": "^4.12.5",
41
41
  "@vuepic/vue-datepicker": "^7.4.1",
42
- "axios": "^1.6.5",
43
- "date-fns": "^3.2.0",
44
- "i18next": "^23.7.16",
42
+ "axios": "^1.6.7",
43
+ "date-fns": "^3.3.1",
44
+ "i18next": "^23.8.2",
45
45
  "lodash-es": "^4.17.21",
46
- "nuxt-security": "^1.0.0",
46
+ "nuxt-security": "^1.1.0",
47
47
  "pinia": "^2.1.7",
48
48
  "qrcode.vue": "^3.4.1",
49
49
  "url-join": "^5.0.0",
50
50
  "zod": "^3.22.4",
51
- "zod-i18n-map": "^2.25.0"
51
+ "zod-i18n-map": "^2.27.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@finema/eslint-config": "^1.2.0",
@@ -56,7 +56,7 @@
56
56
  "@nuxt/eslint-config": "^0.2.0",
57
57
  "@nuxt/module-builder": "^0.5.4",
58
58
  "@nuxt/schema": "^3.7.4",
59
- "@nuxt/test-utils": "^3.9.0",
59
+ "@nuxt/test-utils": "^3.11.0",
60
60
  "@release-it/conventional-changelog": "^8.0.1",
61
61
  "@types/lodash-es": "^4.17.12",
62
62
  "@types/node": "^20.10.8",
@@ -66,7 +66,7 @@
66
66
  "happy-dom": "^13.0.0",
67
67
  "husky": "^8.0.3",
68
68
  "lint-staged": "^15.2.0",
69
- "nuxt": "^3.9.1",
69
+ "nuxt": "^3.10.0",
70
70
  "playwright-core": "^1.40.1",
71
71
  "prettier": "^3.1.1",
72
72
  "release-it": "^17.0.1",
@@ -74,7 +74,7 @@
74
74
  "stylelint": "^16.1.0",
75
75
  "stylelint-config-prettier-scss": "^1.0.0",
76
76
  "stylelint-config-standard-scss": "^13.0.0",
77
- "vitest": "^1.1.3"
77
+ "vitest": "^1.2.2"
78
78
  },
79
79
  "resolutions": {
80
80
  "vue": "3.3.13"