@juzhenfe/page-model 3.18.92 → 3.18.94
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/components/page-model/components/selectable-operate/index.vue.d.ts +6 -2
- package/dist/components/table/type.d.ts +1 -0
- package/dist/components/table-toolsbox/index.vue.d.ts +7 -0
- package/dist/index.es.js +164 -102
- package/dist/index.min.css +1 -1
- package/dist/index.umd.js +3 -3
- package/package.json +1 -1
|
@@ -13,7 +13,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
};
|
|
14
14
|
}, {
|
|
15
15
|
props: any;
|
|
16
|
+
emit: (event: "visible-change", ...args: any[]) => void;
|
|
16
17
|
executeData: import("vue").ComputedRef<any>;
|
|
18
|
+
handleRenderCountChange: (count: number) => void;
|
|
17
19
|
ButtonsRenderer: import("vue").DefineComponent<{
|
|
18
20
|
els: {
|
|
19
21
|
type: ArrayConstructor;
|
|
@@ -93,7 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
93
95
|
executeData: unknown[];
|
|
94
96
|
direction: string;
|
|
95
97
|
}, {}>;
|
|
96
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
98
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "visible-change"[], "visible-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
97
99
|
els: {
|
|
98
100
|
type: ArrayConstructor;
|
|
99
101
|
required: true;
|
|
@@ -106,7 +108,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
106
108
|
type: any;
|
|
107
109
|
required: true;
|
|
108
110
|
};
|
|
109
|
-
}
|
|
111
|
+
}>> & {
|
|
112
|
+
"onVisible-change"?: (...args: any[]) => any;
|
|
113
|
+
}, {
|
|
110
114
|
tableManager: any;
|
|
111
115
|
}, {}>;
|
|
112
116
|
export default _sfc_main;
|
|
@@ -19,6 +19,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
19
19
|
}, {
|
|
20
20
|
props: any;
|
|
21
21
|
emit: (event: "custom-event", ...args: any[]) => void;
|
|
22
|
+
isLoading: import("vue").ComputedRef<any>;
|
|
22
23
|
innerTools: {
|
|
23
24
|
export: {
|
|
24
25
|
icon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
@@ -62,6 +63,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
62
63
|
desc: string;
|
|
63
64
|
bg: boolean;
|
|
64
65
|
};
|
|
66
|
+
refresh: {
|
|
67
|
+
icon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
68
|
+
text: string;
|
|
69
|
+
event: string;
|
|
70
|
+
desc: string;
|
|
71
|
+
};
|
|
65
72
|
};
|
|
66
73
|
showToolbox: import("vue").ComputedRef<any>;
|
|
67
74
|
handleClickTool: (index: number, e: Event) => void;
|