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