@tuya-miniapp/smart-ui 2.1.11-beta-4 → 2.1.11-beta-5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cell/index.js +4 -10
- package/dist/datetime-picker/index.js +10 -10
- package/dist/field/index.js +1 -1
- package/dist/nav-bar/index.css +1 -1
- package/dist/nav-bar/index.wxml +1 -1
- package/dist/nav-bar/index.wxss +1 -1
- package/dist/notice-bar/index.js +1 -1
- package/dist/stepper/index.css +1 -1
- package/dist/stepper/index.js +4 -0
- package/dist/stepper/index.json +4 -1
- package/dist/stepper/index.wxml +2 -0
- package/dist/stepper/index.wxss +1 -1
- package/dist/tabbar/index.wxml +2 -0
- package/dist/tag/index.js +1 -1
- package/lib/cell/index.js +9 -15
- package/lib/datetime-picker/index.js +10 -10
- package/lib/field/index.js +2 -2
- package/lib/nav-bar/index.css +1 -1
- package/lib/nav-bar/index.wxml +1 -1
- package/lib/nav-bar/index.wxss +1 -1
- package/lib/notice-bar/index.js +2 -2
- package/lib/stepper/index.css +1 -1
- package/lib/stepper/index.js +7 -0
- package/lib/stepper/index.json +4 -1
- package/lib/stepper/index.wxml +2 -0
- package/lib/stepper/index.wxss +1 -1
- package/lib/tabbar/index.wxml +2 -0
- package/lib/tag/index.js +2 -2
- package/package.json +1 -1
package/dist/cell/index.js
CHANGED
@@ -1,13 +1,7 @@
|
|
1
|
-
import upIcon from '@tuya-miniapp/icons/dist/svg/Up
|
2
|
-
import downIcon from '@tuya-miniapp/icons/dist/svg/Down
|
3
|
-
import leftIcon from '@tuya-miniapp/icons/dist/svg/Left
|
4
|
-
import rightIcon from '@tuya-miniapp/icons/dist/svg/Right
|
5
|
-
// import {
|
6
|
-
// Right as rightIcon,
|
7
|
-
// Left as leftIcon,
|
8
|
-
// Down as downIcon,
|
9
|
-
// Up as upIcon,
|
10
|
-
// } from '@tuya-miniapp/icons';
|
1
|
+
import upIcon from '@tuya-miniapp/icons/dist/svg/Up';
|
2
|
+
import downIcon from '@tuya-miniapp/icons/dist/svg/Down';
|
3
|
+
import leftIcon from '@tuya-miniapp/icons/dist/svg/Left';
|
4
|
+
import rightIcon from '@tuya-miniapp/icons/dist/svg/Right';
|
11
5
|
import { link } from '../mixins/link';
|
12
6
|
import { SmartComponent } from '../common/component';
|
13
7
|
SmartComponent({
|
@@ -47,16 +47,16 @@ SmartComponent({
|
|
47
47
|
}, formatter: {
|
48
48
|
type: null,
|
49
49
|
value: defaultFormatter,
|
50
|
-
},
|
50
|
+
}, amText: {
|
51
51
|
type: String,
|
52
52
|
value: 'AM',
|
53
|
-
},
|
53
|
+
}, pmText: {
|
54
54
|
type: String,
|
55
55
|
value: 'PM',
|
56
56
|
}, columnsOrder: {
|
57
57
|
type: Array,
|
58
58
|
value: [],
|
59
|
-
},
|
59
|
+
}, is12HourClock: {
|
60
60
|
type: Boolean,
|
61
61
|
value: false,
|
62
62
|
}, minDate: {
|
@@ -134,7 +134,7 @@ SmartComponent({
|
|
134
134
|
return this.set({ columns: results });
|
135
135
|
},
|
136
136
|
getOriginColumns() {
|
137
|
-
const { filter,
|
137
|
+
const { filter, is12HourClock, type, amText, pmText, columnsOrder } = this.data;
|
138
138
|
const results = this.getRanges().map(({ type, range }, index) => {
|
139
139
|
const order = columnsOrder[index];
|
140
140
|
let values = times(range[1] - range[0] + 1, index => {
|
@@ -146,11 +146,11 @@ SmartComponent({
|
|
146
146
|
}
|
147
147
|
return { type, values, order };
|
148
148
|
});
|
149
|
-
if (
|
149
|
+
if (is12HourClock && type === 'time') {
|
150
150
|
return [
|
151
151
|
{
|
152
152
|
type: '12hours',
|
153
|
-
values: [
|
153
|
+
values: [amText, pmText],
|
154
154
|
order: columnsOrder[0],
|
155
155
|
},
|
156
156
|
...results.map((item, index) => (Object.assign(Object.assign({}, item), { order: columnsOrder[index + 1] }))),
|
@@ -160,7 +160,7 @@ SmartComponent({
|
|
160
160
|
},
|
161
161
|
getRanges() {
|
162
162
|
const { data } = this;
|
163
|
-
if (data.type === 'time' && data.
|
163
|
+
if (data.type === 'time' && data.is12HourClock) {
|
164
164
|
const { part } = data;
|
165
165
|
return [
|
166
166
|
{
|
@@ -286,7 +286,7 @@ SmartComponent({
|
|
286
286
|
let value;
|
287
287
|
const picker = this.getPicker();
|
288
288
|
const indexes = picker.getIndexes();
|
289
|
-
if (data.type === 'time' && data.
|
289
|
+
if (data.type === 'time' && data.is12HourClock) {
|
290
290
|
const [part, hour, minute] = indexes;
|
291
291
|
this.setData({
|
292
292
|
part,
|
@@ -329,10 +329,10 @@ SmartComponent({
|
|
329
329
|
},
|
330
330
|
updateColumnValue(value) {
|
331
331
|
let values = [];
|
332
|
-
const { type,
|
332
|
+
const { type, is12HourClock } = this.data;
|
333
333
|
const formatter = this.formatterFunc;
|
334
334
|
const picker = this.getPicker();
|
335
|
-
if (type === 'time' &&
|
335
|
+
if (type === 'time' && is12HourClock) {
|
336
336
|
const [hour, minute] = value.split(':');
|
337
337
|
const part = Number(hour) > 0 && Number(hour) < 13 ? 0 : 1;
|
338
338
|
this.setData({
|
package/dist/field/index.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { nextTick } from '../common/utils';
|
2
2
|
import { SmartComponent } from '../common/component';
|
3
3
|
import { commonProps, inputProps, textareaProps } from './props';
|
4
|
-
import Xmark from '@tuya-miniapp/icons/dist/svg/Xmark
|
4
|
+
import Xmark from '@tuya-miniapp/icons/dist/svg/Xmark';
|
5
5
|
SmartComponent({
|
6
6
|
field: true,
|
7
7
|
classes: ['input-class', 'right-icon-class', 'label-class'],
|
package/dist/nav-bar/index.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import '../common/index.css';.smart-nav-bar{background-color:var(--nav-bar-background-color,var(--app-B2,#fff));box-sizing:initial;height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.smart-nav-bar__content{align-items:center;display:flex;height:100%;position:relative}.smart-nav-bar__text{color:var(--nav-bar-text-color,var(--app-B2-N1,#000));display:inline-block;font-size:var(--nav-bar-text-font-size,16px);margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.smart-nav-bar__text--hover{opacity:.3}.smart-nav-bar__text--home{color:var(--nav-bar-home-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-home-font-size,22px);font-weight:var(--nav-bar-home-font-weight,600)}.smart-nav-bar__text--title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600)}.smart-nav-bar__arrow{vertical-align:middle}.smart-nav-bar__arrow>view{background:var(--nav-bar-arrow-color,var(--app-B2-N1,#000))}.smart-nav-bar__icon-wrap{align-items:center;display:flex;height:var(--nav-bar-icon-size,32px);justify-content:center;margin:var(--nav-bar-icon-margin,0);width:var(--nav-bar-icon-size,32px)}.smart-nav-bar__icon>view{background:var(--nav-bar-icon-color,var(--app-B2-N1,#000))}.smart-nav-bar--safe
|
1
|
+
@import '../common/index.css';.smart-nav-bar{background-color:var(--nav-bar-background-color,var(--app-B2,#fff));box-sizing:initial;height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.smart-nav-bar__content{align-items:center;display:flex;height:100%;position:relative}.smart-nav-bar__text{color:var(--nav-bar-text-color,var(--app-B2-N1,#000));display:inline-block;font-size:var(--nav-bar-text-font-size,16px);margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.smart-nav-bar__text--hover{opacity:.3}.smart-nav-bar__text--home{color:var(--nav-bar-home-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-home-font-size,22px);font-weight:var(--nav-bar-home-font-weight,600)}.smart-nav-bar__text--title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600)}.smart-nav-bar__arrow{vertical-align:middle}.smart-nav-bar__arrow>view{background:var(--nav-bar-arrow-color,var(--app-B2-N1,#000))}.smart-nav-bar__icon-wrap{align-items:center;display:flex;height:var(--nav-bar-icon-size,32px);justify-content:center;margin:var(--nav-bar-icon-margin,0);width:var(--nav-bar-icon-size,32px)}.smart-nav-bar__icon>view{background:var(--nav-bar-icon-color,var(--app-B2-N1,#000))}.smart-nav-bar--safe{padding-top:var(--app-device-status-height,20px)}.smart-nav-bar--fixed{left:0;position:fixed;top:0;width:100%}.smart-nav-bar--round{border-radius:var(--nav-bar-round-border-radius,16px 16px 0 0);min-height:var(--nav-bar-round-min-height,56px)}.smart-nav-bar__title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600);margin:0 auto;max-width:60%}.smart-nav-bar__left,.smart-nav-bar__right{align-items:center;bottom:0;display:flex;position:absolute;top:0}.smart-nav-bar__left{left:var(--padding-md,16px)}.smart-nav-bar__right{right:var(--padding-md,16px)}
|
package/dist/nav-bar/index.wxml
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<view wx:if="{{ fixed && placeholder }}" style="height: {{ height }}px;" />
|
5
5
|
|
6
6
|
<view
|
7
|
-
class="{{ utils.bem('nav-bar', { fixed, round,
|
7
|
+
class="{{ utils.bem('nav-bar', { fixed, round, safe: safeAreaInsetTop }) }} custom-class {{ border ? 'smart-hairline--bottom' : '' }}"
|
8
8
|
style="{{ computed.barStyle({ zIndex, statusBarHeight, safeAreaInsetTop }) }}; {{ customStyle }}"
|
9
9
|
>
|
10
10
|
<view class="smart-nav-bar__content">
|
package/dist/nav-bar/index.wxss
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import '../common/index.wxss';.smart-nav-bar{background-color:var(--nav-bar-background-color,var(--app-B2,#fff));box-sizing:initial;height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.smart-nav-bar__content{align-items:center;display:flex;height:100%;position:relative}.smart-nav-bar__text{color:var(--nav-bar-text-color,var(--app-B2-N1,#000));display:inline-block;font-size:var(--nav-bar-text-font-size,16px);margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.smart-nav-bar__text--hover{opacity:.3}.smart-nav-bar__text--home{color:var(--nav-bar-home-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-home-font-size,22px);font-weight:var(--nav-bar-home-font-weight,600)}.smart-nav-bar__text--title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600)}.smart-nav-bar__arrow{vertical-align:middle}.smart-nav-bar__arrow>view{background:var(--nav-bar-arrow-color,var(--app-B2-N1,#000))}.smart-nav-bar__icon-wrap{align-items:center;display:flex;height:var(--nav-bar-icon-size,32px);justify-content:center;margin:var(--nav-bar-icon-margin,0);width:var(--nav-bar-icon-size,32px)}.smart-nav-bar__icon>view{background:var(--nav-bar-icon-color,var(--app-B2-N1,#000))}.smart-nav-bar--safe
|
1
|
+
@import '../common/index.wxss';.smart-nav-bar{background-color:var(--nav-bar-background-color,var(--app-B2,#fff));box-sizing:initial;height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.smart-nav-bar__content{align-items:center;display:flex;height:100%;position:relative}.smart-nav-bar__text{color:var(--nav-bar-text-color,var(--app-B2-N1,#000));display:inline-block;font-size:var(--nav-bar-text-font-size,16px);margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.smart-nav-bar__text--hover{opacity:.3}.smart-nav-bar__text--home{color:var(--nav-bar-home-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-home-font-size,22px);font-weight:var(--nav-bar-home-font-weight,600)}.smart-nav-bar__text--title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600)}.smart-nav-bar__arrow{vertical-align:middle}.smart-nav-bar__arrow>view{background:var(--nav-bar-arrow-color,var(--app-B2-N1,#000))}.smart-nav-bar__icon-wrap{align-items:center;display:flex;height:var(--nav-bar-icon-size,32px);justify-content:center;margin:var(--nav-bar-icon-margin,0);width:var(--nav-bar-icon-size,32px)}.smart-nav-bar__icon>view{background:var(--nav-bar-icon-color,var(--app-B2-N1,#000))}.smart-nav-bar--safe{padding-top:var(--app-device-status-height,20px)}.smart-nav-bar--fixed{left:0;position:fixed;top:0;width:100%}.smart-nav-bar--round{border-radius:var(--nav-bar-round-border-radius,16px 16px 0 0);min-height:var(--nav-bar-round-min-height,56px)}.smart-nav-bar__title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600);margin:0 auto;max-width:60%}.smart-nav-bar__left,.smart-nav-bar__right{align-items:center;bottom:0;display:flex;position:absolute;top:0}.smart-nav-bar__left{left:var(--padding-md,16px)}.smart-nav-bar__right{right:var(--padding-md,16px)}
|
package/dist/notice-bar/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { SmartComponent } from '../common/component';
|
2
2
|
import { getRect, requestAnimationFrame } from '../common/utils';
|
3
|
-
import Xmark from '@tuya-miniapp/icons/dist/svg/Xmark
|
3
|
+
import Xmark from '@tuya-miniapp/icons/dist/svg/Xmark';
|
4
4
|
import Right from '@tuya-miniapp/icons/dist/svg/Right';
|
5
5
|
SmartComponent({
|
6
6
|
props: {
|
package/dist/stepper/index.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import '../common/index.css';.smart-stepper{background:var(--stepper-container-background-color,var(--app-B6-N9,rgba(0,0,0,.05)));border-radius:var(--stepper-background-border-radius,10px);display:inline-block;font-size:0;padding:var(--stepper-padding,2px)}.smart-stepper__minus,.smart-stepper__plus{background-color:var(--stepper-background-color,var(--app-B6,#fff));border:0;box-sizing:border-box;color:var(--stepper-button-icon-color,var(--app-B6-N3,rgba(0,0,0,.5)));display:inline-
|
1
|
+
@import '../common/index.css';.smart-stepper{background:var(--stepper-container-background-color,var(--app-B6-N9,rgba(0,0,0,.05)));border-radius:var(--stepper-background-border-radius,10px);display:inline-block;font-size:0;padding:var(--stepper-padding,2px)}.smart-stepper__minus,.smart-stepper__plus{--icon-color:currentColor;align-items:center;background-color:var(--stepper-background-color,var(--app-B6,#fff));border:var(--stepper-button-border,0);border-radius:var(--stepper-border-radius,8px);box-sizing:border-box;color:var(--stepper-button-icon-color,var(--app-B6-N3,rgba(0,0,0,.5)));display:inline-flex;font-size:var(--stepper-button-icon-font-size,22px);height:var(--stepper-input-height,28px);justify-content:center;padding:var(--padding-base,4px);position:relative;vertical-align:middle;width:var(--stepper-input-height,44px)}.smart-stepper__minus-icon,.smart-stepper__plus-icon{display:none}.smart-stepper__minus>.smart-stepper__minus-icon:first-child,.smart-stepper__minus>.smart-stepper__plus-icon:first-child,.smart-stepper__plus>.smart-stepper__minus-icon:first-child,.smart-stepper__plus>.smart-stepper__plus-icon:first-child{display:inline-flex}.smart-stepper__minus--hover,.smart-stepper__plus--hover{background-color:var(--stepper-active-color,#e8e8e8)}.smart-stepper__minus--disabled,.smart-stepper__plus--disabled{background-color:var(--stepper-button-disabled-color,none);color:var(--stepper-button-disabled-icon-color,var(--app-B6-N7,rgba(0,0,0,.1)))}.smart-stepper__minus--disabled.smart-stepper__minus--hover,.smart-stepper__minus--disabled.smart-stepper__plus--hover,.smart-stepper__plus--disabled.smart-stepper__minus--hover,.smart-stepper__plus--disabled.smart-stepper__plus--hover{background-color:var(--stepper-button-disabled-color,none)}.smart-stepper--round .smart-stepper__input{background-color:initial!important}.smart-stepper--round .smart-stepper__minus,.smart-stepper--round .smart-stepper__plus{border-radius:100%}.smart-stepper--round .smart-stepper__minus:active,.smart-stepper--round .smart-stepper__plus:active{opacity:.7}.smart-stepper--round .smart-stepper__minus--disabled,.smart-stepper--round .smart-stepper__minus--disabled:active,.smart-stepper--round .smart-stepper__plus--disabled,.smart-stepper--round .smart-stepper__plus--disabled:active{opacity:.3}.smart-stepper--round .smart-stepper__plus{background-color:var(--stepper-button-round-theme-color,#ee0a24);color:#fff}.smart-stepper--round .smart-stepper__minus{background-color:#fff;border:1px solid var(--stepper-button-round-theme-color,#ee0a24);color:var(--stepper-button-round-theme-color,#ee0a24)}.smart-stepper__input{-webkit-appearance:none;border:0;border-radius:0;border-width:1px 0;box-sizing:border-box;color:var(--stepper-input-text-color,var(--app-B6-N1,#000));display:inline-block;font-size:var(--stepper-input-font-size,16px);height:var(--stepper-input-height,28px);min-height:0;padding:1px;text-align:center;vertical-align:middle;width:var(--stepper-input-width,50px)}.smart-stepper__input--disabled{color:var(--stepper-input-disabled-text-color,var(--app-B6-N7,rgba(0,0,0,.1)))}
|
package/dist/stepper/index.js
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
import { SmartComponent } from '../common/component';
|
2
2
|
import { isDef } from '../common/validator';
|
3
|
+
import Minus from '@tuya-miniapp/icons/dist/svg/Minus';
|
4
|
+
import Plus from '@tuya-miniapp/icons/dist/svg/Plus';
|
3
5
|
const LONG_PRESS_START_TIME = 600;
|
4
6
|
const LONG_PRESS_INTERVAL = 200;
|
5
7
|
// add num and avoid float number
|
@@ -64,6 +66,8 @@ SmartComponent({
|
|
64
66
|
},
|
65
67
|
data: {
|
66
68
|
currentValue: '',
|
69
|
+
Minus,
|
70
|
+
Plus,
|
67
71
|
},
|
68
72
|
watch: {
|
69
73
|
value() {
|
package/dist/stepper/index.json
CHANGED
package/dist/stepper/index.wxml
CHANGED
@@ -14,6 +14,7 @@
|
|
14
14
|
bind:touchend="onTouchEnd"
|
15
15
|
>
|
16
16
|
<slot name="minus" />
|
17
|
+
<smart-icon name="{{ Minus }}" class="{{ utils.bem('stepper__minus-icon') }}" />
|
17
18
|
</view>
|
18
19
|
<input
|
19
20
|
type="{{ integer ? 'number' : 'digit' }}"
|
@@ -39,5 +40,6 @@
|
|
39
40
|
bind:touchend="onTouchEnd"
|
40
41
|
>
|
41
42
|
<slot name="plus" />
|
43
|
+
<smart-icon name="{{ Plus }}" class="{{ utils.bem('stepper__plus-icon') }}" />
|
42
44
|
</view>
|
43
45
|
</view>
|
package/dist/stepper/index.wxss
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import '../common/index.wxss';.smart-stepper{background:var(--stepper-container-background-color,var(--app-B6-N9,rgba(0,0,0,.05)));border-radius:var(--stepper-background-border-radius,10px);display:inline-block;font-size:0;padding:var(--stepper-padding,2px)}.smart-stepper__minus,.smart-stepper__plus{background-color:var(--stepper-background-color,var(--app-B6,#fff));border:0;box-sizing:border-box;color:var(--stepper-button-icon-color,var(--app-B6-N3,rgba(0,0,0,.5)));display:inline-
|
1
|
+
@import '../common/index.wxss';.smart-stepper{background:var(--stepper-container-background-color,var(--app-B6-N9,rgba(0,0,0,.05)));border-radius:var(--stepper-background-border-radius,10px);display:inline-block;font-size:0;padding:var(--stepper-padding,2px)}.smart-stepper__minus,.smart-stepper__plus{--icon-color:currentColor;align-items:center;background-color:var(--stepper-background-color,var(--app-B6,#fff));border:var(--stepper-button-border,0);border-radius:var(--stepper-border-radius,8px);box-sizing:border-box;color:var(--stepper-button-icon-color,var(--app-B6-N3,rgba(0,0,0,.5)));display:inline-flex;font-size:var(--stepper-button-icon-font-size,22px);height:var(--stepper-input-height,28px);justify-content:center;padding:var(--padding-base,4px);position:relative;vertical-align:middle;width:var(--stepper-input-height,44px)}.smart-stepper__minus-icon,.smart-stepper__plus-icon{display:none}.smart-stepper__minus>.smart-stepper__minus-icon:first-child,.smart-stepper__minus>.smart-stepper__plus-icon:first-child,.smart-stepper__plus>.smart-stepper__minus-icon:first-child,.smart-stepper__plus>.smart-stepper__plus-icon:first-child{display:inline-flex}.smart-stepper__minus--hover,.smart-stepper__plus--hover{background-color:var(--stepper-active-color,#e8e8e8)}.smart-stepper__minus--disabled,.smart-stepper__plus--disabled{background-color:var(--stepper-button-disabled-color,none);color:var(--stepper-button-disabled-icon-color,var(--app-B6-N7,rgba(0,0,0,.1)))}.smart-stepper__minus--disabled.smart-stepper__minus--hover,.smart-stepper__minus--disabled.smart-stepper__plus--hover,.smart-stepper__plus--disabled.smart-stepper__minus--hover,.smart-stepper__plus--disabled.smart-stepper__plus--hover{background-color:var(--stepper-button-disabled-color,none)}.smart-stepper--round .smart-stepper__input{background-color:initial!important}.smart-stepper--round .smart-stepper__minus,.smart-stepper--round .smart-stepper__plus{border-radius:100%}.smart-stepper--round .smart-stepper__minus:active,.smart-stepper--round .smart-stepper__plus:active{opacity:.7}.smart-stepper--round .smart-stepper__minus--disabled,.smart-stepper--round .smart-stepper__minus--disabled:active,.smart-stepper--round .smart-stepper__plus--disabled,.smart-stepper--round .smart-stepper__plus--disabled:active{opacity:.3}.smart-stepper--round .smart-stepper__plus{background-color:var(--stepper-button-round-theme-color,#ee0a24);color:#fff}.smart-stepper--round .smart-stepper__minus{background-color:#fff;border:1px solid var(--stepper-button-round-theme-color,#ee0a24);color:var(--stepper-button-round-theme-color,#ee0a24)}.smart-stepper__input{-webkit-appearance:none;border:0;border-radius:0;border-width:1px 0;box-sizing:border-box;color:var(--stepper-input-text-color,var(--app-B6-N1,#000));display:inline-block;font-size:var(--stepper-input-font-size,16px);height:var(--stepper-input-height,28px);min-height:0;padding:1px;text-align:center;vertical-align:middle;width:var(--stepper-input-width,50px)}.smart-stepper__input--disabled{color:var(--stepper-input-disabled-text-color,var(--app-B6-N7,rgba(0,0,0,.1)))}
|
package/dist/tabbar/index.wxml
CHANGED
@@ -4,7 +4,9 @@
|
|
4
4
|
class="{{ utils.bem('tabbar', { border: true }) }} {{ utils.bem('tabbar', { fixed, safe: safeAreaInsetBottom }) }} custom-class"
|
5
5
|
style="{{ zIndex ? 'z-index: ' + zIndex : '' }}"
|
6
6
|
>
|
7
|
+
<slot name="pre-content" />
|
7
8
|
<slot />
|
9
|
+
<slot name="after-content" />
|
8
10
|
</view>
|
9
11
|
|
10
12
|
<view wx:if="{{ fixed && placeholder }}" style="height: {{ height }}px;"></view>
|
package/dist/tag/index.js
CHANGED
package/lib/cell/index.js
CHANGED
@@ -3,16 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
var
|
7
|
-
var
|
8
|
-
var
|
9
|
-
var
|
10
|
-
// import {
|
11
|
-
// Right as rightIcon,
|
12
|
-
// Left as leftIcon,
|
13
|
-
// Down as downIcon,
|
14
|
-
// Up as upIcon,
|
15
|
-
// } from '@tuya-miniapp/icons';
|
6
|
+
var Up_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Up"));
|
7
|
+
var Down_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Down"));
|
8
|
+
var Left_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Left"));
|
9
|
+
var Right_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Right"));
|
16
10
|
var link_1 = require("../mixins/link");
|
17
11
|
var component_1 = require("../common/component");
|
18
12
|
(0, component_1.SmartComponent)({
|
@@ -38,12 +32,12 @@ var component_1 = require("../common/component");
|
|
38
32
|
},
|
39
33
|
data: {
|
40
34
|
arrowIcons: {
|
41
|
-
up:
|
42
|
-
down:
|
43
|
-
left:
|
44
|
-
right:
|
35
|
+
up: Up_1.default,
|
36
|
+
down: Down_1.default,
|
37
|
+
left: Left_1.default,
|
38
|
+
right: Right_1.default,
|
45
39
|
},
|
46
|
-
arrowIcon:
|
40
|
+
arrowIcon: Right_1.default,
|
47
41
|
},
|
48
42
|
methods: {
|
49
43
|
onClick: function (event) {
|
@@ -71,16 +71,16 @@ var defaultFormatter = function (type, value) {
|
|
71
71
|
}, formatter: {
|
72
72
|
type: null,
|
73
73
|
value: defaultFormatter,
|
74
|
-
},
|
74
|
+
}, amText: {
|
75
75
|
type: String,
|
76
76
|
value: 'AM',
|
77
|
-
},
|
77
|
+
}, pmText: {
|
78
78
|
type: String,
|
79
79
|
value: 'PM',
|
80
80
|
}, columnsOrder: {
|
81
81
|
type: Array,
|
82
82
|
value: [],
|
83
|
-
},
|
83
|
+
}, is12HourClock: {
|
84
84
|
type: Boolean,
|
85
85
|
value: false,
|
86
86
|
}, minDate: {
|
@@ -167,7 +167,7 @@ var defaultFormatter = function (type, value) {
|
|
167
167
|
return this.set({ columns: results });
|
168
168
|
},
|
169
169
|
getOriginColumns: function () {
|
170
|
-
var _a = this.data, filter = _a.filter,
|
170
|
+
var _a = this.data, filter = _a.filter, is12HourClock = _a.is12HourClock, type = _a.type, amText = _a.amText, pmText = _a.pmText, columnsOrder = _a.columnsOrder;
|
171
171
|
var results = this.getRanges().map(function (_a, index) {
|
172
172
|
var type = _a.type, range = _a.range;
|
173
173
|
var order = columnsOrder[index];
|
@@ -180,11 +180,11 @@ var defaultFormatter = function (type, value) {
|
|
180
180
|
}
|
181
181
|
return { type: type, values: values, order: order };
|
182
182
|
});
|
183
|
-
if (
|
183
|
+
if (is12HourClock && type === 'time') {
|
184
184
|
return __spreadArray([
|
185
185
|
{
|
186
186
|
type: '12hours',
|
187
|
-
values: [
|
187
|
+
values: [amText, pmText],
|
188
188
|
order: columnsOrder[0],
|
189
189
|
}
|
190
190
|
], results.map(function (item, index) { return (__assign(__assign({}, item), { order: columnsOrder[index + 1] })); }), true).filter(Boolean);
|
@@ -193,7 +193,7 @@ var defaultFormatter = function (type, value) {
|
|
193
193
|
},
|
194
194
|
getRanges: function () {
|
195
195
|
var data = this.data;
|
196
|
-
if (data.type === 'time' && data.
|
196
|
+
if (data.type === 'time' && data.is12HourClock) {
|
197
197
|
var part = data.part;
|
198
198
|
return [
|
199
199
|
{
|
@@ -321,7 +321,7 @@ var defaultFormatter = function (type, value) {
|
|
321
321
|
var value;
|
322
322
|
var picker = this.getPicker();
|
323
323
|
var indexes = picker.getIndexes();
|
324
|
-
if (data.type === 'time' && data.
|
324
|
+
if (data.type === 'time' && data.is12HourClock) {
|
325
325
|
var part = indexes[0], hour = indexes[1], minute = indexes[2];
|
326
326
|
this.setData({
|
327
327
|
part: part,
|
@@ -365,10 +365,10 @@ var defaultFormatter = function (type, value) {
|
|
365
365
|
updateColumnValue: function (value) {
|
366
366
|
var _this = this;
|
367
367
|
var values = [];
|
368
|
-
var _a = this.data, type = _a.type,
|
368
|
+
var _a = this.data, type = _a.type, is12HourClock = _a.is12HourClock;
|
369
369
|
var formatter = this.formatterFunc;
|
370
370
|
var picker = this.getPicker();
|
371
|
-
if (type === 'time' &&
|
371
|
+
if (type === 'time' && is12HourClock) {
|
372
372
|
var _b = value.split(':'), hour = _b[0], minute = _b[1];
|
373
373
|
var part = Number(hour) > 0 && Number(hour) < 13 ? 0 : 1;
|
374
374
|
this.setData({
|
package/lib/field/index.js
CHANGED
@@ -17,7 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
var utils_1 = require("../common/utils");
|
18
18
|
var component_1 = require("../common/component");
|
19
19
|
var props_1 = require("./props");
|
20
|
-
var
|
20
|
+
var Xmark_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Xmark"));
|
21
21
|
(0, component_1.SmartComponent)({
|
22
22
|
field: true,
|
23
23
|
classes: ['input-class', 'right-icon-class', 'label-class'],
|
@@ -40,7 +40,7 @@ var Xmark_js_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Xmark.js"
|
|
40
40
|
value: '6.2em',
|
41
41
|
}, clearIcon: {
|
42
42
|
type: String,
|
43
|
-
value:
|
43
|
+
value: Xmark_1.default,
|
44
44
|
}, extraEventParams: {
|
45
45
|
type: Boolean,
|
46
46
|
value: false,
|
package/lib/nav-bar/index.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import '../common/index.css';.smart-nav-bar{background-color:var(--nav-bar-background-color,var(--app-B2,#fff));box-sizing:initial;height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.smart-nav-bar__content{align-items:center;display:flex;height:100%;position:relative}.smart-nav-bar__text{color:var(--nav-bar-text-color,var(--app-B2-N1,#000));display:inline-block;font-size:var(--nav-bar-text-font-size,16px);margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.smart-nav-bar__text--hover{opacity:.3}.smart-nav-bar__text--home{color:var(--nav-bar-home-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-home-font-size,22px);font-weight:var(--nav-bar-home-font-weight,600)}.smart-nav-bar__text--title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600)}.smart-nav-bar__arrow{vertical-align:middle}.smart-nav-bar__arrow>view{background:var(--nav-bar-arrow-color,var(--app-B2-N1,#000))}.smart-nav-bar__icon-wrap{align-items:center;display:flex;height:var(--nav-bar-icon-size,32px);justify-content:center;margin:var(--nav-bar-icon-margin,0);width:var(--nav-bar-icon-size,32px)}.smart-nav-bar__icon>view{background:var(--nav-bar-icon-color,var(--app-B2-N1,#000))}.smart-nav-bar--safe
|
1
|
+
@import '../common/index.css';.smart-nav-bar{background-color:var(--nav-bar-background-color,var(--app-B2,#fff));box-sizing:initial;height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.smart-nav-bar__content{align-items:center;display:flex;height:100%;position:relative}.smart-nav-bar__text{color:var(--nav-bar-text-color,var(--app-B2-N1,#000));display:inline-block;font-size:var(--nav-bar-text-font-size,16px);margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.smart-nav-bar__text--hover{opacity:.3}.smart-nav-bar__text--home{color:var(--nav-bar-home-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-home-font-size,22px);font-weight:var(--nav-bar-home-font-weight,600)}.smart-nav-bar__text--title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600)}.smart-nav-bar__arrow{vertical-align:middle}.smart-nav-bar__arrow>view{background:var(--nav-bar-arrow-color,var(--app-B2-N1,#000))}.smart-nav-bar__icon-wrap{align-items:center;display:flex;height:var(--nav-bar-icon-size,32px);justify-content:center;margin:var(--nav-bar-icon-margin,0);width:var(--nav-bar-icon-size,32px)}.smart-nav-bar__icon>view{background:var(--nav-bar-icon-color,var(--app-B2-N1,#000))}.smart-nav-bar--safe{padding-top:var(--app-device-status-height,20px)}.smart-nav-bar--fixed{left:0;position:fixed;top:0;width:100%}.smart-nav-bar--round{border-radius:var(--nav-bar-round-border-radius,16px 16px 0 0);min-height:var(--nav-bar-round-min-height,56px)}.smart-nav-bar__title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600);margin:0 auto;max-width:60%}.smart-nav-bar__left,.smart-nav-bar__right{align-items:center;bottom:0;display:flex;position:absolute;top:0}.smart-nav-bar__left{left:var(--padding-md,16px)}.smart-nav-bar__right{right:var(--padding-md,16px)}
|
package/lib/nav-bar/index.wxml
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<view wx:if="{{ fixed && placeholder }}" style="height: {{ height }}px;" />
|
5
5
|
|
6
6
|
<view
|
7
|
-
class="{{ utils.bem('nav-bar', { fixed, round,
|
7
|
+
class="{{ utils.bem('nav-bar', { fixed, round, safe: safeAreaInsetTop }) }} custom-class {{ border ? 'smart-hairline--bottom' : '' }}"
|
8
8
|
style="{{ computed.barStyle({ zIndex, statusBarHeight, safeAreaInsetTop }) }}; {{ customStyle }}"
|
9
9
|
>
|
10
10
|
<view class="smart-nav-bar__content">
|
package/lib/nav-bar/index.wxss
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import '../common/index.wxss';.smart-nav-bar{background-color:var(--nav-bar-background-color,var(--app-B2,#fff));box-sizing:initial;height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.smart-nav-bar__content{align-items:center;display:flex;height:100%;position:relative}.smart-nav-bar__text{color:var(--nav-bar-text-color,var(--app-B2-N1,#000));display:inline-block;font-size:var(--nav-bar-text-font-size,16px);margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.smart-nav-bar__text--hover{opacity:.3}.smart-nav-bar__text--home{color:var(--nav-bar-home-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-home-font-size,22px);font-weight:var(--nav-bar-home-font-weight,600)}.smart-nav-bar__text--title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600)}.smart-nav-bar__arrow{vertical-align:middle}.smart-nav-bar__arrow>view{background:var(--nav-bar-arrow-color,var(--app-B2-N1,#000))}.smart-nav-bar__icon-wrap{align-items:center;display:flex;height:var(--nav-bar-icon-size,32px);justify-content:center;margin:var(--nav-bar-icon-margin,0);width:var(--nav-bar-icon-size,32px)}.smart-nav-bar__icon>view{background:var(--nav-bar-icon-color,var(--app-B2-N1,#000))}.smart-nav-bar--safe
|
1
|
+
@import '../common/index.wxss';.smart-nav-bar{background-color:var(--nav-bar-background-color,var(--app-B2,#fff));box-sizing:initial;height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.smart-nav-bar__content{align-items:center;display:flex;height:100%;position:relative}.smart-nav-bar__text{color:var(--nav-bar-text-color,var(--app-B2-N1,#000));display:inline-block;font-size:var(--nav-bar-text-font-size,16px);margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.smart-nav-bar__text--hover{opacity:.3}.smart-nav-bar__text--home{color:var(--nav-bar-home-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-home-font-size,22px);font-weight:var(--nav-bar-home-font-weight,600)}.smart-nav-bar__text--title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600)}.smart-nav-bar__arrow{vertical-align:middle}.smart-nav-bar__arrow>view{background:var(--nav-bar-arrow-color,var(--app-B2-N1,#000))}.smart-nav-bar__icon-wrap{align-items:center;display:flex;height:var(--nav-bar-icon-size,32px);justify-content:center;margin:var(--nav-bar-icon-margin,0);width:var(--nav-bar-icon-size,32px)}.smart-nav-bar__icon>view{background:var(--nav-bar-icon-color,var(--app-B2-N1,#000))}.smart-nav-bar--safe{padding-top:var(--app-device-status-height,20px)}.smart-nav-bar--fixed{left:0;position:fixed;top:0;width:100%}.smart-nav-bar--round{border-radius:var(--nav-bar-round-border-radius,16px 16px 0 0);min-height:var(--nav-bar-round-min-height,56px)}.smart-nav-bar__title{color:var(--nav-bar-title-text-color,var(--app-B2-N1,#000));font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--nav-bar-title-font-weight,600);margin:0 auto;max-width:60%}.smart-nav-bar__left,.smart-nav-bar__right{align-items:center;bottom:0;display:flex;position:absolute;top:0}.smart-nav-bar__left{left:var(--padding-md,16px)}.smart-nav-bar__right{right:var(--padding-md,16px)}
|
package/lib/notice-bar/index.js
CHANGED
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
var component_1 = require("../common/component");
|
7
7
|
var utils_1 = require("../common/utils");
|
8
|
-
var
|
8
|
+
var Xmark_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Xmark"));
|
9
9
|
var Right_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Right"));
|
10
10
|
(0, component_1.SmartComponent)({
|
11
11
|
props: {
|
@@ -83,7 +83,7 @@ var Right_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Right"));
|
|
83
83
|
wrapable: Boolean,
|
84
84
|
},
|
85
85
|
data: {
|
86
|
-
Xmark:
|
86
|
+
Xmark: Xmark_1.default,
|
87
87
|
Right: Right_1.default,
|
88
88
|
show: true,
|
89
89
|
},
|
package/lib/stepper/index.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import '../common/index.css';.smart-stepper{background:var(--stepper-container-background-color,var(--app-B6-N9,rgba(0,0,0,.05)));border-radius:var(--stepper-background-border-radius,10px);display:inline-block;font-size:0;padding:var(--stepper-padding,2px)}.smart-stepper__minus,.smart-stepper__plus{background-color:var(--stepper-background-color,var(--app-B6,#fff));border:0;box-sizing:border-box;color:var(--stepper-button-icon-color,var(--app-B6-N3,rgba(0,0,0,.5)));display:inline-
|
1
|
+
@import '../common/index.css';.smart-stepper{background:var(--stepper-container-background-color,var(--app-B6-N9,rgba(0,0,0,.05)));border-radius:var(--stepper-background-border-radius,10px);display:inline-block;font-size:0;padding:var(--stepper-padding,2px)}.smart-stepper__minus,.smart-stepper__plus{--icon-color:currentColor;align-items:center;background-color:var(--stepper-background-color,var(--app-B6,#fff));border:var(--stepper-button-border,0);border-radius:var(--stepper-border-radius,8px);box-sizing:border-box;color:var(--stepper-button-icon-color,var(--app-B6-N3,rgba(0,0,0,.5)));display:inline-flex;font-size:var(--stepper-button-icon-font-size,22px);height:var(--stepper-input-height,28px);justify-content:center;padding:var(--padding-base,4px);position:relative;vertical-align:middle;width:var(--stepper-input-height,44px)}.smart-stepper__minus-icon,.smart-stepper__plus-icon{display:none}.smart-stepper__minus>.smart-stepper__minus-icon:first-child,.smart-stepper__minus>.smart-stepper__plus-icon:first-child,.smart-stepper__plus>.smart-stepper__minus-icon:first-child,.smart-stepper__plus>.smart-stepper__plus-icon:first-child{display:inline-flex}.smart-stepper__minus--hover,.smart-stepper__plus--hover{background-color:var(--stepper-active-color,#e8e8e8)}.smart-stepper__minus--disabled,.smart-stepper__plus--disabled{background-color:var(--stepper-button-disabled-color,none);color:var(--stepper-button-disabled-icon-color,var(--app-B6-N7,rgba(0,0,0,.1)))}.smart-stepper__minus--disabled.smart-stepper__minus--hover,.smart-stepper__minus--disabled.smart-stepper__plus--hover,.smart-stepper__plus--disabled.smart-stepper__minus--hover,.smart-stepper__plus--disabled.smart-stepper__plus--hover{background-color:var(--stepper-button-disabled-color,none)}.smart-stepper--round .smart-stepper__input{background-color:initial!important}.smart-stepper--round .smart-stepper__minus,.smart-stepper--round .smart-stepper__plus{border-radius:100%}.smart-stepper--round .smart-stepper__minus:active,.smart-stepper--round .smart-stepper__plus:active{opacity:.7}.smart-stepper--round .smart-stepper__minus--disabled,.smart-stepper--round .smart-stepper__minus--disabled:active,.smart-stepper--round .smart-stepper__plus--disabled,.smart-stepper--round .smart-stepper__plus--disabled:active{opacity:.3}.smart-stepper--round .smart-stepper__plus{background-color:var(--stepper-button-round-theme-color,#ee0a24);color:#fff}.smart-stepper--round .smart-stepper__minus{background-color:#fff;border:1px solid var(--stepper-button-round-theme-color,#ee0a24);color:var(--stepper-button-round-theme-color,#ee0a24)}.smart-stepper__input{-webkit-appearance:none;border:0;border-radius:0;border-width:1px 0;box-sizing:border-box;color:var(--stepper-input-text-color,var(--app-B6-N1,#000));display:inline-block;font-size:var(--stepper-input-font-size,16px);height:var(--stepper-input-height,28px);min-height:0;padding:1px;text-align:center;vertical-align:middle;width:var(--stepper-input-width,50px)}.smart-stepper__input--disabled{color:var(--stepper-input-disabled-text-color,var(--app-B6-N7,rgba(0,0,0,.1)))}
|
package/lib/stepper/index.js
CHANGED
@@ -10,9 +10,14 @@ var __assign = (this && this.__assign) || function () {
|
|
10
10
|
};
|
11
11
|
return __assign.apply(this, arguments);
|
12
12
|
};
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
15
|
+
};
|
13
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
14
17
|
var component_1 = require("../common/component");
|
15
18
|
var validator_1 = require("../common/validator");
|
19
|
+
var Minus_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Minus"));
|
20
|
+
var Plus_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Plus"));
|
16
21
|
var LONG_PRESS_START_TIME = 600;
|
17
22
|
var LONG_PRESS_INTERVAL = 200;
|
18
23
|
// add num and avoid float number
|
@@ -77,6 +82,8 @@ function equal(value1, value2) {
|
|
77
82
|
},
|
78
83
|
data: {
|
79
84
|
currentValue: '',
|
85
|
+
Minus: Minus_1.default,
|
86
|
+
Plus: Plus_1.default,
|
80
87
|
},
|
81
88
|
watch: {
|
82
89
|
value: function () {
|
package/lib/stepper/index.json
CHANGED
package/lib/stepper/index.wxml
CHANGED
@@ -14,6 +14,7 @@
|
|
14
14
|
bind:touchend="onTouchEnd"
|
15
15
|
>
|
16
16
|
<slot name="minus" />
|
17
|
+
<smart-icon name="{{ Minus }}" class="{{ utils.bem('stepper__minus-icon') }}" />
|
17
18
|
</view>
|
18
19
|
<input
|
19
20
|
type="{{ integer ? 'number' : 'digit' }}"
|
@@ -39,5 +40,6 @@
|
|
39
40
|
bind:touchend="onTouchEnd"
|
40
41
|
>
|
41
42
|
<slot name="plus" />
|
43
|
+
<smart-icon name="{{ Plus }}" class="{{ utils.bem('stepper__plus-icon') }}" />
|
42
44
|
</view>
|
43
45
|
</view>
|
package/lib/stepper/index.wxss
CHANGED
@@ -1 +1 @@
|
|
1
|
-
@import '../common/index.wxss';.smart-stepper{background:var(--stepper-container-background-color,var(--app-B6-N9,rgba(0,0,0,.05)));border-radius:var(--stepper-background-border-radius,10px);display:inline-block;font-size:0;padding:var(--stepper-padding,2px)}.smart-stepper__minus,.smart-stepper__plus{background-color:var(--stepper-background-color,var(--app-B6,#fff));border:0;box-sizing:border-box;color:var(--stepper-button-icon-color,var(--app-B6-N3,rgba(0,0,0,.5)));display:inline-
|
1
|
+
@import '../common/index.wxss';.smart-stepper{background:var(--stepper-container-background-color,var(--app-B6-N9,rgba(0,0,0,.05)));border-radius:var(--stepper-background-border-radius,10px);display:inline-block;font-size:0;padding:var(--stepper-padding,2px)}.smart-stepper__minus,.smart-stepper__plus{--icon-color:currentColor;align-items:center;background-color:var(--stepper-background-color,var(--app-B6,#fff));border:var(--stepper-button-border,0);border-radius:var(--stepper-border-radius,8px);box-sizing:border-box;color:var(--stepper-button-icon-color,var(--app-B6-N3,rgba(0,0,0,.5)));display:inline-flex;font-size:var(--stepper-button-icon-font-size,22px);height:var(--stepper-input-height,28px);justify-content:center;padding:var(--padding-base,4px);position:relative;vertical-align:middle;width:var(--stepper-input-height,44px)}.smart-stepper__minus-icon,.smart-stepper__plus-icon{display:none}.smart-stepper__minus>.smart-stepper__minus-icon:first-child,.smart-stepper__minus>.smart-stepper__plus-icon:first-child,.smart-stepper__plus>.smart-stepper__minus-icon:first-child,.smart-stepper__plus>.smart-stepper__plus-icon:first-child{display:inline-flex}.smart-stepper__minus--hover,.smart-stepper__plus--hover{background-color:var(--stepper-active-color,#e8e8e8)}.smart-stepper__minus--disabled,.smart-stepper__plus--disabled{background-color:var(--stepper-button-disabled-color,none);color:var(--stepper-button-disabled-icon-color,var(--app-B6-N7,rgba(0,0,0,.1)))}.smart-stepper__minus--disabled.smart-stepper__minus--hover,.smart-stepper__minus--disabled.smart-stepper__plus--hover,.smart-stepper__plus--disabled.smart-stepper__minus--hover,.smart-stepper__plus--disabled.smart-stepper__plus--hover{background-color:var(--stepper-button-disabled-color,none)}.smart-stepper--round .smart-stepper__input{background-color:initial!important}.smart-stepper--round .smart-stepper__minus,.smart-stepper--round .smart-stepper__plus{border-radius:100%}.smart-stepper--round .smart-stepper__minus:active,.smart-stepper--round .smart-stepper__plus:active{opacity:.7}.smart-stepper--round .smart-stepper__minus--disabled,.smart-stepper--round .smart-stepper__minus--disabled:active,.smart-stepper--round .smart-stepper__plus--disabled,.smart-stepper--round .smart-stepper__plus--disabled:active{opacity:.3}.smart-stepper--round .smart-stepper__plus{background-color:var(--stepper-button-round-theme-color,#ee0a24);color:#fff}.smart-stepper--round .smart-stepper__minus{background-color:#fff;border:1px solid var(--stepper-button-round-theme-color,#ee0a24);color:var(--stepper-button-round-theme-color,#ee0a24)}.smart-stepper__input{-webkit-appearance:none;border:0;border-radius:0;border-width:1px 0;box-sizing:border-box;color:var(--stepper-input-text-color,var(--app-B6-N1,#000));display:inline-block;font-size:var(--stepper-input-font-size,16px);height:var(--stepper-input-height,28px);min-height:0;padding:1px;text-align:center;vertical-align:middle;width:var(--stepper-input-width,50px)}.smart-stepper__input--disabled{color:var(--stepper-input-disabled-text-color,var(--app-B6-N7,rgba(0,0,0,.1)))}
|
package/lib/tabbar/index.wxml
CHANGED
@@ -4,7 +4,9 @@
|
|
4
4
|
class="{{ utils.bem('tabbar', { border: true }) }} {{ utils.bem('tabbar', { fixed, safe: safeAreaInsetBottom }) }} custom-class"
|
5
5
|
style="{{ zIndex ? 'z-index: ' + zIndex : '' }}"
|
6
6
|
>
|
7
|
+
<slot name="pre-content" />
|
7
8
|
<slot />
|
9
|
+
<slot name="after-content" />
|
8
10
|
</view>
|
9
11
|
|
10
12
|
<view wx:if="{{ fixed && placeholder }}" style="height: {{ height }}px;"></view>
|
package/lib/tag/index.js
CHANGED
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
var
|
6
|
+
var Xmark_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Xmark"));
|
7
7
|
var component_1 = require("../common/component");
|
8
8
|
(0, component_1.SmartComponent)({
|
9
9
|
props: {
|
@@ -23,7 +23,7 @@ var component_1 = require("../common/component");
|
|
23
23
|
closeable: Boolean,
|
24
24
|
},
|
25
25
|
data: {
|
26
|
-
crossIcon:
|
26
|
+
crossIcon: Xmark_1.default,
|
27
27
|
closeColor: '#fff',
|
28
28
|
},
|
29
29
|
methods: {
|