halov 0.25.729 → 0.25.731
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/dist/components/DefaultPropertyForm.vue.d.ts +4 -4
- package/dist/components/DetailPage.vue.d.ts +1 -1
- package/dist/components/HaloForm.vue.d.ts +18 -18
- package/dist/components/HaloGrid.vue.d.ts +1 -1
- package/dist/components/SearchCard.vue.d.ts +27 -27
- package/dist/components/SearchForm.vue.d.ts +2 -2
- package/dist/components/SearchModal.vue.d.ts +43 -43
- package/dist/components/SearchPanel.vue.d.ts +27 -27
- package/dist/components/SelectIconBox.vue.d.ts +1 -1
- package/dist/config.d.ts +1 -0
- package/dist/halov.es.js +1132 -1123
- package/dist/halov.umd.js +5 -5
- package/dist/plugins/Utility.d.ts +5 -0
- package/package.json +2 -2
|
@@ -569,7 +569,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
569
569
|
items: {
|
|
570
570
|
name: string;
|
|
571
571
|
label?: string | undefined;
|
|
572
|
-
role?: Array<import('
|
|
572
|
+
role?: Array<import('..').HaloItemRole> | undefined;
|
|
573
573
|
dataType?: string | undefined | undefined;
|
|
574
574
|
visibility?: (boolean | Array<"edit" | "create" | "view">) | undefined;
|
|
575
575
|
readonly?: (boolean | Array<"edit" | "create" | "view">) | undefined;
|
|
@@ -577,7 +577,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
577
577
|
minValue?: number | undefined;
|
|
578
578
|
maxValue?: number | undefined;
|
|
579
579
|
group?: string | undefined;
|
|
580
|
-
editor?: (string | import('
|
|
580
|
+
editor?: (string | import('..').RenderFunction) | undefined;
|
|
581
581
|
editorConfig?: Record<string, any> | undefined;
|
|
582
582
|
sortable?: boolean | undefined;
|
|
583
583
|
template?: string | undefined;
|
|
@@ -618,7 +618,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
618
618
|
items: {
|
|
619
619
|
name: string;
|
|
620
620
|
label?: string | undefined;
|
|
621
|
-
role?: Array<import('
|
|
621
|
+
role?: Array<import('..').HaloItemRole> | undefined;
|
|
622
622
|
dataType?: string | undefined | undefined;
|
|
623
623
|
visibility?: (boolean | Array<"edit" | "create" | "view">) | undefined;
|
|
624
624
|
readonly?: (boolean | Array<"edit" | "create" | "view">) | undefined;
|
|
@@ -626,7 +626,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
626
626
|
minValue?: number | undefined;
|
|
627
627
|
maxValue?: number | undefined;
|
|
628
628
|
group?: string | undefined;
|
|
629
|
-
editor?: (string | import('
|
|
629
|
+
editor?: (string | import('..').RenderFunction) | undefined;
|
|
630
630
|
editorConfig?: Record<string, any> | undefined;
|
|
631
631
|
sortable?: boolean | undefined;
|
|
632
632
|
template?: string | undefined;
|
|
@@ -85,18 +85,18 @@ declare function __VLS_template(): {
|
|
|
85
85
|
align?: "left" | "center" | "right" | undefined;
|
|
86
86
|
fixed?: "left" | "right" | false | undefined;
|
|
87
87
|
behavior?: "none" | "normal" | "link" | "button" | "router-link" | undefined;
|
|
88
|
-
role?: (import('
|
|
88
|
+
role?: (import('..').HaloItemRole | Array<import('..').HaloItemRole>) | undefined;
|
|
89
89
|
dataType?: string | undefined;
|
|
90
90
|
display?: string | undefined;
|
|
91
91
|
template?: string | ((rowData: any, rowIndex: number) => import('vue').VNodeChild) | undefined;
|
|
92
|
-
formatter?: import('
|
|
92
|
+
formatter?: import('..').Formatter | undefined;
|
|
93
93
|
prefix?: string | undefined;
|
|
94
94
|
suffix?: string | undefined;
|
|
95
95
|
i18n?: boolean | undefined;
|
|
96
|
-
href?: (string | import('
|
|
96
|
+
href?: (string | import('..').HrefPicker) | undefined;
|
|
97
97
|
width?: number | string | undefined;
|
|
98
98
|
minWidth?: number | string | undefined;
|
|
99
|
-
textOverflow?: import('
|
|
99
|
+
textOverflow?: import('..').TextOverflow | undefined;
|
|
100
100
|
values?: Array<any> | undefined;
|
|
101
101
|
visible?: boolean | undefined;
|
|
102
102
|
sortIndex?: number | undefined;
|
|
@@ -114,7 +114,7 @@ declare function __VLS_template(): {
|
|
|
114
114
|
formItems: {
|
|
115
115
|
name: string;
|
|
116
116
|
label?: string | undefined;
|
|
117
|
-
role?: Array<import('
|
|
117
|
+
role?: Array<import('..').HaloItemRole> | undefined;
|
|
118
118
|
dataType?: string | undefined | undefined;
|
|
119
119
|
visibility?: (boolean | Array<"edit" | "create" | "view">) | undefined;
|
|
120
120
|
readonly?: (boolean | Array<"edit" | "create" | "view">) | undefined;
|
|
@@ -122,7 +122,7 @@ declare function __VLS_template(): {
|
|
|
122
122
|
minValue?: number | undefined;
|
|
123
123
|
maxValue?: number | undefined;
|
|
124
124
|
group?: string | undefined;
|
|
125
|
-
editor?: (string | import('
|
|
125
|
+
editor?: (string | import('..').RenderFunction) | undefined;
|
|
126
126
|
editorConfig?: Record<string, any> | undefined;
|
|
127
127
|
sortable?: boolean | undefined;
|
|
128
128
|
template?: string | undefined;
|
|
@@ -171,7 +171,7 @@ declare function __VLS_template(): {
|
|
|
171
171
|
formItems: {
|
|
172
172
|
name: string;
|
|
173
173
|
label?: string | undefined;
|
|
174
|
-
role?: Array<import('
|
|
174
|
+
role?: Array<import('..').HaloItemRole> | undefined;
|
|
175
175
|
dataType?: string | undefined | undefined;
|
|
176
176
|
visibility?: (boolean | Array<"edit" | "create" | "view">) | undefined;
|
|
177
177
|
readonly?: (boolean | Array<"edit" | "create" | "view">) | undefined;
|
|
@@ -179,7 +179,7 @@ declare function __VLS_template(): {
|
|
|
179
179
|
minValue?: number | undefined;
|
|
180
180
|
maxValue?: number | undefined;
|
|
181
181
|
group?: string | undefined;
|
|
182
|
-
editor?: (string | import('
|
|
182
|
+
editor?: (string | import('..').RenderFunction) | undefined;
|
|
183
183
|
editorConfig?: Record<string, any> | undefined;
|
|
184
184
|
sortable?: boolean | undefined;
|
|
185
185
|
template?: string | undefined;
|
|
@@ -232,7 +232,7 @@ declare function __VLS_template(): {
|
|
|
232
232
|
refs: {
|
|
233
233
|
searchFormRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
234
234
|
searchItems: {
|
|
235
|
-
type: import('vue').PropType<Array<import('
|
|
235
|
+
type: import('vue').PropType<Array<import('..').SearchItem | string>>;
|
|
236
236
|
};
|
|
237
237
|
searchArgs: ObjectConstructor;
|
|
238
238
|
groupOptions: import('vue').PropType<Array<string | SelectOption>>;
|
|
@@ -242,7 +242,7 @@ declare function __VLS_template(): {
|
|
|
242
242
|
"onUpdate:groupBy"?: ((...args: any[]) => any) | undefined;
|
|
243
243
|
}>, {
|
|
244
244
|
t: (key: string) => string;
|
|
245
|
-
items: import('
|
|
245
|
+
items: import('..').SearchItem[];
|
|
246
246
|
model: Record<string, any>;
|
|
247
247
|
reset: () => void;
|
|
248
248
|
updateValues: () => void;
|
|
@@ -1570,7 +1570,7 @@ declare function __VLS_template(): {
|
|
|
1570
1570
|
Defaults: {};
|
|
1571
1571
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1572
1572
|
searchItems: {
|
|
1573
|
-
type: import('vue').PropType<Array<import('
|
|
1573
|
+
type: import('vue').PropType<Array<import('..').SearchItem | string>>;
|
|
1574
1574
|
};
|
|
1575
1575
|
searchArgs: ObjectConstructor;
|
|
1576
1576
|
groupOptions: import('vue').PropType<Array<string | SelectOption>>;
|
|
@@ -1580,7 +1580,7 @@ declare function __VLS_template(): {
|
|
|
1580
1580
|
"onUpdate:groupBy"?: ((...args: any[]) => any) | undefined;
|
|
1581
1581
|
}>, {
|
|
1582
1582
|
t: (key: string) => string;
|
|
1583
|
-
items: import('
|
|
1583
|
+
items: import('..').SearchItem[];
|
|
1584
1584
|
model: Record<string, any>;
|
|
1585
1585
|
reset: () => void;
|
|
1586
1586
|
updateValues: () => void;
|
|
@@ -1641,7 +1641,7 @@ declare function __VLS_template(): {
|
|
|
1641
1641
|
withDetails: boolean;
|
|
1642
1642
|
flexHeight: boolean;
|
|
1643
1643
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
1644
|
-
|
|
1644
|
+
nTableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1645
1645
|
readonly onUnstableColumnResize: import('vue').PropType<(resizedWidth: number, limitedWidth: number, column: import('naive-ui').TableBaseColumn, getColumnWidth: (key: import('naive-ui').ColumnKey) => number | undefined) => void>;
|
|
1646
1646
|
readonly pagination: {
|
|
1647
1647
|
readonly type: import('vue').PropType<false | import('naive-ui').PaginationProps>;
|
|
@@ -9583,7 +9583,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9583
9583
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
9584
9584
|
searchFormRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
9585
9585
|
searchItems: {
|
|
9586
|
-
type: import('vue').PropType<Array<import('
|
|
9586
|
+
type: import('vue').PropType<Array<import('..').SearchItem | string>>;
|
|
9587
9587
|
};
|
|
9588
9588
|
searchArgs: ObjectConstructor;
|
|
9589
9589
|
groupOptions: import('vue').PropType<Array<string | SelectOption>>;
|
|
@@ -9593,7 +9593,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9593
9593
|
"onUpdate:groupBy"?: ((...args: any[]) => any) | undefined;
|
|
9594
9594
|
}>, {
|
|
9595
9595
|
t: (key: string) => string;
|
|
9596
|
-
items: import('
|
|
9596
|
+
items: import('..').SearchItem[];
|
|
9597
9597
|
model: Record<string, any>;
|
|
9598
9598
|
reset: () => void;
|
|
9599
9599
|
updateValues: () => void;
|
|
@@ -10921,7 +10921,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10921
10921
|
Defaults: {};
|
|
10922
10922
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
10923
10923
|
searchItems: {
|
|
10924
|
-
type: import('vue').PropType<Array<import('
|
|
10924
|
+
type: import('vue').PropType<Array<import('..').SearchItem | string>>;
|
|
10925
10925
|
};
|
|
10926
10926
|
searchArgs: ObjectConstructor;
|
|
10927
10927
|
groupOptions: import('vue').PropType<Array<string | SelectOption>>;
|
|
@@ -10931,7 +10931,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10931
10931
|
"onUpdate:groupBy"?: ((...args: any[]) => any) | undefined;
|
|
10932
10932
|
}>, {
|
|
10933
10933
|
t: (key: string) => string;
|
|
10934
|
-
items: import('
|
|
10934
|
+
items: import('..').SearchItem[];
|
|
10935
10935
|
model: Record<string, any>;
|
|
10936
10936
|
reset: () => void;
|
|
10937
10937
|
updateValues: () => void;
|
|
@@ -10992,7 +10992,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10992
10992
|
withDetails: boolean;
|
|
10993
10993
|
flexHeight: boolean;
|
|
10994
10994
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
10995
|
-
|
|
10995
|
+
nTableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
10996
10996
|
readonly onUnstableColumnResize: import('vue').PropType<(resizedWidth: number, limitedWidth: number, column: import('naive-ui').TableBaseColumn, getColumnWidth: (key: import('naive-ui').ColumnKey) => number | undefined) => void>;
|
|
10997
10997
|
readonly pagination: {
|
|
10998
10998
|
readonly type: import('vue').PropType<false | import('naive-ui').PaginationProps>;
|
|
@@ -51,7 +51,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
51
51
|
withDetails: boolean;
|
|
52
52
|
flexHeight: boolean;
|
|
53
53
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
54
|
-
|
|
54
|
+
nTableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
55
55
|
readonly onUnstableColumnResize: import('vue').PropType<(resizedWidth: number, limitedWidth: number, column: import('naive-ui').TableBaseColumn, getColumnWidth: (key: import('naive-ui').ColumnKey) => number | undefined) => void>;
|
|
56
56
|
readonly pagination: {
|
|
57
57
|
readonly type: import('vue').PropType<false | import('naive-ui').PaginationProps>;
|
|
@@ -1489,14 +1489,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1489
1489
|
t: (key: string) => string;
|
|
1490
1490
|
searchFormRef: import('vue').Ref<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1491
1491
|
searchItems: {
|
|
1492
|
-
type: PropType<Array<import('
|
|
1492
|
+
type: PropType<Array<import('..').SearchItem | string>>;
|
|
1493
1493
|
};
|
|
1494
1494
|
searchArgs: ObjectConstructor;
|
|
1495
|
-
groupOptions: PropType<Array<string | import('
|
|
1495
|
+
groupOptions: PropType<Array<string | import('..').SelectOption>>;
|
|
1496
1496
|
groupBy: StringConstructor;
|
|
1497
1497
|
}>, {
|
|
1498
1498
|
t: (key: string) => string;
|
|
1499
|
-
items: import('
|
|
1499
|
+
items: import('..').SearchItem[];
|
|
1500
1500
|
model: Record<string, any>;
|
|
1501
1501
|
reset: () => void;
|
|
1502
1502
|
updateValues: () => void;
|
|
@@ -1504,16 +1504,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1504
1504
|
groupSelectOptions: import('vue').Ref<{
|
|
1505
1505
|
value: string | number | undefined;
|
|
1506
1506
|
label: any;
|
|
1507
|
-
}[] | undefined, import('
|
|
1507
|
+
}[] | undefined, import('..').SelectOption[] | {
|
|
1508
1508
|
value: string | number | undefined;
|
|
1509
1509
|
label: any;
|
|
1510
1510
|
}[] | undefined>;
|
|
1511
1511
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:searchArgs" | "update:groupBy")[], "update:searchArgs" | "update:groupBy", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1512
1512
|
searchItems: {
|
|
1513
|
-
type: PropType<Array<import('
|
|
1513
|
+
type: PropType<Array<import('..').SearchItem | string>>;
|
|
1514
1514
|
};
|
|
1515
1515
|
searchArgs: ObjectConstructor;
|
|
1516
|
-
groupOptions: PropType<Array<string | import('
|
|
1516
|
+
groupOptions: PropType<Array<string | import('..').SelectOption>>;
|
|
1517
1517
|
groupBy: StringConstructor;
|
|
1518
1518
|
}>> & Readonly<{
|
|
1519
1519
|
"onUpdate:searchArgs"?: ((...args: any[]) => any) | undefined;
|
|
@@ -2638,7 +2638,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2638
2638
|
FormInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2639
2639
|
value: any;
|
|
2640
2640
|
readonly: BooleanConstructor;
|
|
2641
|
-
formItem: PropType<import('
|
|
2641
|
+
formItem: PropType<import('..').FormItem>;
|
|
2642
2642
|
label: StringConstructor;
|
|
2643
2643
|
placeholder: {
|
|
2644
2644
|
type: StringConstructor;
|
|
@@ -2655,7 +2655,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2655
2655
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2656
2656
|
value: any;
|
|
2657
2657
|
readonly: BooleanConstructor;
|
|
2658
|
-
formItem: PropType<import('
|
|
2658
|
+
formItem: PropType<import('..').FormItem>;
|
|
2659
2659
|
label: StringConstructor;
|
|
2660
2660
|
placeholder: {
|
|
2661
2661
|
type: StringConstructor;
|
|
@@ -2827,14 +2827,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2827
2827
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2828
2828
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any> | null, import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2829
2829
|
searchItems: {
|
|
2830
|
-
type: PropType<Array<import('
|
|
2830
|
+
type: PropType<Array<import('..').SearchItem | string>>;
|
|
2831
2831
|
};
|
|
2832
2832
|
searchArgs: ObjectConstructor;
|
|
2833
|
-
groupOptions: PropType<Array<string | import('
|
|
2833
|
+
groupOptions: PropType<Array<string | import('..').SelectOption>>;
|
|
2834
2834
|
groupBy: StringConstructor;
|
|
2835
2835
|
}>, {
|
|
2836
2836
|
t: (key: string) => string;
|
|
2837
|
-
items: import('
|
|
2837
|
+
items: import('..').SearchItem[];
|
|
2838
2838
|
model: Record<string, any>;
|
|
2839
2839
|
reset: () => void;
|
|
2840
2840
|
updateValues: () => void;
|
|
@@ -2842,16 +2842,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
2842
2842
|
groupSelectOptions: import('vue').Ref<{
|
|
2843
2843
|
value: string | number | undefined;
|
|
2844
2844
|
label: any;
|
|
2845
|
-
}[] | undefined, import('
|
|
2845
|
+
}[] | undefined, import('..').SelectOption[] | {
|
|
2846
2846
|
value: string | number | undefined;
|
|
2847
2847
|
label: any;
|
|
2848
2848
|
}[] | undefined>;
|
|
2849
2849
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:searchArgs" | "update:groupBy")[], "update:searchArgs" | "update:groupBy", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2850
2850
|
searchItems: {
|
|
2851
|
-
type: PropType<Array<import('
|
|
2851
|
+
type: PropType<Array<import('..').SearchItem | string>>;
|
|
2852
2852
|
};
|
|
2853
2853
|
searchArgs: ObjectConstructor;
|
|
2854
|
-
groupOptions: PropType<Array<string | import('
|
|
2854
|
+
groupOptions: PropType<Array<string | import('..').SelectOption>>;
|
|
2855
2855
|
groupBy: StringConstructor;
|
|
2856
2856
|
}>> & Readonly<{
|
|
2857
2857
|
"onUpdate:searchArgs"?: ((...args: any[]) => any) | undefined;
|
|
@@ -3976,7 +3976,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
3976
3976
|
FormInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3977
3977
|
value: any;
|
|
3978
3978
|
readonly: BooleanConstructor;
|
|
3979
|
-
formItem: PropType<import('
|
|
3979
|
+
formItem: PropType<import('..').FormItem>;
|
|
3980
3980
|
label: StringConstructor;
|
|
3981
3981
|
placeholder: {
|
|
3982
3982
|
type: StringConstructor;
|
|
@@ -3993,7 +3993,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
3993
3993
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
3994
3994
|
value: any;
|
|
3995
3995
|
readonly: BooleanConstructor;
|
|
3996
|
-
formItem: PropType<import('
|
|
3996
|
+
formItem: PropType<import('..').FormItem>;
|
|
3997
3997
|
label: StringConstructor;
|
|
3998
3998
|
placeholder: {
|
|
3999
3999
|
type: StringConstructor;
|
|
@@ -10704,14 +10704,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
10704
10704
|
}, import('vue').SlotsType<import('naive-ui').PaginationSlots>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
10705
10705
|
SearchForm: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
10706
10706
|
searchItems: {
|
|
10707
|
-
type: PropType<Array<import('
|
|
10707
|
+
type: PropType<Array<import('..').SearchItem | string>>;
|
|
10708
10708
|
};
|
|
10709
10709
|
searchArgs: ObjectConstructor;
|
|
10710
|
-
groupOptions: PropType<Array<string | import('
|
|
10710
|
+
groupOptions: PropType<Array<string | import('..').SelectOption>>;
|
|
10711
10711
|
groupBy: StringConstructor;
|
|
10712
10712
|
}>, {
|
|
10713
10713
|
t: (key: string) => string;
|
|
10714
|
-
items: import('
|
|
10714
|
+
items: import('..').SearchItem[];
|
|
10715
10715
|
model: Record<string, any>;
|
|
10716
10716
|
reset: () => void;
|
|
10717
10717
|
updateValues: () => void;
|
|
@@ -10719,16 +10719,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
10719
10719
|
groupSelectOptions: import('vue').Ref<{
|
|
10720
10720
|
value: string | number | undefined;
|
|
10721
10721
|
label: any;
|
|
10722
|
-
}[] | undefined, import('
|
|
10722
|
+
}[] | undefined, import('..').SelectOption[] | {
|
|
10723
10723
|
value: string | number | undefined;
|
|
10724
10724
|
label: any;
|
|
10725
10725
|
}[] | undefined>;
|
|
10726
10726
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:searchArgs" | "update:groupBy")[], "update:searchArgs" | "update:groupBy", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
10727
10727
|
searchItems: {
|
|
10728
|
-
type: PropType<Array<import('
|
|
10728
|
+
type: PropType<Array<import('..').SearchItem | string>>;
|
|
10729
10729
|
};
|
|
10730
10730
|
searchArgs: ObjectConstructor;
|
|
10731
|
-
groupOptions: PropType<Array<string | import('
|
|
10731
|
+
groupOptions: PropType<Array<string | import('..').SelectOption>>;
|
|
10732
10732
|
groupBy: StringConstructor;
|
|
10733
10733
|
}>> & Readonly<{
|
|
10734
10734
|
"onUpdate:searchArgs"?: ((...args: any[]) => any) | undefined;
|
|
@@ -11853,7 +11853,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
11853
11853
|
FormInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11854
11854
|
value: any;
|
|
11855
11855
|
readonly: BooleanConstructor;
|
|
11856
|
-
formItem: PropType<import('
|
|
11856
|
+
formItem: PropType<import('..').FormItem>;
|
|
11857
11857
|
label: StringConstructor;
|
|
11858
11858
|
placeholder: {
|
|
11859
11859
|
type: StringConstructor;
|
|
@@ -11870,7 +11870,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
11870
11870
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11871
11871
|
value: any;
|
|
11872
11872
|
readonly: BooleanConstructor;
|
|
11873
|
-
formItem: PropType<import('
|
|
11873
|
+
formItem: PropType<import('..').FormItem>;
|
|
11874
11874
|
label: StringConstructor;
|
|
11875
11875
|
placeholder: {
|
|
11876
11876
|
type: StringConstructor;
|
|
@@ -12045,7 +12045,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
12045
12045
|
keyField?: string;
|
|
12046
12046
|
checkable?: boolean;
|
|
12047
12047
|
dragSorting?: boolean;
|
|
12048
|
-
columns?: Array<import('
|
|
12048
|
+
columns?: Array<import('..').GridColumn | string>;
|
|
12049
12049
|
data?: Array<any>;
|
|
12050
12050
|
withEdit?: boolean;
|
|
12051
12051
|
withDelete?: boolean;
|
|
@@ -12074,7 +12074,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
12074
12074
|
keyField?: string;
|
|
12075
12075
|
checkable?: boolean;
|
|
12076
12076
|
dragSorting?: boolean;
|
|
12077
|
-
columns?: Array<import('
|
|
12077
|
+
columns?: Array<import('..').GridColumn | string>;
|
|
12078
12078
|
data?: Array<any>;
|
|
12079
12079
|
withEdit?: boolean;
|
|
12080
12080
|
withDelete?: boolean;
|
|
@@ -12105,7 +12105,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
12105
12105
|
withDetails: boolean;
|
|
12106
12106
|
flexHeight: boolean;
|
|
12107
12107
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
12108
|
-
|
|
12108
|
+
nTableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
12109
12109
|
readonly onUnstableColumnResize: import('vue').PropType<(resizedWidth: number, limitedWidth: number, column: import('naive-ui').TableBaseColumn, getColumnWidth: (key: import('naive-ui').ColumnKey) => number | undefined) => void>;
|
|
12110
12110
|
readonly pagination: {
|
|
12111
12111
|
readonly type: import('vue').PropType<false | import('naive-ui').PaginationProps>;
|
|
@@ -1151,7 +1151,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1151
1151
|
FormInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1152
1152
|
value: any;
|
|
1153
1153
|
readonly: BooleanConstructor;
|
|
1154
|
-
formItem: PropType<import('
|
|
1154
|
+
formItem: PropType<import('..').FormItem>;
|
|
1155
1155
|
label: StringConstructor;
|
|
1156
1156
|
placeholder: {
|
|
1157
1157
|
type: StringConstructor;
|
|
@@ -1168,7 +1168,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1168
1168
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1169
1169
|
value: any;
|
|
1170
1170
|
readonly: BooleanConstructor;
|
|
1171
|
-
formItem: PropType<import('
|
|
1171
|
+
formItem: PropType<import('..').FormItem>;
|
|
1172
1172
|
label: StringConstructor;
|
|
1173
1173
|
placeholder: {
|
|
1174
1174
|
type: StringConstructor;
|