@partex/one-core 2.1.12 → 2.1.14
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/lib/components/echarts/echarts.d.ts +3 -3
- package/lib/components/header/index.vue.d.ts +1 -1
- package/lib/components/hooks/useQuery.d.ts +4 -4
- package/lib/components/store/user.d.ts +1 -1
- package/lib/components/table/index.vue.d.ts +1 -1
- package/lib/one-core.cjs +9 -9
- package/lib/one-core.js +115 -112
- package/lib/one-core.umd.cjs +9 -9
- package/package.json +5 -2
|
@@ -51,7 +51,7 @@ declare const _default: DefineComponent<{
|
|
|
51
51
|
default: () => {};
|
|
52
52
|
};
|
|
53
53
|
theme: {
|
|
54
|
-
type: PropType<"
|
|
54
|
+
type: PropType<"white" | "dark">;
|
|
55
55
|
default: undefined;
|
|
56
56
|
};
|
|
57
57
|
}, unknown, unknown, {}, {
|
|
@@ -112,12 +112,12 @@ declare const _default: DefineComponent<{
|
|
|
112
112
|
default: () => {};
|
|
113
113
|
};
|
|
114
114
|
theme: {
|
|
115
|
-
type: PropType<"
|
|
115
|
+
type: PropType<"white" | "dark">;
|
|
116
116
|
default: undefined;
|
|
117
117
|
};
|
|
118
118
|
}>>, {
|
|
119
119
|
style: CSSProperties | null;
|
|
120
|
-
theme: "
|
|
120
|
+
theme: "white" | "dark";
|
|
121
121
|
renderer: "canvas" | "svg";
|
|
122
122
|
notMerge: boolean;
|
|
123
123
|
ariaShow: boolean;
|
|
@@ -251,13 +251,13 @@ declare const _default: DefineComponent<{
|
|
|
251
251
|
"onUpdate:loading"?: ((...args: any[]) => any) | undefined;
|
|
252
252
|
"onOn-update:filter"?: ((...args: any[]) => any) | undefined;
|
|
253
253
|
}, {
|
|
254
|
+
height: string | number;
|
|
254
255
|
importer: {
|
|
255
256
|
type: string;
|
|
256
257
|
file: string;
|
|
257
258
|
params?: string | undefined;
|
|
258
259
|
steam?: boolean | undefined;
|
|
259
260
|
};
|
|
260
|
-
height: string | number;
|
|
261
261
|
actions: IActionButton[];
|
|
262
262
|
pagination: boolean;
|
|
263
263
|
minHeight: string | number;
|