@tuya-miniapp/smart-ui 2.3.5-beta-3 → 2.3.5
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.
@@ -44,11 +44,11 @@ function wrapperInterStyle(data) {
|
|
44
44
|
});
|
45
45
|
}
|
46
46
|
|
47
|
-
function wrapperItemStyle(
|
48
|
-
const heightStyleStr = "height: " + itemHeight + 'px;'
|
49
|
-
const fontStyleStr = style(fontStyle);
|
50
|
-
const activeStyleStr = style(activeStyle);
|
51
|
-
return heightStyleStr + fontStyleStr + activeStyleStr
|
47
|
+
function wrapperItemStyle(data) {
|
48
|
+
const heightStyleStr = "height: " + data.itemHeight + 'px;'
|
49
|
+
const fontStyleStr = style(data.fontStyle);
|
50
|
+
const 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 || '';
|
@@ -44,11 +44,11 @@ function wrapperInterStyle(data) {
|
|
44
44
|
});
|
45
45
|
}
|
46
46
|
|
47
|
-
function wrapperItemStyle(
|
48
|
-
const heightStyleStr = "height: " + itemHeight + 'px;'
|
49
|
-
const fontStyleStr = style(fontStyle);
|
50
|
-
const activeStyleStr = style(activeStyle);
|
51
|
-
return heightStyleStr + fontStyleStr + activeStyleStr
|
47
|
+
function wrapperItemStyle(data) {
|
48
|
+
const heightStyleStr = "height: " + data.itemHeight + 'px;'
|
49
|
+
const fontStyleStr = style(data.fontStyle);
|
50
|
+
const 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 || '';
|