@para-ui/core 4.0.31 → 4.0.33
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/AutoButton/index.js +2 -2
- package/Card/index.js +2 -2
- package/CollapseLayout/index.js +1 -1
- package/ComboSelect/index.js +3 -0
- package/DynamicMultiBox/index.js +1 -1
- package/Form/index.js +4 -1
- package/FormItem/index.js +4 -1
- package/InputCode/index.d.ts +82 -0
- package/InputCode/index.js +392 -0
- package/InputCode/inputCodeCard/index.d.ts +10 -0
- package/InputCode/inputCodeInput/index.d.ts +10 -0
- package/InputCode/lang/en_US.d.ts +7 -0
- package/InputCode/lang/index.d.ts +15 -0
- package/InputCode/lang/zh_CN.d.ts +7 -0
- package/PopConfirm/index.js +2 -2
- package/Querying/index.js +4 -4
- package/README.md +10 -0
- package/Select/index.js +2 -2
- package/SortBox/index.js +24 -4
- package/Table/index.js +149 -29
- package/Table/interface.d.ts +9 -1
- package/Table/lang/en_US.d.ts +1 -0
- package/Table/lang/index.d.ts +2 -0
- package/Table/lang/zh_CN.d.ts +1 -0
- package/Table/tableBodyElement/index.d.ts +5 -0
- package/Table/tableBodyInterface.d.ts +4 -0
- package/Table/tableHeadInterface.d.ts +2 -0
- package/index.d.ts +2 -0
- package/index.js +2 -1
- package/locale/en-US.d.ts +7 -0
- package/locale/index.d.ts +14 -0
- package/locale/index.js +16 -2
- package/locale/zh-CN.d.ts +7 -0
- package/package.json +1 -1
- package/umd/AutoButton.js +5 -5
- package/umd/CollapseLayout.js +1 -1
- package/umd/ComboSelect.js +19 -7
- package/umd/DynamicMultiBox.js +6 -6
- package/umd/Form.js +19 -7
- package/umd/FormItem.js +19 -7
- package/umd/InputCode.js +43 -0
- package/umd/SortBox.js +2 -2
- package/umd/Table.js +19 -7
- package/umd/locale.js +1 -1
- /package/_verture/{index-3795d730.js → index-e229330e.js} +0 -0
package/locale/index.d.ts
CHANGED
|
@@ -174,6 +174,12 @@ declare const _default: {
|
|
|
174
174
|
minValue: string;
|
|
175
175
|
maxValue: string;
|
|
176
176
|
};
|
|
177
|
+
InputCode: {
|
|
178
|
+
retrievedAgain: string;
|
|
179
|
+
reset: string;
|
|
180
|
+
getCode: string;
|
|
181
|
+
secondCountdown: string;
|
|
182
|
+
};
|
|
177
183
|
Modal: {
|
|
178
184
|
cancel: string;
|
|
179
185
|
ok: string;
|
|
@@ -246,6 +252,7 @@ declare const _default: {
|
|
|
246
252
|
refresh: string;
|
|
247
253
|
selectNum: string;
|
|
248
254
|
selectAll: string;
|
|
255
|
+
dragSort: string;
|
|
249
256
|
};
|
|
250
257
|
Tabs: {
|
|
251
258
|
confirmDelete: string;
|
|
@@ -456,6 +463,12 @@ declare const _default: {
|
|
|
456
463
|
minValue: string;
|
|
457
464
|
maxValue: string;
|
|
458
465
|
};
|
|
466
|
+
InputCode: {
|
|
467
|
+
retrievedAgain: string;
|
|
468
|
+
reset: string;
|
|
469
|
+
getCode: string;
|
|
470
|
+
secondCountdown: string;
|
|
471
|
+
};
|
|
459
472
|
Modal: {
|
|
460
473
|
cancel: string;
|
|
461
474
|
ok: string;
|
|
@@ -528,6 +541,7 @@ declare const _default: {
|
|
|
528
541
|
refresh: string;
|
|
529
542
|
selectNum: string;
|
|
530
543
|
selectAll: string;
|
|
544
|
+
dragSort: string;
|
|
531
545
|
};
|
|
532
546
|
Tabs: {
|
|
533
547
|
confirmDelete: string;
|
package/locale/index.js
CHANGED
|
@@ -173,6 +173,12 @@ var enUS = {
|
|
|
173
173
|
"minValue": "The minimum value is {val}",
|
|
174
174
|
"maxValue": "The maximum value is {val}"
|
|
175
175
|
},
|
|
176
|
+
"InputCode": {
|
|
177
|
+
"retrievedAgain": "{second} seconds to retrieve again",
|
|
178
|
+
"reset": "resend",
|
|
179
|
+
"getCode": "Get Code",
|
|
180
|
+
"secondCountdown": "{second}s"
|
|
181
|
+
},
|
|
176
182
|
"Modal": {
|
|
177
183
|
"cancel": "Cancel",
|
|
178
184
|
"ok": "Ok"
|
|
@@ -244,7 +250,8 @@ var enUS = {
|
|
|
244
250
|
"loadMore": "Load more",
|
|
245
251
|
"refresh": "Refresh",
|
|
246
252
|
"selectNum": "Selected {num} items",
|
|
247
|
-
"selectAll": "Select All"
|
|
253
|
+
"selectAll": "Select All",
|
|
254
|
+
"dragSort": "Drag Sort"
|
|
248
255
|
},
|
|
249
256
|
"Tabs": {
|
|
250
257
|
"confirmDelete": "Are you sure delete?"
|
|
@@ -456,6 +463,12 @@ var zhCN = {
|
|
|
456
463
|
"minValue": "最小值为{val}",
|
|
457
464
|
"maxValue": "最大值为{val}"
|
|
458
465
|
},
|
|
466
|
+
"InputCode": {
|
|
467
|
+
"retrievedAgain": "{second}秒后可重新获取",
|
|
468
|
+
"reset": "重新发送",
|
|
469
|
+
"getCode": "获取验证码",
|
|
470
|
+
"secondCountdown": "{second}秒"
|
|
471
|
+
},
|
|
459
472
|
"Modal": {
|
|
460
473
|
"cancel": "取 消",
|
|
461
474
|
"ok": "确 定"
|
|
@@ -527,7 +540,8 @@ var zhCN = {
|
|
|
527
540
|
"loadMore": "加载更多",
|
|
528
541
|
"refresh": "刷新",
|
|
529
542
|
"selectNum": "已选{num}项",
|
|
530
|
-
"selectAll": "全选"
|
|
543
|
+
"selectAll": "全选",
|
|
544
|
+
"dragSort": "拖动排序"
|
|
531
545
|
},
|
|
532
546
|
"Tabs": {
|
|
533
547
|
"confirmDelete": "确定删除吗?"
|
package/locale/zh-CN.d.ts
CHANGED
|
@@ -173,6 +173,12 @@ declare const _default: {
|
|
|
173
173
|
minValue: string;
|
|
174
174
|
maxValue: string;
|
|
175
175
|
};
|
|
176
|
+
InputCode: {
|
|
177
|
+
retrievedAgain: string;
|
|
178
|
+
reset: string;
|
|
179
|
+
getCode: string;
|
|
180
|
+
secondCountdown: string;
|
|
181
|
+
};
|
|
176
182
|
Modal: {
|
|
177
183
|
cancel: string;
|
|
178
184
|
ok: string;
|
|
@@ -245,6 +251,7 @@ declare const _default: {
|
|
|
245
251
|
refresh: string;
|
|
246
252
|
selectNum: string;
|
|
247
253
|
selectAll: string;
|
|
254
|
+
dragSort: string;
|
|
248
255
|
};
|
|
249
256
|
Tabs: {
|
|
250
257
|
confirmDelete: string;
|