ronds-metadata 1.2.58 → 1.2.60

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ declare const _default: (props: any) => JSX.Element;
2
+ export default _default;
@@ -0,0 +1,42 @@
1
+ import "antd/es/input/style";
2
+ import _Input from "antd/es/input";
3
+ import "antd/es/input-number/style";
4
+ import _InputNumber from "antd/es/input-number";
5
+ import React from "react";
6
+ /*
7
+ * @Author: uloveits 719310130@qq.com
8
+ * @Date: 2023-02-06 15:05:42
9
+ * @LastEditors: Please set LastEditors
10
+ * @LastEditTime: 2023-06-02 11:34:36
11
+ */
12
+ import { withFieldCellWrapper } from '../HOC';
13
+ var Index = function Index(props) {
14
+ var data = props.data,
15
+ fgStream = props.fgStream,
16
+ setting = props.setting;
17
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(_Input.Group, {
18
+ compact: true
19
+ }, /*#__PURE__*/React.createElement(_InputNumber, {
20
+ disabled: setting === null || setting === void 0 ? void 0 : setting.disabled,
21
+ style: {
22
+ width: (setting === null || setting === void 0 ? void 0 : setting.addonBefore) ? 'calc(50% - 44px)' : 'calc(50% - 14px)',
23
+ textAlign: 'center'
24
+ }
25
+ }), /*#__PURE__*/React.createElement(_Input, {
26
+ style: {
27
+ width: 30,
28
+ borderLeft: 0,
29
+ borderRight: 0,
30
+ pointerEvents: 'none'
31
+ },
32
+ placeholder: "~",
33
+ disabled: true
34
+ }), /*#__PURE__*/React.createElement(_InputNumber, {
35
+ disabled: setting === null || setting === void 0 ? void 0 : setting.disabled,
36
+ style: {
37
+ width: (setting === null || setting === void 0 ? void 0 : setting.addonBefore) ? 'calc(50% - 44px)' : 'calc(50% - 14px)',
38
+ textAlign: 'center'
39
+ }
40
+ })));
41
+ };
42
+ export default withFieldCellWrapper(Index);
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * @Author: wangxian
3
3
  * @Date: 2023-02-06 11:35:45
4
- * @LastEditTime: 2023-02-27 10:13:49
4
+ * @LastEditTime: 2023-06-02 11:21:16
5
5
  */
6
6
  import React from 'react';
7
7
  import Input from './Cell/Input';
@@ -16,6 +16,7 @@ import Checkbox from './Cell/Checkbox';
16
16
  import Radio from './Cell/Radio';
17
17
  import Password from './Cell/Password';
18
18
  import Upload from './Cell/Upload';
19
+ import NumberRange from './Cell/NumberRange';
19
20
  import Obj from './Cell/Obj';
20
21
  import List from './Cell/List';
21
22
  import Table from './Cell/Table';
@@ -52,6 +53,7 @@ var DataCellMap = {
52
53
  radio: Radio,
53
54
  password: Password,
54
55
  upload: Upload,
56
+ numberRange: NumberRange,
55
57
  obj: Obj,
56
58
  list: List,
57
59
  table: Table
@@ -687,6 +687,56 @@ export declare const settingSchema: {
687
687
  }[];
688
688
  }[];
689
689
  }[];
690
+ rangeNumber: {
691
+ id: string;
692
+ type: string;
693
+ properties: ({
694
+ id: string;
695
+ type: string;
696
+ fields: {
697
+ id: string;
698
+ type: string;
699
+ refId: string;
700
+ value: {
701
+ label: string;
702
+ };
703
+ }[];
704
+ } | {
705
+ id: string;
706
+ type: string;
707
+ fields: {
708
+ id: string;
709
+ type: string;
710
+ refId: string;
711
+ value: {
712
+ common: {
713
+ label: string;
714
+ };
715
+ 'common-en-US': {};
716
+ };
717
+ }[];
718
+ })[];
719
+ types: {
720
+ id: string;
721
+ type: string;
722
+ properties: {
723
+ id: string;
724
+ type: string;
725
+ fields: {
726
+ id: string;
727
+ type: string;
728
+ refId: string;
729
+ value: {
730
+ text: {};
731
+ common: {
732
+ label: string;
733
+ };
734
+ 'common-en-US': {};
735
+ };
736
+ }[];
737
+ }[];
738
+ }[];
739
+ }[];
690
740
  switch: {
691
741
  id: string;
692
742
  type: string;
@@ -1715,6 +1765,62 @@ export declare const radioParam: {
1715
1765
  type: string;
1716
1766
  };
1717
1767
  };
1768
+ export declare const numberRangeParam: {
1769
+ type: string;
1770
+ schema: {
1771
+ id: string;
1772
+ type: string;
1773
+ properties: ({
1774
+ id: string;
1775
+ type: string;
1776
+ fields: {
1777
+ id: string;
1778
+ type: string;
1779
+ refId: string;
1780
+ value: {
1781
+ label: string;
1782
+ };
1783
+ }[];
1784
+ } | {
1785
+ id: string;
1786
+ type: string;
1787
+ fields: {
1788
+ id: string;
1789
+ type: string;
1790
+ refId: string;
1791
+ value: {
1792
+ common: {
1793
+ label: string;
1794
+ };
1795
+ 'common-en-US': {};
1796
+ };
1797
+ }[];
1798
+ })[];
1799
+ types: {
1800
+ id: string;
1801
+ type: string;
1802
+ properties: {
1803
+ id: string;
1804
+ type: string;
1805
+ fields: {
1806
+ id: string;
1807
+ type: string;
1808
+ refId: string;
1809
+ value: {
1810
+ text: {};
1811
+ common: {
1812
+ label: string;
1813
+ };
1814
+ 'common-en-US': {};
1815
+ };
1816
+ }[];
1817
+ }[];
1818
+ }[];
1819
+ }[];
1820
+ rule: {
1821
+ type: string;
1822
+ };
1823
+ };
1718
1824
  export declare const complexComps: {
1719
1825
  id: string;
1720
1826
  name: string;
@@ -2,19 +2,23 @@ import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
2
2
  /*
3
3
  * @Author: wangxian
4
4
  * @Date: 2023-02-06 08:24:17
5
- * @LastEditTime: 2023-02-28 16:43:15
5
+ * @LastEditTime: 2023-06-05 16:21:16
6
6
  */
7
7
  import { RefRule, Rule } from './ruleConfig';
8
8
  export var inputSchema = [{
9
9
  id: 'inputSchema',
10
10
  type: 'object',
11
- properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan, Rule.common.defaultValue, Rule.common.help, Rule.common.tooltip, Rule.common.placeholder, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props, RefRule.common.rules.props],
11
+ properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan,
12
+ // Rule.common.defaultValue,
13
+ Rule.common.help, Rule.common.tooltip, Rule.common.placeholder, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props, RefRule.common.rules.props],
12
14
  types: [].concat(_toConsumableArray(RefRule.common.depend.types), _toConsumableArray(RefRule.common.rules.types))
13
15
  }];
14
16
  export var textareaSchema = [{
15
17
  id: 'textareaSchema',
16
18
  type: 'object',
17
- properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan, RefRule.textarea.props, Rule.common.defaultValue, Rule.common.help, Rule.common.tooltip, Rule.common.placeholder, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props, RefRule.common.rules.props],
19
+ properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan, RefRule.textarea.props,
20
+ // Rule.common.defaultValue,
21
+ Rule.common.help, Rule.common.tooltip, Rule.common.placeholder, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props, RefRule.common.rules.props],
18
22
  types: [].concat(_toConsumableArray(RefRule.common.depend.types), _toConsumableArray(RefRule.textarea.types), _toConsumableArray(RefRule.common.rules.types))
19
23
  }];
20
24
  export var dateSchema = [{
@@ -28,7 +32,9 @@ export var dateSchema = [{
28
32
  export var numberSchema = [{
29
33
  id: 'numberSchema',
30
34
  type: 'object',
31
- properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan, Rule.common.defaultValue, Rule.common.help, Rule.common.tooltip, Rule.common.placeholder, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props, RefRule.common.rules.props],
35
+ properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan,
36
+ // Rule.common.defaultValue,
37
+ Rule.common.help, Rule.common.tooltip, Rule.common.placeholder, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props, RefRule.common.rules.props],
32
38
  types: [].concat(_toConsumableArray(RefRule.common.depend.types), _toConsumableArray(RefRule.common.rules.types))
33
39
  }];
34
40
  export var switchSchema = [{
@@ -42,19 +48,25 @@ export var switchSchema = [{
42
48
  export var selectSchema = [{
43
49
  id: 'selectSchema',
44
50
  type: 'object',
45
- properties: [Rule.common.id, Rule.common.label, RefRule.enum.props, Rule.common.color, Rule.common.colSpan, Rule.common.defaultValue, Rule.common.help, Rule.common.tooltip, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props],
51
+ properties: [Rule.common.id, Rule.common.label, RefRule.enum.props, Rule.common.color, Rule.common.colSpan,
52
+ // Rule.common.defaultValue,
53
+ Rule.common.help, Rule.common.tooltip, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props],
46
54
  types: [].concat(_toConsumableArray(RefRule.common.depend.types), _toConsumableArray(RefRule.enum.types))
47
55
  }];
48
56
  export var colorSchema = [{
49
57
  id: 'colorSchema',
50
58
  type: 'object',
51
- properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan, Rule.common.defaultValue, Rule.common.help, Rule.common.tooltip, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props],
59
+ properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan,
60
+ // Rule.common.defaultValue,
61
+ Rule.common.help, Rule.common.tooltip, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props],
52
62
  types: _toConsumableArray(RefRule.common.depend.types)
53
63
  }];
54
64
  export var passwordSchema = [{
55
65
  id: 'passwordSchema',
56
66
  type: 'object',
57
- properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan, Rule.common.defaultValue, Rule.common.help, Rule.common.tooltip, Rule.common.placeholder, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props, RefRule.common.rules.props],
67
+ properties: [Rule.common.id, Rule.common.label, Rule.common.color, Rule.common.colSpan,
68
+ // Rule.common.defaultValue,
69
+ Rule.common.help, Rule.common.tooltip, Rule.common.placeholder, Rule.common.require, Rule.common.disabled, Rule.common.br, Rule.common.hidden, RefRule.common.depend.props, RefRule.common.rules.props],
58
70
  types: [].concat(_toConsumableArray(RefRule.common.depend.types), _toConsumableArray(RefRule.common.rules.types))
59
71
  }];
60
72
  export var uploadSchema = [{
@@ -74,6 +86,7 @@ export var settingSchema = {
74
86
  textarea: textareaSchema,
75
87
  date: dateSchema,
76
88
  numebr: numberSchema,
89
+ rangeNumber: inputSchema,
77
90
  switch: switchSchema,
78
91
  select: selectSchema,
79
92
  color: colorSchema,
@@ -192,6 +205,13 @@ export var radioParam = {
192
205
  type: 'checkbox'
193
206
  }
194
207
  };
208
+ export var numberRangeParam = {
209
+ type: 'text',
210
+ schema: settingSchema.rangeNumber,
211
+ rule: {
212
+ type: 'rangeNumber'
213
+ }
214
+ };
195
215
  // 基础组件列表渲染
196
216
  export var complexComps = [{
197
217
  id: 'color',
@@ -218,6 +238,11 @@ export var complexComps = [{
218
238
  name: '单选框',
219
239
  type: 'radio',
220
240
  param: radioParam
241
+ }, {
242
+ id: 'numberRange',
243
+ name: '数字范围',
244
+ type: 'numberRange',
245
+ param: numberRangeParam
221
246
  }];
222
247
  export var objParam = {
223
248
  type: 'ref',
@@ -209,6 +209,23 @@ export declare const Rule: {
209
209
  };
210
210
  }[];
211
211
  };
212
+ disabled: {
213
+ id: string;
214
+ type: string;
215
+ fields: {
216
+ id: string;
217
+ type: string;
218
+ refId: string;
219
+ value: {
220
+ text: {};
221
+ common: {
222
+ label: string;
223
+ depend: {};
224
+ };
225
+ 'common-en-US': {};
226
+ };
227
+ }[];
228
+ };
212
229
  };
213
230
  text: {
214
231
  type: {
@@ -2,7 +2,7 @@ import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
2
2
  /*
3
3
  * @Author: wangxian
4
4
  * @Date: 2023-02-08 10:36:25
5
- * @LastEditTime: 2023-02-28 16:11:14
5
+ * @LastEditTime: 2023-06-02 10:39:54
6
6
  */
7
7
  import { DEFAULT_DATE_FORMAT } from '../../../comps/MetadataForm/DataCell/Input';
8
8
  export var Rule = {
@@ -215,6 +215,23 @@ export var Rule = {
215
215
  'common-en-US': {}
216
216
  }
217
217
  }]
218
+ },
219
+ disabled: {
220
+ id: 'disabled',
221
+ type: 'text',
222
+ fields: [{
223
+ id: 'Rule.Form',
224
+ type: 'ref',
225
+ refId: 'com.ronds.schema.default.Rule.Form',
226
+ value: {
227
+ text: {},
228
+ common: {
229
+ label: '只读',
230
+ depend: {}
231
+ },
232
+ 'common-en-US': {}
233
+ }
234
+ }]
218
235
  }
219
236
  },
220
237
  text: {
@@ -522,7 +539,7 @@ export var RefRule = {
522
539
  types: [{
523
540
  id: 'dependRule',
524
541
  type: 'object',
525
- properties: [Rule.depend.show, Rule.depend.hidden, Rule.depend.notRequire]
542
+ properties: [Rule.depend.show, Rule.depend.hidden, Rule.depend.notRequire, Rule.depend.disabled]
526
543
  }]
527
544
  },
528
545
  rules: {
@@ -1,8 +1,8 @@
1
- import _extends from "@babel/runtime/helpers/esm/extends";
2
1
  import "antd/es/form/style";
3
2
  import _Form from "antd/es/form";
4
3
  import "antd/es/select/style";
5
4
  import _Select from "antd/es/select";
5
+ import _extends from "@babel/runtime/helpers/esm/extends";
6
6
  import "antd/es/upload/style";
7
7
  import _Upload from "antd/es/upload";
8
8
  import "antd/es/button/style";
@@ -16,7 +16,7 @@ import _Input from "antd/es/input";
16
16
  /*
17
17
  * @Author: wangxian
18
18
  * @Date: 2021-09-18 14:15:04
19
- * @LastEditTime: 2023-05-30 14:21:59
19
+ * @LastEditTime: 2023-06-02 10:46:41
20
20
  */
21
21
  import React from 'react';
22
22
  import { UploadOutlined } from '@ant-design/icons';
@@ -80,7 +80,7 @@ function Index(props) {
80
80
  }
81
81
  }, [extraInfo]);
82
82
  var processInputType = function processInputType(_type) {
83
- var _extraInfo$disabled, _extraInfo$disabled2, _extraInfo$disabled3, _extraInfo$disabled4, _extraInfo$disabled5, _extraInfo$addonAfter2, _extraInfo$addonAfter3, _extraInfo$addonAfter4, _extraInfo$addonAfter5, _extraInfo$disabled6;
83
+ var _extraInfo$disabled, _extraInfo$disabled2, _extraInfo$disabled3, _extraInfo$disabled4, _extraInfo$disabled5, _extraInfo$disabled6, _extraInfo$addonAfter2, _extraInfo$addonAfter3, _extraInfo$addonAfter4, _extraInfo$addonAfter5, _extraInfo$disabled7;
84
84
  switch (_type) {
85
85
  case 'password':
86
86
  return /*#__PURE__*/React.createElement(_Input.Password, {
@@ -119,7 +119,9 @@ function Index(props) {
119
119
  icon: /*#__PURE__*/React.createElement(UploadOutlined, null)
120
120
  }, "\u4E0A\u4F20"));
121
121
  case 'numberRange':
122
- return /*#__PURE__*/React.createElement(NumberRange, extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.numberRange);
122
+ return /*#__PURE__*/React.createElement(NumberRange, _extends({}, extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.numberRange, {
123
+ disabled: (_extraInfo$disabled6 = extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.disabled) !== null && _extraInfo$disabled6 !== void 0 ? _extraInfo$disabled6 : disabled
124
+ }));
123
125
  default:
124
126
  return /*#__PURE__*/React.createElement(_Input, {
125
127
  addonAfter: ((_extraInfo$addonAfter2 = extraInfo.addonAfter) === null || _extraInfo$addonAfter2 === void 0 ? void 0 : _extraInfo$addonAfter2.key) ? /*#__PURE__*/React.createElement(_Form.Item, {
@@ -134,7 +136,7 @@ function Index(props) {
134
136
  }))) : undefined,
135
137
  showCount: extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.showCount,
136
138
  maxLength: extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.maxLength,
137
- disabled: (_extraInfo$disabled6 = extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.disabled) !== null && _extraInfo$disabled6 !== void 0 ? _extraInfo$disabled6 : disabled,
139
+ disabled: (_extraInfo$disabled7 = extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.disabled) !== null && _extraInfo$disabled7 !== void 0 ? _extraInfo$disabled7 : disabled,
138
140
  placeholder: extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.placeholder,
139
141
  title: valueTitle,
140
142
  allowClear: true
@@ -200,16 +200,15 @@ function Index(props) {
200
200
  },
201
201
  icon: isFold ? /*#__PURE__*/React.createElement(CaretDownOutlined, null) : /*#__PURE__*/React.createElement(CaretUpOutlined, null)
202
202
  })))), /*#__PURE__*/React.createElement(_Col, {
203
- flex: labelSpan && (formContext === null || formContext === void 0 ? void 0 : formContext.layout) === 'horizontal' ? "0 0 ".concat((24 - labelSpan) * 100 / 24, "%") : 1
203
+ flex: !(extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.titleHidden) && labelSpan && (formContext === null || formContext === void 0 ? void 0 : formContext.layout) === 'horizontal' ? "0 0 ".concat((24 - labelSpan) * 100 / 24, "%") : 1
204
204
  }, /*#__PURE__*/React.createElement("div", {
205
- style: {
206
- padding: '10px',
205
+ style: !(extraInfo === null || extraInfo === void 0 ? void 0 : extraInfo.borderHidden) ? {
206
+ padding: '10px 10px 0 10px',
207
207
  border: '1px solid var(--ronds-metadata-color-border-1)',
208
208
  width: '100%',
209
209
  borderRadius: '4px',
210
- margin: '0 0 8px',
211
210
  display: "".concat(formContext.isFoldForm && isFold ? 'none' : '')
212
- }
211
+ } : {}
213
212
  }, /*#__PURE__*/React.createElement(MetadataRefContext.Provider, {
214
213
  value: {
215
214
  fields: refFieldsRef.current
@@ -1,11 +1,17 @@
1
1
  interface INumberRangeProps {
2
2
  startKey?: string;
3
3
  endKey?: string;
4
+ disabled?: boolean;
4
5
  addonBefore?: {
5
6
  key: string;
6
7
  defaultValue: string;
7
8
  value: string[];
8
9
  };
10
+ addonAfter?: {
11
+ key: string;
12
+ defaultValue: string;
13
+ value: string[];
14
+ };
9
15
  value?: any;
10
16
  onChange?: (value: any) => void;
11
17
  }
@@ -10,14 +10,16 @@ import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
10
10
  /*
11
11
  * @Author: wangxian
12
12
  * @Date: 2023-05-30 13:36:05
13
- * @LastEditTime: 2023-05-30 15:04:46
13
+ * @LastEditTime: 2023-06-05 16:34:56
14
14
  */
15
15
  import React from 'react';
16
16
  var NumberRange = function NumberRange(props) {
17
17
  var startKey = props.startKey,
18
18
  value = props.value,
19
+ disabled = props.disabled,
19
20
  endKey = props.endKey,
20
21
  addonBefore = props.addonBefore,
22
+ addonAfter = props.addonAfter,
21
23
  onChange = props.onChange;
22
24
  var _React$useState = React.useState(),
23
25
  _React$useState2 = _slicedToArray(_React$useState, 2),
@@ -31,11 +33,18 @@ var NumberRange = function NumberRange(props) {
31
33
  _React$useState6 = _slicedToArray(_React$useState5, 2),
32
34
  before = _React$useState6[0],
33
35
  setBefore = _React$useState6[1];
36
+ var _React$useState7 = React.useState(),
37
+ _React$useState8 = _slicedToArray(_React$useState7, 2),
38
+ after = _React$useState8[0],
39
+ setAfter = _React$useState8[1];
34
40
  React.useEffect(function () {
35
- if (addonBefore.defaultValue) {
41
+ if (addonBefore === null || addonBefore === void 0 ? void 0 : addonBefore.defaultValue) {
36
42
  setBefore(addonBefore.defaultValue);
37
43
  }
38
- }, [addonBefore]);
44
+ if (addonAfter === null || addonAfter === void 0 ? void 0 : addonAfter.defaultValue) {
45
+ setAfter(addonAfter.defaultValue);
46
+ }
47
+ }, [addonBefore, addonAfter]);
39
48
  React.useEffect(function () {
40
49
  if (value) {
41
50
  if (value[startKey || 'min']) {
@@ -44,14 +53,14 @@ var NumberRange = function NumberRange(props) {
44
53
  if (value[endKey || 'max']) {
45
54
  setMax(value[endKey || 'max']);
46
55
  }
47
- if (addonBefore.key && value[addonBefore.key]) {
56
+ if ((addonBefore === null || addonBefore === void 0 ? void 0 : addonBefore.key) && value[addonBefore.key]) {
48
57
  setBefore(value[addonBefore.key]);
49
58
  }
50
59
  }
51
60
  }, [value]);
52
61
  var triggerChange = function triggerChange(changedValue) {
53
62
  var _objectSpread2;
54
- onChange && onChange(_objectSpread((_objectSpread2 = {}, _defineProperty(_objectSpread2, addonBefore.key, before), _defineProperty(_objectSpread2, startKey || 'min', min), _defineProperty(_objectSpread2, endKey || 'max', max), _objectSpread2), changedValue));
63
+ onChange && onChange(_objectSpread((_objectSpread2 = {}, _defineProperty(_objectSpread2, addonBefore === null || addonBefore === void 0 ? void 0 : addonBefore.key, before), _defineProperty(_objectSpread2, addonAfter === null || addonAfter === void 0 ? void 0 : addonAfter.key, after), _defineProperty(_objectSpread2, startKey || 'min', min), _defineProperty(_objectSpread2, endKey || 'max', max), _objectSpread2), changedValue));
55
64
  };
56
65
  var onStartChange = function onStartChange(v) {
57
66
  setMin(v);
@@ -63,11 +72,16 @@ var NumberRange = function NumberRange(props) {
63
72
  };
64
73
  var onBeforeChange = function onBeforeChange(v) {
65
74
  setBefore(v);
66
- triggerChange(_defineProperty({}, addonBefore.key, v));
75
+ triggerChange(_defineProperty({}, addonBefore === null || addonBefore === void 0 ? void 0 : addonBefore.key, v));
76
+ };
77
+ var onAfterChange = function onAfterChange(v) {
78
+ setAfter(v);
79
+ triggerChange(_defineProperty({}, addonAfter === null || addonAfter === void 0 ? void 0 : addonAfter.key, v));
67
80
  };
68
81
  return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(_Input.Group, {
69
82
  compact: true
70
83
  }, addonBefore && /*#__PURE__*/React.createElement(_Select, {
84
+ disabled: disabled,
71
85
  style: {
72
86
  width: '60px'
73
87
  },
@@ -81,14 +95,14 @@ var NumberRange = function NumberRange(props) {
81
95
  }),
82
96
  onChange: onBeforeChange
83
97
  }), /*#__PURE__*/React.createElement(_InputNumber, {
98
+ disabled: disabled,
84
99
  value: min,
85
100
  style: {
86
- width: addonBefore ? 'calc(50% - 44px)' : 'calc(50% - 14px)',
101
+ width: addonBefore || addonAfter ? 'calc(50% - 44px)' : 'calc(50% - 14px)',
87
102
  textAlign: 'center'
88
103
  },
89
104
  onChange: onStartChange
90
105
  }), /*#__PURE__*/React.createElement(_Input, {
91
- className: "site-input-split",
92
106
  style: {
93
107
  width: 30,
94
108
  borderLeft: 0,
@@ -98,15 +112,27 @@ var NumberRange = function NumberRange(props) {
98
112
  placeholder: "~",
99
113
  disabled: true
100
114
  }), /*#__PURE__*/React.createElement(_InputNumber, {
115
+ disabled: disabled,
101
116
  value: max,
102
- className: "site-input-right",
103
117
  style: {
104
- width: addonBefore ? 'calc(50% - 44px)' : 'calc(50% - 14px)',
118
+ width: addonBefore || addonAfter ? 'calc(50% - 44px)' : 'calc(50% - 14px)',
105
119
  textAlign: 'center'
106
- }
107
- // placeholder="Max"
108
- ,
120
+ },
109
121
  onChange: onEndChange
122
+ }), addonAfter && /*#__PURE__*/React.createElement(_Select, {
123
+ disabled: disabled,
124
+ style: {
125
+ width: '60px'
126
+ },
127
+ defaultValue: addonAfter.defaultValue,
128
+ value: after,
129
+ options: addonAfter.value.map(function (it) {
130
+ return {
131
+ label: it,
132
+ value: it
133
+ };
134
+ }),
135
+ onChange: onAfterChange
110
136
  })));
111
137
  };
112
138
  export default NumberRange;
@@ -5,7 +5,7 @@ import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
5
5
  /*
6
6
  * @Author: wangxian
7
7
  * @Date: 2021-09-18 14:15:04
8
- * @LastEditTime: 2023-04-18 10:15:35
8
+ * @LastEditTime: 2023-06-02 10:55:33
9
9
  */
10
10
  import React from 'react';
11
11
  import { deepClone } from '../../../utils';
@@ -99,7 +99,8 @@ export function withAddOnAfter(WrappedComponent) {
99
99
  name: _name,
100
100
  labelSpan: labelSpan,
101
101
  isObj: isObj,
102
- notRequire: depend === null || depend === void 0 ? void 0 : depend.notRequire
102
+ notRequire: depend === null || depend === void 0 ? void 0 : depend.notRequire,
103
+ disabled: (depend === null || depend === void 0 ? void 0 : depend.disabled) || false
103
104
  })), isShowTypeInfo && !field && type !== 'number' && type !== 'bool' && /*#__PURE__*/React.createElement("div", {
104
105
  className: "with-add-on-after-extra"
105
106
  }, help !== null && help !== void 0 ? help : type))), fields && ((_fields$5 = fields[0]) === null || _fields$5 === void 0 ? void 0 : (_fields$5$value = _fields$5.value) === null || _fields$5$value === void 0 ? void 0 : (_fields$5$value$commo = _fields$5$value.common) === null || _fields$5$value$commo === void 0 ? void 0 : _fields$5$value$commo.br) && /*#__PURE__*/React.createElement(_Col, {
@@ -4,7 +4,7 @@ import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
4
4
  /*
5
5
  * @Author: your name
6
6
  * @Date: 2021-09-18 14:15:04
7
- * @LastEditTime: 2023-02-28 15:38:07
7
+ * @LastEditTime: 2023-06-05 18:47:31
8
8
  */
9
9
  import { getLocale } from '../../../framework/locale';
10
10
  import moment from 'moment';
@@ -77,12 +77,20 @@ export var useWatchDepend = function useWatchDepend(_depends, stream$, name) {
77
77
  }
78
78
  if (_depends === null || _depends === void 0 ? void 0 : _depends.notRequire) {
79
79
  var _p$payload3;
80
- var _show2 = processDependHiddenOrShow(_depends === null || _depends === void 0 ? void 0 : _depends.notRequire, p === null || p === void 0 ? void 0 : (_p$payload3 = p.payload) === null || _p$payload3 === void 0 ? void 0 : _p$payload3.allVals, stream$, name);
80
+ var _notRequire = processDependHiddenOrShow(_depends === null || _depends === void 0 ? void 0 : _depends.notRequire, p === null || p === void 0 ? void 0 : (_p$payload3 = p.payload) === null || _p$payload3 === void 0 ? void 0 : _p$payload3.allVals, stream$, name);
81
81
  var _dr3 = dependsRef.current;
82
- _dr3.notRequire = _show2;
82
+ _dr3.notRequire = _notRequire;
83
83
  setDepends(_objectSpread({}, _dr3));
84
84
  dependsRef.current = _dr3;
85
85
  }
86
+ if (_depends === null || _depends === void 0 ? void 0 : _depends.disabled) {
87
+ var _p$payload4;
88
+ var _disabled = processDependHiddenOrShow(_depends === null || _depends === void 0 ? void 0 : _depends.disabled, p === null || p === void 0 ? void 0 : (_p$payload4 = p.payload) === null || _p$payload4 === void 0 ? void 0 : _p$payload4.allVals, stream$, name);
89
+ var _dr4 = dependsRef.current;
90
+ _dr4.disabled = _disabled;
91
+ setDepends(_objectSpread({}, _dr4));
92
+ dependsRef.current = _dr4;
93
+ }
86
94
  }
87
95
  });
88
96
  }
@@ -93,7 +101,7 @@ var processDependHiddenOrShow = function processDependHiddenOrShow(depend, chang
93
101
  try {
94
102
  // const regex = /\w+(\.\w+)?[=<>!]{1}/g;
95
103
  var regex = /\w+(\.\w+)?[=<>!]{1}|\w+(\.\w+)?(\.indexOf\('.+'\)[=<>!]{1})/g;
96
- var keys = depend.trim().match(regex);
104
+ var keys = depend.trim().replace(/\s/g, '').match(regex);
97
105
  if (!keys) {
98
106
  return false;
99
107
  }
@@ -54,6 +54,7 @@ export type IFiledDepend = {
54
54
  hidden: string;
55
55
  show: string;
56
56
  notRequire: string;
57
+ disabled: string;
57
58
  };
58
59
  export type IStreamEventType = 'onSelectChange' | 'onButtonCellClick' | 'onValuesChange' | 'onWatchDepend' | string;
59
60
  export type IStreamEvent = {
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * @Author:wangxian
3
3
  * @Date: 2021-09-18 14:15:04
4
- * @LastEditTime: 2023-02-28 10:14:07
4
+ * @LastEditTime: 2023-06-02 10:50:12
5
5
  */
6
6
  import React from 'react';
7
7
  export var MetadataFormContext = /*#__PURE__*/React.createContext(null);
package/es/utils.js CHANGED
@@ -6,7 +6,7 @@ import _regeneratorRuntime from "@babel/runtime/regenerator";
6
6
  /*
7
7
  * @Author: wangxian
8
8
  * @Date: 2021-09-18 14:15:04
9
- * @LastEditTime: 2023-04-20 15:15:56
9
+ * @LastEditTime: 2023-06-02 09:16:28
10
10
  */
11
11
  import saveAs from 'file-saver';
12
12
  import { asBlob } from 'html-docx-js-typescript';
@@ -191,7 +191,7 @@ function _handleMd2Doc() {
191
191
  margin: {
192
192
  top: 100
193
193
  },
194
- orientation: 'landscape'
194
+ orientation: 'portrait'
195
195
  };
196
196
  _context.next = 6;
197
197
  return asBlob(html, opt);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "public": true,
3
3
  "name": "ronds-metadata",
4
- "version": "1.2.58",
4
+ "version": "1.2.60",
5
5
  "scripts": {
6
6
  "start": "dumi dev",
7
7
  "docs:build": "dumi build",