@fastkit/vui 0.12.6 → 0.12.7
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/dist/vui.d.ts
CHANGED
|
@@ -4368,7 +4368,7 @@ export declare const VDataTable: DefineComponent<{
|
|
|
4368
4368
|
default: () => number;
|
|
4369
4369
|
};
|
|
4370
4370
|
headers: {
|
|
4371
|
-
type: PropType<DataTableHeader<
|
|
4371
|
+
type: PropType<DataTableHeader<any>[]>;
|
|
4372
4372
|
required: true;
|
|
4373
4373
|
};
|
|
4374
4374
|
items: {
|
|
@@ -4456,7 +4456,7 @@ export declare const VDataTable: DefineComponent<{
|
|
|
4456
4456
|
default: () => number;
|
|
4457
4457
|
};
|
|
4458
4458
|
headers: {
|
|
4459
|
-
type: PropType<DataTableHeader<
|
|
4459
|
+
type: PropType<DataTableHeader<any>[]>;
|
|
4460
4460
|
required: true;
|
|
4461
4461
|
};
|
|
4462
4462
|
items: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/vui",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.7",
|
|
4
4
|
"description": "A simple, extensible UI kit for Vue applications.",
|
|
5
5
|
"buildOptions": {
|
|
6
6
|
"name": "Vui",
|
|
@@ -59,11 +59,11 @@
|
|
|
59
59
|
"vue": "^3.2.45"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@fastkit/color-scheme": "0.12.
|
|
63
|
-
"@fastkit/icon-font": "0.12.
|
|
64
|
-
"@fastkit/tiny-logger": "0.12.
|
|
65
|
-
"@fastkit/vite-kit": "0.12.
|
|
66
|
-
"@fastkit/vue-kit": "0.12.
|
|
62
|
+
"@fastkit/color-scheme": "0.12.7",
|
|
63
|
+
"@fastkit/icon-font": "0.12.7",
|
|
64
|
+
"@fastkit/tiny-logger": "0.12.7",
|
|
65
|
+
"@fastkit/vite-kit": "0.12.7",
|
|
66
|
+
"@fastkit/vue-kit": "0.12.7",
|
|
67
67
|
"@tiptap/extension-link": "^2.0.0-beta.209",
|
|
68
68
|
"@tiptap/extension-text-style": "^2.0.0-beta.209",
|
|
69
69
|
"@tiptap/extension-underline": "^2.0.0-beta.209",
|
|
@@ -168,7 +168,7 @@ export const VDataTable = defineComponent({
|
|
|
168
168
|
default: () => DATA_TABLE_DEFAULTS.contorolThreshold,
|
|
169
169
|
},
|
|
170
170
|
headers: {
|
|
171
|
-
type: Array as PropType<DataTableHeader[]>,
|
|
171
|
+
type: Array as PropType<DataTableHeader<any>[]>,
|
|
172
172
|
required: true,
|
|
173
173
|
},
|
|
174
174
|
items: {
|