@fmdeui/fmui 1.0.4 → 1.0.6
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/es/utils/arrayOperation.d.ts +23 -0
- package/es/utils/auto-update.d.ts +11 -0
- package/es/utils/base64Conver.d.ts +30 -0
- package/es/utils/data-signature.d.ts +17 -0
- package/es/utils/download.d.ts +46 -0
- package/es/utils/exportExcel.d.ts +12 -0
- package/es/utils/flowLoading.d.ts +19 -0
- package/es/utils/fontts/font-awesome.d.ts +1 -0
- package/es/utils/fontts/font_2298093_rnp72ifj3ba.d.ts +1 -0
- package/es/utils/formRule.d.ts +36 -0
- package/es/utils/formValidate.d.ts +21 -0
- package/es/utils/formatTime.d.ts +37 -0
- package/es/utils/getStyleSheets.d.ts +12 -0
- package/es/utils/gpsConvertor.d.ts +30 -0
- package/es/utils/index.d.ts +23 -0
- package/es/utils/json-utils.d.ts +6 -0
- package/es/utils/loading.d.ts +4 -0
- package/es/utils/md5Signature.d.ts +1 -0
- package/es/utils/mitt.d.ts +4 -0
- package/es/utils/request.d.ts +53 -0
- package/es/utils/saulVModel.d.ts +4 -0
- package/es/utils/setIconfont.d.ts +12 -0
- package/es/utils/signalR.d.ts +3 -0
- package/es/utils/storage.d.ts +27 -0
- package/es/utils/theme.d.ts +13 -0
- package/es/utils/toolsValidate.d.ts +148 -0
- package/es/utils/watermark.d.ts +10 -0
- package/index.js +1 -1
- package/index.min.js +1 -1
- package/index.min.mjs +1 -1
- package/index.mjs +1 -1
- package/lib/utils/arrayOperation.d.ts +23 -0
- package/lib/utils/auto-update.d.ts +11 -0
- package/lib/utils/base64Conver.d.ts +30 -0
- package/lib/utils/data-signature.d.ts +17 -0
- package/lib/utils/download.d.ts +46 -0
- package/lib/utils/exportExcel.d.ts +12 -0
- package/lib/utils/flowLoading.d.ts +19 -0
- package/lib/utils/fontts/font-awesome.d.ts +1 -0
- package/lib/utils/fontts/font_2298093_rnp72ifj3ba.d.ts +1 -0
- package/lib/utils/formRule.d.ts +36 -0
- package/lib/utils/formValidate.d.ts +21 -0
- package/lib/utils/formatTime.d.ts +37 -0
- package/lib/utils/getStyleSheets.d.ts +12 -0
- package/lib/utils/gpsConvertor.d.ts +30 -0
- package/lib/utils/index.d.ts +23 -0
- package/lib/utils/json-utils.d.ts +6 -0
- package/lib/utils/loading.d.ts +4 -0
- package/lib/utils/md5Signature.d.ts +1 -0
- package/lib/utils/mitt.d.ts +4 -0
- package/lib/utils/request.d.ts +53 -0
- package/lib/utils/saulVModel.d.ts +4 -0
- package/lib/utils/setIconfont.d.ts +12 -0
- package/lib/utils/signalR.d.ts +3 -0
- package/lib/utils/storage.d.ts +27 -0
- package/lib/utils/theme.d.ts +13 -0
- package/lib/utils/toolsValidate.d.ts +148 -0
- package/lib/utils/watermark.d.ts +10 -0
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/package.json +1 -1
- /package/lib/{make-installer.css → component.css} +0 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
2
|
+
export interface CustomAxiosRequestConfig extends AxiosRequestConfig {
|
|
3
|
+
loading?: boolean;
|
|
4
|
+
}
|
|
5
|
+
export declare const service: AxiosInstance;
|
|
6
|
+
export declare const accessTokenKey = "access-token";
|
|
7
|
+
export declare const refreshAccessTokenKey = "x-access-token";
|
|
8
|
+
export declare const getToken: () => any;
|
|
9
|
+
export declare const getHeader: () => {
|
|
10
|
+
authorization: string;
|
|
11
|
+
};
|
|
12
|
+
export declare const clearAccessTokens: () => void;
|
|
13
|
+
export declare const clearTokens: () => void;
|
|
14
|
+
export declare const axiosInstance: AxiosInstance;
|
|
15
|
+
export declare const cancelRequest: (url: string | string[]) => void;
|
|
16
|
+
export declare const cancelAllRequest: () => void;
|
|
17
|
+
/**
|
|
18
|
+
* 参数处理
|
|
19
|
+
* @param {*} params 参数
|
|
20
|
+
*/
|
|
21
|
+
export declare function tansParams(params: any): string;
|
|
22
|
+
/**
|
|
23
|
+
* 解密 JWT token 的信息
|
|
24
|
+
* @param token jwt token 字符串
|
|
25
|
+
* @returns <any>object
|
|
26
|
+
*/
|
|
27
|
+
export declare function decryptJWT(token: string): any;
|
|
28
|
+
/**
|
|
29
|
+
* 将 JWT 时间戳转换成 Date
|
|
30
|
+
* @description 主要针对 `exp`,`iat`,`nbf`
|
|
31
|
+
* @param timestamp 时间戳
|
|
32
|
+
* @returns Date 对象
|
|
33
|
+
*/
|
|
34
|
+
export declare function getJWTDate(timestamp: number): Date;
|
|
35
|
+
/**
|
|
36
|
+
* Ajax请求,如果成功返回result字段,如果不成功提示错误信息
|
|
37
|
+
* @description Ajax请求
|
|
38
|
+
* @config AxiosRequestConfig 请求参数
|
|
39
|
+
* @returns 返回对象
|
|
40
|
+
*/
|
|
41
|
+
export declare function request2(config: AxiosRequestConfig<any>): any;
|
|
42
|
+
/**
|
|
43
|
+
* 使用新的令牌登录
|
|
44
|
+
* @param accessInfo
|
|
45
|
+
*/
|
|
46
|
+
export declare function reLoadLoginAccessToken(accessInfo: any): void;
|
|
47
|
+
/**
|
|
48
|
+
* 实现异步延迟
|
|
49
|
+
* @param delay 延迟时间(毫秒)
|
|
50
|
+
* @returns
|
|
51
|
+
*/
|
|
52
|
+
export declare function sleep(delay: number): Promise<unknown>;
|
|
53
|
+
export default service;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare function setCssCdn(): false | undefined;
|
|
2
|
+
export declare function setJsCdn(): false | undefined;
|
|
3
|
+
/**
|
|
4
|
+
* 批量设置字体图标、动态js
|
|
5
|
+
* @method cssCdn 动态批量设置字体图标
|
|
6
|
+
* @method jsCdn 动态批量设置第三方js
|
|
7
|
+
*/
|
|
8
|
+
declare const setIntroduction: {
|
|
9
|
+
cssCdn: () => void;
|
|
10
|
+
jsCdn: () => void;
|
|
11
|
+
};
|
|
12
|
+
export default setIntroduction;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* window.localStorage 浏览器永久缓存
|
|
3
|
+
* @method set 设置永久缓存
|
|
4
|
+
* @method get 获取永久缓存
|
|
5
|
+
* @method remove 移除永久缓存
|
|
6
|
+
* @method clear 移除全部永久缓存
|
|
7
|
+
*/
|
|
8
|
+
export declare const Local: {
|
|
9
|
+
setKey(key: string): string;
|
|
10
|
+
set<T>(key: string, val: T): void;
|
|
11
|
+
get(key: string): any;
|
|
12
|
+
remove(key: string): void;
|
|
13
|
+
clear(): void;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* window.sessionStorage 浏览器临时缓存
|
|
17
|
+
* @method set 设置临时缓存
|
|
18
|
+
* @method get 获取临时缓存
|
|
19
|
+
* @method remove 移除临时缓存
|
|
20
|
+
* @method clear 移除全部临时缓存
|
|
21
|
+
*/
|
|
22
|
+
export declare const Session: {
|
|
23
|
+
set<T>(key: string, val: T): any;
|
|
24
|
+
get(key: string): any;
|
|
25
|
+
remove(key: string): any;
|
|
26
|
+
clear(): void;
|
|
27
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 颜色转换函数
|
|
3
|
+
* @method hexToRgb hex 颜色转 rgb 颜色
|
|
4
|
+
* @method rgbToHex rgb 颜色转 Hex 颜色
|
|
5
|
+
* @method getDarkColor 加深颜色值
|
|
6
|
+
* @method getLightColor 变浅颜色值
|
|
7
|
+
*/
|
|
8
|
+
export declare function useChangeColor(): {
|
|
9
|
+
hexToRgb: (str: string) => any;
|
|
10
|
+
rgbToHex: (r: any, g: any, b: any) => string;
|
|
11
|
+
getDarkColor: (color: string, level: number) => string;
|
|
12
|
+
getLightColor: (color: string, level: number) => string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 验证百分比(不可以小数)
|
|
3
|
+
* @param val 当前值字符串
|
|
4
|
+
* @returns 返回处理后的字符串
|
|
5
|
+
*/
|
|
6
|
+
export declare function verifyNumberPercentage(val: string): string;
|
|
7
|
+
/**
|
|
8
|
+
* 验证百分比(可以小数)
|
|
9
|
+
* @param val 当前值字符串
|
|
10
|
+
* @returns 返回处理后的字符串
|
|
11
|
+
*/
|
|
12
|
+
export declare function verifyNumberPercentageFloat(val: string): string;
|
|
13
|
+
/**
|
|
14
|
+
* 小数或整数(不可以负数)
|
|
15
|
+
* @param val 当前值字符串
|
|
16
|
+
* @returns 返回处理后的字符串
|
|
17
|
+
*/
|
|
18
|
+
export declare function verifyNumberIntegerAndFloat(val: string): string;
|
|
19
|
+
/**
|
|
20
|
+
* 正整数验证
|
|
21
|
+
* @param val 当前值字符串
|
|
22
|
+
* @returns 返回处理后的字符串
|
|
23
|
+
*/
|
|
24
|
+
export declare function verifiyNumberInteger(val: string): string;
|
|
25
|
+
/**
|
|
26
|
+
* 去掉中文及空格
|
|
27
|
+
* @param val 当前值字符串
|
|
28
|
+
* @returns 返回处理后的字符串
|
|
29
|
+
*/
|
|
30
|
+
export declare function verifyCnAndSpace(val: string): string;
|
|
31
|
+
/**
|
|
32
|
+
* 去掉英文及空格
|
|
33
|
+
* @param val 当前值字符串
|
|
34
|
+
* @returns 返回处理后的字符串
|
|
35
|
+
*/
|
|
36
|
+
export declare function verifyEnAndSpace(val: string): string;
|
|
37
|
+
/**
|
|
38
|
+
* 禁止输入空格
|
|
39
|
+
* @param val 当前值字符串
|
|
40
|
+
* @returns 返回处理后的字符串
|
|
41
|
+
*/
|
|
42
|
+
export declare function verifyAndSpace(val: string): string;
|
|
43
|
+
/**
|
|
44
|
+
* 金额用 `,` 区分开
|
|
45
|
+
* @param val 当前值字符串
|
|
46
|
+
* @returns 返回处理后的字符串
|
|
47
|
+
*/
|
|
48
|
+
export declare function verifyNumberComma(val: string): any;
|
|
49
|
+
/**
|
|
50
|
+
* 匹配文字变色(搜索时)
|
|
51
|
+
* @param val 当前值字符串
|
|
52
|
+
* @param text 要处理的字符串值
|
|
53
|
+
* @param color 搜索到时字体高亮颜色
|
|
54
|
+
* @returns 返回处理后的字符串
|
|
55
|
+
*/
|
|
56
|
+
export declare function verifyTextColor(val: string, text?: string, color?: string): string;
|
|
57
|
+
/**
|
|
58
|
+
* 数字转中文大写
|
|
59
|
+
* @param val 当前值字符串
|
|
60
|
+
* @param unit 默认:仟佰拾亿仟佰拾万仟佰拾元角分
|
|
61
|
+
* @returns 返回处理后的字符串
|
|
62
|
+
*/
|
|
63
|
+
export declare function verifyNumberCnUppercase(val: any, unit?: string, v?: string): string;
|
|
64
|
+
/**
|
|
65
|
+
* 手机号码
|
|
66
|
+
* @param val 当前值字符串
|
|
67
|
+
* @returns 返回 true: 手机号码正确
|
|
68
|
+
*/
|
|
69
|
+
export declare function verifyPhone(val: string): boolean;
|
|
70
|
+
/**
|
|
71
|
+
* 国内电话号码
|
|
72
|
+
* @param val 当前值字符串
|
|
73
|
+
* @returns 返回 true: 国内电话号码正确
|
|
74
|
+
*/
|
|
75
|
+
export declare function verifyTelPhone(val: string): boolean;
|
|
76
|
+
/**
|
|
77
|
+
* 登录账号 (字母开头,允许5-16字节,允许字母数字下划线)
|
|
78
|
+
* @param val 当前值字符串
|
|
79
|
+
* @returns 返回 true: 登录账号正确
|
|
80
|
+
*/
|
|
81
|
+
export declare function verifyAccount(val: string): boolean;
|
|
82
|
+
/**
|
|
83
|
+
* 密码 (以字母开头,长度在6~16之间,只能包含字母、数字和下划线)
|
|
84
|
+
* @param val 当前值字符串
|
|
85
|
+
* @returns 返回 true: 密码正确
|
|
86
|
+
*/
|
|
87
|
+
export declare function verifyPassword(val: string): boolean;
|
|
88
|
+
/**
|
|
89
|
+
* 强密码 (字母+数字+特殊字符,长度在6-16之间)
|
|
90
|
+
* @param val 当前值字符串
|
|
91
|
+
* @returns 返回 true: 强密码正确
|
|
92
|
+
*/
|
|
93
|
+
export declare function verifyPasswordPowerful(val: string): boolean;
|
|
94
|
+
/**
|
|
95
|
+
* 密码强度
|
|
96
|
+
* @param val 当前值字符串
|
|
97
|
+
* @description 弱:纯数字,纯字母,纯特殊字符
|
|
98
|
+
* @description 中:字母+数字,字母+特殊字符,数字+特殊字符
|
|
99
|
+
* @description 强:字母+数字+特殊字符
|
|
100
|
+
* @returns 返回处理后的字符串:弱、中、强
|
|
101
|
+
*/
|
|
102
|
+
export declare function verifyPasswordStrength(val: string): string;
|
|
103
|
+
/**
|
|
104
|
+
* IP地址
|
|
105
|
+
* @param val 当前值字符串
|
|
106
|
+
* @returns 返回 true: IP地址正确
|
|
107
|
+
*/
|
|
108
|
+
export declare function verifyIPAddress(val: string): boolean;
|
|
109
|
+
/**
|
|
110
|
+
* 邮箱
|
|
111
|
+
* @param val 当前值字符串
|
|
112
|
+
* @returns 返回 true: 邮箱正确
|
|
113
|
+
*/
|
|
114
|
+
export declare function verifyEmail(val: string): boolean;
|
|
115
|
+
/**
|
|
116
|
+
* 身份证
|
|
117
|
+
* @param val 当前值字符串
|
|
118
|
+
* @returns 返回 true: 身份证正确
|
|
119
|
+
*/
|
|
120
|
+
export declare function verifyIdCard(val: string): boolean;
|
|
121
|
+
/**
|
|
122
|
+
* 姓名
|
|
123
|
+
* @param val 当前值字符串
|
|
124
|
+
* @returns 返回 true: 姓名正确
|
|
125
|
+
*/
|
|
126
|
+
export declare function verifyFullName(val: string): boolean;
|
|
127
|
+
/**
|
|
128
|
+
* 邮政编码
|
|
129
|
+
* @param val 当前值字符串
|
|
130
|
+
* @returns 返回 true: 邮政编码正确
|
|
131
|
+
*/
|
|
132
|
+
export declare function verifyPostalCode(val: string): boolean;
|
|
133
|
+
/**
|
|
134
|
+
* url 处理
|
|
135
|
+
* @param val 当前值字符串
|
|
136
|
+
* @returns 返回 true: url 正确
|
|
137
|
+
*/
|
|
138
|
+
export declare function verifyUrl(val: string): boolean;
|
|
139
|
+
/**
|
|
140
|
+
* 车牌号
|
|
141
|
+
* @param val 当前值字符串
|
|
142
|
+
* @returns 返回 true:车牌号正确
|
|
143
|
+
*/
|
|
144
|
+
export declare function verifyCarNum(val: string): boolean;
|
|
145
|
+
/**
|
|
146
|
+
* 解析身份证
|
|
147
|
+
*/
|
|
148
|
+
export declare function judgementIdCard(idCard: string): any;
|
package/locale/en.js
CHANGED
package/locale/en.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.6 */(function(e,t){typeof exports=="object"&&typeof module!="undefined"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis!="undefined"?globalThis:e||self,e.fmdeuiPlusLocaleEn=t())})(this,(function(){"use strict";var e={name:"en",plus:{datepicker:{date:"Please select date",dates:"Please select dates",week:"Please select week",month:"Please select month",months:"Please select months",year:"Please select year",years:"Please select years",startDatePlaceholder:"Please select start date",endDatePlaceholder:"Please select end date",datetime:"Please select datetime",startMonthPlaceholder:"Please select start month",endMonthPlaceholder:"Please select end month",startTimePlaceholder:"Please select start time",endTimePlaceholder:"Please select end time",shortcutsDate:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDaterange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"},shortcutsMonthrange:{thisMonth:"This month",thisYear:"This year",pastSixMonths:"Past six months"},shortcutsDatetime:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDatetimerange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"}},form:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},input:{placeholder:"Please enter ",appendTitle:"Yuan",validatePhone:"Please enter a valid phone number",validateIdCard:"Please enter a valid ID card number",validateInteger:"Please enter a valid integer",format:"Please enter a valid ",amount:"amount",numbers:"numbers",digitUppercase:"Please enter a valid amount format",validateError:"Please enter a valid format",escaped:{0:"Cent",1:"Penny",2:"Zero",3:"One",4:"Two",5:"Three",6:"Four",7:"Five",8:"Six",9:"Seven",10:"Eight",11:"Nine",12:"Yuan",13:"Ten thousand",14:"Ten million",15:"Ten billion",16:"Ten",17:"Hundred",18:"Thousand",19:"Short",20:"Whole"}},moduleForm:{save:"Save",back:"Back"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract",pleaseEnter:"Please enter ",pleaseSelect:"Please select ",popoverAttrs:{showTxt:"More",title:"All conditions",allTxt:"SelectAll",reverseTxt:"Reverse",clearTxt:"ClearAll"}},select:{selectAllTxt:"Select all"},selectIcon:{placeholder:"Please select icon",dialogTitle:"Please select icon",searchPlaceholder:"Search icon",emptyDescription:"No icon found"},copy:{copySuccess:"Copy success",copyFail:"Copy fail",invalidCopyContent:"Invalid copy content"},selectTable:{searchBtnTxt:"Search",radioTxt:"Radio",loadingTxt:"Loading...",copySuccess:"Copy success",copyFail:"Copy fail"},stepWizard:{lastBtnTitle:"Complete"},table:{columnBind:{btnTxt:"Column setting",title:"Column setting"},fistColumn:{label:"Number",radio:"Radio"},operator:{label:"Operation",more:"More",sum:"Sum",total:"Total",allSum:"All sum"},singleEdit:{tipText:"Click to edit"},pleaseEnter:"Please enter ",pleaseSelect:"Please select ",loadingTxt:"Loading...",dragTxt:"Drag",saveBtnTxt:"Save",density:"Density",default:"Default",loose:"Loose",compact:"Compact"},list:{idleTimeoutMessage:"Long time no operation, system logged out.",sysMessage:"System Message"}}};return e}));
|
package/locale/en.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.6 */var e={name:"en",plus:{datepicker:{date:"Please select date",dates:"Please select dates",week:"Please select week",month:"Please select month",months:"Please select months",year:"Please select year",years:"Please select years",startDatePlaceholder:"Please select start date",endDatePlaceholder:"Please select end date",datetime:"Please select datetime",startMonthPlaceholder:"Please select start month",endMonthPlaceholder:"Please select end month",startTimePlaceholder:"Please select start time",endTimePlaceholder:"Please select end time",shortcutsDate:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDaterange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"},shortcutsMonthrange:{thisMonth:"This month",thisYear:"This year",pastSixMonths:"Past six months"},shortcutsDatetime:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDatetimerange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"}},form:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},input:{placeholder:"Please enter ",appendTitle:"Yuan",validatePhone:"Please enter a valid phone number",validateIdCard:"Please enter a valid ID card number",validateInteger:"Please enter a valid integer",format:"Please enter a valid ",amount:"amount",numbers:"numbers",digitUppercase:"Please enter a valid amount format",validateError:"Please enter a valid format",escaped:{0:"Cent",1:"Penny",2:"Zero",3:"One",4:"Two",5:"Three",6:"Four",7:"Five",8:"Six",9:"Seven",10:"Eight",11:"Nine",12:"Yuan",13:"Ten thousand",14:"Ten million",15:"Ten billion",16:"Ten",17:"Hundred",18:"Thousand",19:"Short",20:"Whole"}},moduleForm:{save:"Save",back:"Back"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract",pleaseEnter:"Please enter ",pleaseSelect:"Please select ",popoverAttrs:{showTxt:"More",title:"All conditions",allTxt:"SelectAll",reverseTxt:"Reverse",clearTxt:"ClearAll"}},select:{selectAllTxt:"Select all"},selectIcon:{placeholder:"Please select icon",dialogTitle:"Please select icon",searchPlaceholder:"Search icon",emptyDescription:"No icon found"},copy:{copySuccess:"Copy success",copyFail:"Copy fail",invalidCopyContent:"Invalid copy content"},selectTable:{searchBtnTxt:"Search",radioTxt:"Radio",loadingTxt:"Loading...",copySuccess:"Copy success",copyFail:"Copy fail"},stepWizard:{lastBtnTitle:"Complete"},table:{columnBind:{btnTxt:"Column setting",title:"Column setting"},fistColumn:{label:"Number",radio:"Radio"},operator:{label:"Operation",more:"More",sum:"Sum",total:"Total",allSum:"All sum"},singleEdit:{tipText:"Click to edit"},pleaseEnter:"Please enter ",pleaseSelect:"Please select ",loadingTxt:"Loading...",dragTxt:"Drag",saveBtnTxt:"Save",density:"Density",default:"Default",loose:"Loose",compact:"Compact"},list:{idleTimeoutMessage:"Long time no operation, system logged out.",sysMessage:"System Message"}}};export{e as default};
|
package/locale/en.mjs
CHANGED
package/locale/zh-cn.js
CHANGED
package/locale/zh-cn.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.6 */(function(u,e){typeof exports=="object"&&typeof module!="undefined"?module.exports=e():typeof define=="function"&&define.amd?define(e):(u=typeof globalThis!="undefined"?globalThis:u||self,u.fmdeuiPlusLocaleZhCn=e())})(this,(function(){"use strict";var u={name:"zh-cn",plus:{datepicker:{date:"\u8BF7\u9009\u62E9\u65E5\u671F",dates:"\u8BF7\u9009\u62E9\u65E5\u671F",week:"\u8BF7\u9009\u62E9\u5468",month:"\u8BF7\u9009\u62E9\u6708\u4EFD",months:"\u8BF7\u9009\u62E9\u6708\u4EFD",year:"\u8BF7\u9009\u62E9\u5E74\u4EFD",years:"\u8BF7\u9009\u62E9\u5E74\u4EFD",startDatePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",endDatePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",datetime:"\u8BF7\u9009\u62E9\u65E5\u671F\u65F6\u95F4",startMonthPlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u6708\u4EFD",endMonthPlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u6708\u4EFD",startTimePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",endTimePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65F6\u95F4",shortcutsDate:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDaterange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"},shortcutsMonthrange:{thisMonth:"\u672C\u6708",thisYear:"\u4ECA\u5E74\u81F3\u4ECA",pastSixMonths:"\u6700\u8FD1\u516D\u4E2A\u6708"},shortcutsDatetime:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDatetimerange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"}},form:{pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9"},input:{placeholder:"\u8BF7\u8F93\u5165",appendTitle:"\u5143",validatePhone:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7\u7801",validateIdCard:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u53F7\u7801",validateInteger:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u6574\u6570",format:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684",amount:"\u91D1\u989D",numbers:"\u6570\u5B57",digitUppercase:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u91D1\u989D\u683C\u5F0F",validateError:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u683C\u5F0F",escaped:{0:"\u89D2",1:"\u5206",2:"\u96F6",3:"\u58F9",4:"\u8D30",5:"\u53C1",6:"\u8086",7:"\u4F0D",8:"\u9646",9:"\u67D2",10:"\u634C",11:"\u7396",12:"\u5143",13:"\u4E07",14:"\u4EBF",15:"\u5146",16:"\u62FE",17:"\u4F70",18:"\u4EDF",19:"\u6B20",20:"\u6574"}},moduleForm:{save:"\u4FDD\u5B58",back:"\u8FD4\u56DE"},search:{searchText:"\u67E5\u8BE2",resetText:"\u91CD\u7F6E",expand:"\u5C55\u5F00",retract:"\u6536\u8D77",pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",popoverAttrs:{showTxt:"\u66F4\u591A",title:"\u6240\u6709\u6761\u4EF6",allTxt:"\u5168\u9009",reverseTxt:"\u53CD\u9009",clearTxt:"\u6E05\u7A7A"}},select:{selectAllTxt:"\u5168\u9009"},selectIcon:{placeholder:"\u8BF7\u9009\u62E9\u56FE\u6807",dialogTitle:"\u8BF7\u9009\u62E9\u56FE\u6807",searchPlaceholder:"\u641C\u7D22\u56FE\u6807",emptyDescription:"\u672A\u641C\u7D22\u5230\u60A8\u8981\u627E\u7684\u56FE\u6807"},copy:{copySuccess:"\u590D\u5236\u6210\u529F",copyFail:"\u590D\u5236\u5931\u8D25",invalidCopyContent:"\u65E0\u6548\u7684\u590D\u5236\u5185\u5BB9"},selectTable:{searchBtnTxt:"\u5173\u95ED\u4E0B\u62C9\u6846",radioTxt:"\u5355\u9009",loadingTxt:"\u52A0\u8F7D\u4E2D..."},stepWizard:{lastBtnTitle:"\u5B8C\u6210"},table:{columnBind:{btnTxt:"\u5217\u8BBE\u7F6E",title:"\u5217\u8BBE\u7F6E"},fistColumn:{label:"\u5E8F\u53F7",radio:"\u5355\u9009"},operator:{label:"\u64CD\u4F5C",more:"\u66F4\u591A",sum:"\u5F53\u9875\u5408\u8BA1",total:"\u5408\u8BA1",allSum:"\u5168\u90E8\u5408\u8BA1"},singleEdit:{tipText:"\u5355\u51FB\u53EF\u7F16\u8F91"},pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",loadingTxt:"\u52A0\u8F7D\u4E2D...",saveBtnTxt:"\u4FDD\u5B58",dragTxt:"\u62D6\u52A8",density:"\u5BC6\u5EA6",default:"\u9ED8\u8BA4",loose:"\u5BBD\u677E",compact:"\u7D27\u51D1"},list:{idleTimeoutMessage:"\u957F\u65F6\u95F4\u672A\u64CD\u4F5C\uFF0C\u5DF2\u9000\u51FA\u7CFB\u7EDF\u3002",sysMessage:"\u7CFB\u7EDF\u6D88\u606F"}}};return u}));
|
package/locale/zh-cn.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.6 */var u={name:"zh-cn",plus:{datepicker:{date:"\u8BF7\u9009\u62E9\u65E5\u671F",dates:"\u8BF7\u9009\u62E9\u65E5\u671F",week:"\u8BF7\u9009\u62E9\u5468",month:"\u8BF7\u9009\u62E9\u6708\u4EFD",months:"\u8BF7\u9009\u62E9\u6708\u4EFD",year:"\u8BF7\u9009\u62E9\u5E74\u4EFD",years:"\u8BF7\u9009\u62E9\u5E74\u4EFD",startDatePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",endDatePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",datetime:"\u8BF7\u9009\u62E9\u65E5\u671F\u65F6\u95F4",startMonthPlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u6708\u4EFD",endMonthPlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u6708\u4EFD",startTimePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",endTimePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65F6\u95F4",shortcutsDate:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDaterange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"},shortcutsMonthrange:{thisMonth:"\u672C\u6708",thisYear:"\u4ECA\u5E74\u81F3\u4ECA",pastSixMonths:"\u6700\u8FD1\u516D\u4E2A\u6708"},shortcutsDatetime:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDatetimerange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"}},form:{pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9"},input:{placeholder:"\u8BF7\u8F93\u5165",appendTitle:"\u5143",validatePhone:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7\u7801",validateIdCard:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u53F7\u7801",validateInteger:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u6574\u6570",format:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684",amount:"\u91D1\u989D",numbers:"\u6570\u5B57",digitUppercase:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u91D1\u989D\u683C\u5F0F",validateError:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u683C\u5F0F",escaped:{0:"\u89D2",1:"\u5206",2:"\u96F6",3:"\u58F9",4:"\u8D30",5:"\u53C1",6:"\u8086",7:"\u4F0D",8:"\u9646",9:"\u67D2",10:"\u634C",11:"\u7396",12:"\u5143",13:"\u4E07",14:"\u4EBF",15:"\u5146",16:"\u62FE",17:"\u4F70",18:"\u4EDF",19:"\u6B20",20:"\u6574"}},moduleForm:{save:"\u4FDD\u5B58",back:"\u8FD4\u56DE"},search:{searchText:"\u67E5\u8BE2",resetText:"\u91CD\u7F6E",expand:"\u5C55\u5F00",retract:"\u6536\u8D77",pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",popoverAttrs:{showTxt:"\u66F4\u591A",title:"\u6240\u6709\u6761\u4EF6",allTxt:"\u5168\u9009",reverseTxt:"\u53CD\u9009",clearTxt:"\u6E05\u7A7A"}},select:{selectAllTxt:"\u5168\u9009"},selectIcon:{placeholder:"\u8BF7\u9009\u62E9\u56FE\u6807",dialogTitle:"\u8BF7\u9009\u62E9\u56FE\u6807",searchPlaceholder:"\u641C\u7D22\u56FE\u6807",emptyDescription:"\u672A\u641C\u7D22\u5230\u60A8\u8981\u627E\u7684\u56FE\u6807"},copy:{copySuccess:"\u590D\u5236\u6210\u529F",copyFail:"\u590D\u5236\u5931\u8D25",invalidCopyContent:"\u65E0\u6548\u7684\u590D\u5236\u5185\u5BB9"},selectTable:{searchBtnTxt:"\u5173\u95ED\u4E0B\u62C9\u6846",radioTxt:"\u5355\u9009",loadingTxt:"\u52A0\u8F7D\u4E2D..."},stepWizard:{lastBtnTitle:"\u5B8C\u6210"},table:{columnBind:{btnTxt:"\u5217\u8BBE\u7F6E",title:"\u5217\u8BBE\u7F6E"},fistColumn:{label:"\u5E8F\u53F7",radio:"\u5355\u9009"},operator:{label:"\u64CD\u4F5C",more:"\u66F4\u591A",sum:"\u5F53\u9875\u5408\u8BA1",total:"\u5408\u8BA1",allSum:"\u5168\u90E8\u5408\u8BA1"},singleEdit:{tipText:"\u5355\u51FB\u53EF\u7F16\u8F91"},pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",loadingTxt:"\u52A0\u8F7D\u4E2D...",saveBtnTxt:"\u4FDD\u5B58",dragTxt:"\u62D6\u52A8",density:"\u5BC6\u5EA6",default:"\u9ED8\u8BA4",loose:"\u5BBD\u677E",compact:"\u7D27\u51D1"},list:{idleTimeoutMessage:"\u957F\u65F6\u95F4\u672A\u64CD\u4F5C\uFF0C\u5DF2\u9000\u51FA\u7CFB\u7EDF\u3002",sysMessage:"\u7CFB\u7EDF\u6D88\u606F"}}};export{u as default};
|
package/locale/zh-cn.mjs
CHANGED
package/package.json
CHANGED
|
File without changes
|