yc-pro-components 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/components/form/index.d.ts +4 -4
- package/es/components/form/src/form-content.vue.d.ts +8 -2
- package/es/components/form/src/form-content.vue2.mjs +1 -1
- package/es/components/form/src/index.vue.d.ts +2 -2
- package/es/components/form/src/index.vue2.mjs +1 -1
- package/es/components/page/index.d.ts +24 -24
- package/es/components/page/src/index.vue.d.ts +8 -8
- package/es/components/search/index.d.ts +12 -12
- package/es/components/search/src/index.vue.d.ts +4 -4
- package/es/components/yc-plus-page/src/index.vue.d.ts +16 -16
- package/index.js +3 -3
- package/index.min.js +2 -2
- package/index.min.mjs +2 -2
- package/index.mjs +3 -3
- package/lib/components/form/index.d.ts +4 -4
- package/lib/components/form/src/form-content.vue.d.ts +8 -2
- package/lib/components/form/src/form-content.vue2.js +1 -1
- package/lib/components/form/src/index.vue.d.ts +2 -2
- package/lib/components/form/src/index.vue2.js +1 -1
- package/lib/components/page/index.d.ts +24 -24
- package/lib/components/page/src/index.vue.d.ts +8 -8
- package/lib/components/search/index.d.ts +12 -12
- package/lib/components/search/src/index.vue.d.ts +4 -4
- package/lib/components/yc-plus-page/src/index.vue.d.ts +16 -16
- 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/ja.js +1 -1
- package/locale/ja.min.js +1 -1
- package/locale/ja.min.mjs +1 -1
- package/locale/ja.mjs +1 -1
- package/locale/ko.js +1 -1
- package/locale/ko.min.js +1 -1
- package/locale/ko.min.mjs +1 -1
- package/locale/ko.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/locale/zh-tw.js +1 -1
- package/locale/zh-tw.min.js +1 -1
- package/locale/zh-tw.min.mjs +1 -1
- package/locale/zh-tw.mjs +1 -1
- package/package.json +1 -1
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/plus-drawer-form.css +1 -1
- package/theme-chalk/plus-form.css +1 -1
- package/theme-chalk/src/drawer-form.scss +6 -0
- package/theme-chalk/src/form.scss +31 -13
- package/theme-chalk/src/index.scss +10 -0
|
@@ -29,7 +29,7 @@ export declare const PlusForm: {
|
|
|
29
29
|
};
|
|
30
30
|
layout: {
|
|
31
31
|
type: PropType<"grid" | "flex">;
|
|
32
|
-
default:
|
|
32
|
+
default: undefined;
|
|
33
33
|
};
|
|
34
34
|
modelValue: {
|
|
35
35
|
type: PropType<FieldValues>;
|
|
@@ -434,7 +434,7 @@ export declare const PlusForm: {
|
|
|
434
434
|
};
|
|
435
435
|
layout: {
|
|
436
436
|
type: PropType<"grid" | "flex">;
|
|
437
|
-
default:
|
|
437
|
+
default: undefined;
|
|
438
438
|
};
|
|
439
439
|
modelValue: {
|
|
440
440
|
type: PropType<FieldValues>;
|
|
@@ -588,7 +588,7 @@ export declare const PlusForm: {
|
|
|
588
588
|
};
|
|
589
589
|
layout: {
|
|
590
590
|
type: PropType<"grid" | "flex">;
|
|
591
|
-
default:
|
|
591
|
+
default: undefined;
|
|
592
592
|
};
|
|
593
593
|
modelValue: {
|
|
594
594
|
type: PropType<FieldValues>;
|
|
@@ -1024,7 +1024,7 @@ export declare const PlusForm: {
|
|
|
1024
1024
|
};
|
|
1025
1025
|
layout: {
|
|
1026
1026
|
type: PropType<"grid" | "flex">;
|
|
1027
|
-
default:
|
|
1027
|
+
default: undefined;
|
|
1028
1028
|
};
|
|
1029
1029
|
modelValue: {
|
|
1030
1030
|
type: PropType<FieldValues>;
|
|
@@ -10,6 +10,12 @@ import { Ref, ComputedRef, DefineComponent, ComponentOptionsMixin, PublicProps,
|
|
|
10
10
|
export interface PlusFormContentProps {
|
|
11
11
|
modelValue?: FieldValues;
|
|
12
12
|
hasLabel?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* @desc 表单布局方式
|
|
15
|
+
* @version v0.1.15
|
|
16
|
+
* @default undefined (使用 Element Plus 的 Row/Col 布局)
|
|
17
|
+
* @values 'flex' | 'grid' | undefined
|
|
18
|
+
*/
|
|
13
19
|
layout?: 'grid' | 'flex';
|
|
14
20
|
columns?: PlusColumn[];
|
|
15
21
|
rowProps?: PlusRowProps;
|
|
@@ -36,7 +42,7 @@ export interface PlusFormContentEmits {
|
|
|
36
42
|
declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PlusFormContentProps>, {
|
|
37
43
|
modelValue: () => {};
|
|
38
44
|
hasLabel: boolean;
|
|
39
|
-
layout:
|
|
45
|
+
layout: undefined;
|
|
40
46
|
rowProps: () => {};
|
|
41
47
|
colProps: () => {};
|
|
42
48
|
columns: () => never[];
|
|
@@ -49,7 +55,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
49
55
|
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PlusFormContentProps>, {
|
|
50
56
|
modelValue: () => {};
|
|
51
57
|
hasLabel: boolean;
|
|
52
|
-
layout:
|
|
58
|
+
layout: undefined;
|
|
53
59
|
rowProps: () => {};
|
|
54
60
|
colProps: () => {};
|
|
55
61
|
columns: () => never[];
|
|
@@ -21,7 +21,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
21
21
|
props: {
|
|
22
22
|
modelValue: { default: () => ({}) },
|
|
23
23
|
hasLabel: { type: Boolean, default: true },
|
|
24
|
-
layout: { default:
|
|
24
|
+
layout: { default: void 0 },
|
|
25
25
|
columns: { default: () => [] },
|
|
26
26
|
rowProps: { default: () => ({}) },
|
|
27
27
|
colProps: { default: () => ({}) },
|
|
@@ -12,7 +12,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
12
12
|
defaultValues: () => {};
|
|
13
13
|
labelWidth: string;
|
|
14
14
|
labelPosition: string;
|
|
15
|
-
layout:
|
|
15
|
+
layout: undefined;
|
|
16
16
|
rowProps: () => {};
|
|
17
17
|
colProps: () => {};
|
|
18
18
|
labelSuffix: string;
|
|
@@ -329,7 +329,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
329
329
|
defaultValues: () => {};
|
|
330
330
|
labelWidth: string;
|
|
331
331
|
labelPosition: string;
|
|
332
|
-
layout:
|
|
332
|
+
layout: undefined;
|
|
333
333
|
rowProps: () => {};
|
|
334
334
|
colProps: () => {};
|
|
335
335
|
labelSuffix: string;
|
|
@@ -20,7 +20,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
20
20
|
columns: { default: () => [] },
|
|
21
21
|
labelWidth: { default: "80px" },
|
|
22
22
|
labelPosition: { default: "left" },
|
|
23
|
-
layout: { default:
|
|
23
|
+
layout: { default: void 0 },
|
|
24
24
|
rowProps: { default: () => ({}) },
|
|
25
25
|
colProps: { default: () => ({}) },
|
|
26
26
|
labelSuffix: { default: ":" },
|
|
@@ -446,7 +446,6 @@ export declare const PlusPage: {
|
|
|
446
446
|
}> & Omit<{
|
|
447
447
|
readonly columns: PlusColumn[];
|
|
448
448
|
readonly group: false | PlusFormGroupRow[];
|
|
449
|
-
readonly layout: "grid" | "flex";
|
|
450
449
|
readonly modelValue: FieldValues;
|
|
451
450
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
452
451
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -477,6 +476,7 @@ export declare const PlusPage: {
|
|
|
477
476
|
readonly clearable: boolean;
|
|
478
477
|
readonly collapseDuration?: number | undefined;
|
|
479
478
|
readonly collapseTransition?: boolean | undefined;
|
|
479
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
480
480
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
481
481
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
482
482
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -502,7 +502,7 @@ export declare const PlusPage: {
|
|
|
502
502
|
};
|
|
503
503
|
layout: {
|
|
504
504
|
type: PropType<"grid" | "flex">;
|
|
505
|
-
default:
|
|
505
|
+
default: undefined;
|
|
506
506
|
};
|
|
507
507
|
modelValue: {
|
|
508
508
|
type: PropType<FieldValues>;
|
|
@@ -629,7 +629,7 @@ export declare const PlusPage: {
|
|
|
629
629
|
};
|
|
630
630
|
layout: {
|
|
631
631
|
type: PropType<"grid" | "flex">;
|
|
632
|
-
default:
|
|
632
|
+
default: undefined;
|
|
633
633
|
};
|
|
634
634
|
modelValue: {
|
|
635
635
|
type: PropType<FieldValues>;
|
|
@@ -1088,7 +1088,7 @@ export declare const PlusPage: {
|
|
|
1088
1088
|
};
|
|
1089
1089
|
layout: {
|
|
1090
1090
|
type: PropType<"grid" | "flex">;
|
|
1091
|
-
default:
|
|
1091
|
+
default: undefined;
|
|
1092
1092
|
};
|
|
1093
1093
|
modelValue: {
|
|
1094
1094
|
type: PropType<FieldValues>;
|
|
@@ -1912,7 +1912,6 @@ export declare const PlusPage: {
|
|
|
1912
1912
|
}> & Omit<{
|
|
1913
1913
|
readonly columns: PlusColumn[];
|
|
1914
1914
|
readonly group: false | PlusFormGroupRow[];
|
|
1915
|
-
readonly layout: "grid" | "flex";
|
|
1916
1915
|
readonly modelValue: FieldValues;
|
|
1917
1916
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
1918
1917
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -1943,6 +1942,7 @@ export declare const PlusPage: {
|
|
|
1943
1942
|
readonly clearable: boolean;
|
|
1944
1943
|
readonly collapseDuration?: number | undefined;
|
|
1945
1944
|
readonly collapseTransition?: boolean | undefined;
|
|
1945
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
1946
1946
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
1947
1947
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
1948
1948
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -1968,7 +1968,7 @@ export declare const PlusPage: {
|
|
|
1968
1968
|
};
|
|
1969
1969
|
layout: {
|
|
1970
1970
|
type: PropType<"grid" | "flex">;
|
|
1971
|
-
default:
|
|
1971
|
+
default: undefined;
|
|
1972
1972
|
};
|
|
1973
1973
|
modelValue: {
|
|
1974
1974
|
type: PropType<FieldValues>;
|
|
@@ -2095,7 +2095,7 @@ export declare const PlusPage: {
|
|
|
2095
2095
|
};
|
|
2096
2096
|
layout: {
|
|
2097
2097
|
type: PropType<"grid" | "flex">;
|
|
2098
|
-
default:
|
|
2098
|
+
default: undefined;
|
|
2099
2099
|
};
|
|
2100
2100
|
modelValue: {
|
|
2101
2101
|
type: PropType<FieldValues>;
|
|
@@ -2554,7 +2554,7 @@ export declare const PlusPage: {
|
|
|
2554
2554
|
};
|
|
2555
2555
|
layout: {
|
|
2556
2556
|
type: PropType<"grid" | "flex">;
|
|
2557
|
-
default:
|
|
2557
|
+
default: undefined;
|
|
2558
2558
|
};
|
|
2559
2559
|
modelValue: {
|
|
2560
2560
|
type: PropType<FieldValues>;
|
|
@@ -5666,7 +5666,6 @@ export declare const PlusPage: {
|
|
|
5666
5666
|
}> & Omit<{
|
|
5667
5667
|
readonly columns: PlusColumn[];
|
|
5668
5668
|
readonly group: false | PlusFormGroupRow[];
|
|
5669
|
-
readonly layout: "grid" | "flex";
|
|
5670
5669
|
readonly modelValue: FieldValues;
|
|
5671
5670
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
5672
5671
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -5697,6 +5696,7 @@ export declare const PlusPage: {
|
|
|
5697
5696
|
readonly clearable: boolean;
|
|
5698
5697
|
readonly collapseDuration?: number | undefined;
|
|
5699
5698
|
readonly collapseTransition?: boolean | undefined;
|
|
5699
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
5700
5700
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
5701
5701
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
5702
5702
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -5722,7 +5722,7 @@ export declare const PlusPage: {
|
|
|
5722
5722
|
};
|
|
5723
5723
|
layout: {
|
|
5724
5724
|
type: PropType<"grid" | "flex">;
|
|
5725
|
-
default:
|
|
5725
|
+
default: undefined;
|
|
5726
5726
|
};
|
|
5727
5727
|
modelValue: {
|
|
5728
5728
|
type: PropType<FieldValues>;
|
|
@@ -5849,7 +5849,7 @@ export declare const PlusPage: {
|
|
|
5849
5849
|
};
|
|
5850
5850
|
layout: {
|
|
5851
5851
|
type: PropType<"grid" | "flex">;
|
|
5852
|
-
default:
|
|
5852
|
+
default: undefined;
|
|
5853
5853
|
};
|
|
5854
5854
|
modelValue: {
|
|
5855
5855
|
type: PropType<FieldValues>;
|
|
@@ -6308,7 +6308,7 @@ export declare const PlusPage: {
|
|
|
6308
6308
|
};
|
|
6309
6309
|
layout: {
|
|
6310
6310
|
type: PropType<"grid" | "flex">;
|
|
6311
|
-
default:
|
|
6311
|
+
default: undefined;
|
|
6312
6312
|
};
|
|
6313
6313
|
modelValue: {
|
|
6314
6314
|
type: PropType<FieldValues>;
|
|
@@ -7132,7 +7132,6 @@ export declare const PlusPage: {
|
|
|
7132
7132
|
}> & Omit<{
|
|
7133
7133
|
readonly columns: PlusColumn[];
|
|
7134
7134
|
readonly group: false | PlusFormGroupRow[];
|
|
7135
|
-
readonly layout: "grid" | "flex";
|
|
7136
7135
|
readonly modelValue: FieldValues;
|
|
7137
7136
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
7138
7137
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -7163,6 +7162,7 @@ export declare const PlusPage: {
|
|
|
7163
7162
|
readonly clearable: boolean;
|
|
7164
7163
|
readonly collapseDuration?: number | undefined;
|
|
7165
7164
|
readonly collapseTransition?: boolean | undefined;
|
|
7165
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
7166
7166
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
7167
7167
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
7168
7168
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -7188,7 +7188,7 @@ export declare const PlusPage: {
|
|
|
7188
7188
|
};
|
|
7189
7189
|
layout: {
|
|
7190
7190
|
type: PropType<"grid" | "flex">;
|
|
7191
|
-
default:
|
|
7191
|
+
default: undefined;
|
|
7192
7192
|
};
|
|
7193
7193
|
modelValue: {
|
|
7194
7194
|
type: PropType<FieldValues>;
|
|
@@ -7315,7 +7315,7 @@ export declare const PlusPage: {
|
|
|
7315
7315
|
};
|
|
7316
7316
|
layout: {
|
|
7317
7317
|
type: PropType<"grid" | "flex">;
|
|
7318
|
-
default:
|
|
7318
|
+
default: undefined;
|
|
7319
7319
|
};
|
|
7320
7320
|
modelValue: {
|
|
7321
7321
|
type: PropType<FieldValues>;
|
|
@@ -7774,7 +7774,7 @@ export declare const PlusPage: {
|
|
|
7774
7774
|
};
|
|
7775
7775
|
layout: {
|
|
7776
7776
|
type: PropType<"grid" | "flex">;
|
|
7777
|
-
default:
|
|
7777
|
+
default: undefined;
|
|
7778
7778
|
};
|
|
7779
7779
|
modelValue: {
|
|
7780
7780
|
type: PropType<FieldValues>;
|
|
@@ -10773,7 +10773,6 @@ export declare const PlusPage: {
|
|
|
10773
10773
|
}> & Omit<{
|
|
10774
10774
|
readonly columns: PlusColumn[];
|
|
10775
10775
|
readonly group: false | PlusFormGroupRow[];
|
|
10776
|
-
readonly layout: "grid" | "flex";
|
|
10777
10776
|
readonly modelValue: FieldValues;
|
|
10778
10777
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
10779
10778
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -10804,6 +10803,7 @@ export declare const PlusPage: {
|
|
|
10804
10803
|
readonly clearable: boolean;
|
|
10805
10804
|
readonly collapseDuration?: number | undefined;
|
|
10806
10805
|
readonly collapseTransition?: boolean | undefined;
|
|
10806
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
10807
10807
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
10808
10808
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
10809
10809
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -10829,7 +10829,7 @@ export declare const PlusPage: {
|
|
|
10829
10829
|
};
|
|
10830
10830
|
layout: {
|
|
10831
10831
|
type: PropType<"grid" | "flex">;
|
|
10832
|
-
default:
|
|
10832
|
+
default: undefined;
|
|
10833
10833
|
};
|
|
10834
10834
|
modelValue: {
|
|
10835
10835
|
type: PropType<FieldValues>;
|
|
@@ -10956,7 +10956,7 @@ export declare const PlusPage: {
|
|
|
10956
10956
|
};
|
|
10957
10957
|
layout: {
|
|
10958
10958
|
type: PropType<"grid" | "flex">;
|
|
10959
|
-
default:
|
|
10959
|
+
default: undefined;
|
|
10960
10960
|
};
|
|
10961
10961
|
modelValue: {
|
|
10962
10962
|
type: PropType<FieldValues>;
|
|
@@ -11415,7 +11415,7 @@ export declare const PlusPage: {
|
|
|
11415
11415
|
};
|
|
11416
11416
|
layout: {
|
|
11417
11417
|
type: PropType<"grid" | "flex">;
|
|
11418
|
-
default:
|
|
11418
|
+
default: undefined;
|
|
11419
11419
|
};
|
|
11420
11420
|
modelValue: {
|
|
11421
11421
|
type: PropType<FieldValues>;
|
|
@@ -12239,7 +12239,6 @@ export declare const PlusPage: {
|
|
|
12239
12239
|
}> & Omit<{
|
|
12240
12240
|
readonly columns: PlusColumn[];
|
|
12241
12241
|
readonly group: false | PlusFormGroupRow[];
|
|
12242
|
-
readonly layout: "grid" | "flex";
|
|
12243
12242
|
readonly modelValue: FieldValues;
|
|
12244
12243
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
12245
12244
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -12270,6 +12269,7 @@ export declare const PlusPage: {
|
|
|
12270
12269
|
readonly clearable: boolean;
|
|
12271
12270
|
readonly collapseDuration?: number | undefined;
|
|
12272
12271
|
readonly collapseTransition?: boolean | undefined;
|
|
12272
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
12273
12273
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
12274
12274
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
12275
12275
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -12295,7 +12295,7 @@ export declare const PlusPage: {
|
|
|
12295
12295
|
};
|
|
12296
12296
|
layout: {
|
|
12297
12297
|
type: PropType<"grid" | "flex">;
|
|
12298
|
-
default:
|
|
12298
|
+
default: undefined;
|
|
12299
12299
|
};
|
|
12300
12300
|
modelValue: {
|
|
12301
12301
|
type: PropType<FieldValues>;
|
|
@@ -12422,7 +12422,7 @@ export declare const PlusPage: {
|
|
|
12422
12422
|
};
|
|
12423
12423
|
layout: {
|
|
12424
12424
|
type: PropType<"grid" | "flex">;
|
|
12425
|
-
default:
|
|
12425
|
+
default: undefined;
|
|
12426
12426
|
};
|
|
12427
12427
|
modelValue: {
|
|
12428
12428
|
type: PropType<FieldValues>;
|
|
@@ -12881,7 +12881,7 @@ export declare const PlusPage: {
|
|
|
12881
12881
|
};
|
|
12882
12882
|
layout: {
|
|
12883
12883
|
type: PropType<"grid" | "flex">;
|
|
12884
|
-
default:
|
|
12884
|
+
default: undefined;
|
|
12885
12885
|
};
|
|
12886
12886
|
modelValue: {
|
|
12887
12887
|
type: PropType<FieldValues>;
|
|
@@ -466,7 +466,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
466
466
|
}> & Omit<{
|
|
467
467
|
readonly columns: PlusColumn[];
|
|
468
468
|
readonly group: false | PlusFormGroupRow[];
|
|
469
|
-
readonly layout: "grid" | "flex";
|
|
470
469
|
readonly modelValue: FieldValues;
|
|
471
470
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
472
471
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -497,6 +496,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
497
496
|
readonly clearable: boolean;
|
|
498
497
|
readonly collapseDuration?: number | undefined;
|
|
499
498
|
readonly collapseTransition?: boolean | undefined;
|
|
499
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
500
500
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
501
501
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
502
502
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -522,7 +522,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
522
522
|
};
|
|
523
523
|
layout: {
|
|
524
524
|
type: PropType<"grid" | "flex">;
|
|
525
|
-
default:
|
|
525
|
+
default: undefined;
|
|
526
526
|
};
|
|
527
527
|
modelValue: {
|
|
528
528
|
type: PropType<FieldValues>;
|
|
@@ -649,7 +649,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
649
649
|
};
|
|
650
650
|
layout: {
|
|
651
651
|
type: PropType<"grid" | "flex">;
|
|
652
|
-
default:
|
|
652
|
+
default: undefined;
|
|
653
653
|
};
|
|
654
654
|
modelValue: {
|
|
655
655
|
type: PropType<FieldValues>;
|
|
@@ -1108,7 +1108,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1108
1108
|
};
|
|
1109
1109
|
layout: {
|
|
1110
1110
|
type: PropType<"grid" | "flex">;
|
|
1111
|
-
default:
|
|
1111
|
+
default: undefined;
|
|
1112
1112
|
};
|
|
1113
1113
|
modelValue: {
|
|
1114
1114
|
type: PropType<FieldValues>;
|
|
@@ -1932,7 +1932,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1932
1932
|
}> & Omit<{
|
|
1933
1933
|
readonly columns: PlusColumn[];
|
|
1934
1934
|
readonly group: false | PlusFormGroupRow[];
|
|
1935
|
-
readonly layout: "grid" | "flex";
|
|
1936
1935
|
readonly modelValue: FieldValues;
|
|
1937
1936
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
1938
1937
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -1963,6 +1962,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1963
1962
|
readonly clearable: boolean;
|
|
1964
1963
|
readonly collapseDuration?: number | undefined;
|
|
1965
1964
|
readonly collapseTransition?: boolean | undefined;
|
|
1965
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
1966
1966
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
1967
1967
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
1968
1968
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -1988,7 +1988,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
1988
1988
|
};
|
|
1989
1989
|
layout: {
|
|
1990
1990
|
type: PropType<"grid" | "flex">;
|
|
1991
|
-
default:
|
|
1991
|
+
default: undefined;
|
|
1992
1992
|
};
|
|
1993
1993
|
modelValue: {
|
|
1994
1994
|
type: PropType<FieldValues>;
|
|
@@ -2115,7 +2115,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2115
2115
|
};
|
|
2116
2116
|
layout: {
|
|
2117
2117
|
type: PropType<"grid" | "flex">;
|
|
2118
|
-
default:
|
|
2118
|
+
default: undefined;
|
|
2119
2119
|
};
|
|
2120
2120
|
modelValue: {
|
|
2121
2121
|
type: PropType<FieldValues>;
|
|
@@ -2574,7 +2574,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
2574
2574
|
};
|
|
2575
2575
|
layout: {
|
|
2576
2576
|
type: PropType<"grid" | "flex">;
|
|
2577
|
-
default:
|
|
2577
|
+
default: undefined;
|
|
2578
2578
|
};
|
|
2579
2579
|
modelValue: {
|
|
2580
2580
|
type: PropType<FieldValues>;
|
|
@@ -155,7 +155,6 @@ export declare const PlusSearch: {
|
|
|
155
155
|
}> & Omit<{
|
|
156
156
|
readonly columns: PlusColumn[];
|
|
157
157
|
readonly group: false | PlusFormGroupRow[];
|
|
158
|
-
readonly layout: "grid" | "flex";
|
|
159
158
|
readonly modelValue: FieldValues;
|
|
160
159
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
161
160
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -186,6 +185,7 @@ export declare const PlusSearch: {
|
|
|
186
185
|
readonly clearable: boolean;
|
|
187
186
|
readonly collapseDuration?: number | undefined;
|
|
188
187
|
readonly collapseTransition?: boolean | undefined;
|
|
188
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
189
189
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
190
190
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
191
191
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -211,7 +211,7 @@ export declare const PlusSearch: {
|
|
|
211
211
|
};
|
|
212
212
|
layout: {
|
|
213
213
|
type: PropType<"grid" | "flex">;
|
|
214
|
-
default:
|
|
214
|
+
default: undefined;
|
|
215
215
|
};
|
|
216
216
|
modelValue: {
|
|
217
217
|
type: PropType<FieldValues>;
|
|
@@ -338,7 +338,7 @@ export declare const PlusSearch: {
|
|
|
338
338
|
};
|
|
339
339
|
layout: {
|
|
340
340
|
type: PropType<"grid" | "flex">;
|
|
341
|
-
default:
|
|
341
|
+
default: undefined;
|
|
342
342
|
};
|
|
343
343
|
modelValue: {
|
|
344
344
|
type: PropType<FieldValues>;
|
|
@@ -797,7 +797,7 @@ export declare const PlusSearch: {
|
|
|
797
797
|
};
|
|
798
798
|
layout: {
|
|
799
799
|
type: PropType<"grid" | "flex">;
|
|
800
|
-
default:
|
|
800
|
+
default: undefined;
|
|
801
801
|
};
|
|
802
802
|
modelValue: {
|
|
803
803
|
type: PropType<FieldValues>;
|
|
@@ -1713,7 +1713,6 @@ export declare const PlusSearch: {
|
|
|
1713
1713
|
}> & Omit<{
|
|
1714
1714
|
readonly columns: PlusColumn[];
|
|
1715
1715
|
readonly group: false | PlusFormGroupRow[];
|
|
1716
|
-
readonly layout: "grid" | "flex";
|
|
1717
1716
|
readonly modelValue: FieldValues;
|
|
1718
1717
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
1719
1718
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -1744,6 +1743,7 @@ export declare const PlusSearch: {
|
|
|
1744
1743
|
readonly clearable: boolean;
|
|
1745
1744
|
readonly collapseDuration?: number | undefined;
|
|
1746
1745
|
readonly collapseTransition?: boolean | undefined;
|
|
1746
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
1747
1747
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
1748
1748
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
1749
1749
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -1769,7 +1769,7 @@ export declare const PlusSearch: {
|
|
|
1769
1769
|
};
|
|
1770
1770
|
layout: {
|
|
1771
1771
|
type: PropType<"grid" | "flex">;
|
|
1772
|
-
default:
|
|
1772
|
+
default: undefined;
|
|
1773
1773
|
};
|
|
1774
1774
|
modelValue: {
|
|
1775
1775
|
type: PropType<FieldValues>;
|
|
@@ -1896,7 +1896,7 @@ export declare const PlusSearch: {
|
|
|
1896
1896
|
};
|
|
1897
1897
|
layout: {
|
|
1898
1898
|
type: PropType<"grid" | "flex">;
|
|
1899
|
-
default:
|
|
1899
|
+
default: undefined;
|
|
1900
1900
|
};
|
|
1901
1901
|
modelValue: {
|
|
1902
1902
|
type: PropType<FieldValues>;
|
|
@@ -2355,7 +2355,7 @@ export declare const PlusSearch: {
|
|
|
2355
2355
|
};
|
|
2356
2356
|
layout: {
|
|
2357
2357
|
type: PropType<"grid" | "flex">;
|
|
2358
|
-
default:
|
|
2358
|
+
default: undefined;
|
|
2359
2359
|
};
|
|
2360
2360
|
modelValue: {
|
|
2361
2361
|
type: PropType<FieldValues>;
|
|
@@ -3157,7 +3157,6 @@ export declare const PlusSearch: {
|
|
|
3157
3157
|
}> & Omit<{
|
|
3158
3158
|
readonly columns: PlusColumn[];
|
|
3159
3159
|
readonly group: false | PlusFormGroupRow[];
|
|
3160
|
-
readonly layout: "grid" | "flex";
|
|
3161
3160
|
readonly modelValue: FieldValues;
|
|
3162
3161
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
3163
3162
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -3188,6 +3187,7 @@ export declare const PlusSearch: {
|
|
|
3188
3187
|
readonly clearable: boolean;
|
|
3189
3188
|
readonly collapseDuration?: number | undefined;
|
|
3190
3189
|
readonly collapseTransition?: boolean | undefined;
|
|
3190
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
3191
3191
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
3192
3192
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
3193
3193
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -3213,7 +3213,7 @@ export declare const PlusSearch: {
|
|
|
3213
3213
|
};
|
|
3214
3214
|
layout: {
|
|
3215
3215
|
type: PropType<"grid" | "flex">;
|
|
3216
|
-
default:
|
|
3216
|
+
default: undefined;
|
|
3217
3217
|
};
|
|
3218
3218
|
modelValue: {
|
|
3219
3219
|
type: PropType<FieldValues>;
|
|
@@ -3340,7 +3340,7 @@ export declare const PlusSearch: {
|
|
|
3340
3340
|
};
|
|
3341
3341
|
layout: {
|
|
3342
3342
|
type: PropType<"grid" | "flex">;
|
|
3343
|
-
default:
|
|
3343
|
+
default: undefined;
|
|
3344
3344
|
};
|
|
3345
3345
|
modelValue: {
|
|
3346
3346
|
type: PropType<FieldValues>;
|
|
@@ -3799,7 +3799,7 @@ export declare const PlusSearch: {
|
|
|
3799
3799
|
};
|
|
3800
3800
|
layout: {
|
|
3801
3801
|
type: PropType<"grid" | "flex">;
|
|
3802
|
-
default:
|
|
3802
|
+
default: undefined;
|
|
3803
3803
|
};
|
|
3804
3804
|
modelValue: {
|
|
3805
3805
|
type: PropType<FieldValues>;
|
|
@@ -79,7 +79,6 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
79
79
|
}> & Omit<{
|
|
80
80
|
readonly columns: PlusColumn[];
|
|
81
81
|
readonly group: false | PlusFormGroupRow[];
|
|
82
|
-
readonly layout: "grid" | "flex";
|
|
83
82
|
readonly modelValue: FieldValues;
|
|
84
83
|
readonly rules: Partial<Record<string, Arrayable<FormItemRule>>>;
|
|
85
84
|
readonly labelPosition: "top" | "right" | "left";
|
|
@@ -110,6 +109,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
110
109
|
readonly clearable: boolean;
|
|
111
110
|
readonly collapseDuration?: number | undefined;
|
|
112
111
|
readonly collapseTransition?: boolean | undefined;
|
|
112
|
+
readonly layout?: "grid" | "flex" | undefined;
|
|
113
113
|
onChange?: ((values: FieldValues, column: PlusColumn) => any) | undefined;
|
|
114
114
|
onReset?: ((values: FieldValues) => any) | undefined;
|
|
115
115
|
onSubmit?: ((values: FieldValues) => any) | undefined;
|
|
@@ -135,7 +135,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
135
135
|
};
|
|
136
136
|
layout: {
|
|
137
137
|
type: PropType<"grid" | "flex">;
|
|
138
|
-
default:
|
|
138
|
+
default: undefined;
|
|
139
139
|
};
|
|
140
140
|
modelValue: {
|
|
141
141
|
type: PropType<FieldValues>;
|
|
@@ -262,7 +262,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
262
262
|
};
|
|
263
263
|
layout: {
|
|
264
264
|
type: PropType<"grid" | "flex">;
|
|
265
|
-
default:
|
|
265
|
+
default: undefined;
|
|
266
266
|
};
|
|
267
267
|
modelValue: {
|
|
268
268
|
type: PropType<FieldValues>;
|
|
@@ -721,7 +721,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
721
721
|
};
|
|
722
722
|
layout: {
|
|
723
723
|
type: PropType<"grid" | "flex">;
|
|
724
|
-
default:
|
|
724
|
+
default: undefined;
|
|
725
725
|
};
|
|
726
726
|
modelValue: {
|
|
727
727
|
type: PropType<FieldValues>;
|