voiptime-components 1.13.52 → 1.13.54
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/index.cjs.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +18 -0
- package/dist/index.es.js +2164 -2155
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -169,6 +169,11 @@ declare const __VLS_component_5: DefineComponent<__VLS_PublicProps, {
|
|
|
169
169
|
column: VTableColumnProps;
|
|
170
170
|
event: Event;
|
|
171
171
|
}) => any;
|
|
172
|
+
"row-dblclick": (payload: {
|
|
173
|
+
row: Record<string, any>;
|
|
174
|
+
column: VTableColumnProps;
|
|
175
|
+
event: Event;
|
|
176
|
+
}) => any;
|
|
172
177
|
"update:columns": (...args: unknown[]) => any;
|
|
173
178
|
"column-pin": (payload: {
|
|
174
179
|
column: VTableColumnProps;
|
|
@@ -202,6 +207,11 @@ declare const __VLS_component_5: DefineComponent<__VLS_PublicProps, {
|
|
|
202
207
|
column: VTableColumnProps;
|
|
203
208
|
event: Event;
|
|
204
209
|
}) => any) | undefined;
|
|
210
|
+
"onRow-dblclick"?: ((payload: {
|
|
211
|
+
row: Record<string, any>;
|
|
212
|
+
column: VTableColumnProps;
|
|
213
|
+
event: Event;
|
|
214
|
+
}) => any) | undefined;
|
|
205
215
|
"onUpdate:columns"?: ((...args: unknown[]) => any) | undefined;
|
|
206
216
|
"onColumn-pin"?: ((payload: {
|
|
207
217
|
column: VTableColumnProps;
|
|
@@ -1772,6 +1782,7 @@ export declare interface VMessageMethods {
|
|
|
1772
1782
|
|
|
1773
1783
|
export declare interface VMessageOptions {
|
|
1774
1784
|
message: string;
|
|
1785
|
+
title?: string;
|
|
1775
1786
|
type?: VMessageType;
|
|
1776
1787
|
showClose?: boolean;
|
|
1777
1788
|
duration?: number;
|
|
@@ -1962,6 +1973,13 @@ export declare interface VTableEmits {
|
|
|
1962
1973
|
column: VTableColumnProps;
|
|
1963
1974
|
event: Event;
|
|
1964
1975
|
}];
|
|
1976
|
+
'row-dblclick': [
|
|
1977
|
+
payload: {
|
|
1978
|
+
row: Record<string, any>;
|
|
1979
|
+
column: VTableColumnProps;
|
|
1980
|
+
event: Event;
|
|
1981
|
+
}
|
|
1982
|
+
];
|
|
1965
1983
|
'update:columns': [payload: VTableColumnProps[]];
|
|
1966
1984
|
'column-pin': [payload: {
|
|
1967
1985
|
column: VTableColumnProps;
|