@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="height: {{ itemHeight }}px;{{fontStyle}}{{renderStart + index === currentIndex ? activeStyle : ''}}"
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
- // wrapperItemStyle: wrapperItemStyle
70
+ wrapperItemStyle: wrapperItemStyle
64
71
  };
@@ -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
- .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(';');
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="height: {{ itemHeight }}px;{{fontStyle}}{{renderStart + index === currentIndex ? activeStyle : ''}}"
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
- // wrapperItemStyle: wrapperItemStyle
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
- .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(';');
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 || '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuya-miniapp/smart-ui",
3
- "version": "2.3.5-beta-2",
3
+ "version": "2.3.5",
4
4
  "author": "MiniApp Team",
5
5
  "license": "MIT",
6
6
  "miniprogram": "lib",