@tuya-miniapp/smart-ui 1.2.0 → 1.3.0-beta-1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/common/theme/dark.d.ts +344 -0
- package/dist/common/theme/dark.js +343 -0
- package/dist/common/theme/light.d.ts +344 -0
- package/dist/common/theme/light.js +343 -0
- package/dist/config-provider/index.wxs +7 -2
- package/dist/dialog/dialog.d.ts +7 -1
- package/dist/dialog/dialog.js +1 -1
- package/dist/dialog/index.js +4 -0
- package/dist/wxs/is-app-theme-var.wxs +8 -0
- package/dist/wxs/style.wxs +4 -0
- package/dist/wxs/utils.wxs +3 -1
- package/lib/common/theme/dark.d.ts +344 -0
- package/lib/common/theme/dark.js +345 -0
- package/lib/common/theme/light.d.ts +344 -0
- package/lib/common/theme/light.js +345 -0
- package/lib/config-provider/index.wxs +7 -2
- package/lib/dialog/dialog.d.ts +7 -1
- package/lib/dialog/dialog.js +2 -2
- package/lib/dialog/index.js +4 -0
- package/lib/wxs/is-app-theme-var.wxs +8 -0
- package/lib/wxs/style.wxs +4 -0
- package/lib/wxs/utils.wxs +3 -1
- package/package.json +1 -1
@@ -1,6 +1,7 @@
|
|
1
1
|
/* eslint-disable */
|
2
2
|
var object = require('../wxs/object.wxs');
|
3
3
|
var style = require('../wxs/style.wxs');
|
4
|
+
var utils = require('../wxs/utils.wxs');
|
4
5
|
|
5
6
|
function kebabCase(word) {
|
6
7
|
var newWord = word
|
@@ -16,8 +17,12 @@ function kebabCase(word) {
|
|
16
17
|
function mapThemeVarsToCSSVars(themeVars) {
|
17
18
|
var cssVars = {};
|
18
19
|
object.keys(themeVars).forEach(function (key) {
|
19
|
-
|
20
|
-
|
20
|
+
if (utils.isAppThemeVar(key)) {
|
21
|
+
cssVars[key] = themeVars[key];
|
22
|
+
} else {
|
23
|
+
var cssVarsKey = '--' + kebabCase(key);
|
24
|
+
cssVars[cssVarsKey] = themeVars[key];
|
25
|
+
}
|
21
26
|
});
|
22
27
|
|
23
28
|
return style(cssVars);
|
package/dist/dialog/dialog.d.ts
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
/// <reference types="miniprogram-api-typings" />
|
3
3
|
export type Action = 'confirm' | 'cancel' | 'overlay';
|
4
4
|
type DialogContext = WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance;
|
5
|
+
type AnyObject = {};
|
5
6
|
interface DialogOptions {
|
6
7
|
lang?: string;
|
7
8
|
show?: boolean;
|
@@ -49,7 +50,12 @@ declare const Dialog: {
|
|
49
50
|
(options: DialogOptions): Promise<WechatMiniprogram.Component.TrivialInstance>;
|
50
51
|
alert(options: DialogOptions): Promise<WechatMiniprogram.Component.TrivialInstance>;
|
51
52
|
confirm(options: DialogOptions): Promise<WechatMiniprogram.Component.TrivialInstance>;
|
52
|
-
input(options: DialogInputOptions)
|
53
|
+
input: (options: DialogInputOptions) => Promise<WechatMiniprogram.Component.Instance<{
|
54
|
+
/**
|
55
|
+
* 输入框的当前值
|
56
|
+
*/
|
57
|
+
inputValue: string;
|
58
|
+
}, AnyObject, AnyObject>>;
|
53
59
|
close(): void;
|
54
60
|
stopLoading(): void;
|
55
61
|
currentOptions: DialogOptions;
|
package/dist/dialog/dialog.js
CHANGED
@@ -61,7 +61,7 @@ const Dialog = (options) => {
|
|
61
61
|
};
|
62
62
|
Dialog.alert = (options) => Dialog(options);
|
63
63
|
Dialog.confirm = (options) => Dialog(Object.assign({ showCancelButton: true }, options));
|
64
|
-
Dialog.input = (options) => Dialog(Object.assign({ showCancelButton: true }, options));
|
64
|
+
Dialog.input = ((options) => Dialog(Object.assign({ showCancelButton: true }, options)));
|
65
65
|
Dialog.close = () => {
|
66
66
|
queue.forEach((dialog) => {
|
67
67
|
dialog.close();
|
package/dist/dialog/index.js
CHANGED
@@ -123,6 +123,10 @@ SmartComponent({
|
|
123
123
|
});
|
124
124
|
},
|
125
125
|
handleAction(action) {
|
126
|
+
// 避免快速点击时,dialog 已经被关闭了,但是还往下走导致 loading 一直存在
|
127
|
+
// see /tuyarn-kit/base/ray-smart-ui/-/issues/11
|
128
|
+
if (!this.data.show)
|
129
|
+
return;
|
126
130
|
this.$emit(action, { dialog: this, value: this.data.inputValue });
|
127
131
|
const { asyncClose, beforeClose } = this.data;
|
128
132
|
if (!asyncClose && !beforeClose) {
|
package/dist/wxs/style.wxs
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
/* eslint-disable */
|
2
|
+
var utils = require('./utils.wxs');
|
2
3
|
var object = require('./object.wxs');
|
3
4
|
var array = require('./array.wxs');
|
4
5
|
|
@@ -31,6 +32,9 @@ function style(styles) {
|
|
31
32
|
return styles[key] != null && styles[key] !== '';
|
32
33
|
})
|
33
34
|
.map(function (key) {
|
35
|
+
if (utils.isAppThemeVar(key)) {
|
36
|
+
return [key, styles[key]].join(':');
|
37
|
+
}
|
34
38
|
return [kebabCase(key), [styles[key]]].join(':');
|
35
39
|
})
|
36
40
|
.join(';');
|
package/dist/wxs/utils.wxs
CHANGED
@@ -2,9 +2,11 @@
|
|
2
2
|
var bem = require('./bem.wxs');
|
3
3
|
var memoize = require('./memoize.wxs');
|
4
4
|
var addUnit = require('./add-unit.wxs');
|
5
|
+
var isAppThemeVar = require('./is-app-theme-var.wxs');
|
5
6
|
|
6
7
|
module.exports = {
|
7
8
|
bem: memoize(bem),
|
8
9
|
memoize: memoize,
|
9
|
-
addUnit: addUnit
|
10
|
+
addUnit: addUnit,
|
11
|
+
isAppThemeVar: isAppThemeVar,
|
10
12
|
};
|
@@ -0,0 +1,344 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
'--app-B1_2-N1': string;
|
3
|
+
'--app-B1_2-N2': string;
|
4
|
+
'--app-B1_2-N3': string;
|
5
|
+
'--app-B1_2-N4': string;
|
6
|
+
'--app-B1_2-N5': string;
|
7
|
+
'--app-B1_2-N6': string;
|
8
|
+
'--app-B1_2-N7': string;
|
9
|
+
'--app-B1_2-N8': string;
|
10
|
+
'--app-B1_2-N9': string;
|
11
|
+
'--app-B1_2': string;
|
12
|
+
'--app-B1-N1': string;
|
13
|
+
'--app-B1-N2': string;
|
14
|
+
'--app-B1-N3': string;
|
15
|
+
'--app-B1-N4': string;
|
16
|
+
'--app-B1-N5': string;
|
17
|
+
'--app-B1-N6': string;
|
18
|
+
'--app-B1-N7': string;
|
19
|
+
'--app-B1-N8': string;
|
20
|
+
'--app-B1-N9': string;
|
21
|
+
'--app-B1': string;
|
22
|
+
'--app-B2_2-N1': string;
|
23
|
+
'--app-B2_2-N2': string;
|
24
|
+
'--app-B2_2-N3': string;
|
25
|
+
'--app-B2_2-N4': string;
|
26
|
+
'--app-B2_2-N5': string;
|
27
|
+
'--app-B2_2-N6': string;
|
28
|
+
'--app-B2_2-N7': string;
|
29
|
+
'--app-B2_2-N8': string;
|
30
|
+
'--app-B2_2-N9': string;
|
31
|
+
'--app-B2_2': string;
|
32
|
+
'--app-B2-N1': string;
|
33
|
+
'--app-B2-N2': string;
|
34
|
+
'--app-B2-N3': string;
|
35
|
+
'--app-B2-N4': string;
|
36
|
+
'--app-B2-N5': string;
|
37
|
+
'--app-B2-N6': string;
|
38
|
+
'--app-B2-N7': string;
|
39
|
+
'--app-B2-N8': string;
|
40
|
+
'--app-B2-N9': string;
|
41
|
+
'--app-B2': string;
|
42
|
+
'--app-B3_2-N1': string;
|
43
|
+
'--app-B3_2-N2': string;
|
44
|
+
'--app-B3_2-N3': string;
|
45
|
+
'--app-B3_2-N4': string;
|
46
|
+
'--app-B3_2-N5': string;
|
47
|
+
'--app-B3_2-N6': string;
|
48
|
+
'--app-B3_2-N7': string;
|
49
|
+
'--app-B3_2-N8': string;
|
50
|
+
'--app-B3_2-N9': string;
|
51
|
+
'--app-B3_2': string;
|
52
|
+
'--app-B3-N1': string;
|
53
|
+
'--app-B3-N2': string;
|
54
|
+
'--app-B3-N3': string;
|
55
|
+
'--app-B3-N4': string;
|
56
|
+
'--app-B3-N5': string;
|
57
|
+
'--app-B3-N6': string;
|
58
|
+
'--app-B3-N7': string;
|
59
|
+
'--app-B3-N8': string;
|
60
|
+
'--app-B3-N9': string;
|
61
|
+
'--app-B3': string;
|
62
|
+
'--app-B4_2-N1': string;
|
63
|
+
'--app-B4_2-N2': string;
|
64
|
+
'--app-B4_2-N3': string;
|
65
|
+
'--app-B4_2-N4': string;
|
66
|
+
'--app-B4_2-N5': string;
|
67
|
+
'--app-B4_2-N6': string;
|
68
|
+
'--app-B4_2-N7': string;
|
69
|
+
'--app-B4_2-N8': string;
|
70
|
+
'--app-B4_2-N9': string;
|
71
|
+
'--app-B4_2': string;
|
72
|
+
'--app-B4-N1': string;
|
73
|
+
'--app-B4-N2': string;
|
74
|
+
'--app-B4-N3': string;
|
75
|
+
'--app-B4-N4': string;
|
76
|
+
'--app-B4-N5': string;
|
77
|
+
'--app-B4-N6': string;
|
78
|
+
'--app-B4-N7': string;
|
79
|
+
'--app-B4-N8': string;
|
80
|
+
'--app-B4-N9': string;
|
81
|
+
'--app-B4': string;
|
82
|
+
'--app-B5_2-N1': string;
|
83
|
+
'--app-B5_2-N2': string;
|
84
|
+
'--app-B5_2-N3': string;
|
85
|
+
'--app-B5_2-N4': string;
|
86
|
+
'--app-B5_2-N5': string;
|
87
|
+
'--app-B5_2-N6': string;
|
88
|
+
'--app-B5_2-N7': string;
|
89
|
+
'--app-B5_2-N8': string;
|
90
|
+
'--app-B5_2-N9': string;
|
91
|
+
'--app-B5_2': string;
|
92
|
+
'--app-B5-N1': string;
|
93
|
+
'--app-B5-N2': string;
|
94
|
+
'--app-B5-N3': string;
|
95
|
+
'--app-B5-N4': string;
|
96
|
+
'--app-B5-N5': string;
|
97
|
+
'--app-B5-N6': string;
|
98
|
+
'--app-B5-N7': string;
|
99
|
+
'--app-B5-N8': string;
|
100
|
+
'--app-B5-N9': string;
|
101
|
+
'--app-B5': string;
|
102
|
+
'--app-B6_2-N1': string;
|
103
|
+
'--app-B6_2-N2': string;
|
104
|
+
'--app-B6_2-N3': string;
|
105
|
+
'--app-B6_2-N4': string;
|
106
|
+
'--app-B6_2-N5': string;
|
107
|
+
'--app-B6_2-N6': string;
|
108
|
+
'--app-B6_2-N7': string;
|
109
|
+
'--app-B6_2-N8': string;
|
110
|
+
'--app-B6_2-N9': string;
|
111
|
+
'--app-B6_2': string;
|
112
|
+
'--app-B6-N1': string;
|
113
|
+
'--app-B6-N2': string;
|
114
|
+
'--app-B6-N3': string;
|
115
|
+
'--app-B6-N4': string;
|
116
|
+
'--app-B6-N5': string;
|
117
|
+
'--app-B6-N6': string;
|
118
|
+
'--app-B6-N7': string;
|
119
|
+
'--app-B6-N8': string;
|
120
|
+
'--app-B6-N9': string;
|
121
|
+
'--app-B6': string;
|
122
|
+
'--app-C1_1': string;
|
123
|
+
'--app-C1_2': string;
|
124
|
+
'--app-C1_3': string;
|
125
|
+
'--app-C2_2': string;
|
126
|
+
'--app-C2_3': string;
|
127
|
+
'--app-C2': string;
|
128
|
+
'--app-C3_1': string;
|
129
|
+
'--app-C3_2': string;
|
130
|
+
'--app-C3_3': string;
|
131
|
+
'--app-C3_4': string;
|
132
|
+
'--app-I1': string;
|
133
|
+
'--app-I2': string;
|
134
|
+
'--app-I3': string;
|
135
|
+
'--app-I4': string;
|
136
|
+
'--app-I5': string;
|
137
|
+
'--app-I6': string;
|
138
|
+
'--app-I7': string;
|
139
|
+
'--app-IC1': string;
|
140
|
+
'--app-IC2': string;
|
141
|
+
'--app-IC3': string;
|
142
|
+
'--app-IC4': string;
|
143
|
+
'--app-IC5': string;
|
144
|
+
'--app-M1_1-N1': string;
|
145
|
+
'--app-M1_1-N2': string;
|
146
|
+
'--app-M1_1-N3': string;
|
147
|
+
'--app-M1_1-N4': string;
|
148
|
+
'--app-M1_1-N5': string;
|
149
|
+
'--app-M1_1-N6': string;
|
150
|
+
'--app-M1_1-N7': string;
|
151
|
+
'--app-M1_1-N8': string;
|
152
|
+
'--app-M1_1-N9': string;
|
153
|
+
'--app-M1_1': string;
|
154
|
+
'--app-M1_2-N1': string;
|
155
|
+
'--app-M1_2-N2': string;
|
156
|
+
'--app-M1_2-N3': string;
|
157
|
+
'--app-M1_2-N4': string;
|
158
|
+
'--app-M1_2-N5': string;
|
159
|
+
'--app-M1_2-N6': string;
|
160
|
+
'--app-M1_2-N7': string;
|
161
|
+
'--app-M1_2-N8': string;
|
162
|
+
'--app-M1_2-N9': string;
|
163
|
+
'--app-M1_2': string;
|
164
|
+
'--app-M1-N1': string;
|
165
|
+
'--app-M1-N2': string;
|
166
|
+
'--app-M1-N3': string;
|
167
|
+
'--app-M1-N4': string;
|
168
|
+
'--app-M1-N5': string;
|
169
|
+
'--app-M1-N6': string;
|
170
|
+
'--app-M1-N7': string;
|
171
|
+
'--app-M1-N8': string;
|
172
|
+
'--app-M1-N9': string;
|
173
|
+
'--app-M1': string;
|
174
|
+
'--app-M2_1-N1': string;
|
175
|
+
'--app-M2_1-N2': string;
|
176
|
+
'--app-M2_1-N3': string;
|
177
|
+
'--app-M2_1-N4': string;
|
178
|
+
'--app-M2_1-N5': string;
|
179
|
+
'--app-M2_1-N6': string;
|
180
|
+
'--app-M2_1-N7': string;
|
181
|
+
'--app-M2_1-N8': string;
|
182
|
+
'--app-M2_1-N9': string;
|
183
|
+
'--app-M2_1': string;
|
184
|
+
'--app-M2_2-N1': string;
|
185
|
+
'--app-M2_2-N2': string;
|
186
|
+
'--app-M2_2-N3': string;
|
187
|
+
'--app-M2_2-N4': string;
|
188
|
+
'--app-M2_2-N5': string;
|
189
|
+
'--app-M2_2-N6': string;
|
190
|
+
'--app-M2_2-N7': string;
|
191
|
+
'--app-M2_2-N8': string;
|
192
|
+
'--app-M2_2-N9': string;
|
193
|
+
'--app-M2_2': string;
|
194
|
+
'--app-M2-N1': string;
|
195
|
+
'--app-M2-N2': string;
|
196
|
+
'--app-M2-N3': string;
|
197
|
+
'--app-M2-N4': string;
|
198
|
+
'--app-M2-N5': string;
|
199
|
+
'--app-M2-N6': string;
|
200
|
+
'--app-M2-N7': string;
|
201
|
+
'--app-M2-N8': string;
|
202
|
+
'--app-M2-N9': string;
|
203
|
+
'--app-M2': string;
|
204
|
+
'--app-M3_1-N1': string;
|
205
|
+
'--app-M3_1-N2': string;
|
206
|
+
'--app-M3_1-N3': string;
|
207
|
+
'--app-M3_1-N4': string;
|
208
|
+
'--app-M3_1-N5': string;
|
209
|
+
'--app-M3_1-N6': string;
|
210
|
+
'--app-M3_1-N7': string;
|
211
|
+
'--app-M3_1-N8': string;
|
212
|
+
'--app-M3_1-N9': string;
|
213
|
+
'--app-M3_1': string;
|
214
|
+
'--app-M3_2-N1': string;
|
215
|
+
'--app-M3_2-N2': string;
|
216
|
+
'--app-M3_2-N3': string;
|
217
|
+
'--app-M3_2-N4': string;
|
218
|
+
'--app-M3_2-N5': string;
|
219
|
+
'--app-M3_2-N6': string;
|
220
|
+
'--app-M3_2-N7': string;
|
221
|
+
'--app-M3_2-N8': string;
|
222
|
+
'--app-M3_2-N9': string;
|
223
|
+
'--app-M3_2': string;
|
224
|
+
'--app-M3-N1': string;
|
225
|
+
'--app-M3-N2': string;
|
226
|
+
'--app-M3-N3': string;
|
227
|
+
'--app-M3-N4': string;
|
228
|
+
'--app-M3-N5': string;
|
229
|
+
'--app-M3-N6': string;
|
230
|
+
'--app-M3-N7': string;
|
231
|
+
'--app-M3-N8': string;
|
232
|
+
'--app-M3-N9': string;
|
233
|
+
'--app-M3': string;
|
234
|
+
'--app-M4_1-N1': string;
|
235
|
+
'--app-M4_1-N2': string;
|
236
|
+
'--app-M4_1-N3': string;
|
237
|
+
'--app-M4_1-N4': string;
|
238
|
+
'--app-M4_1-N5': string;
|
239
|
+
'--app-M4_1-N6': string;
|
240
|
+
'--app-M4_1-N7': string;
|
241
|
+
'--app-M4_1-N8': string;
|
242
|
+
'--app-M4_1-N9': string;
|
243
|
+
'--app-M4_1': string;
|
244
|
+
'--app-M4_2-N1': string;
|
245
|
+
'--app-M4_2-N2': string;
|
246
|
+
'--app-M4_2-N3': string;
|
247
|
+
'--app-M4_2-N4': string;
|
248
|
+
'--app-M4_2-N5': string;
|
249
|
+
'--app-M4_2-N6': string;
|
250
|
+
'--app-M4_2-N7': string;
|
251
|
+
'--app-M4_2-N8': string;
|
252
|
+
'--app-M4_2-N9': string;
|
253
|
+
'--app-M4_2': string;
|
254
|
+
'--app-M4-N1': string;
|
255
|
+
'--app-M4-N2': string;
|
256
|
+
'--app-M4-N3': string;
|
257
|
+
'--app-M4-N4': string;
|
258
|
+
'--app-M4-N5': string;
|
259
|
+
'--app-M4-N6': string;
|
260
|
+
'--app-M4-N7': string;
|
261
|
+
'--app-M4-N8': string;
|
262
|
+
'--app-M4-N9': string;
|
263
|
+
'--app-M4': string;
|
264
|
+
'--app-M5_1-N1': string;
|
265
|
+
'--app-M5_1-N2': string;
|
266
|
+
'--app-M5_1-N3': string;
|
267
|
+
'--app-M5_1-N4': string;
|
268
|
+
'--app-M5_1-N5': string;
|
269
|
+
'--app-M5_1-N6': string;
|
270
|
+
'--app-M5_1-N7': string;
|
271
|
+
'--app-M5_1-N8': string;
|
272
|
+
'--app-M5_1-N9': string;
|
273
|
+
'--app-M5_1': string;
|
274
|
+
'--app-M5_2-N1': string;
|
275
|
+
'--app-M5_2-N2': string;
|
276
|
+
'--app-M5_2-N3': string;
|
277
|
+
'--app-M5_2-N4': string;
|
278
|
+
'--app-M5_2-N5': string;
|
279
|
+
'--app-M5_2-N6': string;
|
280
|
+
'--app-M5_2-N7': string;
|
281
|
+
'--app-M5_2-N8': string;
|
282
|
+
'--app-M5_2-N9': string;
|
283
|
+
'--app-M5_2': string;
|
284
|
+
'--app-M5-N1': string;
|
285
|
+
'--app-M5-N2': string;
|
286
|
+
'--app-M5-N3': string;
|
287
|
+
'--app-M5-N4': string;
|
288
|
+
'--app-M5-N5': string;
|
289
|
+
'--app-M5-N6': string;
|
290
|
+
'--app-M5-N7': string;
|
291
|
+
'--app-M5-N8': string;
|
292
|
+
'--app-M5-N9': string;
|
293
|
+
'--app-M5': string;
|
294
|
+
'--app-P0': string;
|
295
|
+
'--app-P1': string;
|
296
|
+
'--app-P2': string;
|
297
|
+
'--app-P3': string;
|
298
|
+
'--app-P4': string;
|
299
|
+
'--app-P5': string;
|
300
|
+
'--app-P6': string;
|
301
|
+
'--app-P7': string;
|
302
|
+
'--app-P8': string;
|
303
|
+
'--app-P9': string;
|
304
|
+
'--app-T1-f': string;
|
305
|
+
'--app-T1-h': string;
|
306
|
+
'--app-T1-p': string;
|
307
|
+
'--app-T10-f': string;
|
308
|
+
'--app-T10-h': string;
|
309
|
+
'--app-T10-p': string;
|
310
|
+
'--app-T11-f': string;
|
311
|
+
'--app-T11-h': string;
|
312
|
+
'--app-T11-p': string;
|
313
|
+
'--app-T12-f': string;
|
314
|
+
'--app-T12-h': string;
|
315
|
+
'--app-T12-p': string;
|
316
|
+
'--app-T13-f': string;
|
317
|
+
'--app-T13-h': string;
|
318
|
+
'--app-T13-p': string;
|
319
|
+
'--app-T2-f': string;
|
320
|
+
'--app-T2-h': string;
|
321
|
+
'--app-T2-p': string;
|
322
|
+
'--app-T3-f': string;
|
323
|
+
'--app-T3-h': string;
|
324
|
+
'--app-T3-p': string;
|
325
|
+
'--app-T4-f': string;
|
326
|
+
'--app-T4-h': string;
|
327
|
+
'--app-T4-p': string;
|
328
|
+
'--app-T5-f': string;
|
329
|
+
'--app-T5-h': string;
|
330
|
+
'--app-T5-p': string;
|
331
|
+
'--app-T6-f': string;
|
332
|
+
'--app-T6-h': string;
|
333
|
+
'--app-T6-p': string;
|
334
|
+
'--app-T7-f': string;
|
335
|
+
'--app-T7-h': string;
|
336
|
+
'--app-T7-p': string;
|
337
|
+
'--app-T8-f': string;
|
338
|
+
'--app-T8-h': string;
|
339
|
+
'--app-T8-p': string;
|
340
|
+
'--app-T9-f': string;
|
341
|
+
'--app-T9-h': string;
|
342
|
+
'--app-T9-p': string;
|
343
|
+
};
|
344
|
+
export default _default;
|