@cniot/android-pda-components 2.0.0-beta.16 → 2.0.0-beta.18

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/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 2.0.0-beta.18
2
+ - cardV2 支持 header 数组
3
+
4
+ # 2.0.0-beta.17
5
+ - selectV2 label 支持数字
6
+
1
7
  # 2.0.0-beta.16
2
8
  - useFieldV2 支持 onChange
3
9
 
@@ -542,7 +542,7 @@ export default function (props) {
542
542
  tip: field.getValidateStatus("number"),
543
543
  },
544
544
  {
545
- label: "输入",
545
+ label: "输入 type test",
546
546
  value: (
547
547
  <InputV2
548
548
  {...field.getProps("input", {
@@ -553,8 +553,9 @@ export default function (props) {
553
553
  })}
554
554
  />
555
555
  ),
556
- type: field.getValidateStatus("input") ? "error" : null,
557
- tip: field.getValidateStatus("input"),
556
+ type: 'test',
557
+ // type: field.getValidateStatus("input") ? "error" : null,
558
+ // tip: field.getValidateStatus("input"),
558
559
  },
559
560
  { label: "最多六个字符", value: "2022-09-08 12:00:00" },
560
561
  { label: "最多六个字符123", value: "2022-09-08 12:00:00" },
@@ -1,10 +1,16 @@
1
1
  .debug-father-container {
2
- height: 100vh;
3
- width: 100vw;
4
- position: absolute;
5
- top: 0;
6
- right: 0;
7
- bottom: 0;
8
- left: 0;
9
- background-color: #fff;
2
+ height: 100vh;
3
+ width: 100vw;
4
+ position: absolute;
5
+ top: 0;
6
+ right: 0;
7
+ bottom: 0;
8
+ left: 0;
9
+ background-color: #fff;
10
+
11
+ .op-pda-card-v2 .card-body .content-item {
12
+ &.test {
13
+ background-color: red;
14
+ }
15
+ }
10
16
  }