@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 +6 -0
- package/doc/all-v2-components/index.jsx +4 -3
- package/doc/all-v2-components/index.less +14 -8
- package/es/index.cjs.js +1 -1
- package/es/index.es.js +5 -3
- package/es/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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:
|
|
557
|
-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
}
|