@aplus-frontend/ui 0.1.42 → 0.1.44
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-field/hooks/use-default-placeholder.mjs +14 -14
- package/es/src/ap-table/ap-table.vue.mjs +102 -107
- package/es/src/ap-table/constants.d.ts +160 -160
- package/es/src/ap-table/utils.d.ts +162 -170
- package/es/src/ap-table/utils.mjs +69 -80
- package/es/src/check-card/group.vue.mjs +23 -22
- package/es/src/editable-table/hooks/use-get-columns.mjs +29 -34
- package/es/src/locale/lang/en.mjs +4 -0
- package/es/src/locale/lang/zh-cn.mjs +4 -0
- package/lib/src/ap-field/hooks/use-default-placeholder.js +1 -1
- package/lib/src/ap-table/ap-table.vue.js +1 -1
- package/lib/src/ap-table/constants.d.ts +160 -160
- package/lib/src/ap-table/utils.d.ts +162 -170
- package/lib/src/ap-table/utils.js +1 -1
- package/lib/src/check-card/group.vue.js +1 -1
- package/lib/src/editable-table/hooks/use-get-columns.js +1 -1
- package/lib/src/locale/lang/en.js +1 -1
- package/lib/src/locale/lang/zh-cn.js +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ApColumnType,
|
|
2
|
-
import {
|
|
1
|
+
import { ApColumnType, ValueEnum, ValueEnumType } from './interface';
|
|
2
|
+
import { ValueTypeRenderConfig } from '../config-provider';
|
|
3
3
|
import { apTableRenderItemMap } from './constants';
|
|
4
4
|
import { VNode, CreateComponentPublicInstance, ExtractPropTypes, PropType, HTMLAttributes, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, VNodeArrayChildren } from 'vue';
|
|
5
5
|
import { ApFormItemTransformType, ApFieldTextPasswordProps, ApFormItemSlots, ApFieldTextProps, ApFormItemTextPassword, ApFieldTextAreaProps, ApFieldNumberProps, ApFieldDateProps, ApFieldDateRangeProps, ApFieldRadioProps, ApFieldSelectProps, ApFieldSwitchProps, ApFieldCheckboxProps } from '..';
|
|
@@ -44,14 +44,6 @@ export declare const valueEnumToArray: (valueEnumParams: ValueEnum) => Partial<O
|
|
|
44
44
|
* @returns
|
|
45
45
|
*/
|
|
46
46
|
export declare const getColumnOrder: (order?: number) => number;
|
|
47
|
-
/**
|
|
48
|
-
* 获取查询表单的placeholder
|
|
49
|
-
* @param t
|
|
50
|
-
* @param valueType
|
|
51
|
-
* @param placeholder
|
|
52
|
-
* @returns
|
|
53
|
-
*/
|
|
54
|
-
export declare const getPlaceholder: (t: Translator, valueType?: keyof ApTableValueFields, placeholder?: string) => string | string[] | undefined;
|
|
55
47
|
/**
|
|
56
48
|
* 获取对象形式的FieldProps
|
|
57
49
|
* @param fieldProps
|
|
@@ -131,6 +123,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
131
123
|
placeholder: {
|
|
132
124
|
type: PropType<string>;
|
|
133
125
|
};
|
|
126
|
+
field: {
|
|
127
|
+
type: PropType<Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">>;
|
|
128
|
+
default: () => {};
|
|
129
|
+
};
|
|
134
130
|
xxl: {
|
|
135
131
|
type: PropType<string | number | ColSize>;
|
|
136
132
|
};
|
|
@@ -152,10 +148,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
152
148
|
pull: {
|
|
153
149
|
type: PropType<string | number>;
|
|
154
150
|
};
|
|
155
|
-
field: {
|
|
156
|
-
type: PropType<Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">>;
|
|
157
|
-
default: () => {};
|
|
158
|
-
};
|
|
159
151
|
rules: {
|
|
160
152
|
type: PropType< RuleObject | RuleObject[]>;
|
|
161
153
|
};
|
|
@@ -332,6 +324,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
332
324
|
placeholder: {
|
|
333
325
|
type: PropType<string>;
|
|
334
326
|
};
|
|
327
|
+
field: {
|
|
328
|
+
type: PropType<Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">>;
|
|
329
|
+
default: () => {};
|
|
330
|
+
};
|
|
335
331
|
xxl: {
|
|
336
332
|
type: PropType<string | number | ColSize>;
|
|
337
333
|
};
|
|
@@ -353,10 +349,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
353
349
|
pull: {
|
|
354
350
|
type: PropType<string | number>;
|
|
355
351
|
};
|
|
356
|
-
field: {
|
|
357
|
-
type: PropType<Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">>;
|
|
358
|
-
default: () => {};
|
|
359
|
-
};
|
|
360
352
|
rules: {
|
|
361
353
|
type: PropType< RuleObject | RuleObject[]>;
|
|
362
354
|
};
|
|
@@ -545,6 +537,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
545
537
|
placeholder: {
|
|
546
538
|
type: PropType<string>;
|
|
547
539
|
};
|
|
540
|
+
field: {
|
|
541
|
+
type: PropType<Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">>;
|
|
542
|
+
default: () => {};
|
|
543
|
+
};
|
|
548
544
|
xxl: {
|
|
549
545
|
type: PropType<string | number | ColSize>;
|
|
550
546
|
};
|
|
@@ -566,10 +562,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
566
562
|
pull: {
|
|
567
563
|
type: PropType<string | number>;
|
|
568
564
|
};
|
|
569
|
-
field: {
|
|
570
|
-
type: PropType<Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">>;
|
|
571
|
-
default: () => {};
|
|
572
|
-
};
|
|
573
565
|
rules: {
|
|
574
566
|
type: PropType< RuleObject | RuleObject[]>;
|
|
575
567
|
};
|
|
@@ -758,6 +750,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
758
750
|
placeholder: {
|
|
759
751
|
type: PropType<string>;
|
|
760
752
|
};
|
|
753
|
+
field: {
|
|
754
|
+
type: PropType<Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">>;
|
|
755
|
+
default: () => {};
|
|
756
|
+
};
|
|
761
757
|
xxl: {
|
|
762
758
|
type: PropType<string | number | ColSize>;
|
|
763
759
|
};
|
|
@@ -779,10 +775,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
779
775
|
pull: {
|
|
780
776
|
type: PropType<string | number>;
|
|
781
777
|
};
|
|
782
|
-
field: {
|
|
783
|
-
type: PropType<Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">>;
|
|
784
|
-
default: () => {};
|
|
785
|
-
};
|
|
786
778
|
rules: {
|
|
787
779
|
type: PropType< RuleObject | RuleObject[]>;
|
|
788
780
|
};
|
|
@@ -984,6 +976,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
984
976
|
placeholder: {
|
|
985
977
|
type: PropType<string>;
|
|
986
978
|
};
|
|
979
|
+
field: {
|
|
980
|
+
type: PropType<Omit< ApFieldTextProps, "value" | "onUpdate:value">>;
|
|
981
|
+
default: () => {};
|
|
982
|
+
};
|
|
987
983
|
xxl: {
|
|
988
984
|
type: PropType<string | number | ColSize>;
|
|
989
985
|
};
|
|
@@ -1005,10 +1001,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1005
1001
|
pull: {
|
|
1006
1002
|
type: PropType<string | number>;
|
|
1007
1003
|
};
|
|
1008
|
-
field: {
|
|
1009
|
-
type: PropType<Omit< ApFieldTextProps, "value" | "onUpdate:value">>;
|
|
1010
|
-
default: () => {};
|
|
1011
|
-
};
|
|
1012
1004
|
rules: {
|
|
1013
1005
|
type: PropType< RuleObject | RuleObject[]>;
|
|
1014
1006
|
};
|
|
@@ -1188,6 +1180,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1188
1180
|
placeholder: {
|
|
1189
1181
|
type: PropType<string>;
|
|
1190
1182
|
};
|
|
1183
|
+
field: {
|
|
1184
|
+
type: PropType<Omit< ApFieldTextProps, "value" | "onUpdate:value">>;
|
|
1185
|
+
default: () => {};
|
|
1186
|
+
};
|
|
1191
1187
|
xxl: {
|
|
1192
1188
|
type: PropType<string | number | ColSize>;
|
|
1193
1189
|
};
|
|
@@ -1209,10 +1205,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1209
1205
|
pull: {
|
|
1210
1206
|
type: PropType<string | number>;
|
|
1211
1207
|
};
|
|
1212
|
-
field: {
|
|
1213
|
-
type: PropType<Omit< ApFieldTextProps, "value" | "onUpdate:value">>;
|
|
1214
|
-
default: () => {};
|
|
1215
|
-
};
|
|
1216
1208
|
rules: {
|
|
1217
1209
|
type: PropType< RuleObject | RuleObject[]>;
|
|
1218
1210
|
};
|
|
@@ -1401,6 +1393,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1401
1393
|
placeholder: {
|
|
1402
1394
|
type: PropType<string>;
|
|
1403
1395
|
};
|
|
1396
|
+
field: {
|
|
1397
|
+
type: PropType<Omit< ApFieldTextProps, "value" | "onUpdate:value">>;
|
|
1398
|
+
default: () => {};
|
|
1399
|
+
};
|
|
1404
1400
|
xxl: {
|
|
1405
1401
|
type: PropType<string | number | ColSize>;
|
|
1406
1402
|
};
|
|
@@ -1422,10 +1418,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1422
1418
|
pull: {
|
|
1423
1419
|
type: PropType<string | number>;
|
|
1424
1420
|
};
|
|
1425
|
-
field: {
|
|
1426
|
-
type: PropType<Omit< ApFieldTextProps, "value" | "onUpdate:value">>;
|
|
1427
|
-
default: () => {};
|
|
1428
|
-
};
|
|
1429
1421
|
rules: {
|
|
1430
1422
|
type: PropType< RuleObject | RuleObject[]>;
|
|
1431
1423
|
};
|
|
@@ -1617,6 +1609,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1617
1609
|
placeholder: {
|
|
1618
1610
|
type: PropType<string>;
|
|
1619
1611
|
};
|
|
1612
|
+
field: {
|
|
1613
|
+
type: PropType<Omit< ApFieldTextProps, "value" | "onUpdate:value">>;
|
|
1614
|
+
default: () => {};
|
|
1615
|
+
};
|
|
1620
1616
|
xxl: {
|
|
1621
1617
|
type: PropType<string | number | ColSize>;
|
|
1622
1618
|
};
|
|
@@ -1638,10 +1634,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1638
1634
|
pull: {
|
|
1639
1635
|
type: PropType<string | number>;
|
|
1640
1636
|
};
|
|
1641
|
-
field: {
|
|
1642
|
-
type: PropType<Omit< ApFieldTextProps, "value" | "onUpdate:value">>;
|
|
1643
|
-
default: () => {};
|
|
1644
|
-
};
|
|
1645
1637
|
rules: {
|
|
1646
1638
|
type: PropType< RuleObject | RuleObject[]>;
|
|
1647
1639
|
};
|
|
@@ -1843,6 +1835,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1843
1835
|
placeholder: {
|
|
1844
1836
|
type: PropType<string>;
|
|
1845
1837
|
};
|
|
1838
|
+
field: {
|
|
1839
|
+
type: PropType<Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">>;
|
|
1840
|
+
default: () => {};
|
|
1841
|
+
};
|
|
1846
1842
|
xxl: {
|
|
1847
1843
|
type: PropType<string | number | ColSize>;
|
|
1848
1844
|
};
|
|
@@ -1864,10 +1860,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1864
1860
|
pull: {
|
|
1865
1861
|
type: PropType<string | number>;
|
|
1866
1862
|
};
|
|
1867
|
-
field: {
|
|
1868
|
-
type: PropType<Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">>;
|
|
1869
|
-
default: () => {};
|
|
1870
|
-
};
|
|
1871
1863
|
rules: {
|
|
1872
1864
|
type: PropType< RuleObject | RuleObject[]>;
|
|
1873
1865
|
};
|
|
@@ -2042,6 +2034,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2042
2034
|
placeholder: {
|
|
2043
2035
|
type: PropType<string>;
|
|
2044
2036
|
};
|
|
2037
|
+
field: {
|
|
2038
|
+
type: PropType<Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">>;
|
|
2039
|
+
default: () => {};
|
|
2040
|
+
};
|
|
2045
2041
|
xxl: {
|
|
2046
2042
|
type: PropType<string | number | ColSize>;
|
|
2047
2043
|
};
|
|
@@ -2063,10 +2059,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2063
2059
|
pull: {
|
|
2064
2060
|
type: PropType<string | number>;
|
|
2065
2061
|
};
|
|
2066
|
-
field: {
|
|
2067
|
-
type: PropType<Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">>;
|
|
2068
|
-
default: () => {};
|
|
2069
|
-
};
|
|
2070
2062
|
rules: {
|
|
2071
2063
|
type: PropType< RuleObject | RuleObject[]>;
|
|
2072
2064
|
};
|
|
@@ -2252,6 +2244,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2252
2244
|
placeholder: {
|
|
2253
2245
|
type: PropType<string>;
|
|
2254
2246
|
};
|
|
2247
|
+
field: {
|
|
2248
|
+
type: PropType<Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">>;
|
|
2249
|
+
default: () => {};
|
|
2250
|
+
};
|
|
2255
2251
|
xxl: {
|
|
2256
2252
|
type: PropType<string | number | ColSize>;
|
|
2257
2253
|
};
|
|
@@ -2273,10 +2269,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2273
2269
|
pull: {
|
|
2274
2270
|
type: PropType<string | number>;
|
|
2275
2271
|
};
|
|
2276
|
-
field: {
|
|
2277
|
-
type: PropType<Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">>;
|
|
2278
|
-
default: () => {};
|
|
2279
|
-
};
|
|
2280
2272
|
rules: {
|
|
2281
2273
|
type: PropType< RuleObject | RuleObject[]>;
|
|
2282
2274
|
};
|
|
@@ -2463,6 +2455,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2463
2455
|
placeholder: {
|
|
2464
2456
|
type: PropType<string>;
|
|
2465
2457
|
};
|
|
2458
|
+
field: {
|
|
2459
|
+
type: PropType<Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">>;
|
|
2460
|
+
default: () => {};
|
|
2461
|
+
};
|
|
2466
2462
|
xxl: {
|
|
2467
2463
|
type: PropType<string | number | ColSize>;
|
|
2468
2464
|
};
|
|
@@ -2484,10 +2480,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2484
2480
|
pull: {
|
|
2485
2481
|
type: PropType<string | number>;
|
|
2486
2482
|
};
|
|
2487
|
-
field: {
|
|
2488
|
-
type: PropType<Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">>;
|
|
2489
|
-
default: () => {};
|
|
2490
|
-
};
|
|
2491
2483
|
rules: {
|
|
2492
2484
|
type: PropType< RuleObject | RuleObject[]>;
|
|
2493
2485
|
};
|
|
@@ -2684,6 +2676,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2684
2676
|
placeholder: {
|
|
2685
2677
|
type: PropType<string>;
|
|
2686
2678
|
};
|
|
2679
|
+
field: {
|
|
2680
|
+
type: PropType<Omit< ApFieldNumberProps, "value" | "onUpdate:value">>;
|
|
2681
|
+
default: () => {};
|
|
2682
|
+
};
|
|
2687
2683
|
xxl: {
|
|
2688
2684
|
type: PropType<string | number | ColSize>;
|
|
2689
2685
|
};
|
|
@@ -2705,10 +2701,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2705
2701
|
pull: {
|
|
2706
2702
|
type: PropType<string | number>;
|
|
2707
2703
|
};
|
|
2708
|
-
field: {
|
|
2709
|
-
type: PropType<Omit< ApFieldNumberProps, "value" | "onUpdate:value">>;
|
|
2710
|
-
default: () => {};
|
|
2711
|
-
};
|
|
2712
2704
|
rules: {
|
|
2713
2705
|
type: PropType< RuleObject | RuleObject[]>;
|
|
2714
2706
|
};
|
|
@@ -2885,6 +2877,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2885
2877
|
placeholder: {
|
|
2886
2878
|
type: PropType<string>;
|
|
2887
2879
|
};
|
|
2880
|
+
field: {
|
|
2881
|
+
type: PropType<Omit< ApFieldNumberProps, "value" | "onUpdate:value">>;
|
|
2882
|
+
default: () => {};
|
|
2883
|
+
};
|
|
2888
2884
|
xxl: {
|
|
2889
2885
|
type: PropType<string | number | ColSize>;
|
|
2890
2886
|
};
|
|
@@ -2906,10 +2902,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
2906
2902
|
pull: {
|
|
2907
2903
|
type: PropType<string | number>;
|
|
2908
2904
|
};
|
|
2909
|
-
field: {
|
|
2910
|
-
type: PropType<Omit< ApFieldNumberProps, "value" | "onUpdate:value">>;
|
|
2911
|
-
default: () => {};
|
|
2912
|
-
};
|
|
2913
2905
|
rules: {
|
|
2914
2906
|
type: PropType< RuleObject | RuleObject[]>;
|
|
2915
2907
|
};
|
|
@@ -3098,6 +3090,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3098
3090
|
placeholder: {
|
|
3099
3091
|
type: PropType<string>;
|
|
3100
3092
|
};
|
|
3093
|
+
field: {
|
|
3094
|
+
type: PropType<Omit< ApFieldNumberProps, "value" | "onUpdate:value">>;
|
|
3095
|
+
default: () => {};
|
|
3096
|
+
};
|
|
3101
3097
|
xxl: {
|
|
3102
3098
|
type: PropType<string | number | ColSize>;
|
|
3103
3099
|
};
|
|
@@ -3119,10 +3115,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3119
3115
|
pull: {
|
|
3120
3116
|
type: PropType<string | number>;
|
|
3121
3117
|
};
|
|
3122
|
-
field: {
|
|
3123
|
-
type: PropType<Omit< ApFieldNumberProps, "value" | "onUpdate:value">>;
|
|
3124
|
-
default: () => {};
|
|
3125
|
-
};
|
|
3126
3118
|
rules: {
|
|
3127
3119
|
type: PropType< RuleObject | RuleObject[]>;
|
|
3128
3120
|
};
|
|
@@ -3311,6 +3303,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3311
3303
|
placeholder: {
|
|
3312
3304
|
type: PropType<string>;
|
|
3313
3305
|
};
|
|
3306
|
+
field: {
|
|
3307
|
+
type: PropType<Omit< ApFieldNumberProps, "value" | "onUpdate:value">>;
|
|
3308
|
+
default: () => {};
|
|
3309
|
+
};
|
|
3314
3310
|
xxl: {
|
|
3315
3311
|
type: PropType<string | number | ColSize>;
|
|
3316
3312
|
};
|
|
@@ -3332,10 +3328,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3332
3328
|
pull: {
|
|
3333
3329
|
type: PropType<string | number>;
|
|
3334
3330
|
};
|
|
3335
|
-
field: {
|
|
3336
|
-
type: PropType<Omit< ApFieldNumberProps, "value" | "onUpdate:value">>;
|
|
3337
|
-
default: () => {};
|
|
3338
|
-
};
|
|
3339
3331
|
rules: {
|
|
3340
3332
|
type: PropType< RuleObject | RuleObject[]>;
|
|
3341
3333
|
};
|
|
@@ -3537,6 +3529,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3537
3529
|
placeholder: {
|
|
3538
3530
|
type: PropType<string>;
|
|
3539
3531
|
};
|
|
3532
|
+
field: {
|
|
3533
|
+
type: PropType<Omit< ApFieldDateProps, "value" | "onUpdate:value">>;
|
|
3534
|
+
default: () => {};
|
|
3535
|
+
};
|
|
3540
3536
|
xxl: {
|
|
3541
3537
|
type: PropType<string | number | ColSize>;
|
|
3542
3538
|
};
|
|
@@ -3558,10 +3554,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3558
3554
|
pull: {
|
|
3559
3555
|
type: PropType<string | number>;
|
|
3560
3556
|
};
|
|
3561
|
-
field: {
|
|
3562
|
-
type: PropType<Omit< ApFieldDateProps, "value" | "onUpdate:value">>;
|
|
3563
|
-
default: () => {};
|
|
3564
|
-
};
|
|
3565
3557
|
rules: {
|
|
3566
3558
|
type: PropType< RuleObject | RuleObject[]>;
|
|
3567
3559
|
};
|
|
@@ -3735,6 +3727,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3735
3727
|
placeholder: {
|
|
3736
3728
|
type: PropType<string>;
|
|
3737
3729
|
};
|
|
3730
|
+
field: {
|
|
3731
|
+
type: PropType<Omit< ApFieldDateProps, "value" | "onUpdate:value">>;
|
|
3732
|
+
default: () => {};
|
|
3733
|
+
};
|
|
3738
3734
|
xxl: {
|
|
3739
3735
|
type: PropType<string | number | ColSize>;
|
|
3740
3736
|
};
|
|
@@ -3756,10 +3752,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3756
3752
|
pull: {
|
|
3757
3753
|
type: PropType<string | number>;
|
|
3758
3754
|
};
|
|
3759
|
-
field: {
|
|
3760
|
-
type: PropType<Omit< ApFieldDateProps, "value" | "onUpdate:value">>;
|
|
3761
|
-
default: () => {};
|
|
3762
|
-
};
|
|
3763
3755
|
rules: {
|
|
3764
3756
|
type: PropType< RuleObject | RuleObject[]>;
|
|
3765
3757
|
};
|
|
@@ -3948,6 +3940,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3948
3940
|
placeholder: {
|
|
3949
3941
|
type: PropType<string>;
|
|
3950
3942
|
};
|
|
3943
|
+
field: {
|
|
3944
|
+
type: PropType<Omit< ApFieldDateProps, "value" | "onUpdate:value">>;
|
|
3945
|
+
default: () => {};
|
|
3946
|
+
};
|
|
3951
3947
|
xxl: {
|
|
3952
3948
|
type: PropType<string | number | ColSize>;
|
|
3953
3949
|
};
|
|
@@ -3969,10 +3965,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
3969
3965
|
pull: {
|
|
3970
3966
|
type: PropType<string | number>;
|
|
3971
3967
|
};
|
|
3972
|
-
field: {
|
|
3973
|
-
type: PropType<Omit< ApFieldDateProps, "value" | "onUpdate:value">>;
|
|
3974
|
-
default: () => {};
|
|
3975
|
-
};
|
|
3976
3968
|
rules: {
|
|
3977
3969
|
type: PropType< RuleObject | RuleObject[]>;
|
|
3978
3970
|
};
|
|
@@ -4158,6 +4150,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
4158
4150
|
placeholder: {
|
|
4159
4151
|
type: PropType<string>;
|
|
4160
4152
|
};
|
|
4153
|
+
field: {
|
|
4154
|
+
type: PropType<Omit< ApFieldDateProps, "value" | "onUpdate:value">>;
|
|
4155
|
+
default: () => {};
|
|
4156
|
+
};
|
|
4161
4157
|
xxl: {
|
|
4162
4158
|
type: PropType<string | number | ColSize>;
|
|
4163
4159
|
};
|
|
@@ -4179,10 +4175,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
4179
4175
|
pull: {
|
|
4180
4176
|
type: PropType<string | number>;
|
|
4181
4177
|
};
|
|
4182
|
-
field: {
|
|
4183
|
-
type: PropType<Omit< ApFieldDateProps, "value" | "onUpdate:value">>;
|
|
4184
|
-
default: () => {};
|
|
4185
|
-
};
|
|
4186
4178
|
rules: {
|
|
4187
4179
|
type: PropType< RuleObject | RuleObject[]>;
|
|
4188
4180
|
};
|
|
@@ -4391,6 +4383,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
4391
4383
|
placeholder: {
|
|
4392
4384
|
type: PropType<[string, string]>;
|
|
4393
4385
|
};
|
|
4386
|
+
field: {
|
|
4387
|
+
type: PropType<Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">>;
|
|
4388
|
+
default: () => {};
|
|
4389
|
+
};
|
|
4394
4390
|
xxl: {
|
|
4395
4391
|
type: PropType<string | number | ColSize>;
|
|
4396
4392
|
};
|
|
@@ -4412,10 +4408,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
4412
4408
|
pull: {
|
|
4413
4409
|
type: PropType<string | number>;
|
|
4414
4410
|
};
|
|
4415
|
-
field: {
|
|
4416
|
-
type: PropType<Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">>;
|
|
4417
|
-
default: () => {};
|
|
4418
|
-
};
|
|
4419
4411
|
rules: {
|
|
4420
4412
|
type: PropType< RuleObject | RuleObject[]>;
|
|
4421
4413
|
};
|
|
@@ -4589,6 +4581,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
4589
4581
|
placeholder: {
|
|
4590
4582
|
type: PropType<[string, string]>;
|
|
4591
4583
|
};
|
|
4584
|
+
field: {
|
|
4585
|
+
type: PropType<Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">>;
|
|
4586
|
+
default: () => {};
|
|
4587
|
+
};
|
|
4592
4588
|
xxl: {
|
|
4593
4589
|
type: PropType<string | number | ColSize>;
|
|
4594
4590
|
};
|
|
@@ -4610,10 +4606,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
4610
4606
|
pull: {
|
|
4611
4607
|
type: PropType<string | number>;
|
|
4612
4608
|
};
|
|
4613
|
-
field: {
|
|
4614
|
-
type: PropType<Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">>;
|
|
4615
|
-
default: () => {};
|
|
4616
|
-
};
|
|
4617
4609
|
rules: {
|
|
4618
4610
|
type: PropType< RuleObject | RuleObject[]>;
|
|
4619
4611
|
};
|
|
@@ -4802,6 +4794,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
4802
4794
|
placeholder: {
|
|
4803
4795
|
type: PropType<[string, string]>;
|
|
4804
4796
|
};
|
|
4797
|
+
field: {
|
|
4798
|
+
type: PropType<Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">>;
|
|
4799
|
+
default: () => {};
|
|
4800
|
+
};
|
|
4805
4801
|
xxl: {
|
|
4806
4802
|
type: PropType<string | number | ColSize>;
|
|
4807
4803
|
};
|
|
@@ -4823,10 +4819,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
4823
4819
|
pull: {
|
|
4824
4820
|
type: PropType<string | number>;
|
|
4825
4821
|
};
|
|
4826
|
-
field: {
|
|
4827
|
-
type: PropType<Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">>;
|
|
4828
|
-
default: () => {};
|
|
4829
|
-
};
|
|
4830
4822
|
rules: {
|
|
4831
4823
|
type: PropType< RuleObject | RuleObject[]>;
|
|
4832
4824
|
};
|
|
@@ -5012,6 +5004,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5012
5004
|
placeholder: {
|
|
5013
5005
|
type: PropType<[string, string]>;
|
|
5014
5006
|
};
|
|
5007
|
+
field: {
|
|
5008
|
+
type: PropType<Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">>;
|
|
5009
|
+
default: () => {};
|
|
5010
|
+
};
|
|
5015
5011
|
xxl: {
|
|
5016
5012
|
type: PropType<string | number | ColSize>;
|
|
5017
5013
|
};
|
|
@@ -5033,10 +5029,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5033
5029
|
pull: {
|
|
5034
5030
|
type: PropType<string | number>;
|
|
5035
5031
|
};
|
|
5036
|
-
field: {
|
|
5037
|
-
type: PropType<Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">>;
|
|
5038
|
-
default: () => {};
|
|
5039
|
-
};
|
|
5040
5032
|
rules: {
|
|
5041
5033
|
type: PropType< RuleObject | RuleObject[]>;
|
|
5042
5034
|
};
|
|
@@ -5237,6 +5229,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5237
5229
|
type: PropType<boolean>;
|
|
5238
5230
|
default: undefined;
|
|
5239
5231
|
};
|
|
5232
|
+
field: {
|
|
5233
|
+
type: PropType<Omit< ApFieldRadioProps, "value" | "onUpdate:value">>;
|
|
5234
|
+
default: () => {};
|
|
5235
|
+
};
|
|
5240
5236
|
xxl: {
|
|
5241
5237
|
type: PropType<string | number | ColSize>;
|
|
5242
5238
|
};
|
|
@@ -5258,10 +5254,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5258
5254
|
pull: {
|
|
5259
5255
|
type: PropType<string | number>;
|
|
5260
5256
|
};
|
|
5261
|
-
field: {
|
|
5262
|
-
type: PropType<Omit< ApFieldRadioProps, "value" | "onUpdate:value">>;
|
|
5263
|
-
default: () => {};
|
|
5264
|
-
};
|
|
5265
5257
|
rules: {
|
|
5266
5258
|
type: PropType< RuleObject | RuleObject[]>;
|
|
5267
5259
|
};
|
|
@@ -5432,6 +5424,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5432
5424
|
type: PropType<boolean>;
|
|
5433
5425
|
default: undefined;
|
|
5434
5426
|
};
|
|
5427
|
+
field: {
|
|
5428
|
+
type: PropType<Omit< ApFieldRadioProps, "value" | "onUpdate:value">>;
|
|
5429
|
+
default: () => {};
|
|
5430
|
+
};
|
|
5435
5431
|
xxl: {
|
|
5436
5432
|
type: PropType<string | number | ColSize>;
|
|
5437
5433
|
};
|
|
@@ -5453,10 +5449,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5453
5449
|
pull: {
|
|
5454
5450
|
type: PropType<string | number>;
|
|
5455
5451
|
};
|
|
5456
|
-
field: {
|
|
5457
|
-
type: PropType<Omit< ApFieldRadioProps, "value" | "onUpdate:value">>;
|
|
5458
|
-
default: () => {};
|
|
5459
|
-
};
|
|
5460
5452
|
rules: {
|
|
5461
5453
|
type: PropType< RuleObject | RuleObject[]>;
|
|
5462
5454
|
};
|
|
@@ -5639,6 +5631,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5639
5631
|
type: PropType<boolean>;
|
|
5640
5632
|
default: undefined;
|
|
5641
5633
|
};
|
|
5634
|
+
field: {
|
|
5635
|
+
type: PropType<Omit< ApFieldRadioProps, "value" | "onUpdate:value">>;
|
|
5636
|
+
default: () => {};
|
|
5637
|
+
};
|
|
5642
5638
|
xxl: {
|
|
5643
5639
|
type: PropType<string | number | ColSize>;
|
|
5644
5640
|
};
|
|
@@ -5660,10 +5656,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5660
5656
|
pull: {
|
|
5661
5657
|
type: PropType<string | number>;
|
|
5662
5658
|
};
|
|
5663
|
-
field: {
|
|
5664
|
-
type: PropType<Omit< ApFieldRadioProps, "value" | "onUpdate:value">>;
|
|
5665
|
-
default: () => {};
|
|
5666
|
-
};
|
|
5667
5659
|
rules: {
|
|
5668
5660
|
type: PropType< RuleObject | RuleObject[]>;
|
|
5669
5661
|
};
|
|
@@ -5846,6 +5838,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5846
5838
|
type: PropType<boolean>;
|
|
5847
5839
|
default: undefined;
|
|
5848
5840
|
};
|
|
5841
|
+
field: {
|
|
5842
|
+
type: PropType<Omit< ApFieldRadioProps, "value" | "onUpdate:value">>;
|
|
5843
|
+
default: () => {};
|
|
5844
|
+
};
|
|
5849
5845
|
xxl: {
|
|
5850
5846
|
type: PropType<string | number | ColSize>;
|
|
5851
5847
|
};
|
|
@@ -5867,10 +5863,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
5867
5863
|
pull: {
|
|
5868
5864
|
type: PropType<string | number>;
|
|
5869
5865
|
};
|
|
5870
|
-
field: {
|
|
5871
|
-
type: PropType<Omit< ApFieldRadioProps, "value" | "onUpdate:value">>;
|
|
5872
|
-
default: () => {};
|
|
5873
|
-
};
|
|
5874
5866
|
rules: {
|
|
5875
5867
|
type: PropType< RuleObject | RuleObject[]>;
|
|
5876
5868
|
};
|
|
@@ -6066,6 +6058,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6066
6058
|
placeholder: {
|
|
6067
6059
|
type: PropType<string>;
|
|
6068
6060
|
};
|
|
6061
|
+
field: {
|
|
6062
|
+
type: PropType<Omit< ApFieldSelectProps, "value" | "onUpdate:value">>;
|
|
6063
|
+
default: () => {};
|
|
6064
|
+
};
|
|
6069
6065
|
xxl: {
|
|
6070
6066
|
type: PropType<string | number | ColSize>;
|
|
6071
6067
|
};
|
|
@@ -6087,10 +6083,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6087
6083
|
pull: {
|
|
6088
6084
|
type: PropType<string | number>;
|
|
6089
6085
|
};
|
|
6090
|
-
field: {
|
|
6091
|
-
type: PropType<Omit< ApFieldSelectProps, "value" | "onUpdate:value">>;
|
|
6092
|
-
default: () => {};
|
|
6093
|
-
};
|
|
6094
6086
|
rules: {
|
|
6095
6087
|
type: PropType< RuleObject | RuleObject[]>;
|
|
6096
6088
|
};
|
|
@@ -6267,6 +6259,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6267
6259
|
placeholder: {
|
|
6268
6260
|
type: PropType<string>;
|
|
6269
6261
|
};
|
|
6262
|
+
field: {
|
|
6263
|
+
type: PropType<Omit< ApFieldSelectProps, "value" | "onUpdate:value">>;
|
|
6264
|
+
default: () => {};
|
|
6265
|
+
};
|
|
6270
6266
|
xxl: {
|
|
6271
6267
|
type: PropType<string | number | ColSize>;
|
|
6272
6268
|
};
|
|
@@ -6288,10 +6284,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6288
6284
|
pull: {
|
|
6289
6285
|
type: PropType<string | number>;
|
|
6290
6286
|
};
|
|
6291
|
-
field: {
|
|
6292
|
-
type: PropType<Omit< ApFieldSelectProps, "value" | "onUpdate:value">>;
|
|
6293
|
-
default: () => {};
|
|
6294
|
-
};
|
|
6295
6287
|
rules: {
|
|
6296
6288
|
type: PropType< RuleObject | RuleObject[]>;
|
|
6297
6289
|
};
|
|
@@ -6480,6 +6472,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6480
6472
|
placeholder: {
|
|
6481
6473
|
type: PropType<string>;
|
|
6482
6474
|
};
|
|
6475
|
+
field: {
|
|
6476
|
+
type: PropType<Omit< ApFieldSelectProps, "value" | "onUpdate:value">>;
|
|
6477
|
+
default: () => {};
|
|
6478
|
+
};
|
|
6483
6479
|
xxl: {
|
|
6484
6480
|
type: PropType<string | number | ColSize>;
|
|
6485
6481
|
};
|
|
@@ -6501,10 +6497,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6501
6497
|
pull: {
|
|
6502
6498
|
type: PropType<string | number>;
|
|
6503
6499
|
};
|
|
6504
|
-
field: {
|
|
6505
|
-
type: PropType<Omit< ApFieldSelectProps, "value" | "onUpdate:value">>;
|
|
6506
|
-
default: () => {};
|
|
6507
|
-
};
|
|
6508
6500
|
rules: {
|
|
6509
6501
|
type: PropType< RuleObject | RuleObject[]>;
|
|
6510
6502
|
};
|
|
@@ -6693,6 +6685,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6693
6685
|
placeholder: {
|
|
6694
6686
|
type: PropType<string>;
|
|
6695
6687
|
};
|
|
6688
|
+
field: {
|
|
6689
|
+
type: PropType<Omit< ApFieldSelectProps, "value" | "onUpdate:value">>;
|
|
6690
|
+
default: () => {};
|
|
6691
|
+
};
|
|
6696
6692
|
xxl: {
|
|
6697
6693
|
type: PropType<string | number | ColSize>;
|
|
6698
6694
|
};
|
|
@@ -6714,10 +6710,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6714
6710
|
pull: {
|
|
6715
6711
|
type: PropType<string | number>;
|
|
6716
6712
|
};
|
|
6717
|
-
field: {
|
|
6718
|
-
type: PropType<Omit< ApFieldSelectProps, "value" | "onUpdate:value">>;
|
|
6719
|
-
default: () => {};
|
|
6720
|
-
};
|
|
6721
6713
|
rules: {
|
|
6722
6714
|
type: PropType< RuleObject | RuleObject[]>;
|
|
6723
6715
|
};
|
|
@@ -6925,6 +6917,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6925
6917
|
type: PropType<boolean>;
|
|
6926
6918
|
default: undefined;
|
|
6927
6919
|
};
|
|
6920
|
+
field: {
|
|
6921
|
+
type: PropType<Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">>;
|
|
6922
|
+
default: () => {};
|
|
6923
|
+
};
|
|
6928
6924
|
xxl: {
|
|
6929
6925
|
type: PropType<string | number | ColSize>;
|
|
6930
6926
|
};
|
|
@@ -6946,10 +6942,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
6946
6942
|
pull: {
|
|
6947
6943
|
type: PropType<string | number>;
|
|
6948
6944
|
};
|
|
6949
|
-
field: {
|
|
6950
|
-
type: PropType<Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">>;
|
|
6951
|
-
default: () => {};
|
|
6952
|
-
};
|
|
6953
6945
|
rules: {
|
|
6954
6946
|
type: PropType< RuleObject | RuleObject[]>;
|
|
6955
6947
|
};
|
|
@@ -7118,6 +7110,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7118
7110
|
type: PropType<boolean>;
|
|
7119
7111
|
default: undefined;
|
|
7120
7112
|
};
|
|
7113
|
+
field: {
|
|
7114
|
+
type: PropType<Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">>;
|
|
7115
|
+
default: () => {};
|
|
7116
|
+
};
|
|
7121
7117
|
xxl: {
|
|
7122
7118
|
type: PropType<string | number | ColSize>;
|
|
7123
7119
|
};
|
|
@@ -7139,10 +7135,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7139
7135
|
pull: {
|
|
7140
7136
|
type: PropType<string | number>;
|
|
7141
7137
|
};
|
|
7142
|
-
field: {
|
|
7143
|
-
type: PropType<Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">>;
|
|
7144
|
-
default: () => {};
|
|
7145
|
-
};
|
|
7146
7138
|
rules: {
|
|
7147
7139
|
type: PropType< RuleObject | RuleObject[]>;
|
|
7148
7140
|
};
|
|
@@ -7327,6 +7319,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7327
7319
|
type: PropType<boolean>;
|
|
7328
7320
|
default: undefined;
|
|
7329
7321
|
};
|
|
7322
|
+
field: {
|
|
7323
|
+
type: PropType<Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">>;
|
|
7324
|
+
default: () => {};
|
|
7325
|
+
};
|
|
7330
7326
|
xxl: {
|
|
7331
7327
|
type: PropType<string | number | ColSize>;
|
|
7332
7328
|
};
|
|
@@ -7348,10 +7344,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7348
7344
|
pull: {
|
|
7349
7345
|
type: PropType<string | number>;
|
|
7350
7346
|
};
|
|
7351
|
-
field: {
|
|
7352
|
-
type: PropType<Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">>;
|
|
7353
|
-
default: () => {};
|
|
7354
|
-
};
|
|
7355
7347
|
rules: {
|
|
7356
7348
|
type: PropType< RuleObject | RuleObject[]>;
|
|
7357
7349
|
};
|
|
@@ -7533,6 +7525,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7533
7525
|
type: PropType<boolean>;
|
|
7534
7526
|
default: undefined;
|
|
7535
7527
|
};
|
|
7528
|
+
field: {
|
|
7529
|
+
type: PropType<Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">>;
|
|
7530
|
+
default: () => {};
|
|
7531
|
+
};
|
|
7536
7532
|
xxl: {
|
|
7537
7533
|
type: PropType<string | number | ColSize>;
|
|
7538
7534
|
};
|
|
@@ -7554,10 +7550,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7554
7550
|
pull: {
|
|
7555
7551
|
type: PropType<string | number>;
|
|
7556
7552
|
};
|
|
7557
|
-
field: {
|
|
7558
|
-
type: PropType<Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">>;
|
|
7559
|
-
default: () => {};
|
|
7560
|
-
};
|
|
7561
7553
|
rules: {
|
|
7562
7554
|
type: PropType< RuleObject | RuleObject[]>;
|
|
7563
7555
|
};
|
|
@@ -7746,6 +7738,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7746
7738
|
type: PropType<boolean>;
|
|
7747
7739
|
default: undefined;
|
|
7748
7740
|
};
|
|
7741
|
+
field: {
|
|
7742
|
+
type: PropType<Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">>;
|
|
7743
|
+
default: () => {};
|
|
7744
|
+
};
|
|
7749
7745
|
xxl: {
|
|
7750
7746
|
type: PropType<string | number | ColSize>;
|
|
7751
7747
|
};
|
|
@@ -7767,10 +7763,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7767
7763
|
pull: {
|
|
7768
7764
|
type: PropType<string | number>;
|
|
7769
7765
|
};
|
|
7770
|
-
field: {
|
|
7771
|
-
type: PropType<Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">>;
|
|
7772
|
-
default: () => {};
|
|
7773
|
-
};
|
|
7774
7766
|
rules: {
|
|
7775
7767
|
type: PropType< RuleObject | RuleObject[]>;
|
|
7776
7768
|
};
|
|
@@ -7938,6 +7930,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7938
7930
|
type: PropType<boolean>;
|
|
7939
7931
|
default: undefined;
|
|
7940
7932
|
};
|
|
7933
|
+
field: {
|
|
7934
|
+
type: PropType<Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">>;
|
|
7935
|
+
default: () => {};
|
|
7936
|
+
};
|
|
7941
7937
|
xxl: {
|
|
7942
7938
|
type: PropType<string | number | ColSize>;
|
|
7943
7939
|
};
|
|
@@ -7959,10 +7955,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
7959
7955
|
pull: {
|
|
7960
7956
|
type: PropType<string | number>;
|
|
7961
7957
|
};
|
|
7962
|
-
field: {
|
|
7963
|
-
type: PropType<Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">>;
|
|
7964
|
-
default: () => {};
|
|
7965
|
-
};
|
|
7966
7958
|
rules: {
|
|
7967
7959
|
type: PropType< RuleObject | RuleObject[]>;
|
|
7968
7960
|
};
|
|
@@ -8145,6 +8137,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
8145
8137
|
type: PropType<boolean>;
|
|
8146
8138
|
default: undefined;
|
|
8147
8139
|
};
|
|
8140
|
+
field: {
|
|
8141
|
+
type: PropType<Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">>;
|
|
8142
|
+
default: () => {};
|
|
8143
|
+
};
|
|
8148
8144
|
xxl: {
|
|
8149
8145
|
type: PropType<string | number | ColSize>;
|
|
8150
8146
|
};
|
|
@@ -8166,10 +8162,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
8166
8162
|
pull: {
|
|
8167
8163
|
type: PropType<string | number>;
|
|
8168
8164
|
};
|
|
8169
|
-
field: {
|
|
8170
|
-
type: PropType<Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">>;
|
|
8171
|
-
default: () => {};
|
|
8172
|
-
};
|
|
8173
8165
|
rules: {
|
|
8174
8166
|
type: PropType< RuleObject | RuleObject[]>;
|
|
8175
8167
|
};
|
|
@@ -8349,6 +8341,10 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
8349
8341
|
type: PropType<boolean>;
|
|
8350
8342
|
default: undefined;
|
|
8351
8343
|
};
|
|
8344
|
+
field: {
|
|
8345
|
+
type: PropType<Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">>;
|
|
8346
|
+
default: () => {};
|
|
8347
|
+
};
|
|
8352
8348
|
xxl: {
|
|
8353
8349
|
type: PropType<string | number | ColSize>;
|
|
8354
8350
|
};
|
|
@@ -8370,10 +8366,6 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
8370
8366
|
pull: {
|
|
8371
8367
|
type: PropType<string | number>;
|
|
8372
8368
|
};
|
|
8373
|
-
field: {
|
|
8374
|
-
type: PropType<Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">>;
|
|
8375
|
-
default: () => {};
|
|
8376
|
-
};
|
|
8377
8369
|
rules: {
|
|
8378
8370
|
type: PropType< RuleObject | RuleObject[]>;
|
|
8379
8371
|
};
|