@fox-js/foxui-pad 4.0.1-1 → 4.0.1-2
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.
- package/dist/index.cjs.js +3 -3
- package/dist/index.esm.js +3301 -2984
- package/dist/index.umd.js +4 -4
- package/dist/locale/index.esm.js +163 -163
- package/dist/locale/index.umd.js +3 -0
- package/dist/style.css +1 -1
- package/dist/style.esm.js +1 -1
- package/dist/types/index.d.ts +152 -34
- package/package.json +4 -4
- package/dist/locale/index.cjs.js +0 -3
package/dist/style.esm.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { AllowedComponentProps } from 'vue';
|
|
2
2
|
import { App } from 'vue';
|
|
3
|
-
import { clone } from '@fox-js/fox';
|
|
4
3
|
import { compareTo } from '@fox-js/big-decimal';
|
|
5
4
|
import type { ComponentCustomProps } from 'vue';
|
|
6
5
|
import { ComponentInternalInstance } from 'vue';
|
|
@@ -10,7 +9,6 @@ import type { ComputedOptions } from 'vue';
|
|
|
10
9
|
import type { DefineComponent } from 'vue';
|
|
11
10
|
import { divide } from '@fox-js/big-decimal';
|
|
12
11
|
import { ExecuteValidator } from '@fox-js/validator';
|
|
13
|
-
import { extend } from '@fox-js/fox';
|
|
14
12
|
import { ElAffix as FoxAffix } from 'element-plus';
|
|
15
13
|
import { ElAlert as FoxAlert } from 'element-plus';
|
|
16
14
|
import { ElAside as FoxAside } from 'element-plus';
|
|
@@ -105,27 +103,12 @@ import { ElTree as FoxTree } from 'element-plus';
|
|
|
105
103
|
import { ElTreeSelect as FoxTreeSelect } from 'element-plus';
|
|
106
104
|
import { ElTreeV2 as FoxTreeV2 } from 'element-plus';
|
|
107
105
|
import { ElUpload as FoxUpload } from 'element-plus';
|
|
108
|
-
import { isArray } from '@fox-js/fox';
|
|
109
|
-
import { isDate } from '@fox-js/fox';
|
|
110
|
-
import { isEqual } from '@fox-js/fox';
|
|
111
|
-
import { isESModule } from '@fox-js/fox';
|
|
112
|
-
import { isFunction } from '@fox-js/fox';
|
|
113
|
-
import { isMap } from '@fox-js/fox';
|
|
114
|
-
import { isObject } from '@fox-js/fox';
|
|
115
|
-
import { isPlainObject } from '@fox-js/fox';
|
|
116
|
-
import { isPromise } from '@fox-js/fox';
|
|
117
|
-
import { isSet } from '@fox-js/fox';
|
|
118
|
-
import { isString } from '@fox-js/fox';
|
|
119
|
-
import { isSymbol } from '@fox-js/fox';
|
|
120
106
|
import type { MethodOptions } from 'vue';
|
|
121
107
|
import { multiply } from '@fox-js/big-decimal';
|
|
122
108
|
import { negate } from '@fox-js/big-decimal';
|
|
123
109
|
import { numberFormat } from '@fox-js/big-decimal';
|
|
124
110
|
import { Ref } from 'vue';
|
|
125
111
|
import { Rule } from '@fox-js/validator';
|
|
126
|
-
import { toBoolean } from '@fox-js/fox';
|
|
127
|
-
import { toNumber } from '@fox-js/fox';
|
|
128
|
-
import { toTypeString } from '@fox-js/fox';
|
|
129
112
|
import { unNumberFormat } from '@fox-js/big-decimal';
|
|
130
113
|
import { UnwrapNestedRefs } from 'vue';
|
|
131
114
|
import { UnwrapRef } from 'vue';
|
|
@@ -234,7 +217,15 @@ export declare const CheckboxItem: DefineComponent<unknown, object, {}, Computed
|
|
|
234
217
|
*/
|
|
235
218
|
export declare function clearNonNumber(value: string, allowDot?: boolean, allowMinus?: boolean): string;
|
|
236
219
|
|
|
237
|
-
|
|
220
|
+
/**
|
|
221
|
+
* 克隆对象
|
|
222
|
+
* @param target
|
|
223
|
+
* @param source
|
|
224
|
+
* @param plain
|
|
225
|
+
*
|
|
226
|
+
* @returns
|
|
227
|
+
*/
|
|
228
|
+
export declare function clone(target: any, source: any, plain?: boolean): any;
|
|
238
229
|
|
|
239
230
|
export { compareTo }
|
|
240
231
|
|
|
@@ -484,7 +475,12 @@ declare interface EventListener_2 {
|
|
|
484
475
|
*/
|
|
485
476
|
export declare function excludeProps(src: Record<string, any>, ...excludeTemplates: Record<string, any>[]): Record<string, any>;
|
|
486
477
|
|
|
487
|
-
|
|
478
|
+
/**
|
|
479
|
+
* 继承(是否深度拷贝,dest,src1,src2,src3...)
|
|
480
|
+
*
|
|
481
|
+
* @returns
|
|
482
|
+
*/
|
|
483
|
+
export declare function extend(...args: any[]): any;
|
|
488
484
|
|
|
489
485
|
export declare const ExtIcon: DefineComponent<unknown, object, {}, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<unknown>, {}>;
|
|
490
486
|
|
|
@@ -897,6 +893,11 @@ declare interface GroupLayout {
|
|
|
897
893
|
gutter: number;
|
|
898
894
|
}
|
|
899
895
|
|
|
896
|
+
/**
|
|
897
|
+
* 是否支持symbol
|
|
898
|
+
*/
|
|
899
|
+
export declare const hasSymbol: boolean;
|
|
900
|
+
|
|
900
901
|
export declare const HeaderBar: DefineComponent<unknown, object, {}, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<unknown>, {}>;
|
|
901
902
|
|
|
902
903
|
export declare const HintText: DefineComponent<unknown, object, {}, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<unknown>, {}>;
|
|
@@ -936,14 +937,29 @@ declare interface Installer {
|
|
|
936
937
|
*/
|
|
937
938
|
export declare function integerLength(value: string | number): number;
|
|
938
939
|
|
|
939
|
-
|
|
940
|
+
/**
|
|
941
|
+
* 是否数组
|
|
942
|
+
*/
|
|
943
|
+
export declare const isArray: (arg: any) => arg is any[];
|
|
944
|
+
|
|
945
|
+
/**
|
|
946
|
+
* 是否为类数组
|
|
947
|
+
* @param obj
|
|
948
|
+
* @returns {boolean}
|
|
949
|
+
*/
|
|
950
|
+
export declare function isArrayLike(obj: any): boolean;
|
|
940
951
|
|
|
941
952
|
/**
|
|
942
953
|
* 是否为浏览器环境
|
|
943
954
|
*/
|
|
944
955
|
export declare const isBrowser: boolean;
|
|
945
956
|
|
|
946
|
-
|
|
957
|
+
/**
|
|
958
|
+
* 是否为Date
|
|
959
|
+
* @param val
|
|
960
|
+
* @returns
|
|
961
|
+
*/
|
|
962
|
+
export declare const isDate: (val: unknown) => val is Date;
|
|
947
963
|
|
|
948
964
|
/**
|
|
949
965
|
* 是否空字符串
|
|
@@ -952,11 +968,27 @@ export { isDate }
|
|
|
952
968
|
*/
|
|
953
969
|
export declare const isEmptyString: (v: unknown) => boolean;
|
|
954
970
|
|
|
955
|
-
|
|
971
|
+
/**
|
|
972
|
+
* 判断两个对象是否一致
|
|
973
|
+
* @param x
|
|
974
|
+
* @param y
|
|
975
|
+
* @return
|
|
976
|
+
*/
|
|
977
|
+
export declare function isEqual(x: any, y: any): boolean;
|
|
956
978
|
|
|
957
|
-
|
|
979
|
+
/**
|
|
980
|
+
* 是否为es module
|
|
981
|
+
* @param obj
|
|
982
|
+
* @returns
|
|
983
|
+
*/
|
|
984
|
+
export declare function isESModule(obj: any): obj is Object;
|
|
958
985
|
|
|
959
|
-
|
|
986
|
+
/**
|
|
987
|
+
* 是否为函数
|
|
988
|
+
* @param val
|
|
989
|
+
* @returns
|
|
990
|
+
*/
|
|
991
|
+
export declare const isFunction: (val: unknown) => val is Function;
|
|
960
992
|
|
|
961
993
|
/**
|
|
962
994
|
* 是否为内嵌页面
|
|
@@ -967,7 +999,12 @@ export { isFunction }
|
|
|
967
999
|
*/
|
|
968
1000
|
export declare function isInnerPage(domain: Domain, proxy: any): boolean;
|
|
969
1001
|
|
|
970
|
-
|
|
1002
|
+
/**
|
|
1003
|
+
* 是否为Map
|
|
1004
|
+
* @param val
|
|
1005
|
+
* @returns
|
|
1006
|
+
*/
|
|
1007
|
+
export declare const isMap: (val: unknown) => val is Map<any, any>;
|
|
971
1008
|
|
|
972
1009
|
/**
|
|
973
1010
|
* 是否为数字字符串
|
|
@@ -976,11 +1013,24 @@ export { isMap }
|
|
|
976
1013
|
*/
|
|
977
1014
|
export declare function isNumberString(value: string): boolean;
|
|
978
1015
|
|
|
979
|
-
|
|
1016
|
+
/**
|
|
1017
|
+
* 是否为object
|
|
1018
|
+
*/
|
|
1019
|
+
export declare const isObject: (val: unknown) => val is Record<any, any>;
|
|
980
1020
|
|
|
981
|
-
|
|
1021
|
+
/**
|
|
1022
|
+
* 是否为plain对象
|
|
1023
|
+
* @param val
|
|
1024
|
+
* @returns
|
|
1025
|
+
*/
|
|
1026
|
+
export declare const isPlainObject: (val: unknown) => val is object;
|
|
982
1027
|
|
|
983
|
-
|
|
1028
|
+
/**
|
|
1029
|
+
* 是否为promise
|
|
1030
|
+
* @param val
|
|
1031
|
+
* @returns
|
|
1032
|
+
*/
|
|
1033
|
+
export declare const isPromise: <T = any>(val: unknown) => val is Promise<T>;
|
|
984
1034
|
|
|
985
1035
|
/**
|
|
986
1036
|
* 判断是否为正则表达式
|
|
@@ -989,9 +1039,19 @@ export { isPromise }
|
|
|
989
1039
|
*/
|
|
990
1040
|
export declare function isRegExp(v: unknown): v is RegExp;
|
|
991
1041
|
|
|
992
|
-
|
|
1042
|
+
/**
|
|
1043
|
+
* 是否为Set
|
|
1044
|
+
* @param val
|
|
1045
|
+
* @returns
|
|
1046
|
+
*/
|
|
1047
|
+
export declare const isSet: (val: unknown) => val is Set<any>;
|
|
993
1048
|
|
|
994
|
-
|
|
1049
|
+
/**
|
|
1050
|
+
* 是否为字符串
|
|
1051
|
+
* @param val
|
|
1052
|
+
* @returns
|
|
1053
|
+
*/
|
|
1054
|
+
export declare const isString: (val: unknown) => val is string;
|
|
995
1055
|
|
|
996
1056
|
/**
|
|
997
1057
|
* 是否子页面
|
|
@@ -999,7 +1059,18 @@ export { isString }
|
|
|
999
1059
|
*/
|
|
1000
1060
|
export declare function isSubPage(domain: Domain): boolean;
|
|
1001
1061
|
|
|
1002
|
-
|
|
1062
|
+
/**
|
|
1063
|
+
* 是否为symbol
|
|
1064
|
+
* @param val
|
|
1065
|
+
* @returns
|
|
1066
|
+
*/
|
|
1067
|
+
export declare const isSymbol: (val: unknown) => val is symbol;
|
|
1068
|
+
|
|
1069
|
+
/**
|
|
1070
|
+
* 是否是window对象
|
|
1071
|
+
* @param obj
|
|
1072
|
+
*/
|
|
1073
|
+
export declare function isWindow(obj: any): boolean;
|
|
1003
1074
|
|
|
1004
1075
|
export declare const Item: DefineComponent<unknown, object, {}, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<unknown>, {}>;
|
|
1005
1076
|
|
|
@@ -1011,6 +1082,14 @@ export declare const Item: DefineComponent<unknown, object, {}, ComputedOptions,
|
|
|
1011
1082
|
*/
|
|
1012
1083
|
export declare function lastIndexOf(x: unknown, arr: unknown[]): number;
|
|
1013
1084
|
|
|
1085
|
+
/**
|
|
1086
|
+
* 创建数组
|
|
1087
|
+
* @param arr
|
|
1088
|
+
* @param results
|
|
1089
|
+
* @return
|
|
1090
|
+
*/
|
|
1091
|
+
export declare function makeArray(arr: any, results?: any[]): any[];
|
|
1092
|
+
|
|
1014
1093
|
export declare const Mapping: DefineComponent<unknown, object, {}, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<unknown>, {}>;
|
|
1015
1094
|
|
|
1016
1095
|
/**
|
|
@@ -1024,14 +1103,36 @@ export declare interface Matched {
|
|
|
1024
1103
|
level?: number;
|
|
1025
1104
|
}
|
|
1026
1105
|
|
|
1106
|
+
/**
|
|
1107
|
+
* 合并数组
|
|
1108
|
+
* @param first
|
|
1109
|
+
* @param second
|
|
1110
|
+
* @return
|
|
1111
|
+
*/
|
|
1112
|
+
export declare function merge(first: any[], second: any[]): any[];
|
|
1113
|
+
|
|
1027
1114
|
export declare const MoneyItem: DefineComponent<unknown, object, {}, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<unknown>, {}>;
|
|
1028
1115
|
|
|
1029
1116
|
export { multiply }
|
|
1030
1117
|
|
|
1031
1118
|
export { negate }
|
|
1032
1119
|
|
|
1120
|
+
/**
|
|
1121
|
+
* 下一个事件周期中执行函数
|
|
1122
|
+
* @param fn
|
|
1123
|
+
* @param args
|
|
1124
|
+
*/
|
|
1125
|
+
export declare function nextTick(fn: {
|
|
1126
|
+
(...args: any[]): void;
|
|
1127
|
+
}, ...args: any[]): void;
|
|
1128
|
+
|
|
1033
1129
|
export { numberFormat }
|
|
1034
1130
|
|
|
1131
|
+
/**
|
|
1132
|
+
* 对象类型
|
|
1133
|
+
*/
|
|
1134
|
+
export declare const objectToString: () => string;
|
|
1135
|
+
|
|
1035
1136
|
export declare const Overlay: DefineComponent<unknown, object, {}, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<unknown>, {}>;
|
|
1036
1137
|
|
|
1037
1138
|
/**
|
|
@@ -1224,9 +1325,19 @@ export declare const TimeSelectItem: DefineComponent<unknown, object, {}, Comput
|
|
|
1224
1325
|
|
|
1225
1326
|
export declare const Toast: DefineComponent<unknown, object, {}, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<unknown>, {}>;
|
|
1226
1327
|
|
|
1227
|
-
|
|
1328
|
+
/**
|
|
1329
|
+
* 转换为boolean值
|
|
1330
|
+
* @param val
|
|
1331
|
+
* @returns
|
|
1332
|
+
*/
|
|
1333
|
+
export declare function toBoolean(val: unknown): boolean;
|
|
1228
1334
|
|
|
1229
|
-
|
|
1335
|
+
/**
|
|
1336
|
+
* 转换为number值
|
|
1337
|
+
* @param val
|
|
1338
|
+
* @returns
|
|
1339
|
+
*/
|
|
1340
|
+
export declare function toNumber(val: unknown): number;
|
|
1230
1341
|
|
|
1231
1342
|
/**
|
|
1232
1343
|
* 转换为number rect
|
|
@@ -1248,7 +1359,7 @@ export declare function toPx(value: number | string, size?: number): number;
|
|
|
1248
1359
|
*/
|
|
1249
1360
|
export declare const toPxDesc: (value: string | number, size?: number) => string;
|
|
1250
1361
|
|
|
1251
|
-
export
|
|
1362
|
+
export declare const toTypeString: (value: unknown) => string;
|
|
1252
1363
|
|
|
1253
1364
|
/**
|
|
1254
1365
|
* to model value
|
|
@@ -1258,6 +1369,13 @@ export { toTypeString }
|
|
|
1258
1369
|
*/
|
|
1259
1370
|
export declare function toValue(props: UnwrapRef<Record<string, any>>, name?: string, format?: ValueFormat<any, any>): Ref;
|
|
1260
1371
|
|
|
1372
|
+
/**
|
|
1373
|
+
* 判断类型
|
|
1374
|
+
* @param obj
|
|
1375
|
+
* @returns any
|
|
1376
|
+
*/
|
|
1377
|
+
export declare function typeOf(obj: any): string;
|
|
1378
|
+
|
|
1261
1379
|
export declare class UniqueID {
|
|
1262
1380
|
/**
|
|
1263
1381
|
* seed id
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fox-js/foxui-pad",
|
|
3
|
-
"version": "4.0.1-
|
|
3
|
+
"version": "4.0.1-2",
|
|
4
4
|
"description": "FoxUI PAD端组件库",
|
|
5
5
|
"author": "jiangcheng",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"./style.css": "./dist/style.css",
|
|
14
14
|
"./dist/locale": {
|
|
15
15
|
"import": {
|
|
16
|
-
"node": "./dist/locale/index.
|
|
16
|
+
"node": "./dist/locale/index.esm.js",
|
|
17
17
|
"default": "./dist/locale/index.esm.js"
|
|
18
18
|
},
|
|
19
19
|
"require": {
|
|
20
|
-
"node": "./dist/locale/index.
|
|
21
|
-
"default": "./dist/locale/index.
|
|
20
|
+
"node": "./dist/locale/index.umd.js",
|
|
21
|
+
"default": "./dist/locale/index.umd.js"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
},
|
package/dist/locale/index.cjs.js
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";/*!
|
|
2
|
-
* @fox-js/foxui-desktop v4.0.0 Mon Dec 26 2022 15:34:51 GMT+0800 (中国标准时间)
|
|
3
|
-
*/const u={save:"\u4FDD\u5B58",noData:"\u6682\u65E0\u6570\u636E",confirmText:"\u786E\u8BA4",cancelText:"\u53D6\u6D88",clearText:"\u6E05\u9664",defaultText:"\u9ED8\u8BA4",placeholder:"\u8BF7\u8F93\u5165",select:"\u8BF7\u9009\u62E9",dateUnit:{day:"\u65E5",year:"\u5E74",month:"\u6708",hour:"\u65F6",minute:"\u5206",seconds:"\u79D2"},video:{errorTip:"\u89C6\u9891\u52A0\u8F7D\u5931\u8D25",clickRetry:"\u70B9\u51FB\u91CD\u8BD5"},fixednav:{activeText:"\u6536\u8D77\u5BFC\u822A",unActiveText:"\u5FEB\u901F\u5BFC\u822A"},pagination:{prevText:"\u4E0A\u4E00\u9875",nextText:"\u4E0B\u4E00\u9875"},calendarpane:{weekdays:JSON.stringify(["\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"]),endText:"\u7ED3\u675F",startText:"\u5F00\u59CB",title:"\u65E5\u5386\u9009\u62E9",monthTitle:"{year}\u5E74{month}\u6708",today:"\u4ECA\u5929"},shortpassword:{title:"\u8BF7\u8F93\u5165\u5BC6\u7801",desc:"\u60A8\u4F7F\u7528\u4E86\u865A\u62DF\u8D44\u4EA7\uFF0C\u8BF7\u8FDB\u884C\u9A8C\u8BC1",tips:"\u5FD8\u8BB0\u5BC6\u7801"},uploader:{ready:"\u51C6\u5907\u5B8C\u6210",readyUpload:"\u51C6\u5907\u4E0A\u4F20",waitingUpload:"\u7B49\u5F85\u4E0A\u4F20",uploading:"\u4E0A\u4F20\u4E2D",success:"\u4E0A\u4F20\u6210\u529F",error:"\u4E0A\u4F20\u5931\u8D25"},countdown:{day:"\u5929",hour:"\u65F6",minute:"\u5206",second:"\u79D2"},empty:{description:"\u6682\u65E0\u6570\u636E"},address:{selectRegion:"\u8BF7\u9009\u62E9\u6240\u5728\u5730\u533A",deliveryTo:"\u914D\u9001\u81F3",chooseAnotherAddress:"\u9009\u62E9\u5176\u4ED6\u5730\u5740"},signature:{reSign:"\u91CD\u7B7E",unSupportTpl:"\u5BF9\u4E0D\u8D77\uFF0C\u5F53\u524D\u6D4F\u89C8\u5668\u4E0D\u652F\u6301Canvas\uFF0C\u65E0\u6CD5\u4F7F\u7528\u672C\u63A7\u4EF6\uFF01"},ecard:{chooseText:"\u8BF7\u9009\u62E9\u7535\u5B50\u5361\u9762\u503C",otherValueText:"\u5176\u4ED6\u9762\u503C",placeholder:"\u8BF7\u8F93\u51651-5000\u6574\u6570"},timeselect:{title:"\u53D6\u4EF6\u65F6\u95F4"},sku:{buyText:"\u7ACB\u5373\u8D2D\u4E70",stepperTitle:"\u8D2D\u4E70\u6570\u91CF",addCartText:"\u52A0\u5165\u8D2D\u7269\u8F66"},skuheader:{idText:"\u5546\u54C1\u7F16\u53F7"},addresslist:{addAddress:"\u65B0\u5EFA\u5730\u5740"},comment:{complaintsText:"\u6211\u8981\u6295\u8BC9",additionalReview:"\u8D2D\u4E70{0}\u5929\u540E\u8FFD\u8BC4",additionalImages:"{0}\u5F20\u8FFD\u8BC4\u56FE\u7247"},infiniteloading:{loading:"\u52A0\u8F7D\u4E2D...",pullTxt:"\u677E\u5F00\u5237\u65B0",loadMoreTxt:"\u54CE\u5440\uFF0C\u8FD9\u91CC\u662F\u5E95\u90E8\u4E86\u5566"},datepicker:{year:"\u5E74",month:"\u6708",day:"\u65E5",hour:"\u65F6",min:"\u5206",seconds:"\u79D2"},audiooperate:{back:"\u5012\u9000",start:"\u5F00\u59CB",pause:"\u6682\u505C",forward:"\u5FEB\u8FDB",mute:"\u9759\u97F3"},picker:{title:"\u8BF7\u9009\u62E9"},pickeritem:{placeholder:"\u8BF7\u9009\u62E9"},dateitem:{placeholder:"\u8BF7\u9009\u62E9"},cascaderitem:{placeholder:"\u8BF7\u9009\u62E9"},calendaritem:{placeholder:"\u8BF7\u9009\u62E9"},numberkeyboard:{confirmText:"\u5B8C\u6210"}},e={save:"Save",noData:"No Data",confirmText:"Confirm",cancelText:"Cancel",clearText:"Clear",defaultText:"Default",placeholder:"Placeholder",select:"Select",dateUnit:{day:"Day",year:"Year",month:"Month",hour:"Hour",minute:"Minute",seconds:"Second"},video:{errorTip:"Error Tip",clickRetry:"Click Retry"},fixednav:{activeText:"Close Nav",unActiveText:"Open Nav"},pagination:{prevText:"Previous",nextText:"Next"},calendarpane:{weekdays:JSON.stringify(["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]),endText:"End",startText:"Start",title:"Calendar",monthTitle:"{year}/{month}",today:"Today"},shortpassword:{title:"Please input a password",desc:"Verify",tips:"Forget password"},uploader:{ready:"Ready",readyUpload:"Ready to upload",waitingUpload:"Waiting for upload",uploading:"Uploading",success:"Upload successful",error:"Upload failed"},countdown:{day:" Day ",hour:" Hour ",minute:" Minute ",second:" Second "},empty:{description:"No Data"},address:{selectRegion:"Select Region",deliveryTo:"Delivery To",chooseAnotherAddress:"Choose Another Address"},signature:{reSign:"Re Sign",unSupportTpl:"Sorry, the current browser doesn't support canvas, so we can't use this control!"},ecard:{chooseText:"Select",otherValueText:"Other Value",placeholder:"Placeholder"},timeselect:{title:"Pickup Time"},sku:{buyText:"Buy Now",stepperTitle:"Buy Number",addCartText:"Add to Cart"},skuheader:{idText:"Sku Number"},addresslist:{addAddress:"Add New Address"},comment:{complaintsText:"I have a complaint",additionalReview:"Review after {0} days of purchase",additionalImages:"There are {0} follow-up comments"},infiniteloading:{loading:"Loading...",pullTxt:"Loose to refresh",loadMoreTxt:"Oops, this is the bottom"},datepicker:{year:"Year",month:"Month",day:"Day",hour:"Hour",min:"Minute",seconds:"Second"},audiooperate:{back:"Back",start:"Start",pause:"Pause",forward:"Forward",mute:"Mute"},picker:{title:"Select"},pickeritem:{placeholder:"Select"},dateitem:{placeholder:"Select"},cascaderitem:{placeholder:"Select"},calendaritem:{placeholder:"Select"},numberkeyboard:{confirmText:"Done"}},t={save:"\u4FDD\u5B58",noData:"\u66AB\u7121\u6578\u64DA",confirmText:"\u78BA\u8A8D",cancelText:"\u53D6\u6D88",clearText:"\u6E05\u9664",defaultText:"\u9ED8\u8BA4",placeholder:"\u8ACB\u8F38\u5165",select:"\u8ACB\u9078\u64C7",dateUnit:{day:"\u65E5",year:"\u5E74",month:"\u6708",hour:"\u65F6",minute:"\u5206",seconds:"\u79D2"},video:{errorTip:"\u8996\u983B\u52A0\u8F09\u5931\u6557",clickRetry:"\u9EDE\u64CA\u91CD\u8A66"},fixednav:{activeText:"\u6536\u8D77\u5C0E\u822A",unActiveText:"\u5FEB\u901F\u5C0E\u822A"},pagination:{prevText:"\u4E0A\u4E00\u9801",nextText:"\u4E0B\u4E00\u9801"},calendarpane:{weekdays:JSON.stringify(["\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"]),endText:"\u7D50\u675F",startText:"\u958B\u59CB",title:"\u884C\u4E8B\u66C6\u9078\u64C7",monthTitle:"{year}\u5E74{month}\u6708",today:"\u4ECA\u5929"},shortpassword:{title:"\u8ACB\u8F38\u5165\u5BC6\u78BC",desc:"\u60A8\u4F7F\u7528\u4E86\u865B\u64EC\u8CC7\u7522,\u8ACB\u9032\u884C\u9A57\u8B49",tips:"\u5FD8\u8A18\u5BC6\u78BC"},uploader:{ready:"\u6E96\u5099\u5B8C\u6210",readyUpload:"\u6E96\u5099\u4E0A\u50B3",waitingUpload:"\u7B49\u5F85\u4E0A\u50B3",uploading:"\u4E0A\u50B3\u4E2D",success:"\u4E0A\u50B3\u6210\u529F",error:"\u4E0A\u50B3\u5931\u6557"},countdown:{day:"\u5929",hour:"\u6642",minute:"\u5206",second:"\u79D2"},empty:{description:"\u66AB\u7121\u6578\u64DA"},address:{selectRegion:"\u8ACB\u9078\u64C7\u6240\u5728\u5730\u5340",deliveryTo:"\u914D\u9001\u81F3",chooseAnotherAddress:"\u9078\u64C7\u5176\u4ED6\u5730\u5740"},signature:{reSign:"\u91CD\u7C3D",unSupportTpl:"\u5C0D\u4E0D\u8D77,\u7576\u524D\u700F\u89BD\u5668\u4E0D\u652F\u6301Canvas,\u7121\u6CD5\u4F7F\u7528\u672C\u63A7\u5236\u9805\uFF01"},ecard:{chooseText:"\u8ACB\u9078\u64C7\u96FB\u5B50\u5361\u9762\u503C",otherValueText:"\u5176\u4ED6\u9762\u503C",placeholder:"\u8ACB\u8F38\u51651-5000\u6574\u6578"},timeselect:{title:"\u53D6\u4EF6\u6642\u9593"},sku:{buyText:"\u7ACB\u5373\u8CFC\u8CB7",stepperTitle:"\u8CFC\u8CB7\u6578\u91CF",addCartText:"\u52A0\u5165\u8CFC\u7269\u8ECA"},skuheader:{idText:"\u5546\u54C1\u7DE8\u865F"},addresslist:{addAddress:"\u65B0\u5EFA\u5730\u5740"},comment:{complaintsText:"\u6211\u8981\u6295\u8A34",additionalReview:"\u8CFC\u8CB7{0}\u5929\u5F8C\u8FFD\u8A55",additionalImages:"{0}\u5F35\u8FFD\u8A55\u5716\u7247"},infiniteloading:{loading:"\u52A0\u8F09\u4E2D...",pullTxt:"\u9B06\u958B\u5237\u65B0",loadMoreTxt:"\u54CE\u5440\uFF0C\u9019\u88E1\u662F\u5E95\u90E8\u4E86\u5566"},datepicker:{year:"\u5E74",month:"\u6708",day:"\u65E5",hour:"\u6642",min:"\u5206",seconds:"\u79D2"},audiooperate:{back:"\u5012\u9000",start:"\u958B\u59CB",pause:"\u66AB\u505C",forward:"\u5FEB\u9032",mute:"\u975C\u97F3"},picker:{title:"\u8ACB\u9078\u64C7"},pickeritem:{placeholder:"\u8ACB\u9078\u64C7"},dateitem:{placeholder:"\u8ACB\u9078\u64C7"},cascaderitem:{placeholder:"\u8ACB\u9078\u64C7"},calendaritem:{placeholder:"\u8ACB\u9078\u64C7"},numberkeyboard:{confirmText:"\u5B8C\u6210"}},a={zh_CN:{...u},en_US:{...e},zh_TW:{...t}};module.exports=a;
|