@up-packages/ui 0.18.0-qa → 0.18.1-qa

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@up-packages/ui",
3
- "version": "0.18.0-qa",
3
+ "version": "0.18.1-qa",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "description": "Biblioteca de componentes Vue 3 + Vuetify para Uplexis",
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "peerDependencies": {
61
61
  "vue": "^3.4.0",
62
- "vuetify": "^4.0.0"
62
+ "vuetify": "^3.6.0"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@mdi/font": "^7.4.47",
@@ -83,7 +83,7 @@
83
83
  "vitest": "^4.0.8",
84
84
  "vue": "^3.4.0",
85
85
  "vue-tsc": "^2.0.0",
86
- "vuetify": "^4.0.0"
86
+ "vuetify": "3.6.0"
87
87
  },
88
88
  "dependencies": {
89
89
  "@iconify/vue": "^5.0.0",
@@ -1,54 +0,0 @@
1
- import type { UpxDataTableProps } from './types';
2
- declare var __VLS_10: {}, __VLS_13: `item.${string}`, __VLS_14: {
3
- item: any;
4
- value: any;
5
- }, __VLS_16: {
6
- item: any;
7
- }, __VLS_18: {}, __VLS_20: {}, __VLS_26: {
8
- item: any;
9
- columns: import("vuetify/lib/components/VDataTable/types.mjs").InternalDataTableHeader[];
10
- };
11
- type __VLS_Slots = {} & {
12
- [K in NonNullable<typeof __VLS_13>]?: (props: typeof __VLS_14) => any;
13
- } & {
14
- top?: (props: typeof __VLS_10) => any;
15
- } & {
16
- actions?: (props: typeof __VLS_16) => any;
17
- } & {
18
- 'no-data'?: (props: typeof __VLS_18) => any;
19
- } & {
20
- loading?: (props: typeof __VLS_20) => any;
21
- } & {
22
- 'expanded-row'?: (props: typeof __VLS_26) => any;
23
- };
24
- declare const __VLS_component: import("vue").DefineComponent<UpxDataTableProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
- "update:modelValue": (value: any[]) => any;
26
- "update:options": (value: any) => any;
27
- "update:expanded": (value: any[]) => any;
28
- }, string, import("vue").PublicProps, Readonly<UpxDataTableProps> & Readonly<{
29
- "onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
30
- "onUpdate:options"?: ((value: any) => any) | undefined;
31
- "onUpdate:expanded"?: ((value: any[]) => any) | undefined;
32
- }>, {
33
- variant: import("./types").UpxDataTableVariant;
34
- density: "default" | "comfortable" | "compact";
35
- loading: boolean;
36
- hover: boolean;
37
- itemsPerPage: number;
38
- itemsPerPageOptions: Array<{
39
- value: number;
40
- title: string;
41
- }>;
42
- fixedHeader: boolean;
43
- showSelect: boolean;
44
- hidePagination: boolean;
45
- showExpand: boolean;
46
- expandOnRowClick: boolean;
47
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
48
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
49
- export default _default;
50
- type __VLS_WithSlots<T, S> = T & {
51
- new (): {
52
- $slots: S;
53
- };
54
- };