@witlink/components 0.0.1 → 0.0.3
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.js +3316 -3316
- package/dist/components.umd.cjs +52 -52
- package/dist/index.d.ts +51 -0
- package/package.json +5 -4
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ComponentOptionsMixin } from 'vue';
|
|
2
|
+
import { ComponentProvideOptions } from 'vue';
|
|
3
|
+
import { default as default_2 } from 'bpmn-js/lib/Modeler';
|
|
4
|
+
import { DefineComponent } from 'vue';
|
|
5
|
+
import { PublicProps } from 'vue';
|
|
6
|
+
|
|
7
|
+
declare const _default: {
|
|
8
|
+
Bpmn: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
BpmnPropertiesPanel: DefineComponent<globalThis.ExtractPropTypes<{
|
|
10
|
+
modeler: {
|
|
11
|
+
type: default_2;
|
|
12
|
+
};
|
|
13
|
+
isEdit: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
};
|
|
16
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
17
|
+
modeler: {
|
|
18
|
+
type: default_2;
|
|
19
|
+
};
|
|
20
|
+
isEdit: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
isEdit: boolean;
|
|
25
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
26
|
+
BpmnToolbar: DefineComponent<globalThis.ExtractPropTypes<{
|
|
27
|
+
modeler: {
|
|
28
|
+
type: default_2;
|
|
29
|
+
};
|
|
30
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
31
|
+
save: (...args: any[]) => void;
|
|
32
|
+
}, string, PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
33
|
+
modeler: {
|
|
34
|
+
type: default_2;
|
|
35
|
+
};
|
|
36
|
+
}>> & Readonly<{
|
|
37
|
+
onSave?: (...args: any[]) => any;
|
|
38
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
39
|
+
install: typeof install;
|
|
40
|
+
setHttpConfig: typeof setHttpConfig;
|
|
41
|
+
};
|
|
42
|
+
export default _default;
|
|
43
|
+
|
|
44
|
+
declare function install(app: any, options: any): void;
|
|
45
|
+
|
|
46
|
+
declare function setHttpConfig(config: {
|
|
47
|
+
baseUrl?: string;
|
|
48
|
+
token?: string;
|
|
49
|
+
}): void;
|
|
50
|
+
|
|
51
|
+
export { }
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@witlink/components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.3",
|
|
5
5
|
"description": "witlink公共组件库",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"import": "./dist/components.js",
|
|
17
17
|
"require": "./dist/components.umd.cjs"
|
|
18
18
|
},
|
|
19
|
-
"./style.css": "./dist/
|
|
19
|
+
"./style.css": "./dist/style.css"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"dev": "vite",
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
"unplugin-icons": "^0.20.0",
|
|
42
42
|
"unplugin-vue-components": "^0.27.4",
|
|
43
43
|
"vite": "^5.4.10",
|
|
44
|
-
"
|
|
45
|
-
"vue": "^3.5.12"
|
|
44
|
+
"vite-plugin-dts": "^4.3.0",
|
|
45
|
+
"vue": "^3.5.12",
|
|
46
|
+
"vue-tsc": "^2.1.8"
|
|
46
47
|
}
|
|
47
48
|
}
|