@hzab/flowlong-designer 0.1.0 → 0.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hzab/flowlong-designer",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "自定义审批流配置组件",
5
5
  "main": "src",
6
6
  "scripts": {
@@ -21,6 +21,10 @@
21
21
  "author": "CaiYansong",
22
22
  "license": "ISC",
23
23
  "devDependencies": {
24
+ "@hzab/data-model": "^1.7.0",
25
+ "@hzab/deep-list": "^0.0.2",
26
+ "@hzab/group-user-selector": "^0.0.4",
27
+ "nanoid": "^3.3.7",
24
28
  "@hzab/permissions": "0.1.1",
25
29
  "@hzab/webpack-config": "^0.7.1",
26
30
  "@types/react": "^17.0.62",
@@ -45,10 +49,10 @@
45
49
  "prettier --write"
46
50
  ]
47
51
  },
48
- "dependencies": {
49
- "@hzab/data-model": "^1.7.0",
50
- "@hzab/deep-list": "^0.0.2",
51
- "@hzab/group-user-selector": "^0.0.4",
52
+ "peerDependencies": {
53
+ "@hzab/data-model": ">=1.7.0",
54
+ "@hzab/deep-list": ">=0.0.2",
55
+ "@hzab/group-user-selector": ">=0.0.4",
52
56
  "nanoid": "^3.3.7"
53
57
  }
54
58
  }
@@ -374,7 +374,7 @@ export const Approver = (props) => {
374
374
  </Form.Item>
375
375
  </>
376
376
  ) : null}
377
-
377
+ */}
378
378
  <Form.Item label="多人审批时审批方式" name="examineMode">
379
379
  <Radio.Group
380
380
  options={examineModeOptions}
@@ -386,7 +386,7 @@ export const Approver = (props) => {
386
386
  });
387
387
  }}
388
388
  />
389
- </Form.Item> */}
389
+ </Form.Item>
390
390
  </Form>
391
391
  </Drawer>
392
392
  </div>
@@ -39,7 +39,7 @@ export const termModeOptions = [
39
39
  * 多人审批时审批方式
40
40
  */
41
41
  export const examineModeOptions = [
42
- { label: "按顺序依次审批", value: 1 },
42
+ // { label: "按顺序依次审批", value: 1 },
43
43
  { label: "会签 (可同时审批,每个人必须审批通过)", value: 2 },
44
44
  { label: "或签 (有一人审批通过即可)", value: 3 },
45
45
  ];