@tuya-miniapp/smart-ui 1.3.1-beta-12 → 2.0.0-beta-1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/picker/index.js +4 -1
- package/dist/picker/index.wxml +1 -0
- package/dist/picker-column/index.js +4 -0
- package/dist/picker-column/index.wxml +1 -1
- package/lib/picker/index.js +4 -1
- package/lib/picker/index.wxml +1 -0
- package/lib/picker-column/index.js +4 -0
- package/lib/picker-column/index.wxml +1 -1
- package/package.json +2 -2
package/dist/picker/index.js
CHANGED
@@ -2,7 +2,10 @@ import { SmartComponent } from '../common/component';
|
|
2
2
|
import { pickerProps } from './shared';
|
3
3
|
SmartComponent({
|
4
4
|
classes: ['active-class', 'toolbar-class', 'column-class'],
|
5
|
-
props: Object.assign(Object.assign({}, pickerProps), {
|
5
|
+
props: Object.assign(Object.assign({}, pickerProps), { activeStyle: {
|
6
|
+
type: String,
|
7
|
+
value: '',
|
8
|
+
}, valueKey: {
|
6
9
|
type: String,
|
7
10
|
value: 'text',
|
8
11
|
}, toolbarPosition: {
|
package/dist/picker/index.wxml
CHANGED
@@ -17,7 +17,7 @@
|
|
17
17
|
wx:for-item="option"
|
18
18
|
wx:key="index"
|
19
19
|
data-index="{{ renderStart + index }}"
|
20
|
-
style="height: {{ itemHeight }}px"
|
20
|
+
style="height: {{ itemHeight }}px;{{renderStart + index === currentIndex ? activeStyle : ''}}"
|
21
21
|
class="smart-ellipsis {{ utils.bem('picker-column__item', { disabled: option && option.disabled, selected: renderStart + index === currentIndex }) }} {{ renderStart + index === currentIndex ? 'active-class' : '' }}"
|
22
22
|
bindtap="onClickItem"
|
23
23
|
>{{ computed.optionText(option, valueKey) }}</view>
|
package/lib/picker/index.js
CHANGED
@@ -15,7 +15,10 @@ var component_1 = require("../common/component");
|
|
15
15
|
var shared_1 = require("./shared");
|
16
16
|
(0, component_1.SmartComponent)({
|
17
17
|
classes: ['active-class', 'toolbar-class', 'column-class'],
|
18
|
-
props: __assign(__assign({}, shared_1.pickerProps), {
|
18
|
+
props: __assign(__assign({}, shared_1.pickerProps), { activeStyle: {
|
19
|
+
type: String,
|
20
|
+
value: '',
|
21
|
+
}, valueKey: {
|
19
22
|
type: String,
|
20
23
|
value: 'text',
|
21
24
|
}, toolbarPosition: {
|
package/lib/picker/index.wxml
CHANGED
@@ -17,7 +17,7 @@
|
|
17
17
|
wx:for-item="option"
|
18
18
|
wx:key="index"
|
19
19
|
data-index="{{ renderStart + index }}"
|
20
|
-
style="height: {{ itemHeight }}px"
|
20
|
+
style="height: {{ itemHeight }}px;{{renderStart + index === currentIndex ? activeStyle : ''}}"
|
21
21
|
class="smart-ellipsis {{ utils.bem('picker-column__item', { disabled: option && option.disabled, selected: renderStart + index === currentIndex }) }} {{ renderStart + index === currentIndex ? 'active-class' : '' }}"
|
22
22
|
bindtap="onClickItem"
|
23
23
|
>{{ computed.optionText(option, valueKey) }}</view>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@tuya-miniapp/smart-ui",
|
3
|
-
"version": "
|
3
|
+
"version": "2.0.0-beta-1",
|
4
4
|
"author": "MiniApp Team",
|
5
5
|
"license": "MIT",
|
6
6
|
"miniprogram": "lib",
|
@@ -76,7 +76,7 @@
|
|
76
76
|
],
|
77
77
|
"dependencies": {
|
78
78
|
"@ray-js/components-ty-slider": "^0.2.48",
|
79
|
-
"@tuya-miniapp/icons": "
|
79
|
+
"@tuya-miniapp/icons": "2.0.0"
|
80
80
|
},
|
81
81
|
"maintainers": [
|
82
82
|
{
|