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
|
@@ -0,0 +1,547 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
stepInfo: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => {
|
|
5
|
+
list: never[];
|
|
6
|
+
cols: number;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
currentStep: {
|
|
10
|
+
type: NumberConstructor;
|
|
11
|
+
default: number;
|
|
12
|
+
};
|
|
13
|
+
toolTipShow: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
}, {
|
|
18
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
stepInfo: {
|
|
20
|
+
type: ObjectConstructor;
|
|
21
|
+
default: () => {
|
|
22
|
+
list: never[];
|
|
23
|
+
cols: number;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
currentStep: {
|
|
27
|
+
type: NumberConstructor;
|
|
28
|
+
default: number;
|
|
29
|
+
};
|
|
30
|
+
toolTipShow: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
}>> & {
|
|
35
|
+
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
36
|
+
}>>;
|
|
37
|
+
nodeRowCount: import("vue").ComputedRef<number>;
|
|
38
|
+
stepInfoList: import("vue").Ref<any[]>;
|
|
39
|
+
handleNode: (nodeList: any[], cols: number) => void;
|
|
40
|
+
lineCircleLeft: (stepItem: any) => boolean;
|
|
41
|
+
lineCircleRight: (stepItem: any) => boolean;
|
|
42
|
+
lineActiveShow: (stepItem: any, index: number) => boolean;
|
|
43
|
+
format2DArray: (baseArray: any[], cols: number) => never[];
|
|
44
|
+
lastLineHidden: (index: number) => boolean;
|
|
45
|
+
handleFinishLastNodeCss: (index: number) => boolean;
|
|
46
|
+
handleFinishLastNodeLine: (index: number) => boolean;
|
|
47
|
+
NTooltip: import("vue").DefineComponent<{
|
|
48
|
+
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
|
49
|
+
borderRadius: string;
|
|
50
|
+
boxShadow: string;
|
|
51
|
+
color: string;
|
|
52
|
+
textColor: string;
|
|
53
|
+
padding: string;
|
|
54
|
+
}, {
|
|
55
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
56
|
+
fontSize: string;
|
|
57
|
+
borderRadius: string;
|
|
58
|
+
color: string;
|
|
59
|
+
dividerColor: string;
|
|
60
|
+
textColor: string;
|
|
61
|
+
boxShadow: string;
|
|
62
|
+
space: string;
|
|
63
|
+
spaceArrow: string;
|
|
64
|
+
arrowOffset: string;
|
|
65
|
+
arrowOffsetVertical: string;
|
|
66
|
+
arrowHeight: string;
|
|
67
|
+
padding: string;
|
|
68
|
+
}, any>;
|
|
69
|
+
}>>;
|
|
70
|
+
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
|
71
|
+
borderRadius: string;
|
|
72
|
+
boxShadow: string;
|
|
73
|
+
color: string;
|
|
74
|
+
textColor: string;
|
|
75
|
+
padding: string;
|
|
76
|
+
}, {
|
|
77
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
78
|
+
fontSize: string;
|
|
79
|
+
borderRadius: string;
|
|
80
|
+
color: string;
|
|
81
|
+
dividerColor: string;
|
|
82
|
+
textColor: string;
|
|
83
|
+
boxShadow: string;
|
|
84
|
+
space: string;
|
|
85
|
+
spaceArrow: string;
|
|
86
|
+
arrowOffset: string;
|
|
87
|
+
arrowOffsetVertical: string;
|
|
88
|
+
arrowHeight: string;
|
|
89
|
+
padding: string;
|
|
90
|
+
}, any>;
|
|
91
|
+
}>>>;
|
|
92
|
+
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
|
93
|
+
borderRadius: string;
|
|
94
|
+
boxShadow: string;
|
|
95
|
+
color: string;
|
|
96
|
+
textColor: string;
|
|
97
|
+
padding: string;
|
|
98
|
+
}, {
|
|
99
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
100
|
+
fontSize: string;
|
|
101
|
+
borderRadius: string;
|
|
102
|
+
color: string;
|
|
103
|
+
dividerColor: string;
|
|
104
|
+
textColor: string;
|
|
105
|
+
boxShadow: string;
|
|
106
|
+
space: string;
|
|
107
|
+
spaceArrow: string;
|
|
108
|
+
arrowOffset: string;
|
|
109
|
+
arrowOffsetVertical: string;
|
|
110
|
+
arrowHeight: string;
|
|
111
|
+
padding: string;
|
|
112
|
+
}, any>;
|
|
113
|
+
}>>>;
|
|
114
|
+
show: {
|
|
115
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
116
|
+
default: undefined;
|
|
117
|
+
};
|
|
118
|
+
defaultShow: BooleanConstructor;
|
|
119
|
+
showArrow: {
|
|
120
|
+
type: BooleanConstructor;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
123
|
+
trigger: {
|
|
124
|
+
type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
|
|
125
|
+
default: string;
|
|
126
|
+
};
|
|
127
|
+
delay: {
|
|
128
|
+
type: NumberConstructor;
|
|
129
|
+
default: number;
|
|
130
|
+
};
|
|
131
|
+
duration: {
|
|
132
|
+
type: NumberConstructor;
|
|
133
|
+
default: number;
|
|
134
|
+
};
|
|
135
|
+
raw: BooleanConstructor;
|
|
136
|
+
placement: {
|
|
137
|
+
type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
138
|
+
default: string;
|
|
139
|
+
};
|
|
140
|
+
x: NumberConstructor;
|
|
141
|
+
y: NumberConstructor;
|
|
142
|
+
arrowPointToCenter: BooleanConstructor;
|
|
143
|
+
disabled: BooleanConstructor;
|
|
144
|
+
getDisabled: import("vue").PropType<() => boolean>;
|
|
145
|
+
displayDirective: {
|
|
146
|
+
type: import("vue").PropType<"show" | "if">;
|
|
147
|
+
default: string;
|
|
148
|
+
};
|
|
149
|
+
arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
150
|
+
flip: {
|
|
151
|
+
type: BooleanConstructor;
|
|
152
|
+
default: boolean;
|
|
153
|
+
};
|
|
154
|
+
animated: {
|
|
155
|
+
type: BooleanConstructor;
|
|
156
|
+
default: boolean;
|
|
157
|
+
};
|
|
158
|
+
width: {
|
|
159
|
+
type: import("vue").PropType<number | "trigger">;
|
|
160
|
+
default: undefined;
|
|
161
|
+
};
|
|
162
|
+
overlap: BooleanConstructor;
|
|
163
|
+
keepAliveOnHover: {
|
|
164
|
+
type: BooleanConstructor;
|
|
165
|
+
default: boolean;
|
|
166
|
+
};
|
|
167
|
+
zIndex: NumberConstructor;
|
|
168
|
+
to: {
|
|
169
|
+
type: import("vue").PropType<string | boolean | HTMLElement>;
|
|
170
|
+
default: undefined;
|
|
171
|
+
};
|
|
172
|
+
scrollable: BooleanConstructor;
|
|
173
|
+
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
174
|
+
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
175
|
+
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
176
|
+
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
177
|
+
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
178
|
+
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
179
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
180
|
+
internalSyncTargetWithParent: BooleanConstructor;
|
|
181
|
+
internalInheritedEventHandlers: {
|
|
182
|
+
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
183
|
+
default: () => never[];
|
|
184
|
+
};
|
|
185
|
+
internalTrapFocus: BooleanConstructor;
|
|
186
|
+
internalExtraClass: {
|
|
187
|
+
type: import("vue").PropType<string[]>;
|
|
188
|
+
default: () => never[];
|
|
189
|
+
};
|
|
190
|
+
onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
191
|
+
onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
192
|
+
arrow: {
|
|
193
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
194
|
+
default: undefined;
|
|
195
|
+
};
|
|
196
|
+
minWidth: NumberConstructor;
|
|
197
|
+
maxWidth: NumberConstructor;
|
|
198
|
+
}, {
|
|
199
|
+
popoverRef: import("vue").Ref<{
|
|
200
|
+
syncPosition: () => void;
|
|
201
|
+
setShow: (value: boolean) => void;
|
|
202
|
+
} | null>;
|
|
203
|
+
mergedTheme: import("vue").ComputedRef<{
|
|
204
|
+
common: {
|
|
205
|
+
baseColor: string;
|
|
206
|
+
primaryColor: string;
|
|
207
|
+
primaryColorHover: string;
|
|
208
|
+
primaryColorPressed: string;
|
|
209
|
+
primaryColorSuppl: string;
|
|
210
|
+
infoColor: string;
|
|
211
|
+
infoColorHover: string;
|
|
212
|
+
infoColorPressed: string;
|
|
213
|
+
infoColorSuppl: string;
|
|
214
|
+
successColor: string;
|
|
215
|
+
successColorHover: string;
|
|
216
|
+
successColorPressed: string;
|
|
217
|
+
successColorSuppl: string;
|
|
218
|
+
warningColor: string;
|
|
219
|
+
warningColorHover: string;
|
|
220
|
+
warningColorPressed: string;
|
|
221
|
+
warningColorSuppl: string;
|
|
222
|
+
errorColor: string;
|
|
223
|
+
errorColorHover: string;
|
|
224
|
+
errorColorPressed: string;
|
|
225
|
+
errorColorSuppl: string;
|
|
226
|
+
textColorBase: string;
|
|
227
|
+
textColor1: string;
|
|
228
|
+
textColor2: string;
|
|
229
|
+
textColor3: string;
|
|
230
|
+
textColorDisabled: string;
|
|
231
|
+
placeholderColor: string;
|
|
232
|
+
placeholderColorDisabled: string;
|
|
233
|
+
iconColor: string;
|
|
234
|
+
iconColorHover: string;
|
|
235
|
+
iconColorPressed: string;
|
|
236
|
+
iconColorDisabled: string;
|
|
237
|
+
opacity1: string;
|
|
238
|
+
opacity2: string;
|
|
239
|
+
opacity3: string;
|
|
240
|
+
opacity4: string;
|
|
241
|
+
opacity5: string;
|
|
242
|
+
dividerColor: string;
|
|
243
|
+
borderColor: string;
|
|
244
|
+
closeIconColor: string;
|
|
245
|
+
closeIconColorHover: string;
|
|
246
|
+
closeIconColorPressed: string;
|
|
247
|
+
closeColorHover: string;
|
|
248
|
+
closeColorPressed: string;
|
|
249
|
+
clearColor: string;
|
|
250
|
+
clearColorHover: string;
|
|
251
|
+
clearColorPressed: string;
|
|
252
|
+
scrollbarColor: string;
|
|
253
|
+
scrollbarColorHover: string;
|
|
254
|
+
scrollbarWidth: string;
|
|
255
|
+
scrollbarHeight: string;
|
|
256
|
+
scrollbarBorderRadius: string;
|
|
257
|
+
progressRailColor: string;
|
|
258
|
+
railColor: string;
|
|
259
|
+
popoverColor: string;
|
|
260
|
+
tableColor: string;
|
|
261
|
+
cardColor: string;
|
|
262
|
+
modalColor: string;
|
|
263
|
+
bodyColor: string;
|
|
264
|
+
tagColor: string;
|
|
265
|
+
avatarColor: string;
|
|
266
|
+
invertedColor: string;
|
|
267
|
+
inputColor: string;
|
|
268
|
+
codeColor: string;
|
|
269
|
+
tabColor: string;
|
|
270
|
+
actionColor: string;
|
|
271
|
+
tableHeaderColor: string;
|
|
272
|
+
hoverColor: string;
|
|
273
|
+
tableColorHover: string;
|
|
274
|
+
tableColorStriped: string;
|
|
275
|
+
pressedColor: string;
|
|
276
|
+
opacityDisabled: string;
|
|
277
|
+
inputColorDisabled: string;
|
|
278
|
+
buttonColor2: string;
|
|
279
|
+
buttonColor2Hover: string;
|
|
280
|
+
buttonColor2Pressed: string;
|
|
281
|
+
boxShadow1: string;
|
|
282
|
+
boxShadow2: string;
|
|
283
|
+
boxShadow3: string;
|
|
284
|
+
fontFamily: string;
|
|
285
|
+
fontFamilyMono: string;
|
|
286
|
+
fontWeight: string;
|
|
287
|
+
fontWeightStrong: string;
|
|
288
|
+
cubicBezierEaseInOut: string;
|
|
289
|
+
cubicBezierEaseOut: string;
|
|
290
|
+
cubicBezierEaseIn: string;
|
|
291
|
+
borderRadius: string;
|
|
292
|
+
borderRadiusSmall: string;
|
|
293
|
+
fontSize: string;
|
|
294
|
+
fontSizeMini: string;
|
|
295
|
+
fontSizeTiny: string;
|
|
296
|
+
fontSizeSmall: string;
|
|
297
|
+
fontSizeMedium: string;
|
|
298
|
+
fontSizeLarge: string;
|
|
299
|
+
fontSizeHuge: string;
|
|
300
|
+
lineHeight: string;
|
|
301
|
+
heightMini: string;
|
|
302
|
+
heightTiny: string;
|
|
303
|
+
heightSmall: string;
|
|
304
|
+
heightMedium: string;
|
|
305
|
+
heightLarge: string;
|
|
306
|
+
heightHuge: string;
|
|
307
|
+
name: "common";
|
|
308
|
+
};
|
|
309
|
+
self: {
|
|
310
|
+
borderRadius: string;
|
|
311
|
+
boxShadow: string;
|
|
312
|
+
color: string;
|
|
313
|
+
textColor: string;
|
|
314
|
+
padding: string;
|
|
315
|
+
};
|
|
316
|
+
peers: {
|
|
317
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
318
|
+
fontSize: string;
|
|
319
|
+
borderRadius: string;
|
|
320
|
+
color: string;
|
|
321
|
+
dividerColor: string;
|
|
322
|
+
textColor: string;
|
|
323
|
+
boxShadow: string;
|
|
324
|
+
space: string;
|
|
325
|
+
spaceArrow: string;
|
|
326
|
+
arrowOffset: string;
|
|
327
|
+
arrowOffsetVertical: string;
|
|
328
|
+
arrowHeight: string;
|
|
329
|
+
padding: string;
|
|
330
|
+
}, any>;
|
|
331
|
+
};
|
|
332
|
+
peerOverrides: {
|
|
333
|
+
Popover?: {
|
|
334
|
+
peers?: {
|
|
335
|
+
[x: string]: any;
|
|
336
|
+
} | undefined;
|
|
337
|
+
} | undefined;
|
|
338
|
+
};
|
|
339
|
+
}>;
|
|
340
|
+
popoverThemeOverrides: import("vue").ComputedRef<{
|
|
341
|
+
borderRadius: string;
|
|
342
|
+
boxShadow: string;
|
|
343
|
+
color: string;
|
|
344
|
+
textColor: string;
|
|
345
|
+
padding: string;
|
|
346
|
+
}>;
|
|
347
|
+
syncPosition: () => void;
|
|
348
|
+
setShow: (value: boolean) => void;
|
|
349
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
350
|
+
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
|
351
|
+
borderRadius: string;
|
|
352
|
+
boxShadow: string;
|
|
353
|
+
color: string;
|
|
354
|
+
textColor: string;
|
|
355
|
+
padding: string;
|
|
356
|
+
}, {
|
|
357
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
358
|
+
fontSize: string;
|
|
359
|
+
borderRadius: string;
|
|
360
|
+
color: string;
|
|
361
|
+
dividerColor: string;
|
|
362
|
+
textColor: string;
|
|
363
|
+
boxShadow: string;
|
|
364
|
+
space: string;
|
|
365
|
+
spaceArrow: string;
|
|
366
|
+
arrowOffset: string;
|
|
367
|
+
arrowOffsetVertical: string;
|
|
368
|
+
arrowHeight: string;
|
|
369
|
+
padding: string;
|
|
370
|
+
}, any>;
|
|
371
|
+
}>>;
|
|
372
|
+
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
|
373
|
+
borderRadius: string;
|
|
374
|
+
boxShadow: string;
|
|
375
|
+
color: string;
|
|
376
|
+
textColor: string;
|
|
377
|
+
padding: string;
|
|
378
|
+
}, {
|
|
379
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
380
|
+
fontSize: string;
|
|
381
|
+
borderRadius: string;
|
|
382
|
+
color: string;
|
|
383
|
+
dividerColor: string;
|
|
384
|
+
textColor: string;
|
|
385
|
+
boxShadow: string;
|
|
386
|
+
space: string;
|
|
387
|
+
spaceArrow: string;
|
|
388
|
+
arrowOffset: string;
|
|
389
|
+
arrowOffsetVertical: string;
|
|
390
|
+
arrowHeight: string;
|
|
391
|
+
padding: string;
|
|
392
|
+
}, any>;
|
|
393
|
+
}>>>;
|
|
394
|
+
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
|
395
|
+
borderRadius: string;
|
|
396
|
+
boxShadow: string;
|
|
397
|
+
color: string;
|
|
398
|
+
textColor: string;
|
|
399
|
+
padding: string;
|
|
400
|
+
}, {
|
|
401
|
+
Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
|
|
402
|
+
fontSize: string;
|
|
403
|
+
borderRadius: string;
|
|
404
|
+
color: string;
|
|
405
|
+
dividerColor: string;
|
|
406
|
+
textColor: string;
|
|
407
|
+
boxShadow: string;
|
|
408
|
+
space: string;
|
|
409
|
+
spaceArrow: string;
|
|
410
|
+
arrowOffset: string;
|
|
411
|
+
arrowOffsetVertical: string;
|
|
412
|
+
arrowHeight: string;
|
|
413
|
+
padding: string;
|
|
414
|
+
}, any>;
|
|
415
|
+
}>>>;
|
|
416
|
+
show: {
|
|
417
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
418
|
+
default: undefined;
|
|
419
|
+
};
|
|
420
|
+
defaultShow: BooleanConstructor;
|
|
421
|
+
showArrow: {
|
|
422
|
+
type: BooleanConstructor;
|
|
423
|
+
default: boolean;
|
|
424
|
+
};
|
|
425
|
+
trigger: {
|
|
426
|
+
type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
|
|
427
|
+
default: string;
|
|
428
|
+
};
|
|
429
|
+
delay: {
|
|
430
|
+
type: NumberConstructor;
|
|
431
|
+
default: number;
|
|
432
|
+
};
|
|
433
|
+
duration: {
|
|
434
|
+
type: NumberConstructor;
|
|
435
|
+
default: number;
|
|
436
|
+
};
|
|
437
|
+
raw: BooleanConstructor;
|
|
438
|
+
placement: {
|
|
439
|
+
type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
440
|
+
default: string;
|
|
441
|
+
};
|
|
442
|
+
x: NumberConstructor;
|
|
443
|
+
y: NumberConstructor;
|
|
444
|
+
arrowPointToCenter: BooleanConstructor;
|
|
445
|
+
disabled: BooleanConstructor;
|
|
446
|
+
getDisabled: import("vue").PropType<() => boolean>;
|
|
447
|
+
displayDirective: {
|
|
448
|
+
type: import("vue").PropType<"show" | "if">;
|
|
449
|
+
default: string;
|
|
450
|
+
};
|
|
451
|
+
arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
452
|
+
flip: {
|
|
453
|
+
type: BooleanConstructor;
|
|
454
|
+
default: boolean;
|
|
455
|
+
};
|
|
456
|
+
animated: {
|
|
457
|
+
type: BooleanConstructor;
|
|
458
|
+
default: boolean;
|
|
459
|
+
};
|
|
460
|
+
width: {
|
|
461
|
+
type: import("vue").PropType<number | "trigger">;
|
|
462
|
+
default: undefined;
|
|
463
|
+
};
|
|
464
|
+
overlap: BooleanConstructor;
|
|
465
|
+
keepAliveOnHover: {
|
|
466
|
+
type: BooleanConstructor;
|
|
467
|
+
default: boolean;
|
|
468
|
+
};
|
|
469
|
+
zIndex: NumberConstructor;
|
|
470
|
+
to: {
|
|
471
|
+
type: import("vue").PropType<string | boolean | HTMLElement>;
|
|
472
|
+
default: undefined;
|
|
473
|
+
};
|
|
474
|
+
scrollable: BooleanConstructor;
|
|
475
|
+
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
476
|
+
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
477
|
+
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
478
|
+
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
479
|
+
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
480
|
+
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
481
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
482
|
+
internalSyncTargetWithParent: BooleanConstructor;
|
|
483
|
+
internalInheritedEventHandlers: {
|
|
484
|
+
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
485
|
+
default: () => never[];
|
|
486
|
+
};
|
|
487
|
+
internalTrapFocus: BooleanConstructor;
|
|
488
|
+
internalExtraClass: {
|
|
489
|
+
type: import("vue").PropType<string[]>;
|
|
490
|
+
default: () => never[];
|
|
491
|
+
};
|
|
492
|
+
onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
493
|
+
onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
494
|
+
arrow: {
|
|
495
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
496
|
+
default: undefined;
|
|
497
|
+
};
|
|
498
|
+
minWidth: NumberConstructor;
|
|
499
|
+
maxWidth: NumberConstructor;
|
|
500
|
+
}>>, {
|
|
501
|
+
show: boolean | undefined;
|
|
502
|
+
flip: boolean;
|
|
503
|
+
width: number | "trigger";
|
|
504
|
+
disabled: boolean;
|
|
505
|
+
duration: number;
|
|
506
|
+
to: string | boolean | HTMLElement;
|
|
507
|
+
raw: boolean;
|
|
508
|
+
placement: import("naive-ui").PopoverPlacement;
|
|
509
|
+
overlap: boolean;
|
|
510
|
+
scrollable: boolean;
|
|
511
|
+
trigger: import("naive-ui").PopoverTrigger;
|
|
512
|
+
showArrow: boolean;
|
|
513
|
+
delay: number;
|
|
514
|
+
arrowPointToCenter: boolean;
|
|
515
|
+
displayDirective: "show" | "if";
|
|
516
|
+
keepAliveOnHover: boolean;
|
|
517
|
+
internalDeactivateImmediately: boolean;
|
|
518
|
+
animated: boolean;
|
|
519
|
+
internalTrapFocus: boolean;
|
|
520
|
+
defaultShow: boolean;
|
|
521
|
+
internalSyncTargetWithParent: boolean;
|
|
522
|
+
internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
|
|
523
|
+
internalExtraClass: string[];
|
|
524
|
+
arrow: boolean | undefined;
|
|
525
|
+
}>;
|
|
526
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
527
|
+
stepInfo: {
|
|
528
|
+
type: ObjectConstructor;
|
|
529
|
+
default: () => {
|
|
530
|
+
list: never[];
|
|
531
|
+
cols: number;
|
|
532
|
+
};
|
|
533
|
+
};
|
|
534
|
+
currentStep: {
|
|
535
|
+
type: NumberConstructor;
|
|
536
|
+
default: number;
|
|
537
|
+
};
|
|
538
|
+
toolTipShow: {
|
|
539
|
+
type: BooleanConstructor;
|
|
540
|
+
default: boolean;
|
|
541
|
+
};
|
|
542
|
+
}>>, {
|
|
543
|
+
stepInfo: Record<string, any>;
|
|
544
|
+
currentStep: number;
|
|
545
|
+
toolTipShow: boolean;
|
|
546
|
+
}>;
|
|
547
|
+
export default _default;
|