@tuya-miniapp/smart-ui 2.3.5-beta-1 → 2.3.5-beta-3
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/picker/index.wxml +1 -0
- package/dist/picker-column/index.js +4 -0
- package/dist/picker-column/index.wxml +1 -1
- package/dist/picker-column/index.wxs +8 -1
- package/dist/wxs/style.wxs +12 -10
- package/lib/picker/index.wxml +1 -0
- package/lib/picker-column/index.js +4 -0
- package/lib/picker-column/index.wxml +1 -1
- package/lib/picker-column/index.wxs +8 -1
- package/lib/wxs/style.wxs +12 -10
- package/package.json +1 -1
package/dist/picker/index.wxml
CHANGED
@@ -21,6 +21,7 @@
|
|
21
21
|
value-key="{{ valueKey }}"
|
22
22
|
style="order: {{ item.order }}; {{ computed.style(item.style) }}"
|
23
23
|
active-style="{{ activeStyle }}"
|
24
|
+
font-style="{{computed.style(item.fontStyle)}}"
|
24
25
|
options="{{ item.values }}"
|
25
26
|
disabled="{{ item.disabled }}"
|
26
27
|
unit="{{ item.unit || unit }}"
|
@@ -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({ fontStyle, itemHeight, activeStyle }) {
|
48
|
+
const heightStyleStr = "height: " + itemHeight + 'px;'
|
49
|
+
const fontStyleStr = style(fontStyle);
|
50
|
+
const activeStyleStr = style(activeStyle);
|
51
|
+
return heightStyleStr + 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
@@ -18,7 +18,7 @@ function style(styles) {
|
|
18
18
|
}
|
19
19
|
|
20
20
|
if (array.isArray(styles)) {
|
21
|
-
|
21
|
+
const str = styles
|
22
22
|
.filter(function (item) {
|
23
23
|
return item != null && item !== '';
|
24
24
|
})
|
@@ -26,18 +26,20 @@ function style(styles) {
|
|
26
26
|
return style(item);
|
27
27
|
})
|
28
28
|
.join(';');
|
29
|
+
return str.endsWith(';') ? str : str + ';'
|
29
30
|
}
|
30
31
|
|
31
32
|
if (typeof styles === 'object' && 'Object' === styles.constructor) {
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
33
|
+
const str = object
|
34
|
+
.keys(styles)
|
35
|
+
.filter(function (key) {
|
36
|
+
return styles[key] != null && styles[key] !== '';
|
37
|
+
})
|
38
|
+
.map(function (key) {
|
39
|
+
return [kebabCase(key), [styles[key]]].join(':');
|
40
|
+
})
|
41
|
+
.join(';');
|
42
|
+
return str.endsWith(';') ? str : str + ';'
|
41
43
|
}
|
42
44
|
|
43
45
|
return styles || '';
|
package/lib/picker/index.wxml
CHANGED
@@ -21,6 +21,7 @@
|
|
21
21
|
value-key="{{ valueKey }}"
|
22
22
|
style="order: {{ item.order }}; {{ computed.style(item.style) }}"
|
23
23
|
active-style="{{ activeStyle }}"
|
24
|
+
font-style="{{computed.style(item.fontStyle)}}"
|
24
25
|
options="{{ item.values }}"
|
25
26
|
disabled="{{ item.disabled }}"
|
26
27
|
unit="{{ item.unit || unit }}"
|
@@ -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({ fontStyle, itemHeight, activeStyle }) {
|
48
|
+
const heightStyleStr = "height: " + itemHeight + 'px;'
|
49
|
+
const fontStyleStr = style(fontStyle);
|
50
|
+
const activeStyleStr = style(activeStyle);
|
51
|
+
return heightStyleStr + 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
@@ -18,7 +18,7 @@ function style(styles) {
|
|
18
18
|
}
|
19
19
|
|
20
20
|
if (array.isArray(styles)) {
|
21
|
-
|
21
|
+
const str = styles
|
22
22
|
.filter(function (item) {
|
23
23
|
return item != null && item !== '';
|
24
24
|
})
|
@@ -26,18 +26,20 @@ function style(styles) {
|
|
26
26
|
return style(item);
|
27
27
|
})
|
28
28
|
.join(';');
|
29
|
+
return str.endsWith(';') ? str : str + ';'
|
29
30
|
}
|
30
31
|
|
31
32
|
if (typeof styles === 'object' && 'Object' === styles.constructor) {
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
33
|
+
const str = object
|
34
|
+
.keys(styles)
|
35
|
+
.filter(function (key) {
|
36
|
+
return styles[key] != null && styles[key] !== '';
|
37
|
+
})
|
38
|
+
.map(function (key) {
|
39
|
+
return [kebabCase(key), [styles[key]]].join(':');
|
40
|
+
})
|
41
|
+
.join(';');
|
42
|
+
return str.endsWith(';') ? str : str + ';'
|
41
43
|
}
|
42
44
|
|
43
45
|
return styles || '';
|