cnhis-design-vue 3.1.14-beta.7.1 → 3.1.14-beta.8
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/README.md +22 -22
- package/es/packages/big-table/src/BigTable.vue.d.ts +13 -20
- package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +6 -0
- package/es/packages/big-table/src/components/edit-form/edit-separate.vue.d.ts +23 -1
- package/es/packages/big-table/src/components/edit-form/edit-separate.vue_vue_type_script_setup_true_lang.js +29 -8
- package/es/packages/big-table/src/hooks/useEdit.d.ts +23 -1
- package/es/packages/big-table/src/hooks/useSeparateRow.d.ts +1 -1
- package/es/packages/big-table/src/hooks/useSeparateRow.js +10 -6
- package/es/packages/field-set/index.d.ts +16 -22
- package/es/packages/field-set/src/FieldSet.vue.d.ts +207 -212
- package/es/packages/field-set/src/FieldSet.vue_vue_type_script_setup_true_lang.js +7 -18
- package/es/packages/field-set/src/NewFieldSet.vue.d.ts +0 -1
- package/es/packages/field-set/src/NewFieldSet.vue_vue_type_script_setup_true_lang.js +36 -40
- package/es/packages/field-set/src/OldFieldSet.vue.d.ts +1 -11
- package/es/packages/field-set/src/OldFieldSet.vue_vue_type_script_setup_true_lang.js +36 -41
- package/es/packages/info-header/index.d.ts +5 -1
- package/es/packages/info-header/src/InfoHeader.vue.d.ts +5 -1
- package/es/src/components/SlotRender/SlotRender.d.ts +5 -1
- package/es/src/components/SlotRender/SlotRender.js +3 -2
- package/global.d.ts +8 -8
- package/package.json +153 -153
@@ -1,13 +1,17 @@
|
|
1
|
+
import { PropType } from 'vue';
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
2
3
|
type: {
|
3
4
|
type: StringConstructor;
|
5
|
+
required: false;
|
4
6
|
default: string;
|
5
7
|
};
|
6
8
|
}, {
|
7
|
-
|
9
|
+
props: {
|
10
|
+
type: string;
|
11
|
+
};
|
8
12
|
OldFieldSet: import("vue").DefineComponent<{
|
9
13
|
fields: {
|
10
|
-
type:
|
14
|
+
type: PropType<any[]>;
|
11
15
|
default: () => never[];
|
12
16
|
};
|
13
17
|
menuSource: {
|
@@ -27,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
27
31
|
settingView: any;
|
28
32
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
29
33
|
fields: {
|
30
|
-
type:
|
34
|
+
type: PropType<any[]>;
|
31
35
|
default: () => never[];
|
32
36
|
};
|
33
37
|
menuSource: {
|
@@ -80,16 +84,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
80
84
|
isMiddleAndAdmin: import("vue").ComputedRef<boolean>;
|
81
85
|
showCheckBox: (key: string) => boolean;
|
82
86
|
hideTab: () => void;
|
83
|
-
getTableFields: () => {
|
84
|
-
id: string;
|
85
|
-
field: string;
|
86
|
-
visible: boolean;
|
87
|
-
sequence: number;
|
88
|
-
sortable: boolean;
|
89
|
-
title: string;
|
90
|
-
fixed: string;
|
91
|
-
minWidth: number;
|
92
|
-
}[];
|
93
87
|
handleFieldSave: () => void;
|
94
88
|
onCancle: () => void;
|
95
89
|
onChangeShow: (e: boolean, ele: {
|
@@ -114,6 +108,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
114
108
|
isFixed: number;
|
115
109
|
colWidth: number;
|
116
110
|
}) => void;
|
111
|
+
onButtonChecked: (e: boolean, itemButton: {
|
112
|
+
[key: string]: any;
|
113
|
+
sid: string;
|
114
|
+
columnName: string;
|
115
|
+
isShow: number;
|
116
|
+
isSort: number;
|
117
|
+
title: string;
|
118
|
+
alias: string;
|
119
|
+
isFixed: number;
|
120
|
+
colWidth: number;
|
121
|
+
}) => void;
|
117
122
|
calculateCheck: (key: string) => boolean;
|
118
123
|
handleAllCheck: (e: boolean, key: string) => void;
|
119
124
|
handleFieldClick: (item: {
|
@@ -135,7 +140,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
135
140
|
readonly loading: BooleanConstructor;
|
136
141
|
readonly disabled: BooleanConstructor;
|
137
142
|
readonly circle: BooleanConstructor;
|
138
|
-
readonly size:
|
143
|
+
readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
|
139
144
|
readonly ghost: BooleanConstructor;
|
140
145
|
readonly round: BooleanConstructor;
|
141
146
|
readonly secondary: BooleanConstructor;
|
@@ -151,32 +156,32 @@ declare const _default: import("vue").DefineComponent<{
|
|
151
156
|
readonly default: true;
|
152
157
|
};
|
153
158
|
readonly tag: {
|
154
|
-
readonly type:
|
159
|
+
readonly type: PropType<keyof HTMLElementTagNameMap>;
|
155
160
|
readonly default: "button";
|
156
161
|
};
|
157
162
|
readonly type: {
|
158
|
-
readonly type:
|
163
|
+
readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
|
159
164
|
readonly default: "default";
|
160
165
|
};
|
161
166
|
readonly dashed: BooleanConstructor;
|
162
167
|
readonly iconPlacement: {
|
163
|
-
readonly type:
|
168
|
+
readonly type: PropType<"left" | "right">;
|
164
169
|
readonly default: "left";
|
165
170
|
};
|
166
171
|
readonly attrType: {
|
167
|
-
readonly type:
|
172
|
+
readonly type: PropType<"button" | "reset" | "submit">;
|
168
173
|
readonly default: "button";
|
169
174
|
};
|
170
175
|
readonly bordered: {
|
171
176
|
readonly type: BooleanConstructor;
|
172
177
|
readonly default: true;
|
173
178
|
};
|
174
|
-
readonly onClick:
|
179
|
+
readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
175
180
|
readonly nativeFocusBehavior: {
|
176
181
|
readonly type: BooleanConstructor;
|
177
182
|
readonly default: boolean;
|
178
183
|
};
|
179
|
-
readonly theme:
|
184
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
180
185
|
heightTiny: string;
|
181
186
|
heightSmall: string;
|
182
187
|
heightMedium: string;
|
@@ -380,7 +385,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
380
385
|
iconSizeLarge: string;
|
381
386
|
rippleDuration: string;
|
382
387
|
}, any>>;
|
383
|
-
readonly themeOverrides:
|
388
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
384
389
|
heightTiny: string;
|
385
390
|
heightSmall: string;
|
386
391
|
heightMedium: string;
|
@@ -584,7 +589,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
584
589
|
iconSizeLarge: string;
|
585
590
|
rippleDuration: string;
|
586
591
|
}, any>>>;
|
587
|
-
readonly builtinThemeOverrides:
|
592
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
588
593
|
heightTiny: string;
|
589
594
|
heightSmall: string;
|
590
595
|
heightMedium: string;
|
@@ -852,7 +857,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
852
857
|
readonly loading: BooleanConstructor;
|
853
858
|
readonly disabled: BooleanConstructor;
|
854
859
|
readonly circle: BooleanConstructor;
|
855
|
-
readonly size:
|
860
|
+
readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
|
856
861
|
readonly ghost: BooleanConstructor;
|
857
862
|
readonly round: BooleanConstructor;
|
858
863
|
readonly secondary: BooleanConstructor;
|
@@ -868,32 +873,32 @@ declare const _default: import("vue").DefineComponent<{
|
|
868
873
|
readonly default: true;
|
869
874
|
};
|
870
875
|
readonly tag: {
|
871
|
-
readonly type:
|
876
|
+
readonly type: PropType<keyof HTMLElementTagNameMap>;
|
872
877
|
readonly default: "button";
|
873
878
|
};
|
874
879
|
readonly type: {
|
875
|
-
readonly type:
|
880
|
+
readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
|
876
881
|
readonly default: "default";
|
877
882
|
};
|
878
883
|
readonly dashed: BooleanConstructor;
|
879
884
|
readonly iconPlacement: {
|
880
|
-
readonly type:
|
885
|
+
readonly type: PropType<"left" | "right">;
|
881
886
|
readonly default: "left";
|
882
887
|
};
|
883
888
|
readonly attrType: {
|
884
|
-
readonly type:
|
889
|
+
readonly type: PropType<"button" | "reset" | "submit">;
|
885
890
|
readonly default: "button";
|
886
891
|
};
|
887
892
|
readonly bordered: {
|
888
893
|
readonly type: BooleanConstructor;
|
889
894
|
readonly default: true;
|
890
895
|
};
|
891
|
-
readonly onClick:
|
896
|
+
readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
892
897
|
readonly nativeFocusBehavior: {
|
893
898
|
readonly type: BooleanConstructor;
|
894
899
|
readonly default: boolean;
|
895
900
|
};
|
896
|
-
readonly theme:
|
901
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
897
902
|
heightTiny: string;
|
898
903
|
heightSmall: string;
|
899
904
|
heightMedium: string;
|
@@ -1097,7 +1102,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1097
1102
|
iconSizeLarge: string;
|
1098
1103
|
rippleDuration: string;
|
1099
1104
|
}, any>>;
|
1100
|
-
readonly themeOverrides:
|
1105
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
1101
1106
|
heightTiny: string;
|
1102
1107
|
heightSmall: string;
|
1103
1108
|
heightMedium: string;
|
@@ -1301,7 +1306,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1301
1306
|
iconSizeLarge: string;
|
1302
1307
|
rippleDuration: string;
|
1303
1308
|
}, any>>>;
|
1304
|
-
readonly builtinThemeOverrides:
|
1309
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
1305
1310
|
heightTiny: string;
|
1306
1311
|
heightSmall: string;
|
1307
1312
|
heightMedium: string;
|
@@ -1528,18 +1533,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
1528
1533
|
readonly nativeFocusBehavior: boolean;
|
1529
1534
|
}>;
|
1530
1535
|
NCheckbox: import("vue").DefineComponent<{
|
1531
|
-
size:
|
1536
|
+
size: PropType<"small" | "medium" | "large">;
|
1532
1537
|
checked: {
|
1533
|
-
type:
|
1538
|
+
type: PropType<string | number | boolean | undefined>;
|
1534
1539
|
default: undefined;
|
1535
1540
|
};
|
1536
1541
|
defaultChecked: {
|
1537
|
-
type:
|
1542
|
+
type: PropType<string | number | boolean>;
|
1538
1543
|
default: boolean;
|
1539
1544
|
};
|
1540
|
-
value:
|
1545
|
+
value: PropType<string | number>;
|
1541
1546
|
disabled: {
|
1542
|
-
type:
|
1547
|
+
type: PropType<boolean | undefined>;
|
1543
1548
|
default: undefined;
|
1544
1549
|
};
|
1545
1550
|
indeterminate: BooleanConstructor;
|
@@ -1556,11 +1561,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
1556
1561
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
1557
1562
|
default: boolean;
|
1558
1563
|
};
|
1559
|
-
'onUpdate:checked':
|
1560
|
-
onUpdateChecked:
|
1564
|
+
'onUpdate:checked': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
1565
|
+
onUpdateChecked: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
1561
1566
|
privateInsideTable: BooleanConstructor;
|
1562
|
-
onChange:
|
1563
|
-
theme:
|
1567
|
+
onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
1568
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
1564
1569
|
labelLineHeight: string;
|
1565
1570
|
fontSizeSmall: string;
|
1566
1571
|
fontSizeMedium: string;
|
@@ -1589,7 +1594,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1589
1594
|
sizeLarge: string;
|
1590
1595
|
labelPadding: string;
|
1591
1596
|
}, any>>;
|
1592
|
-
themeOverrides:
|
1597
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
1593
1598
|
labelLineHeight: string;
|
1594
1599
|
fontSizeSmall: string;
|
1595
1600
|
fontSizeMedium: string;
|
@@ -1618,7 +1623,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1618
1623
|
sizeLarge: string;
|
1619
1624
|
labelPadding: string;
|
1620
1625
|
}, any>>>;
|
1621
|
-
builtinThemeOverrides:
|
1626
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
1622
1627
|
labelLineHeight: string;
|
1623
1628
|
fontSizeSmall: string;
|
1624
1629
|
fontSizeMedium: string;
|
@@ -1826,18 +1831,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
1826
1831
|
themeClass: import("vue").Ref<string> | undefined;
|
1827
1832
|
onRender: (() => void) | undefined;
|
1828
1833
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1829
|
-
size:
|
1834
|
+
size: PropType<"small" | "medium" | "large">;
|
1830
1835
|
checked: {
|
1831
|
-
type:
|
1836
|
+
type: PropType<string | number | boolean | undefined>;
|
1832
1837
|
default: undefined;
|
1833
1838
|
};
|
1834
1839
|
defaultChecked: {
|
1835
|
-
type:
|
1840
|
+
type: PropType<string | number | boolean>;
|
1836
1841
|
default: boolean;
|
1837
1842
|
};
|
1838
|
-
value:
|
1843
|
+
value: PropType<string | number>;
|
1839
1844
|
disabled: {
|
1840
|
-
type:
|
1845
|
+
type: PropType<boolean | undefined>;
|
1841
1846
|
default: undefined;
|
1842
1847
|
};
|
1843
1848
|
indeterminate: BooleanConstructor;
|
@@ -1854,11 +1859,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
1854
1859
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
1855
1860
|
default: boolean;
|
1856
1861
|
};
|
1857
|
-
'onUpdate:checked':
|
1858
|
-
onUpdateChecked:
|
1862
|
+
'onUpdate:checked': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
1863
|
+
onUpdateChecked: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
1859
1864
|
privateInsideTable: BooleanConstructor;
|
1860
|
-
onChange:
|
1861
|
-
theme:
|
1865
|
+
onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
1866
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
1862
1867
|
labelLineHeight: string;
|
1863
1868
|
fontSizeSmall: string;
|
1864
1869
|
fontSizeMedium: string;
|
@@ -1887,7 +1892,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1887
1892
|
sizeLarge: string;
|
1888
1893
|
labelPadding: string;
|
1889
1894
|
}, any>>;
|
1890
|
-
themeOverrides:
|
1895
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
1891
1896
|
labelLineHeight: string;
|
1892
1897
|
fontSizeSmall: string;
|
1893
1898
|
fontSizeMedium: string;
|
@@ -1916,7 +1921,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1916
1921
|
sizeLarge: string;
|
1917
1922
|
labelPadding: string;
|
1918
1923
|
}, any>>>;
|
1919
|
-
builtinThemeOverrides:
|
1924
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
1920
1925
|
labelLineHeight: string;
|
1921
1926
|
fontSizeSmall: string;
|
1922
1927
|
fontSizeMedium: string;
|
@@ -1959,7 +1964,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1959
1964
|
description: StringConstructor;
|
1960
1965
|
stroke: StringConstructor;
|
1961
1966
|
size: {
|
1962
|
-
type:
|
1967
|
+
type: PropType<number | "small" | "medium" | "large">;
|
1963
1968
|
default: string;
|
1964
1969
|
};
|
1965
1970
|
show: {
|
@@ -1976,7 +1981,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1976
1981
|
validator: () => boolean;
|
1977
1982
|
default: undefined;
|
1978
1983
|
};
|
1979
|
-
theme:
|
1984
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
|
1980
1985
|
fontSize: string;
|
1981
1986
|
textColor: string;
|
1982
1987
|
sizeTiny: string;
|
@@ -1987,7 +1992,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1987
1992
|
color: string;
|
1988
1993
|
opacitySpinning: string;
|
1989
1994
|
}, any>>;
|
1990
|
-
themeOverrides:
|
1995
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
|
1991
1996
|
fontSize: string;
|
1992
1997
|
textColor: string;
|
1993
1998
|
sizeTiny: string;
|
@@ -1998,7 +2003,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1998
2003
|
color: string;
|
1999
2004
|
opacitySpinning: string;
|
2000
2005
|
}, any>>>;
|
2001
|
-
builtinThemeOverrides:
|
2006
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
|
2002
2007
|
fontSize: string;
|
2003
2008
|
textColor: string;
|
2004
2009
|
sizeTiny: string;
|
@@ -2026,7 +2031,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2026
2031
|
description: StringConstructor;
|
2027
2032
|
stroke: StringConstructor;
|
2028
2033
|
size: {
|
2029
|
-
type:
|
2034
|
+
type: PropType<number | "small" | "medium" | "large">;
|
2030
2035
|
default: string;
|
2031
2036
|
};
|
2032
2037
|
show: {
|
@@ -2043,7 +2048,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2043
2048
|
validator: () => boolean;
|
2044
2049
|
default: undefined;
|
2045
2050
|
};
|
2046
|
-
theme:
|
2051
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
|
2047
2052
|
fontSize: string;
|
2048
2053
|
textColor: string;
|
2049
2054
|
sizeTiny: string;
|
@@ -2054,7 +2059,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2054
2059
|
color: string;
|
2055
2060
|
opacitySpinning: string;
|
2056
2061
|
}, any>>;
|
2057
|
-
themeOverrides:
|
2062
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
|
2058
2063
|
fontSize: string;
|
2059
2064
|
textColor: string;
|
2060
2065
|
sizeTiny: string;
|
@@ -2065,7 +2070,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2065
2070
|
color: string;
|
2066
2071
|
opacitySpinning: string;
|
2067
2072
|
}, any>>>;
|
2068
|
-
builtinThemeOverrides:
|
2073
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
|
2069
2074
|
fontSize: string;
|
2070
2075
|
textColor: string;
|
2071
2076
|
sizeTiny: string;
|
@@ -2083,7 +2088,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2083
2088
|
spinning: boolean;
|
2084
2089
|
}>;
|
2085
2090
|
NTooltip: import("vue").DefineComponent<{
|
2086
|
-
theme:
|
2091
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
2087
2092
|
borderRadius: string;
|
2088
2093
|
boxShadow: string;
|
2089
2094
|
color: string;
|
@@ -2105,7 +2110,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2105
2110
|
padding: string;
|
2106
2111
|
}, any>;
|
2107
2112
|
}>>;
|
2108
|
-
themeOverrides:
|
2113
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
2109
2114
|
borderRadius: string;
|
2110
2115
|
boxShadow: string;
|
2111
2116
|
color: string;
|
@@ -2127,7 +2132,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2127
2132
|
padding: string;
|
2128
2133
|
}, any>;
|
2129
2134
|
}>>>;
|
2130
|
-
builtinThemeOverrides:
|
2135
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
2131
2136
|
borderRadius: string;
|
2132
2137
|
boxShadow: string;
|
2133
2138
|
color: string;
|
@@ -2150,7 +2155,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2150
2155
|
}, any>;
|
2151
2156
|
}>>>;
|
2152
2157
|
show: {
|
2153
|
-
type:
|
2158
|
+
type: PropType<boolean | undefined>;
|
2154
2159
|
default: undefined;
|
2155
2160
|
};
|
2156
2161
|
defaultShow: BooleanConstructor;
|
@@ -2159,7 +2164,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2159
2164
|
default: boolean;
|
2160
2165
|
};
|
2161
2166
|
trigger: {
|
2162
|
-
type:
|
2167
|
+
type: PropType<import("naive-ui").PopoverTrigger>;
|
2163
2168
|
default: string;
|
2164
2169
|
};
|
2165
2170
|
delay: {
|
@@ -2172,19 +2177,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
2172
2177
|
};
|
2173
2178
|
raw: BooleanConstructor;
|
2174
2179
|
placement: {
|
2175
|
-
type:
|
2180
|
+
type: PropType<import("vueuc").FollowerPlacement>;
|
2176
2181
|
default: string;
|
2177
2182
|
};
|
2178
2183
|
x: NumberConstructor;
|
2179
2184
|
y: NumberConstructor;
|
2180
2185
|
arrowPointToCenter: BooleanConstructor;
|
2181
2186
|
disabled: BooleanConstructor;
|
2182
|
-
getDisabled:
|
2187
|
+
getDisabled: PropType<() => boolean>;
|
2183
2188
|
displayDirective: {
|
2184
|
-
type:
|
2189
|
+
type: PropType<"show" | "if">;
|
2185
2190
|
default: string;
|
2186
2191
|
};
|
2187
|
-
arrowStyle:
|
2192
|
+
arrowStyle: PropType<string | import("vue").CSSProperties>;
|
2188
2193
|
flip: {
|
2189
2194
|
type: BooleanConstructor;
|
2190
2195
|
default: boolean;
|
@@ -2194,7 +2199,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2194
2199
|
default: boolean;
|
2195
2200
|
};
|
2196
2201
|
width: {
|
2197
|
-
type:
|
2202
|
+
type: PropType<number | "trigger">;
|
2198
2203
|
default: undefined;
|
2199
2204
|
};
|
2200
2205
|
overlap: BooleanConstructor;
|
@@ -2204,31 +2209,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
2204
2209
|
};
|
2205
2210
|
zIndex: NumberConstructor;
|
2206
2211
|
to: {
|
2207
|
-
type:
|
2212
|
+
type: PropType<string | boolean | HTMLElement>;
|
2208
2213
|
default: undefined;
|
2209
2214
|
};
|
2210
2215
|
scrollable: BooleanConstructor;
|
2211
|
-
contentStyle:
|
2212
|
-
headerStyle:
|
2213
|
-
footerStyle:
|
2214
|
-
onClickoutside:
|
2215
|
-
'onUpdate:show':
|
2216
|
-
onUpdateShow:
|
2216
|
+
contentStyle: PropType<string | import("vue").CSSProperties>;
|
2217
|
+
headerStyle: PropType<string | import("vue").CSSProperties>;
|
2218
|
+
footerStyle: PropType<string | import("vue").CSSProperties>;
|
2219
|
+
onClickoutside: PropType<(e: MouseEvent) => void>;
|
2220
|
+
'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
2221
|
+
onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
2217
2222
|
internalDeactivateImmediately: BooleanConstructor;
|
2218
2223
|
internalSyncTargetWithParent: BooleanConstructor;
|
2219
2224
|
internalInheritedEventHandlers: {
|
2220
|
-
type:
|
2225
|
+
type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
2221
2226
|
default: () => never[];
|
2222
2227
|
};
|
2223
2228
|
internalTrapFocus: BooleanConstructor;
|
2224
2229
|
internalExtraClass: {
|
2225
|
-
type:
|
2230
|
+
type: PropType<string[]>;
|
2226
2231
|
default: () => never[];
|
2227
2232
|
};
|
2228
|
-
onShow:
|
2229
|
-
onHide:
|
2233
|
+
onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
2234
|
+
onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
2230
2235
|
arrow: {
|
2231
|
-
type:
|
2236
|
+
type: PropType<boolean | undefined>;
|
2232
2237
|
default: undefined;
|
2233
2238
|
};
|
2234
2239
|
minWidth: NumberConstructor;
|
@@ -2385,7 +2390,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2385
2390
|
syncPosition: () => void;
|
2386
2391
|
setShow: (value: boolean) => void;
|
2387
2392
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
2388
|
-
theme:
|
2393
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
2389
2394
|
borderRadius: string;
|
2390
2395
|
boxShadow: string;
|
2391
2396
|
color: string;
|
@@ -2407,7 +2412,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2407
2412
|
padding: string;
|
2408
2413
|
}, any>;
|
2409
2414
|
}>>;
|
2410
|
-
themeOverrides:
|
2415
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
2411
2416
|
borderRadius: string;
|
2412
2417
|
boxShadow: string;
|
2413
2418
|
color: string;
|
@@ -2429,7 +2434,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2429
2434
|
padding: string;
|
2430
2435
|
}, any>;
|
2431
2436
|
}>>>;
|
2432
|
-
builtinThemeOverrides:
|
2437
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
2433
2438
|
borderRadius: string;
|
2434
2439
|
boxShadow: string;
|
2435
2440
|
color: string;
|
@@ -2452,7 +2457,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2452
2457
|
}, any>;
|
2453
2458
|
}>>>;
|
2454
2459
|
show: {
|
2455
|
-
type:
|
2460
|
+
type: PropType<boolean | undefined>;
|
2456
2461
|
default: undefined;
|
2457
2462
|
};
|
2458
2463
|
defaultShow: BooleanConstructor;
|
@@ -2461,7 +2466,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2461
2466
|
default: boolean;
|
2462
2467
|
};
|
2463
2468
|
trigger: {
|
2464
|
-
type:
|
2469
|
+
type: PropType<import("naive-ui").PopoverTrigger>;
|
2465
2470
|
default: string;
|
2466
2471
|
};
|
2467
2472
|
delay: {
|
@@ -2474,19 +2479,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
2474
2479
|
};
|
2475
2480
|
raw: BooleanConstructor;
|
2476
2481
|
placement: {
|
2477
|
-
type:
|
2482
|
+
type: PropType<import("vueuc").FollowerPlacement>;
|
2478
2483
|
default: string;
|
2479
2484
|
};
|
2480
2485
|
x: NumberConstructor;
|
2481
2486
|
y: NumberConstructor;
|
2482
2487
|
arrowPointToCenter: BooleanConstructor;
|
2483
2488
|
disabled: BooleanConstructor;
|
2484
|
-
getDisabled:
|
2489
|
+
getDisabled: PropType<() => boolean>;
|
2485
2490
|
displayDirective: {
|
2486
|
-
type:
|
2491
|
+
type: PropType<"show" | "if">;
|
2487
2492
|
default: string;
|
2488
2493
|
};
|
2489
|
-
arrowStyle:
|
2494
|
+
arrowStyle: PropType<string | import("vue").CSSProperties>;
|
2490
2495
|
flip: {
|
2491
2496
|
type: BooleanConstructor;
|
2492
2497
|
default: boolean;
|
@@ -2496,7 +2501,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2496
2501
|
default: boolean;
|
2497
2502
|
};
|
2498
2503
|
width: {
|
2499
|
-
type:
|
2504
|
+
type: PropType<number | "trigger">;
|
2500
2505
|
default: undefined;
|
2501
2506
|
};
|
2502
2507
|
overlap: BooleanConstructor;
|
@@ -2506,31 +2511,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
2506
2511
|
};
|
2507
2512
|
zIndex: NumberConstructor;
|
2508
2513
|
to: {
|
2509
|
-
type:
|
2514
|
+
type: PropType<string | boolean | HTMLElement>;
|
2510
2515
|
default: undefined;
|
2511
2516
|
};
|
2512
2517
|
scrollable: BooleanConstructor;
|
2513
|
-
contentStyle:
|
2514
|
-
headerStyle:
|
2515
|
-
footerStyle:
|
2516
|
-
onClickoutside:
|
2517
|
-
'onUpdate:show':
|
2518
|
-
onUpdateShow:
|
2518
|
+
contentStyle: PropType<string | import("vue").CSSProperties>;
|
2519
|
+
headerStyle: PropType<string | import("vue").CSSProperties>;
|
2520
|
+
footerStyle: PropType<string | import("vue").CSSProperties>;
|
2521
|
+
onClickoutside: PropType<(e: MouseEvent) => void>;
|
2522
|
+
'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
2523
|
+
onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
2519
2524
|
internalDeactivateImmediately: BooleanConstructor;
|
2520
2525
|
internalSyncTargetWithParent: BooleanConstructor;
|
2521
2526
|
internalInheritedEventHandlers: {
|
2522
|
-
type:
|
2527
|
+
type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
2523
2528
|
default: () => never[];
|
2524
2529
|
};
|
2525
2530
|
internalTrapFocus: BooleanConstructor;
|
2526
2531
|
internalExtraClass: {
|
2527
|
-
type:
|
2532
|
+
type: PropType<string[]>;
|
2528
2533
|
default: () => never[];
|
2529
2534
|
};
|
2530
|
-
onShow:
|
2531
|
-
onHide:
|
2535
|
+
onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
2536
|
+
onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
2532
2537
|
arrow: {
|
2533
|
-
type:
|
2538
|
+
type: PropType<boolean | undefined>;
|
2534
2539
|
default: undefined;
|
2535
2540
|
};
|
2536
2541
|
minWidth: NumberConstructor;
|
@@ -2636,7 +2641,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2636
2641
|
}>;
|
2637
2642
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSave" | "onClose")[], "onSave" | "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
2638
2643
|
fields: {
|
2639
|
-
type:
|
2644
|
+
type: PropType<any[]>;
|
2640
2645
|
default: () => never[];
|
2641
2646
|
};
|
2642
2647
|
menuSource: {
|
@@ -2662,7 +2667,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2662
2667
|
}>;
|
2663
2668
|
FieldSet: import("vue").DefineComponent<{
|
2664
2669
|
fields: {
|
2665
|
-
type:
|
2670
|
+
type: PropType<any[]>;
|
2666
2671
|
default: () => never[];
|
2667
2672
|
};
|
2668
2673
|
menuSource: {
|
@@ -2682,7 +2687,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2682
2687
|
settingView: any;
|
2683
2688
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
2684
2689
|
fields: {
|
2685
|
-
type:
|
2690
|
+
type: PropType<any[]>;
|
2686
2691
|
default: () => never[];
|
2687
2692
|
};
|
2688
2693
|
menuSource: {
|
@@ -2735,17 +2740,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
2735
2740
|
isMiddleAndAdmin: import("vue").ComputedRef<boolean>;
|
2736
2741
|
showCheckBox: (key: string) => boolean;
|
2737
2742
|
hideTab: () => void;
|
2738
|
-
getTableFields: () => {
|
2739
|
-
[key: string]: any;
|
2740
|
-
id: string;
|
2741
|
-
name: string;
|
2742
|
-
show: boolean;
|
2743
|
-
sort: boolean;
|
2744
|
-
alias: string;
|
2745
|
-
fixedShow: boolean;
|
2746
|
-
fixedWay: "NONE" | "LEFT" | "RIGHT";
|
2747
|
-
columnWidth: number;
|
2748
|
-
}[];
|
2749
2743
|
handleFieldSave: () => void;
|
2750
2744
|
onCancle: () => void;
|
2751
2745
|
calculateCheck: (key: string) => boolean;
|
@@ -2769,7 +2763,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2769
2763
|
readonly loading: BooleanConstructor;
|
2770
2764
|
readonly disabled: BooleanConstructor;
|
2771
2765
|
readonly circle: BooleanConstructor;
|
2772
|
-
readonly size:
|
2766
|
+
readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
|
2773
2767
|
readonly ghost: BooleanConstructor;
|
2774
2768
|
readonly round: BooleanConstructor;
|
2775
2769
|
readonly secondary: BooleanConstructor;
|
@@ -2785,32 +2779,32 @@ declare const _default: import("vue").DefineComponent<{
|
|
2785
2779
|
readonly default: true;
|
2786
2780
|
};
|
2787
2781
|
readonly tag: {
|
2788
|
-
readonly type:
|
2782
|
+
readonly type: PropType<keyof HTMLElementTagNameMap>;
|
2789
2783
|
readonly default: "button";
|
2790
2784
|
};
|
2791
2785
|
readonly type: {
|
2792
|
-
readonly type:
|
2786
|
+
readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
|
2793
2787
|
readonly default: "default";
|
2794
2788
|
};
|
2795
2789
|
readonly dashed: BooleanConstructor;
|
2796
2790
|
readonly iconPlacement: {
|
2797
|
-
readonly type:
|
2791
|
+
readonly type: PropType<"left" | "right">;
|
2798
2792
|
readonly default: "left";
|
2799
2793
|
};
|
2800
2794
|
readonly attrType: {
|
2801
|
-
readonly type:
|
2795
|
+
readonly type: PropType<"button" | "reset" | "submit">;
|
2802
2796
|
readonly default: "button";
|
2803
2797
|
};
|
2804
2798
|
readonly bordered: {
|
2805
2799
|
readonly type: BooleanConstructor;
|
2806
2800
|
readonly default: true;
|
2807
2801
|
};
|
2808
|
-
readonly onClick:
|
2802
|
+
readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
2809
2803
|
readonly nativeFocusBehavior: {
|
2810
2804
|
readonly type: BooleanConstructor;
|
2811
2805
|
readonly default: boolean;
|
2812
2806
|
};
|
2813
|
-
readonly theme:
|
2807
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
2814
2808
|
heightTiny: string;
|
2815
2809
|
heightSmall: string;
|
2816
2810
|
heightMedium: string;
|
@@ -3014,7 +3008,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3014
3008
|
iconSizeLarge: string;
|
3015
3009
|
rippleDuration: string;
|
3016
3010
|
}, any>>;
|
3017
|
-
readonly themeOverrides:
|
3011
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
3018
3012
|
heightTiny: string;
|
3019
3013
|
heightSmall: string;
|
3020
3014
|
heightMedium: string;
|
@@ -3218,7 +3212,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3218
3212
|
iconSizeLarge: string;
|
3219
3213
|
rippleDuration: string;
|
3220
3214
|
}, any>>>;
|
3221
|
-
readonly builtinThemeOverrides:
|
3215
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
3222
3216
|
heightTiny: string;
|
3223
3217
|
heightSmall: string;
|
3224
3218
|
heightMedium: string;
|
@@ -3486,7 +3480,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3486
3480
|
readonly loading: BooleanConstructor;
|
3487
3481
|
readonly disabled: BooleanConstructor;
|
3488
3482
|
readonly circle: BooleanConstructor;
|
3489
|
-
readonly size:
|
3483
|
+
readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
|
3490
3484
|
readonly ghost: BooleanConstructor;
|
3491
3485
|
readonly round: BooleanConstructor;
|
3492
3486
|
readonly secondary: BooleanConstructor;
|
@@ -3502,32 +3496,32 @@ declare const _default: import("vue").DefineComponent<{
|
|
3502
3496
|
readonly default: true;
|
3503
3497
|
};
|
3504
3498
|
readonly tag: {
|
3505
|
-
readonly type:
|
3499
|
+
readonly type: PropType<keyof HTMLElementTagNameMap>;
|
3506
3500
|
readonly default: "button";
|
3507
3501
|
};
|
3508
3502
|
readonly type: {
|
3509
|
-
readonly type:
|
3503
|
+
readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
|
3510
3504
|
readonly default: "default";
|
3511
3505
|
};
|
3512
3506
|
readonly dashed: BooleanConstructor;
|
3513
3507
|
readonly iconPlacement: {
|
3514
|
-
readonly type:
|
3508
|
+
readonly type: PropType<"left" | "right">;
|
3515
3509
|
readonly default: "left";
|
3516
3510
|
};
|
3517
3511
|
readonly attrType: {
|
3518
|
-
readonly type:
|
3512
|
+
readonly type: PropType<"button" | "reset" | "submit">;
|
3519
3513
|
readonly default: "button";
|
3520
3514
|
};
|
3521
3515
|
readonly bordered: {
|
3522
3516
|
readonly type: BooleanConstructor;
|
3523
3517
|
readonly default: true;
|
3524
3518
|
};
|
3525
|
-
readonly onClick:
|
3519
|
+
readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
3526
3520
|
readonly nativeFocusBehavior: {
|
3527
3521
|
readonly type: BooleanConstructor;
|
3528
3522
|
readonly default: boolean;
|
3529
3523
|
};
|
3530
|
-
readonly theme:
|
3524
|
+
readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
3531
3525
|
heightTiny: string;
|
3532
3526
|
heightSmall: string;
|
3533
3527
|
heightMedium: string;
|
@@ -3731,7 +3725,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3731
3725
|
iconSizeLarge: string;
|
3732
3726
|
rippleDuration: string;
|
3733
3727
|
}, any>>;
|
3734
|
-
readonly themeOverrides:
|
3728
|
+
readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
3735
3729
|
heightTiny: string;
|
3736
3730
|
heightSmall: string;
|
3737
3731
|
heightMedium: string;
|
@@ -3935,7 +3929,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3935
3929
|
iconSizeLarge: string;
|
3936
3930
|
rippleDuration: string;
|
3937
3931
|
}, any>>>;
|
3938
|
-
readonly builtinThemeOverrides:
|
3932
|
+
readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
3939
3933
|
heightTiny: string;
|
3940
3934
|
heightSmall: string;
|
3941
3935
|
heightMedium: string;
|
@@ -4162,18 +4156,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
4162
4156
|
readonly nativeFocusBehavior: boolean;
|
4163
4157
|
}>;
|
4164
4158
|
NCheckbox: import("vue").DefineComponent<{
|
4165
|
-
size:
|
4159
|
+
size: PropType<"small" | "medium" | "large">;
|
4166
4160
|
checked: {
|
4167
|
-
type:
|
4161
|
+
type: PropType<string | number | boolean | undefined>;
|
4168
4162
|
default: undefined;
|
4169
4163
|
};
|
4170
4164
|
defaultChecked: {
|
4171
|
-
type:
|
4165
|
+
type: PropType<string | number | boolean>;
|
4172
4166
|
default: boolean;
|
4173
4167
|
};
|
4174
|
-
value:
|
4168
|
+
value: PropType<string | number>;
|
4175
4169
|
disabled: {
|
4176
|
-
type:
|
4170
|
+
type: PropType<boolean | undefined>;
|
4177
4171
|
default: undefined;
|
4178
4172
|
};
|
4179
4173
|
indeterminate: BooleanConstructor;
|
@@ -4190,11 +4184,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
4190
4184
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
4191
4185
|
default: boolean;
|
4192
4186
|
};
|
4193
|
-
'onUpdate:checked':
|
4194
|
-
onUpdateChecked:
|
4187
|
+
'onUpdate:checked': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
4188
|
+
onUpdateChecked: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
4195
4189
|
privateInsideTable: BooleanConstructor;
|
4196
|
-
onChange:
|
4197
|
-
theme:
|
4190
|
+
onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
4191
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
4198
4192
|
labelLineHeight: string;
|
4199
4193
|
fontSizeSmall: string;
|
4200
4194
|
fontSizeMedium: string;
|
@@ -4223,7 +4217,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4223
4217
|
sizeLarge: string;
|
4224
4218
|
labelPadding: string;
|
4225
4219
|
}, any>>;
|
4226
|
-
themeOverrides:
|
4220
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
4227
4221
|
labelLineHeight: string;
|
4228
4222
|
fontSizeSmall: string;
|
4229
4223
|
fontSizeMedium: string;
|
@@ -4252,7 +4246,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4252
4246
|
sizeLarge: string;
|
4253
4247
|
labelPadding: string;
|
4254
4248
|
}, any>>>;
|
4255
|
-
builtinThemeOverrides:
|
4249
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
4256
4250
|
labelLineHeight: string;
|
4257
4251
|
fontSizeSmall: string;
|
4258
4252
|
fontSizeMedium: string;
|
@@ -4460,18 +4454,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
4460
4454
|
themeClass: import("vue").Ref<string> | undefined;
|
4461
4455
|
onRender: (() => void) | undefined;
|
4462
4456
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
4463
|
-
size:
|
4457
|
+
size: PropType<"small" | "medium" | "large">;
|
4464
4458
|
checked: {
|
4465
|
-
type:
|
4459
|
+
type: PropType<string | number | boolean | undefined>;
|
4466
4460
|
default: undefined;
|
4467
4461
|
};
|
4468
4462
|
defaultChecked: {
|
4469
|
-
type:
|
4463
|
+
type: PropType<string | number | boolean>;
|
4470
4464
|
default: boolean;
|
4471
4465
|
};
|
4472
|
-
value:
|
4466
|
+
value: PropType<string | number>;
|
4473
4467
|
disabled: {
|
4474
|
-
type:
|
4468
|
+
type: PropType<boolean | undefined>;
|
4475
4469
|
default: undefined;
|
4476
4470
|
};
|
4477
4471
|
indeterminate: BooleanConstructor;
|
@@ -4488,11 +4482,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
4488
4482
|
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
4489
4483
|
default: boolean;
|
4490
4484
|
};
|
4491
|
-
'onUpdate:checked':
|
4492
|
-
onUpdateChecked:
|
4485
|
+
'onUpdate:checked': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
4486
|
+
onUpdateChecked: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
4493
4487
|
privateInsideTable: BooleanConstructor;
|
4494
|
-
onChange:
|
4495
|
-
theme:
|
4488
|
+
onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
|
4489
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
4496
4490
|
labelLineHeight: string;
|
4497
4491
|
fontSizeSmall: string;
|
4498
4492
|
fontSizeMedium: string;
|
@@ -4521,7 +4515,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4521
4515
|
sizeLarge: string;
|
4522
4516
|
labelPadding: string;
|
4523
4517
|
}, any>>;
|
4524
|
-
themeOverrides:
|
4518
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
4525
4519
|
labelLineHeight: string;
|
4526
4520
|
fontSizeSmall: string;
|
4527
4521
|
fontSizeMedium: string;
|
@@ -4550,7 +4544,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4550
4544
|
sizeLarge: string;
|
4551
4545
|
labelPadding: string;
|
4552
4546
|
}, any>>>;
|
4553
|
-
builtinThemeOverrides:
|
4547
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
|
4554
4548
|
labelLineHeight: string;
|
4555
4549
|
fontSizeSmall: string;
|
4556
4550
|
fontSizeMedium: string;
|
@@ -4593,7 +4587,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4593
4587
|
description: StringConstructor;
|
4594
4588
|
stroke: StringConstructor;
|
4595
4589
|
size: {
|
4596
|
-
type:
|
4590
|
+
type: PropType<number | "small" | "medium" | "large">;
|
4597
4591
|
default: string;
|
4598
4592
|
};
|
4599
4593
|
show: {
|
@@ -4610,7 +4604,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4610
4604
|
validator: () => boolean;
|
4611
4605
|
default: undefined;
|
4612
4606
|
};
|
4613
|
-
theme:
|
4607
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
|
4614
4608
|
fontSize: string;
|
4615
4609
|
textColor: string;
|
4616
4610
|
sizeTiny: string;
|
@@ -4621,7 +4615,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4621
4615
|
color: string;
|
4622
4616
|
opacitySpinning: string;
|
4623
4617
|
}, any>>;
|
4624
|
-
themeOverrides:
|
4618
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
|
4625
4619
|
fontSize: string;
|
4626
4620
|
textColor: string;
|
4627
4621
|
sizeTiny: string;
|
@@ -4632,7 +4626,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4632
4626
|
color: string;
|
4633
4627
|
opacitySpinning: string;
|
4634
4628
|
}, any>>>;
|
4635
|
-
builtinThemeOverrides:
|
4629
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
|
4636
4630
|
fontSize: string;
|
4637
4631
|
textColor: string;
|
4638
4632
|
sizeTiny: string;
|
@@ -4660,7 +4654,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4660
4654
|
description: StringConstructor;
|
4661
4655
|
stroke: StringConstructor;
|
4662
4656
|
size: {
|
4663
|
-
type:
|
4657
|
+
type: PropType<number | "small" | "medium" | "large">;
|
4664
4658
|
default: string;
|
4665
4659
|
};
|
4666
4660
|
show: {
|
@@ -4677,7 +4671,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4677
4671
|
validator: () => boolean;
|
4678
4672
|
default: undefined;
|
4679
4673
|
};
|
4680
|
-
theme:
|
4674
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
|
4681
4675
|
fontSize: string;
|
4682
4676
|
textColor: string;
|
4683
4677
|
sizeTiny: string;
|
@@ -4688,7 +4682,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4688
4682
|
color: string;
|
4689
4683
|
opacitySpinning: string;
|
4690
4684
|
}, any>>;
|
4691
|
-
themeOverrides:
|
4685
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
|
4692
4686
|
fontSize: string;
|
4693
4687
|
textColor: string;
|
4694
4688
|
sizeTiny: string;
|
@@ -4699,7 +4693,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4699
4693
|
color: string;
|
4700
4694
|
opacitySpinning: string;
|
4701
4695
|
}, any>>>;
|
4702
|
-
builtinThemeOverrides:
|
4696
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
|
4703
4697
|
fontSize: string;
|
4704
4698
|
textColor: string;
|
4705
4699
|
sizeTiny: string;
|
@@ -4717,7 +4711,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4717
4711
|
spinning: boolean;
|
4718
4712
|
}>;
|
4719
4713
|
NTooltip: import("vue").DefineComponent<{
|
4720
|
-
theme:
|
4714
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
4721
4715
|
borderRadius: string;
|
4722
4716
|
boxShadow: string;
|
4723
4717
|
color: string;
|
@@ -4739,7 +4733,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4739
4733
|
padding: string;
|
4740
4734
|
}, any>;
|
4741
4735
|
}>>;
|
4742
|
-
themeOverrides:
|
4736
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
4743
4737
|
borderRadius: string;
|
4744
4738
|
boxShadow: string;
|
4745
4739
|
color: string;
|
@@ -4761,7 +4755,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4761
4755
|
padding: string;
|
4762
4756
|
}, any>;
|
4763
4757
|
}>>>;
|
4764
|
-
builtinThemeOverrides:
|
4758
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
4765
4759
|
borderRadius: string;
|
4766
4760
|
boxShadow: string;
|
4767
4761
|
color: string;
|
@@ -4784,7 +4778,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4784
4778
|
}, any>;
|
4785
4779
|
}>>>;
|
4786
4780
|
show: {
|
4787
|
-
type:
|
4781
|
+
type: PropType<boolean | undefined>;
|
4788
4782
|
default: undefined;
|
4789
4783
|
};
|
4790
4784
|
defaultShow: BooleanConstructor;
|
@@ -4793,7 +4787,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4793
4787
|
default: boolean;
|
4794
4788
|
};
|
4795
4789
|
trigger: {
|
4796
|
-
type:
|
4790
|
+
type: PropType<import("naive-ui").PopoverTrigger>;
|
4797
4791
|
default: string;
|
4798
4792
|
};
|
4799
4793
|
delay: {
|
@@ -4806,19 +4800,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
4806
4800
|
};
|
4807
4801
|
raw: BooleanConstructor;
|
4808
4802
|
placement: {
|
4809
|
-
type:
|
4803
|
+
type: PropType<import("vueuc").FollowerPlacement>;
|
4810
4804
|
default: string;
|
4811
4805
|
};
|
4812
4806
|
x: NumberConstructor;
|
4813
4807
|
y: NumberConstructor;
|
4814
4808
|
arrowPointToCenter: BooleanConstructor;
|
4815
4809
|
disabled: BooleanConstructor;
|
4816
|
-
getDisabled:
|
4810
|
+
getDisabled: PropType<() => boolean>;
|
4817
4811
|
displayDirective: {
|
4818
|
-
type:
|
4812
|
+
type: PropType<"show" | "if">;
|
4819
4813
|
default: string;
|
4820
4814
|
};
|
4821
|
-
arrowStyle:
|
4815
|
+
arrowStyle: PropType<string | import("vue").CSSProperties>;
|
4822
4816
|
flip: {
|
4823
4817
|
type: BooleanConstructor;
|
4824
4818
|
default: boolean;
|
@@ -4828,7 +4822,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4828
4822
|
default: boolean;
|
4829
4823
|
};
|
4830
4824
|
width: {
|
4831
|
-
type:
|
4825
|
+
type: PropType<number | "trigger">;
|
4832
4826
|
default: undefined;
|
4833
4827
|
};
|
4834
4828
|
overlap: BooleanConstructor;
|
@@ -4838,31 +4832,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
4838
4832
|
};
|
4839
4833
|
zIndex: NumberConstructor;
|
4840
4834
|
to: {
|
4841
|
-
type:
|
4835
|
+
type: PropType<string | boolean | HTMLElement>;
|
4842
4836
|
default: undefined;
|
4843
4837
|
};
|
4844
4838
|
scrollable: BooleanConstructor;
|
4845
|
-
contentStyle:
|
4846
|
-
headerStyle:
|
4847
|
-
footerStyle:
|
4848
|
-
onClickoutside:
|
4849
|
-
'onUpdate:show':
|
4850
|
-
onUpdateShow:
|
4839
|
+
contentStyle: PropType<string | import("vue").CSSProperties>;
|
4840
|
+
headerStyle: PropType<string | import("vue").CSSProperties>;
|
4841
|
+
footerStyle: PropType<string | import("vue").CSSProperties>;
|
4842
|
+
onClickoutside: PropType<(e: MouseEvent) => void>;
|
4843
|
+
'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
4844
|
+
onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
4851
4845
|
internalDeactivateImmediately: BooleanConstructor;
|
4852
4846
|
internalSyncTargetWithParent: BooleanConstructor;
|
4853
4847
|
internalInheritedEventHandlers: {
|
4854
|
-
type:
|
4848
|
+
type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
4855
4849
|
default: () => never[];
|
4856
4850
|
};
|
4857
4851
|
internalTrapFocus: BooleanConstructor;
|
4858
4852
|
internalExtraClass: {
|
4859
|
-
type:
|
4853
|
+
type: PropType<string[]>;
|
4860
4854
|
default: () => never[];
|
4861
4855
|
};
|
4862
|
-
onShow:
|
4863
|
-
onHide:
|
4856
|
+
onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
4857
|
+
onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
4864
4858
|
arrow: {
|
4865
|
-
type:
|
4859
|
+
type: PropType<boolean | undefined>;
|
4866
4860
|
default: undefined;
|
4867
4861
|
};
|
4868
4862
|
minWidth: NumberConstructor;
|
@@ -5019,7 +5013,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
5019
5013
|
syncPosition: () => void;
|
5020
5014
|
setShow: (value: boolean) => void;
|
5021
5015
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
5022
|
-
theme:
|
5016
|
+
theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
5023
5017
|
borderRadius: string;
|
5024
5018
|
boxShadow: string;
|
5025
5019
|
color: string;
|
@@ -5041,7 +5035,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
5041
5035
|
padding: string;
|
5042
5036
|
}, any>;
|
5043
5037
|
}>>;
|
5044
|
-
themeOverrides:
|
5038
|
+
themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
5045
5039
|
borderRadius: string;
|
5046
5040
|
boxShadow: string;
|
5047
5041
|
color: string;
|
@@ -5063,7 +5057,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
5063
5057
|
padding: string;
|
5064
5058
|
}, any>;
|
5065
5059
|
}>>>;
|
5066
|
-
builtinThemeOverrides:
|
5060
|
+
builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
5067
5061
|
borderRadius: string;
|
5068
5062
|
boxShadow: string;
|
5069
5063
|
color: string;
|
@@ -5086,7 +5080,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
5086
5080
|
}, any>;
|
5087
5081
|
}>>>;
|
5088
5082
|
show: {
|
5089
|
-
type:
|
5083
|
+
type: PropType<boolean | undefined>;
|
5090
5084
|
default: undefined;
|
5091
5085
|
};
|
5092
5086
|
defaultShow: BooleanConstructor;
|
@@ -5095,7 +5089,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
5095
5089
|
default: boolean;
|
5096
5090
|
};
|
5097
5091
|
trigger: {
|
5098
|
-
type:
|
5092
|
+
type: PropType<import("naive-ui").PopoverTrigger>;
|
5099
5093
|
default: string;
|
5100
5094
|
};
|
5101
5095
|
delay: {
|
@@ -5108,19 +5102,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
5108
5102
|
};
|
5109
5103
|
raw: BooleanConstructor;
|
5110
5104
|
placement: {
|
5111
|
-
type:
|
5105
|
+
type: PropType<import("vueuc").FollowerPlacement>;
|
5112
5106
|
default: string;
|
5113
5107
|
};
|
5114
5108
|
x: NumberConstructor;
|
5115
5109
|
y: NumberConstructor;
|
5116
5110
|
arrowPointToCenter: BooleanConstructor;
|
5117
5111
|
disabled: BooleanConstructor;
|
5118
|
-
getDisabled:
|
5112
|
+
getDisabled: PropType<() => boolean>;
|
5119
5113
|
displayDirective: {
|
5120
|
-
type:
|
5114
|
+
type: PropType<"show" | "if">;
|
5121
5115
|
default: string;
|
5122
5116
|
};
|
5123
|
-
arrowStyle:
|
5117
|
+
arrowStyle: PropType<string | import("vue").CSSProperties>;
|
5124
5118
|
flip: {
|
5125
5119
|
type: BooleanConstructor;
|
5126
5120
|
default: boolean;
|
@@ -5130,7 +5124,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
5130
5124
|
default: boolean;
|
5131
5125
|
};
|
5132
5126
|
width: {
|
5133
|
-
type:
|
5127
|
+
type: PropType<number | "trigger">;
|
5134
5128
|
default: undefined;
|
5135
5129
|
};
|
5136
5130
|
overlap: BooleanConstructor;
|
@@ -5140,31 +5134,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
5140
5134
|
};
|
5141
5135
|
zIndex: NumberConstructor;
|
5142
5136
|
to: {
|
5143
|
-
type:
|
5137
|
+
type: PropType<string | boolean | HTMLElement>;
|
5144
5138
|
default: undefined;
|
5145
5139
|
};
|
5146
5140
|
scrollable: BooleanConstructor;
|
5147
|
-
contentStyle:
|
5148
|
-
headerStyle:
|
5149
|
-
footerStyle:
|
5150
|
-
onClickoutside:
|
5151
|
-
'onUpdate:show':
|
5152
|
-
onUpdateShow:
|
5141
|
+
contentStyle: PropType<string | import("vue").CSSProperties>;
|
5142
|
+
headerStyle: PropType<string | import("vue").CSSProperties>;
|
5143
|
+
footerStyle: PropType<string | import("vue").CSSProperties>;
|
5144
|
+
onClickoutside: PropType<(e: MouseEvent) => void>;
|
5145
|
+
'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
5146
|
+
onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
5153
5147
|
internalDeactivateImmediately: BooleanConstructor;
|
5154
5148
|
internalSyncTargetWithParent: BooleanConstructor;
|
5155
5149
|
internalInheritedEventHandlers: {
|
5156
|
-
type:
|
5150
|
+
type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
5157
5151
|
default: () => never[];
|
5158
5152
|
};
|
5159
5153
|
internalTrapFocus: BooleanConstructor;
|
5160
5154
|
internalExtraClass: {
|
5161
|
-
type:
|
5155
|
+
type: PropType<string[]>;
|
5162
5156
|
default: () => never[];
|
5163
5157
|
};
|
5164
|
-
onShow:
|
5165
|
-
onHide:
|
5158
|
+
onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
5159
|
+
onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
5166
5160
|
arrow: {
|
5167
|
-
type:
|
5161
|
+
type: PropType<boolean | undefined>;
|
5168
5162
|
default: undefined;
|
5169
5163
|
};
|
5170
5164
|
minWidth: NumberConstructor;
|
@@ -5270,7 +5264,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
5270
5264
|
}>;
|
5271
5265
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSave" | "onClose")[], "onSave" | "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
5272
5266
|
fields: {
|
5273
|
-
type:
|
5267
|
+
type: PropType<any[]>;
|
5274
5268
|
default: () => never[];
|
5275
5269
|
};
|
5276
5270
|
menuSource: {
|
@@ -5297,6 +5291,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
5297
5291
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
5298
5292
|
type: {
|
5299
5293
|
type: StringConstructor;
|
5294
|
+
required: false;
|
5300
5295
|
default: string;
|
5301
5296
|
};
|
5302
5297
|
}>>, {
|