voiptime-components 1.13.52 → 1.13.53
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.d.ts +17 -0
- package/dist/index.es.js +2098 -2095
- 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;
|
|
@@ -1962,6 +1972,13 @@ export declare interface VTableEmits {
|
|
|
1962
1972
|
column: VTableColumnProps;
|
|
1963
1973
|
event: Event;
|
|
1964
1974
|
}];
|
|
1975
|
+
'row-dblclick': [
|
|
1976
|
+
payload: {
|
|
1977
|
+
row: Record<string, any>;
|
|
1978
|
+
column: VTableColumnProps;
|
|
1979
|
+
event: Event;
|
|
1980
|
+
}
|
|
1981
|
+
];
|
|
1965
1982
|
'update:columns': [payload: VTableColumnProps[]];
|
|
1966
1983
|
'column-pin': [payload: {
|
|
1967
1984
|
column: VTableColumnProps;
|