cnhis-design-vue 3.1.11 → 3.1.12-beta.2

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.
Files changed (190) hide show
  1. package/es/node_modules/date-fns/esm/_lib/defaultOptions/index.js +6 -0
  2. package/es/node_modules/date-fns/esm/_lib/getUTCISOWeek/index.js +17 -0
  3. package/es/node_modules/date-fns/esm/_lib/getUTCISOWeekYear/index.js +27 -0
  4. package/es/node_modules/date-fns/esm/_lib/getUTCWeek/index.js +17 -0
  5. package/es/node_modules/date-fns/esm/_lib/getUTCWeekYear/index.js +38 -0
  6. package/es/node_modules/date-fns/esm/_lib/setUTCDay/index.js +27 -0
  7. package/es/node_modules/date-fns/esm/_lib/setUTCISODay/index.js +23 -0
  8. package/es/node_modules/date-fns/esm/_lib/setUTCISOWeek/index.js +15 -0
  9. package/es/node_modules/date-fns/esm/_lib/setUTCWeek/index.js +15 -0
  10. package/es/node_modules/date-fns/esm/_lib/startOfUTCISOWeek/index.js +15 -0
  11. package/es/node_modules/date-fns/esm/_lib/startOfUTCISOWeekYear/index.js +15 -0
  12. package/es/node_modules/date-fns/esm/_lib/startOfUTCWeek/index.js +25 -0
  13. package/es/node_modules/date-fns/esm/_lib/startOfUTCWeekYear/index.js +21 -0
  14. package/es/node_modules/date-fns/esm/_lib/toInteger/index.js +15 -0
  15. package/es/node_modules/date-fns/esm/compareAsc/index.js +0 -4
  16. package/es/node_modules/date-fns/esm/constants/index.js +40 -0
  17. package/es/node_modules/date-fns/esm/differenceInCalendarDays/index.js +0 -4
  18. package/es/node_modules/date-fns/esm/differenceInCalendarMonths/index.js +1 -5
  19. package/es/node_modules/date-fns/esm/differenceInDays/index.js +0 -4
  20. package/es/node_modules/date-fns/esm/differenceInMonths/index.js +0 -4
  21. package/es/node_modules/date-fns/esm/endOfDay/index.js +0 -4
  22. package/es/node_modules/date-fns/esm/endOfMonth/index.js +0 -4
  23. package/es/node_modules/date-fns/esm/isLastDayOfMonth/index.js +1 -5
  24. package/es/node_modules/date-fns/esm/parse/_lib/Parser.js +32 -0
  25. package/es/node_modules/date-fns/esm/parse/_lib/Setter.js +37 -0
  26. package/es/node_modules/date-fns/esm/parse/_lib/constants.js +48 -0
  27. package/es/node_modules/date-fns/esm/parse/_lib/parsers/AMPMMidnightParser.js +55 -0
  28. package/es/node_modules/date-fns/esm/parse/_lib/parsers/AMPMParser.js +55 -0
  29. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DateParser.js +55 -0
  30. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayOfYearParser.js +52 -0
  31. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayParser.js +80 -0
  32. package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayPeriodParser.js +56 -0
  33. package/es/node_modules/date-fns/esm/parse/_lib/parsers/EraParser.js +53 -0
  34. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ExtendedYearParser.js +30 -0
  35. package/es/node_modules/date-fns/esm/parse/_lib/parsers/FractionOfSecondParser.js +29 -0
  36. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js +48 -0
  37. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour0to23Parser.js +41 -0
  38. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour1To24Parser.js +42 -0
  39. package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour1to12Parser.js +50 -0
  40. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISODayParser.js +99 -0
  41. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOTimezoneParser.js +46 -0
  42. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOTimezoneWithZParser.js +46 -0
  43. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOWeekParser.js +43 -0
  44. package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOWeekYearParser.js +33 -0
  45. package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalDayParser.js +96 -0
  46. package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalWeekParser.js +43 -0
  47. package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalWeekYearParser.js +61 -0
  48. package/es/node_modules/date-fns/esm/parse/_lib/parsers/MinuteParser.js +41 -0
  49. package/es/node_modules/date-fns/esm/parse/_lib/parsers/MonthParser.js +80 -0
  50. package/es/node_modules/date-fns/esm/parse/_lib/parsers/QuarterParser.js +73 -0
  51. package/es/node_modules/date-fns/esm/parse/_lib/parsers/SecondParser.js +41 -0
  52. package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneLocalDayParser.js +96 -0
  53. package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneMonthParser.js +80 -0
  54. package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneQuarterParser.js +73 -0
  55. package/es/node_modules/date-fns/esm/parse/_lib/parsers/TimestampMillisecondsParser.js +26 -0
  56. package/es/node_modules/date-fns/esm/parse/_lib/parsers/TimestampSecondsParser.js +26 -0
  57. package/es/node_modules/date-fns/esm/parse/_lib/parsers/YearParser.js +66 -0
  58. package/es/node_modules/date-fns/esm/parse/_lib/parsers/index.js +109 -0
  59. package/es/node_modules/date-fns/esm/parse/_lib/utils.js +133 -0
  60. package/es/node_modules/date-fns/esm/startOfDay/index.js +0 -4
  61. package/es/node_modules/date-fns/esm/toDate/index.js +1 -1
  62. package/es/packages/big-table/index.d.ts +32 -10
  63. package/es/packages/big-table/src/BigTable.vue.d.ts +35 -31
  64. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +35 -11
  65. package/es/packages/big-table/src/bigTableEmits.js +2 -1
  66. package/es/packages/big-table/src/bigTableState.d.ts +2 -6
  67. package/es/packages/big-table/src/bigTableState.js +9 -1
  68. package/es/packages/big-table/src/components/edit-form/edit-separate.js +4 -0
  69. package/es/packages/big-table/src/components/edit-form/edit-separate.vue.d.ts +1247 -0
  70. package/es/packages/big-table/src/components/edit-form/edit-separate.vue_vue_type_script_setup_true_lang.js +69 -0
  71. package/es/packages/big-table/src/components/separate.js +4 -0
  72. package/es/packages/big-table/src/components/separate.vue.d.ts +43 -0
  73. package/es/packages/big-table/src/components/separate.vue_vue_type_script_setup_true_lang.js +24 -0
  74. package/es/packages/big-table/src/constants/index.d.ts +3 -0
  75. package/es/packages/big-table/src/constants/index.js +3 -0
  76. package/es/packages/big-table/src/hooks/useEdit.d.ts +1243 -0
  77. package/es/packages/big-table/src/hooks/useEdit.js +25 -7
  78. package/es/packages/big-table/src/hooks/useSeparateRow.d.ts +30 -0
  79. package/es/packages/big-table/src/hooks/useSeparateRow.js +157 -0
  80. package/es/packages/big-table/src/utils.d.ts +1 -0
  81. package/es/packages/big-table/src/utils.js +5 -7
  82. package/es/packages/big-table/style/index.css +1 -1
  83. package/es/packages/bpmn-workflow/index.d.ts +1 -1
  84. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.d.ts +52 -52
  85. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.js +1 -8
  86. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.js +1 -11
  87. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.js +1 -9
  88. package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.js +1 -8
  89. package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.d.ts +176 -176
  90. package/es/packages/bpmn-workflow/style/index.css +1 -1
  91. package/es/packages/button-print/src/utils/print.es.min.js +1467 -1015
  92. package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +2 -9
  93. package/es/packages/chunk-upload/src/chunk-upload-new.vue_vue_type_script_setup_true_lang.js +1 -1
  94. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +2 -9
  95. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue_vue_type_script_setup_true_lang.js +1 -10
  96. package/es/packages/drag-layout/src/DragFormRightItem.vue_vue_type_script_setup_true_lang.js +6 -6
  97. package/es/packages/drag-layout/src/DragLayout.vue.d.ts +2 -2
  98. package/es/packages/drag-layout/src/DragLayout.vue_vue_type_script_setup_true_lang.js +1 -1
  99. package/es/packages/drag-layout/style/index.css +4 -4
  100. package/es/packages/editor/src/Editor.js +1 -1
  101. package/es/packages/field-set/index.d.ts +2 -2
  102. package/es/packages/field-set/src/FieldSet.vue.d.ts +2 -2
  103. package/es/packages/field-set/src/NewFieldSet.vue.d.ts +1 -1
  104. package/es/packages/field-set/src/OldFieldSet.vue.d.ts +1 -1
  105. package/es/packages/form-render/index.d.ts +64 -56
  106. package/es/packages/form-render/index.js +1 -1
  107. package/es/packages/form-render/src/FormRender.vue.d.ts +64 -56
  108. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.js +18 -29
  109. package/es/packages/form-render/src/components/renderer/cascader.js +2 -0
  110. package/es/packages/form-render/src/components/renderer/checkbox.d.ts +1 -1
  111. package/es/packages/form-render/src/components/renderer/combination.d.ts +8 -118
  112. package/es/packages/form-render/src/components/renderer/combination.js +6 -12
  113. package/es/packages/form-render/src/components/renderer/linebar.js +2 -2
  114. package/es/packages/form-render/src/components/renderer/radio.d.ts +3 -1
  115. package/es/packages/form-render/src/components/renderer/radio.js +5 -4
  116. package/es/packages/form-render/src/components/renderer/select.js +3 -3
  117. package/es/packages/form-render/src/constants/index.d.ts +1 -0
  118. package/es/packages/form-render/src/constants/index.js +3 -2
  119. package/es/packages/form-render/src/hooks/index.d.ts +1 -1
  120. package/es/packages/form-render/src/hooks/index.js +1 -1
  121. package/es/packages/form-render/src/hooks/useAnchor.d.ts +1 -2
  122. package/es/packages/form-render/src/hooks/useAnchor.js +14 -10
  123. package/es/packages/form-render/src/hooks/useAsyncQueue.js +2 -2
  124. package/es/packages/form-render/src/hooks/useBusinessBinding.js +3 -1
  125. package/es/packages/form-render/src/hooks/useChangeContext.js +3 -1
  126. package/es/packages/form-render/src/hooks/useCommonLog.js +1 -1
  127. package/es/packages/form-render/src/hooks/{useFieldList2Schema.d.ts → useFieldListAdaptor.d.ts} +2 -2
  128. package/es/packages/form-render/src/hooks/{useFieldList2Schema.js → useFieldListAdaptor.js} +12 -8
  129. package/es/packages/form-render/src/hooks/useFieldVisitor.d.ts +1 -1
  130. package/es/packages/form-render/src/hooks/useFormContext.d.ts +1 -0
  131. package/es/packages/form-render/src/hooks/useFormContext.js +12 -3
  132. package/es/packages/form-render/src/hooks/useFormItemDeps.d.ts +2 -1
  133. package/es/packages/form-render/src/hooks/useFormRequest.d.ts +2 -1
  134. package/es/packages/form-render/src/hooks/useFormValidator.js +1 -7
  135. package/es/packages/form-render/src/hooks/useInitialData.js +1 -1
  136. package/es/packages/form-render/src/types/fieldItem.d.ts +2 -2
  137. package/es/packages/form-render/src/types/index.d.ts +1 -1
  138. package/es/packages/form-render/src/utils/index.d.ts +1 -0
  139. package/es/packages/form-render/src/utils/index.js +8 -1
  140. package/es/packages/form-table/index.d.ts +27 -27
  141. package/es/packages/form-table/src/FormTable.vue.d.ts +27 -27
  142. package/es/packages/form-table/src/components/index.d.ts +26 -26
  143. package/es/packages/form-table/src/components/table-age.vue.d.ts +2 -2
  144. package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +2 -2
  145. package/es/packages/form-table/src/components/table-digital.vue.d.ts +2 -2
  146. package/es/packages/form-table/src/components/table-input-password.vue.d.ts +2 -2
  147. package/es/packages/form-table/src/components/table-input.vue.d.ts +2 -2
  148. package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +2 -2
  149. package/es/packages/form-table/src/components/table-search-more.vue.d.ts +2 -2
  150. package/es/packages/form-table/src/components/table-search.vue.d.ts +2 -2
  151. package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.js +1 -1
  152. package/es/packages/form-table/src/components/table-select-multiple.vue.d.ts +2 -2
  153. package/es/packages/form-table/src/components/table-select.vue.d.ts +2 -2
  154. package/es/packages/form-table/src/components/table-textarea.vue.d.ts +2 -2
  155. package/es/packages/form-table/src/components/table-time-picker.vue.d.ts +2 -2
  156. package/es/packages/form-table/src/components/table-tree-select.vue.d.ts +2 -2
  157. package/es/packages/form-table/src/components/table-tree-select.vue_vue_type_script_setup_true_lang.js +9 -7
  158. package/es/packages/form-table/src/configs/index.js +1 -8
  159. package/es/packages/form-table/src/hooks/useBoundDate.js +4 -1
  160. package/es/packages/form-table/src/hooks/useFormCommon.js +6 -1
  161. package/es/packages/form-table/src/hooks/useFormEvent.d.ts +1 -1
  162. package/es/packages/form-table/src/hooks/useFormEvent.js +1 -5
  163. package/es/packages/form-table/src/hooks/useSearch.js +29 -92
  164. package/es/packages/index.css +16 -16
  165. package/es/packages/index.js +1 -1
  166. package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.js +4 -1
  167. package/es/packages/info-header/style/index.css +8 -8
  168. package/es/packages/scale-view/index.d.ts +1 -1
  169. package/es/packages/scale-view/src/ScaleView.vue.d.ts +1 -1
  170. package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.js +11 -9
  171. package/es/packages/scale-view/src/components/EvaluateCountdown.vue_vue_type_script_setup_true_lang.js +1 -8
  172. package/es/packages/scale-view/src/components/EvaluatePage.vue_vue_type_script_setup_true_lang.js +1 -1
  173. package/es/packages/scale-view/src/components/formitem/address.d.ts +3988 -3988
  174. package/es/packages/scale-view/src/components/formitem/r-upload.js +1 -1
  175. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +1 -1
  176. package/es/packages/scale-view/src/hooks/scaleview-computed.js +7 -12
  177. package/es/packages/scale-view/src/hooks/scaleview-init.js +1 -6
  178. package/es/packages/scale-view/src/hooks/scaleview-state.js +1 -8
  179. package/es/packages/scale-view/src/hooks/scaleview-submit.js +2 -5
  180. package/es/packages/scale-view/src/hooks/scaleview-validate.js +6 -1
  181. package/es/packages/scale-view/src/hooks/use-component.js +50 -50
  182. package/es/packages/scale-view/src/utils/judge-types.js +1 -6
  183. package/es/packages/select-label/src/LabelFormContent.vue.d.ts +3 -0
  184. package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.js +1 -1
  185. package/es/packages/time-line/style/index.css +2 -2
  186. package/es/src/components/player-vod/video-modal.js +1 -1
  187. package/es/src/core/create.js +1 -1
  188. package/es/src/utils/anime.js +1 -1
  189. package/package.json +153 -131
  190. package/.versionrc.json +0 -32
@@ -150,6 +150,1249 @@ export declare const comps: {
150
150
  row: Record<string, any>;
151
151
  index: number | Record<string, any>;
152
152
  }>;
153
+ separate: import("vue").DefineComponent<{
154
+ col: {
155
+ type: import("vue").PropType<import("vxe-table").VxeTableDefines.ColumnInfo>;
156
+ required: true;
157
+ };
158
+ row: {
159
+ type: import("vue").PropType<import("../../../../src/types").AnyObject>;
160
+ required: true;
161
+ };
162
+ index: {
163
+ type: NumberConstructor;
164
+ required: true;
165
+ };
166
+ }, {
167
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
168
+ col: {
169
+ type: import("vue").PropType<import("vxe-table").VxeTableDefines.ColumnInfo>;
170
+ required: true;
171
+ };
172
+ row: {
173
+ type: import("vue").PropType<import("../../../../src/types").AnyObject>;
174
+ required: true;
175
+ };
176
+ index: {
177
+ type: NumberConstructor;
178
+ required: true;
179
+ };
180
+ }>> & {
181
+ onFormChange?: ((...args: any[]) => any) | undefined;
182
+ }>>;
183
+ emit: (event: "formChange", ...args: any[]) => void;
184
+ getRowData: (row: import("../../../../src/types").AnyObject) => {
185
+ separateData: Record<string, string>;
186
+ index: number;
187
+ rawRow: import("../../../../src/types").AnyObject;
188
+ row: import("../../../../src/types").AnyObject;
189
+ } | undefined;
190
+ editContent: import("vue").Ref<string>;
191
+ updateShow: (show: boolean) => void;
192
+ style: import("vue").CSSProperties;
193
+ NPopover: import("vue").DefineComponent<{
194
+ internalOnAfterLeave: import("vue").PropType<() => void>;
195
+ internalRenderBody: import("vue").PropType<import("naive-ui/es/popover/src/interface").InternalRenderBody>;
196
+ show: {
197
+ type: import("vue").PropType<boolean | undefined>;
198
+ default: undefined;
199
+ };
200
+ defaultShow: BooleanConstructor;
201
+ showArrow: {
202
+ type: BooleanConstructor;
203
+ default: boolean;
204
+ };
205
+ trigger: {
206
+ type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
207
+ default: string;
208
+ };
209
+ delay: {
210
+ type: NumberConstructor;
211
+ default: number;
212
+ };
213
+ duration: {
214
+ type: NumberConstructor;
215
+ default: number;
216
+ };
217
+ raw: BooleanConstructor;
218
+ placement: {
219
+ type: import("vue").PropType<import("vueuc").FollowerPlacement>;
220
+ default: string;
221
+ };
222
+ x: NumberConstructor;
223
+ y: NumberConstructor;
224
+ arrowPointToCenter: BooleanConstructor;
225
+ disabled: BooleanConstructor;
226
+ getDisabled: import("vue").PropType<() => boolean>;
227
+ displayDirective: {
228
+ type: import("vue").PropType<"show" | "if">;
229
+ default: string;
230
+ };
231
+ arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
232
+ flip: {
233
+ type: BooleanConstructor;
234
+ default: boolean;
235
+ };
236
+ animated: {
237
+ type: BooleanConstructor;
238
+ default: boolean;
239
+ };
240
+ width: {
241
+ type: import("vue").PropType<number | "trigger">;
242
+ default: undefined;
243
+ };
244
+ overlap: BooleanConstructor;
245
+ keepAliveOnHover: {
246
+ type: BooleanConstructor;
247
+ default: boolean;
248
+ };
249
+ zIndex: NumberConstructor;
250
+ to: {
251
+ type: import("vue").PropType<string | boolean | HTMLElement>;
252
+ default: undefined;
253
+ };
254
+ scrollable: BooleanConstructor;
255
+ contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
256
+ headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
257
+ footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
258
+ onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
259
+ 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
260
+ onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
261
+ internalDeactivateImmediately: BooleanConstructor;
262
+ internalSyncTargetWithParent: BooleanConstructor;
263
+ internalInheritedEventHandlers: {
264
+ type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
265
+ default: () => never[];
266
+ };
267
+ internalTrapFocus: BooleanConstructor;
268
+ internalExtraClass: {
269
+ type: import("vue").PropType<string[]>;
270
+ default: () => never[];
271
+ };
272
+ onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
273
+ onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
274
+ arrow: {
275
+ type: import("vue").PropType<boolean | undefined>;
276
+ default: undefined;
277
+ };
278
+ minWidth: NumberConstructor;
279
+ maxWidth: NumberConstructor;
280
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Popover", {
281
+ fontSize: string;
282
+ borderRadius: string;
283
+ color: string;
284
+ dividerColor: string;
285
+ textColor: string;
286
+ boxShadow: string;
287
+ space: string;
288
+ spaceArrow: string;
289
+ arrowOffset: string;
290
+ arrowOffsetVertical: string;
291
+ arrowHeight: string;
292
+ padding: string;
293
+ }, any>>;
294
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
295
+ fontSize: string;
296
+ borderRadius: string;
297
+ color: string;
298
+ dividerColor: string;
299
+ textColor: string;
300
+ boxShadow: string;
301
+ space: string;
302
+ spaceArrow: string;
303
+ arrowOffset: string;
304
+ arrowOffsetVertical: string;
305
+ arrowHeight: string;
306
+ padding: string;
307
+ }, any>>>;
308
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
309
+ fontSize: string;
310
+ borderRadius: string;
311
+ color: string;
312
+ dividerColor: string;
313
+ textColor: string;
314
+ boxShadow: string;
315
+ space: string;
316
+ spaceArrow: string;
317
+ arrowOffset: string;
318
+ arrowOffsetVertical: string;
319
+ arrowHeight: string;
320
+ padding: string;
321
+ }, any>>>;
322
+ }, {
323
+ binderInstRef: import("vue").Ref<{
324
+ targetRef: HTMLElement | null;
325
+ } | null>;
326
+ positionManually: import("vue").ComputedRef<boolean>;
327
+ mergedShowConsideringDisabledProp: import("vue").ComputedRef<boolean>;
328
+ uncontrolledShow: import("vue").Ref<boolean>;
329
+ mergedShowArrow: import("vue").ComputedRef<boolean>;
330
+ getMergedShow: () => boolean;
331
+ setShow: (value: boolean) => void;
332
+ handleClick: () => void;
333
+ handleMouseEnter: () => void;
334
+ handleMouseLeave: () => void;
335
+ handleFocus: () => void;
336
+ handleBlur: () => void;
337
+ syncPosition: () => void;
338
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
339
+ internalOnAfterLeave: import("vue").PropType<() => void>;
340
+ internalRenderBody: import("vue").PropType<import("naive-ui/es/popover/src/interface").InternalRenderBody>;
341
+ show: {
342
+ type: import("vue").PropType<boolean | undefined>;
343
+ default: undefined;
344
+ };
345
+ defaultShow: BooleanConstructor;
346
+ showArrow: {
347
+ type: BooleanConstructor;
348
+ default: boolean;
349
+ };
350
+ trigger: {
351
+ type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
352
+ default: string;
353
+ };
354
+ delay: {
355
+ type: NumberConstructor;
356
+ default: number;
357
+ };
358
+ duration: {
359
+ type: NumberConstructor;
360
+ default: number;
361
+ };
362
+ raw: BooleanConstructor;
363
+ placement: {
364
+ type: import("vue").PropType<import("vueuc").FollowerPlacement>;
365
+ default: string;
366
+ };
367
+ x: NumberConstructor;
368
+ y: NumberConstructor;
369
+ arrowPointToCenter: BooleanConstructor;
370
+ disabled: BooleanConstructor;
371
+ getDisabled: import("vue").PropType<() => boolean>;
372
+ displayDirective: {
373
+ type: import("vue").PropType<"show" | "if">;
374
+ default: string;
375
+ };
376
+ arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
377
+ flip: {
378
+ type: BooleanConstructor;
379
+ default: boolean;
380
+ };
381
+ animated: {
382
+ type: BooleanConstructor;
383
+ default: boolean;
384
+ };
385
+ width: {
386
+ type: import("vue").PropType<number | "trigger">;
387
+ default: undefined;
388
+ };
389
+ overlap: BooleanConstructor;
390
+ keepAliveOnHover: {
391
+ type: BooleanConstructor;
392
+ default: boolean;
393
+ };
394
+ zIndex: NumberConstructor;
395
+ to: {
396
+ type: import("vue").PropType<string | boolean | HTMLElement>;
397
+ default: undefined;
398
+ };
399
+ scrollable: BooleanConstructor;
400
+ contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
401
+ headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
402
+ footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
403
+ onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
404
+ 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
405
+ onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
406
+ internalDeactivateImmediately: BooleanConstructor;
407
+ internalSyncTargetWithParent: BooleanConstructor;
408
+ internalInheritedEventHandlers: {
409
+ type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
410
+ default: () => never[];
411
+ };
412
+ internalTrapFocus: BooleanConstructor;
413
+ internalExtraClass: {
414
+ type: import("vue").PropType<string[]>;
415
+ default: () => never[];
416
+ };
417
+ onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
418
+ onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
419
+ arrow: {
420
+ type: import("vue").PropType<boolean | undefined>;
421
+ default: undefined;
422
+ };
423
+ minWidth: NumberConstructor;
424
+ maxWidth: NumberConstructor;
425
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Popover", {
426
+ fontSize: string;
427
+ borderRadius: string;
428
+ color: string;
429
+ dividerColor: string;
430
+ textColor: string;
431
+ boxShadow: string;
432
+ space: string;
433
+ spaceArrow: string;
434
+ arrowOffset: string;
435
+ arrowOffsetVertical: string;
436
+ arrowHeight: string;
437
+ padding: string;
438
+ }, any>>;
439
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
440
+ fontSize: string;
441
+ borderRadius: string;
442
+ color: string;
443
+ dividerColor: string;
444
+ textColor: string;
445
+ boxShadow: string;
446
+ space: string;
447
+ spaceArrow: string;
448
+ arrowOffset: string;
449
+ arrowOffsetVertical: string;
450
+ arrowHeight: string;
451
+ padding: string;
452
+ }, any>>>;
453
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
454
+ fontSize: string;
455
+ borderRadius: string;
456
+ color: string;
457
+ dividerColor: string;
458
+ textColor: string;
459
+ boxShadow: string;
460
+ space: string;
461
+ spaceArrow: string;
462
+ arrowOffset: string;
463
+ arrowOffsetVertical: string;
464
+ arrowHeight: string;
465
+ padding: string;
466
+ }, any>>>;
467
+ }>>, {
468
+ show: boolean | undefined;
469
+ flip: boolean;
470
+ width: number | "trigger";
471
+ disabled: boolean;
472
+ duration: number;
473
+ to: string | boolean | HTMLElement;
474
+ raw: boolean;
475
+ placement: import("vueuc").FollowerPlacement;
476
+ overlap: boolean;
477
+ scrollable: boolean;
478
+ trigger: import("naive-ui").PopoverTrigger;
479
+ showArrow: boolean;
480
+ delay: number;
481
+ arrowPointToCenter: boolean;
482
+ displayDirective: "show" | "if";
483
+ keepAliveOnHover: boolean;
484
+ internalDeactivateImmediately: boolean;
485
+ animated: boolean;
486
+ internalTrapFocus: boolean;
487
+ defaultShow: boolean;
488
+ internalSyncTargetWithParent: boolean;
489
+ internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
490
+ internalExtraClass: string[];
491
+ arrow: boolean | undefined;
492
+ }>;
493
+ NInput: import("vue").DefineComponent<{
494
+ bordered: {
495
+ type: import("vue").PropType<boolean | undefined>;
496
+ default: undefined;
497
+ };
498
+ type: {
499
+ type: import("vue").PropType<"text" | "textarea" | "password">;
500
+ default: string;
501
+ };
502
+ placeholder: import("vue").PropType<string | [string, string]>;
503
+ defaultValue: {
504
+ type: import("vue").PropType<string | [string, string] | null>;
505
+ default: null;
506
+ };
507
+ value: import("vue").PropType<string | [string, string] | null>;
508
+ disabled: {
509
+ type: import("vue").PropType<boolean | undefined>;
510
+ default: undefined;
511
+ };
512
+ size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
513
+ rows: {
514
+ type: import("vue").PropType<string | number>;
515
+ default: number;
516
+ };
517
+ round: BooleanConstructor;
518
+ minlength: import("vue").PropType<string | number>;
519
+ maxlength: import("vue").PropType<string | number>;
520
+ clearable: BooleanConstructor;
521
+ autosize: {
522
+ type: import("vue").PropType<boolean | {
523
+ minRows?: number | undefined;
524
+ maxRows?: number | undefined;
525
+ }>;
526
+ default: boolean;
527
+ };
528
+ pair: BooleanConstructor;
529
+ separator: StringConstructor;
530
+ readonly: {
531
+ type: (BooleanConstructor | StringConstructor)[];
532
+ default: boolean;
533
+ };
534
+ passivelyActivated: BooleanConstructor;
535
+ showPasswordOn: import("vue").PropType<"click" | "mousedown">;
536
+ stateful: {
537
+ type: BooleanConstructor;
538
+ default: boolean;
539
+ };
540
+ autofocus: BooleanConstructor;
541
+ inputProps: import("vue").PropType<import("vue").InputHTMLAttributes | import("vue").TextareaHTMLAttributes>;
542
+ resizable: {
543
+ type: BooleanConstructor;
544
+ default: boolean;
545
+ };
546
+ showCount: BooleanConstructor;
547
+ loading: {
548
+ type: BooleanConstructor;
549
+ default: undefined;
550
+ };
551
+ allowInput: import("vue").PropType<(value: string) => boolean>;
552
+ onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
553
+ onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
554
+ onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
555
+ onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
556
+ onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
557
+ onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
558
+ onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
559
+ onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
560
+ onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
561
+ status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
562
+ 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
563
+ onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
564
+ textDecoration: import("vue").PropType<string | [string, string]>;
565
+ attrSize: {
566
+ type: NumberConstructor;
567
+ default: number;
568
+ };
569
+ onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
570
+ onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
571
+ onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
572
+ onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
573
+ onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
574
+ onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
575
+ internalDeactivateOnEnter: BooleanConstructor;
576
+ internalForceFocus: BooleanConstructor;
577
+ internalLoadingBeforeSuffix: BooleanConstructor;
578
+ showPasswordToggle: BooleanConstructor;
579
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
580
+ countTextColor: string;
581
+ heightTiny: string;
582
+ heightSmall: string;
583
+ heightMedium: string;
584
+ heightLarge: string;
585
+ fontSizeTiny: string;
586
+ fontSizeSmall: string;
587
+ fontSizeMedium: string;
588
+ fontSizeLarge: string;
589
+ lineHeight: string;
590
+ lineHeightTextarea: string;
591
+ borderRadius: string;
592
+ iconSize: string;
593
+ groupLabelColor: string;
594
+ groupLabelTextColor: string;
595
+ textColor: string;
596
+ textColorDisabled: string;
597
+ textDecorationColor: string;
598
+ caretColor: string;
599
+ placeholderColor: string;
600
+ placeholderColorDisabled: string;
601
+ color: string;
602
+ colorDisabled: string;
603
+ colorFocus: string;
604
+ groupLabelBorder: string;
605
+ border: string;
606
+ borderHover: string;
607
+ borderDisabled: string;
608
+ borderFocus: string;
609
+ boxShadowFocus: string;
610
+ loadingColor: string;
611
+ loadingColorWarning: string;
612
+ borderWarning: string;
613
+ borderHoverWarning: string;
614
+ colorFocusWarning: string;
615
+ borderFocusWarning: string;
616
+ boxShadowFocusWarning: string;
617
+ caretColorWarning: string;
618
+ loadingColorError: string;
619
+ borderError: string;
620
+ borderHoverError: string;
621
+ colorFocusError: string;
622
+ borderFocusError: string;
623
+ boxShadowFocusError: string;
624
+ caretColorError: string;
625
+ clearColor: string;
626
+ clearColorHover: string;
627
+ clearColorPressed: string;
628
+ iconColor: string;
629
+ iconColorDisabled: string;
630
+ iconColorHover: string;
631
+ iconColorPressed: string;
632
+ suffixTextColor: string;
633
+ paddingTiny: string;
634
+ paddingSmall: string;
635
+ paddingMedium: string;
636
+ paddingLarge: string;
637
+ clearSize: string;
638
+ }, any>>;
639
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
640
+ countTextColor: string;
641
+ heightTiny: string;
642
+ heightSmall: string;
643
+ heightMedium: string;
644
+ heightLarge: string;
645
+ fontSizeTiny: string;
646
+ fontSizeSmall: string;
647
+ fontSizeMedium: string;
648
+ fontSizeLarge: string;
649
+ lineHeight: string;
650
+ lineHeightTextarea: string;
651
+ borderRadius: string;
652
+ iconSize: string;
653
+ groupLabelColor: string;
654
+ groupLabelTextColor: string;
655
+ textColor: string;
656
+ textColorDisabled: string;
657
+ textDecorationColor: string;
658
+ caretColor: string;
659
+ placeholderColor: string;
660
+ placeholderColorDisabled: string;
661
+ color: string;
662
+ colorDisabled: string;
663
+ colorFocus: string;
664
+ groupLabelBorder: string;
665
+ border: string;
666
+ borderHover: string;
667
+ borderDisabled: string;
668
+ borderFocus: string;
669
+ boxShadowFocus: string;
670
+ loadingColor: string;
671
+ loadingColorWarning: string;
672
+ borderWarning: string;
673
+ borderHoverWarning: string;
674
+ colorFocusWarning: string;
675
+ borderFocusWarning: string;
676
+ boxShadowFocusWarning: string;
677
+ caretColorWarning: string;
678
+ loadingColorError: string;
679
+ borderError: string;
680
+ borderHoverError: string;
681
+ colorFocusError: string;
682
+ borderFocusError: string;
683
+ boxShadowFocusError: string;
684
+ caretColorError: string;
685
+ clearColor: string;
686
+ clearColorHover: string;
687
+ clearColorPressed: string;
688
+ iconColor: string;
689
+ iconColorDisabled: string;
690
+ iconColorHover: string;
691
+ iconColorPressed: string;
692
+ suffixTextColor: string;
693
+ paddingTiny: string;
694
+ paddingSmall: string;
695
+ paddingMedium: string;
696
+ paddingLarge: string;
697
+ clearSize: string;
698
+ }, any>>>;
699
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
700
+ countTextColor: string;
701
+ heightTiny: string;
702
+ heightSmall: string;
703
+ heightMedium: string;
704
+ heightLarge: string;
705
+ fontSizeTiny: string;
706
+ fontSizeSmall: string;
707
+ fontSizeMedium: string;
708
+ fontSizeLarge: string;
709
+ lineHeight: string;
710
+ lineHeightTextarea: string;
711
+ borderRadius: string;
712
+ iconSize: string;
713
+ groupLabelColor: string;
714
+ groupLabelTextColor: string;
715
+ textColor: string;
716
+ textColorDisabled: string;
717
+ textDecorationColor: string;
718
+ caretColor: string;
719
+ placeholderColor: string;
720
+ placeholderColorDisabled: string;
721
+ color: string;
722
+ colorDisabled: string;
723
+ colorFocus: string;
724
+ groupLabelBorder: string;
725
+ border: string;
726
+ borderHover: string;
727
+ borderDisabled: string;
728
+ borderFocus: string;
729
+ boxShadowFocus: string;
730
+ loadingColor: string;
731
+ loadingColorWarning: string;
732
+ borderWarning: string;
733
+ borderHoverWarning: string;
734
+ colorFocusWarning: string;
735
+ borderFocusWarning: string;
736
+ boxShadowFocusWarning: string;
737
+ caretColorWarning: string;
738
+ loadingColorError: string;
739
+ borderError: string;
740
+ borderHoverError: string;
741
+ colorFocusError: string;
742
+ borderFocusError: string;
743
+ boxShadowFocusError: string;
744
+ caretColorError: string;
745
+ clearColor: string;
746
+ clearColorHover: string;
747
+ clearColorPressed: string;
748
+ iconColor: string;
749
+ iconColorDisabled: string;
750
+ iconColorHover: string;
751
+ iconColorPressed: string;
752
+ suffixTextColor: string;
753
+ paddingTiny: string;
754
+ paddingSmall: string;
755
+ paddingMedium: string;
756
+ paddingLarge: string;
757
+ clearSize: string;
758
+ }, any>>>;
759
+ }, {
760
+ wrapperElRef: import("vue").Ref<HTMLElement | null>;
761
+ inputElRef: import("vue").Ref<HTMLInputElement | null>;
762
+ inputMirrorElRef: import("vue").Ref<HTMLElement | null>;
763
+ inputEl2Ref: import("vue").Ref<HTMLInputElement | null>;
764
+ textareaElRef: import("vue").Ref<HTMLTextAreaElement | null>;
765
+ textareaMirrorElRef: import("vue").Ref<HTMLElement | null>;
766
+ textareaScrollbarInstRef: import("vue").Ref<{
767
+ $el: HTMLElement;
768
+ containerRef: HTMLElement | null;
769
+ contentRef: HTMLElement | null;
770
+ containerScrollTop: number;
771
+ syncUnifiedContainer: () => void;
772
+ scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
773
+ scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
774
+ sync: () => void;
775
+ handleMouseEnterWrapper: () => void;
776
+ handleMouseLeaveWrapper: () => void;
777
+ } | null>;
778
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
779
+ uncontrolledValue: import("vue").Ref<string | [string, string] | null>;
780
+ mergedValue: import("vue").ComputedRef<string | [string, string] | null>;
781
+ passwordVisible: import("vue").Ref<boolean>;
782
+ mergedPlaceholder: import("vue").ComputedRef<[string, string] | [string]>;
783
+ showPlaceholder1: import("vue").ComputedRef<string | false>;
784
+ showPlaceholder2: import("vue").ComputedRef<boolean | "" | undefined>;
785
+ mergedFocus: import("vue").ComputedRef<boolean>;
786
+ isComposing: import("vue").Ref<boolean>;
787
+ activated: import("vue").Ref<boolean>;
788
+ showClearButton: import("vue").ComputedRef<boolean>;
789
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
790
+ mergedDisabled: import("vue").ComputedRef<boolean>;
791
+ textDecorationStyle: import("vue").ComputedRef<string[] | {
792
+ textDecoration: string;
793
+ }[]>;
794
+ mergedClsPrefix: import("vue").ComputedRef<string>;
795
+ mergedBordered: import("vue").ComputedRef<boolean>;
796
+ mergedShowPasswordOn: import("vue").ComputedRef<"click" | "mousedown" | undefined>;
797
+ placeholderStyle: import("vue").Ref<{
798
+ top: string;
799
+ }>;
800
+ mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
801
+ textAreaScrollContainerWidth: import("vue").Ref<number | undefined>;
802
+ handleTextAreaScroll: (e: Event) => void;
803
+ handleCompositionStart: () => void;
804
+ handleCompositionEnd: (e: CompositionEvent) => void;
805
+ handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
806
+ handleInputBlur: (e: FocusEvent) => void;
807
+ handleInputFocus: (e: FocusEvent, index: number) => void;
808
+ handleWrapperBlur: (e: FocusEvent) => void;
809
+ handleWrapperFocus: (e: FocusEvent) => void;
810
+ handleMouseEnter: () => void;
811
+ handleMouseLeave: () => void;
812
+ handleMouseDown: (e: MouseEvent) => void;
813
+ handleChange: (e: Event, index?: 0 | 1 | undefined) => void;
814
+ handleClick: (e: MouseEvent) => void;
815
+ handleClear: (e: MouseEvent) => void;
816
+ handlePasswordToggleClick: () => void;
817
+ handlePasswordToggleMousedown: (e: MouseEvent) => void;
818
+ handleWrapperKeydown: (e: KeyboardEvent) => void;
819
+ handleTextAreaMirrorResize: () => void;
820
+ getTextareaScrollContainer: () => HTMLTextAreaElement | null;
821
+ mergedTheme: import("vue").ComputedRef<{
822
+ common: {
823
+ baseColor: string;
824
+ primaryColor: string;
825
+ primaryColorHover: string;
826
+ primaryColorPressed: string;
827
+ primaryColorSuppl: string;
828
+ infoColor: string;
829
+ infoColorHover: string;
830
+ infoColorPressed: string;
831
+ infoColorSuppl: string;
832
+ successColor: string;
833
+ successColorHover: string;
834
+ successColorPressed: string;
835
+ successColorSuppl: string;
836
+ warningColor: string;
837
+ warningColorHover: string;
838
+ warningColorPressed: string;
839
+ warningColorSuppl: string;
840
+ errorColor: string;
841
+ errorColorHover: string;
842
+ errorColorPressed: string;
843
+ errorColorSuppl: string;
844
+ textColorBase: string;
845
+ textColor1: string;
846
+ textColor2: string;
847
+ textColor3: string;
848
+ textColorDisabled: string;
849
+ placeholderColor: string;
850
+ placeholderColorDisabled: string;
851
+ iconColor: string;
852
+ iconColorHover: string;
853
+ iconColorPressed: string;
854
+ iconColorDisabled: string;
855
+ opacity1: string;
856
+ opacity2: string;
857
+ opacity3: string;
858
+ opacity4: string;
859
+ opacity5: string;
860
+ dividerColor: string;
861
+ borderColor: string;
862
+ closeIconColor: string;
863
+ closeIconColorHover: string;
864
+ closeIconColorPressed: string;
865
+ closeColorHover: string;
866
+ closeColorPressed: string;
867
+ clearColor: string;
868
+ clearColorHover: string;
869
+ clearColorPressed: string;
870
+ scrollbarColor: string;
871
+ scrollbarColorHover: string;
872
+ scrollbarWidth: string;
873
+ scrollbarHeight: string;
874
+ scrollbarBorderRadius: string;
875
+ progressRailColor: string;
876
+ railColor: string;
877
+ popoverColor: string;
878
+ tableColor: string;
879
+ cardColor: string;
880
+ modalColor: string;
881
+ bodyColor: string;
882
+ tagColor: string;
883
+ avatarColor: string;
884
+ invertedColor: string;
885
+ inputColor: string;
886
+ codeColor: string;
887
+ tabColor: string;
888
+ actionColor: string;
889
+ tableHeaderColor: string;
890
+ hoverColor: string;
891
+ tableColorHover: string;
892
+ tableColorStriped: string;
893
+ pressedColor: string;
894
+ opacityDisabled: string;
895
+ inputColorDisabled: string;
896
+ buttonColor2: string;
897
+ buttonColor2Hover: string;
898
+ buttonColor2Pressed: string;
899
+ boxShadow1: string;
900
+ boxShadow2: string;
901
+ boxShadow3: string;
902
+ fontFamily: string;
903
+ fontFamilyMono: string;
904
+ fontWeight: string;
905
+ fontWeightStrong: string;
906
+ cubicBezierEaseInOut: string;
907
+ cubicBezierEaseOut: string;
908
+ cubicBezierEaseIn: string;
909
+ borderRadius: string;
910
+ borderRadiusSmall: string;
911
+ fontSize: string;
912
+ fontSizeMini: string;
913
+ fontSizeTiny: string;
914
+ fontSizeSmall: string;
915
+ fontSizeMedium: string;
916
+ fontSizeLarge: string;
917
+ fontSizeHuge: string;
918
+ lineHeight: string;
919
+ heightMini: string;
920
+ heightTiny: string;
921
+ heightSmall: string;
922
+ heightMedium: string;
923
+ heightLarge: string;
924
+ heightHuge: string;
925
+ name: "common";
926
+ };
927
+ self: {
928
+ countTextColor: string;
929
+ heightTiny: string;
930
+ heightSmall: string;
931
+ heightMedium: string;
932
+ heightLarge: string;
933
+ fontSizeTiny: string;
934
+ fontSizeSmall: string;
935
+ fontSizeMedium: string;
936
+ fontSizeLarge: string;
937
+ lineHeight: string;
938
+ lineHeightTextarea: string;
939
+ borderRadius: string;
940
+ iconSize: string;
941
+ groupLabelColor: string;
942
+ groupLabelTextColor: string;
943
+ textColor: string;
944
+ textColorDisabled: string;
945
+ textDecorationColor: string;
946
+ caretColor: string;
947
+ placeholderColor: string;
948
+ placeholderColorDisabled: string;
949
+ color: string;
950
+ colorDisabled: string;
951
+ colorFocus: string;
952
+ groupLabelBorder: string;
953
+ border: string;
954
+ borderHover: string;
955
+ borderDisabled: string;
956
+ borderFocus: string;
957
+ boxShadowFocus: string;
958
+ loadingColor: string;
959
+ loadingColorWarning: string;
960
+ borderWarning: string;
961
+ borderHoverWarning: string;
962
+ colorFocusWarning: string;
963
+ borderFocusWarning: string;
964
+ boxShadowFocusWarning: string;
965
+ caretColorWarning: string;
966
+ loadingColorError: string;
967
+ borderError: string;
968
+ borderHoverError: string;
969
+ colorFocusError: string;
970
+ borderFocusError: string;
971
+ boxShadowFocusError: string;
972
+ caretColorError: string;
973
+ clearColor: string;
974
+ clearColorHover: string;
975
+ clearColorPressed: string;
976
+ iconColor: string;
977
+ iconColorDisabled: string;
978
+ iconColorHover: string;
979
+ iconColorPressed: string;
980
+ suffixTextColor: string;
981
+ paddingTiny: string;
982
+ paddingSmall: string;
983
+ paddingMedium: string;
984
+ paddingLarge: string;
985
+ clearSize: string;
986
+ };
987
+ peers: any;
988
+ peerOverrides: {
989
+ [x: string]: any;
990
+ };
991
+ }>;
992
+ cssVars: import("vue").ComputedRef<{
993
+ '--n-bezier': string;
994
+ '--n-count-text-color': string;
995
+ '--n-color': string;
996
+ '--n-font-size': string;
997
+ '--n-border-radius': string;
998
+ '--n-height': string;
999
+ '--n-padding-left': string;
1000
+ '--n-padding-right': string;
1001
+ '--n-text-color': string;
1002
+ '--n-caret-color': string;
1003
+ '--n-text-decoration-color': string;
1004
+ '--n-border': string;
1005
+ '--n-border-disabled': string;
1006
+ '--n-border-hover': string;
1007
+ '--n-border-focus': string;
1008
+ '--n-placeholder-color': string;
1009
+ '--n-placeholder-color-disabled': string;
1010
+ '--n-icon-size': string;
1011
+ '--n-line-height-textarea': string;
1012
+ '--n-color-disabled': string;
1013
+ '--n-color-focus': string;
1014
+ '--n-text-color-disabled': string;
1015
+ '--n-box-shadow-focus': string;
1016
+ '--n-loading-color': string;
1017
+ '--n-caret-color-warning': string;
1018
+ '--n-color-focus-warning': string;
1019
+ '--n-box-shadow-focus-warning': string;
1020
+ '--n-border-warning': string;
1021
+ '--n-border-focus-warning': string;
1022
+ '--n-border-hover-warning': string;
1023
+ '--n-loading-color-warning': string;
1024
+ '--n-caret-color-error': string;
1025
+ '--n-color-focus-error': string;
1026
+ '--n-box-shadow-focus-error': string;
1027
+ '--n-border-error': string;
1028
+ '--n-border-focus-error': string;
1029
+ '--n-border-hover-error': string;
1030
+ '--n-loading-color-error': string;
1031
+ '--n-clear-color': string;
1032
+ '--n-clear-size': string;
1033
+ '--n-clear-color-hover': string;
1034
+ '--n-clear-color-pressed': string;
1035
+ '--n-icon-color': string;
1036
+ '--n-icon-color-hover': string;
1037
+ '--n-icon-color-pressed': string;
1038
+ '--n-icon-color-disabled': string;
1039
+ '--n-suffix-text-color': string;
1040
+ }> | undefined;
1041
+ themeClass: import("vue").Ref<string> | undefined;
1042
+ onRender: (() => void) | undefined;
1043
+ isCompositing: import("vue").Ref<boolean>;
1044
+ blur: () => void;
1045
+ focus: () => void;
1046
+ select: () => void;
1047
+ activate: () => void;
1048
+ deactivate: () => void;
1049
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1050
+ bordered: {
1051
+ type: import("vue").PropType<boolean | undefined>;
1052
+ default: undefined;
1053
+ };
1054
+ type: {
1055
+ type: import("vue").PropType<"text" | "textarea" | "password">;
1056
+ default: string;
1057
+ };
1058
+ placeholder: import("vue").PropType<string | [string, string]>;
1059
+ defaultValue: {
1060
+ type: import("vue").PropType<string | [string, string] | null>;
1061
+ default: null;
1062
+ };
1063
+ value: import("vue").PropType<string | [string, string] | null>;
1064
+ disabled: {
1065
+ type: import("vue").PropType<boolean | undefined>;
1066
+ default: undefined;
1067
+ };
1068
+ size: import("vue").PropType<import("naive-ui/es/input/src/interface").Size>;
1069
+ rows: {
1070
+ type: import("vue").PropType<string | number>;
1071
+ default: number;
1072
+ };
1073
+ round: BooleanConstructor;
1074
+ minlength: import("vue").PropType<string | number>;
1075
+ maxlength: import("vue").PropType<string | number>;
1076
+ clearable: BooleanConstructor;
1077
+ autosize: {
1078
+ type: import("vue").PropType<boolean | {
1079
+ minRows?: number | undefined;
1080
+ maxRows?: number | undefined;
1081
+ }>;
1082
+ default: boolean;
1083
+ };
1084
+ pair: BooleanConstructor;
1085
+ separator: StringConstructor;
1086
+ readonly: {
1087
+ type: (BooleanConstructor | StringConstructor)[];
1088
+ default: boolean;
1089
+ };
1090
+ passivelyActivated: BooleanConstructor;
1091
+ showPasswordOn: import("vue").PropType<"click" | "mousedown">;
1092
+ stateful: {
1093
+ type: BooleanConstructor;
1094
+ default: boolean;
1095
+ };
1096
+ autofocus: BooleanConstructor;
1097
+ inputProps: import("vue").PropType<import("vue").InputHTMLAttributes | import("vue").TextareaHTMLAttributes>;
1098
+ resizable: {
1099
+ type: BooleanConstructor;
1100
+ default: boolean;
1101
+ };
1102
+ showCount: BooleanConstructor;
1103
+ loading: {
1104
+ type: BooleanConstructor;
1105
+ default: undefined;
1106
+ };
1107
+ allowInput: import("vue").PropType<(value: string) => boolean>;
1108
+ onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
1109
+ onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
1110
+ onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
1111
+ onInput: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
1112
+ onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1113
+ onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1114
+ onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1115
+ onChange: import("vue").PropType<import("naive-ui/es/input/src/interface").OnUpdateValue>;
1116
+ onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1117
+ status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
1118
+ 'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
1119
+ onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input/src/interface").OnUpdateValue>>;
1120
+ textDecoration: import("vue").PropType<string | [string, string]>;
1121
+ attrSize: {
1122
+ type: NumberConstructor;
1123
+ default: number;
1124
+ };
1125
+ onInputBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1126
+ onInputFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1127
+ onDeactivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
1128
+ onActivate: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<() => void>>;
1129
+ onWrapperFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1130
+ onWrapperBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
1131
+ internalDeactivateOnEnter: BooleanConstructor;
1132
+ internalForceFocus: BooleanConstructor;
1133
+ internalLoadingBeforeSuffix: BooleanConstructor;
1134
+ showPasswordToggle: BooleanConstructor;
1135
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Input", {
1136
+ countTextColor: string;
1137
+ heightTiny: string;
1138
+ heightSmall: string;
1139
+ heightMedium: string;
1140
+ heightLarge: string;
1141
+ fontSizeTiny: string;
1142
+ fontSizeSmall: string;
1143
+ fontSizeMedium: string;
1144
+ fontSizeLarge: string;
1145
+ lineHeight: string;
1146
+ lineHeightTextarea: string;
1147
+ borderRadius: string;
1148
+ iconSize: string;
1149
+ groupLabelColor: string;
1150
+ groupLabelTextColor: string;
1151
+ textColor: string;
1152
+ textColorDisabled: string;
1153
+ textDecorationColor: string;
1154
+ caretColor: string;
1155
+ placeholderColor: string;
1156
+ placeholderColorDisabled: string;
1157
+ color: string;
1158
+ colorDisabled: string;
1159
+ colorFocus: string;
1160
+ groupLabelBorder: string;
1161
+ border: string;
1162
+ borderHover: string;
1163
+ borderDisabled: string;
1164
+ borderFocus: string;
1165
+ boxShadowFocus: string;
1166
+ loadingColor: string;
1167
+ loadingColorWarning: string;
1168
+ borderWarning: string;
1169
+ borderHoverWarning: string;
1170
+ colorFocusWarning: string;
1171
+ borderFocusWarning: string;
1172
+ boxShadowFocusWarning: string;
1173
+ caretColorWarning: string;
1174
+ loadingColorError: string;
1175
+ borderError: string;
1176
+ borderHoverError: string;
1177
+ colorFocusError: string;
1178
+ borderFocusError: string;
1179
+ boxShadowFocusError: string;
1180
+ caretColorError: string;
1181
+ clearColor: string;
1182
+ clearColorHover: string;
1183
+ clearColorPressed: string;
1184
+ iconColor: string;
1185
+ iconColorDisabled: string;
1186
+ iconColorHover: string;
1187
+ iconColorPressed: string;
1188
+ suffixTextColor: string;
1189
+ paddingTiny: string;
1190
+ paddingSmall: string;
1191
+ paddingMedium: string;
1192
+ paddingLarge: string;
1193
+ clearSize: string;
1194
+ }, any>>;
1195
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
1196
+ countTextColor: string;
1197
+ heightTiny: string;
1198
+ heightSmall: string;
1199
+ heightMedium: string;
1200
+ heightLarge: string;
1201
+ fontSizeTiny: string;
1202
+ fontSizeSmall: string;
1203
+ fontSizeMedium: string;
1204
+ fontSizeLarge: string;
1205
+ lineHeight: string;
1206
+ lineHeightTextarea: string;
1207
+ borderRadius: string;
1208
+ iconSize: string;
1209
+ groupLabelColor: string;
1210
+ groupLabelTextColor: string;
1211
+ textColor: string;
1212
+ textColorDisabled: string;
1213
+ textDecorationColor: string;
1214
+ caretColor: string;
1215
+ placeholderColor: string;
1216
+ placeholderColorDisabled: string;
1217
+ color: string;
1218
+ colorDisabled: string;
1219
+ colorFocus: string;
1220
+ groupLabelBorder: string;
1221
+ border: string;
1222
+ borderHover: string;
1223
+ borderDisabled: string;
1224
+ borderFocus: string;
1225
+ boxShadowFocus: string;
1226
+ loadingColor: string;
1227
+ loadingColorWarning: string;
1228
+ borderWarning: string;
1229
+ borderHoverWarning: string;
1230
+ colorFocusWarning: string;
1231
+ borderFocusWarning: string;
1232
+ boxShadowFocusWarning: string;
1233
+ caretColorWarning: string;
1234
+ loadingColorError: string;
1235
+ borderError: string;
1236
+ borderHoverError: string;
1237
+ colorFocusError: string;
1238
+ borderFocusError: string;
1239
+ boxShadowFocusError: string;
1240
+ caretColorError: string;
1241
+ clearColor: string;
1242
+ clearColorHover: string;
1243
+ clearColorPressed: string;
1244
+ iconColor: string;
1245
+ iconColorDisabled: string;
1246
+ iconColorHover: string;
1247
+ iconColorPressed: string;
1248
+ suffixTextColor: string;
1249
+ paddingTiny: string;
1250
+ paddingSmall: string;
1251
+ paddingMedium: string;
1252
+ paddingLarge: string;
1253
+ clearSize: string;
1254
+ }, any>>>;
1255
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Input", {
1256
+ countTextColor: string;
1257
+ heightTiny: string;
1258
+ heightSmall: string;
1259
+ heightMedium: string;
1260
+ heightLarge: string;
1261
+ fontSizeTiny: string;
1262
+ fontSizeSmall: string;
1263
+ fontSizeMedium: string;
1264
+ fontSizeLarge: string;
1265
+ lineHeight: string;
1266
+ lineHeightTextarea: string;
1267
+ borderRadius: string;
1268
+ iconSize: string;
1269
+ groupLabelColor: string;
1270
+ groupLabelTextColor: string;
1271
+ textColor: string;
1272
+ textColorDisabled: string;
1273
+ textDecorationColor: string;
1274
+ caretColor: string;
1275
+ placeholderColor: string;
1276
+ placeholderColorDisabled: string;
1277
+ color: string;
1278
+ colorDisabled: string;
1279
+ colorFocus: string;
1280
+ groupLabelBorder: string;
1281
+ border: string;
1282
+ borderHover: string;
1283
+ borderDisabled: string;
1284
+ borderFocus: string;
1285
+ boxShadowFocus: string;
1286
+ loadingColor: string;
1287
+ loadingColorWarning: string;
1288
+ borderWarning: string;
1289
+ borderHoverWarning: string;
1290
+ colorFocusWarning: string;
1291
+ borderFocusWarning: string;
1292
+ boxShadowFocusWarning: string;
1293
+ caretColorWarning: string;
1294
+ loadingColorError: string;
1295
+ borderError: string;
1296
+ borderHoverError: string;
1297
+ colorFocusError: string;
1298
+ borderFocusError: string;
1299
+ boxShadowFocusError: string;
1300
+ caretColorError: string;
1301
+ clearColor: string;
1302
+ clearColorHover: string;
1303
+ clearColorPressed: string;
1304
+ iconColor: string;
1305
+ iconColorDisabled: string;
1306
+ iconColorHover: string;
1307
+ iconColorPressed: string;
1308
+ suffixTextColor: string;
1309
+ paddingTiny: string;
1310
+ paddingSmall: string;
1311
+ paddingMedium: string;
1312
+ paddingLarge: string;
1313
+ clearSize: string;
1314
+ }, any>>>;
1315
+ }>>, {
1316
+ type: "text" | "textarea" | "password";
1317
+ readonly: string | boolean;
1318
+ round: boolean;
1319
+ disabled: boolean | undefined;
1320
+ autofocus: boolean;
1321
+ autosize: boolean | {
1322
+ minRows?: number | undefined;
1323
+ maxRows?: number | undefined;
1324
+ };
1325
+ loading: boolean;
1326
+ bordered: boolean | undefined;
1327
+ clearable: boolean;
1328
+ defaultValue: string | [string, string] | null;
1329
+ resizable: boolean;
1330
+ pair: boolean;
1331
+ rows: string | number;
1332
+ passivelyActivated: boolean;
1333
+ stateful: boolean;
1334
+ showCount: boolean;
1335
+ attrSize: number;
1336
+ internalDeactivateOnEnter: boolean;
1337
+ internalForceFocus: boolean;
1338
+ internalLoadingBeforeSuffix: boolean;
1339
+ showPasswordToggle: boolean;
1340
+ }>;
1341
+ Separate: import("vue").DefineComponent<{
1342
+ col: {
1343
+ type: import("vue").PropType<import("vxe-table").VxeTableDefines.ColumnInfo>;
1344
+ required: true;
1345
+ };
1346
+ row: {
1347
+ type: import("vue").PropType<import("../../../../src/types").AnyObject>;
1348
+ required: true;
1349
+ };
1350
+ }, {
1351
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1352
+ col: {
1353
+ type: import("vue").PropType<import("vxe-table").VxeTableDefines.ColumnInfo>;
1354
+ required: true;
1355
+ };
1356
+ row: {
1357
+ type: import("vue").PropType<import("../../../../src/types").AnyObject>;
1358
+ required: true;
1359
+ };
1360
+ }>> & {
1361
+ [x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
1362
+ }>>;
1363
+ separateDataMap: import("vue").Ref<WeakMap<import("../../../../src/types").AnyObject, {
1364
+ separateData: Record<string, string>;
1365
+ index: number;
1366
+ rawRow: import("../../../../src/types").AnyObject;
1367
+ row: import("../../../../src/types").AnyObject;
1368
+ }>>;
1369
+ displayContent: import("vue").ComputedRef<string>;
1370
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1371
+ col: {
1372
+ type: import("vue").PropType<import("vxe-table").VxeTableDefines.ColumnInfo>;
1373
+ required: true;
1374
+ };
1375
+ row: {
1376
+ type: import("vue").PropType<import("../../../../src/types").AnyObject>;
1377
+ required: true;
1378
+ };
1379
+ }>>, {}>;
1380
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formChange"[], "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1381
+ col: {
1382
+ type: import("vue").PropType<import("vxe-table").VxeTableDefines.ColumnInfo>;
1383
+ required: true;
1384
+ };
1385
+ row: {
1386
+ type: import("vue").PropType<import("../../../../src/types").AnyObject>;
1387
+ required: true;
1388
+ };
1389
+ index: {
1390
+ type: NumberConstructor;
1391
+ required: true;
1392
+ };
1393
+ }>> & {
1394
+ onFormChange?: ((...args: any[]) => any) | undefined;
1395
+ }, {}>;
153
1396
  };
154
1397
  export declare const useEdit: (props: any, state: any, emit: any, xGrid: any) => {
155
1398
  initEditTable: () => Promise<void>;