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

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,26 @@
1
1
  Xamu UI
2
2
 
3
+ # [@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
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * pass table functions to cell component ([64f37f1](https://github.com/xamu-co/ui/commit/64f37f1898d9db144628d350ea7d73f177696eb7))
9
+ * **vue:** add missing theme to filter select loader ([f358add](https://github.com/xamu-co/ui/commit/f358add4bea5c05bd4878640e46c92b703f1ec47))
10
+
11
+
12
+ ### Features
13
+
14
+ * **vue:** prefer table properties ([f7ac337](https://github.com/xamu-co/ui/commit/f7ac337af3d80230a01b3a2afeecd4c027471183))
15
+
16
+
17
+
18
+
19
+
20
+ Updating dependant packages with "@open-xamu-co/ui-components-vue" version "4.0.0-next.25"
21
+ Updating "nuxt"
22
+ Succesfully updated "nuxt" package
23
+
3
24
  # [@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
25
 
5
26
 
@@ -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
+ nodeIndex: number;
97
98
  node: NoInfer<T>;
98
99
  mappedNode: TM;
99
100
  updateNodeAndRefresh: iNodeFn<NoInfer<T>>;
@@ -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
+ nodeIndex: number;
12
13
  node: T;
13
14
  mappedNode: TM;
14
15
  updateNodeAndRefresh: import("@open-xamu-co/ui-common-types").iNodeFn<T>;
@@ -19,6 +20,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
19
20
  }) => any;
20
21
  } & {
21
22
  modifyDropdownActions?: (props: {
23
+ nodeIndex: number;
22
24
  node: T;
23
25
  mappedNode: TM;
24
26
  updateNodeAndRefresh: import("@open-xamu-co/ui-common-types").iNodeFn<T>;
@@ -29,6 +31,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
29
31
  }) => any;
30
32
  } & {
31
33
  default?: (props: {
34
+ nodeIndex: number;
32
35
  node: T;
33
36
  mappedNode: TM;
34
37
  updateNodeAndRefresh: import("@open-xamu-co/ui-common-types").iNodeFn<T>;
@@ -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
+ nodeIndex: number;
22
23
  node: T;
23
24
  mappedNode: TM;
24
25
  updateNodeAndRefresh: iNodeFn<T>;
@@ -31,6 +32,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
31
32
  }) => any;
32
33
  } & {
33
34
  modifyActions?: (props: {
35
+ nodeIndex: number;
34
36
  node: T;
35
37
  mappedNode: TM;
36
38
  updateNodeAndRefresh: iNodeFn<T>;
@@ -41,6 +43,7 @@ declare const __VLS_export: <T extends Record<string, any>, TM extends Record<st
41
43
  }) => any;
42
44
  } & {
43
45
  modifyDropdownActions?: (props: {
46
+ nodeIndex: number;
44
47
  node: T;
45
48
  mappedNode: TM;
46
49
  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;