@hw-component/form 1.9.69 → 1.9.70

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/es/index.css CHANGED
@@ -54,6 +54,7 @@
54
54
  display: -ms-inline-flexbox;
55
55
  display: inline-flex;
56
56
  margin-left: 4px;
57
+ cursor: pointer;
57
58
  }
58
59
  .ant-hw-form-base-item {
59
60
  display: -webkit-box;
package/lib/index.css CHANGED
@@ -54,6 +54,7 @@
54
54
  display: -ms-inline-flexbox;
55
55
  display: inline-flex;
56
56
  margin-left: 4px;
57
+ cursor: pointer;
57
58
  }
58
59
  .ant-hw-form-base-item {
59
60
  display: -webkit-box;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hw-component/form",
3
- "version": "1.9.69",
3
+ "version": "1.9.70",
4
4
  "description": "基于antd二次开发",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,6 +8,7 @@
8
8
  .@{ant-prefix}-hw-form-label-item-tooltip {
9
9
  display: inline-flex;
10
10
  margin-left: 4px;
11
+ cursor: pointer;
11
12
  }
12
13
  .@{ant-prefix}-hw-form-base-item {
13
14
  display: flex;
@@ -143,6 +143,11 @@ export default () => {
143
143
  name: "yyy",
144
144
  type: "inputNumberGroup",
145
145
  rules: [{ required: true }],
146
+ itemProps:{
147
+ inputNumberProps:{
148
+ precision:2
149
+ }
150
+ }
146
151
  },
147
152
  {
148
153
  label: "文字",
@@ -31,11 +31,9 @@ export default () => {
31
31
  }}
32
32
  />
33
33
  <HInputNumberGroup
34
- inputNumberProps={[
35
- {
36
- min: Number.MIN_SAFE_INTEGER,
37
- },
38
- ]}
34
+ inputNumberProps={{
35
+ precision:2
36
+ }}
39
37
  />
40
38
  <HTextArea />
41
39
  </Space>