@open-xamu-co/ui-components-vue 4.0.0-next.25 → 4.0.0-next.27
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 +36 -0
- package/dist/components/form/Input.stories.d.ts +3 -0
- package/dist/components/form/InputNValues.vue.d.ts +2 -1
- package/dist/components/input/Time.stories.d.ts +8 -0
- package/dist/components/input/Time.vue.d.ts +20 -0
- package/dist/components/pagination/ContentTable.vue.d.ts +25 -0
- package/dist/components/table/Body.vue.d.ts +3 -0
- package/dist/components/table/Simple.vue.d.ts +3 -0
- package/dist/{index-Ca9UtbLp.cjs → index-BZTV1VFE.cjs} +38 -38
- package/dist/{index-SMO8YSLl.js → index-C8suHgIe.js} +4576 -4482
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +30 -29
- package/dist/plugin.cjs +1 -1
- package/dist/plugin.js +28 -25
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
Xamu UI
|
|
2
2
|
|
|
3
|
+
# [@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
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **vue:** add missing theme to input n values ([d4d8911](https://github.com/xamu-co/ui/commit/d4d891189836af2f0aae78a039eeda65436b1b9b))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **vue:** support date, datetime & time inputs ([a115eca](https://github.com/xamu-co/ui/commit/a115ecae09dfd895cf73d99eaeaea5b792832cd4))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
[34mUpdating dependant packages with "@open-xamu-co/ui-components-vue" version "4.0.0-next.27"[0m
|
|
20
|
+
[34mUpdating "nuxt"[0m
|
|
21
|
+
[34mSuccesfully updated "nuxt" package[0m
|
|
22
|
+
|
|
23
|
+
# [@open-xamu-co/ui-components-vue-v4.0.0-next.26](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v4.0.0-next.25...@open-xamu-co/ui-components-vue-v4.0.0-next.26) (2026-06-16)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* **vue:** expose table action slots on pagination table ([e8bb34a](https://github.com/xamu-co/ui/commit/e8bb34a195fb012a75154d5d021e3564fb4bbaaa))
|
|
29
|
+
* **vue:** rollback table properties behavior ([458c207](https://github.com/xamu-co/ui/commit/458c207f7a4ef973641c84992b3a8b16a53afbb1))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
[34mUpdating dependant packages with "@open-xamu-co/ui-components-vue" version "4.0.0-next.26"[0m
|
|
36
|
+
[34mUpdating "nuxt"[0m
|
|
37
|
+
[34mSuccesfully updated "nuxt" package[0m
|
|
38
|
+
|
|
3
39
|
# [@open-xamu-co/ui-components-vue-v4.0.0-next.25](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v4.0.0-next.24...@open-xamu-co/ui-components-vue-v4.0.0-next.25) (2026-06-15)
|
|
4
40
|
|
|
5
41
|
|
|
@@ -5,4 +5,7 @@ type Story = StoryObj<typeof meta>;
|
|
|
5
5
|
export declare const Sample: Story;
|
|
6
6
|
export declare const Code: Story;
|
|
7
7
|
export declare const AsyncOptions: Story;
|
|
8
|
+
export declare const DateInput: Story;
|
|
9
|
+
export declare const DatetimeInput: Story;
|
|
10
|
+
export declare const TimeInput: Story;
|
|
8
11
|
export default meta;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from "@storybook/vue3-vite";
|
|
2
|
+
import InputTime from "./Time.vue";
|
|
3
|
+
declare const meta: Meta<typeof InputTime>;
|
|
4
|
+
type Story = StoryObj<typeof meta>;
|
|
5
|
+
export declare const DateSample: Story;
|
|
6
|
+
export declare const DateTimeSample: Story;
|
|
7
|
+
export declare const TimeSample: Story;
|
|
8
|
+
export default meta;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { IconName } from "@fortawesome/fontawesome-common-types";
|
|
2
|
+
import type { iFormIconProps, tTextInputType } from "@open-xamu-co/ui-common-types";
|
|
3
|
+
import type { iUseModifiersProps, iUseStateProps, iUseThemeProps, iInputProps } from "../../types/props";
|
|
4
|
+
interface iInputTimeProps extends iInputProps, iUseModifiersProps, iUseStateProps, iUseThemeProps {
|
|
5
|
+
type?: tTextInputType;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
icon?: IconName;
|
|
8
|
+
iconProps?: iFormIconProps;
|
|
9
|
+
/**
|
|
10
|
+
* @private
|
|
11
|
+
*/
|
|
12
|
+
modelValue?: number | string;
|
|
13
|
+
}
|
|
14
|
+
declare const __VLS_export: import("vue").DefineComponent<iInputTimeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
"update:model-value": (...args: any[]) => void;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<iInputTimeProps> & Readonly<{
|
|
17
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
20
|
+
export default _default;
|
|
@@ -94,6 +94,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
94
94
|
hasContent: boolean | undefined;
|
|
95
95
|
hydrateData: ((newContent: T[] | null, newErrors?: unknown) => void) | undefined;
|
|
96
96
|
createNodeAndRefresh: iNodeFn<T>;
|
|
97
|
+
refresh: (() => unknown) | undefined;
|
|
97
98
|
nodeIndex: number;
|
|
98
99
|
node: NoInfer<T>;
|
|
99
100
|
mappedNode: TM;
|
|
@@ -105,6 +106,30 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
105
106
|
show: boolean;
|
|
106
107
|
hydrateParentNode: (newNode: NoInfer<T> | null, _newErrors?: unknown) => void;
|
|
107
108
|
}) => any;
|
|
109
|
+
} & {
|
|
110
|
+
tableModifyActions?: (props: {
|
|
111
|
+
refresh: (() => unknown) | undefined;
|
|
112
|
+
nodeIndex: number;
|
|
113
|
+
node: NoInfer<T>;
|
|
114
|
+
mappedNode: TM;
|
|
115
|
+
updateNodeAndRefresh: iNodeFn<NoInfer<T>>;
|
|
116
|
+
cloneNodeAndRefresh: iNodeFn<NoInfer<T>, [NoInfer<T>, ((m?: boolean) => any) | undefined, (HTMLElement | undefined)?]>;
|
|
117
|
+
deleteNodeAndRefresh: iNodeFn<NoInfer<T>, [NoInfer<T>, ((m?: boolean) => any) | undefined, (HTMLElement | undefined)?]>;
|
|
118
|
+
deleteNodesAndRefresh: () => Promise<void>;
|
|
119
|
+
show: boolean;
|
|
120
|
+
}) => any;
|
|
121
|
+
} & {
|
|
122
|
+
tableModifyDropdownActions?: (props: {
|
|
123
|
+
refresh: (() => unknown) | undefined;
|
|
124
|
+
nodeIndex: number;
|
|
125
|
+
node: NoInfer<T>;
|
|
126
|
+
mappedNode: TM;
|
|
127
|
+
updateNodeAndRefresh: iNodeFn<NoInfer<T>>;
|
|
128
|
+
cloneNodeAndRefresh: iNodeFn<NoInfer<T>, [NoInfer<T>, ((m?: boolean) => any) | undefined, (HTMLElement | undefined)?]>;
|
|
129
|
+
deleteNodeAndRefresh: iNodeFn<NoInfer<T>, [NoInfer<T>, ((m?: boolean) => any) | undefined, (HTMLElement | undefined)?]>;
|
|
130
|
+
deleteNodesAndRefresh: () => Promise<void>;
|
|
131
|
+
show: boolean;
|
|
132
|
+
}) => any;
|
|
108
133
|
};
|
|
109
134
|
emit: (event: "create-node-and-refresh", ...args: any[]) => void;
|
|
110
135
|
}>) => import("vue").VNode & {
|
|
@@ -9,6 +9,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
9
9
|
attrs: any;
|
|
10
10
|
slots: {
|
|
11
11
|
modifyActions?: (props: {
|
|
12
|
+
refresh: (() => unknown) | undefined;
|
|
12
13
|
nodeIndex: number;
|
|
13
14
|
node: T;
|
|
14
15
|
mappedNode: TM;
|
|
@@ -20,6 +21,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
20
21
|
}) => any;
|
|
21
22
|
} & {
|
|
22
23
|
modifyDropdownActions?: (props: {
|
|
24
|
+
refresh: (() => unknown) | undefined;
|
|
23
25
|
nodeIndex: number;
|
|
24
26
|
node: T;
|
|
25
27
|
mappedNode: TM;
|
|
@@ -31,6 +33,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
31
33
|
}) => any;
|
|
32
34
|
} & {
|
|
33
35
|
default?: (props: {
|
|
36
|
+
refresh: (() => unknown) | undefined;
|
|
34
37
|
nodeIndex: number;
|
|
35
38
|
node: T;
|
|
36
39
|
mappedNode: TM;
|
|
@@ -19,6 +19,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
19
19
|
}) => any;
|
|
20
20
|
} & {
|
|
21
21
|
default?: (props: {
|
|
22
|
+
refresh: (() => unknown) | undefined;
|
|
22
23
|
nodeIndex: number;
|
|
23
24
|
node: T;
|
|
24
25
|
mappedNode: TM;
|
|
@@ -32,6 +33,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
32
33
|
}) => any;
|
|
33
34
|
} & {
|
|
34
35
|
modifyActions?: (props: {
|
|
36
|
+
refresh: (() => unknown) | undefined;
|
|
35
37
|
nodeIndex: number;
|
|
36
38
|
node: T;
|
|
37
39
|
mappedNode: TM;
|
|
@@ -43,6 +45,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
|
|
|
43
45
|
}) => any;
|
|
44
46
|
} & {
|
|
45
47
|
modifyDropdownActions?: (props: {
|
|
48
|
+
refresh: (() => unknown) | undefined;
|
|
46
49
|
nodeIndex: number;
|
|
47
50
|
node: T;
|
|
48
51
|
mappedNode: TM;
|