@tuya-miniapp/smart-ui 2.3.5-beta-2 → 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.
@@ -16,7 +16,7 @@
|
|
16
16
|
wx:for-item="option"
|
17
17
|
wx:key="index"
|
18
18
|
data-index="{{ renderStart + index }}"
|
19
|
-
style="
|
19
|
+
style="{{computed.wrapperItemStyle({ itemHeight, fontStyle, activeStyle: renderStart + index === currentIndex ? activeStyle : ''})}}"
|
20
20
|
class="smart-ellipsis {{ utils.bem('picker-column__item', { disabled: option && option.disabled, selected: renderStart + index === currentIndex }) }} {{ renderStart + index === currentIndex ? 'active-class' : '' }}"
|
21
21
|
>
|
22
22
|
{{ computed.optionText(option, valueKey) }}
|
@@ -44,6 +44,13 @@ function wrapperInterStyle(data) {
|
|
44
44
|
});
|
45
45
|
}
|
46
46
|
|
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
|
+
}
|
53
|
+
|
47
54
|
// function wrapperItemStyle(data) {
|
48
55
|
// const { index, animationIndex: currentIndex } = data;
|
49
56
|
// const offsetIndex = currentIndex - index;
|
@@ -60,5 +67,5 @@ module.exports = {
|
|
60
67
|
rootStyle: rootStyle,
|
61
68
|
wrapperStyle: wrapperStyle,
|
62
69
|
wrapperInterStyle: wrapperInterStyle,
|
63
|
-
|
70
|
+
wrapperItemStyle: wrapperItemStyle
|
64
71
|
};
|
package/dist/wxs/style.wxs
CHANGED
@@ -25,19 +25,19 @@ function style(styles) {
|
|
25
25
|
.map(function (item) {
|
26
26
|
return style(item);
|
27
27
|
})
|
28
|
-
.join(';');
|
28
|
+
.join(';') || '';
|
29
29
|
}
|
30
30
|
|
31
31
|
if (typeof styles === 'object' && 'Object' === styles.constructor) {
|
32
32
|
return object
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
33
|
+
.keys(styles)
|
34
|
+
.filter(function (key) {
|
35
|
+
return styles[key] != null && styles[key] !== '';
|
36
|
+
})
|
37
|
+
.map(function (key) {
|
38
|
+
return [kebabCase(key), [styles[key]]].join(':');
|
39
|
+
})
|
40
|
+
.join(';') || '';
|
41
41
|
}
|
42
42
|
|
43
43
|
return styles || '';
|
@@ -16,7 +16,7 @@
|
|
16
16
|
wx:for-item="option"
|
17
17
|
wx:key="index"
|
18
18
|
data-index="{{ renderStart + index }}"
|
19
|
-
style="
|
19
|
+
style="{{computed.wrapperItemStyle({ itemHeight, fontStyle, activeStyle: renderStart + index === currentIndex ? activeStyle : ''})}}"
|
20
20
|
class="smart-ellipsis {{ utils.bem('picker-column__item', { disabled: option && option.disabled, selected: renderStart + index === currentIndex }) }} {{ renderStart + index === currentIndex ? 'active-class' : '' }}"
|
21
21
|
>
|
22
22
|
{{ computed.optionText(option, valueKey) }}
|
@@ -44,6 +44,13 @@ function wrapperInterStyle(data) {
|
|
44
44
|
});
|
45
45
|
}
|
46
46
|
|
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
|
+
}
|
53
|
+
|
47
54
|
// function wrapperItemStyle(data) {
|
48
55
|
// const { index, animationIndex: currentIndex } = data;
|
49
56
|
// const offsetIndex = currentIndex - index;
|
@@ -60,5 +67,5 @@ module.exports = {
|
|
60
67
|
rootStyle: rootStyle,
|
61
68
|
wrapperStyle: wrapperStyle,
|
62
69
|
wrapperInterStyle: wrapperInterStyle,
|
63
|
-
|
70
|
+
wrapperItemStyle: wrapperItemStyle
|
64
71
|
};
|
package/lib/wxs/style.wxs
CHANGED
@@ -25,19 +25,19 @@ function style(styles) {
|
|
25
25
|
.map(function (item) {
|
26
26
|
return style(item);
|
27
27
|
})
|
28
|
-
.join(';');
|
28
|
+
.join(';') || '';
|
29
29
|
}
|
30
30
|
|
31
31
|
if (typeof styles === 'object' && 'Object' === styles.constructor) {
|
32
32
|
return object
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
33
|
+
.keys(styles)
|
34
|
+
.filter(function (key) {
|
35
|
+
return styles[key] != null && styles[key] !== '';
|
36
|
+
})
|
37
|
+
.map(function (key) {
|
38
|
+
return [kebabCase(key), [styles[key]]].join(':');
|
39
|
+
})
|
40
|
+
.join(';') || '';
|
41
41
|
}
|
42
42
|
|
43
43
|
return styles || '';
|