@tuya-miniapp/smart-ui 2.3.5 → 2.3.6-beta-1
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/field/input.wxml
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
disabled="{{ disabled }}"
|
11
11
|
maxlength="{{ maxlength }}"
|
12
12
|
placeholder="{{ !interError ? placeholder : errorMessage || placeholder }}"
|
13
|
-
placeholder-style="{{ interError ? 'color: var(--field-input-error-text-color, var(--app-M2, #f04c4c));' : 'color: var(--field-placeholder-text-color, var(--app-B6-N4, rgba(0, 0, 0, 0.4));'}}{{ placeholderStyle }}"
|
13
|
+
placeholder-style="{{ interError ? 'color: var(--field-input-error-text-color, var(--app-M2, #f04c4c));' : 'color: var(--field-placeholder-text-color, var(--app-B6-N4, rgba(0, 0, 0, 0.4)));'}}{{ placeholderStyle }}"
|
14
14
|
confirm-type="{{ confirmType }}"
|
15
15
|
confirm-hold="{{ confirmHold }}"
|
16
16
|
hold-keyboard="{{ holdKeyboard }}"
|
package/dist/field/textarea.wxml
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
disabled="{{ disabled }}"
|
13
13
|
maxlength="{{ maxlength }}"
|
14
14
|
placeholder="{{ !interError ? placeholder : errorMessage || placeholder }}"
|
15
|
-
placeholder-style="{{ interError ? 'color: var(--field-input-error-text-color, var(--app-M2, #f04c4c));' : 'color: var(--field-placeholder-text-color, var(--app-B6-N4, rgba(0, 0, 0, 0.4));'}}{{ placeholderStyle }}"
|
15
|
+
placeholder-style="{{ interError ? 'color: var(--field-input-error-text-color, var(--app-M2, #f04c4c));' : 'color: var(--field-placeholder-text-color, var(--app-B6-N4, rgba(0, 0, 0, 0.4)));'}}{{ placeholderStyle }}"
|
16
16
|
auto-height="{{ !!autosize }}"
|
17
17
|
style="{{ computed.inputStyle(autosize) }}"
|
18
18
|
cursor-spacing="{{ cursorSpacing }}"
|
@@ -45,9 +45,9 @@ function wrapperInterStyle(data) {
|
|
45
45
|
}
|
46
46
|
|
47
47
|
function wrapperItemStyle(data) {
|
48
|
-
|
49
|
-
|
50
|
-
|
48
|
+
var heightStyleStr = "height: " + data.itemHeight + 'px;'
|
49
|
+
var fontStyleStr = style(data.fontStyle);
|
50
|
+
var activeStyleStr = style(data.activeStyle);
|
51
51
|
return heightStyleStr + (fontStyleStr ? fontStyleStr + ';' : fontStyleStr) + activeStyleStr
|
52
52
|
}
|
53
53
|
|
package/lib/field/input.wxml
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
disabled="{{ disabled }}"
|
11
11
|
maxlength="{{ maxlength }}"
|
12
12
|
placeholder="{{ !interError ? placeholder : errorMessage || placeholder }}"
|
13
|
-
placeholder-style="{{ interError ? 'color: var(--field-input-error-text-color, var(--app-M2, #f04c4c));' : 'color: var(--field-placeholder-text-color, var(--app-B6-N4, rgba(0, 0, 0, 0.4));'}}{{ placeholderStyle }}"
|
13
|
+
placeholder-style="{{ interError ? 'color: var(--field-input-error-text-color, var(--app-M2, #f04c4c));' : 'color: var(--field-placeholder-text-color, var(--app-B6-N4, rgba(0, 0, 0, 0.4)));'}}{{ placeholderStyle }}"
|
14
14
|
confirm-type="{{ confirmType }}"
|
15
15
|
confirm-hold="{{ confirmHold }}"
|
16
16
|
hold-keyboard="{{ holdKeyboard }}"
|
package/lib/field/textarea.wxml
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
disabled="{{ disabled }}"
|
13
13
|
maxlength="{{ maxlength }}"
|
14
14
|
placeholder="{{ !interError ? placeholder : errorMessage || placeholder }}"
|
15
|
-
placeholder-style="{{ interError ? 'color: var(--field-input-error-text-color, var(--app-M2, #f04c4c));' : 'color: var(--field-placeholder-text-color, var(--app-B6-N4, rgba(0, 0, 0, 0.4));'}}{{ placeholderStyle }}"
|
15
|
+
placeholder-style="{{ interError ? 'color: var(--field-input-error-text-color, var(--app-M2, #f04c4c));' : 'color: var(--field-placeholder-text-color, var(--app-B6-N4, rgba(0, 0, 0, 0.4)));'}}{{ placeholderStyle }}"
|
16
16
|
auto-height="{{ !!autosize }}"
|
17
17
|
style="{{ computed.inputStyle(autosize) }}"
|
18
18
|
cursor-spacing="{{ cursorSpacing }}"
|
@@ -45,9 +45,9 @@ function wrapperInterStyle(data) {
|
|
45
45
|
}
|
46
46
|
|
47
47
|
function wrapperItemStyle(data) {
|
48
|
-
|
49
|
-
|
50
|
-
|
48
|
+
var heightStyleStr = "height: " + data.itemHeight + 'px;'
|
49
|
+
var fontStyleStr = style(data.fontStyle);
|
50
|
+
var activeStyleStr = style(data.activeStyle);
|
51
51
|
return heightStyleStr + (fontStyleStr ? fontStyleStr + ';' : fontStyleStr) + activeStyleStr
|
52
52
|
}
|
53
53
|
|