@szjy/workflow 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@szjy/workflow",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,8 @@
11
11
  "dev": "vite",
12
12
  "build": "vue-tsc && vite build",
13
13
  "preview": "vite preview",
14
- "release": "npx commit-and-tag-version"
14
+ "release": "npx commit-and-tag-version",
15
+ "sync": "cnpm sync @szjy/workflow"
15
16
  },
16
17
  "dependencies": {
17
18
  "@ant-design/icons-vue": "^7.0.1",
@@ -1,10 +0,0 @@
1
- import type { Element } from 'bpmn-js/lib/model/Types';
2
- export declare const addUserItem: (element: Element, { type, userId }: {
3
- type: string;
4
- userId: string;
5
- }) => void;
6
- export declare const getUserValue: (element: Element) => any;
7
- export declare const updateUserValue: (element: Element, { type, userId }: {
8
- type: string;
9
- userId: string;
10
- }) => void;