@apform-ui/core 1.10.29 → 1.10.31
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/apform-ui.css +1 -1
- package/dist/apform-ui.js +3926 -3903
- package/dist/apform-ui.umd.cjs +39 -39
- package/dist/components/ExecutionArtifactPanel/ExecutionArtifactPanel.vue.d.ts +14 -1
- package/package.json +12 -11
|
@@ -9,7 +9,14 @@ type __VLS_Props = {
|
|
|
9
9
|
/** 是否显示类型筛选 */
|
|
10
10
|
showFilters?: boolean;
|
|
11
11
|
};
|
|
12
|
-
declare
|
|
12
|
+
declare var __VLS_7: {
|
|
13
|
+
items: ArtifactItem[];
|
|
14
|
+
group: ArtifactGroup;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_Slots = {} & {
|
|
17
|
+
gallery?: (props: typeof __VLS_7) => any;
|
|
18
|
+
};
|
|
19
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
20
|
preview: (item: ArtifactItem) => any;
|
|
14
21
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
22
|
onPreview?: ((item: ArtifactItem) => any) | undefined;
|
|
@@ -19,4 +26,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
19
26
|
items: ArtifactItem[];
|
|
20
27
|
showFilters: boolean;
|
|
21
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
29
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
22
30
|
export default _default;
|
|
31
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apform-ui/core",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.31",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "yangdongnan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,6 +50,16 @@
|
|
|
50
50
|
"styles",
|
|
51
51
|
"README.md"
|
|
52
52
|
],
|
|
53
|
+
"scripts": {
|
|
54
|
+
"dev": "vite",
|
|
55
|
+
"build": "vite build",
|
|
56
|
+
"build:check": "vue-tsc --noEmit && vite build",
|
|
57
|
+
"preview": "vite preview",
|
|
58
|
+
"test": "vitest run",
|
|
59
|
+
"test:watch": "vitest",
|
|
60
|
+
"clean": "rm -rf dist",
|
|
61
|
+
"prepublishOnly": "pnpm run build"
|
|
62
|
+
},
|
|
53
63
|
"peerDependencies": {
|
|
54
64
|
"@vue-flow/background": ">=1.3.0",
|
|
55
65
|
"@vue-flow/controls": ">=1.1.0",
|
|
@@ -109,14 +119,5 @@
|
|
|
109
119
|
"vue": "^3.5.13",
|
|
110
120
|
"vue-tsc": "^2.2.8",
|
|
111
121
|
"vue-virtual-scroller": "2.0.0-beta.8"
|
|
112
|
-
},
|
|
113
|
-
"scripts": {
|
|
114
|
-
"dev": "vite",
|
|
115
|
-
"build": "vite build",
|
|
116
|
-
"build:check": "vue-tsc --noEmit && vite build",
|
|
117
|
-
"preview": "vite preview",
|
|
118
|
-
"test": "vitest run",
|
|
119
|
-
"test:watch": "vitest",
|
|
120
|
-
"clean": "rm -rf dist"
|
|
121
122
|
}
|
|
122
|
-
}
|
|
123
|
+
}
|