cnhis-design-vue 3.1.13-beta.0 → 3.1.13-beta.11
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/big-table/src/BigTable.vue.d.ts +3 -16
- package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +40 -21
- package/es/packages/big-table/src/bigTableEmits.js +2 -1
- package/es/packages/big-table/src/utils.js +2 -1
- package/es/packages/big-table/style/index.css +5 -0
- package/es/packages/bpmn-workflow/src/BpmnWorkflow.d.ts +5 -0
- package/es/packages/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
- package/es/packages/bpmn-workflow/types/ModelingModule.d.ts +1 -0
- package/es/packages/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
- package/es/packages/button-print/index.d.ts +15 -1
- package/es/packages/button-print/src/ButtonPrint.vue.d.ts +199 -185
- package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +39 -4
- package/es/packages/button-print/src/utils/print.d.ts +41 -0
- package/es/packages/button-print/src/utils/print.js +325 -0
- package/es/packages/fabric-chart/index.d.ts +3 -4
- package/es/packages/fabric-chart/src/FabricChart.vue.d.ts +3 -4
- package/es/packages/fabric-chart/src/FabricChart.vue_vue_type_script_setup_true_lang.js +24 -18
- package/es/packages/fabric-chart/src/hooks/useBottom.js +1 -2
- package/es/packages/fabric-chart/src/hooks/useCenter.js +89 -19
- package/es/packages/fabric-chart/src/hooks/useCumputedPoint.d.ts +2 -2
- package/es/packages/fabric-chart/src/hooks/useCumputedPoint.js +27 -13
- package/es/packages/fabric-chart/src/hooks/useDraw.d.ts +1 -1
- package/es/packages/fabric-chart/src/hooks/useDraw.js +64 -7
- package/es/packages/fabric-chart/src/hooks/useLeft.js +83 -22
- package/es/packages/fabric-chart/src/hooks/useOther.js +3 -2
- package/es/packages/fabric-chart/src/hooks/useShadow.js +1 -1
- package/es/packages/fabric-chart/src/hooks/useTop.js +6 -4
- package/es/packages/fabric-chart/src/interface.d.ts +2 -2
- package/es/packages/fabric-chart/src/utils/index.d.ts +6823 -2
- package/es/packages/form-render/index.d.ts +311 -0
- package/es/packages/form-render/src/FormRender.vue.d.ts +313 -2
- package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.js +58 -27
- package/es/packages/form-render/src/components/renderer/cascader.d.ts +7 -1
- package/es/packages/form-render/src/components/renderer/cascader.js +65 -53
- package/es/packages/form-render/src/components/renderer/formItem.d.ts +8 -293
- package/es/packages/form-render/src/components/renderer/formItem.js +137 -2
- package/es/packages/form-render/src/components/renderer/input.js +3 -3
- package/es/packages/form-render/src/components/renderer/select.d.ts +7 -5
- package/es/packages/form-render/src/components/renderer/select.js +35 -40
- package/es/packages/form-render/src/components/renderer/simpleComponent.js +2 -15
- package/es/packages/form-render/src/constants/index.d.ts +2 -1
- package/es/packages/form-render/src/constants/index.js +2 -1
- package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +4 -2
- package/es/packages/form-render/src/hooks/useFormContext.d.ts +2 -1
- package/es/packages/form-render/src/hooks/useFormContext.js +13 -2
- package/es/packages/form-render/src/types/fieldItem.d.ts +58 -7
- package/es/packages/form-render/src/types/index.d.ts +5 -0
- package/es/packages/form-render/src/utils/index.d.ts +13 -4
- package/es/packages/form-render/src/utils/index.js +44 -3
- package/es/packages/form-render/style/index.css +44 -6
- package/es/packages/form-table/src/hooks/useNuiThemeOverrides.d.ts +4 -0
- package/es/packages/form-table/src/hooks/useNuiThemeOverrides.js +18 -0
- package/es/packages/index.css +228 -8
- package/es/packages/index.d.ts +5 -1
- package/es/packages/index.js +12 -1
- package/es/packages/scale-view/src/hooks/scaleview-init.js +1 -5
- package/es/packages/scale-view/src/hooks/scaleview-submit.js +1 -6
- package/es/packages/scale-view/src/hooks/scaleview-validate.js +0 -3
- package/es/packages/shortcut-provider/index.d.ts +17 -0
- package/es/packages/shortcut-provider/index.js +13 -0
- package/es/packages/shortcut-provider/src/ShortcutProvider.js +4 -0
- package/es/packages/shortcut-provider/src/ShortcutProvider.vue.d.ts +15 -0
- package/es/packages/shortcut-provider/src/ShortcutProvider.vue_vue_type_script_setup_true_lang.js +32 -0
- package/es/packages/shortcut-provider/src/constants/index.d.ts +7 -0
- package/es/packages/shortcut-provider/src/constants/index.js +8 -0
- package/es/packages/shortcut-provider/src/hooks/index.d.ts +2 -0
- package/es/packages/shortcut-provider/src/hooks/index.js +2 -0
- package/es/packages/shortcut-provider/src/hooks/useShortcutSignature.d.ts +4 -0
- package/es/packages/shortcut-provider/src/hooks/useShortcutSignature.js +12 -0
- package/es/packages/shortcut-provider/src/hooks/useShortcuts.d.ts +30 -0
- package/es/packages/shortcut-provider/src/hooks/useShortcuts.js +157 -0
- package/es/packages/shortcut-provider/src/types/index.d.ts +30 -0
- package/es/packages/shortcut-provider/src/types/index.js +1 -0
- package/es/packages/shortcut-provider/src/utils/index.d.ts +7 -0
- package/es/packages/shortcut-provider/src/utils/index.js +49 -0
- package/es/packages/shortcut-provider/style/index.css +3 -0
- package/es/packages/shortcut-setter/constant/index.d.ts +4 -0
- package/es/packages/shortcut-setter/constant/index.js +7 -0
- package/es/packages/shortcut-setter/index.d.ts +4258 -0
- package/es/packages/shortcut-setter/index.js +11 -0
- package/es/packages/shortcut-setter/src/ShortcutSetter.js +4 -0
- package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +4258 -0
- package/es/packages/shortcut-setter/src/ShortcutSetter.vue_vue_type_script_setup_true_lang.js +38 -0
- package/es/packages/shortcut-setter/src/ShortcutSetterItem.js +4 -0
- package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +4238 -0
- package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue_vue_type_script_setup_true_lang.js +125 -0
- package/es/packages/shortcut-setter/style/index.css +8 -0
- package/es/packages/steps-wheel/index.d.ts +548 -0
- package/es/packages/steps-wheel/index.js +11 -0
- package/es/packages/steps-wheel/src/StepsWheel.js +4 -0
- package/es/packages/steps-wheel/src/StepsWheel.vue.d.ts +547 -0
- package/es/packages/steps-wheel/src/StepsWheel.vue_vue_type_script_setup_true_lang.js +252 -0
- package/es/packages/steps-wheel/style/index.css +161 -0
- package/es/packages/time-line/index.d.ts +1 -0
- package/es/packages/time-line/src/TimeLine.vue.d.ts +1 -0
- package/es/packages/time-line/src/TimeLine.vue_vue_type_script_setup_true_lang.js +6 -1
- package/es/packages/time-line/style/index.css +7 -2
- package/es/src/types/index.d.ts +1 -0
- package/package.json +153 -153
- package/es/packages/button-print/src/utils/print.es.min.d.ts +0 -2
- package/es/packages/button-print/src/utils/print.es.min.js +0 -2532
- package/test.ts +0 -326
|
@@ -21,6 +21,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
21
|
default: string;
|
|
22
22
|
type: StringConstructor;
|
|
23
23
|
};
|
|
24
|
+
pdfLoadText: {
|
|
25
|
+
default: string;
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
};
|
|
24
28
|
formatEditText: {
|
|
25
29
|
default: string;
|
|
26
30
|
type: StringConstructor;
|
|
@@ -51,7 +55,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
55
|
};
|
|
52
56
|
}, {
|
|
53
57
|
$message: import("naive-ui").MessageApi;
|
|
54
|
-
printInstance:
|
|
58
|
+
printInstance: any;
|
|
55
59
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
56
60
|
printParams: {
|
|
57
61
|
type: ArrayConstructor;
|
|
@@ -75,6 +79,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
75
79
|
default: string;
|
|
76
80
|
type: StringConstructor;
|
|
77
81
|
};
|
|
82
|
+
pdfLoadText: {
|
|
83
|
+
default: string;
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
};
|
|
78
86
|
formatEditText: {
|
|
79
87
|
default: string;
|
|
80
88
|
type: StringConstructor;
|
|
@@ -138,6 +146,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
138
146
|
getOnceParams: () => string;
|
|
139
147
|
handleClickPrint: () => void;
|
|
140
148
|
handleClickPreview: () => Promise<void>;
|
|
149
|
+
handleClickPdf: () => Promise<void>;
|
|
141
150
|
handleClickEdit: () => void;
|
|
142
151
|
handleSelect: (key: any) => void;
|
|
143
152
|
handleClickOutside: () => void;
|
|
@@ -158,7 +167,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
158
167
|
reformatPrintParams: () => void;
|
|
159
168
|
verifiySuccess: (token: any) => void;
|
|
160
169
|
NDropdown: import("vue").DefineComponent<{
|
|
161
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
170
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Dropdown", {
|
|
162
171
|
optionHeightSmall: string;
|
|
163
172
|
optionHeightMedium: string;
|
|
164
173
|
optionHeightLarge: string;
|
|
@@ -213,7 +222,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
213
222
|
optionIconPrefixWidthLarge: string;
|
|
214
223
|
optionIconPrefixWidthHuge: string;
|
|
215
224
|
}, {
|
|
216
|
-
Popover: import("naive-ui/es/_mixins
|
|
225
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
217
226
|
fontSize: string;
|
|
218
227
|
borderRadius: string;
|
|
219
228
|
color: string;
|
|
@@ -228,7 +237,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
228
237
|
padding: string;
|
|
229
238
|
}, any>;
|
|
230
239
|
}>>;
|
|
231
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
240
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Dropdown", {
|
|
232
241
|
optionHeightSmall: string;
|
|
233
242
|
optionHeightMedium: string;
|
|
234
243
|
optionHeightLarge: string;
|
|
@@ -283,7 +292,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
283
292
|
optionIconPrefixWidthLarge: string;
|
|
284
293
|
optionIconPrefixWidthHuge: string;
|
|
285
294
|
}, {
|
|
286
|
-
Popover: import("naive-ui/es/_mixins
|
|
295
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
287
296
|
fontSize: string;
|
|
288
297
|
borderRadius: string;
|
|
289
298
|
color: string;
|
|
@@ -298,7 +307,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
298
307
|
padding: string;
|
|
299
308
|
}, any>;
|
|
300
309
|
}>>>;
|
|
301
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
310
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Dropdown", {
|
|
302
311
|
optionHeightSmall: string;
|
|
303
312
|
optionHeightMedium: string;
|
|
304
313
|
optionHeightLarge: string;
|
|
@@ -353,7 +362,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
353
362
|
optionIconPrefixWidthLarge: string;
|
|
354
363
|
optionIconPrefixWidthHuge: string;
|
|
355
364
|
}, {
|
|
356
|
-
Popover: import("naive-ui/es/_mixins
|
|
365
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
357
366
|
fontSize: string;
|
|
358
367
|
borderRadius: string;
|
|
359
368
|
color: string;
|
|
@@ -385,16 +394,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
385
394
|
readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
386
395
|
readonly default: "bottom";
|
|
387
396
|
};
|
|
388
|
-
readonly onSelect: import("vue").PropType<import("naive-ui/es/_utils
|
|
397
|
+
readonly onSelect: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/dropdown/src/interface").OnUpdateValue>>;
|
|
389
398
|
readonly options: {
|
|
390
|
-
readonly type: import("vue").PropType<import("naive-ui/es/dropdown/src/interface
|
|
399
|
+
readonly type: import("vue").PropType<import("naive-ui/es/dropdown/src/interface").DropdownMixedOption[]>;
|
|
391
400
|
readonly default: () => never[];
|
|
392
401
|
};
|
|
393
402
|
readonly menuProps: import("vue").PropType<import("naive-ui").DropdownMenuProps>;
|
|
394
403
|
readonly showArrow: BooleanConstructor;
|
|
395
|
-
readonly renderLabel: import("vue").PropType<import("naive-ui/es/dropdown/src/interface
|
|
396
|
-
readonly renderIcon: import("vue").PropType<import("naive-ui/es/dropdown/src/interface
|
|
397
|
-
readonly renderOption: import("vue").PropType<import("naive-ui/es/dropdown/src/interface
|
|
404
|
+
readonly renderLabel: import("vue").PropType<import("naive-ui/es/dropdown/src/interface").RenderLabel>;
|
|
405
|
+
readonly renderIcon: import("vue").PropType<import("naive-ui/es/dropdown/src/interface").RenderIcon>;
|
|
406
|
+
readonly renderOption: import("vue").PropType<import("naive-ui/es/dropdown/src/interface").RenderOption>;
|
|
398
407
|
readonly nodeProps: import("vue").PropType<import("naive-ui").MenuNodeProps>;
|
|
399
408
|
readonly labelField: {
|
|
400
409
|
readonly type: StringConstructor;
|
|
@@ -460,12 +469,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
460
469
|
readonly headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
461
470
|
readonly footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
462
471
|
readonly onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
463
|
-
readonly 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils
|
|
464
|
-
readonly onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils
|
|
472
|
+
readonly 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
473
|
+
readonly onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
465
474
|
readonly internalDeactivateImmediately: BooleanConstructor;
|
|
466
475
|
readonly internalSyncTargetWithParent: BooleanConstructor;
|
|
467
476
|
readonly internalInheritedEventHandlers: {
|
|
468
|
-
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover
|
|
477
|
+
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
469
478
|
default: () => never[];
|
|
470
479
|
};
|
|
471
480
|
readonly internalTrapFocus: BooleanConstructor;
|
|
@@ -473,8 +482,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
473
482
|
type: import("vue").PropType<string[]>;
|
|
474
483
|
default: () => never[];
|
|
475
484
|
};
|
|
476
|
-
readonly onShow: import("vue").PropType<import("naive-ui/es/_utils
|
|
477
|
-
readonly onHide: import("vue").PropType<import("naive-ui/es/_utils
|
|
485
|
+
readonly onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
486
|
+
readonly onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
478
487
|
readonly arrow: {
|
|
479
488
|
type: import("vue").PropType<boolean | undefined>;
|
|
480
489
|
default: undefined;
|
|
@@ -645,7 +654,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
645
654
|
optionIconPrefixWidthHuge: string;
|
|
646
655
|
};
|
|
647
656
|
peers: {
|
|
648
|
-
Popover: import("naive-ui/es/_mixins
|
|
657
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
649
658
|
fontSize: string;
|
|
650
659
|
borderRadius: string;
|
|
651
660
|
color: string;
|
|
@@ -668,7 +677,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
668
677
|
} | undefined;
|
|
669
678
|
};
|
|
670
679
|
}>;
|
|
671
|
-
tmNodes: import("vue").ComputedRef<import("treemate").TreeNode<import("naive-ui").MenuOption | import("naive-ui/es/menu/src/interface
|
|
680
|
+
tmNodes: import("vue").ComputedRef<import("treemate").TreeNode<import("naive-ui").MenuOption | import("naive-ui/es/menu/src/interface").MenuRenderOption, import("naive-ui").MenuGroupOption, import("naive-ui/es/menu/src/interface").MenuIgnoredOption>[]>;
|
|
672
681
|
mergedShow: import("vue").ComputedRef<boolean>;
|
|
673
682
|
handleAfterLeave: () => void;
|
|
674
683
|
doUpdateShow: (value: boolean) => void;
|
|
@@ -676,7 +685,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
676
685
|
themeClass: import("vue").Ref<string> | undefined;
|
|
677
686
|
onRender: (() => void) | undefined;
|
|
678
687
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
679
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
688
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Dropdown", {
|
|
680
689
|
optionHeightSmall: string;
|
|
681
690
|
optionHeightMedium: string;
|
|
682
691
|
optionHeightLarge: string;
|
|
@@ -731,7 +740,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
731
740
|
optionIconPrefixWidthLarge: string;
|
|
732
741
|
optionIconPrefixWidthHuge: string;
|
|
733
742
|
}, {
|
|
734
|
-
Popover: import("naive-ui/es/_mixins
|
|
743
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
735
744
|
fontSize: string;
|
|
736
745
|
borderRadius: string;
|
|
737
746
|
color: string;
|
|
@@ -746,7 +755,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
746
755
|
padding: string;
|
|
747
756
|
}, any>;
|
|
748
757
|
}>>;
|
|
749
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
758
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Dropdown", {
|
|
750
759
|
optionHeightSmall: string;
|
|
751
760
|
optionHeightMedium: string;
|
|
752
761
|
optionHeightLarge: string;
|
|
@@ -801,7 +810,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
801
810
|
optionIconPrefixWidthLarge: string;
|
|
802
811
|
optionIconPrefixWidthHuge: string;
|
|
803
812
|
}, {
|
|
804
|
-
Popover: import("naive-ui/es/_mixins
|
|
813
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
805
814
|
fontSize: string;
|
|
806
815
|
borderRadius: string;
|
|
807
816
|
color: string;
|
|
@@ -816,7 +825,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
816
825
|
padding: string;
|
|
817
826
|
}, any>;
|
|
818
827
|
}>>>;
|
|
819
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
828
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Dropdown", {
|
|
820
829
|
optionHeightSmall: string;
|
|
821
830
|
optionHeightMedium: string;
|
|
822
831
|
optionHeightLarge: string;
|
|
@@ -871,7 +880,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
871
880
|
optionIconPrefixWidthLarge: string;
|
|
872
881
|
optionIconPrefixWidthHuge: string;
|
|
873
882
|
}, {
|
|
874
|
-
Popover: import("naive-ui/es/_mixins
|
|
883
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
875
884
|
fontSize: string;
|
|
876
885
|
borderRadius: string;
|
|
877
886
|
color: string;
|
|
@@ -903,16 +912,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
903
912
|
readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
904
913
|
readonly default: "bottom";
|
|
905
914
|
};
|
|
906
|
-
readonly onSelect: import("vue").PropType<import("naive-ui/es/_utils
|
|
915
|
+
readonly onSelect: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/dropdown/src/interface").OnUpdateValue>>;
|
|
907
916
|
readonly options: {
|
|
908
|
-
readonly type: import("vue").PropType<import("naive-ui/es/dropdown/src/interface
|
|
917
|
+
readonly type: import("vue").PropType<import("naive-ui/es/dropdown/src/interface").DropdownMixedOption[]>;
|
|
909
918
|
readonly default: () => never[];
|
|
910
919
|
};
|
|
911
920
|
readonly menuProps: import("vue").PropType<import("naive-ui").DropdownMenuProps>;
|
|
912
921
|
readonly showArrow: BooleanConstructor;
|
|
913
|
-
readonly renderLabel: import("vue").PropType<import("naive-ui/es/dropdown/src/interface
|
|
914
|
-
readonly renderIcon: import("vue").PropType<import("naive-ui/es/dropdown/src/interface
|
|
915
|
-
readonly renderOption: import("vue").PropType<import("naive-ui/es/dropdown/src/interface
|
|
922
|
+
readonly renderLabel: import("vue").PropType<import("naive-ui/es/dropdown/src/interface").RenderLabel>;
|
|
923
|
+
readonly renderIcon: import("vue").PropType<import("naive-ui/es/dropdown/src/interface").RenderIcon>;
|
|
924
|
+
readonly renderOption: import("vue").PropType<import("naive-ui/es/dropdown/src/interface").RenderOption>;
|
|
916
925
|
readonly nodeProps: import("vue").PropType<import("naive-ui").MenuNodeProps>;
|
|
917
926
|
readonly labelField: {
|
|
918
927
|
readonly type: StringConstructor;
|
|
@@ -978,12 +987,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
978
987
|
readonly headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
979
988
|
readonly footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
980
989
|
readonly onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
981
|
-
readonly 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils
|
|
982
|
-
readonly onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils
|
|
990
|
+
readonly 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
991
|
+
readonly onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
983
992
|
readonly internalDeactivateImmediately: BooleanConstructor;
|
|
984
993
|
readonly internalSyncTargetWithParent: BooleanConstructor;
|
|
985
994
|
readonly internalInheritedEventHandlers: {
|
|
986
|
-
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover
|
|
995
|
+
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
987
996
|
default: () => never[];
|
|
988
997
|
};
|
|
989
998
|
readonly internalTrapFocus: BooleanConstructor;
|
|
@@ -991,8 +1000,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
991
1000
|
type: import("vue").PropType<string[]>;
|
|
992
1001
|
default: () => never[];
|
|
993
1002
|
};
|
|
994
|
-
readonly onShow: import("vue").PropType<import("naive-ui/es/_utils
|
|
995
|
-
readonly onHide: import("vue").PropType<import("naive-ui/es/_utils
|
|
1003
|
+
readonly onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
1004
|
+
readonly onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
996
1005
|
readonly arrow: {
|
|
997
1006
|
type: import("vue").PropType<boolean | undefined>;
|
|
998
1007
|
default: undefined;
|
|
@@ -1007,7 +1016,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1007
1016
|
readonly disabled: boolean;
|
|
1008
1017
|
readonly duration: number;
|
|
1009
1018
|
readonly to: string | boolean | HTMLElement;
|
|
1010
|
-
readonly options: import("naive-ui/es/dropdown/src/interface
|
|
1019
|
+
readonly options: import("naive-ui/es/dropdown/src/interface").DropdownMixedOption[];
|
|
1011
1020
|
readonly raw: boolean;
|
|
1012
1021
|
readonly placement: import("naive-ui").PopoverPlacement;
|
|
1013
1022
|
readonly overlap: boolean;
|
|
@@ -1025,7 +1034,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1025
1034
|
readonly internalTrapFocus: boolean;
|
|
1026
1035
|
readonly defaultShow: boolean;
|
|
1027
1036
|
readonly internalSyncTargetWithParent: boolean;
|
|
1028
|
-
readonly internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover
|
|
1037
|
+
readonly internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
|
|
1029
1038
|
readonly internalExtraClass: string[];
|
|
1030
1039
|
readonly arrow: boolean | undefined;
|
|
1031
1040
|
readonly childrenField: string;
|
|
@@ -1040,7 +1049,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1040
1049
|
readonly loading: BooleanConstructor;
|
|
1041
1050
|
readonly disabled: BooleanConstructor;
|
|
1042
1051
|
readonly circle: BooleanConstructor;
|
|
1043
|
-
readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface
|
|
1052
|
+
readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
|
|
1044
1053
|
readonly ghost: BooleanConstructor;
|
|
1045
1054
|
readonly round: BooleanConstructor;
|
|
1046
1055
|
readonly secondary: BooleanConstructor;
|
|
@@ -1060,7 +1069,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1060
1069
|
readonly default: "button";
|
|
1061
1070
|
};
|
|
1062
1071
|
readonly type: {
|
|
1063
|
-
readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface
|
|
1072
|
+
readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
|
|
1064
1073
|
readonly default: "default";
|
|
1065
1074
|
};
|
|
1066
1075
|
readonly dashed: BooleanConstructor;
|
|
@@ -1076,12 +1085,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1076
1085
|
readonly type: BooleanConstructor;
|
|
1077
1086
|
readonly default: true;
|
|
1078
1087
|
};
|
|
1079
|
-
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils
|
|
1088
|
+
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
1080
1089
|
readonly nativeFocusBehavior: {
|
|
1081
1090
|
readonly type: BooleanConstructor;
|
|
1082
1091
|
readonly default: boolean;
|
|
1083
1092
|
};
|
|
1084
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
1093
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
1085
1094
|
heightTiny: string;
|
|
1086
1095
|
heightSmall: string;
|
|
1087
1096
|
heightMedium: string;
|
|
@@ -1285,7 +1294,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1285
1294
|
iconSizeLarge: string;
|
|
1286
1295
|
rippleDuration: string;
|
|
1287
1296
|
}, any>>;
|
|
1288
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
1297
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
1289
1298
|
heightTiny: string;
|
|
1290
1299
|
heightSmall: string;
|
|
1291
1300
|
heightMedium: string;
|
|
@@ -1489,7 +1498,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1489
1498
|
iconSizeLarge: string;
|
|
1490
1499
|
rippleDuration: string;
|
|
1491
1500
|
}, any>>>;
|
|
1492
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
1501
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
1493
1502
|
heightTiny: string;
|
|
1494
1503
|
heightSmall: string;
|
|
1495
1504
|
heightMedium: string;
|
|
@@ -1703,7 +1712,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1703
1712
|
mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
|
|
1704
1713
|
showBorder: import("vue").ComputedRef<boolean>;
|
|
1705
1714
|
enterPressed: import("vue").Ref<boolean>;
|
|
1706
|
-
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface
|
|
1715
|
+
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
1707
1716
|
handleMousedown: (e: MouseEvent) => void;
|
|
1708
1717
|
handleKeydown: (e: KeyboardEvent) => void;
|
|
1709
1718
|
handleBlur: () => void;
|
|
@@ -1757,7 +1766,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1757
1766
|
readonly loading: BooleanConstructor;
|
|
1758
1767
|
readonly disabled: BooleanConstructor;
|
|
1759
1768
|
readonly circle: BooleanConstructor;
|
|
1760
|
-
readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface
|
|
1769
|
+
readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
|
|
1761
1770
|
readonly ghost: BooleanConstructor;
|
|
1762
1771
|
readonly round: BooleanConstructor;
|
|
1763
1772
|
readonly secondary: BooleanConstructor;
|
|
@@ -1777,7 +1786,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1777
1786
|
readonly default: "button";
|
|
1778
1787
|
};
|
|
1779
1788
|
readonly type: {
|
|
1780
|
-
readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface
|
|
1789
|
+
readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
|
|
1781
1790
|
readonly default: "default";
|
|
1782
1791
|
};
|
|
1783
1792
|
readonly dashed: BooleanConstructor;
|
|
@@ -1793,12 +1802,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1793
1802
|
readonly type: BooleanConstructor;
|
|
1794
1803
|
readonly default: true;
|
|
1795
1804
|
};
|
|
1796
|
-
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils
|
|
1805
|
+
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
1797
1806
|
readonly nativeFocusBehavior: {
|
|
1798
1807
|
readonly type: BooleanConstructor;
|
|
1799
1808
|
readonly default: boolean;
|
|
1800
1809
|
};
|
|
1801
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
1810
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
1802
1811
|
heightTiny: string;
|
|
1803
1812
|
heightSmall: string;
|
|
1804
1813
|
heightMedium: string;
|
|
@@ -2002,7 +2011,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2002
2011
|
iconSizeLarge: string;
|
|
2003
2012
|
rippleDuration: string;
|
|
2004
2013
|
}, any>>;
|
|
2005
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
2014
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
2006
2015
|
heightTiny: string;
|
|
2007
2016
|
heightSmall: string;
|
|
2008
2017
|
heightMedium: string;
|
|
@@ -2206,7 +2215,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2206
2215
|
iconSizeLarge: string;
|
|
2207
2216
|
rippleDuration: string;
|
|
2208
2217
|
}, any>>>;
|
|
2209
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
2218
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
2210
2219
|
heightTiny: string;
|
|
2211
2220
|
heightSmall: string;
|
|
2212
2221
|
heightMedium: string;
|
|
@@ -2411,7 +2420,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2411
2420
|
rippleDuration: string;
|
|
2412
2421
|
}, any>>>;
|
|
2413
2422
|
}>>, {
|
|
2414
|
-
readonly type: import("naive-ui/es/button/src/interface
|
|
2423
|
+
readonly type: import("naive-ui/es/button/src/interface").Type;
|
|
2415
2424
|
readonly tag: keyof HTMLElementTagNameMap;
|
|
2416
2425
|
readonly block: boolean;
|
|
2417
2426
|
readonly round: boolean;
|
|
@@ -2433,11 +2442,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2433
2442
|
readonly nativeFocusBehavior: boolean;
|
|
2434
2443
|
}>;
|
|
2435
2444
|
NIcon: import("vue").DefineComponent<{
|
|
2436
|
-
readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon
|
|
2445
|
+
readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
|
|
2437
2446
|
readonly size: import("vue").PropType<string | number>;
|
|
2438
2447
|
readonly color: StringConstructor;
|
|
2439
2448
|
readonly component: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
2440
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
2449
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
|
|
2441
2450
|
color: string;
|
|
2442
2451
|
opacity1Depth: string;
|
|
2443
2452
|
opacity2Depth: string;
|
|
@@ -2445,7 +2454,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2445
2454
|
opacity4Depth: string;
|
|
2446
2455
|
opacity5Depth: string;
|
|
2447
2456
|
}, any>>;
|
|
2448
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
2457
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
|
|
2449
2458
|
color: string;
|
|
2450
2459
|
opacity1Depth: string;
|
|
2451
2460
|
opacity2Depth: string;
|
|
@@ -2453,7 +2462,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2453
2462
|
opacity4Depth: string;
|
|
2454
2463
|
opacity5Depth: string;
|
|
2455
2464
|
}, any>>>;
|
|
2456
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
2465
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
|
|
2457
2466
|
color: string;
|
|
2458
2467
|
opacity1Depth: string;
|
|
2459
2468
|
opacity2Depth: string;
|
|
@@ -2475,11 +2484,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2475
2484
|
themeClass: import("vue").Ref<string> | undefined;
|
|
2476
2485
|
onRender: (() => void) | undefined;
|
|
2477
2486
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2478
|
-
readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon
|
|
2487
|
+
readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
|
|
2479
2488
|
readonly size: import("vue").PropType<string | number>;
|
|
2480
2489
|
readonly color: StringConstructor;
|
|
2481
2490
|
readonly component: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
|
|
2482
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
2491
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
|
|
2483
2492
|
color: string;
|
|
2484
2493
|
opacity1Depth: string;
|
|
2485
2494
|
opacity2Depth: string;
|
|
@@ -2487,7 +2496,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2487
2496
|
opacity4Depth: string;
|
|
2488
2497
|
opacity5Depth: string;
|
|
2489
2498
|
}, any>>;
|
|
2490
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
2499
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
|
|
2491
2500
|
color: string;
|
|
2492
2501
|
opacity1Depth: string;
|
|
2493
2502
|
opacity2Depth: string;
|
|
@@ -2495,7 +2504,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2495
2504
|
opacity4Depth: string;
|
|
2496
2505
|
opacity5Depth: string;
|
|
2497
2506
|
}, any>>>;
|
|
2498
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
2507
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
|
|
2499
2508
|
color: string;
|
|
2500
2509
|
opacity1Depth: string;
|
|
2501
2510
|
opacity2Depth: string;
|
|
@@ -2538,7 +2547,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2538
2547
|
width: string;
|
|
2539
2548
|
};
|
|
2540
2549
|
formRef: import("vue").Ref<{
|
|
2541
|
-
validate: import("naive-ui/es/form/src/interface
|
|
2550
|
+
validate: import("naive-ui/es/form/src/interface").FormValidate;
|
|
2542
2551
|
restoreValidation: () => void;
|
|
2543
2552
|
} | null>;
|
|
2544
2553
|
handleClickClose: () => void;
|
|
@@ -2552,7 +2561,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2552
2561
|
readonly loading: BooleanConstructor;
|
|
2553
2562
|
readonly disabled: BooleanConstructor;
|
|
2554
2563
|
readonly circle: BooleanConstructor;
|
|
2555
|
-
readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface
|
|
2564
|
+
readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
|
|
2556
2565
|
readonly ghost: BooleanConstructor;
|
|
2557
2566
|
readonly round: BooleanConstructor;
|
|
2558
2567
|
readonly secondary: BooleanConstructor;
|
|
@@ -2572,7 +2581,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2572
2581
|
readonly default: "button";
|
|
2573
2582
|
};
|
|
2574
2583
|
readonly type: {
|
|
2575
|
-
readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface
|
|
2584
|
+
readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
|
|
2576
2585
|
readonly default: "default";
|
|
2577
2586
|
};
|
|
2578
2587
|
readonly dashed: BooleanConstructor;
|
|
@@ -2588,12 +2597,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2588
2597
|
readonly type: BooleanConstructor;
|
|
2589
2598
|
readonly default: true;
|
|
2590
2599
|
};
|
|
2591
|
-
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils
|
|
2600
|
+
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
2592
2601
|
readonly nativeFocusBehavior: {
|
|
2593
2602
|
readonly type: BooleanConstructor;
|
|
2594
2603
|
readonly default: boolean;
|
|
2595
2604
|
};
|
|
2596
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
2605
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
2597
2606
|
heightTiny: string;
|
|
2598
2607
|
heightSmall: string;
|
|
2599
2608
|
heightMedium: string;
|
|
@@ -2797,7 +2806,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2797
2806
|
iconSizeLarge: string;
|
|
2798
2807
|
rippleDuration: string;
|
|
2799
2808
|
}, any>>;
|
|
2800
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
2809
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
2801
2810
|
heightTiny: string;
|
|
2802
2811
|
heightSmall: string;
|
|
2803
2812
|
heightMedium: string;
|
|
@@ -3001,7 +3010,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3001
3010
|
iconSizeLarge: string;
|
|
3002
3011
|
rippleDuration: string;
|
|
3003
3012
|
}, any>>>;
|
|
3004
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
3013
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
3005
3014
|
heightTiny: string;
|
|
3006
3015
|
heightSmall: string;
|
|
3007
3016
|
heightMedium: string;
|
|
@@ -3215,7 +3224,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3215
3224
|
mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
|
|
3216
3225
|
showBorder: import("vue").ComputedRef<boolean>;
|
|
3217
3226
|
enterPressed: import("vue").Ref<boolean>;
|
|
3218
|
-
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface
|
|
3227
|
+
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
3219
3228
|
handleMousedown: (e: MouseEvent) => void;
|
|
3220
3229
|
handleKeydown: (e: KeyboardEvent) => void;
|
|
3221
3230
|
handleBlur: () => void;
|
|
@@ -3269,7 +3278,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3269
3278
|
readonly loading: BooleanConstructor;
|
|
3270
3279
|
readonly disabled: BooleanConstructor;
|
|
3271
3280
|
readonly circle: BooleanConstructor;
|
|
3272
|
-
readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface
|
|
3281
|
+
readonly size: import("vue").PropType<import("naive-ui/es/button/src/interface").Size>;
|
|
3273
3282
|
readonly ghost: BooleanConstructor;
|
|
3274
3283
|
readonly round: BooleanConstructor;
|
|
3275
3284
|
readonly secondary: BooleanConstructor;
|
|
@@ -3289,7 +3298,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3289
3298
|
readonly default: "button";
|
|
3290
3299
|
};
|
|
3291
3300
|
readonly type: {
|
|
3292
|
-
readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface
|
|
3301
|
+
readonly type: import("vue").PropType<import("naive-ui/es/button/src/interface").Type>;
|
|
3293
3302
|
readonly default: "default";
|
|
3294
3303
|
};
|
|
3295
3304
|
readonly dashed: BooleanConstructor;
|
|
@@ -3305,12 +3314,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3305
3314
|
readonly type: BooleanConstructor;
|
|
3306
3315
|
readonly default: true;
|
|
3307
3316
|
};
|
|
3308
|
-
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils
|
|
3317
|
+
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
3309
3318
|
readonly nativeFocusBehavior: {
|
|
3310
3319
|
readonly type: BooleanConstructor;
|
|
3311
3320
|
readonly default: boolean;
|
|
3312
3321
|
};
|
|
3313
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
3322
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
3314
3323
|
heightTiny: string;
|
|
3315
3324
|
heightSmall: string;
|
|
3316
3325
|
heightMedium: string;
|
|
@@ -3514,7 +3523,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3514
3523
|
iconSizeLarge: string;
|
|
3515
3524
|
rippleDuration: string;
|
|
3516
3525
|
}, any>>;
|
|
3517
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
3526
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
3518
3527
|
heightTiny: string;
|
|
3519
3528
|
heightSmall: string;
|
|
3520
3529
|
heightMedium: string;
|
|
@@ -3718,7 +3727,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3718
3727
|
iconSizeLarge: string;
|
|
3719
3728
|
rippleDuration: string;
|
|
3720
3729
|
}, any>>>;
|
|
3721
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
3730
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
3722
3731
|
heightTiny: string;
|
|
3723
3732
|
heightSmall: string;
|
|
3724
3733
|
heightMedium: string;
|
|
@@ -3923,7 +3932,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3923
3932
|
rippleDuration: string;
|
|
3924
3933
|
}, any>>>;
|
|
3925
3934
|
}>>, {
|
|
3926
|
-
readonly type: import("naive-ui/es/button/src/interface
|
|
3935
|
+
readonly type: import("naive-ui/es/button/src/interface").Type;
|
|
3927
3936
|
readonly tag: keyof HTMLElementTagNameMap;
|
|
3928
3937
|
readonly block: boolean;
|
|
3929
3938
|
readonly round: boolean;
|
|
@@ -3946,8 +3955,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3946
3955
|
}>;
|
|
3947
3956
|
NModal: import("vue").DefineComponent<{
|
|
3948
3957
|
onEsc: import("vue").PropType<() => void>;
|
|
3949
|
-
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils
|
|
3950
|
-
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils
|
|
3958
|
+
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
3959
|
+
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
3951
3960
|
onAfterEnter: import("vue").PropType<() => void>;
|
|
3952
3961
|
onBeforeLeave: import("vue").PropType<() => void>;
|
|
3953
3962
|
onAfterLeave: import("vue").PropType<() => void>;
|
|
@@ -3986,14 +3995,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3986
3995
|
};
|
|
3987
3996
|
loading: BooleanConstructor;
|
|
3988
3997
|
bordered: BooleanConstructor;
|
|
3989
|
-
iconPlacement: import("vue").PropType<import("naive-ui/es/dialog/src/interface
|
|
3998
|
+
iconPlacement: import("vue").PropType<import("naive-ui/es/dialog/src/interface").IconPlacement>;
|
|
3990
3999
|
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
3991
4000
|
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
3992
4001
|
headerExtraStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
3993
4002
|
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
3994
4003
|
embedded: BooleanConstructor;
|
|
3995
4004
|
segmented: {
|
|
3996
|
-
readonly type: import("vue").PropType<boolean | import("naive-ui/es/card/src/Card
|
|
4005
|
+
readonly type: import("vue").PropType<boolean | import("naive-ui/es/card/src/Card").Segmented>;
|
|
3997
4006
|
readonly default: false;
|
|
3998
4007
|
};
|
|
3999
4008
|
size: {
|
|
@@ -4038,16 +4047,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4038
4047
|
type: BooleanConstructor;
|
|
4039
4048
|
default: boolean;
|
|
4040
4049
|
};
|
|
4041
|
-
theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
4050
|
+
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
4042
4051
|
color: string;
|
|
4043
4052
|
textColor: string;
|
|
4044
4053
|
boxShadow: string;
|
|
4045
4054
|
}, {
|
|
4046
|
-
Scrollbar: import("naive-ui/es/_mixins
|
|
4055
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
4047
4056
|
color: string;
|
|
4048
4057
|
colorHover: string;
|
|
4049
4058
|
}, any>;
|
|
4050
|
-
Dialog: import("naive-ui/es/_mixins
|
|
4059
|
+
Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
|
|
4051
4060
|
fontSize: string;
|
|
4052
4061
|
lineHeight: string;
|
|
4053
4062
|
border: string;
|
|
@@ -4079,7 +4088,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4079
4088
|
closeMargin: string;
|
|
4080
4089
|
closeMarginIconTop: string;
|
|
4081
4090
|
}, {
|
|
4082
|
-
Button: import("naive-ui/es/_mixins
|
|
4091
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
4083
4092
|
heightTiny: string;
|
|
4084
4093
|
heightSmall: string;
|
|
4085
4094
|
heightMedium: string;
|
|
@@ -4284,7 +4293,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4284
4293
|
rippleDuration: string;
|
|
4285
4294
|
}, any>;
|
|
4286
4295
|
}>;
|
|
4287
|
-
Card: import("naive-ui/es/_mixins
|
|
4296
|
+
Card: import("naive-ui/es/_mixins").Theme<"Card", {
|
|
4288
4297
|
lineHeight: string;
|
|
4289
4298
|
color: string;
|
|
4290
4299
|
colorModal: string;
|
|
@@ -4320,16 +4329,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4320
4329
|
closeSize: string;
|
|
4321
4330
|
}, any>;
|
|
4322
4331
|
}>>;
|
|
4323
|
-
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
4332
|
+
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
4324
4333
|
color: string;
|
|
4325
4334
|
textColor: string;
|
|
4326
4335
|
boxShadow: string;
|
|
4327
4336
|
}, {
|
|
4328
|
-
Scrollbar: import("naive-ui/es/_mixins
|
|
4337
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
4329
4338
|
color: string;
|
|
4330
4339
|
colorHover: string;
|
|
4331
4340
|
}, any>;
|
|
4332
|
-
Dialog: import("naive-ui/es/_mixins
|
|
4341
|
+
Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
|
|
4333
4342
|
fontSize: string;
|
|
4334
4343
|
lineHeight: string;
|
|
4335
4344
|
border: string;
|
|
@@ -4361,7 +4370,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4361
4370
|
closeMargin: string;
|
|
4362
4371
|
closeMarginIconTop: string;
|
|
4363
4372
|
}, {
|
|
4364
|
-
Button: import("naive-ui/es/_mixins
|
|
4373
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
4365
4374
|
heightTiny: string;
|
|
4366
4375
|
heightSmall: string;
|
|
4367
4376
|
heightMedium: string;
|
|
@@ -4566,7 +4575,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4566
4575
|
rippleDuration: string;
|
|
4567
4576
|
}, any>;
|
|
4568
4577
|
}>;
|
|
4569
|
-
Card: import("naive-ui/es/_mixins
|
|
4578
|
+
Card: import("naive-ui/es/_mixins").Theme<"Card", {
|
|
4570
4579
|
lineHeight: string;
|
|
4571
4580
|
color: string;
|
|
4572
4581
|
colorModal: string;
|
|
@@ -4602,16 +4611,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4602
4611
|
closeSize: string;
|
|
4603
4612
|
}, any>;
|
|
4604
4613
|
}>>>;
|
|
4605
|
-
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
4614
|
+
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
4606
4615
|
color: string;
|
|
4607
4616
|
textColor: string;
|
|
4608
4617
|
boxShadow: string;
|
|
4609
4618
|
}, {
|
|
4610
|
-
Scrollbar: import("naive-ui/es/_mixins
|
|
4619
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
4611
4620
|
color: string;
|
|
4612
4621
|
colorHover: string;
|
|
4613
4622
|
}, any>;
|
|
4614
|
-
Dialog: import("naive-ui/es/_mixins
|
|
4623
|
+
Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
|
|
4615
4624
|
fontSize: string;
|
|
4616
4625
|
lineHeight: string;
|
|
4617
4626
|
border: string;
|
|
@@ -4643,7 +4652,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4643
4652
|
closeMargin: string;
|
|
4644
4653
|
closeMarginIconTop: string;
|
|
4645
4654
|
}, {
|
|
4646
|
-
Button: import("naive-ui/es/_mixins
|
|
4655
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
4647
4656
|
heightTiny: string;
|
|
4648
4657
|
heightSmall: string;
|
|
4649
4658
|
heightMedium: string;
|
|
@@ -4848,7 +4857,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4848
4857
|
rippleDuration: string;
|
|
4849
4858
|
}, any>;
|
|
4850
4859
|
}>;
|
|
4851
|
-
Card: import("naive-ui/es/_mixins
|
|
4860
|
+
Card: import("naive-ui/es/_mixins").Theme<"Card", {
|
|
4852
4861
|
lineHeight: string;
|
|
4853
4862
|
color: string;
|
|
4854
4863
|
colorModal: string;
|
|
@@ -4908,8 +4917,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4908
4917
|
onRender: (() => void) | undefined;
|
|
4909
4918
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4910
4919
|
onEsc: import("vue").PropType<() => void>;
|
|
4911
|
-
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils
|
|
4912
|
-
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils
|
|
4920
|
+
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
4921
|
+
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
4913
4922
|
onAfterEnter: import("vue").PropType<() => void>;
|
|
4914
4923
|
onBeforeLeave: import("vue").PropType<() => void>;
|
|
4915
4924
|
onAfterLeave: import("vue").PropType<() => void>;
|
|
@@ -4948,14 +4957,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4948
4957
|
};
|
|
4949
4958
|
loading: BooleanConstructor;
|
|
4950
4959
|
bordered: BooleanConstructor;
|
|
4951
|
-
iconPlacement: import("vue").PropType<import("naive-ui/es/dialog/src/interface
|
|
4960
|
+
iconPlacement: import("vue").PropType<import("naive-ui/es/dialog/src/interface").IconPlacement>;
|
|
4952
4961
|
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
4953
4962
|
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
4954
4963
|
headerExtraStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
4955
4964
|
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
4956
4965
|
embedded: BooleanConstructor;
|
|
4957
4966
|
segmented: {
|
|
4958
|
-
readonly type: import("vue").PropType<boolean | import("naive-ui/es/card/src/Card
|
|
4967
|
+
readonly type: import("vue").PropType<boolean | import("naive-ui/es/card/src/Card").Segmented>;
|
|
4959
4968
|
readonly default: false;
|
|
4960
4969
|
};
|
|
4961
4970
|
size: {
|
|
@@ -5000,16 +5009,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5000
5009
|
type: BooleanConstructor;
|
|
5001
5010
|
default: boolean;
|
|
5002
5011
|
};
|
|
5003
|
-
theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
5012
|
+
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
5004
5013
|
color: string;
|
|
5005
5014
|
textColor: string;
|
|
5006
5015
|
boxShadow: string;
|
|
5007
5016
|
}, {
|
|
5008
|
-
Scrollbar: import("naive-ui/es/_mixins
|
|
5017
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
5009
5018
|
color: string;
|
|
5010
5019
|
colorHover: string;
|
|
5011
5020
|
}, any>;
|
|
5012
|
-
Dialog: import("naive-ui/es/_mixins
|
|
5021
|
+
Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
|
|
5013
5022
|
fontSize: string;
|
|
5014
5023
|
lineHeight: string;
|
|
5015
5024
|
border: string;
|
|
@@ -5041,7 +5050,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5041
5050
|
closeMargin: string;
|
|
5042
5051
|
closeMarginIconTop: string;
|
|
5043
5052
|
}, {
|
|
5044
|
-
Button: import("naive-ui/es/_mixins
|
|
5053
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
5045
5054
|
heightTiny: string;
|
|
5046
5055
|
heightSmall: string;
|
|
5047
5056
|
heightMedium: string;
|
|
@@ -5246,7 +5255,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5246
5255
|
rippleDuration: string;
|
|
5247
5256
|
}, any>;
|
|
5248
5257
|
}>;
|
|
5249
|
-
Card: import("naive-ui/es/_mixins
|
|
5258
|
+
Card: import("naive-ui/es/_mixins").Theme<"Card", {
|
|
5250
5259
|
lineHeight: string;
|
|
5251
5260
|
color: string;
|
|
5252
5261
|
colorModal: string;
|
|
@@ -5282,16 +5291,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5282
5291
|
closeSize: string;
|
|
5283
5292
|
}, any>;
|
|
5284
5293
|
}>>;
|
|
5285
|
-
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
5294
|
+
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
5286
5295
|
color: string;
|
|
5287
5296
|
textColor: string;
|
|
5288
5297
|
boxShadow: string;
|
|
5289
5298
|
}, {
|
|
5290
|
-
Scrollbar: import("naive-ui/es/_mixins
|
|
5299
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
5291
5300
|
color: string;
|
|
5292
5301
|
colorHover: string;
|
|
5293
5302
|
}, any>;
|
|
5294
|
-
Dialog: import("naive-ui/es/_mixins
|
|
5303
|
+
Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
|
|
5295
5304
|
fontSize: string;
|
|
5296
5305
|
lineHeight: string;
|
|
5297
5306
|
border: string;
|
|
@@ -5323,7 +5332,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5323
5332
|
closeMargin: string;
|
|
5324
5333
|
closeMarginIconTop: string;
|
|
5325
5334
|
}, {
|
|
5326
|
-
Button: import("naive-ui/es/_mixins
|
|
5335
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
5327
5336
|
heightTiny: string;
|
|
5328
5337
|
heightSmall: string;
|
|
5329
5338
|
heightMedium: string;
|
|
@@ -5528,7 +5537,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5528
5537
|
rippleDuration: string;
|
|
5529
5538
|
}, any>;
|
|
5530
5539
|
}>;
|
|
5531
|
-
Card: import("naive-ui/es/_mixins
|
|
5540
|
+
Card: import("naive-ui/es/_mixins").Theme<"Card", {
|
|
5532
5541
|
lineHeight: string;
|
|
5533
5542
|
color: string;
|
|
5534
5543
|
colorModal: string;
|
|
@@ -5564,16 +5573,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5564
5573
|
closeSize: string;
|
|
5565
5574
|
}, any>;
|
|
5566
5575
|
}>>>;
|
|
5567
|
-
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
5576
|
+
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Modal", {
|
|
5568
5577
|
color: string;
|
|
5569
5578
|
textColor: string;
|
|
5570
5579
|
boxShadow: string;
|
|
5571
5580
|
}, {
|
|
5572
|
-
Scrollbar: import("naive-ui/es/_mixins
|
|
5581
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
5573
5582
|
color: string;
|
|
5574
5583
|
colorHover: string;
|
|
5575
5584
|
}, any>;
|
|
5576
|
-
Dialog: import("naive-ui/es/_mixins
|
|
5585
|
+
Dialog: import("naive-ui/es/_mixins").Theme<"Dialog", {
|
|
5577
5586
|
fontSize: string;
|
|
5578
5587
|
lineHeight: string;
|
|
5579
5588
|
border: string;
|
|
@@ -5605,7 +5614,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5605
5614
|
closeMargin: string;
|
|
5606
5615
|
closeMarginIconTop: string;
|
|
5607
5616
|
}, {
|
|
5608
|
-
Button: import("naive-ui/es/_mixins
|
|
5617
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
5609
5618
|
heightTiny: string;
|
|
5610
5619
|
heightSmall: string;
|
|
5611
5620
|
heightMedium: string;
|
|
@@ -5810,7 +5819,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5810
5819
|
rippleDuration: string;
|
|
5811
5820
|
}, any>;
|
|
5812
5821
|
}>;
|
|
5813
|
-
Card: import("naive-ui/es/_mixins
|
|
5822
|
+
Card: import("naive-ui/es/_mixins").Theme<"Card", {
|
|
5814
5823
|
lineHeight: string;
|
|
5815
5824
|
color: string;
|
|
5816
5825
|
colorModal: string;
|
|
@@ -5859,7 +5868,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5859
5868
|
displayDirective: "show" | "if";
|
|
5860
5869
|
hoverable: boolean;
|
|
5861
5870
|
embedded: boolean;
|
|
5862
|
-
segmented: boolean | import("naive-ui/es/card/src/Card
|
|
5871
|
+
segmented: boolean | import("naive-ui/es/card/src/Card").Segmented;
|
|
5863
5872
|
trapFocus: boolean;
|
|
5864
5873
|
blockScroll: boolean;
|
|
5865
5874
|
internalDialog: boolean;
|
|
@@ -5871,9 +5880,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5871
5880
|
NForm: import("vue").DefineComponent<{
|
|
5872
5881
|
readonly inline: BooleanConstructor;
|
|
5873
5882
|
readonly labelWidth: import("vue").PropType<string | number>;
|
|
5874
|
-
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
5883
|
+
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
|
|
5875
5884
|
readonly labelPlacement: {
|
|
5876
|
-
readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
5885
|
+
readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
|
|
5877
5886
|
readonly default: "top";
|
|
5878
5887
|
};
|
|
5879
5888
|
readonly model: {
|
|
@@ -5882,7 +5891,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5882
5891
|
};
|
|
5883
5892
|
readonly rules: import("vue").PropType<import("naive-ui").FormRules>;
|
|
5884
5893
|
readonly disabled: BooleanConstructor;
|
|
5885
|
-
readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
5894
|
+
readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
|
|
5886
5895
|
readonly showRequireMark: {
|
|
5887
5896
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
5888
5897
|
readonly default: undefined;
|
|
@@ -5900,8 +5909,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5900
5909
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
5901
5910
|
readonly default: undefined;
|
|
5902
5911
|
};
|
|
5903
|
-
readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface
|
|
5904
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
5912
|
+
readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
|
|
5913
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
5905
5914
|
blankHeightSmall: string;
|
|
5906
5915
|
blankHeightMedium: string;
|
|
5907
5916
|
blankHeightLarge: string;
|
|
@@ -5932,7 +5941,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5932
5941
|
labelTextAlignVertical: string;
|
|
5933
5942
|
labelTextAlignHorizontal: string;
|
|
5934
5943
|
}, any>>;
|
|
5935
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
5944
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
5936
5945
|
blankHeightSmall: string;
|
|
5937
5946
|
blankHeightMedium: string;
|
|
5938
5947
|
blankHeightLarge: string;
|
|
@@ -5963,7 +5972,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5963
5972
|
labelTextAlignVertical: string;
|
|
5964
5973
|
labelTextAlignHorizontal: string;
|
|
5965
5974
|
}, any>>>;
|
|
5966
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
5975
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
5967
5976
|
blankHeightSmall: string;
|
|
5968
5977
|
blankHeightMedium: string;
|
|
5969
5978
|
blankHeightLarge: string;
|
|
@@ -5999,9 +6008,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5999
6008
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6000
6009
|
readonly inline: BooleanConstructor;
|
|
6001
6010
|
readonly labelWidth: import("vue").PropType<string | number>;
|
|
6002
|
-
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
6011
|
+
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
|
|
6003
6012
|
readonly labelPlacement: {
|
|
6004
|
-
readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
6013
|
+
readonly type: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
|
|
6005
6014
|
readonly default: "top";
|
|
6006
6015
|
};
|
|
6007
6016
|
readonly model: {
|
|
@@ -6010,7 +6019,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6010
6019
|
};
|
|
6011
6020
|
readonly rules: import("vue").PropType<import("naive-ui").FormRules>;
|
|
6012
6021
|
readonly disabled: BooleanConstructor;
|
|
6013
|
-
readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
6022
|
+
readonly size: import("vue").PropType<import("naive-ui/es/form/src/interface").Size>;
|
|
6014
6023
|
readonly showRequireMark: {
|
|
6015
6024
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
6016
6025
|
readonly default: undefined;
|
|
@@ -6028,8 +6037,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6028
6037
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
6029
6038
|
readonly default: undefined;
|
|
6030
6039
|
};
|
|
6031
|
-
readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface
|
|
6032
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
6040
|
+
readonly validateMessages: import("vue").PropType<Partial<import("naive-ui/es/form/src/interface").FormValidateMessages>>;
|
|
6041
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
6033
6042
|
blankHeightSmall: string;
|
|
6034
6043
|
blankHeightMedium: string;
|
|
6035
6044
|
blankHeightLarge: string;
|
|
@@ -6060,7 +6069,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6060
6069
|
labelTextAlignVertical: string;
|
|
6061
6070
|
labelTextAlignHorizontal: string;
|
|
6062
6071
|
}, any>>;
|
|
6063
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
6072
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
6064
6073
|
blankHeightSmall: string;
|
|
6065
6074
|
blankHeightMedium: string;
|
|
6066
6075
|
blankHeightLarge: string;
|
|
@@ -6091,7 +6100,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6091
6100
|
labelTextAlignVertical: string;
|
|
6092
6101
|
labelTextAlignHorizontal: string;
|
|
6093
6102
|
}, any>>>;
|
|
6094
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
6103
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
6095
6104
|
blankHeightSmall: string;
|
|
6096
6105
|
blankHeightMedium: string;
|
|
6097
6106
|
blankHeightLarge: string;
|
|
@@ -6126,7 +6135,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6126
6135
|
readonly inline: boolean;
|
|
6127
6136
|
readonly disabled: boolean;
|
|
6128
6137
|
readonly onSubmit: (e: Event) => void;
|
|
6129
|
-
readonly labelPlacement: import("naive-ui/es/form/src/interface
|
|
6138
|
+
readonly labelPlacement: import("naive-ui/es/form/src/interface").LabelPlacement;
|
|
6130
6139
|
readonly model: Record<string, any>;
|
|
6131
6140
|
readonly showRequireMark: boolean | undefined;
|
|
6132
6141
|
readonly showFeedback: boolean;
|
|
@@ -6136,8 +6145,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6136
6145
|
readonly label: StringConstructor;
|
|
6137
6146
|
readonly labelWidth: import("vue").PropType<string | number>;
|
|
6138
6147
|
readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
6139
|
-
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
6140
|
-
readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
6148
|
+
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
|
|
6149
|
+
readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
|
|
6141
6150
|
readonly path: StringConstructor;
|
|
6142
6151
|
readonly first: BooleanConstructor;
|
|
6143
6152
|
readonly rulePath: StringConstructor;
|
|
@@ -6161,7 +6170,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6161
6170
|
readonly default: undefined;
|
|
6162
6171
|
};
|
|
6163
6172
|
readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
|
|
6164
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
6173
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
6165
6174
|
blankHeightSmall: string;
|
|
6166
6175
|
blankHeightMedium: string;
|
|
6167
6176
|
blankHeightLarge: string;
|
|
@@ -6192,7 +6201,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6192
6201
|
labelTextAlignVertical: string;
|
|
6193
6202
|
labelTextAlignHorizontal: string;
|
|
6194
6203
|
}, any>>;
|
|
6195
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
6204
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
6196
6205
|
blankHeightSmall: string;
|
|
6197
6206
|
blankHeightMedium: string;
|
|
6198
6207
|
blankHeightLarge: string;
|
|
@@ -6223,7 +6232,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6223
6232
|
labelTextAlignVertical: string;
|
|
6224
6233
|
labelTextAlignHorizontal: string;
|
|
6225
6234
|
}, any>>>;
|
|
6226
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
6235
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
6227
6236
|
blankHeightSmall: string;
|
|
6228
6237
|
blankHeightMedium: string;
|
|
6229
6238
|
blankHeightLarge: string;
|
|
@@ -6274,15 +6283,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6274
6283
|
}> | undefined;
|
|
6275
6284
|
themeClass: import("vue").Ref<string>;
|
|
6276
6285
|
onRender: () => void;
|
|
6277
|
-
validate: import("naive-ui/es/form/src/interface
|
|
6286
|
+
validate: import("naive-ui/es/form/src/interface").FormItemValidate;
|
|
6278
6287
|
restoreValidation: () => void;
|
|
6279
6288
|
path?: string | undefined;
|
|
6280
|
-
internalValidate: import("naive-ui/es/form/src/interface
|
|
6281
|
-
mergedSize: import("vue").ComputedRef<import("naive-ui/es/form/src/interface
|
|
6289
|
+
internalValidate: import("naive-ui/es/form/src/interface").FormItemInternalValidate;
|
|
6290
|
+
mergedSize: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").Size>;
|
|
6282
6291
|
validationErrored: import("vue").Ref<boolean>;
|
|
6283
6292
|
mergedLabelStyle: import("vue").ComputedRef<(import("vue").StyleValue | undefined)[]>;
|
|
6284
|
-
mergedLabelPlacement: import("vue").ComputedRef<import("naive-ui/es/form/src/interface
|
|
6285
|
-
mergedLabelAlign: import("vue").ComputedRef<import("naive-ui/es/form/src/interface
|
|
6293
|
+
mergedLabelPlacement: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelPlacement>;
|
|
6294
|
+
mergedLabelAlign: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").LabelAlign | undefined>;
|
|
6286
6295
|
mergedShowRequireMark: import("vue").ComputedRef<boolean | undefined>;
|
|
6287
6296
|
mergedRequireMarkPlacement: import("vue").ComputedRef<"left" | "right" | "right-hanging">;
|
|
6288
6297
|
mergedValidationStatus: import("vue").ComputedRef<"success" | "warning" | "error" | undefined>;
|
|
@@ -6300,8 +6309,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6300
6309
|
readonly label: StringConstructor;
|
|
6301
6310
|
readonly labelWidth: import("vue").PropType<string | number>;
|
|
6302
6311
|
readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
6303
|
-
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
6304
|
-
readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
6312
|
+
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
|
|
6313
|
+
readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
|
|
6305
6314
|
readonly path: StringConstructor;
|
|
6306
6315
|
readonly first: BooleanConstructor;
|
|
6307
6316
|
readonly rulePath: StringConstructor;
|
|
@@ -6325,7 +6334,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6325
6334
|
readonly default: undefined;
|
|
6326
6335
|
};
|
|
6327
6336
|
readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
|
|
6328
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
6337
|
+
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
6329
6338
|
blankHeightSmall: string;
|
|
6330
6339
|
blankHeightMedium: string;
|
|
6331
6340
|
blankHeightLarge: string;
|
|
@@ -6356,7 +6365,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6356
6365
|
labelTextAlignVertical: string;
|
|
6357
6366
|
labelTextAlignHorizontal: string;
|
|
6358
6367
|
}, any>>;
|
|
6359
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
6368
|
+
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
6360
6369
|
blankHeightSmall: string;
|
|
6361
6370
|
blankHeightMedium: string;
|
|
6362
6371
|
blankHeightLarge: string;
|
|
@@ -6387,7 +6396,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6387
6396
|
labelTextAlignVertical: string;
|
|
6388
6397
|
labelTextAlignHorizontal: string;
|
|
6389
6398
|
}, any>>>;
|
|
6390
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
6399
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
6391
6400
|
blankHeightSmall: string;
|
|
6392
6401
|
blankHeightMedium: string;
|
|
6393
6402
|
blankHeightLarge: string;
|
|
@@ -6445,7 +6454,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6445
6454
|
type: import("vue").PropType<boolean | undefined>;
|
|
6446
6455
|
default: undefined;
|
|
6447
6456
|
};
|
|
6448
|
-
size: import("vue").PropType<import("naive-ui/es/input/src/interface
|
|
6457
|
+
size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
|
|
6449
6458
|
rows: {
|
|
6450
6459
|
type: import("vue").PropType<string | number>;
|
|
6451
6460
|
default: number;
|
|
@@ -6488,31 +6497,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6488
6497
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
6489
6498
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
6490
6499
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
6491
|
-
onInput: import("vue").PropType<import("naive-ui/es/input/src/interface
|
|
6492
|
-
onFocus: import("vue").PropType<import("naive-ui/es/_utils
|
|
6493
|
-
onBlur: import("vue").PropType<import("naive-ui/es/_utils
|
|
6494
|
-
onClick: import("vue").PropType<import("naive-ui/es/_utils
|
|
6495
|
-
onChange: import("vue").PropType<import("naive-ui/es/input/src/interface
|
|
6496
|
-
onClear: import("vue").PropType<import("naive-ui/es/_utils
|
|
6497
|
-
status: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
6498
|
-
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils
|
|
6499
|
-
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils
|
|
6500
|
+
onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
|
|
6501
|
+
onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
6502
|
+
onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
6503
|
+
onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
6504
|
+
onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
|
|
6505
|
+
onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
6506
|
+
status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
6507
|
+
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
|
|
6508
|
+
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
|
|
6500
6509
|
textDecoration: import("vue").PropType<string | [string, string]>;
|
|
6501
6510
|
attrSize: {
|
|
6502
6511
|
type: NumberConstructor;
|
|
6503
6512
|
default: number;
|
|
6504
6513
|
};
|
|
6505
|
-
onInputBlur: import("vue").PropType<import("naive-ui/es/_utils
|
|
6506
|
-
onInputFocus: import("vue").PropType<import("naive-ui/es/_utils
|
|
6507
|
-
onDeactivate: import("vue").PropType<import("naive-ui/es/_utils
|
|
6508
|
-
onActivate: import("vue").PropType<import("naive-ui/es/_utils
|
|
6509
|
-
onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils
|
|
6510
|
-
onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils
|
|
6514
|
+
onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
6515
|
+
onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
6516
|
+
onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
|
|
6517
|
+
onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
|
|
6518
|
+
onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
6519
|
+
onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
6511
6520
|
internalDeactivateOnEnter: BooleanConstructor;
|
|
6512
6521
|
internalForceFocus: BooleanConstructor;
|
|
6513
6522
|
internalLoadingBeforeSuffix: BooleanConstructor;
|
|
6514
6523
|
showPasswordToggle: BooleanConstructor;
|
|
6515
|
-
theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
6524
|
+
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
|
|
6516
6525
|
countTextColor: string;
|
|
6517
6526
|
heightTiny: string;
|
|
6518
6527
|
heightSmall: string;
|
|
@@ -6572,7 +6581,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6572
6581
|
paddingLarge: string;
|
|
6573
6582
|
clearSize: string;
|
|
6574
6583
|
}, any>>;
|
|
6575
|
-
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
6584
|
+
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
|
|
6576
6585
|
countTextColor: string;
|
|
6577
6586
|
heightTiny: string;
|
|
6578
6587
|
heightSmall: string;
|
|
@@ -6632,7 +6641,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6632
6641
|
paddingLarge: string;
|
|
6633
6642
|
clearSize: string;
|
|
6634
6643
|
}, any>>>;
|
|
6635
|
-
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
6644
|
+
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
|
|
6636
6645
|
countTextColor: string;
|
|
6637
6646
|
heightTiny: string;
|
|
6638
6647
|
heightSmall: string;
|
|
@@ -6705,13 +6714,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6705
6714
|
contentRef: HTMLElement | null;
|
|
6706
6715
|
containerScrollTop: number;
|
|
6707
6716
|
syncUnifiedContainer: () => void;
|
|
6708
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar
|
|
6709
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar
|
|
6717
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
6718
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
6710
6719
|
sync: () => void;
|
|
6711
6720
|
handleMouseEnterWrapper: () => void;
|
|
6712
6721
|
handleMouseLeaveWrapper: () => void;
|
|
6713
6722
|
} | null>;
|
|
6714
|
-
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface
|
|
6723
|
+
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
6715
6724
|
uncontrolledValue: import("vue").Ref<string | [string, string] | null>;
|
|
6716
6725
|
mergedValue: import("vue").ComputedRef<string | [string, string] | null>;
|
|
6717
6726
|
passwordVisible: import("vue").Ref<boolean>;
|
|
@@ -6733,7 +6742,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6733
6742
|
placeholderStyle: import("vue").Ref<{
|
|
6734
6743
|
top: string;
|
|
6735
6744
|
}>;
|
|
6736
|
-
mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface
|
|
6745
|
+
mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
|
|
6737
6746
|
textAreaScrollContainerWidth: import("vue").Ref<number | undefined>;
|
|
6738
6747
|
handleTextAreaScroll: (e: Event) => void;
|
|
6739
6748
|
handleCompositionStart: () => void;
|
|
@@ -7001,7 +7010,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7001
7010
|
type: import("vue").PropType<boolean | undefined>;
|
|
7002
7011
|
default: undefined;
|
|
7003
7012
|
};
|
|
7004
|
-
size: import("vue").PropType<import("naive-ui/es/input/src/interface
|
|
7013
|
+
size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
|
|
7005
7014
|
rows: {
|
|
7006
7015
|
type: import("vue").PropType<string | number>;
|
|
7007
7016
|
default: number;
|
|
@@ -7044,31 +7053,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7044
7053
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
7045
7054
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
7046
7055
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
7047
|
-
onInput: import("vue").PropType<import("naive-ui/es/input/src/interface
|
|
7048
|
-
onFocus: import("vue").PropType<import("naive-ui/es/_utils
|
|
7049
|
-
onBlur: import("vue").PropType<import("naive-ui/es/_utils
|
|
7050
|
-
onClick: import("vue").PropType<import("naive-ui/es/_utils
|
|
7051
|
-
onChange: import("vue").PropType<import("naive-ui/es/input/src/interface
|
|
7052
|
-
onClear: import("vue").PropType<import("naive-ui/es/_utils
|
|
7053
|
-
status: import("vue").PropType<import("naive-ui/es/form/src/interface
|
|
7054
|
-
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils
|
|
7055
|
-
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils
|
|
7056
|
+
onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
|
|
7057
|
+
onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
7058
|
+
onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
7059
|
+
onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
7060
|
+
onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
|
|
7061
|
+
onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
7062
|
+
status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
7063
|
+
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
|
|
7064
|
+
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
|
|
7056
7065
|
textDecoration: import("vue").PropType<string | [string, string]>;
|
|
7057
7066
|
attrSize: {
|
|
7058
7067
|
type: NumberConstructor;
|
|
7059
7068
|
default: number;
|
|
7060
7069
|
};
|
|
7061
|
-
onInputBlur: import("vue").PropType<import("naive-ui/es/_utils
|
|
7062
|
-
onInputFocus: import("vue").PropType<import("naive-ui/es/_utils
|
|
7063
|
-
onDeactivate: import("vue").PropType<import("naive-ui/es/_utils
|
|
7064
|
-
onActivate: import("vue").PropType<import("naive-ui/es/_utils
|
|
7065
|
-
onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils
|
|
7066
|
-
onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils
|
|
7070
|
+
onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
7071
|
+
onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
7072
|
+
onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
|
|
7073
|
+
onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
|
|
7074
|
+
onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
7075
|
+
onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
7067
7076
|
internalDeactivateOnEnter: BooleanConstructor;
|
|
7068
7077
|
internalForceFocus: BooleanConstructor;
|
|
7069
7078
|
internalLoadingBeforeSuffix: BooleanConstructor;
|
|
7070
7079
|
showPasswordToggle: BooleanConstructor;
|
|
7071
|
-
theme: import("vue").PropType<import("naive-ui/es/_mixins
|
|
7080
|
+
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
|
|
7072
7081
|
countTextColor: string;
|
|
7073
7082
|
heightTiny: string;
|
|
7074
7083
|
heightSmall: string;
|
|
@@ -7128,7 +7137,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7128
7137
|
paddingLarge: string;
|
|
7129
7138
|
clearSize: string;
|
|
7130
7139
|
}, any>>;
|
|
7131
|
-
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
7140
|
+
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
|
|
7132
7141
|
countTextColor: string;
|
|
7133
7142
|
heightTiny: string;
|
|
7134
7143
|
heightSmall: string;
|
|
@@ -7188,7 +7197,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7188
7197
|
paddingLarge: string;
|
|
7189
7198
|
clearSize: string;
|
|
7190
7199
|
}, any>>>;
|
|
7191
|
-
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme
|
|
7200
|
+
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
|
|
7192
7201
|
countTextColor: string;
|
|
7193
7202
|
heightTiny: string;
|
|
7194
7203
|
heightSmall: string;
|
|
@@ -7319,6 +7328,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7319
7328
|
default: string;
|
|
7320
7329
|
type: StringConstructor;
|
|
7321
7330
|
};
|
|
7331
|
+
pdfLoadText: {
|
|
7332
|
+
default: string;
|
|
7333
|
+
type: StringConstructor;
|
|
7334
|
+
};
|
|
7322
7335
|
formatEditText: {
|
|
7323
7336
|
default: string;
|
|
7324
7337
|
type: StringConstructor;
|
|
@@ -7356,6 +7369,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7356
7369
|
btnText: string;
|
|
7357
7370
|
printText: string;
|
|
7358
7371
|
previewText: string;
|
|
7372
|
+
pdfLoadText: string;
|
|
7359
7373
|
formatEditText: string;
|
|
7360
7374
|
prevFn: Function;
|
|
7361
7375
|
queryPrintFormatByNumber: Function;
|