acud 1.4.60 → 1.4.62-beta
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/dist/acud.js +513 -482
- package/dist/acud.js.map +1 -1
- package/es/carousel/carousel.d.ts +2 -0
- package/es/carousel/carousel.js +53 -31
- package/es/carousel/style/index.css +5 -0
- package/es/carousel/style/index.less +5 -0
- package/es/carousel/switch.d.ts +2 -0
- package/es/carousel/switch.js +18 -6
- package/es/input/TextArea.d.ts +2 -0
- package/es/input/TextArea.js +12 -3
- package/es/input/style/index.css +41 -0
- package/es/input/style/index.less +7 -0
- package/lib/carousel/carousel.d.ts +2 -0
- package/lib/carousel/carousel.js +53 -31
- package/lib/carousel/style/index.css +5 -0
- package/lib/carousel/style/index.less +5 -0
- package/lib/carousel/switch.d.ts +2 -0
- package/lib/carousel/switch.js +21 -6
- package/lib/input/TextArea.d.ts +2 -0
- package/lib/input/TextArea.js +12 -3
- package/lib/input/style/index.css +41 -0
- package/lib/input/style/index.less +7 -0
- package/package.json +1 -1
- package/dist/acud.css +0 -29341
- package/dist/acud.css.map +0 -1
- package/dist/acud.min.css +0 -2
- package/dist/acud.min.css.map +0 -1
- package/dist/acud.min.js +0 -69
- package/dist/acud.min.js.map +0 -1
|
@@ -957,6 +957,44 @@
|
|
|
957
957
|
.acud-input-textarea:focus {
|
|
958
958
|
outline: none;
|
|
959
959
|
}
|
|
960
|
+
.acud-input-textarea-error {
|
|
961
|
+
background-color: #FFFFFF;
|
|
962
|
+
border-color: #F33E3E;
|
|
963
|
+
}
|
|
964
|
+
.acud-input-textarea-error:hover {
|
|
965
|
+
background-color: #FFFFFF;
|
|
966
|
+
}
|
|
967
|
+
.acud-input-textarea-error:focus,
|
|
968
|
+
.acud-input-textarea-error:active {
|
|
969
|
+
background-color: #FFFFFF;
|
|
970
|
+
}
|
|
971
|
+
.acud-input-textarea-error[disabled],
|
|
972
|
+
.acud-input-textarea-error[aria-disabled="true"],
|
|
973
|
+
.acud-input-textarea-error[disabled]:hover,
|
|
974
|
+
.acud-input-textarea-error[aria-disabled="true"]:hover,
|
|
975
|
+
.acud-input-textarea-error[disabled]:focus,
|
|
976
|
+
.acud-input-textarea-error[aria-disabled="true"]:focus,
|
|
977
|
+
.acud-input-textarea-error[disabled]:active,
|
|
978
|
+
.acud-input-textarea-error[aria-disabled="true"]:active {
|
|
979
|
+
background-color: #FFFFFF;
|
|
980
|
+
}
|
|
981
|
+
.acud-input-textarea-error:hover {
|
|
982
|
+
border-color: #F33E3E;
|
|
983
|
+
}
|
|
984
|
+
.acud-input-textarea-error:focus,
|
|
985
|
+
.acud-input-textarea-error:active {
|
|
986
|
+
border-color: #F33E3E;
|
|
987
|
+
}
|
|
988
|
+
.acud-input-textarea-error[disabled],
|
|
989
|
+
.acud-input-textarea-error[aria-disabled="true"],
|
|
990
|
+
.acud-input-textarea-error[disabled]:hover,
|
|
991
|
+
.acud-input-textarea-error[aria-disabled="true"]:hover,
|
|
992
|
+
.acud-input-textarea-error[disabled]:focus,
|
|
993
|
+
.acud-input-textarea-error[aria-disabled="true"]:focus,
|
|
994
|
+
.acud-input-textarea-error[disabled]:active,
|
|
995
|
+
.acud-input-textarea-error[aria-disabled="true"]:active {
|
|
996
|
+
border-color: #F33E3E;
|
|
997
|
+
}
|
|
960
998
|
.acud-input-textarea-warning {
|
|
961
999
|
color: #F33E3E;
|
|
962
1000
|
}
|
|
@@ -1022,6 +1060,9 @@
|
|
|
1022
1060
|
background-color: #F7F7F9;
|
|
1023
1061
|
border-color: #D4D6D9;
|
|
1024
1062
|
}
|
|
1063
|
+
.acud-input-textarea-warning-popover-text {
|
|
1064
|
+
color: #F33E3E;
|
|
1065
|
+
}
|
|
1025
1066
|
.acud-input-textarea-limit-box {
|
|
1026
1067
|
position: absolute;
|
|
1027
1068
|
right: 16px;
|
|
@@ -336,6 +336,10 @@
|
|
|
336
336
|
outline: none;
|
|
337
337
|
}
|
|
338
338
|
|
|
339
|
+
&-error {
|
|
340
|
+
.basic-p-config(@input-enhance-p);
|
|
341
|
+
}
|
|
342
|
+
|
|
339
343
|
&-warning {
|
|
340
344
|
color: @input-enhance-color;
|
|
341
345
|
}
|
|
@@ -366,6 +370,9 @@
|
|
|
366
370
|
border-color: @G7;
|
|
367
371
|
}
|
|
368
372
|
}
|
|
373
|
+
&-warning-popover-text {
|
|
374
|
+
color: @input-popover-color;
|
|
375
|
+
}
|
|
369
376
|
|
|
370
377
|
&-limit-box {
|
|
371
378
|
// display: flex;
|