@open-xamu-co/ui-components-vue 4.0.0-next.24 → 4.0.0-next.26

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 CHANGED
@@ -1,5 +1,42 @@
1
1
  Xamu UI
2
2
 
3
+ # [@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)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **vue:** expose table action slots on pagination table ([e8bb34a](https://github.com/xamu-co/ui/commit/e8bb34a195fb012a75154d5d021e3564fb4bbaaa))
9
+ * **vue:** rollback table properties behavior ([458c207](https://github.com/xamu-co/ui/commit/458c207f7a4ef973641c84992b3a8b16a53afbb1))
10
+
11
+
12
+
13
+
14
+
15
+ Updating dependant packages with "@open-xamu-co/ui-components-vue" version "4.0.0-next.26"
16
+ Updating "nuxt"
17
+ Succesfully updated "nuxt" package
18
+
19
+ # [@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)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * pass table functions to cell component ([64f37f1](https://github.com/xamu-co/ui/commit/64f37f1898d9db144628d350ea7d73f177696eb7))
25
+ * **vue:** add missing theme to filter select loader ([f358add](https://github.com/xamu-co/ui/commit/f358add4bea5c05bd4878640e46c92b703f1ec47))
26
+
27
+
28
+ ### Features
29
+
30
+ * **vue:** prefer table properties ([f7ac337](https://github.com/xamu-co/ui/commit/f7ac337af3d80230a01b3a2afeecd4c027471183))
31
+
32
+
33
+
34
+
35
+
36
+ Updating dependant packages with "@open-xamu-co/ui-components-vue" version "4.0.0-next.25"
37
+ Updating "nuxt"
38
+ Succesfully updated "nuxt" package
39
+
3
40
  # [@open-xamu-co/ui-components-vue-v4.0.0-next.24](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v4.0.0-next.23...@open-xamu-co/ui-components-vue-v4.0.0-next.24) (2026-05-19)
4
41
 
5
42
 
@@ -94,6 +94,8 @@ 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;
98
+ nodeIndex: number;
97
99
  node: NoInfer<T>;
98
100
  mappedNode: TM;
99
101
  updateNodeAndRefresh: iNodeFn<NoInfer<T>>;
@@ -104,6 +106,30 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
104
106
  show: boolean;
105
107
  hydrateParentNode: (newNode: NoInfer<T> | null, _newErrors?: unknown) => void;
106
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;
107
133
  };
108
134
  emit: (event: "create-node-and-refresh", ...args: any[]) => void;
109
135
  }>) => import("vue").VNode & {
@@ -9,6 +9,8 @@ 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;
13
+ nodeIndex: number;
12
14
  node: T;
13
15
  mappedNode: TM;
14
16
  updateNodeAndRefresh: import("@open-xamu-co/ui-common-types").iNodeFn<T>;
@@ -19,6 +21,8 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
19
21
  }) => any;
20
22
  } & {
21
23
  modifyDropdownActions?: (props: {
24
+ refresh: (() => unknown) | undefined;
25
+ nodeIndex: number;
22
26
  node: T;
23
27
  mappedNode: TM;
24
28
  updateNodeAndRefresh: import("@open-xamu-co/ui-common-types").iNodeFn<T>;
@@ -29,6 +33,8 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
29
33
  }) => any;
30
34
  } & {
31
35
  default?: (props: {
36
+ refresh: (() => unknown) | undefined;
37
+ nodeIndex: number;
32
38
  node: T;
33
39
  mappedNode: TM;
34
40
  updateNodeAndRefresh: import("@open-xamu-co/ui-common-types").iNodeFn<T>;
@@ -19,6 +19,8 @@ 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;
23
+ nodeIndex: number;
22
24
  node: T;
23
25
  mappedNode: TM;
24
26
  updateNodeAndRefresh: iNodeFn<T>;
@@ -31,6 +33,8 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
31
33
  }) => any;
32
34
  } & {
33
35
  modifyActions?: (props: {
36
+ refresh: (() => unknown) | undefined;
37
+ nodeIndex: number;
34
38
  node: T;
35
39
  mappedNode: TM;
36
40
  updateNodeAndRefresh: iNodeFn<T>;
@@ -41,6 +45,8 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
41
45
  }) => any;
42
46
  } & {
43
47
  modifyDropdownActions?: (props: {
48
+ refresh: (() => unknown) | undefined;
49
+ nodeIndex: number;
44
50
  node: T;
45
51
  mappedNode: TM;
46
52
  updateNodeAndRefresh: iNodeFn<T>;
@@ -1,12 +1,10 @@
1
- import type { iProperty } from "@open-xamu-co/ui-common-types";
2
- import type { vComponent } from "../../plugin";
3
- import type { iValueComplexProps } from "../../types/props";
1
+ import type { iTablePropertyMeta, iValueComplexProps } from "../../types/props";
4
2
  type __VLS_Props = iValueComplexProps & {
5
3
  /**
6
4
  * Inherited table properties (Cell properties)
7
5
  * @internal
8
6
  */
9
- properties?: iProperty<any, any, vComponent<iValueComplexProps>>[];
7
+ properties?: Omit<iTablePropertyMeta<any>, "canSort">[];
10
8
  };
11
9
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
10
  declare const _default: typeof __VLS_export;