cnhis-design-vue 3.1.37-beta.1 → 3.1.37
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/components/big-table/index.d.ts +66 -166
- package/es/components/big-table/src/BigTable.vue.d.ts +79 -194
- package/es/components/button-print/index.d.ts +24 -27
- package/es/components/button-print/src/ButtonPrint.vue.d.ts +101 -100
- package/es/components/button-print/src/components/EditFormat.vue.d.ts +4 -4
- package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +4 -4
- package/es/components/button-print/src/utils/print.js +1 -6
- package/es/components/fabric-chart/index.d.ts +34 -11
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +35 -12
- package/es/components/fabric-chart/src/FabricChart.vue.js +9 -9
- package/es/components/fabric-chart/src/hooks/useBirthProcess.d.ts +1 -18
- package/es/components/fabric-chart/src/hooks/useBirthProcess.js +129 -42
- package/es/components/fabric-chart/src/hooks/useBirthProcessChart.d.ts +25 -0
- package/es/components/fabric-chart/src/hooks/useBirthProcessChart.js +151 -0
- package/es/components/fabric-chart/src/hooks/useCenter.d.ts +1 -1
- package/es/components/fabric-chart/src/hooks/useCenter.js +6 -7
- package/es/components/fabric-chart/src/hooks/useOther.js +3 -2
- package/es/components/fabric-chart/src/hooks/useTemperatureChart.js +1 -1
- package/es/components/fabric-chart/src/interface.d.ts +3 -1
- package/es/components/fabric-chart/src/utils/utils.d.ts +1 -1
- package/es/components/fabric-chart/src/utils/utils.js +7 -4
- package/es/components/form-config/index.d.ts +2 -2
- package/es/components/form-config/src/FormConfig.vue.d.ts +2 -2
- package/es/components/form-config/src/components/FormConfigDragDisplay.vue.d.ts +1 -1
- package/es/components/form-config/src/components/FormConfigDragDisplay.vue.js +1 -1
- package/es/components/form-config/src/components/renderer/ComplexNode.vue.d.ts +1 -1
- package/es/components/form-config/src/hooks/useSortalbeConfig.d.ts +2 -1
- package/es/components/form-config/src/hooks/useSortalbeConfig.js +2 -2
- package/es/components/form-render/src/hooks/useLowCodeReactions.js +19 -18
- package/es/components/form-render/src/types/index.d.ts +2 -2
- package/es/components/iho-table/src/constants/index.d.ts +2 -2
- package/es/components/iho-table/style/index.css +1 -1
- package/es/components/index.css +1 -1
- package/es/components/index.d.ts +1 -2
- package/es/components/index.js +0 -3
- package/es/components/scale-view/src/hooks/use-component.d.ts +30 -81
- package/es/components/select-label/index.d.ts +30 -81
- package/es/components/select-label/src/SelectLabel.vue.d.ts +30 -81
- package/es/components/select-person/index.d.ts +113 -41
- package/es/components/select-person/src/SelectPerson.vue.d.ts +76 -45
- package/es/shared/utils/tapable/AsyncParallelBailHook.js +1 -1
- package/es/shared/utils/tapable/AsyncSeriesWaterfallHook.js +2 -3
- package/es/shared/utils/tapable/Hook.d.ts +1 -1
- package/es/shared/utils/tapable/Hook.js +1 -1
- package/es/shared/utils/tapable/HookCodeFactory.js +3 -6
- package/es/shared/utils/tapable/SyncWaterfallHook.js +1 -2
- package/package.json +2 -2
- package/es/components/drag-layout/index.d.ts +0 -606
- package/es/components/drag-layout/index.js +0 -11
- package/es/components/drag-layout/src/DragFormLeftItem.vue.d.ts +0 -21
- package/es/components/drag-layout/src/DragFormLeftItem.vue.js +0 -122
- package/es/components/drag-layout/src/DragFormRightItem.vue.d.ts +0 -125
- package/es/components/drag-layout/src/DragFormRightItem.vue.js +0 -267
- package/es/components/drag-layout/src/DragLayout.vue.d.ts +0 -606
- package/es/components/drag-layout/src/DragLayout.vue.js +0 -662
- package/es/components/drag-layout/style/index.css +0 -1
- package/es/components/fabric-chart/src/BirthProcessChart.vue.d.ts +0 -181
|
@@ -1,606 +0,0 @@
|
|
|
1
|
-
import { SFCWithInstall } from '../../../es/shared/types';
|
|
2
|
-
declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
3
|
-
leftList: {
|
|
4
|
-
type: ArrayConstructor;
|
|
5
|
-
required: false;
|
|
6
|
-
default: () => never[];
|
|
7
|
-
};
|
|
8
|
-
rightList: {
|
|
9
|
-
type: ArrayConstructor;
|
|
10
|
-
required: false;
|
|
11
|
-
default: () => never[];
|
|
12
|
-
};
|
|
13
|
-
getpublicReplyList: {
|
|
14
|
-
type: FunctionConstructor;
|
|
15
|
-
required: false;
|
|
16
|
-
default: () => Promise<never[]>;
|
|
17
|
-
};
|
|
18
|
-
}, {
|
|
19
|
-
dragLayoutContainer: any;
|
|
20
|
-
textArea: any;
|
|
21
|
-
formRef: import("vue").Ref<{
|
|
22
|
-
validate: import("naive-ui/es/form/src/interface").FormValidate;
|
|
23
|
-
restoreValidation: () => void;
|
|
24
|
-
} | null>;
|
|
25
|
-
state: any;
|
|
26
|
-
rules: import("naive-ui").FormRules;
|
|
27
|
-
props: {
|
|
28
|
-
leftList: any[];
|
|
29
|
-
rightList: any[];
|
|
30
|
-
getpublicReplyList: Function;
|
|
31
|
-
};
|
|
32
|
-
emit: (event: "updateConfig", ...args: any[]) => void;
|
|
33
|
-
isPageLayout: import("vue").ComputedRef<boolean>;
|
|
34
|
-
is_text: import("vue").ComputedRef<boolean>;
|
|
35
|
-
hideModalWidth: import("vue").ComputedRef<boolean>;
|
|
36
|
-
lineTypeList: import("vue").ComputedRef<string[]>;
|
|
37
|
-
isLineType: (t: any) => boolean;
|
|
38
|
-
handleReqQieckReplyData: () => Promise<void>;
|
|
39
|
-
handleEdit: (data: any, i: any, type?: string) => void;
|
|
40
|
-
changeCategofy: (value: any) => void;
|
|
41
|
-
handleOk: (e: any) => void;
|
|
42
|
-
handleDelete: (data: any, i: any) => void;
|
|
43
|
-
getParams: () => {
|
|
44
|
-
showFields: any;
|
|
45
|
-
hideFields: any;
|
|
46
|
-
};
|
|
47
|
-
addItemShowLine: () => void;
|
|
48
|
-
handlerAddLine: () => void;
|
|
49
|
-
handlerAddBranchLine: () => void;
|
|
50
|
-
onChangeAdd: (e: any, key: string) => void;
|
|
51
|
-
handleCancel: () => void;
|
|
52
|
-
handleOkLineAdd: () => void;
|
|
53
|
-
leftDragAdd: (e: any) => void;
|
|
54
|
-
handleDragRemove: (e: any) => false | undefined;
|
|
55
|
-
checkOnChange: (e: any) => void;
|
|
56
|
-
visibleChange: (e: any) => void;
|
|
57
|
-
updateConfig: () => void;
|
|
58
|
-
handleSetData: (config?: any) => void;
|
|
59
|
-
mountedInit: () => void;
|
|
60
|
-
NGrid: any;
|
|
61
|
-
NFormItemGi: import("vue").DefineComponent<{
|
|
62
|
-
readonly label: StringConstructor;
|
|
63
|
-
readonly labelWidth: import("vue").PropType<string | number>;
|
|
64
|
-
readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
65
|
-
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
|
|
66
|
-
readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
|
|
67
|
-
readonly path: StringConstructor;
|
|
68
|
-
readonly first: BooleanConstructor;
|
|
69
|
-
readonly rulePath: StringConstructor;
|
|
70
|
-
readonly required: BooleanConstructor;
|
|
71
|
-
readonly showRequireMark: {
|
|
72
|
-
readonly type: import("vue").PropType<boolean | undefined>;
|
|
73
|
-
readonly default: undefined;
|
|
74
|
-
};
|
|
75
|
-
readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
|
|
76
|
-
readonly showFeedback: {
|
|
77
|
-
readonly type: import("vue").PropType<boolean | undefined>;
|
|
78
|
-
readonly default: undefined;
|
|
79
|
-
};
|
|
80
|
-
readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
|
|
81
|
-
readonly size: import("vue").PropType<"small" | "medium" | "large">;
|
|
82
|
-
readonly ignorePathChange: BooleanConstructor;
|
|
83
|
-
readonly validationStatus: import("vue").PropType<"error" | "success" | "warning">;
|
|
84
|
-
readonly feedback: StringConstructor;
|
|
85
|
-
readonly showLabel: {
|
|
86
|
-
readonly type: import("vue").PropType<boolean | undefined>;
|
|
87
|
-
readonly default: undefined;
|
|
88
|
-
};
|
|
89
|
-
readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
|
|
90
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
91
|
-
blankHeightSmall: string;
|
|
92
|
-
blankHeightMedium: string;
|
|
93
|
-
blankHeightLarge: string;
|
|
94
|
-
lineHeight: string;
|
|
95
|
-
labelTextColor: string;
|
|
96
|
-
asteriskColor: string;
|
|
97
|
-
feedbackTextColorError: string;
|
|
98
|
-
feedbackTextColorWarning: string;
|
|
99
|
-
feedbackTextColor: string;
|
|
100
|
-
feedbackPadding: string;
|
|
101
|
-
feedbackHeightSmall: string;
|
|
102
|
-
feedbackHeightMedium: string;
|
|
103
|
-
feedbackHeightLarge: string;
|
|
104
|
-
feedbackFontSizeSmall: string;
|
|
105
|
-
feedbackFontSizeMedium: string;
|
|
106
|
-
feedbackFontSizeLarge: string;
|
|
107
|
-
labelFontSizeLeftSmall: string;
|
|
108
|
-
labelFontSizeLeftMedium: string;
|
|
109
|
-
labelFontSizeLeftLarge: string;
|
|
110
|
-
labelFontSizeTopSmall: string;
|
|
111
|
-
labelFontSizeTopMedium: string;
|
|
112
|
-
labelFontSizeTopLarge: string;
|
|
113
|
-
labelHeightSmall: string;
|
|
114
|
-
labelHeightMedium: string;
|
|
115
|
-
labelHeightLarge: string;
|
|
116
|
-
labelPaddingVertical: string;
|
|
117
|
-
labelPaddingHorizontal: string;
|
|
118
|
-
labelTextAlignVertical: string;
|
|
119
|
-
labelTextAlignHorizontal: string;
|
|
120
|
-
}, any>>;
|
|
121
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
122
|
-
blankHeightSmall: string;
|
|
123
|
-
blankHeightMedium: string;
|
|
124
|
-
blankHeightLarge: string;
|
|
125
|
-
lineHeight: string;
|
|
126
|
-
labelTextColor: string;
|
|
127
|
-
asteriskColor: string;
|
|
128
|
-
feedbackTextColorError: string;
|
|
129
|
-
feedbackTextColorWarning: string;
|
|
130
|
-
feedbackTextColor: string;
|
|
131
|
-
feedbackPadding: string;
|
|
132
|
-
feedbackHeightSmall: string;
|
|
133
|
-
feedbackHeightMedium: string;
|
|
134
|
-
feedbackHeightLarge: string;
|
|
135
|
-
feedbackFontSizeSmall: string;
|
|
136
|
-
feedbackFontSizeMedium: string;
|
|
137
|
-
feedbackFontSizeLarge: string;
|
|
138
|
-
labelFontSizeLeftSmall: string;
|
|
139
|
-
labelFontSizeLeftMedium: string;
|
|
140
|
-
labelFontSizeLeftLarge: string;
|
|
141
|
-
labelFontSizeTopSmall: string;
|
|
142
|
-
labelFontSizeTopMedium: string;
|
|
143
|
-
labelFontSizeTopLarge: string;
|
|
144
|
-
labelHeightSmall: string;
|
|
145
|
-
labelHeightMedium: string;
|
|
146
|
-
labelHeightLarge: string;
|
|
147
|
-
labelPaddingVertical: string;
|
|
148
|
-
labelPaddingHorizontal: string;
|
|
149
|
-
labelTextAlignVertical: string;
|
|
150
|
-
labelTextAlignHorizontal: string;
|
|
151
|
-
}, any>>>;
|
|
152
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
153
|
-
blankHeightSmall: string;
|
|
154
|
-
blankHeightMedium: string;
|
|
155
|
-
blankHeightLarge: string;
|
|
156
|
-
lineHeight: string;
|
|
157
|
-
labelTextColor: string;
|
|
158
|
-
asteriskColor: string;
|
|
159
|
-
feedbackTextColorError: string;
|
|
160
|
-
feedbackTextColorWarning: string;
|
|
161
|
-
feedbackTextColor: string;
|
|
162
|
-
feedbackPadding: string;
|
|
163
|
-
feedbackHeightSmall: string;
|
|
164
|
-
feedbackHeightMedium: string;
|
|
165
|
-
feedbackHeightLarge: string;
|
|
166
|
-
feedbackFontSizeSmall: string;
|
|
167
|
-
feedbackFontSizeMedium: string;
|
|
168
|
-
feedbackFontSizeLarge: string;
|
|
169
|
-
labelFontSizeLeftSmall: string;
|
|
170
|
-
labelFontSizeLeftMedium: string;
|
|
171
|
-
labelFontSizeLeftLarge: string;
|
|
172
|
-
labelFontSizeTopSmall: string;
|
|
173
|
-
labelFontSizeTopMedium: string;
|
|
174
|
-
labelFontSizeTopLarge: string;
|
|
175
|
-
labelHeightSmall: string;
|
|
176
|
-
labelHeightMedium: string;
|
|
177
|
-
labelHeightLarge: string;
|
|
178
|
-
labelPaddingVertical: string;
|
|
179
|
-
labelPaddingHorizontal: string;
|
|
180
|
-
labelTextAlignVertical: string;
|
|
181
|
-
labelTextAlignHorizontal: string;
|
|
182
|
-
}, any>>>;
|
|
183
|
-
readonly span: {
|
|
184
|
-
readonly type: import("vue").PropType<string | number>;
|
|
185
|
-
readonly default: 1;
|
|
186
|
-
};
|
|
187
|
-
readonly offset: {
|
|
188
|
-
readonly type: import("vue").PropType<string | number>;
|
|
189
|
-
readonly default: 0;
|
|
190
|
-
};
|
|
191
|
-
readonly suffix: BooleanConstructor;
|
|
192
|
-
readonly privateOffset: NumberConstructor;
|
|
193
|
-
readonly privateSpan: NumberConstructor;
|
|
194
|
-
readonly privateColStart: NumberConstructor;
|
|
195
|
-
readonly privateShow: {
|
|
196
|
-
readonly type: BooleanConstructor;
|
|
197
|
-
readonly default: true;
|
|
198
|
-
};
|
|
199
|
-
}, {
|
|
200
|
-
formItemInstRef: import("vue").Ref<{
|
|
201
|
-
validate: import("naive-ui/es/form/src/interface").FormItemValidate;
|
|
202
|
-
restoreValidation: () => void;
|
|
203
|
-
path?: string | undefined;
|
|
204
|
-
internalValidate: import("naive-ui/es/form/src/interface").FormItemInternalValidate;
|
|
205
|
-
} | null>;
|
|
206
|
-
validate: import("naive-ui/es/form/src/interface").FormItemValidate;
|
|
207
|
-
restoreValidation: () => void;
|
|
208
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
209
|
-
readonly label: StringConstructor;
|
|
210
|
-
readonly labelWidth: import("vue").PropType<string | number>;
|
|
211
|
-
readonly labelStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
212
|
-
readonly labelAlign: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelAlign>;
|
|
213
|
-
readonly labelPlacement: import("vue").PropType<import("naive-ui/es/form/src/interface").LabelPlacement>;
|
|
214
|
-
readonly path: StringConstructor;
|
|
215
|
-
readonly first: BooleanConstructor;
|
|
216
|
-
readonly rulePath: StringConstructor;
|
|
217
|
-
readonly required: BooleanConstructor;
|
|
218
|
-
readonly showRequireMark: {
|
|
219
|
-
readonly type: import("vue").PropType<boolean | undefined>;
|
|
220
|
-
readonly default: undefined;
|
|
221
|
-
};
|
|
222
|
-
readonly requireMarkPlacement: import("vue").PropType<"left" | "right" | "right-hanging">;
|
|
223
|
-
readonly showFeedback: {
|
|
224
|
-
readonly type: import("vue").PropType<boolean | undefined>;
|
|
225
|
-
readonly default: undefined;
|
|
226
|
-
};
|
|
227
|
-
readonly rule: import("vue").PropType<import("naive-ui").FormItemRule | import("naive-ui").FormItemRule[]>;
|
|
228
|
-
readonly size: import("vue").PropType<"small" | "medium" | "large">;
|
|
229
|
-
readonly ignorePathChange: BooleanConstructor;
|
|
230
|
-
readonly validationStatus: import("vue").PropType<"error" | "success" | "warning">;
|
|
231
|
-
readonly feedback: StringConstructor;
|
|
232
|
-
readonly showLabel: {
|
|
233
|
-
readonly type: import("vue").PropType<boolean | undefined>;
|
|
234
|
-
readonly default: undefined;
|
|
235
|
-
};
|
|
236
|
-
readonly labelProps: import("vue").PropType<import("vue").LabelHTMLAttributes>;
|
|
237
|
-
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
238
|
-
blankHeightSmall: string;
|
|
239
|
-
blankHeightMedium: string;
|
|
240
|
-
blankHeightLarge: string;
|
|
241
|
-
lineHeight: string;
|
|
242
|
-
labelTextColor: string;
|
|
243
|
-
asteriskColor: string;
|
|
244
|
-
feedbackTextColorError: string;
|
|
245
|
-
feedbackTextColorWarning: string;
|
|
246
|
-
feedbackTextColor: string;
|
|
247
|
-
feedbackPadding: string;
|
|
248
|
-
feedbackHeightSmall: string;
|
|
249
|
-
feedbackHeightMedium: string;
|
|
250
|
-
feedbackHeightLarge: string;
|
|
251
|
-
feedbackFontSizeSmall: string;
|
|
252
|
-
feedbackFontSizeMedium: string;
|
|
253
|
-
feedbackFontSizeLarge: string;
|
|
254
|
-
labelFontSizeLeftSmall: string;
|
|
255
|
-
labelFontSizeLeftMedium: string;
|
|
256
|
-
labelFontSizeLeftLarge: string;
|
|
257
|
-
labelFontSizeTopSmall: string;
|
|
258
|
-
labelFontSizeTopMedium: string;
|
|
259
|
-
labelFontSizeTopLarge: string;
|
|
260
|
-
labelHeightSmall: string;
|
|
261
|
-
labelHeightMedium: string;
|
|
262
|
-
labelHeightLarge: string;
|
|
263
|
-
labelPaddingVertical: string;
|
|
264
|
-
labelPaddingHorizontal: string;
|
|
265
|
-
labelTextAlignVertical: string;
|
|
266
|
-
labelTextAlignHorizontal: string;
|
|
267
|
-
}, any>>;
|
|
268
|
-
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
269
|
-
blankHeightSmall: string;
|
|
270
|
-
blankHeightMedium: string;
|
|
271
|
-
blankHeightLarge: string;
|
|
272
|
-
lineHeight: string;
|
|
273
|
-
labelTextColor: string;
|
|
274
|
-
asteriskColor: string;
|
|
275
|
-
feedbackTextColorError: string;
|
|
276
|
-
feedbackTextColorWarning: string;
|
|
277
|
-
feedbackTextColor: string;
|
|
278
|
-
feedbackPadding: string;
|
|
279
|
-
feedbackHeightSmall: string;
|
|
280
|
-
feedbackHeightMedium: string;
|
|
281
|
-
feedbackHeightLarge: string;
|
|
282
|
-
feedbackFontSizeSmall: string;
|
|
283
|
-
feedbackFontSizeMedium: string;
|
|
284
|
-
feedbackFontSizeLarge: string;
|
|
285
|
-
labelFontSizeLeftSmall: string;
|
|
286
|
-
labelFontSizeLeftMedium: string;
|
|
287
|
-
labelFontSizeLeftLarge: string;
|
|
288
|
-
labelFontSizeTopSmall: string;
|
|
289
|
-
labelFontSizeTopMedium: string;
|
|
290
|
-
labelFontSizeTopLarge: string;
|
|
291
|
-
labelHeightSmall: string;
|
|
292
|
-
labelHeightMedium: string;
|
|
293
|
-
labelHeightLarge: string;
|
|
294
|
-
labelPaddingVertical: string;
|
|
295
|
-
labelPaddingHorizontal: string;
|
|
296
|
-
labelTextAlignVertical: string;
|
|
297
|
-
labelTextAlignHorizontal: string;
|
|
298
|
-
}, any>>>;
|
|
299
|
-
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Form", {
|
|
300
|
-
blankHeightSmall: string;
|
|
301
|
-
blankHeightMedium: string;
|
|
302
|
-
blankHeightLarge: string;
|
|
303
|
-
lineHeight: string;
|
|
304
|
-
labelTextColor: string;
|
|
305
|
-
asteriskColor: string;
|
|
306
|
-
feedbackTextColorError: string;
|
|
307
|
-
feedbackTextColorWarning: string;
|
|
308
|
-
feedbackTextColor: string;
|
|
309
|
-
feedbackPadding: string;
|
|
310
|
-
feedbackHeightSmall: string;
|
|
311
|
-
feedbackHeightMedium: string;
|
|
312
|
-
feedbackHeightLarge: string;
|
|
313
|
-
feedbackFontSizeSmall: string;
|
|
314
|
-
feedbackFontSizeMedium: string;
|
|
315
|
-
feedbackFontSizeLarge: string;
|
|
316
|
-
labelFontSizeLeftSmall: string;
|
|
317
|
-
labelFontSizeLeftMedium: string;
|
|
318
|
-
labelFontSizeLeftLarge: string;
|
|
319
|
-
labelFontSizeTopSmall: string;
|
|
320
|
-
labelFontSizeTopMedium: string;
|
|
321
|
-
labelFontSizeTopLarge: string;
|
|
322
|
-
labelHeightSmall: string;
|
|
323
|
-
labelHeightMedium: string;
|
|
324
|
-
labelHeightLarge: string;
|
|
325
|
-
labelPaddingVertical: string;
|
|
326
|
-
labelPaddingHorizontal: string;
|
|
327
|
-
labelTextAlignVertical: string;
|
|
328
|
-
labelTextAlignHorizontal: string;
|
|
329
|
-
}, any>>>;
|
|
330
|
-
readonly span: {
|
|
331
|
-
readonly type: import("vue").PropType<string | number>;
|
|
332
|
-
readonly default: 1;
|
|
333
|
-
};
|
|
334
|
-
readonly offset: {
|
|
335
|
-
readonly type: import("vue").PropType<string | number>;
|
|
336
|
-
readonly default: 0;
|
|
337
|
-
};
|
|
338
|
-
readonly suffix: BooleanConstructor;
|
|
339
|
-
readonly privateOffset: NumberConstructor;
|
|
340
|
-
readonly privateSpan: NumberConstructor;
|
|
341
|
-
readonly privateColStart: NumberConstructor;
|
|
342
|
-
readonly privateShow: {
|
|
343
|
-
readonly type: BooleanConstructor;
|
|
344
|
-
readonly default: true;
|
|
345
|
-
};
|
|
346
|
-
}>>, {
|
|
347
|
-
readonly required: boolean;
|
|
348
|
-
readonly first: boolean;
|
|
349
|
-
readonly offset: string | number;
|
|
350
|
-
readonly span: string | number;
|
|
351
|
-
readonly suffix: boolean;
|
|
352
|
-
readonly showRequireMark: boolean | undefined;
|
|
353
|
-
readonly showFeedback: boolean | undefined;
|
|
354
|
-
readonly showLabel: boolean | undefined;
|
|
355
|
-
readonly ignorePathChange: boolean;
|
|
356
|
-
readonly privateShow: boolean;
|
|
357
|
-
}>;
|
|
358
|
-
NButton: any;
|
|
359
|
-
NModal: any;
|
|
360
|
-
NForm: any;
|
|
361
|
-
NInput: any;
|
|
362
|
-
NSelect: any;
|
|
363
|
-
NCheckbox: any;
|
|
364
|
-
NInputNumber: any;
|
|
365
|
-
Draggable: import("vue").DefineComponent<{
|
|
366
|
-
list: {
|
|
367
|
-
type: ArrayConstructor;
|
|
368
|
-
required: boolean;
|
|
369
|
-
default: any;
|
|
370
|
-
};
|
|
371
|
-
modelValue: {
|
|
372
|
-
type: ArrayConstructor;
|
|
373
|
-
required: boolean;
|
|
374
|
-
default: any;
|
|
375
|
-
};
|
|
376
|
-
itemKey: {
|
|
377
|
-
type: (StringConstructor | FunctionConstructor)[];
|
|
378
|
-
required: boolean;
|
|
379
|
-
};
|
|
380
|
-
clone: {
|
|
381
|
-
type: FunctionConstructor;
|
|
382
|
-
default: (original: any) => any;
|
|
383
|
-
};
|
|
384
|
-
tag: {
|
|
385
|
-
type: StringConstructor;
|
|
386
|
-
default: string;
|
|
387
|
-
};
|
|
388
|
-
move: {
|
|
389
|
-
type: FunctionConstructor;
|
|
390
|
-
default: any;
|
|
391
|
-
};
|
|
392
|
-
componentData: {
|
|
393
|
-
type: ObjectConstructor;
|
|
394
|
-
required: boolean;
|
|
395
|
-
default: any;
|
|
396
|
-
};
|
|
397
|
-
}, unknown, {
|
|
398
|
-
error: boolean;
|
|
399
|
-
}, {
|
|
400
|
-
realList(): any;
|
|
401
|
-
getKey(): any;
|
|
402
|
-
}, {
|
|
403
|
-
getUnderlyingVm(domElement: any): any;
|
|
404
|
-
getUnderlyingPotencialDraggableComponent(htmElement: any): any;
|
|
405
|
-
emitChanges(evt: any): void;
|
|
406
|
-
alterList(onList: any): void;
|
|
407
|
-
spliceList(): void;
|
|
408
|
-
updatePosition(oldIndex: any, newIndex: any): void;
|
|
409
|
-
getRelatedContextFromMoveEvent({ to, related }: {
|
|
410
|
-
to: any;
|
|
411
|
-
related: any;
|
|
412
|
-
}): any;
|
|
413
|
-
getVmIndexFromDomIndex(domIndex: any): any;
|
|
414
|
-
onDragStart(evt: any): void;
|
|
415
|
-
onDragAdd(evt: any): void;
|
|
416
|
-
onDragRemove(evt: any): void;
|
|
417
|
-
onDragUpdate(evt: any): void;
|
|
418
|
-
computeFutureIndex(relatedContext: any, evt: any): any;
|
|
419
|
-
onDragMove(evt: any, originalEvent: any): any;
|
|
420
|
-
onDragEnd(): void;
|
|
421
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
422
|
-
move: Function;
|
|
423
|
-
tag: string;
|
|
424
|
-
clone: Function;
|
|
425
|
-
list: unknown[];
|
|
426
|
-
modelValue: unknown[];
|
|
427
|
-
componentData: Record<string, any>;
|
|
428
|
-
} & {
|
|
429
|
-
itemKey?: string | Function | undefined;
|
|
430
|
-
}>, {
|
|
431
|
-
move: Function;
|
|
432
|
-
tag: string;
|
|
433
|
-
clone: Function;
|
|
434
|
-
list: unknown[];
|
|
435
|
-
modelValue: unknown[];
|
|
436
|
-
componentData: Record<string, any>;
|
|
437
|
-
}>;
|
|
438
|
-
DragFormLeftItem: import("vue").DefineComponent<{
|
|
439
|
-
element: {
|
|
440
|
-
type: null;
|
|
441
|
-
required: true;
|
|
442
|
-
};
|
|
443
|
-
}, {
|
|
444
|
-
props: {
|
|
445
|
-
element: any;
|
|
446
|
-
};
|
|
447
|
-
NDatePicker: any;
|
|
448
|
-
NSelect: any;
|
|
449
|
-
NRadio: any;
|
|
450
|
-
NCheckbox: any;
|
|
451
|
-
NInput: any;
|
|
452
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
453
|
-
element: {
|
|
454
|
-
type: null;
|
|
455
|
-
required: true;
|
|
456
|
-
};
|
|
457
|
-
}>>, {}>;
|
|
458
|
-
DragFormRightItem: import("vue").DefineComponent<{
|
|
459
|
-
fields: {
|
|
460
|
-
type: null;
|
|
461
|
-
required: false;
|
|
462
|
-
};
|
|
463
|
-
element: {
|
|
464
|
-
type: null;
|
|
465
|
-
required: true;
|
|
466
|
-
};
|
|
467
|
-
index: {
|
|
468
|
-
type: NumberConstructor;
|
|
469
|
-
required: true;
|
|
470
|
-
};
|
|
471
|
-
}, {
|
|
472
|
-
props: {
|
|
473
|
-
fields?: any;
|
|
474
|
-
element: any;
|
|
475
|
-
index: number;
|
|
476
|
-
};
|
|
477
|
-
showFields: any;
|
|
478
|
-
isFocus: import("vue").Ref<boolean>;
|
|
479
|
-
widthOptions: any;
|
|
480
|
-
emit: (event: "handleEdit" | "handleDelete", ...args: any[]) => void;
|
|
481
|
-
lineTypeList: import("vue").ComputedRef<string[]>;
|
|
482
|
-
handlechangIs_edit: (data: any) => void;
|
|
483
|
-
handlechangNull: (data: any) => void;
|
|
484
|
-
handleEdit: (data: any, i: any, type: any) => void;
|
|
485
|
-
handleDelete: (data: any, i?: number | undefined) => void;
|
|
486
|
-
isLineType: (t: any) => boolean;
|
|
487
|
-
Draggable: import("vue").DefineComponent<{
|
|
488
|
-
list: {
|
|
489
|
-
type: ArrayConstructor;
|
|
490
|
-
required: boolean;
|
|
491
|
-
default: any;
|
|
492
|
-
};
|
|
493
|
-
modelValue: {
|
|
494
|
-
type: ArrayConstructor;
|
|
495
|
-
required: boolean;
|
|
496
|
-
default: any;
|
|
497
|
-
};
|
|
498
|
-
itemKey: {
|
|
499
|
-
type: (StringConstructor | FunctionConstructor)[];
|
|
500
|
-
required: boolean;
|
|
501
|
-
};
|
|
502
|
-
clone: {
|
|
503
|
-
type: FunctionConstructor;
|
|
504
|
-
default: (original: any) => any;
|
|
505
|
-
};
|
|
506
|
-
tag: {
|
|
507
|
-
type: StringConstructor;
|
|
508
|
-
default: string;
|
|
509
|
-
};
|
|
510
|
-
move: {
|
|
511
|
-
type: FunctionConstructor;
|
|
512
|
-
default: any;
|
|
513
|
-
};
|
|
514
|
-
componentData: {
|
|
515
|
-
type: ObjectConstructor;
|
|
516
|
-
required: boolean;
|
|
517
|
-
default: any;
|
|
518
|
-
};
|
|
519
|
-
}, unknown, {
|
|
520
|
-
error: boolean;
|
|
521
|
-
}, {
|
|
522
|
-
realList(): any;
|
|
523
|
-
getKey(): any;
|
|
524
|
-
}, {
|
|
525
|
-
getUnderlyingVm(domElement: any): any;
|
|
526
|
-
getUnderlyingPotencialDraggableComponent(htmElement: any): any;
|
|
527
|
-
emitChanges(evt: any): void;
|
|
528
|
-
alterList(onList: any): void;
|
|
529
|
-
spliceList(): void;
|
|
530
|
-
updatePosition(oldIndex: any, newIndex: any): void;
|
|
531
|
-
getRelatedContextFromMoveEvent({ to, related }: {
|
|
532
|
-
to: any;
|
|
533
|
-
related: any;
|
|
534
|
-
}): any;
|
|
535
|
-
getVmIndexFromDomIndex(domIndex: any): any;
|
|
536
|
-
onDragStart(evt: any): void;
|
|
537
|
-
onDragAdd(evt: any): void;
|
|
538
|
-
onDragRemove(evt: any): void;
|
|
539
|
-
onDragUpdate(evt: any): void;
|
|
540
|
-
computeFutureIndex(relatedContext: any, evt: any): any;
|
|
541
|
-
onDragMove(evt: any, originalEvent: any): any;
|
|
542
|
-
onDragEnd(): void;
|
|
543
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
544
|
-
move: Function;
|
|
545
|
-
tag: string;
|
|
546
|
-
clone: Function;
|
|
547
|
-
list: unknown[];
|
|
548
|
-
modelValue: unknown[];
|
|
549
|
-
componentData: Record<string, any>;
|
|
550
|
-
} & {
|
|
551
|
-
itemKey?: string | Function | undefined;
|
|
552
|
-
}>, {
|
|
553
|
-
move: Function;
|
|
554
|
-
tag: string;
|
|
555
|
-
clone: Function;
|
|
556
|
-
list: unknown[];
|
|
557
|
-
modelValue: unknown[];
|
|
558
|
-
componentData: Record<string, any>;
|
|
559
|
-
}>;
|
|
560
|
-
NPopover: any;
|
|
561
|
-
NButton: any;
|
|
562
|
-
NSelect: any;
|
|
563
|
-
NIcon: any;
|
|
564
|
-
EllipsisVerticalSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
565
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleEdit" | "handleDelete")[], "handleEdit" | "handleDelete", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
566
|
-
fields: {
|
|
567
|
-
type: null;
|
|
568
|
-
required: false;
|
|
569
|
-
};
|
|
570
|
-
element: {
|
|
571
|
-
type: null;
|
|
572
|
-
required: true;
|
|
573
|
-
};
|
|
574
|
-
index: {
|
|
575
|
-
type: NumberConstructor;
|
|
576
|
-
required: true;
|
|
577
|
-
};
|
|
578
|
-
}>> & {
|
|
579
|
-
onHandleEdit?: ((...args: any[]) => any) | undefined;
|
|
580
|
-
onHandleDelete?: ((...args: any[]) => any) | undefined;
|
|
581
|
-
}, {}>;
|
|
582
|
-
vexutils: import("xe-utils/ctor").XEUtilsMethods;
|
|
583
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "updateConfig"[], "updateConfig", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
584
|
-
leftList: {
|
|
585
|
-
type: ArrayConstructor;
|
|
586
|
-
required: false;
|
|
587
|
-
default: () => never[];
|
|
588
|
-
};
|
|
589
|
-
rightList: {
|
|
590
|
-
type: ArrayConstructor;
|
|
591
|
-
required: false;
|
|
592
|
-
default: () => never[];
|
|
593
|
-
};
|
|
594
|
-
getpublicReplyList: {
|
|
595
|
-
type: FunctionConstructor;
|
|
596
|
-
required: false;
|
|
597
|
-
default: () => Promise<never[]>;
|
|
598
|
-
};
|
|
599
|
-
}>> & {
|
|
600
|
-
onUpdateConfig?: ((...args: any[]) => any) | undefined;
|
|
601
|
-
}, {
|
|
602
|
-
leftList: unknown[];
|
|
603
|
-
rightList: unknown[];
|
|
604
|
-
getpublicReplyList: Function;
|
|
605
|
-
}>>;
|
|
606
|
-
export default DragLayout;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { COMPONENT_NAMESPACE } from '../../shared/global/variable.js';
|
|
2
|
-
import { safeComponentRegister } from '../../shared/utils/index.js';
|
|
3
|
-
import '../../shared/utils/utilExpand.js';
|
|
4
|
-
import script from './src/DragLayout.vue.js';
|
|
5
|
-
|
|
6
|
-
const DragLayout = script;
|
|
7
|
-
DragLayout.install = function(app) {
|
|
8
|
-
safeComponentRegister(app, DragLayout, COMPONENT_NAMESPACE + "DragLayout");
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
export { DragLayout as default };
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
element: {
|
|
3
|
-
type: null;
|
|
4
|
-
required: true;
|
|
5
|
-
};
|
|
6
|
-
}, {
|
|
7
|
-
props: {
|
|
8
|
-
element: any;
|
|
9
|
-
};
|
|
10
|
-
NDatePicker: any;
|
|
11
|
-
NSelect: any;
|
|
12
|
-
NRadio: any;
|
|
13
|
-
NCheckbox: any;
|
|
14
|
-
NInput: any;
|
|
15
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
element: {
|
|
17
|
-
type: null;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
}>>, {}>;
|
|
21
|
-
export default _default;
|