@aplus-frontend/ui 0.0.27 → 0.0.28
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/src/ap-action/group/index.vue.mjs +27 -31
- package/es/src/ap-action/item-dropdown/index.vue.mjs +14 -15
- package/es/src/ap-action/style/item-dropdown.css +2 -0
- package/es/src/ap-form/ap-form-item-group/index.vue.mjs +21 -21
- package/es/src/ap-form/ap-form-item.vue.mjs +72 -64
- package/es/src/ap-form/ap-form.vue.d.ts +13 -3
- package/es/src/ap-form/ap-form.vue2.mjs +91 -70
- package/es/src/ap-form/constant.d.ts +1 -0
- package/es/src/ap-form/constant.mjs +2 -1
- package/es/src/ap-form/context.d.ts +4 -3
- package/es/src/ap-form/hooks/use-watch.mjs +20 -16
- package/es/src/ap-form/interface.d.ts +35 -4
- package/es/src/ap-form/items/checkbox/index.vue.mjs +11 -10
- package/es/src/ap-form/items/date/index.vue.mjs +14 -13
- package/es/src/ap-form/items/date-range/index.vue.mjs +12 -11
- package/es/src/ap-form/items/number/index.vue.mjs +13 -12
- package/es/src/ap-form/items/radio/index.vue.mjs +4 -3
- package/es/src/ap-form/items/select/index.vue.mjs +3 -2
- package/es/src/ap-form/items/switch/index.vue.mjs +9 -8
- package/es/src/ap-form/items/text/index.vue2.mjs +15 -14
- package/es/src/ap-form/items/text/password.vue.mjs +1 -0
- package/es/src/ap-form/items/text-area/index.vue.mjs +7 -6
- package/es/src/ap-form/modal-form/index.vue.d.ts +1 -1
- package/es/src/ap-form/modal-form/index.vue.mjs +3 -3
- package/es/src/ap-table/constants.d.ts +132 -0
- package/es/src/business/expandAlert/ApExpandAlert.vue.d.ts +19 -1
- package/es/src/business/expandAlert/ApExpandAlert.vue2.mjs +53 -47
- package/es/src/business/expandAlert/interface.d.ts +4 -0
- package/es/src/business/index.d.ts +38 -7
- package/es/src/business/index.mjs +1 -1
- package/es/src/editable-table/form-item.vue.mjs +72 -74
- package/es/src/locale/lang/en.mjs +2 -1
- package/es/src/locale/lang/zh-cn.mjs +2 -1
- package/es/src/theme/ap-action/item-dropdown.css +2 -0
- package/lib/src/ap-action/group/index.vue.js +1 -1
- package/lib/src/ap-action/item-dropdown/index.vue.js +1 -1
- package/lib/src/ap-action/style/item-dropdown.css +2 -0
- package/lib/src/ap-form/ap-form-item-group/index.vue.js +1 -1
- package/lib/src/ap-form/ap-form-item.vue.js +1 -1
- package/lib/src/ap-form/ap-form.vue.d.ts +13 -3
- package/lib/src/ap-form/ap-form.vue2.js +1 -1
- package/lib/src/ap-form/constant.d.ts +1 -0
- package/lib/src/ap-form/constant.js +1 -1
- package/lib/src/ap-form/context.d.ts +4 -3
- package/lib/src/ap-form/hooks/use-watch.js +1 -1
- package/lib/src/ap-form/interface.d.ts +35 -4
- package/lib/src/ap-form/items/checkbox/index.vue.js +1 -1
- package/lib/src/ap-form/items/date/index.vue.js +1 -1
- package/lib/src/ap-form/items/date-range/index.vue.js +1 -1
- package/lib/src/ap-form/items/number/index.vue.js +1 -1
- package/lib/src/ap-form/items/radio/index.vue.js +1 -1
- package/lib/src/ap-form/items/select/index.vue.js +1 -1
- package/lib/src/ap-form/items/switch/index.vue.js +1 -1
- package/lib/src/ap-form/items/text/index.vue2.js +1 -1
- package/lib/src/ap-form/items/text/password.vue.js +1 -1
- package/lib/src/ap-form/items/text-area/index.vue.js +1 -1
- package/lib/src/ap-form/modal-form/index.vue.d.ts +1 -1
- package/lib/src/ap-form/modal-form/index.vue.js +1 -1
- package/lib/src/ap-table/constants.d.ts +132 -0
- package/lib/src/business/expandAlert/ApExpandAlert.vue.d.ts +19 -1
- package/lib/src/business/expandAlert/ApExpandAlert.vue2.js +1 -1
- package/lib/src/business/expandAlert/interface.d.ts +4 -0
- package/lib/src/business/index.d.ts +38 -7
- package/lib/src/business/index.js +1 -1
- package/lib/src/editable-table/form-item.vue.js +1 -1
- package/lib/src/locale/lang/en.js +1 -1
- package/lib/src/locale/lang/zh-cn.js +1 -1
- package/lib/src/theme/ap-action/item-dropdown.css +2 -0
- package/package.json +4 -3
|
@@ -232,6 +232,9 @@ export declare const apTableFormItemMap: {
|
|
|
232
232
|
valuePropName: {
|
|
233
233
|
type: PropType<string>;
|
|
234
234
|
};
|
|
235
|
+
initialValue: {
|
|
236
|
+
type: PropType<any>;
|
|
237
|
+
};
|
|
235
238
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
236
239
|
disabled: {
|
|
237
240
|
type: PropType<boolean>;
|
|
@@ -421,6 +424,9 @@ export declare const apTableFormItemMap: {
|
|
|
421
424
|
valuePropName: {
|
|
422
425
|
type: PropType<string>;
|
|
423
426
|
};
|
|
427
|
+
initialValue: {
|
|
428
|
+
type: PropType<any>;
|
|
429
|
+
};
|
|
424
430
|
}>>, {
|
|
425
431
|
disabled: boolean;
|
|
426
432
|
required: boolean;
|
|
@@ -625,6 +631,9 @@ export declare const apTableFormItemMap: {
|
|
|
625
631
|
valuePropName: {
|
|
626
632
|
type: PropType<string>;
|
|
627
633
|
};
|
|
634
|
+
initialValue: {
|
|
635
|
+
type: PropType<any>;
|
|
636
|
+
};
|
|
628
637
|
}>>, {}, {}, {}, {}, {
|
|
629
638
|
disabled: boolean;
|
|
630
639
|
required: boolean;
|
|
@@ -826,6 +835,9 @@ export declare const apTableFormItemMap: {
|
|
|
826
835
|
valuePropName: {
|
|
827
836
|
type: PropType<string>;
|
|
828
837
|
};
|
|
838
|
+
initialValue: {
|
|
839
|
+
type: PropType<any>;
|
|
840
|
+
};
|
|
829
841
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
830
842
|
disabled: boolean;
|
|
831
843
|
required: boolean;
|
|
@@ -1051,6 +1063,9 @@ export declare const apTableFormItemMap: {
|
|
|
1051
1063
|
valuePropName: {
|
|
1052
1064
|
type: PropType<string>;
|
|
1053
1065
|
};
|
|
1066
|
+
initialValue: {
|
|
1067
|
+
type: PropType<any>;
|
|
1068
|
+
};
|
|
1054
1069
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
1055
1070
|
disabled: {
|
|
1056
1071
|
type: PropType<boolean>;
|
|
@@ -1240,6 +1255,9 @@ export declare const apTableFormItemMap: {
|
|
|
1240
1255
|
valuePropName: {
|
|
1241
1256
|
type: PropType<string>;
|
|
1242
1257
|
};
|
|
1258
|
+
initialValue: {
|
|
1259
|
+
type: PropType<any>;
|
|
1260
|
+
};
|
|
1243
1261
|
}>>, {
|
|
1244
1262
|
disabled: boolean;
|
|
1245
1263
|
required: boolean;
|
|
@@ -1444,6 +1462,9 @@ export declare const apTableFormItemMap: {
|
|
|
1444
1462
|
valuePropName: {
|
|
1445
1463
|
type: PropType<string>;
|
|
1446
1464
|
};
|
|
1465
|
+
initialValue: {
|
|
1466
|
+
type: PropType<any>;
|
|
1467
|
+
};
|
|
1447
1468
|
}>>, {}, {}, {}, {}, {
|
|
1448
1469
|
disabled: boolean;
|
|
1449
1470
|
required: boolean;
|
|
@@ -1645,6 +1666,9 @@ export declare const apTableFormItemMap: {
|
|
|
1645
1666
|
valuePropName: {
|
|
1646
1667
|
type: PropType<string>;
|
|
1647
1668
|
};
|
|
1669
|
+
initialValue: {
|
|
1670
|
+
type: PropType<any>;
|
|
1671
|
+
};
|
|
1648
1672
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1649
1673
|
disabled: boolean;
|
|
1650
1674
|
required: boolean;
|
|
@@ -1868,6 +1892,9 @@ export declare const apTableFormItemMap: {
|
|
|
1868
1892
|
valuePropName: {
|
|
1869
1893
|
type: PropType<string>;
|
|
1870
1894
|
};
|
|
1895
|
+
initialValue: {
|
|
1896
|
+
type: PropType<any>;
|
|
1897
|
+
};
|
|
1871
1898
|
}>>, {
|
|
1872
1899
|
focus: () => void;
|
|
1873
1900
|
blur: () => void;
|
|
@@ -2060,6 +2087,9 @@ export declare const apTableFormItemMap: {
|
|
|
2060
2087
|
valuePropName: {
|
|
2061
2088
|
type: PropType<string>;
|
|
2062
2089
|
};
|
|
2090
|
+
initialValue: {
|
|
2091
|
+
type: PropType<any>;
|
|
2092
|
+
};
|
|
2063
2093
|
}>>, {
|
|
2064
2094
|
disabled: boolean;
|
|
2065
2095
|
required: boolean;
|
|
@@ -2264,6 +2294,9 @@ export declare const apTableFormItemMap: {
|
|
|
2264
2294
|
valuePropName: {
|
|
2265
2295
|
type: PropType<string>;
|
|
2266
2296
|
};
|
|
2297
|
+
initialValue: {
|
|
2298
|
+
type: PropType<any>;
|
|
2299
|
+
};
|
|
2267
2300
|
}>>, {
|
|
2268
2301
|
focus: () => void;
|
|
2269
2302
|
blur: () => void;
|
|
@@ -2468,6 +2501,9 @@ export declare const apTableFormItemMap: {
|
|
|
2468
2501
|
valuePropName: {
|
|
2469
2502
|
type: PropType<string>;
|
|
2470
2503
|
};
|
|
2504
|
+
initialValue: {
|
|
2505
|
+
type: PropType<any>;
|
|
2506
|
+
};
|
|
2471
2507
|
}>>, {
|
|
2472
2508
|
focus: () => void;
|
|
2473
2509
|
blur: () => void;
|
|
@@ -2686,6 +2722,9 @@ export declare const apTableFormItemMap: {
|
|
|
2686
2722
|
valuePropName: {
|
|
2687
2723
|
type: PropType<string>;
|
|
2688
2724
|
};
|
|
2725
|
+
initialValue: {
|
|
2726
|
+
type: PropType<any>;
|
|
2727
|
+
};
|
|
2689
2728
|
}>>, {
|
|
2690
2729
|
focus: () => void;
|
|
2691
2730
|
blur: () => void;
|
|
@@ -2872,6 +2911,9 @@ export declare const apTableFormItemMap: {
|
|
|
2872
2911
|
valuePropName: {
|
|
2873
2912
|
type: PropType<string>;
|
|
2874
2913
|
};
|
|
2914
|
+
initialValue: {
|
|
2915
|
+
type: PropType<any>;
|
|
2916
|
+
};
|
|
2875
2917
|
}>>, {
|
|
2876
2918
|
disabled: boolean;
|
|
2877
2919
|
required: boolean;
|
|
@@ -3070,6 +3112,9 @@ export declare const apTableFormItemMap: {
|
|
|
3070
3112
|
valuePropName: {
|
|
3071
3113
|
type: PropType<string>;
|
|
3072
3114
|
};
|
|
3115
|
+
initialValue: {
|
|
3116
|
+
type: PropType<any>;
|
|
3117
|
+
};
|
|
3073
3118
|
}>>, {
|
|
3074
3119
|
focus: () => void;
|
|
3075
3120
|
blur: () => void;
|
|
@@ -3268,6 +3313,9 @@ export declare const apTableFormItemMap: {
|
|
|
3268
3313
|
valuePropName: {
|
|
3269
3314
|
type: PropType<string>;
|
|
3270
3315
|
};
|
|
3316
|
+
initialValue: {
|
|
3317
|
+
type: PropType<any>;
|
|
3318
|
+
};
|
|
3271
3319
|
}>>, {
|
|
3272
3320
|
focus: () => void;
|
|
3273
3321
|
blur: () => void;
|
|
@@ -3480,6 +3528,9 @@ export declare const apTableFormItemMap: {
|
|
|
3480
3528
|
valuePropName: {
|
|
3481
3529
|
type: PropType<string>;
|
|
3482
3530
|
};
|
|
3531
|
+
initialValue: {
|
|
3532
|
+
type: PropType<any>;
|
|
3533
|
+
};
|
|
3483
3534
|
}>>, {
|
|
3484
3535
|
focus: () => void;
|
|
3485
3536
|
blur: () => void;
|
|
@@ -3672,6 +3723,9 @@ export declare const apTableFormItemMap: {
|
|
|
3672
3723
|
valuePropName: {
|
|
3673
3724
|
type: PropType<string>;
|
|
3674
3725
|
};
|
|
3726
|
+
initialValue: {
|
|
3727
|
+
type: PropType<any>;
|
|
3728
|
+
};
|
|
3675
3729
|
}>>, {
|
|
3676
3730
|
disabled: boolean;
|
|
3677
3731
|
required: boolean;
|
|
@@ -3876,6 +3930,9 @@ export declare const apTableFormItemMap: {
|
|
|
3876
3930
|
valuePropName: {
|
|
3877
3931
|
type: PropType<string>;
|
|
3878
3932
|
};
|
|
3933
|
+
initialValue: {
|
|
3934
|
+
type: PropType<any>;
|
|
3935
|
+
};
|
|
3879
3936
|
}>>, {
|
|
3880
3937
|
focus: () => void;
|
|
3881
3938
|
blur: () => void;
|
|
@@ -4080,6 +4137,9 @@ export declare const apTableFormItemMap: {
|
|
|
4080
4137
|
valuePropName: {
|
|
4081
4138
|
type: PropType<string>;
|
|
4082
4139
|
};
|
|
4140
|
+
initialValue: {
|
|
4141
|
+
type: PropType<any>;
|
|
4142
|
+
};
|
|
4083
4143
|
}>>, {
|
|
4084
4144
|
focus: () => void;
|
|
4085
4145
|
blur: () => void;
|
|
@@ -4305,6 +4365,9 @@ export declare const apTableFormItemMap: {
|
|
|
4305
4365
|
type: PropType<string>;
|
|
4306
4366
|
default: string;
|
|
4307
4367
|
};
|
|
4368
|
+
initialValue: {
|
|
4369
|
+
type: PropType<any>;
|
|
4370
|
+
};
|
|
4308
4371
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
4309
4372
|
disabled: {
|
|
4310
4373
|
type: PropType<boolean>;
|
|
@@ -4489,6 +4552,9 @@ export declare const apTableFormItemMap: {
|
|
|
4489
4552
|
type: PropType<string>;
|
|
4490
4553
|
default: string;
|
|
4491
4554
|
};
|
|
4555
|
+
initialValue: {
|
|
4556
|
+
type: PropType<any>;
|
|
4557
|
+
};
|
|
4492
4558
|
}>>, {
|
|
4493
4559
|
disabled: boolean;
|
|
4494
4560
|
required: boolean;
|
|
@@ -4689,6 +4755,9 @@ export declare const apTableFormItemMap: {
|
|
|
4689
4755
|
type: PropType<string>;
|
|
4690
4756
|
default: string;
|
|
4691
4757
|
};
|
|
4758
|
+
initialValue: {
|
|
4759
|
+
type: PropType<any>;
|
|
4760
|
+
};
|
|
4692
4761
|
}>>, {}, {}, {}, {}, {
|
|
4693
4762
|
disabled: boolean;
|
|
4694
4763
|
required: boolean;
|
|
@@ -4886,6 +4955,9 @@ export declare const apTableFormItemMap: {
|
|
|
4886
4955
|
type: PropType<string>;
|
|
4887
4956
|
default: string;
|
|
4888
4957
|
};
|
|
4958
|
+
initialValue: {
|
|
4959
|
+
type: PropType<any>;
|
|
4960
|
+
};
|
|
4889
4961
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
4890
4962
|
disabled: boolean;
|
|
4891
4963
|
required: boolean;
|
|
@@ -5096,6 +5168,9 @@ export declare const apTableFormItemMap: {
|
|
|
5096
5168
|
valuePropName: {
|
|
5097
5169
|
type: PropType<string>;
|
|
5098
5170
|
};
|
|
5171
|
+
initialValue: {
|
|
5172
|
+
type: PropType<any>;
|
|
5173
|
+
};
|
|
5099
5174
|
}>>, {
|
|
5100
5175
|
focus: (options?: InputFocusOptions | undefined) => void;
|
|
5101
5176
|
blur: () => void;
|
|
@@ -5291,6 +5366,9 @@ export declare const apTableFormItemMap: {
|
|
|
5291
5366
|
valuePropName: {
|
|
5292
5367
|
type: PropType<string>;
|
|
5293
5368
|
};
|
|
5369
|
+
initialValue: {
|
|
5370
|
+
type: PropType<any>;
|
|
5371
|
+
};
|
|
5294
5372
|
}>>, {
|
|
5295
5373
|
disabled: boolean;
|
|
5296
5374
|
required: boolean;
|
|
@@ -5495,6 +5573,9 @@ export declare const apTableFormItemMap: {
|
|
|
5495
5573
|
valuePropName: {
|
|
5496
5574
|
type: PropType<string>;
|
|
5497
5575
|
};
|
|
5576
|
+
initialValue: {
|
|
5577
|
+
type: PropType<any>;
|
|
5578
|
+
};
|
|
5498
5579
|
}>>, {
|
|
5499
5580
|
focus: (options?: InputFocusOptions | undefined) => void;
|
|
5500
5581
|
blur: () => void;
|
|
@@ -5702,6 +5783,9 @@ export declare const apTableFormItemMap: {
|
|
|
5702
5783
|
valuePropName: {
|
|
5703
5784
|
type: PropType<string>;
|
|
5704
5785
|
};
|
|
5786
|
+
initialValue: {
|
|
5787
|
+
type: PropType<any>;
|
|
5788
|
+
};
|
|
5705
5789
|
}>>, {
|
|
5706
5790
|
focus: (options?: InputFocusOptions | undefined) => void;
|
|
5707
5791
|
blur: () => void;
|
|
@@ -5921,6 +6005,9 @@ export declare const apTableFormItemMap: {
|
|
|
5921
6005
|
valuePropName: {
|
|
5922
6006
|
type: PropType<string>;
|
|
5923
6007
|
};
|
|
6008
|
+
initialValue: {
|
|
6009
|
+
type: PropType<any>;
|
|
6010
|
+
};
|
|
5924
6011
|
}>>, {
|
|
5925
6012
|
focus: () => void;
|
|
5926
6013
|
blur: () => void;
|
|
@@ -6113,6 +6200,9 @@ export declare const apTableFormItemMap: {
|
|
|
6113
6200
|
valuePropName: {
|
|
6114
6201
|
type: PropType<string>;
|
|
6115
6202
|
};
|
|
6203
|
+
initialValue: {
|
|
6204
|
+
type: PropType<any>;
|
|
6205
|
+
};
|
|
6116
6206
|
}>>, {
|
|
6117
6207
|
disabled: boolean;
|
|
6118
6208
|
required: boolean;
|
|
@@ -6317,6 +6407,9 @@ export declare const apTableFormItemMap: {
|
|
|
6317
6407
|
valuePropName: {
|
|
6318
6408
|
type: PropType<string>;
|
|
6319
6409
|
};
|
|
6410
|
+
initialValue: {
|
|
6411
|
+
type: PropType<any>;
|
|
6412
|
+
};
|
|
6320
6413
|
}>>, {
|
|
6321
6414
|
focus: () => void;
|
|
6322
6415
|
blur: () => void;
|
|
@@ -6521,6 +6614,9 @@ export declare const apTableFormItemMap: {
|
|
|
6521
6614
|
valuePropName: {
|
|
6522
6615
|
type: PropType<string>;
|
|
6523
6616
|
};
|
|
6617
|
+
initialValue: {
|
|
6618
|
+
type: PropType<any>;
|
|
6619
|
+
};
|
|
6524
6620
|
}>>, {
|
|
6525
6621
|
focus: () => void;
|
|
6526
6622
|
blur: () => void;
|
|
@@ -6737,6 +6833,9 @@ export declare const apTableFormItemMap: {
|
|
|
6737
6833
|
valuePropName: {
|
|
6738
6834
|
type: PropType<string>;
|
|
6739
6835
|
};
|
|
6836
|
+
initialValue: {
|
|
6837
|
+
type: PropType<any>;
|
|
6838
|
+
};
|
|
6740
6839
|
}>>, {
|
|
6741
6840
|
focus: (options?: InputFocusOptions | undefined) => void;
|
|
6742
6841
|
blur: () => void;
|
|
@@ -6927,6 +7026,9 @@ export declare const apTableFormItemMap: {
|
|
|
6927
7026
|
valuePropName: {
|
|
6928
7027
|
type: PropType<string>;
|
|
6929
7028
|
};
|
|
7029
|
+
initialValue: {
|
|
7030
|
+
type: PropType<any>;
|
|
7031
|
+
};
|
|
6930
7032
|
}>>, {
|
|
6931
7033
|
disabled: boolean;
|
|
6932
7034
|
required: boolean;
|
|
@@ -7128,6 +7230,9 @@ export declare const apTableFormItemMap: {
|
|
|
7128
7230
|
valuePropName: {
|
|
7129
7231
|
type: PropType<string>;
|
|
7130
7232
|
};
|
|
7233
|
+
initialValue: {
|
|
7234
|
+
type: PropType<any>;
|
|
7235
|
+
};
|
|
7131
7236
|
}>>, {
|
|
7132
7237
|
focus: (options?: InputFocusOptions | undefined) => void;
|
|
7133
7238
|
blur: () => void;
|
|
@@ -7330,6 +7435,9 @@ export declare const apTableFormItemMap: {
|
|
|
7330
7435
|
valuePropName: {
|
|
7331
7436
|
type: PropType<string>;
|
|
7332
7437
|
};
|
|
7438
|
+
initialValue: {
|
|
7439
|
+
type: PropType<any>;
|
|
7440
|
+
};
|
|
7333
7441
|
}>>, {
|
|
7334
7442
|
focus: (options?: InputFocusOptions | undefined) => void;
|
|
7335
7443
|
blur: () => void;
|
|
@@ -7537,6 +7645,9 @@ export declare const apTableFormItemMap: {
|
|
|
7537
7645
|
valuePropName: {
|
|
7538
7646
|
type: PropType<string>;
|
|
7539
7647
|
};
|
|
7648
|
+
initialValue: {
|
|
7649
|
+
type: PropType<any>;
|
|
7650
|
+
};
|
|
7540
7651
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
7541
7652
|
disabled: {
|
|
7542
7653
|
type: PropType<boolean>;
|
|
@@ -7720,6 +7831,9 @@ export declare const apTableFormItemMap: {
|
|
|
7720
7831
|
valuePropName: {
|
|
7721
7832
|
type: PropType<string>;
|
|
7722
7833
|
};
|
|
7834
|
+
initialValue: {
|
|
7835
|
+
type: PropType<any>;
|
|
7836
|
+
};
|
|
7723
7837
|
}>>, {
|
|
7724
7838
|
disabled: boolean;
|
|
7725
7839
|
required: boolean;
|
|
@@ -7918,6 +8032,9 @@ export declare const apTableFormItemMap: {
|
|
|
7918
8032
|
valuePropName: {
|
|
7919
8033
|
type: PropType<string>;
|
|
7920
8034
|
};
|
|
8035
|
+
initialValue: {
|
|
8036
|
+
type: PropType<any>;
|
|
8037
|
+
};
|
|
7921
8038
|
}>>, {}, {}, {}, {}, {
|
|
7922
8039
|
disabled: boolean;
|
|
7923
8040
|
required: boolean;
|
|
@@ -8113,6 +8230,9 @@ export declare const apTableFormItemMap: {
|
|
|
8113
8230
|
valuePropName: {
|
|
8114
8231
|
type: PropType<string>;
|
|
8115
8232
|
};
|
|
8233
|
+
initialValue: {
|
|
8234
|
+
type: PropType<any>;
|
|
8235
|
+
};
|
|
8116
8236
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
8117
8237
|
disabled: boolean;
|
|
8118
8238
|
required: boolean;
|
|
@@ -8322,6 +8442,9 @@ export declare const apTableFormItemMap: {
|
|
|
8322
8442
|
valuePropName: {
|
|
8323
8443
|
type: PropType<string>;
|
|
8324
8444
|
};
|
|
8445
|
+
initialValue: {
|
|
8446
|
+
type: PropType<any>;
|
|
8447
|
+
};
|
|
8325
8448
|
}>>, {
|
|
8326
8449
|
focus: () => void;
|
|
8327
8450
|
blur: () => void;
|
|
@@ -8514,6 +8637,9 @@ export declare const apTableFormItemMap: {
|
|
|
8514
8637
|
valuePropName: {
|
|
8515
8638
|
type: PropType<string>;
|
|
8516
8639
|
};
|
|
8640
|
+
initialValue: {
|
|
8641
|
+
type: PropType<any>;
|
|
8642
|
+
};
|
|
8517
8643
|
}>>, {
|
|
8518
8644
|
disabled: boolean;
|
|
8519
8645
|
required: boolean;
|
|
@@ -8718,6 +8844,9 @@ export declare const apTableFormItemMap: {
|
|
|
8718
8844
|
valuePropName: {
|
|
8719
8845
|
type: PropType<string>;
|
|
8720
8846
|
};
|
|
8847
|
+
initialValue: {
|
|
8848
|
+
type: PropType<any>;
|
|
8849
|
+
};
|
|
8721
8850
|
}>>, {
|
|
8722
8851
|
focus: () => void;
|
|
8723
8852
|
blur: () => void;
|
|
@@ -8922,6 +9051,9 @@ export declare const apTableFormItemMap: {
|
|
|
8922
9051
|
valuePropName: {
|
|
8923
9052
|
type: PropType<string>;
|
|
8924
9053
|
};
|
|
9054
|
+
initialValue: {
|
|
9055
|
+
type: PropType<any>;
|
|
9056
|
+
};
|
|
8925
9057
|
}>>, {
|
|
8926
9058
|
focus: () => void;
|
|
8927
9059
|
blur: () => void;
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { ApExpandAlertProps } from './interface';
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
|
+
/**
|
|
5
|
+
* @description: 手动调用收起展开
|
|
6
|
+
* @param {boolean} state true 展开 false 收起
|
|
7
|
+
*/
|
|
8
|
+
declare function setExpand(state?: boolean): void;
|
|
4
9
|
declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ApExpandAlertProps>, {
|
|
5
10
|
/**
|
|
6
11
|
* Alert类型
|
|
@@ -22,7 +27,14 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
22
27
|
* 分隔符
|
|
23
28
|
*/
|
|
24
29
|
separator: string;
|
|
25
|
-
|
|
30
|
+
/**
|
|
31
|
+
* 内容达到几行显示展开收起
|
|
32
|
+
*/
|
|
33
|
+
rows: number;
|
|
34
|
+
}>, {
|
|
35
|
+
setExpand: typeof setExpand;
|
|
36
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
37
|
+
expand: (...args: any[]) => void;
|
|
26
38
|
choose: (...args: any[]) => void;
|
|
27
39
|
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ApExpandAlertProps>, {
|
|
28
40
|
/**
|
|
@@ -45,13 +57,19 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
45
57
|
* 分隔符
|
|
46
58
|
*/
|
|
47
59
|
separator: string;
|
|
60
|
+
/**
|
|
61
|
+
* 内容达到几行显示展开收起
|
|
62
|
+
*/
|
|
63
|
+
rows: number;
|
|
48
64
|
}>>> & {
|
|
65
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
49
66
|
onChoose?: ((...args: any[]) => any) | undefined;
|
|
50
67
|
}, {
|
|
51
68
|
type: "success" | "error" | "info" | "warning" | undefined;
|
|
52
69
|
data: string | any[];
|
|
53
70
|
prefix: string;
|
|
54
71
|
separator: string;
|
|
72
|
+
rows: string | number;
|
|
55
73
|
tipTitle: string;
|
|
56
74
|
}, {}>, {
|
|
57
75
|
default?(_: {}): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),b=require("@ant-design/icons-vue"),c=require("ant-design-vue"),B=require("../../ap-action/index.js");require("../../config-provider/index.js");require("./style.css");const E=require("../../config-provider/hooks/use-namespace.js"),N=require("../../config-provider/hooks/use-global-config.js"),z={key:0},V=["onClick"],S=e.defineComponent({__name:"ApExpandAlert",props:{type:{default:"warning"},data:{default:()=>[]},prefix:{default:""},tipTitle:{default:"查看详情"},mapLabel:{},separator:{default:"|"},rows:{default:1}},emits:["choose","expand"],setup(p,{expose:d,emit:f}){const m=f,i=p,a=e.ref(""),o=e.ref(null),v=e.computed(()=>({fontWeight:"400",wordBreak:"break-all",overflow:"hidden",display:"-webkit-box",webkitLineClamp:a.value,webkitBoxOrient:"vertical",lineHeight:"22px"}));function k(){a.value==="1"?a.value="":a.value="1",m("expand")}const g=e.computed(()=>a.value==="1"?"展开":"收起"),r=e.ref(!0),u=e.computed(()=>a.value!=="1");function y(t){t?a.value="":a.value="1"}e.watch(()=>i.data,()=>{a.value="",e.nextTick(()=>{if(o.value){const t=Number(o.value.clientHeight),s=Number(parseInt(o.value.style.lineHeight));t<s*Number(i.rows)&&u.value?r.value=!1:r.value=!0}})},{immediate:!0});const{b:C,e:l,m:h}=E.useNamespace("ap-expand-alert"),w=N.useGlobalConfig("uiMode","aplus");return d({setExpand:y}),(t,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([e.unref(C)(),`${e.unref(h)(e.unref(w))}`])},[e.createVNode(e.unref(c.Alert),{type:t.type,"show-icon":"",class:e.normalizeClass(e.unref(l)("antAlert"))},{action:e.withCtx(()=>[r.value?(e.openBlock(),e.createBlock(e.unref(B.ApActionItem),{key:0,size:"small",onClick:s[0]||(s[0]=n=>k()),style:{"font-size":"12px","padding-left":"16px"}},{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(e.unref(l)("expandText"))},e.toDisplayString(g.value),3),e.createVNode(e.unref(b.DownOutlined),{class:e.normalizeClass(u.value?e.unref(l)("expandIcon"):e.unref(l)("collapseIcon"))},null,8,["class"])]),_:1})):e.createCommentVNode("",!0)]),message:e.withCtx(()=>[e.createElementVNode("div",{style:e.normalizeStyle(v.value),class:e.normalizeClass(e.unref(l)("alertContent")),ref_key:"ellipsisBoxRef",ref:o},[e.renderSlot(t.$slots,"default",{},()=>[e.createElementVNode("span",{class:e.normalizeClass(e.unref(l)("prefix"))},e.toDisplayString(t.prefix),3),typeof t.data=="string"?(e.openBlock(),e.createElementBlock("span",z,e.toDisplayString(t.data),1)):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(t.data,(n,x)=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:n},[e.createVNode(e.unref(c.Tooltip),{title:t.tipTitle},{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(e.unref(l)("showItem")),onClick:q=>t.$emit("choose",n)},e.toDisplayString(t.mapLabel?n[t.mapLabel]:n),11,V)]),_:2},1032,["title"]),x!==t.data.length-1?(e.openBlock(),e.createElementBlock("span",{key:0,class:e.normalizeClass(e.unref(l)("spliter"))},e.toDisplayString(t.separator),3)):e.createCommentVNode("",!0)],64))),128))])],6)]),_:3},8,["type","class"])],2))}});exports.default=S;
|
|
@@ -171,6 +171,11 @@ export declare const ApExpandAlert: {
|
|
|
171
171
|
required: true;
|
|
172
172
|
default: string;
|
|
173
173
|
};
|
|
174
|
+
rows: {
|
|
175
|
+
type: PropType<string | number>;
|
|
176
|
+
required: true;
|
|
177
|
+
default: number;
|
|
178
|
+
};
|
|
174
179
|
tipTitle: {
|
|
175
180
|
type: PropType<string>;
|
|
176
181
|
default: string;
|
|
@@ -179,8 +184,12 @@ export declare const ApExpandAlert: {
|
|
|
179
184
|
type: PropType<string>;
|
|
180
185
|
};
|
|
181
186
|
}>> & {
|
|
187
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
182
188
|
onChoose?: ((...args: any[]) => any) | undefined;
|
|
183
|
-
}, {
|
|
189
|
+
}, {
|
|
190
|
+
setExpand: (state?: boolean | undefined) => void;
|
|
191
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
192
|
+
expand: (...args: any[]) => void;
|
|
184
193
|
choose: (...args: any[]) => void;
|
|
185
194
|
}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
186
195
|
type: {
|
|
@@ -202,6 +211,11 @@ export declare const ApExpandAlert: {
|
|
|
202
211
|
required: true;
|
|
203
212
|
default: string;
|
|
204
213
|
};
|
|
214
|
+
rows: {
|
|
215
|
+
type: PropType<string | number>;
|
|
216
|
+
required: true;
|
|
217
|
+
default: number;
|
|
218
|
+
};
|
|
205
219
|
tipTitle: {
|
|
206
220
|
type: PropType<string>;
|
|
207
221
|
default: string;
|
|
@@ -210,12 +224,14 @@ export declare const ApExpandAlert: {
|
|
|
210
224
|
type: PropType<string>;
|
|
211
225
|
};
|
|
212
226
|
}>> & {
|
|
227
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
213
228
|
onChoose?: ((...args: any[]) => any) | undefined;
|
|
214
229
|
}, {
|
|
215
230
|
type: "success" | "error" | "info" | "warning" | undefined;
|
|
216
231
|
data: string | any[];
|
|
217
232
|
prefix: string;
|
|
218
233
|
separator: string;
|
|
234
|
+
rows: string | number;
|
|
219
235
|
tipTitle: string;
|
|
220
236
|
}, true, {}, {}, {
|
|
221
237
|
P: {};
|
|
@@ -244,6 +260,11 @@ export declare const ApExpandAlert: {
|
|
|
244
260
|
required: true;
|
|
245
261
|
default: string;
|
|
246
262
|
};
|
|
263
|
+
rows: {
|
|
264
|
+
type: PropType<string | number>;
|
|
265
|
+
required: true;
|
|
266
|
+
default: number;
|
|
267
|
+
};
|
|
247
268
|
tipTitle: {
|
|
248
269
|
type: PropType<string>;
|
|
249
270
|
default: string;
|
|
@@ -252,12 +273,16 @@ export declare const ApExpandAlert: {
|
|
|
252
273
|
type: PropType<string>;
|
|
253
274
|
};
|
|
254
275
|
}>> & {
|
|
276
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
255
277
|
onChoose?: ((...args: any[]) => any) | undefined;
|
|
256
|
-
}, {
|
|
278
|
+
}, {
|
|
279
|
+
setExpand: (state?: boolean | undefined) => void;
|
|
280
|
+
}, {}, {}, {}, {
|
|
257
281
|
type: "success" | "error" | "info" | "warning" | undefined;
|
|
258
282
|
data: string | any[];
|
|
259
283
|
prefix: string;
|
|
260
284
|
separator: string;
|
|
285
|
+
rows: string | number;
|
|
261
286
|
tipTitle: string;
|
|
262
287
|
}>;
|
|
263
288
|
__isFragment?: undefined;
|
|
@@ -283,6 +308,11 @@ export declare const ApExpandAlert: {
|
|
|
283
308
|
required: true;
|
|
284
309
|
default: string;
|
|
285
310
|
};
|
|
311
|
+
rows: {
|
|
312
|
+
type: PropType<string | number>;
|
|
313
|
+
required: true;
|
|
314
|
+
default: number;
|
|
315
|
+
};
|
|
286
316
|
tipTitle: {
|
|
287
317
|
type: PropType<string>;
|
|
288
318
|
default: string;
|
|
@@ -291,23 +321,24 @@ export declare const ApExpandAlert: {
|
|
|
291
321
|
type: PropType<string>;
|
|
292
322
|
};
|
|
293
323
|
}>> & {
|
|
324
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
294
325
|
onChoose?: ((...args: any[]) => any) | undefined;
|
|
295
|
-
}, {
|
|
326
|
+
}, {
|
|
327
|
+
setExpand: (state?: boolean | undefined) => void;
|
|
328
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
329
|
+
expand: (...args: any[]) => void;
|
|
296
330
|
choose: (...args: any[]) => void;
|
|
297
331
|
}, string, {
|
|
298
332
|
type: "success" | "error" | "info" | "warning" | undefined;
|
|
299
333
|
data: string | any[];
|
|
300
334
|
prefix: string;
|
|
301
335
|
separator: string;
|
|
336
|
+
rows: string | number;
|
|
302
337
|
tipTitle: string;
|
|
303
338
|
}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
304
339
|
$slots: {
|
|
305
340
|
default?(_: {}): any;
|
|
306
341
|
};
|
|
307
|
-
}) & Plugin<any[]> & (new (...args: any[]) => {
|
|
308
|
-
$props: {
|
|
309
|
-
onClick?: (() => void) | undefined;
|
|
310
|
-
};
|
|
311
342
|
});
|
|
312
343
|
export declare const ApLabel: {
|
|
313
344
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("@aplus-frontend/utils");require("./title/ApTitle.vue.js");require("./expandAlert/ApExpandAlert.vue.js");require("./ap-label/ApLabel.vue.js");require("./ap-status/ApStatus.vue.js");require("./ap-status/ApStatusGroup.vue.js");const e=require("./title/ApTitle.vue2.js"),u=require("./expandAlert/ApExpandAlert.vue2.js"),r=require("./ap-label/ApLabel.vue2.js"),p=require("./ap-status/ApStatus.vue2.js"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("@aplus-frontend/utils");require("./title/ApTitle.vue.js");require("./expandAlert/ApExpandAlert.vue.js");require("./ap-label/ApLabel.vue.js");require("./ap-status/ApStatus.vue.js");require("./ap-status/ApStatusGroup.vue.js");const e=require("./title/ApTitle.vue2.js"),u=require("./expandAlert/ApExpandAlert.vue2.js"),r=require("./ap-label/ApLabel.vue2.js"),p=require("./ap-status/ApStatus.vue2.js"),_=require("./ap-status/ApStatusGroup.vue2.js"),s=t.withInstall(e.default),l=u.default,a=t.withInstall(r.default),i=t.withInstall(p.default),n=t.withInstall(_.default);exports.ApExpandAlert=l;exports.ApLabel=a;exports.ApStatus=i;exports.ApStatusGroup=n;exports.ApTitle=s;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),S=require("ant-design-vue"),g=require("../ap-form/index.js"),d=require("lodash-unified");require("../config-provider/index.js");const L=require("../ap-form/context.js");require("./style/index.css");const i=require("../utils/index.js"),k=require("./hooks/use-get-columns.js"),_=require("./utils.js"),P=require("../config-provider/hooks/use-namespace.js"),V=require("../config-provider/hooks/use-global-config.js"),j=e.defineComponent({name:"EditableTableInner",__name:"form-item",props:{dropdownPrefixCls:{},pagination:{type:[Boolean,Object],default:!1},loading:{type:[Boolean,Object],default:void 0},size:{default:"middle"},bordered:{type:Boolean,default:!1},locale:{},onChange:{},onResizeColumn:{},rowSelection:{},getPopupContainer:{},scroll:{},sortDirections:{default:()=>["ascend","descend"]},showSorterTooltip:{type:[Boolean,Object],default:!0},prefixCls:{},rowKey:{default:"key"},tableLayout:{default:"fixed"},rowClassName:{},title:{},footer:{},id:{},showHeader:{type:Boolean,default:!0},components:{},customRow:{},customHeaderRow:{},direction:{},expandFixed:{type:[String,Boolean],default:!1},expandColumnWidth:{},expandedRowKeys:{},defaultExpandedRowKeys:{},expandedRowRender:{},expandRowByClick:{type:Boolean,default:!1},expandIcon:{},onExpand:{},onExpandedRowsChange:{},defaultExpandAllRows:{type:Boolean,default:!1},indentSize:{default:15},expandIconColumnIndex:{},showExpandColumn:{type:Boolean,default:!0},expandedRowClassName:{},childrenColumnName:{default:"children"},rowExpandable:{},sticky:{type:[Boolean,Object]},transformCellText:{},columns:{},value:{},defaultValue:{},"onUpdate:value":{},maxLength:{},onFieldChange:{},label:{},name:{},formItem:{default:()=>({})}},setup(h,{expose:x}){var c;const o=h,{internalInstance:l,model:C}=L.useInjectForm(),r=e.ref(((c=e.unref(C))==null?void 0:c[o.name])||[]),b=e.useSlots(),w=g.ApForm.useWatch(o.name);e.watch(()=>w.value,n=>{var t;r.value=n,(t=o.onChange)==null||t.call(o,n)});const{b:f,em:y}=P.useNamespace("editable-table"),D=V.useGlobalConfig("uiMode","aplus"),R=k.default(o);function B(n,t){var u;const a=((u=e.unref(r))==null?void 0:u.length)||0;if(i.isDef(o.maxLength)&&a>=o.maxLength)return;const s=[...e.unref(r)||[]];i.isDef(t)?s.splice(t,0,{...n||{}}):s.push({...n||{}}),l==null||l.setFieldValue(o.name,[...e.unref(r)||[],n||{}])}function q(n,t="suffix"){var p;const a=((p=e.unref(r))==null?void 0:p.length)||0,s=d.isNumber(n)?n:n.length;if(i.isDef(o.maxLength)&&a+s>o.maxLength)return;const u=[...e.unref(r)||[]],m=d.isNumber(n)?new Array(n).fill({}):d.cloneDeep(n);t==="suffix"?u.push(...m):u.unshift(...m),l==null||l.setFieldValue(o.name,u)}function N(n){let t=d.cloneDeep(e.unref(r)||[]);const a=d.isNumber(n)?[n]:n;t=t.filter((s,u)=>!a.includes(u)),l==null||l.setFieldValue(o.name,t)}function v(){return e.unref(r)}function F(n){var t;return(t=e.unref(r))==null?void 0:t[n]}function E(n,t){const a=d.cloneDeep(e.unref(r));a[n]&&(a[n]={...a[n],...t},l==null||l.setFieldValue(o.name,[...a]))}return x({add:B,remove:N,getRowData:F,getRowsData:v,setRowData:E,addMultiple:q}),(n,t)=>(e.openBlock(),e.createBlock(e.unref(g.ApForm).FormItem,e.mergeProps(n.formItem,{name:n.name,label:n.label}),{default:e.withCtx(()=>[e.createVNode(e.unref(S.Table),e.mergeProps(e.unref(d.omit)(o,["name","maxLength"]),{class:[e.unref(f)(),e.unref(D)==="admin"?e.unref(f)("admin"):null],columns:e.unref(R),"data-source":r.value}),e.createSlots({headerCell:e.withCtx(({column:a})=>[e.unref(_.getColumnIsRequired)(a)?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createElementVNode("span",{class:e.normalizeClass(e.unref(y)("header-cell","required"))},"*",2),e.createElementVNode("span",null,e.toDisplayString(a.title),1)],64)):e.createCommentVNode("",!0)]),_:2},[e.renderList(b,(a,s)=>({name:s,fn:e.withCtx(u=>[e.renderSlot(n.$slots,s,e.normalizeProps(e.guardReactiveProps(u||{})))])}))]),1040,["class","columns","data-source"])]),_:3},16,["name","label"]))}});exports.default=j;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={name:"en",ap:{button:{prefix:"Prefix"},icon:{picker:{placeholder:"Click the select icon",search:"Search icon",copy:"Copy icon successfully!"}},form:{item:{apiSelect:{loadingTip:"Wait for data loading to complete..."}},maxTip:"The number of characters should be less than {count}"},common:{okText:"OK",cancelText:"Cancel",resetText:"Reset",queryText:"Search",expandText:"Unfold",closeText:"Put away",inputText:"Please enter",chooseText:"Please choose",redo:"Refresh",back:"Back"},cropper:{modalTitle:"Avatar upload",okText:"Confirm and upload ",selectImage:"Select Image",rotateLeft:"Counterclockwise rotation",rotateRight:"Clockwise rotation",scaleX:"Flip horizontal",scaleY:"Flip vertical",zoomIn:"Zoom in",zoomOut:"Zoom out",preview:"Preview",imageTooBig:"Image too big",uploadSuccess:"Uploaded success!"},modal:{restore:"Restore",maximize:"Maximize",close:"Close"},countdown:{normalText:"Get SMS code",sendText:"Reacquire in {sec}s"},table:{settingColumn:"Column settings",settingColumnShow:"Column display",settingIndexColumnShow:"Index Column",settingSelectColumnShow:"Selection Column",settingFixedLeft:"Fixed Left",settingFixedRight:"Fixed Right",settingFullScreen:"Full Screen",settingDens:"Density",settingDensDefault:"Default",settingDensMiddle:"Middle",settingDensSmall:"Compact",selectionBarTips:"{count} records selected.",selectionBarEmpty:"No records selected.",selectionBarClear:"Clear",total:"total of {total}",index:"Index"},apForm:{search:{search:"Search",reset:"Reset"}},apTable:{pagination:{totalLeft:"Total {total} items",totalRight:"Page {page}"}}}};exports.default=e;
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={name:"en",ap:{button:{prefix:"Prefix"},icon:{picker:{placeholder:"Click the select icon",search:"Search icon",copy:"Copy icon successfully!"}},form:{item:{apiSelect:{loadingTip:"Wait for data loading to complete..."}},maxTip:"The number of characters should be less than {count}"},common:{okText:"OK",cancelText:"Cancel",resetText:"Reset",queryText:"Search",expandText:"Unfold",closeText:"Put away",inputText:"Please enter",chooseText:"Please choose",redo:"Refresh",back:"Back",more:"More"},cropper:{modalTitle:"Avatar upload",okText:"Confirm and upload ",selectImage:"Select Image",rotateLeft:"Counterclockwise rotation",rotateRight:"Clockwise rotation",scaleX:"Flip horizontal",scaleY:"Flip vertical",zoomIn:"Zoom in",zoomOut:"Zoom out",preview:"Preview",imageTooBig:"Image too big",uploadSuccess:"Uploaded success!"},modal:{restore:"Restore",maximize:"Maximize",close:"Close"},countdown:{normalText:"Get SMS code",sendText:"Reacquire in {sec}s"},table:{settingColumn:"Column settings",settingColumnShow:"Column display",settingIndexColumnShow:"Index Column",settingSelectColumnShow:"Selection Column",settingFixedLeft:"Fixed Left",settingFixedRight:"Fixed Right",settingFullScreen:"Full Screen",settingDens:"Density",settingDensDefault:"Default",settingDensMiddle:"Middle",settingDensSmall:"Compact",selectionBarTips:"{count} records selected.",selectionBarEmpty:"No records selected.",selectionBarClear:"Clear",total:"total of {total}",index:"Index"},apForm:{search:{search:"Search",reset:"Reset"}},apTable:{pagination:{totalLeft:"Total {total} items",totalRight:"Page {page}"}}}};exports.default=e;
|