@open-xamu-co/ui-components-vue 4.0.0-next.27 → 4.0.0-next.29
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/CHANGELOG.md +40 -0
- package/dist/components/form/InputLoop.vue.d.ts +1 -1
- package/dist/components/form/InputNValues.vue.d.ts +1 -1
- package/dist/components/form/Simple.vue.d.ts +1 -1
- package/dist/components/loader/ContentFetch.vue.d.ts +1 -1
- package/dist/components/pagination/Content.vue.d.ts +1 -1
- package/dist/components/pagination/ContentTable.vue.d.ts +1 -1
- package/dist/components/pagination/Simple.vue.d.ts +1 -1
- package/dist/components/table/Body.vue.d.ts +1 -1
- package/dist/components/table/HeadActions.vue.d.ts +1 -1
- package/dist/components/table/HeadContent.vue.d.ts +1 -1
- package/dist/components/table/Simple.vue.d.ts +1 -1
- package/dist/components/value/Simple.vue.d.ts +1 -1
- package/dist/{index-BZTV1VFE.cjs → index-B3HOfb9g.cjs} +29 -29
- package/dist/{index-C8suHgIe.js → index-lWrGfwiv.js} +1052 -1050
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/plugin.cjs +1 -1
- package/dist/plugin.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
Xamu UI
|
|
2
2
|
|
|
3
|
+
# [@open-xamu-co/ui-components-vue-v4.0.0-next.29](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v4.0.0-next.28...@open-xamu-co/ui-components-vue-v4.0.0-next.29) (2026-07-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **vue:** time wrapper ([999e183](https://github.com/xamu-co/ui/commit/999e183315a1194e9fa016aeafe89852645d1178))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **nuxt:** extend nuxt support ([702a9b3](https://github.com/xamu-co/ui/commit/702a9b37716a11a3742e4fe0a423e32ad9ef7c48))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
* **nuxt:** node22 required
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
[34mUpdating dependant packages with "@open-xamu-co/ui-components-vue" version "4.0.0-next.29"[0m
|
|
25
|
+
[34mUpdating "nuxt"[0m
|
|
26
|
+
[34mSuccesfully updated "nuxt" package[0m
|
|
27
|
+
|
|
28
|
+
# [@open-xamu-co/ui-components-vue-v4.0.0-next.28](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v4.0.0-next.27...@open-xamu-co/ui-components-vue-v4.0.0-next.28) (2026-06-25)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* **vue:** support minLength & maxLength on inputs ([82a0159](https://github.com/xamu-co/ui/commit/82a015900528b545d5665694d4e32e49b0f14b39))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
[34mUpdating dependant packages with "@open-xamu-co/ui-components-vue" version "4.0.0-next.28"[0m
|
|
40
|
+
[34mUpdating "nuxt"[0m
|
|
41
|
+
[34mSuccesfully updated "nuxt" package[0m
|
|
42
|
+
|
|
3
43
|
# [@open-xamu-co/ui-components-vue-v4.0.0-next.27](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v4.0.0-next.26...@open-xamu-co/ui-components-vue-v4.0.0-next.27) (2026-06-16)
|
|
4
44
|
|
|
5
45
|
|
|
@@ -20,7 +20,7 @@ declare const __VLS_export: <T extends iFormValue>(__VLS_props: NonNullable<Awai
|
|
|
20
20
|
};
|
|
21
21
|
emit: {};
|
|
22
22
|
}>) => import("vue").VNode & {
|
|
23
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
23
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
24
24
|
};
|
|
25
25
|
declare const _default: typeof __VLS_export;
|
|
26
26
|
export default _default;
|
|
@@ -21,7 +21,7 @@ declare const __VLS_export: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_se
|
|
|
21
21
|
};
|
|
22
22
|
emit: {};
|
|
23
23
|
}>) => import("vue").VNode & {
|
|
24
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
24
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
25
25
|
};
|
|
26
26
|
declare const _default: typeof __VLS_export;
|
|
27
27
|
export default _default;
|
|
@@ -33,7 +33,7 @@ declare const __VLS_export: <P extends any[] = any[]>(__VLS_props: NonNullable<A
|
|
|
33
33
|
};
|
|
34
34
|
emit: ((evt: "update:model-value", args_0: tFormInput<import("@open-xamu-co/ui-common-types").iFormValue | import("@open-xamu-co/ui-common-types").iFormValue[], import("@open-xamu-co/ui-common-enums").eFormTypeBase | eFormTypeSimple | import("@open-xamu-co/ui-common-enums").eFormTypeComplex>[]) => void) & ((evt: "update:invalid", args_0: iInvalidInput[]) => void);
|
|
35
35
|
}>) => import("vue").VNode & {
|
|
36
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
36
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
37
37
|
};
|
|
38
38
|
declare const _default: typeof __VLS_export;
|
|
39
39
|
export default _default;
|
|
@@ -69,7 +69,7 @@ declare const __VLS_export: <T, P extends any[] = any[]>(__VLS_props: NonNullabl
|
|
|
69
69
|
};
|
|
70
70
|
emit: (event: "refresh" | "has-content" | "hydrate", ...args: any[]) => void;
|
|
71
71
|
}>) => import("vue").VNode & {
|
|
72
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
72
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
73
73
|
};
|
|
74
74
|
declare const _default: typeof __VLS_export;
|
|
75
75
|
export default _default;
|
|
@@ -91,7 +91,7 @@ declare const __VLS_export: <T, C extends string | number = string, R = never>(_
|
|
|
91
91
|
};
|
|
92
92
|
emit: (event: "refresh" | "has-content", ...args: any[]) => void;
|
|
93
93
|
}>) => import("vue").VNode & {
|
|
94
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
94
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
95
95
|
};
|
|
96
96
|
declare const _default: typeof __VLS_export;
|
|
97
97
|
export default _default;
|
|
@@ -133,7 +133,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
133
133
|
};
|
|
134
134
|
emit: (event: "create-node-and-refresh", ...args: any[]) => void;
|
|
135
135
|
}>) => import("vue").VNode & {
|
|
136
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
136
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
137
137
|
};
|
|
138
138
|
declare const _default: typeof __VLS_export;
|
|
139
139
|
export default _default;
|
|
@@ -22,7 +22,7 @@ declare const __VLS_export: <T, C extends string | number>(__VLS_props: NonNulla
|
|
|
22
22
|
slots: {};
|
|
23
23
|
emit: (event: "update:model-value", ...args: any[]) => void;
|
|
24
24
|
}>) => import("vue").VNode & {
|
|
25
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
25
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
26
26
|
};
|
|
27
27
|
declare const _default: typeof __VLS_export;
|
|
28
28
|
export default _default;
|
|
@@ -48,7 +48,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
48
48
|
};
|
|
49
49
|
emit: {};
|
|
50
50
|
}>) => import("vue").VNode & {
|
|
51
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
51
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
52
52
|
};
|
|
53
53
|
declare const _default: typeof __VLS_export;
|
|
54
54
|
export default _default;
|
|
@@ -20,7 +20,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
20
20
|
};
|
|
21
21
|
emit: {};
|
|
22
22
|
}>) => import("vue").VNode & {
|
|
23
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
23
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
24
24
|
};
|
|
25
25
|
declare const _default: typeof __VLS_export;
|
|
26
26
|
export default _default;
|
|
@@ -11,7 +11,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
11
11
|
slots: {};
|
|
12
12
|
emit: {};
|
|
13
13
|
}>) => import("vue").VNode & {
|
|
14
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
14
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
15
15
|
};
|
|
16
16
|
declare const _default: typeof __VLS_export;
|
|
17
17
|
export default _default;
|
|
@@ -58,7 +58,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
58
58
|
};
|
|
59
59
|
emit: (event: "update:sort", ...args: any[]) => void;
|
|
60
60
|
}>) => import("vue").VNode & {
|
|
61
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
61
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
62
62
|
};
|
|
63
63
|
declare const _default: typeof __VLS_export;
|
|
64
64
|
export default _default;
|
|
@@ -32,7 +32,7 @@ declare const __VLS_export: <P extends Record<string, any>>(__VLS_props: NonNull
|
|
|
32
32
|
slots: {};
|
|
33
33
|
emit: {};
|
|
34
34
|
}>) => import("vue").VNode & {
|
|
35
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
35
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
36
36
|
};
|
|
37
37
|
declare const _default: typeof __VLS_export;
|
|
38
38
|
export default _default;
|