@tuya-miniapp/smart-ui 2.1.7-beta-2 → 2.1.8-beta-1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/circle/index.js +0 -1
- package/dist/circle/index.wxml +1 -1
- package/dist/dialog/dialog.d.ts +3 -0
- package/dist/dialog/dialog.js +7 -5
- package/dist/dialog/index.js +4 -0
- package/dist/notify/index.js +4 -0
- package/dist/notify/notify.d.ts +6 -0
- package/dist/notify/notify.js +10 -6
- package/dist/toast/index.js +4 -1
- package/dist/toast/index.wxml +1 -0
- package/dist/toast/toast.d.ts +3 -0
- package/dist/toast/toast.js +7 -5
- package/lib/circle/index.js +0 -1
- package/lib/circle/index.wxml +1 -1
- package/lib/dialog/dialog.d.ts +3 -0
- package/lib/dialog/dialog.js +8 -5
- package/lib/dialog/index.js +4 -0
- package/lib/notify/index.js +4 -0
- package/lib/notify/notify.d.ts +6 -0
- package/lib/notify/notify.js +11 -6
- package/lib/toast/index.js +4 -1
- package/lib/toast/index.wxml +1 -0
- package/lib/toast/toast.d.ts +3 -0
- package/lib/toast/toast.js +8 -5
- package/package.json +2 -2
package/dist/circle/index.js
CHANGED
package/dist/circle/index.wxml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<view class="smart-progress-circle" style="width:{{size}};height:{{size}};padding:{{trackWidth}}px;background:{{fillColor}};{{
|
1
|
+
<view class="smart-progress-circle" style="width:{{size}};height:{{size}};padding:{{trackWidth}}px;background:{{fillColor}};{{customStyle}}">
|
2
2
|
<view class="smart-progress-circle-box smart-progress-circle-box-left">
|
3
3
|
<view class="smart-progress-circle-bar smart-progress-circle-bar-left" style="transform:{{transformLeft}};background:{{trackColor}};">
|
4
4
|
</view>
|
package/dist/dialog/dialog.d.ts
CHANGED
@@ -46,6 +46,9 @@ interface DialogInputOptions extends DialogOptions {
|
|
46
46
|
placeholder?: string;
|
47
47
|
maxlength?: number;
|
48
48
|
}
|
49
|
+
export declare const contextRef: {
|
50
|
+
value: DialogContext | null;
|
51
|
+
};
|
49
52
|
declare const Dialog: {
|
50
53
|
(options: DialogOptions): Promise<WechatMiniprogram.Component.TrivialInstance>;
|
51
54
|
alert(options: DialogOptions): Promise<WechatMiniprogram.Component.TrivialInstance>;
|
package/dist/dialog/dialog.js
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import { getCurrentPage } from '../common/utils';
|
1
2
|
let queue = [];
|
2
3
|
const defaultOptions = {
|
3
4
|
show: false,
|
@@ -28,15 +29,16 @@ const defaultOptions = {
|
|
28
29
|
maxlength: 20,
|
29
30
|
};
|
30
31
|
let currentOptions = Object.assign({}, defaultOptions);
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
}
|
32
|
+
export const contextRef = {
|
33
|
+
value: null,
|
34
|
+
};
|
35
35
|
const Dialog = (options) => {
|
36
36
|
options = Object.assign(Object.assign({}, currentOptions), options);
|
37
37
|
return new Promise((resolve, reject) => {
|
38
38
|
var _a;
|
39
|
-
const context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
39
|
+
const context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
40
|
+
contextRef.value ||
|
41
|
+
getCurrentPage();
|
40
42
|
const selector = options.selector;
|
41
43
|
const dialog = context.selectComponent(options.selector);
|
42
44
|
if ((queue === null || queue === void 0 ? void 0 : queue.length) > 0 && ((_a = queue === null || queue === void 0 ? void 0 : queue[0]) === null || _a === void 0 ? void 0 : _a.id) === (dialog === null || dialog === void 0 ? void 0 : dialog.id)) {
|
package/dist/dialog/index.js
CHANGED
@@ -2,6 +2,7 @@ import warningIcon from '@tuya-miniapp/icons/dist/svg/Warning';
|
|
2
2
|
import { SmartComponent } from '../common/component';
|
3
3
|
import { button } from '../mixins/button';
|
4
4
|
import { toPromise } from '../common/utils';
|
5
|
+
import { contextRef } from './dialog';
|
5
6
|
SmartComponent({
|
6
7
|
mixins: [button],
|
7
8
|
classes: ['cancle-button-class', 'confirm-button-class'],
|
@@ -90,6 +91,9 @@ SmartComponent({
|
|
90
91
|
},
|
91
92
|
callback: (() => { }),
|
92
93
|
},
|
94
|
+
mounted: function () {
|
95
|
+
contextRef.value = this;
|
96
|
+
},
|
93
97
|
methods: {
|
94
98
|
onConfirm() {
|
95
99
|
this.handleAction('confirm');
|
package/dist/notify/index.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import { SmartComponent } from '../common/component';
|
2
2
|
import { WHITE } from '../common/color';
|
3
3
|
import { getSystemInfoSync } from '../common/utils';
|
4
|
+
import { contextRef } from './notify';
|
4
5
|
SmartComponent({
|
5
6
|
props: {
|
6
7
|
message: String,
|
@@ -45,6 +46,9 @@ SmartComponent({
|
|
45
46
|
const { statusBarHeight } = getSystemInfoSync();
|
46
47
|
this.setData({ statusBarHeight });
|
47
48
|
},
|
49
|
+
mounted: function () {
|
50
|
+
contextRef.value = this;
|
51
|
+
},
|
48
52
|
methods: {
|
49
53
|
show() {
|
50
54
|
const { duration, onOpened } = this.data;
|
package/dist/notify/notify.d.ts
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
/// <reference types="miniprogram-api-typings" />
|
2
|
+
/// <reference types="miniprogram-api-typings" />
|
3
|
+
type NotifyContext = WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance;
|
1
4
|
interface NotifyOptions {
|
2
5
|
type?: 'primary' | 'success' | 'danger' | 'warning';
|
3
6
|
transition?: 'fade' | 'fade-up' | 'fade-down' | 'fade-left' | 'fade-right' | 'slide-up' | 'slide-down' | 'slide-left' | 'slide-right';
|
@@ -14,6 +17,9 @@ interface NotifyOptions {
|
|
14
17
|
onOpened?: () => void;
|
15
18
|
onClose?: () => void;
|
16
19
|
}
|
20
|
+
export declare const contextRef: {
|
21
|
+
value: NotifyContext | null;
|
22
|
+
};
|
17
23
|
declare function Notify(options: NotifyOptions | string): any;
|
18
24
|
declare namespace Notify {
|
19
25
|
var clear: (options?: NotifyOptions | undefined) => void;
|
package/dist/notify/notify.js
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import { getCurrentPage } from '../common/utils';
|
1
2
|
import { WHITE } from '../common/color';
|
2
3
|
const defaultOptions = {
|
3
4
|
selector: '#smart-notify',
|
@@ -20,13 +21,14 @@ function parseOptions(message) {
|
|
20
21
|
}
|
21
22
|
return typeof message === 'string' ? { message } : message;
|
22
23
|
}
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
}
|
24
|
+
export const contextRef = {
|
25
|
+
value: null,
|
26
|
+
};
|
27
27
|
export default function Notify(options) {
|
28
28
|
options = Object.assign(Object.assign({}, currentOptions), parseOptions(options));
|
29
|
-
const context = options.context
|
29
|
+
const context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
30
|
+
contextRef.value ||
|
31
|
+
getCurrentPage();
|
30
32
|
const notify = context.selectComponent(options.selector);
|
31
33
|
delete options.context;
|
32
34
|
delete options.selector;
|
@@ -39,7 +41,9 @@ export default function Notify(options) {
|
|
39
41
|
}
|
40
42
|
Notify.clear = function (options) {
|
41
43
|
options = Object.assign(Object.assign({}, defaultOptions), parseOptions(options));
|
42
|
-
const context = options.context
|
44
|
+
const context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
45
|
+
contextRef.value ||
|
46
|
+
getCurrentPage();
|
43
47
|
const notify = context.selectComponent(options.selector);
|
44
48
|
if (notify) {
|
45
49
|
notify.hide();
|
package/dist/toast/index.js
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
import { Success, Alarm, Error } from './icons';
|
2
2
|
import { SmartComponent } from '../common/component';
|
3
|
+
import { contextRef } from './toast';
|
3
4
|
SmartComponent({
|
4
5
|
props: {
|
5
6
|
show: Boolean,
|
@@ -10,7 +11,6 @@ SmartComponent({
|
|
10
11
|
type: Number,
|
11
12
|
value: 1000,
|
12
13
|
},
|
13
|
-
//
|
14
14
|
type: {
|
15
15
|
type: String,
|
16
16
|
value: 'text',
|
@@ -32,6 +32,9 @@ SmartComponent({
|
|
32
32
|
error: Error,
|
33
33
|
warn: Alarm,
|
34
34
|
},
|
35
|
+
mounted: function () {
|
36
|
+
contextRef.value = this;
|
37
|
+
},
|
35
38
|
methods: {
|
36
39
|
// for prevent touchmove
|
37
40
|
noop() { },
|
package/dist/toast/index.wxml
CHANGED
package/dist/toast/toast.d.ts
CHANGED
@@ -17,6 +17,9 @@ interface ToastOptions {
|
|
17
17
|
onClose?: () => void;
|
18
18
|
width?: number;
|
19
19
|
}
|
20
|
+
export declare const contextRef: {
|
21
|
+
value: ToastContext | null;
|
22
|
+
};
|
20
23
|
declare function Toast(toastOptions: ToastOptions | ToastMessage): WechatMiniprogram.Component.TrivialInstance | undefined;
|
21
24
|
declare namespace Toast {
|
22
25
|
var loading: (options: ToastMessage | ToastOptions) => WechatMiniprogram.Component.TrivialInstance | undefined;
|
package/dist/toast/toast.js
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import { getCurrentPage } from '../common/utils';
|
1
2
|
import { isObj } from '../common/validator';
|
2
3
|
const defaultOptions = {
|
3
4
|
type: 'text',
|
@@ -18,13 +19,14 @@ let currentOptions = Object.assign({}, defaultOptions);
|
|
18
19
|
function parseOptions(message) {
|
19
20
|
return isObj(message) ? message : { message };
|
20
21
|
}
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
}
|
22
|
+
export const contextRef = {
|
23
|
+
value: null,
|
24
|
+
};
|
25
25
|
function Toast(toastOptions) {
|
26
26
|
const options = Object.assign(Object.assign({}, currentOptions), parseOptions(toastOptions));
|
27
|
-
const context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
27
|
+
const context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
28
|
+
contextRef.value ||
|
29
|
+
getCurrentPage();
|
28
30
|
const toast = context.selectComponent(options.selector);
|
29
31
|
if (!toast) {
|
30
32
|
console.warn('未找到 smart-toast 节点,请确认 selector 及 context 是否正确');
|
package/lib/circle/index.js
CHANGED
package/lib/circle/index.wxml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<view class="smart-progress-circle" style="width:{{size}};height:{{size}};padding:{{trackWidth}}px;background:{{fillColor}};{{
|
1
|
+
<view class="smart-progress-circle" style="width:{{size}};height:{{size}};padding:{{trackWidth}}px;background:{{fillColor}};{{customStyle}}">
|
2
2
|
<view class="smart-progress-circle-box smart-progress-circle-box-left">
|
3
3
|
<view class="smart-progress-circle-bar smart-progress-circle-bar-left" style="transform:{{transformLeft}};background:{{trackColor}};">
|
4
4
|
</view>
|
package/lib/dialog/dialog.d.ts
CHANGED
@@ -46,6 +46,9 @@ interface DialogInputOptions extends DialogOptions {
|
|
46
46
|
placeholder?: string;
|
47
47
|
maxlength?: number;
|
48
48
|
}
|
49
|
+
export declare const contextRef: {
|
50
|
+
value: DialogContext | null;
|
51
|
+
};
|
49
52
|
declare const Dialog: {
|
50
53
|
(options: DialogOptions): Promise<WechatMiniprogram.Component.TrivialInstance>;
|
51
54
|
alert(options: DialogOptions): Promise<WechatMiniprogram.Component.TrivialInstance>;
|
package/lib/dialog/dialog.js
CHANGED
@@ -11,6 +11,8 @@ var __assign = (this && this.__assign) || function () {
|
|
11
11
|
return __assign.apply(this, arguments);
|
12
12
|
};
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
14
|
+
exports.contextRef = void 0;
|
15
|
+
var utils_1 = require("../common/utils");
|
14
16
|
var queue = [];
|
15
17
|
var defaultOptions = {
|
16
18
|
show: false,
|
@@ -41,15 +43,16 @@ var defaultOptions = {
|
|
41
43
|
maxlength: 20,
|
42
44
|
};
|
43
45
|
var currentOptions = __assign({}, defaultOptions);
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
}
|
46
|
+
exports.contextRef = {
|
47
|
+
value: null,
|
48
|
+
};
|
48
49
|
var Dialog = function (options) {
|
49
50
|
options = __assign(__assign({}, currentOptions), options);
|
50
51
|
return new Promise(function (resolve, reject) {
|
51
52
|
var _a;
|
52
|
-
var context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
53
|
+
var context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
54
|
+
exports.contextRef.value ||
|
55
|
+
(0, utils_1.getCurrentPage)();
|
53
56
|
var selector = options.selector;
|
54
57
|
var dialog = context.selectComponent(options.selector);
|
55
58
|
if ((queue === null || queue === void 0 ? void 0 : queue.length) > 0 && ((_a = queue === null || queue === void 0 ? void 0 : queue[0]) === null || _a === void 0 ? void 0 : _a.id) === (dialog === null || dialog === void 0 ? void 0 : dialog.id)) {
|
package/lib/dialog/index.js
CHANGED
@@ -7,6 +7,7 @@ var Warning_1 = __importDefault(require("@tuya-miniapp/icons/dist/svg/Warning"))
|
|
7
7
|
var component_1 = require("../common/component");
|
8
8
|
var button_1 = require("../mixins/button");
|
9
9
|
var utils_1 = require("../common/utils");
|
10
|
+
var dialog_1 = require("./dialog");
|
10
11
|
(0, component_1.SmartComponent)({
|
11
12
|
mixins: [button_1.button],
|
12
13
|
classes: ['cancle-button-class', 'confirm-button-class'],
|
@@ -95,6 +96,9 @@ var utils_1 = require("../common/utils");
|
|
95
96
|
},
|
96
97
|
callback: (function () { }),
|
97
98
|
},
|
99
|
+
mounted: function () {
|
100
|
+
dialog_1.contextRef.value = this;
|
101
|
+
},
|
98
102
|
methods: {
|
99
103
|
onConfirm: function () {
|
100
104
|
this.handleAction('confirm');
|
package/lib/notify/index.js
CHANGED
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var component_1 = require("../common/component");
|
4
4
|
var color_1 = require("../common/color");
|
5
5
|
var utils_1 = require("../common/utils");
|
6
|
+
var notify_1 = require("./notify");
|
6
7
|
(0, component_1.SmartComponent)({
|
7
8
|
props: {
|
8
9
|
message: String,
|
@@ -47,6 +48,9 @@ var utils_1 = require("../common/utils");
|
|
47
48
|
var statusBarHeight = (0, utils_1.getSystemInfoSync)().statusBarHeight;
|
48
49
|
this.setData({ statusBarHeight: statusBarHeight });
|
49
50
|
},
|
51
|
+
mounted: function () {
|
52
|
+
notify_1.contextRef.value = this;
|
53
|
+
},
|
50
54
|
methods: {
|
51
55
|
show: function () {
|
52
56
|
var _this = this;
|
package/lib/notify/notify.d.ts
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
/// <reference types="miniprogram-api-typings" />
|
2
|
+
/// <reference types="miniprogram-api-typings" />
|
3
|
+
type NotifyContext = WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance;
|
1
4
|
interface NotifyOptions {
|
2
5
|
type?: 'primary' | 'success' | 'danger' | 'warning';
|
3
6
|
transition?: 'fade' | 'fade-up' | 'fade-down' | 'fade-left' | 'fade-right' | 'slide-up' | 'slide-down' | 'slide-left' | 'slide-right';
|
@@ -14,6 +17,9 @@ interface NotifyOptions {
|
|
14
17
|
onOpened?: () => void;
|
15
18
|
onClose?: () => void;
|
16
19
|
}
|
20
|
+
export declare const contextRef: {
|
21
|
+
value: NotifyContext | null;
|
22
|
+
};
|
17
23
|
declare function Notify(options: NotifyOptions | string): any;
|
18
24
|
declare namespace Notify {
|
19
25
|
var clear: (options?: NotifyOptions | undefined) => void;
|
package/lib/notify/notify.js
CHANGED
@@ -11,6 +11,8 @@ var __assign = (this && this.__assign) || function () {
|
|
11
11
|
return __assign.apply(this, arguments);
|
12
12
|
};
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
14
|
+
exports.contextRef = void 0;
|
15
|
+
var utils_1 = require("../common/utils");
|
14
16
|
var color_1 = require("../common/color");
|
15
17
|
var defaultOptions = {
|
16
18
|
selector: '#smart-notify',
|
@@ -33,13 +35,14 @@ function parseOptions(message) {
|
|
33
35
|
}
|
34
36
|
return typeof message === 'string' ? { message: message } : message;
|
35
37
|
}
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
}
|
38
|
+
exports.contextRef = {
|
39
|
+
value: null,
|
40
|
+
};
|
40
41
|
function Notify(options) {
|
41
42
|
options = __assign(__assign({}, currentOptions), parseOptions(options));
|
42
|
-
var context = options.context
|
43
|
+
var context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
44
|
+
exports.contextRef.value ||
|
45
|
+
(0, utils_1.getCurrentPage)();
|
43
46
|
var notify = context.selectComponent(options.selector);
|
44
47
|
delete options.context;
|
45
48
|
delete options.selector;
|
@@ -53,7 +56,9 @@ function Notify(options) {
|
|
53
56
|
exports.default = Notify;
|
54
57
|
Notify.clear = function (options) {
|
55
58
|
options = __assign(__assign({}, defaultOptions), parseOptions(options));
|
56
|
-
var context = options.context
|
59
|
+
var context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
60
|
+
exports.contextRef.value ||
|
61
|
+
(0, utils_1.getCurrentPage)();
|
57
62
|
var notify = context.selectComponent(options.selector);
|
58
63
|
if (notify) {
|
59
64
|
notify.hide();
|
package/lib/toast/index.js
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
var icons_1 = require("./icons");
|
4
4
|
var component_1 = require("../common/component");
|
5
|
+
var toast_1 = require("./toast");
|
5
6
|
(0, component_1.SmartComponent)({
|
6
7
|
props: {
|
7
8
|
show: Boolean,
|
@@ -12,7 +13,6 @@ var component_1 = require("../common/component");
|
|
12
13
|
type: Number,
|
13
14
|
value: 1000,
|
14
15
|
},
|
15
|
-
//
|
16
16
|
type: {
|
17
17
|
type: String,
|
18
18
|
value: 'text',
|
@@ -34,6 +34,9 @@ var component_1 = require("../common/component");
|
|
34
34
|
error: icons_1.Error,
|
35
35
|
warn: icons_1.Alarm,
|
36
36
|
},
|
37
|
+
mounted: function () {
|
38
|
+
toast_1.contextRef.value = this;
|
39
|
+
},
|
37
40
|
methods: {
|
38
41
|
// for prevent touchmove
|
39
42
|
noop: function () { },
|
package/lib/toast/index.wxml
CHANGED
package/lib/toast/toast.d.ts
CHANGED
@@ -17,6 +17,9 @@ interface ToastOptions {
|
|
17
17
|
onClose?: () => void;
|
18
18
|
width?: number;
|
19
19
|
}
|
20
|
+
export declare const contextRef: {
|
21
|
+
value: ToastContext | null;
|
22
|
+
};
|
20
23
|
declare function Toast(toastOptions: ToastOptions | ToastMessage): WechatMiniprogram.Component.TrivialInstance | undefined;
|
21
24
|
declare namespace Toast {
|
22
25
|
var loading: (options: ToastMessage | ToastOptions) => WechatMiniprogram.Component.TrivialInstance | undefined;
|
package/lib/toast/toast.js
CHANGED
@@ -11,6 +11,8 @@ var __assign = (this && this.__assign) || function () {
|
|
11
11
|
return __assign.apply(this, arguments);
|
12
12
|
};
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
14
|
+
exports.contextRef = void 0;
|
15
|
+
var utils_1 = require("../common/utils");
|
14
16
|
var validator_1 = require("../common/validator");
|
15
17
|
var defaultOptions = {
|
16
18
|
type: 'text',
|
@@ -31,13 +33,14 @@ var currentOptions = __assign({}, defaultOptions);
|
|
31
33
|
function parseOptions(message) {
|
32
34
|
return (0, validator_1.isObj)(message) ? message : { message: message };
|
33
35
|
}
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
}
|
36
|
+
exports.contextRef = {
|
37
|
+
value: null,
|
38
|
+
};
|
38
39
|
function Toast(toastOptions) {
|
39
40
|
var options = __assign(__assign({}, currentOptions), parseOptions(toastOptions));
|
40
|
-
var context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
41
|
+
var context = (typeof options.context === 'function' ? options.context() : options.context) ||
|
42
|
+
exports.contextRef.value ||
|
43
|
+
(0, utils_1.getCurrentPage)();
|
41
44
|
var toast = context.selectComponent(options.selector);
|
42
45
|
if (!toast) {
|
43
46
|
console.warn('未找到 smart-toast 节点,请确认 selector 及 context 是否正确');
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@tuya-miniapp/smart-ui",
|
3
|
-
"version": "2.1.
|
3
|
+
"version": "2.1.8-beta-1",
|
4
4
|
"author": "MiniApp Team",
|
5
5
|
"license": "MIT",
|
6
6
|
"miniprogram": "lib",
|
@@ -78,7 +78,7 @@
|
|
78
78
|
],
|
79
79
|
"dependencies": {
|
80
80
|
"@ray-js/components-ty-slider": "^0.2.52",
|
81
|
-
"@tuya-miniapp/icons": "2.1.7
|
81
|
+
"@tuya-miniapp/icons": "^2.1.7"
|
82
82
|
},
|
83
83
|
"maintainers": [
|
84
84
|
{
|