@partex/one-core 2.0.17 → 2.0.19
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/icon/index.d.ts +1 -1
- package/lib/components/importer/index.vue.d.ts +28 -38
- package/lib/components/table/index.vue.d.ts +6 -0
- package/lib/one-core.cjs +1 -1
- package/lib/one-core.js +1229 -1263
- package/lib/one-core.umd.cjs +1 -1
- package/package.json +1 -1
- package/volar.d.ts +1 -1
- /package/lib/components/icon/{Bar.vue.d.ts → User.vue.d.ts} +0 -0
|
@@ -22,4 +22,4 @@ export { default as IconPin } from './Pin.vue';
|
|
|
22
22
|
export { default as IconArrowDown } from './ArrowDown.vue';
|
|
23
23
|
export { default as IconArrowUp } from './ArrowUp.vue';
|
|
24
24
|
export { default as IconReset } from './Reset.vue';
|
|
25
|
-
export { default as
|
|
25
|
+
export { default as IconUser } from './User.vue';
|
|
@@ -6,24 +6,18 @@ declare const _default: DefineComponent<{
|
|
|
6
6
|
type: PropType<boolean>;
|
|
7
7
|
default: boolean;
|
|
8
8
|
};
|
|
9
|
-
|
|
9
|
+
data: {
|
|
10
10
|
required: true;
|
|
11
|
-
type: PropType<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
default:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
type: PropType<string>;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
steam: {
|
|
25
|
-
type: PropType<boolean>;
|
|
26
|
-
default: boolean;
|
|
11
|
+
type: PropType<{
|
|
12
|
+
type: string;
|
|
13
|
+
file: string;
|
|
14
|
+
params?: string | undefined;
|
|
15
|
+
steam?: boolean | undefined;
|
|
16
|
+
}>;
|
|
17
|
+
default: () => {
|
|
18
|
+
type: string;
|
|
19
|
+
file: string;
|
|
20
|
+
};
|
|
27
21
|
};
|
|
28
22
|
}, {
|
|
29
23
|
modal: Ref<boolean>;
|
|
@@ -82,32 +76,28 @@ declare const _default: DefineComponent<{
|
|
|
82
76
|
type: PropType<boolean>;
|
|
83
77
|
default: boolean;
|
|
84
78
|
};
|
|
85
|
-
|
|
79
|
+
data: {
|
|
86
80
|
required: true;
|
|
87
|
-
type: PropType<
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
default:
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
type: PropType<string>;
|
|
98
|
-
default: string;
|
|
99
|
-
};
|
|
100
|
-
steam: {
|
|
101
|
-
type: PropType<boolean>;
|
|
102
|
-
default: boolean;
|
|
81
|
+
type: PropType<{
|
|
82
|
+
type: string;
|
|
83
|
+
file: string;
|
|
84
|
+
params?: string | undefined;
|
|
85
|
+
steam?: boolean | undefined;
|
|
86
|
+
}>;
|
|
87
|
+
default: () => {
|
|
88
|
+
type: string;
|
|
89
|
+
file: string;
|
|
90
|
+
};
|
|
103
91
|
};
|
|
104
92
|
}>> & {
|
|
105
93
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
106
94
|
}, {
|
|
95
|
+
data: {
|
|
96
|
+
type: string;
|
|
97
|
+
file: string;
|
|
98
|
+
params?: string | undefined;
|
|
99
|
+
steam?: boolean | undefined;
|
|
100
|
+
};
|
|
107
101
|
show: boolean;
|
|
108
|
-
type: string;
|
|
109
|
-
params: string;
|
|
110
|
-
file: string;
|
|
111
|
-
steam: boolean;
|
|
112
102
|
}, {}>;
|
|
113
103
|
export default _default;
|
|
@@ -70,6 +70,8 @@ declare const _default: DefineComponent<{
|
|
|
70
70
|
type: PropType<{
|
|
71
71
|
type: string;
|
|
72
72
|
file: string;
|
|
73
|
+
params?: string | undefined;
|
|
74
|
+
steam?: boolean | undefined;
|
|
73
75
|
}>;
|
|
74
76
|
default: undefined;
|
|
75
77
|
};
|
|
@@ -203,6 +205,8 @@ declare const _default: DefineComponent<{
|
|
|
203
205
|
type: PropType<{
|
|
204
206
|
type: string;
|
|
205
207
|
file: string;
|
|
208
|
+
params?: string | undefined;
|
|
209
|
+
steam?: boolean | undefined;
|
|
206
210
|
}>;
|
|
207
211
|
default: undefined;
|
|
208
212
|
};
|
|
@@ -234,6 +238,8 @@ declare const _default: DefineComponent<{
|
|
|
234
238
|
importer: {
|
|
235
239
|
type: string;
|
|
236
240
|
file: string;
|
|
241
|
+
params?: string | undefined;
|
|
242
|
+
steam?: boolean | undefined;
|
|
237
243
|
};
|
|
238
244
|
exporter: {
|
|
239
245
|
jobTypeName: string;
|