@tuya-miniapp/smart-ui 2.3.5-beta-3 → 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 +1 -1
- package/dist/field/textarea.wxml +1 -1
- package/dist/picker-column/index.wxs +5 -5
- package/dist/wxs/style.wxs +4 -6
- package/lib/field/input.wxml +1 -1
- package/lib/field/textarea.wxml +1 -1
- package/lib/picker-column/index.wxs +5 -5
- package/lib/wxs/style.wxs +4 -6
- package/package.json +1 -1
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 }}"
|
@@ -44,11 +44,11 @@ function wrapperInterStyle(data) {
|
|
44
44
|
});
|
45
45
|
}
|
46
46
|
|
47
|
-
function wrapperItemStyle(
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
return heightStyleStr + fontStyleStr + activeStyleStr
|
47
|
+
function wrapperItemStyle(data) {
|
48
|
+
var heightStyleStr = "height: " + data.itemHeight + 'px;'
|
49
|
+
var fontStyleStr = style(data.fontStyle);
|
50
|
+
var activeStyleStr = style(data.activeStyle);
|
51
|
+
return heightStyleStr + (fontStyleStr ? fontStyleStr + ';' : fontStyleStr) + activeStyleStr
|
52
52
|
}
|
53
53
|
|
54
54
|
// function wrapperItemStyle(data) {
|
package/dist/wxs/style.wxs
CHANGED
@@ -18,19 +18,18 @@ function style(styles) {
|
|
18
18
|
}
|
19
19
|
|
20
20
|
if (array.isArray(styles)) {
|
21
|
-
|
21
|
+
return styles
|
22
22
|
.filter(function (item) {
|
23
23
|
return item != null && item !== '';
|
24
24
|
})
|
25
25
|
.map(function (item) {
|
26
26
|
return style(item);
|
27
27
|
})
|
28
|
-
.join(';');
|
29
|
-
return str.endsWith(';') ? str : str + ';'
|
28
|
+
.join(';') || '';
|
30
29
|
}
|
31
30
|
|
32
31
|
if (typeof styles === 'object' && 'Object' === styles.constructor) {
|
33
|
-
|
32
|
+
return object
|
34
33
|
.keys(styles)
|
35
34
|
.filter(function (key) {
|
36
35
|
return styles[key] != null && styles[key] !== '';
|
@@ -38,8 +37,7 @@ function style(styles) {
|
|
38
37
|
.map(function (key) {
|
39
38
|
return [kebabCase(key), [styles[key]]].join(':');
|
40
39
|
})
|
41
|
-
.join(';');
|
42
|
-
return str.endsWith(';') ? str : str + ';'
|
40
|
+
.join(';') || '';
|
43
41
|
}
|
44
42
|
|
45
43
|
return styles || '';
|
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 }}"
|
@@ -44,11 +44,11 @@ function wrapperInterStyle(data) {
|
|
44
44
|
});
|
45
45
|
}
|
46
46
|
|
47
|
-
function wrapperItemStyle(
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
return heightStyleStr + fontStyleStr + activeStyleStr
|
47
|
+
function wrapperItemStyle(data) {
|
48
|
+
var heightStyleStr = "height: " + data.itemHeight + 'px;'
|
49
|
+
var fontStyleStr = style(data.fontStyle);
|
50
|
+
var activeStyleStr = style(data.activeStyle);
|
51
|
+
return heightStyleStr + (fontStyleStr ? fontStyleStr + ';' : fontStyleStr) + activeStyleStr
|
52
52
|
}
|
53
53
|
|
54
54
|
// function wrapperItemStyle(data) {
|
package/lib/wxs/style.wxs
CHANGED
@@ -18,19 +18,18 @@ function style(styles) {
|
|
18
18
|
}
|
19
19
|
|
20
20
|
if (array.isArray(styles)) {
|
21
|
-
|
21
|
+
return styles
|
22
22
|
.filter(function (item) {
|
23
23
|
return item != null && item !== '';
|
24
24
|
})
|
25
25
|
.map(function (item) {
|
26
26
|
return style(item);
|
27
27
|
})
|
28
|
-
.join(';');
|
29
|
-
return str.endsWith(';') ? str : str + ';'
|
28
|
+
.join(';') || '';
|
30
29
|
}
|
31
30
|
|
32
31
|
if (typeof styles === 'object' && 'Object' === styles.constructor) {
|
33
|
-
|
32
|
+
return object
|
34
33
|
.keys(styles)
|
35
34
|
.filter(function (key) {
|
36
35
|
return styles[key] != null && styles[key] !== '';
|
@@ -38,8 +37,7 @@ function style(styles) {
|
|
38
37
|
.map(function (key) {
|
39
38
|
return [kebabCase(key), [styles[key]]].join(':');
|
40
39
|
})
|
41
|
-
.join(';');
|
42
|
-
return str.endsWith(';') ? str : str + ';'
|
40
|
+
.join(';') || '';
|
43
41
|
}
|
44
42
|
|
45
43
|
return styles || '';
|