@open-xamu-co/ui-components-vue 4.0.0-next.1 → 4.0.0-next.2
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 +15 -0
- package/dist/components/pagination/Content.vue.d.ts +4 -1
- package/dist/{index-Bbn-n1yC.js → index-C46FseEI.js} +1561 -1561
- package/dist/{index-CyI1yZlR.cjs → index-w1g0Tp05.cjs} +4 -4
- 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 +4 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
Xamu UI
|
|
2
2
|
|
|
3
|
+
# [@open-xamu-co/ui-components-vue-v4.0.0-next.2](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v4.0.0-next.1...@open-xamu-co/ui-components-vue-v4.0.0-next.2) (2025-12-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* conditionally hide content table pagination ([5b29ef4](https://github.com/xamu-co/ui/commit/5b29ef4828fc4247b6f55609737ccee265668701))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
[34mUpdating dependant packages with "@open-xamu-co/ui-components-vue" version "4.0.0-next.2"[0m
|
|
15
|
+
[34mUpdating "nuxt"[0m
|
|
16
|
+
[34mSuccesfully updated "nuxt" package[0m
|
|
17
|
+
|
|
3
18
|
# [@open-xamu-co/ui-components-vue-v4.0.0-next.1](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v3.1.0-next.36...@open-xamu-co/ui-components-vue-v4.0.0-next.1) (2025-12-17)
|
|
4
19
|
|
|
5
20
|
|
|
@@ -23,8 +23,11 @@ export interface iPCProps<Ti, Ci extends string | number = string, Ri = never> e
|
|
|
23
23
|
withRoute?: boolean;
|
|
24
24
|
/**
|
|
25
25
|
* hide pagination buttons
|
|
26
|
+
*
|
|
27
|
+
* @example true hide pagination buttons
|
|
28
|
+
* @example "single" hide pagination buttons if only one page
|
|
26
29
|
*/
|
|
27
|
-
hideControls?: boolean;
|
|
30
|
+
hideControls?: boolean | "single";
|
|
28
31
|
preventAutoload?: boolean;
|
|
29
32
|
/**
|
|
30
33
|
* Additional parameters to send every request
|