zhihao-ui 1.2.63 → 1.2.64
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/es/{DiyDataTable-Ctu1CHM9.js → DiyDataTable-Cgqys5z_.js} +68 -62
- package/dist/es/index.js +2 -2
- package/dist/index.css +1 -1
- package/dist/types/components/DiyDataTable/DiyDataTable.vue.d.ts +6 -1
- package/dist/types/components/DiyDataTable/index.d.ts +6 -1
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.cjs +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,12 @@ declare function __VLS_template(): Partial<Record<string, (_: {
|
|
|
6
6
|
}) => any>> & Partial<Record<string, (_: {
|
|
7
7
|
row: any;
|
|
8
8
|
$index: any;
|
|
9
|
-
}) => any
|
|
9
|
+
}) => any>> & {
|
|
10
|
+
operation?(_: {
|
|
11
|
+
row: DiyDataType;
|
|
12
|
+
$index: any;
|
|
13
|
+
}): any;
|
|
14
|
+
};
|
|
10
15
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11
16
|
rawData: {
|
|
12
17
|
required: true;
|
|
@@ -257,6 +257,11 @@ export declare const ZhDiyDataTable: {
|
|
|
257
257
|
}) => any>> & Partial<Record<string, (_: {
|
|
258
258
|
row: any;
|
|
259
259
|
$index: any;
|
|
260
|
-
}) => any
|
|
260
|
+
}) => any>> & {
|
|
261
|
+
operation?(_: {
|
|
262
|
+
row: import('./type').DiyDataType;
|
|
263
|
+
$index: any;
|
|
264
|
+
}): any;
|
|
265
|
+
};
|
|
261
266
|
}) & import('vue').Plugin;
|
|
262
267
|
export * from './type';
|