cnhis-design-vue 3.1.8 → 3.1.9
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/README.md +22 -22
- package/env.d.ts +42 -38
- package/es/_virtual/_commonjsHelpers.mjs +3 -1
- package/es/_virtual/css.escape.mjs +3 -0
- package/es/node_modules/css.escape/css.escape.mjs +110 -0
- package/es/node_modules/diagram-js/lib/features/popup-menu/PopupMenu.mjs +26 -7
- package/es/packages/big-table/index.d.ts +2048 -0
- package/es/packages/big-table/index.mjs +17 -1
- package/es/packages/big-table/src/BigTable.mjs +3 -1
- package/es/packages/big-table/src/BigTable.vue.d.ts +2062 -0
- package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.mjs +51 -27
- package/es/packages/big-table/src/bigTableEmits.mjs +50 -1
- package/es/packages/big-table/src/bigTableProps.mjs +116 -1
- package/es/packages/big-table/src/bigTableState.mjs +52 -1
- package/es/packages/big-table/src/components/NoData.mjs +3 -1
- package/es/packages/big-table/src/components/NoData.vue.d.ts +51 -0
- package/es/packages/big-table/src/components/NoData.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/big-table/src/components/edit-form/edit-date.mjs +114 -1
- package/es/packages/big-table/src/components/edit-form/edit-input.mjs +54 -1
- package/es/packages/big-table/src/components/edit-form/edit-select-table.mjs +148 -1
- package/es/packages/big-table/src/components/edit-form/edit-select.mjs +89 -1
- package/es/packages/big-table/src/hooks/useBatchEditing.mjs +289 -1
- package/es/packages/big-table/src/hooks/useEdit.mjs +115 -1
- package/es/packages/big-table/src/hooks/useEvent.mjs +70 -1
- package/es/packages/big-table/src/hooks/useFormat.mjs +484 -1
- package/es/packages/big-table/src/hooks/useNestTable.mjs +85 -1
- package/es/packages/big-table/src/hooks/useTableParse.mjs +135 -1
- package/es/packages/big-table/src/utils.mjs +607 -1
- package/es/packages/big-table/style/index.less +557 -557
- package/es/packages/bpmn-workflow/index.d.ts +74 -0
- package/es/packages/bpmn-workflow/index.mjs +11 -1
- package/es/packages/bpmn-workflow/src/BpmnWorkflow.mjs +3 -1
- package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue.d.ts +77 -0
- package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue_vue_type_script_setup_true_lang.mjs +3 -2
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.mjs +1427 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.mjs +373 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.mjs +141 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.mjs +99 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.mjs +119 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.mjs +40 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.mjs +25 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/index.mjs +12 -1
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.mjs +47 -1
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.mjs +14 -1
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll.mjs +10 -1
- package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate.mjs +15 -1
- package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.mjs +227 -1
- package/es/packages/bpmn-workflow/style/index.less +29 -29
- package/es/packages/button-print/index.d.ts +7342 -0
- package/es/packages/button-print/index.mjs +11 -1
- package/es/packages/button-print/src/ButtonPrint.mjs +3 -1
- package/es/packages/button-print/src/ButtonPrint.vue.d.ts +7350 -0
- package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.mjs +36 -47
- package/es/packages/button-print/src/components/IdentityVerification.mjs +3 -1
- package/es/packages/button-print/src/components/IdentityVerification.vue.d.ts +107 -54
- package/es/packages/button-print/src/components/IdentityVerification.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/button-print/src/utils/print.es.min.mjs +2080 -1
- package/es/packages/button-print/style/index.less +30 -30
- package/es/packages/chunk-upload/index.d.ts +1748 -0
- package/es/packages/chunk-upload/index.mjs +15 -1
- package/es/packages/chunk-upload/src/chunk-upload-new.mjs +3 -1
- package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +1903 -0
- package/es/packages/chunk-upload/src/chunk-upload-new.vue_vue_type_script_setup_true_lang.mjs +5 -4
- package/es/packages/chunk-upload/src/hooks/upload-computed.mjs +68 -1
- package/es/packages/chunk-upload/src/hooks/upload-data.mjs +93 -1
- package/es/packages/chunk-upload/src/hooks/vod-computed.mjs +79 -1
- package/es/packages/chunk-upload/src/hooks/vod-data.mjs +33 -1
- package/es/packages/chunk-upload/src/vod-chunk-upload/index.mjs +2 -1
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.mjs +3 -1
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +1746 -0
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue_vue_type_script_setup_true_lang.mjs +15 -14
- package/es/packages/chunk-upload/src/vod-upload-modal.mjs +95 -1
- package/es/packages/chunk-upload/style/index.less +394 -394
- package/es/packages/drag-layout/index.d.ts +458 -294
- package/es/packages/drag-layout/index.mjs +13 -1
- package/es/packages/drag-layout/src/DragFormLeftItem.mjs +3 -1
- package/es/packages/drag-layout/src/DragFormLeftItem.vue.d.ts +147 -92
- package/es/packages/drag-layout/src/DragFormLeftItem.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/drag-layout/src/DragFormRightItem.mjs +3 -1
- package/es/packages/drag-layout/src/DragFormRightItem.vue.d.ts +98 -77
- package/es/packages/drag-layout/src/DragFormRightItem.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/drag-layout/src/DragLayout.mjs +3 -1
- package/es/packages/drag-layout/src/DragLayout.vue.d.ts +463 -305
- package/es/packages/drag-layout/src/DragLayout.vue_vue_type_script_setup_true_lang.mjs +47 -46
- package/es/packages/drag-layout/style/index.less +208 -208
- package/es/packages/editor/index.mjs +10 -1
- package/es/packages/editor/src/Editor.mjs +77 -1
- package/es/packages/field-set/index.d.ts +5284 -0
- package/es/packages/field-set/index.mjs +11 -1
- package/es/packages/field-set/src/FieldSet.mjs +3 -1
- package/es/packages/field-set/src/FieldSet.vue.d.ts +2602 -0
- package/es/packages/field-set/src/FieldSet.vue_vue_type_script_setup_true_lang.mjs +5 -4
- package/es/packages/field-set/src/Index.mjs +3 -1
- package/es/packages/field-set/src/Index.vue_vue_type_script_setup_true_lang.mjs +2 -2
- package/es/packages/field-set/src/NewFieldSet.mjs +3 -1
- package/es/packages/field-set/src/NewFieldSet.vue.d.ts +2599 -0
- package/es/packages/field-set/src/NewFieldSet.vue_vue_type_script_setup_true_lang.mjs +5 -4
- package/es/packages/field-set/src/index.vue_vue_type_script_setup_true_lang2.mjs +2 -2
- package/es/packages/field-set/src/{index3.mjs → index2.mjs} +0 -0
- package/es/packages/field-set/style/index.less +157 -157
- package/es/packages/form-render/index.d.ts +416 -0
- package/es/packages/form-render/index.mjs +20 -10
- package/es/packages/form-render/src/FormRender.mjs +3 -1
- package/es/packages/form-render/src/FormRender.vue.d.ts +416 -0
- package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.mjs +24 -14
- package/es/packages/form-render/src/components/cascader.d.ts +6 -2
- package/es/packages/form-render/src/components/cascader.mjs +132 -1
- package/es/packages/form-render/src/components/checkbox.mjs +42 -1
- package/es/packages/form-render/src/components/collapse.mjs +54 -1
- package/es/packages/form-render/src/components/combination.mjs +118 -1
- package/es/packages/form-render/src/components/complex.d.ts +13 -0
- package/es/packages/form-render/src/components/complex.mjs +31 -0
- package/es/packages/form-render/src/components/date.d.ts +6 -5032
- package/es/packages/form-render/src/components/date.mjs +51 -1
- package/es/packages/form-render/src/components/formItem.d.ts +10 -8
- package/es/packages/form-render/src/components/formItem.mjs +22 -1
- package/es/packages/form-render/src/components/index.d.ts +1 -0
- package/es/packages/form-render/src/components/index.mjs +16 -15
- package/es/packages/form-render/src/components/input.mjs +40 -1
- package/es/packages/form-render/src/components/inputGroup.mjs +8 -1
- package/es/packages/form-render/src/components/inputNumber.d.ts +4 -2166
- package/es/packages/form-render/src/components/inputNumber.mjs +18 -1
- package/es/packages/form-render/src/components/labelSelect.mjs +18 -1
- package/es/packages/form-render/src/components/radio.mjs +44 -1
- package/es/packages/form-render/src/components/select.d.ts +8 -2
- package/es/packages/form-render/src/components/select.mjs +100 -1
- package/es/packages/form-render/src/components/slider.d.ts +12 -12
- package/es/packages/form-render/src/components/slider.mjs +16 -1
- package/es/packages/form-render/src/components/switch.d.ts +3 -1
- package/es/packages/form-render/src/components/switch.mjs +47 -1
- package/es/packages/form-render/src/components/textarea.d.ts +9 -6
- package/es/packages/form-render/src/components/textarea.mjs +11 -1
- package/es/packages/form-render/src/constants/index.d.ts +5 -3
- package/es/packages/form-render/src/constants/index.mjs +26 -1
- package/es/packages/form-render/src/hooks/index.mjs +9 -9
- package/es/packages/form-render/src/hooks/useAsyncQueue.mjs +138 -1
- package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +2 -2
- package/es/packages/form-render/src/hooks/useBusinessBinding.mjs +60 -1
- package/es/packages/form-render/src/hooks/useCommonLog.mjs +10 -1
- package/es/packages/form-render/src/hooks/useFieldList2Schema.mjs +193 -1
- package/es/packages/form-render/src/hooks/useFieldVisitor.mjs +38 -1
- package/es/packages/form-render/src/hooks/useFormField.mjs +9 -1
- package/es/packages/form-render/src/hooks/useFormRequest.mjs +12 -1
- package/es/packages/form-render/src/hooks/useFormValidator.mjs +48 -1
- package/es/packages/form-render/src/hooks/useTypeNormalize.mjs +37 -1
- package/es/packages/form-render/src/types/fieldItem.d.ts +3 -0
- package/es/packages/form-render/src/utils/index.mjs +59 -1
- package/es/packages/form-render/style/index.css +29 -17
- package/es/packages/form-render/style/index.less +129 -116
- package/es/packages/form-table/index.d.ts +36000 -0
- package/es/packages/form-table/index.mjs +11 -1
- package/es/packages/form-table/src/FormTable.mjs +3 -1
- package/es/packages/form-table/src/FormTable.vue.d.ts +36000 -0
- package/es/packages/form-table/src/FormTable.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/form-table/src/components/index.d.ts +35759 -0
- package/es/packages/form-table/src/components/index.mjs +54 -1
- package/es/packages/form-table/src/components/table-age.mjs +3 -1
- package/es/packages/form-table/src/components/table-age.vue.d.ts +4308 -0
- package/es/packages/form-table/src/components/table-age.vue_vue_type_script_setup_true_lang.mjs +2 -1
- package/es/packages/form-table/src/components/table-date-picker.mjs +3 -1
- package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +5315 -0
- package/es/packages/form-table/src/components/table-date-picker.vue_vue_type_script_setup_true_lang.mjs +3 -5
- package/es/packages/form-table/src/components/table-digital.mjs +3 -1
- package/es/packages/form-table/src/components/table-digital.vue.d.ts +2919 -0
- package/es/packages/form-table/src/components/table-digital.vue_vue_type_script_setup_true_lang.mjs +2 -1
- package/es/packages/form-table/src/components/table-input-password.mjs +3 -1
- package/es/packages/form-table/src/components/table-input-password.vue.d.ts +1627 -0
- package/es/packages/form-table/src/components/table-input-password.vue_vue_type_script_setup_true_lang.mjs +2 -1
- package/es/packages/form-table/src/components/table-input.mjs +3 -1
- package/es/packages/form-table/src/components/table-input.vue.d.ts +1584 -0
- package/es/packages/form-table/src/components/table-input.vue_vue_type_script_setup_true_lang.mjs +2 -1
- package/es/packages/form-table/src/components/table-month-picker.mjs +3 -1
- package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +5258 -0
- package/es/packages/form-table/src/components/table-month-picker.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/form-table/src/components/table-search-more.mjs +3 -1
- package/es/packages/form-table/src/components/table-search-more.vue.d.ts +1785 -0
- package/es/packages/form-table/src/components/table-search-more.vue_vue_type_script_setup_true_lang.mjs +2 -1
- package/es/packages/form-table/src/components/table-search.mjs +3 -1
- package/es/packages/form-table/src/components/table-search.vue.d.ts +3111 -0
- package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.mjs +2 -1
- package/es/packages/form-table/src/components/table-select-multiple.mjs +3 -1
- package/es/packages/form-table/src/components/table-select-multiple.vue.d.ts +1567 -0
- package/es/packages/form-table/src/components/table-select-multiple.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/form-table/src/components/table-select.mjs +3 -1
- package/es/packages/form-table/src/components/table-select.vue.d.ts +1566 -0
- package/es/packages/form-table/src/components/table-select.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/form-table/src/components/table-textarea.mjs +3 -1
- package/es/packages/form-table/src/components/table-textarea.vue.d.ts +1643 -0
- package/es/packages/form-table/src/components/table-textarea.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/form-table/src/components/table-time-picker.mjs +3 -1
- package/es/packages/form-table/src/components/table-time-picker.vue.d.ts +2674 -0
- package/es/packages/form-table/src/components/table-time-picker.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/form-table/src/components/table-tree-select.mjs +3 -1
- package/es/packages/form-table/src/components/table-tree-select.vue.d.ts +1897 -0
- package/es/packages/form-table/src/components/table-tree-select.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/form-table/src/components/text-over-tooltip.mjs +3 -1
- package/es/packages/form-table/src/components/text-over-tooltip.vue.d.ts +546 -0
- package/es/packages/form-table/src/components/text-over-tooltip.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/form-table/src/configs/index.mjs +74 -1
- package/es/packages/form-table/src/hooks/index.mjs +5 -5
- package/es/packages/form-table/src/hooks/useBoundDate.mjs +411 -1
- package/es/packages/form-table/src/hooks/useDateType.mjs +160 -1
- package/es/packages/form-table/src/hooks/useFormCommon.mjs +95 -1
- package/es/packages/form-table/src/hooks/useFormEvent.mjs +71 -1
- package/es/packages/form-table/src/hooks/useItemDefault.mjs +218 -1
- package/es/packages/form-table/src/hooks/useSearch.mjs +1216 -1
- package/es/packages/form-table/src/hooks/useValidate.mjs +480 -1
- package/es/packages/form-table/style/index.less +301 -301
- package/es/packages/grid/index.mjs +14 -1
- package/es/packages/grid/src/Grid.mjs +28 -1
- package/es/packages/grid/src/hooks.mjs +165 -1
- package/es/packages/grid/style/index.less +12 -12
- package/es/packages/index.css +29 -17
- package/es/packages/index.d.ts +2 -2
- package/es/packages/index.less +3074 -3061
- package/es/packages/index.mjs +73 -26
- package/es/packages/info-header/index.d.ts +1850 -0
- package/es/packages/info-header/index.mjs +11 -1
- package/es/packages/info-header/src/HiddenContent.mjs +3 -1
- package/es/packages/info-header/src/HiddenContent.vue.d.ts +363 -0
- package/es/packages/info-header/src/HiddenContent.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/info-header/src/InfoHeader.mjs +3 -1
- package/es/packages/info-header/src/InfoHeader.vue.d.ts +1851 -0
- package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.mjs +15 -7
- package/es/packages/info-header/src/SlotRender.mjs +35 -1
- package/es/packages/info-header/style/index.less +153 -153
- package/es/packages/map/index.d.ts +2315 -0
- package/es/packages/map/index.mjs +11 -1
- package/es/packages/map/src/Map.mjs +3 -1
- package/es/packages/map/src/Map.vue.d.ts +2315 -0
- package/es/packages/map/src/Map.vue_vue_type_script_setup_true_lang.mjs +6 -5
- package/es/packages/map/style/index.less +59 -59
- package/es/packages/scale-view/index.d.ts +4310 -0
- package/es/packages/scale-view/index.mjs +37 -1
- package/es/packages/scale-view/src/ScaleView.mjs +3 -1
- package/es/packages/scale-view/src/ScaleView.vue.d.ts +4151 -0
- package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.mjs +50 -27
- package/es/packages/scale-view/src/components/AnswerParse.mjs +3 -1
- package/es/packages/scale-view/src/components/AnswerParse.vue.d.ts +72 -0
- package/es/packages/scale-view/src/components/AnswerParse.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/scale-view/src/components/EvaluateCountdown.mjs +3 -1
- package/es/packages/scale-view/src/components/EvaluateCountdown.vue.d.ts +150 -0
- package/es/packages/scale-view/src/components/EvaluateCountdown.vue_vue_type_script_setup_true_lang.mjs +3 -2
- package/es/packages/scale-view/src/components/EvaluatePage.mjs +3 -1
- package/es/packages/scale-view/src/components/EvaluatePage.vue.d.ts +1503 -0
- package/es/packages/scale-view/src/components/EvaluatePage.vue_vue_type_script_setup_true_lang.mjs +5 -4
- package/es/packages/scale-view/src/components/NoData.mjs +3 -1
- package/es/packages/scale-view/src/components/NoData.vue.d.ts +51 -0
- package/es/packages/scale-view/src/components/NoData.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/scale-view/src/components/ScaleScore.mjs +63 -1
- package/es/packages/scale-view/src/components/composables/choose-common.d.ts +1 -1
- package/es/packages/scale-view/src/components/composables/choose-common.mjs +78 -1
- package/es/packages/scale-view/src/components/formitem/address.mjs +3993 -1
- package/es/packages/scale-view/src/components/formitem/r-address.mjs +225 -1
- package/es/packages/scale-view/src/components/formitem/r-cascader.mjs +121 -1
- package/es/packages/scale-view/src/components/formitem/r-checkbox.mjs +229 -1
- package/es/packages/scale-view/src/components/formitem/r-collection.mjs +111 -1
- package/es/packages/scale-view/src/components/formitem/r-datetime.mjs +200 -1
- package/es/packages/scale-view/src/components/formitem/r-input.mjs +88 -1
- package/es/packages/scale-view/src/components/formitem/r-map.mjs +104 -1
- package/es/packages/scale-view/src/components/formitem/r-radio.mjs +221 -1
- package/es/packages/scale-view/src/components/formitem/r-select.mjs +134 -1
- package/es/packages/scale-view/src/components/formitem/r-upload.mjs +210 -1
- package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.mjs +3 -1
- package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +6 -2
- package/es/packages/scale-view/src/hooks/scaleview-computed.d.ts +1 -1
- package/es/packages/scale-view/src/hooks/scaleview-computed.mjs +320 -1
- package/es/packages/scale-view/src/hooks/scaleview-init.mjs +441 -1
- package/es/packages/scale-view/src/hooks/scaleview-props.d.ts +7 -3
- package/es/packages/scale-view/src/hooks/scaleview-props.mjs +60 -1
- package/es/packages/scale-view/src/hooks/scaleview-state.mjs +42 -1
- package/es/packages/scale-view/src/hooks/scaleview-submit.mjs +162 -1
- package/es/packages/scale-view/src/hooks/scaleview-validate.mjs +164 -1
- package/es/packages/scale-view/src/hooks/use-component.d.ts +10185 -0
- package/es/packages/scale-view/src/hooks/use-component.mjs +82 -1
- package/es/packages/scale-view/src/hooks/use-evaluate.mjs +150 -1
- package/es/packages/scale-view/src/hooks/use-event.mjs +128 -1
- package/es/packages/scale-view/src/hooks/use-noData.mjs +41 -1
- package/es/packages/scale-view/src/utils/judge-types.mjs +40 -1
- package/es/packages/scale-view/style/index.less +748 -748
- package/es/packages/select-label/index.d.ts +12125 -0
- package/es/packages/select-label/index.mjs +17 -1
- package/es/packages/select-label/src/LabelFormContent.mjs +3 -1
- package/es/packages/select-label/src/LabelFormContent.vue.d.ts +300 -96
- package/es/packages/select-label/src/LabelFormContent.vue_vue_type_script_setup_true_lang.mjs +6 -5
- package/es/packages/select-label/src/SelectLabel.mjs +3 -1
- package/es/packages/select-label/src/SelectLabel.vue.d.ts +7555 -0
- package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.mjs +22 -18
- package/es/packages/select-label/src/components/label-classify.mjs +3 -1
- package/es/packages/select-label/src/components/label-classify.vue.d.ts +236 -68
- package/es/packages/select-label/src/components/label-classify.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/select-label/style/index.less +151 -151
- package/es/packages/select-person/index.d.ts +3502 -0
- package/es/packages/select-person/index.mjs +11 -1
- package/es/packages/select-person/src/SearchTree.mjs +3 -1
- package/es/packages/select-person/src/SearchTree.vue.d.ts +344 -0
- package/es/packages/select-person/src/SearchTree.vue_vue_type_script_setup_true_lang.mjs +3 -2
- package/es/packages/select-person/src/SelectPerson.mjs +3 -1
- package/es/packages/select-person/src/SelectPerson.vue.d.ts +3505 -0
- package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.mjs +39 -44
- package/es/packages/select-person/src/utils/index.d.ts +4 -4
- package/es/packages/select-person/src/utils/index.mjs +71 -1
- package/es/packages/select-person/style/index.less +229 -229
- package/es/packages/time-line/index.d.ts +47 -28
- package/es/packages/time-line/index.mjs +11 -1
- package/es/packages/time-line/src/TimeLine.mjs +3 -1
- package/es/packages/time-line/src/TimeLine.vue.d.ts +47 -28
- package/es/packages/time-line/src/TimeLine.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/packages/time-line/style/index.less +34 -34
- package/es/src/components/SelectPage/SelectPage.mjs +3 -1
- package/es/src/components/SelectPage/SelectPage.vue.d.ts +1446 -0
- package/es/src/components/SelectPage/SelectPage.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/src/components/SelectPage/index.mjs +2 -1
- package/es/src/components/SvgIcon/SvgIcon.mjs +3 -1
- package/es/src/components/SvgIcon/SvgIcon.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/src/components/SvgIcon/index.mjs +2 -1
- package/es/src/components/TextOverTooltip/TextOverTooltip.mjs +3 -1
- package/es/src/components/TextOverTooltip/TextOverTooltip.vue.d.ts +6 -2
- package/es/src/components/TextOverTooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/src/components/TextOverTooltip/index.mjs +2 -1
- package/es/src/components/player-vod/index.mjs +3 -1
- package/es/src/components/player-vod/index.vue_vue_type_script_setup_true_lang.mjs +1 -0
- package/es/src/components/player-vod/player.mjs +121 -1
- package/es/src/components/player-vod/video-list.mjs +125 -1
- package/es/src/components/player-vod/video-modal.mjs +91 -1
- package/es/src/core/create.mjs +8 -1
- package/es/src/global/variable.d.ts +1 -1
- package/es/src/global/variable.mjs +4 -1
- package/es/src/utils/anime.mjs +126 -1
- package/es/src/utils/clickoutside.mjs +48 -1
- package/es/src/utils/crypto.mjs +25 -1
- package/es/src/utils/index.d.ts +0 -1
- package/es/src/utils/index.mjs +15 -1
- package/es/src/utils/loadViewer.mjs +11 -1
- package/es/src/utils/loadVxe.mjs +12 -1
- package/es/src/utils/utilExpand.mjs +714 -1
- package/es/src/utils/vexutils.mjs +78 -1
- package/global.d.ts +8 -8
- package/memory-log.ts +62 -0
- package/package.json +16 -9
- package/sync-w.sh +13 -0
- package/yarn-error.log +8659 -103
- package/es/packages/big-table/index2.mjs +0 -17
- package/es/packages/big-table/src/BigTable2.mjs +0 -4
- package/es/packages/big-table/src/bigTableEmits2.mjs +0 -49
- package/es/packages/big-table/src/bigTableProps2.mjs +0 -116
- package/es/packages/big-table/src/bigTableState2.mjs +0 -52
- package/es/packages/big-table/src/components/NoData2.mjs +0 -4
- package/es/packages/big-table/src/components/edit-form/edit-date2.mjs +0 -114
- package/es/packages/big-table/src/components/edit-form/edit-input2.mjs +0 -54
- package/es/packages/big-table/src/components/edit-form/edit-select-table2.mjs +0 -148
- package/es/packages/big-table/src/components/edit-form/edit-select2.mjs +0 -89
- package/es/packages/big-table/src/hooks/useBatchEditing2.mjs +0 -289
- package/es/packages/big-table/src/hooks/useEdit2.mjs +0 -115
- package/es/packages/big-table/src/hooks/useEvent2.mjs +0 -70
- package/es/packages/big-table/src/hooks/useFormat2.mjs +0 -484
- package/es/packages/big-table/src/hooks/useNestTable2.mjs +0 -85
- package/es/packages/big-table/src/hooks/useTableParse2.mjs +0 -135
- package/es/packages/big-table/src/utils2.mjs +0 -607
- package/es/packages/bpmn-workflow/index2.mjs +0 -11
- package/es/packages/bpmn-workflow/src/BpmnWorkflow2.mjs +0 -4
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer2.mjs +0 -1427
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider2.mjs +0 -373
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette2.mjs +0 -141
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap2.mjs +0 -99
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer2.mjs +0 -119
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules2.mjs +0 -40
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index2.mjs +0 -25
- package/es/packages/bpmn-workflow/src/custom/customModeler/index2.mjs +0 -12
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu2.mjs +0 -47
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer2.mjs +0 -14
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll2.mjs +0 -10
- package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate2.mjs +0 -15
- package/es/packages/bpmn-workflow/src/custom/customTranslate/zh2.mjs +0 -227
- package/es/packages/button-print/index2.mjs +0 -11
- package/es/packages/button-print/src/ButtonPrint2.mjs +0 -4
- package/es/packages/button-print/src/components/IdentityVerification2.mjs +0 -4
- package/es/packages/button-print/src/utils/print.es.min2.mjs +0 -2080
- package/es/packages/chunk-upload/index2.mjs +0 -16
- package/es/packages/chunk-upload/src/chunk-upload-new2.mjs +0 -4
- package/es/packages/chunk-upload/src/hooks/upload-computed2.mjs +0 -68
- package/es/packages/chunk-upload/src/hooks/upload-data2.mjs +0 -93
- package/es/packages/chunk-upload/src/hooks/vod-computed2.mjs +0 -79
- package/es/packages/chunk-upload/src/hooks/vod-data2.mjs +0 -33
- package/es/packages/chunk-upload/src/vod-chunk-upload/index2.mjs +0 -3
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload2.mjs +0 -4
- package/es/packages/chunk-upload/src/vod-upload-modal2.mjs +0 -95
- package/es/packages/drag-layout/index2.mjs +0 -13
- package/es/packages/drag-layout/src/DragFormLeftItem2.mjs +0 -4
- package/es/packages/drag-layout/src/DragFormRightItem2.mjs +0 -4
- package/es/packages/drag-layout/src/DragLayout2.mjs +0 -4
- package/es/packages/editor/index2.mjs +0 -10
- package/es/packages/editor/src/Editor2.mjs +0 -77
- package/es/packages/field-set/index2.mjs +0 -11
- package/es/packages/field-set/src/FieldSet2.mjs +0 -4
- package/es/packages/field-set/src/Index2.mjs +0 -4
- package/es/packages/field-set/src/NewFieldSet2.mjs +0 -4
- package/es/packages/form-render/index2.mjs +0 -15
- package/es/packages/form-render/src/FormRender2.mjs +0 -4
- package/es/packages/form-render/src/components/cascader2.mjs +0 -108
- package/es/packages/form-render/src/components/checkbox2.mjs +0 -42
- package/es/packages/form-render/src/components/collapse2.mjs +0 -54
- package/es/packages/form-render/src/components/combination2.mjs +0 -116
- package/es/packages/form-render/src/components/date2.mjs +0 -34
- package/es/packages/form-render/src/components/formItem2.mjs +0 -22
- package/es/packages/form-render/src/components/index2.mjs +0 -15
- package/es/packages/form-render/src/components/input2.mjs +0 -40
- package/es/packages/form-render/src/components/inputGroup2.mjs +0 -8
- package/es/packages/form-render/src/components/inputNumber2.mjs +0 -7
- package/es/packages/form-render/src/components/labelSelect2.mjs +0 -18
- package/es/packages/form-render/src/components/radio2.mjs +0 -44
- package/es/packages/form-render/src/components/select2.mjs +0 -97
- package/es/packages/form-render/src/components/slider2.mjs +0 -16
- package/es/packages/form-render/src/components/switch2.mjs +0 -48
- package/es/packages/form-render/src/components/textarea2.mjs +0 -11
- package/es/packages/form-render/src/constants/index2.mjs +0 -24
- package/es/packages/form-render/src/hooks/useAsyncQueue2.mjs +0 -138
- package/es/packages/form-render/src/hooks/useBusinessBinding2.mjs +0 -48
- package/es/packages/form-render/src/hooks/useCommonLog2.mjs +0 -10
- package/es/packages/form-render/src/hooks/useFieldList2Schema2.mjs +0 -184
- package/es/packages/form-render/src/hooks/useFieldVisitor2.mjs +0 -38
- package/es/packages/form-render/src/hooks/useFormField2.mjs +0 -9
- package/es/packages/form-render/src/hooks/useFormRequest2.mjs +0 -12
- package/es/packages/form-render/src/hooks/useFormValidator2.mjs +0 -48
- package/es/packages/form-render/src/hooks/useTypeNormalize2.mjs +0 -37
- package/es/packages/form-render/src/utils/index2.mjs +0 -59
- package/es/packages/form-table/index2.mjs +0 -11
- package/es/packages/form-table/src/FormTable2.mjs +0 -4
- package/es/packages/form-table/src/components/index2.mjs +0 -54
- package/es/packages/form-table/src/components/table-age2.mjs +0 -4
- package/es/packages/form-table/src/components/table-date-picker2.mjs +0 -4
- package/es/packages/form-table/src/components/table-digital2.mjs +0 -4
- package/es/packages/form-table/src/components/table-input-password2.mjs +0 -4
- package/es/packages/form-table/src/components/table-input2.mjs +0 -4
- package/es/packages/form-table/src/components/table-month-picker2.mjs +0 -4
- package/es/packages/form-table/src/components/table-search-more2.mjs +0 -4
- package/es/packages/form-table/src/components/table-search2.mjs +0 -4
- package/es/packages/form-table/src/components/table-select-multiple2.mjs +0 -4
- package/es/packages/form-table/src/components/table-select2.mjs +0 -4
- package/es/packages/form-table/src/components/table-textarea2.mjs +0 -4
- package/es/packages/form-table/src/components/table-time-picker2.mjs +0 -4
- package/es/packages/form-table/src/components/table-tree-select2.mjs +0 -4
- package/es/packages/form-table/src/components/text-over-tooltip2.mjs +0 -4
- package/es/packages/form-table/src/configs/index2.mjs +0 -74
- package/es/packages/form-table/src/hooks/useBoundDate2.mjs +0 -411
- package/es/packages/form-table/src/hooks/useDateType2.mjs +0 -160
- package/es/packages/form-table/src/hooks/useFormCommon2.mjs +0 -95
- package/es/packages/form-table/src/hooks/useFormEvent2.mjs +0 -71
- package/es/packages/form-table/src/hooks/useItemDefault2.mjs +0 -218
- package/es/packages/form-table/src/hooks/useSearch2.mjs +0 -1216
- package/es/packages/form-table/src/hooks/useValidate2.mjs +0 -480
- package/es/packages/grid/index2.mjs +0 -14
- package/es/packages/grid/src/Grid2.mjs +0 -28
- package/es/packages/grid/src/hooks2.mjs +0 -165
- package/es/packages/index2.mjs +0 -64
- package/es/packages/info-header/index2.mjs +0 -11
- package/es/packages/info-header/src/HiddenContent2.mjs +0 -4
- package/es/packages/info-header/src/InfoHeader2.mjs +0 -4
- package/es/packages/info-header/src/SlotRender2.mjs +0 -35
- package/es/packages/map/index2.mjs +0 -11
- package/es/packages/map/src/Map2.mjs +0 -4
- package/es/packages/scale-view/index2.mjs +0 -37
- package/es/packages/scale-view/src/ScaleView2.mjs +0 -4
- package/es/packages/scale-view/src/components/AnswerParse2.mjs +0 -4
- package/es/packages/scale-view/src/components/EvaluateCountdown2.mjs +0 -4
- package/es/packages/scale-view/src/components/EvaluatePage2.mjs +0 -4
- package/es/packages/scale-view/src/components/NoData2.mjs +0 -4
- package/es/packages/scale-view/src/components/ScaleScore2.mjs +0 -63
- package/es/packages/scale-view/src/components/composables/choose-common2.mjs +0 -78
- package/es/packages/scale-view/src/components/formitem/address2.mjs +0 -3993
- package/es/packages/scale-view/src/components/formitem/r-address2.mjs +0 -225
- package/es/packages/scale-view/src/components/formitem/r-cascader2.mjs +0 -121
- package/es/packages/scale-view/src/components/formitem/r-checkbox2.mjs +0 -228
- package/es/packages/scale-view/src/components/formitem/r-collection2.mjs +0 -111
- package/es/packages/scale-view/src/components/formitem/r-datetime2.mjs +0 -198
- package/es/packages/scale-view/src/components/formitem/r-input2.mjs +0 -88
- package/es/packages/scale-view/src/components/formitem/r-map2.mjs +0 -104
- package/es/packages/scale-view/src/components/formitem/r-radio2.mjs +0 -220
- package/es/packages/scale-view/src/components/formitem/r-select2.mjs +0 -134
- package/es/packages/scale-view/src/components/formitem/r-upload2.mjs +0 -210
- package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip2.mjs +0 -4
- package/es/packages/scale-view/src/hooks/scaleview-computed2.mjs +0 -300
- package/es/packages/scale-view/src/hooks/scaleview-init2.mjs +0 -441
- package/es/packages/scale-view/src/hooks/scaleview-props2.mjs +0 -56
- package/es/packages/scale-view/src/hooks/scaleview-state2.mjs +0 -42
- package/es/packages/scale-view/src/hooks/scaleview-submit2.mjs +0 -162
- package/es/packages/scale-view/src/hooks/scaleview-validate2.mjs +0 -164
- package/es/packages/scale-view/src/hooks/use-component2.mjs +0 -80
- package/es/packages/scale-view/src/hooks/use-evaluate2.mjs +0 -150
- package/es/packages/scale-view/src/hooks/use-event2.mjs +0 -128
- package/es/packages/scale-view/src/hooks/use-noData2.mjs +0 -41
- package/es/packages/scale-view/src/utils/judge-types2.mjs +0 -40
- package/es/packages/select-label/index2.mjs +0 -17
- package/es/packages/select-label/src/LabelFormContent2.mjs +0 -4
- package/es/packages/select-label/src/SelectLabel2.mjs +0 -4
- package/es/packages/select-label/src/components/label-classify2.mjs +0 -4
- package/es/packages/select-person/index2.mjs +0 -11
- package/es/packages/select-person/src/SearchTree2.mjs +0 -4
- package/es/packages/select-person/src/SelectPerson2.mjs +0 -4
- package/es/packages/select-person/src/utils/index2.mjs +0 -57
- package/es/packages/time-line/index2.mjs +0 -11
- package/es/packages/time-line/src/TimeLine2.mjs +0 -4
- package/es/src/components/SelectPage/SelectPage2.mjs +0 -4
- package/es/src/components/SelectPage/index2.mjs +0 -3
- package/es/src/components/SvgIcon/SvgIcon2.mjs +0 -4
- package/es/src/components/SvgIcon/index2.mjs +0 -3
- package/es/src/components/TextOverTooltip/TextOverTooltip2.mjs +0 -4
- package/es/src/components/TextOverTooltip/index2.mjs +0 -3
- package/es/src/components/player-vod/index2.mjs +0 -4
- package/es/src/components/player-vod/player2.mjs +0 -121
- package/es/src/components/player-vod/video-list2.mjs +0 -125
- package/es/src/components/player-vod/video-modal2.mjs +0 -91
- package/es/src/core/create2.mjs +0 -8
- package/es/src/global/variable2.mjs +0 -4
- package/es/src/utils/anime2.mjs +0 -126
- package/es/src/utils/clickoutside2.mjs +0 -48
- package/es/src/utils/crypto2.mjs +0 -25
- package/es/src/utils/index2.mjs +0 -19
- package/es/src/utils/loadViewer2.mjs +0 -11
- package/es/src/utils/loadVxe2.mjs +0 -12
- package/es/src/utils/utilExpand2.mjs +0 -714
- package/es/src/utils/vexutils2.mjs +0 -80
- package/md-plugin.ts +0 -201
- package/uno.config.ts +0 -22
|
@@ -82,6 +82,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
82
82
|
readonly default: 0;
|
|
83
83
|
};
|
|
84
84
|
}, {
|
|
85
|
+
isSsr: boolean;
|
|
86
|
+
contentEl: import("vue").Ref<HTMLElement | undefined>;
|
|
85
87
|
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
86
88
|
style: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
87
89
|
isResponsive: import("vue").ComputedRef<boolean>;
|
|
@@ -114,13 +116,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
114
116
|
readonly default: 0;
|
|
115
117
|
};
|
|
116
118
|
}>>, {
|
|
117
|
-
cols: string | number;
|
|
118
|
-
responsive: "self" | "screen";
|
|
119
|
-
collapsed: boolean;
|
|
120
|
-
itemResponsive: boolean;
|
|
121
|
-
collapsedRows: number;
|
|
122
|
-
xGap: string | number;
|
|
123
|
-
yGap: string | number;
|
|
119
|
+
readonly cols: string | number;
|
|
120
|
+
readonly responsive: "self" | "screen";
|
|
121
|
+
readonly collapsed: boolean;
|
|
122
|
+
readonly itemResponsive: boolean;
|
|
123
|
+
readonly collapsedRows: number;
|
|
124
|
+
readonly xGap: string | number;
|
|
125
|
+
readonly yGap: string | number;
|
|
124
126
|
}>;
|
|
125
127
|
NFormItemGi: import("vue").DefineComponent<{
|
|
126
128
|
readonly label: StringConstructor;
|
|
@@ -408,16 +410,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
408
410
|
readonly default: true;
|
|
409
411
|
};
|
|
410
412
|
}>>, {
|
|
411
|
-
required: boolean;
|
|
412
|
-
first: boolean;
|
|
413
|
-
offset: string | number;
|
|
414
|
-
span: string | number;
|
|
415
|
-
suffix: boolean;
|
|
416
|
-
showRequireMark: boolean | undefined;
|
|
417
|
-
showFeedback: boolean | undefined;
|
|
418
|
-
showLabel: boolean | undefined;
|
|
419
|
-
ignorePathChange: boolean;
|
|
420
|
-
privateShow: boolean;
|
|
413
|
+
readonly required: boolean;
|
|
414
|
+
readonly first: boolean;
|
|
415
|
+
readonly offset: string | number;
|
|
416
|
+
readonly span: string | number;
|
|
417
|
+
readonly suffix: boolean;
|
|
418
|
+
readonly showRequireMark: boolean | undefined;
|
|
419
|
+
readonly showFeedback: boolean | undefined;
|
|
420
|
+
readonly showLabel: boolean | undefined;
|
|
421
|
+
readonly ignorePathChange: boolean;
|
|
422
|
+
readonly privateShow: boolean;
|
|
421
423
|
}>;
|
|
422
424
|
NButton: import("vue").DefineComponent<{
|
|
423
425
|
readonly color: StringConstructor;
|
|
@@ -1792,26 +1794,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1792
1794
|
rippleDuration: string;
|
|
1793
1795
|
}, any>>>;
|
|
1794
1796
|
}>>, {
|
|
1795
|
-
type: import("naive-ui/es/button/src/interface").Type;
|
|
1796
|
-
tag: keyof HTMLElementTagNameMap;
|
|
1797
|
-
block: boolean;
|
|
1798
|
-
round: boolean;
|
|
1799
|
-
dashed: boolean;
|
|
1800
|
-
text: boolean;
|
|
1801
|
-
circle: boolean;
|
|
1802
|
-
disabled: boolean;
|
|
1803
|
-
focusable: boolean;
|
|
1804
|
-
strong: boolean;
|
|
1805
|
-
loading: boolean;
|
|
1806
|
-
bordered: boolean;
|
|
1807
|
-
tertiary: boolean;
|
|
1808
|
-
ghost: boolean;
|
|
1809
|
-
keyboard: boolean;
|
|
1810
|
-
secondary: boolean;
|
|
1811
|
-
quaternary: boolean;
|
|
1812
|
-
iconPlacement: "left" | "right";
|
|
1813
|
-
attrType: "button" | "reset" | "submit";
|
|
1814
|
-
nativeFocusBehavior: boolean;
|
|
1797
|
+
readonly type: import("naive-ui/es/button/src/interface").Type;
|
|
1798
|
+
readonly tag: keyof HTMLElementTagNameMap;
|
|
1799
|
+
readonly block: boolean;
|
|
1800
|
+
readonly round: boolean;
|
|
1801
|
+
readonly dashed: boolean;
|
|
1802
|
+
readonly text: boolean;
|
|
1803
|
+
readonly circle: boolean;
|
|
1804
|
+
readonly disabled: boolean;
|
|
1805
|
+
readonly focusable: boolean;
|
|
1806
|
+
readonly strong: boolean;
|
|
1807
|
+
readonly loading: boolean;
|
|
1808
|
+
readonly bordered: boolean;
|
|
1809
|
+
readonly tertiary: boolean;
|
|
1810
|
+
readonly ghost: boolean;
|
|
1811
|
+
readonly keyboard: boolean;
|
|
1812
|
+
readonly secondary: boolean;
|
|
1813
|
+
readonly quaternary: boolean;
|
|
1814
|
+
readonly iconPlacement: "left" | "right";
|
|
1815
|
+
readonly attrType: "button" | "reset" | "submit";
|
|
1816
|
+
readonly nativeFocusBehavior: boolean;
|
|
1815
1817
|
}>;
|
|
1816
1818
|
NModal: import("vue").DefineComponent<{
|
|
1817
1819
|
onEsc: import("vue").PropType<() => void>;
|
|
@@ -1923,9 +1925,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1923
1925
|
titleTextColor: string;
|
|
1924
1926
|
textColor: string;
|
|
1925
1927
|
color: string;
|
|
1926
|
-
closeColor: string;
|
|
1927
1928
|
closeColorHover: string;
|
|
1928
1929
|
closeColorPressed: string;
|
|
1930
|
+
closeIconColor: string;
|
|
1931
|
+
closeIconColorHover: string;
|
|
1932
|
+
closeIconColorPressed: string;
|
|
1933
|
+
closeBorderRadius: string;
|
|
1929
1934
|
iconColor: string;
|
|
1930
1935
|
iconColorInfo: string;
|
|
1931
1936
|
iconColorSuccess: string;
|
|
@@ -1941,6 +1946,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1941
1946
|
iconMargin: string;
|
|
1942
1947
|
iconMarginIconTop: string;
|
|
1943
1948
|
closeSize: string;
|
|
1949
|
+
closeIconSize: string;
|
|
1944
1950
|
closeMargin: string;
|
|
1945
1951
|
closeMarginIconTop: string;
|
|
1946
1952
|
}, {
|
|
@@ -2161,9 +2167,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2161
2167
|
borderColor: string;
|
|
2162
2168
|
actionColor: string;
|
|
2163
2169
|
titleFontWeight: string;
|
|
2164
|
-
closeColor: string;
|
|
2165
2170
|
closeColorHover: string;
|
|
2166
2171
|
closeColorPressed: string;
|
|
2172
|
+
closeBorderRadius: string;
|
|
2173
|
+
closeIconColor: string;
|
|
2174
|
+
closeIconColorHover: string;
|
|
2175
|
+
closeIconColorPressed: string;
|
|
2167
2176
|
fontSizeSmall: string;
|
|
2168
2177
|
fontSizeMedium: string;
|
|
2169
2178
|
fontSizeLarge: string;
|
|
@@ -2178,6 +2187,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2178
2187
|
titleFontSizeMedium: string;
|
|
2179
2188
|
titleFontSizeLarge: string;
|
|
2180
2189
|
titleFontSizeHuge: string;
|
|
2190
|
+
closeIconSize: string;
|
|
2181
2191
|
closeSize: string;
|
|
2182
2192
|
}, any>;
|
|
2183
2193
|
}>>;
|
|
@@ -2197,9 +2207,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2197
2207
|
titleTextColor: string;
|
|
2198
2208
|
textColor: string;
|
|
2199
2209
|
color: string;
|
|
2200
|
-
closeColor: string;
|
|
2201
2210
|
closeColorHover: string;
|
|
2202
2211
|
closeColorPressed: string;
|
|
2212
|
+
closeIconColor: string;
|
|
2213
|
+
closeIconColorHover: string;
|
|
2214
|
+
closeIconColorPressed: string;
|
|
2215
|
+
closeBorderRadius: string;
|
|
2203
2216
|
iconColor: string;
|
|
2204
2217
|
iconColorInfo: string;
|
|
2205
2218
|
iconColorSuccess: string;
|
|
@@ -2215,6 +2228,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2215
2228
|
iconMargin: string;
|
|
2216
2229
|
iconMarginIconTop: string;
|
|
2217
2230
|
closeSize: string;
|
|
2231
|
+
closeIconSize: string;
|
|
2218
2232
|
closeMargin: string;
|
|
2219
2233
|
closeMarginIconTop: string;
|
|
2220
2234
|
}, {
|
|
@@ -2435,9 +2449,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2435
2449
|
borderColor: string;
|
|
2436
2450
|
actionColor: string;
|
|
2437
2451
|
titleFontWeight: string;
|
|
2438
|
-
closeColor: string;
|
|
2439
2452
|
closeColorHover: string;
|
|
2440
2453
|
closeColorPressed: string;
|
|
2454
|
+
closeBorderRadius: string;
|
|
2455
|
+
closeIconColor: string;
|
|
2456
|
+
closeIconColorHover: string;
|
|
2457
|
+
closeIconColorPressed: string;
|
|
2441
2458
|
fontSizeSmall: string;
|
|
2442
2459
|
fontSizeMedium: string;
|
|
2443
2460
|
fontSizeLarge: string;
|
|
@@ -2452,6 +2469,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2452
2469
|
titleFontSizeMedium: string;
|
|
2453
2470
|
titleFontSizeLarge: string;
|
|
2454
2471
|
titleFontSizeHuge: string;
|
|
2472
|
+
closeIconSize: string;
|
|
2455
2473
|
closeSize: string;
|
|
2456
2474
|
}, any>;
|
|
2457
2475
|
}>>>;
|
|
@@ -2471,9 +2489,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2471
2489
|
titleTextColor: string;
|
|
2472
2490
|
textColor: string;
|
|
2473
2491
|
color: string;
|
|
2474
|
-
closeColor: string;
|
|
2475
2492
|
closeColorHover: string;
|
|
2476
2493
|
closeColorPressed: string;
|
|
2494
|
+
closeIconColor: string;
|
|
2495
|
+
closeIconColorHover: string;
|
|
2496
|
+
closeIconColorPressed: string;
|
|
2497
|
+
closeBorderRadius: string;
|
|
2477
2498
|
iconColor: string;
|
|
2478
2499
|
iconColorInfo: string;
|
|
2479
2500
|
iconColorSuccess: string;
|
|
@@ -2489,6 +2510,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2489
2510
|
iconMargin: string;
|
|
2490
2511
|
iconMarginIconTop: string;
|
|
2491
2512
|
closeSize: string;
|
|
2513
|
+
closeIconSize: string;
|
|
2492
2514
|
closeMargin: string;
|
|
2493
2515
|
closeMarginIconTop: string;
|
|
2494
2516
|
}, {
|
|
@@ -2709,9 +2731,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2709
2731
|
borderColor: string;
|
|
2710
2732
|
actionColor: string;
|
|
2711
2733
|
titleFontWeight: string;
|
|
2712
|
-
closeColor: string;
|
|
2713
2734
|
closeColorHover: string;
|
|
2714
2735
|
closeColorPressed: string;
|
|
2736
|
+
closeBorderRadius: string;
|
|
2737
|
+
closeIconColor: string;
|
|
2738
|
+
closeIconColorHover: string;
|
|
2739
|
+
closeIconColorPressed: string;
|
|
2715
2740
|
fontSizeSmall: string;
|
|
2716
2741
|
fontSizeMedium: string;
|
|
2717
2742
|
fontSizeLarge: string;
|
|
@@ -2726,6 +2751,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2726
2751
|
titleFontSizeMedium: string;
|
|
2727
2752
|
titleFontSizeLarge: string;
|
|
2728
2753
|
titleFontSizeHuge: string;
|
|
2754
|
+
closeIconSize: string;
|
|
2729
2755
|
closeSize: string;
|
|
2730
2756
|
}, any>;
|
|
2731
2757
|
}>>>;
|
|
@@ -2861,9 +2887,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2861
2887
|
titleTextColor: string;
|
|
2862
2888
|
textColor: string;
|
|
2863
2889
|
color: string;
|
|
2864
|
-
closeColor: string;
|
|
2865
2890
|
closeColorHover: string;
|
|
2866
2891
|
closeColorPressed: string;
|
|
2892
|
+
closeIconColor: string;
|
|
2893
|
+
closeIconColorHover: string;
|
|
2894
|
+
closeIconColorPressed: string;
|
|
2895
|
+
closeBorderRadius: string;
|
|
2867
2896
|
iconColor: string;
|
|
2868
2897
|
iconColorInfo: string;
|
|
2869
2898
|
iconColorSuccess: string;
|
|
@@ -2879,6 +2908,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2879
2908
|
iconMargin: string;
|
|
2880
2909
|
iconMarginIconTop: string;
|
|
2881
2910
|
closeSize: string;
|
|
2911
|
+
closeIconSize: string;
|
|
2882
2912
|
closeMargin: string;
|
|
2883
2913
|
closeMarginIconTop: string;
|
|
2884
2914
|
}, {
|
|
@@ -3099,9 +3129,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3099
3129
|
borderColor: string;
|
|
3100
3130
|
actionColor: string;
|
|
3101
3131
|
titleFontWeight: string;
|
|
3102
|
-
closeColor: string;
|
|
3103
3132
|
closeColorHover: string;
|
|
3104
3133
|
closeColorPressed: string;
|
|
3134
|
+
closeBorderRadius: string;
|
|
3135
|
+
closeIconColor: string;
|
|
3136
|
+
closeIconColorHover: string;
|
|
3137
|
+
closeIconColorPressed: string;
|
|
3105
3138
|
fontSizeSmall: string;
|
|
3106
3139
|
fontSizeMedium: string;
|
|
3107
3140
|
fontSizeLarge: string;
|
|
@@ -3116,6 +3149,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3116
3149
|
titleFontSizeMedium: string;
|
|
3117
3150
|
titleFontSizeLarge: string;
|
|
3118
3151
|
titleFontSizeHuge: string;
|
|
3152
|
+
closeIconSize: string;
|
|
3119
3153
|
closeSize: string;
|
|
3120
3154
|
}, any>;
|
|
3121
3155
|
}>>;
|
|
@@ -3135,9 +3169,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3135
3169
|
titleTextColor: string;
|
|
3136
3170
|
textColor: string;
|
|
3137
3171
|
color: string;
|
|
3138
|
-
closeColor: string;
|
|
3139
3172
|
closeColorHover: string;
|
|
3140
3173
|
closeColorPressed: string;
|
|
3174
|
+
closeIconColor: string;
|
|
3175
|
+
closeIconColorHover: string;
|
|
3176
|
+
closeIconColorPressed: string;
|
|
3177
|
+
closeBorderRadius: string;
|
|
3141
3178
|
iconColor: string;
|
|
3142
3179
|
iconColorInfo: string;
|
|
3143
3180
|
iconColorSuccess: string;
|
|
@@ -3153,6 +3190,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3153
3190
|
iconMargin: string;
|
|
3154
3191
|
iconMarginIconTop: string;
|
|
3155
3192
|
closeSize: string;
|
|
3193
|
+
closeIconSize: string;
|
|
3156
3194
|
closeMargin: string;
|
|
3157
3195
|
closeMarginIconTop: string;
|
|
3158
3196
|
}, {
|
|
@@ -3373,9 +3411,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3373
3411
|
borderColor: string;
|
|
3374
3412
|
actionColor: string;
|
|
3375
3413
|
titleFontWeight: string;
|
|
3376
|
-
closeColor: string;
|
|
3377
3414
|
closeColorHover: string;
|
|
3378
3415
|
closeColorPressed: string;
|
|
3416
|
+
closeBorderRadius: string;
|
|
3417
|
+
closeIconColor: string;
|
|
3418
|
+
closeIconColorHover: string;
|
|
3419
|
+
closeIconColorPressed: string;
|
|
3379
3420
|
fontSizeSmall: string;
|
|
3380
3421
|
fontSizeMedium: string;
|
|
3381
3422
|
fontSizeLarge: string;
|
|
@@ -3390,6 +3431,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3390
3431
|
titleFontSizeMedium: string;
|
|
3391
3432
|
titleFontSizeLarge: string;
|
|
3392
3433
|
titleFontSizeHuge: string;
|
|
3434
|
+
closeIconSize: string;
|
|
3393
3435
|
closeSize: string;
|
|
3394
3436
|
}, any>;
|
|
3395
3437
|
}>>>;
|
|
@@ -3409,9 +3451,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3409
3451
|
titleTextColor: string;
|
|
3410
3452
|
textColor: string;
|
|
3411
3453
|
color: string;
|
|
3412
|
-
closeColor: string;
|
|
3413
3454
|
closeColorHover: string;
|
|
3414
3455
|
closeColorPressed: string;
|
|
3456
|
+
closeIconColor: string;
|
|
3457
|
+
closeIconColorHover: string;
|
|
3458
|
+
closeIconColorPressed: string;
|
|
3459
|
+
closeBorderRadius: string;
|
|
3415
3460
|
iconColor: string;
|
|
3416
3461
|
iconColorInfo: string;
|
|
3417
3462
|
iconColorSuccess: string;
|
|
@@ -3427,6 +3472,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3427
3472
|
iconMargin: string;
|
|
3428
3473
|
iconMarginIconTop: string;
|
|
3429
3474
|
closeSize: string;
|
|
3475
|
+
closeIconSize: string;
|
|
3430
3476
|
closeMargin: string;
|
|
3431
3477
|
closeMarginIconTop: string;
|
|
3432
3478
|
}, {
|
|
@@ -3647,9 +3693,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3647
3693
|
borderColor: string;
|
|
3648
3694
|
actionColor: string;
|
|
3649
3695
|
titleFontWeight: string;
|
|
3650
|
-
closeColor: string;
|
|
3651
3696
|
closeColorHover: string;
|
|
3652
3697
|
closeColorPressed: string;
|
|
3698
|
+
closeBorderRadius: string;
|
|
3699
|
+
closeIconColor: string;
|
|
3700
|
+
closeIconColorHover: string;
|
|
3701
|
+
closeIconColorPressed: string;
|
|
3653
3702
|
fontSizeSmall: string;
|
|
3654
3703
|
fontSizeMedium: string;
|
|
3655
3704
|
fontSizeLarge: string;
|
|
@@ -3664,6 +3713,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3664
3713
|
titleFontSizeMedium: string;
|
|
3665
3714
|
titleFontSizeLarge: string;
|
|
3666
3715
|
titleFontSizeHuge: string;
|
|
3716
|
+
closeIconSize: string;
|
|
3667
3717
|
closeSize: string;
|
|
3668
3718
|
}, any>;
|
|
3669
3719
|
}>>>;
|
|
@@ -3944,14 +3994,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3944
3994
|
labelTextAlignHorizontal: string;
|
|
3945
3995
|
}, any>>>;
|
|
3946
3996
|
}>>, {
|
|
3947
|
-
inline: boolean;
|
|
3948
|
-
disabled: boolean;
|
|
3949
|
-
onSubmit: (e: Event) => void;
|
|
3950
|
-
labelPlacement: import("naive-ui/es/form/src/interface").LabelPlacement;
|
|
3951
|
-
model: Record<string, any>;
|
|
3952
|
-
showRequireMark: boolean | undefined;
|
|
3953
|
-
showFeedback: boolean;
|
|
3954
|
-
showLabel: boolean | undefined;
|
|
3997
|
+
readonly inline: boolean;
|
|
3998
|
+
readonly disabled: boolean;
|
|
3999
|
+
readonly onSubmit: (e: Event) => void;
|
|
4000
|
+
readonly labelPlacement: import("naive-ui/es/form/src/interface").LabelPlacement;
|
|
4001
|
+
readonly model: Record<string, any>;
|
|
4002
|
+
readonly showRequireMark: boolean | undefined;
|
|
4003
|
+
readonly showFeedback: boolean;
|
|
4004
|
+
readonly showLabel: boolean | undefined;
|
|
3955
4005
|
}>;
|
|
3956
4006
|
NInput: import("vue").DefineComponent<{
|
|
3957
4007
|
bordered: {
|
|
@@ -4011,6 +4061,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4011
4061
|
type: BooleanConstructor;
|
|
4012
4062
|
default: undefined;
|
|
4013
4063
|
};
|
|
4064
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
4014
4065
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
4015
4066
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
4016
4067
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -4231,8 +4282,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4231
4282
|
contentRef: HTMLElement | null;
|
|
4232
4283
|
containerScrollTop: number;
|
|
4233
4284
|
syncUnifiedContainer: () => void;
|
|
4234
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
4235
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
4285
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
4286
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
4236
4287
|
sync: () => void;
|
|
4237
4288
|
handleMouseEnterWrapper: () => void;
|
|
4238
4289
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -4266,7 +4317,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4266
4317
|
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
4267
4318
|
handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
|
|
4268
4319
|
handleInputBlur: (e: FocusEvent) => void;
|
|
4269
|
-
handleInputFocus: (e: FocusEvent) => void;
|
|
4320
|
+
handleInputFocus: (e: FocusEvent, index: number) => void;
|
|
4270
4321
|
handleWrapperBlur: (e: FocusEvent) => void;
|
|
4271
4322
|
handleWrapperFocus: (e: FocusEvent) => void;
|
|
4272
4323
|
handleMouseEnter: () => void;
|
|
@@ -4277,7 +4328,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4277
4328
|
handleClear: (e: MouseEvent) => void;
|
|
4278
4329
|
handlePasswordToggleClick: () => void;
|
|
4279
4330
|
handlePasswordToggleMousedown: (e: MouseEvent) => void;
|
|
4280
|
-
|
|
4331
|
+
handleWrapperKeydown: (e: KeyboardEvent) => void;
|
|
4281
4332
|
handleTextAreaMirrorResize: () => void;
|
|
4282
4333
|
getTextareaScrollContainer: () => HTMLTextAreaElement | null;
|
|
4283
4334
|
mergedTheme: import("vue").ComputedRef<{
|
|
@@ -4321,10 +4372,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4321
4372
|
opacity5: string;
|
|
4322
4373
|
dividerColor: string;
|
|
4323
4374
|
borderColor: string;
|
|
4324
|
-
|
|
4375
|
+
closeIconColor: string;
|
|
4376
|
+
closeIconColorHover: string;
|
|
4377
|
+
closeIconColorPressed: string;
|
|
4325
4378
|
closeColorHover: string;
|
|
4326
4379
|
closeColorPressed: string;
|
|
4327
|
-
closeColorDisabled: string;
|
|
4328
4380
|
clearColor: string;
|
|
4329
4381
|
clearColorHover: string;
|
|
4330
4382
|
clearColorPressed: string;
|
|
@@ -4565,6 +4617,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4565
4617
|
type: BooleanConstructor;
|
|
4566
4618
|
default: undefined;
|
|
4567
4619
|
};
|
|
4620
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
4568
4621
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
4569
4622
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
4570
4623
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -4832,10 +4885,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4832
4885
|
};
|
|
4833
4886
|
readonly remote: BooleanConstructor;
|
|
4834
4887
|
readonly loading: BooleanConstructor;
|
|
4835
|
-
readonly filter:
|
|
4836
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
4837
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
4838
|
-
};
|
|
4888
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
4839
4889
|
readonly placement: {
|
|
4840
4890
|
readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
4841
4891
|
readonly default: "bottom-start";
|
|
@@ -4845,19 +4895,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4845
4895
|
readonly default: "trigger";
|
|
4846
4896
|
};
|
|
4847
4897
|
readonly tag: BooleanConstructor;
|
|
4848
|
-
readonly onCreate:
|
|
4849
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
4850
|
-
readonly default: (label: string) => {
|
|
4851
|
-
label: string;
|
|
4852
|
-
value: string;
|
|
4853
|
-
};
|
|
4854
|
-
};
|
|
4898
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
4855
4899
|
readonly fallbackOption: {
|
|
4856
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
4857
|
-
readonly default:
|
|
4858
|
-
label: string;
|
|
4859
|
-
value: string | number;
|
|
4860
|
-
};
|
|
4900
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
4901
|
+
readonly default: undefined;
|
|
4861
4902
|
};
|
|
4862
4903
|
readonly show: {
|
|
4863
4904
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -4876,6 +4917,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4876
4917
|
readonly type: BooleanConstructor;
|
|
4877
4918
|
readonly default: true;
|
|
4878
4919
|
};
|
|
4920
|
+
readonly labelField: {
|
|
4921
|
+
readonly type: StringConstructor;
|
|
4922
|
+
readonly default: "label";
|
|
4923
|
+
};
|
|
4924
|
+
readonly valueField: {
|
|
4925
|
+
readonly type: StringConstructor;
|
|
4926
|
+
readonly default: "value";
|
|
4927
|
+
};
|
|
4928
|
+
readonly childrenField: {
|
|
4929
|
+
readonly type: StringConstructor;
|
|
4930
|
+
readonly default: "children";
|
|
4931
|
+
};
|
|
4879
4932
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
4880
4933
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
4881
4934
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -4898,6 +4951,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4898
4951
|
readonly default: true;
|
|
4899
4952
|
};
|
|
4900
4953
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
4954
|
+
readonly internalShowCheckmark: {
|
|
4955
|
+
readonly type: BooleanConstructor;
|
|
4956
|
+
readonly default: true;
|
|
4957
|
+
};
|
|
4901
4958
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
4902
4959
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
4903
4960
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -4993,6 +5050,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4993
5050
|
optionCheckColor: string;
|
|
4994
5051
|
optionColorPending: string;
|
|
4995
5052
|
optionColorActive: string;
|
|
5053
|
+
optionColorActivePending: string;
|
|
4996
5054
|
actionTextColor: string;
|
|
4997
5055
|
loadingColor: string;
|
|
4998
5056
|
height: string;
|
|
@@ -5118,6 +5176,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5118
5176
|
optionCheckColor: string;
|
|
5119
5177
|
optionColorPending: string;
|
|
5120
5178
|
optionColorActive: string;
|
|
5179
|
+
optionColorActivePending: string;
|
|
5121
5180
|
actionTextColor: string;
|
|
5122
5181
|
loadingColor: string;
|
|
5123
5182
|
height: string;
|
|
@@ -5243,6 +5302,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5243
5302
|
optionCheckColor: string;
|
|
5244
5303
|
optionColorPending: string;
|
|
5245
5304
|
optionColorActive: string;
|
|
5305
|
+
optionColorActivePending: string;
|
|
5246
5306
|
actionTextColor: string;
|
|
5247
5307
|
loadingColor: string;
|
|
5248
5308
|
height: string;
|
|
@@ -5372,10 +5432,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5372
5432
|
opacity5: string;
|
|
5373
5433
|
dividerColor: string;
|
|
5374
5434
|
borderColor: string;
|
|
5375
|
-
|
|
5435
|
+
closeIconColor: string;
|
|
5436
|
+
closeIconColorHover: string;
|
|
5437
|
+
closeIconColorPressed: string;
|
|
5376
5438
|
closeColorHover: string;
|
|
5377
5439
|
closeColorPressed: string;
|
|
5378
|
-
closeColorDisabled: string;
|
|
5379
5440
|
clearColor: string;
|
|
5380
5441
|
clearColorHover: string;
|
|
5381
5442
|
clearColorPressed: string;
|
|
@@ -5530,6 +5591,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5530
5591
|
optionCheckColor: string;
|
|
5531
5592
|
optionColorPending: string;
|
|
5532
5593
|
optionColorActive: string;
|
|
5594
|
+
optionColorActivePending: string;
|
|
5533
5595
|
actionTextColor: string;
|
|
5534
5596
|
loadingColor: string;
|
|
5535
5597
|
height: string;
|
|
@@ -5645,10 +5707,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5645
5707
|
};
|
|
5646
5708
|
readonly remote: BooleanConstructor;
|
|
5647
5709
|
readonly loading: BooleanConstructor;
|
|
5648
|
-
readonly filter:
|
|
5649
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
5650
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
5651
|
-
};
|
|
5710
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
5652
5711
|
readonly placement: {
|
|
5653
5712
|
readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
5654
5713
|
readonly default: "bottom-start";
|
|
@@ -5658,19 +5717,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5658
5717
|
readonly default: "trigger";
|
|
5659
5718
|
};
|
|
5660
5719
|
readonly tag: BooleanConstructor;
|
|
5661
|
-
readonly onCreate:
|
|
5662
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
5663
|
-
readonly default: (label: string) => {
|
|
5664
|
-
label: string;
|
|
5665
|
-
value: string;
|
|
5666
|
-
};
|
|
5667
|
-
};
|
|
5720
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
5668
5721
|
readonly fallbackOption: {
|
|
5669
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
5670
|
-
readonly default:
|
|
5671
|
-
label: string;
|
|
5672
|
-
value: string | number;
|
|
5673
|
-
};
|
|
5722
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
5723
|
+
readonly default: undefined;
|
|
5674
5724
|
};
|
|
5675
5725
|
readonly show: {
|
|
5676
5726
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -5689,6 +5739,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5689
5739
|
readonly type: BooleanConstructor;
|
|
5690
5740
|
readonly default: true;
|
|
5691
5741
|
};
|
|
5742
|
+
readonly labelField: {
|
|
5743
|
+
readonly type: StringConstructor;
|
|
5744
|
+
readonly default: "label";
|
|
5745
|
+
};
|
|
5746
|
+
readonly valueField: {
|
|
5747
|
+
readonly type: StringConstructor;
|
|
5748
|
+
readonly default: "value";
|
|
5749
|
+
};
|
|
5750
|
+
readonly childrenField: {
|
|
5751
|
+
readonly type: StringConstructor;
|
|
5752
|
+
readonly default: "children";
|
|
5753
|
+
};
|
|
5692
5754
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
5693
5755
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
5694
5756
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -5711,6 +5773,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5711
5773
|
readonly default: true;
|
|
5712
5774
|
};
|
|
5713
5775
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
5776
|
+
readonly internalShowCheckmark: {
|
|
5777
|
+
readonly type: BooleanConstructor;
|
|
5778
|
+
readonly default: true;
|
|
5779
|
+
};
|
|
5714
5780
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
5715
5781
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
5716
5782
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -5806,6 +5872,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5806
5872
|
optionCheckColor: string;
|
|
5807
5873
|
optionColorPending: string;
|
|
5808
5874
|
optionColorActive: string;
|
|
5875
|
+
optionColorActivePending: string;
|
|
5809
5876
|
actionTextColor: string;
|
|
5810
5877
|
loadingColor: string;
|
|
5811
5878
|
height: string;
|
|
@@ -5931,6 +5998,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5931
5998
|
optionCheckColor: string;
|
|
5932
5999
|
optionColorPending: string;
|
|
5933
6000
|
optionColorActive: string;
|
|
6001
|
+
optionColorActivePending: string;
|
|
5934
6002
|
actionTextColor: string;
|
|
5935
6003
|
loadingColor: string;
|
|
5936
6004
|
height: string;
|
|
@@ -6056,6 +6124,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6056
6124
|
optionCheckColor: string;
|
|
6057
6125
|
optionColorPending: string;
|
|
6058
6126
|
optionColorActive: string;
|
|
6127
|
+
optionColorActivePending: string;
|
|
6059
6128
|
actionTextColor: string;
|
|
6060
6129
|
loadingColor: string;
|
|
6061
6130
|
height: string;
|
|
@@ -6089,29 +6158,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6089
6158
|
}>;
|
|
6090
6159
|
}>>>;
|
|
6091
6160
|
}>>, {
|
|
6092
|
-
tag: boolean;
|
|
6093
|
-
|
|
6094
|
-
|
|
6095
|
-
|
|
6096
|
-
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
virtualScroll: boolean;
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
|
|
6109
|
-
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
|
|
6161
|
+
readonly tag: boolean;
|
|
6162
|
+
readonly show: boolean | undefined;
|
|
6163
|
+
readonly multiple: boolean;
|
|
6164
|
+
readonly disabled: boolean | undefined;
|
|
6165
|
+
readonly to: string | boolean | HTMLElement;
|
|
6166
|
+
readonly options: import("naive-ui/es/select/src/interface").SelectMixedOption[];
|
|
6167
|
+
readonly loading: boolean;
|
|
6168
|
+
readonly bordered: boolean | undefined;
|
|
6169
|
+
readonly placement: import("naive-ui").PopoverPlacement;
|
|
6170
|
+
readonly labelField: string;
|
|
6171
|
+
readonly virtualScroll: boolean;
|
|
6172
|
+
readonly valueField: string;
|
|
6173
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
6174
|
+
readonly showArrow: boolean;
|
|
6175
|
+
readonly displayDirective: "show" | "if";
|
|
6176
|
+
readonly filterable: boolean;
|
|
6177
|
+
readonly clearable: boolean;
|
|
6178
|
+
readonly internalShowCheckmark: boolean;
|
|
6179
|
+
readonly clearFilterAfterSelect: boolean;
|
|
6180
|
+
readonly defaultValue: import("naive-ui/es/select/src/interface").Value | null;
|
|
6181
|
+
readonly remote: boolean;
|
|
6182
|
+
readonly widthMode: string;
|
|
6183
|
+
readonly fallbackOption: false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined;
|
|
6184
|
+
readonly consistentMenuWidth: boolean;
|
|
6185
|
+
readonly childrenField: string;
|
|
6115
6186
|
}>;
|
|
6116
6187
|
NCheckbox: import("vue").DefineComponent<{
|
|
6117
6188
|
size: import("vue").PropType<"small" | "medium" | "large">;
|
|
@@ -6236,9 +6307,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6236
6307
|
}, import("naive-ui/es/_mixins/use-form-item").UseFormItem<"small" | "medium" | "large"> & import("naive-ui").CheckboxInst & {
|
|
6237
6308
|
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
6238
6309
|
selfRef: import("vue").Ref<HTMLDivElement | null>;
|
|
6239
|
-
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
6240
|
-
* 更新配置
|
|
6241
|
-
*/
|
|
6310
|
+
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
6242
6311
|
mergedDisabled: import("vue").ComputedRef<boolean>;
|
|
6243
6312
|
renderedChecked: import("vue").ComputedRef<boolean>;
|
|
6244
6313
|
mergedTheme: import("vue").ComputedRef<{
|
|
@@ -6282,10 +6351,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6282
6351
|
opacity5: string;
|
|
6283
6352
|
dividerColor: string;
|
|
6284
6353
|
borderColor: string;
|
|
6285
|
-
|
|
6354
|
+
closeIconColor: string;
|
|
6355
|
+
closeIconColorHover: string;
|
|
6356
|
+
closeIconColorPressed: string;
|
|
6286
6357
|
closeColorHover: string;
|
|
6287
6358
|
closeColorPressed: string;
|
|
6288
|
-
closeColorDisabled: string;
|
|
6289
6359
|
clearColor: string;
|
|
6290
6360
|
clearColorHover: string;
|
|
6291
6361
|
clearColorPressed: string;
|
|
@@ -6535,8 +6605,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6535
6605
|
}>>, {
|
|
6536
6606
|
disabled: boolean | undefined;
|
|
6537
6607
|
checked: string | number | boolean | undefined;
|
|
6538
|
-
focusable: boolean;
|
|
6539
6608
|
indeterminate: boolean;
|
|
6609
|
+
focusable: boolean;
|
|
6540
6610
|
defaultChecked: string | number | boolean;
|
|
6541
6611
|
checkedValue: string | number | boolean;
|
|
6542
6612
|
uncheckedValue: string | number | boolean;
|
|
@@ -6574,6 +6644,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6574
6644
|
type: BooleanConstructor;
|
|
6575
6645
|
default: boolean;
|
|
6576
6646
|
};
|
|
6647
|
+
buttonPlacement: {
|
|
6648
|
+
type: import("vue").PropType<"right" | "both">;
|
|
6649
|
+
default: string;
|
|
6650
|
+
};
|
|
6577
6651
|
readonly: BooleanConstructor;
|
|
6578
6652
|
clearable: BooleanConstructor;
|
|
6579
6653
|
keyboard: {
|
|
@@ -6587,6 +6661,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6587
6661
|
type: BooleanConstructor;
|
|
6588
6662
|
default: boolean;
|
|
6589
6663
|
};
|
|
6664
|
+
parse: import("vue").PropType<(input: string) => number | null>;
|
|
6665
|
+
format: import("vue").PropType<(value: number | null) => string>;
|
|
6666
|
+
precision: NumberConstructor;
|
|
6590
6667
|
status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
6591
6668
|
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
6592
6669
|
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
@@ -7480,10 +7557,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7480
7557
|
opacity5: string;
|
|
7481
7558
|
dividerColor: string;
|
|
7482
7559
|
borderColor: string;
|
|
7483
|
-
|
|
7560
|
+
closeIconColor: string;
|
|
7561
|
+
closeIconColorHover: string;
|
|
7562
|
+
closeIconColorPressed: string;
|
|
7484
7563
|
closeColorHover: string;
|
|
7485
7564
|
closeColorPressed: string;
|
|
7486
|
-
closeColorDisabled: string;
|
|
7487
7565
|
clearColor: string;
|
|
7488
7566
|
clearColorHover: string;
|
|
7489
7567
|
clearColorPressed: string;
|
|
@@ -7869,6 +7947,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7869
7947
|
type: BooleanConstructor;
|
|
7870
7948
|
default: boolean;
|
|
7871
7949
|
};
|
|
7950
|
+
buttonPlacement: {
|
|
7951
|
+
type: import("vue").PropType<"right" | "both">;
|
|
7952
|
+
default: string;
|
|
7953
|
+
};
|
|
7872
7954
|
readonly: BooleanConstructor;
|
|
7873
7955
|
clearable: BooleanConstructor;
|
|
7874
7956
|
keyboard: {
|
|
@@ -7882,6 +7964,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7882
7964
|
type: BooleanConstructor;
|
|
7883
7965
|
default: boolean;
|
|
7884
7966
|
};
|
|
7967
|
+
parse: import("vue").PropType<(input: string) => number | null>;
|
|
7968
|
+
format: import("vue").PropType<(value: number | null) => string>;
|
|
7969
|
+
precision: NumberConstructor;
|
|
7885
7970
|
status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
7886
7971
|
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
7887
7972
|
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
@@ -8707,6 +8792,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8707
8792
|
ArrowDown?: boolean | undefined;
|
|
8708
8793
|
};
|
|
8709
8794
|
showButton: boolean;
|
|
8795
|
+
buttonPlacement: "right" | "both";
|
|
8710
8796
|
updateValueOnInput: boolean;
|
|
8711
8797
|
}>;
|
|
8712
8798
|
Draggable: import("vue").DefineComponent<{
|
|
@@ -8836,6 +8922,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8836
8922
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
8837
8923
|
readonly default: undefined;
|
|
8838
8924
|
};
|
|
8925
|
+
readonly panel: BooleanConstructor;
|
|
8839
8926
|
readonly ranges: import("vue").PropType<Record<string, [number, number]>>;
|
|
8840
8927
|
readonly firstDayOfWeek: import("vue").PropType<import("naive-ui/es/date-picker/src/interface").FirstDayOfWeek>;
|
|
8841
8928
|
readonly inputReadonly: BooleanConstructor;
|
|
@@ -8906,6 +8993,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8906
8993
|
calendarLeftPaddingYear: string;
|
|
8907
8994
|
calendarLeftPaddingQuarter: string;
|
|
8908
8995
|
calendarLeftPaddingMonthrange: string;
|
|
8996
|
+
calendarLeftPaddingQuarterrange: string;
|
|
8997
|
+
calendarLeftPaddingYearrange: string;
|
|
8909
8998
|
calendarRightPaddingDate: string;
|
|
8910
8999
|
calendarRightPaddingDatetime: string;
|
|
8911
9000
|
calendarRightPaddingDaterange: string;
|
|
@@ -8914,6 +9003,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8914
9003
|
calendarRightPaddingYear: string;
|
|
8915
9004
|
calendarRightPaddingQuarter: string;
|
|
8916
9005
|
calendarRightPaddingMonthrange: string;
|
|
9006
|
+
calendarRightPaddingQuarterrange: string;
|
|
9007
|
+
calendarRightPaddingYearrange: string;
|
|
8917
9008
|
}, {
|
|
8918
9009
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
8919
9010
|
countTextColor: string;
|
|
@@ -9520,6 +9611,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9520
9611
|
calendarLeftPaddingYear: string;
|
|
9521
9612
|
calendarLeftPaddingQuarter: string;
|
|
9522
9613
|
calendarLeftPaddingMonthrange: string;
|
|
9614
|
+
calendarLeftPaddingQuarterrange: string;
|
|
9615
|
+
calendarLeftPaddingYearrange: string;
|
|
9523
9616
|
calendarRightPaddingDate: string;
|
|
9524
9617
|
calendarRightPaddingDatetime: string;
|
|
9525
9618
|
calendarRightPaddingDaterange: string;
|
|
@@ -9528,6 +9621,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9528
9621
|
calendarRightPaddingYear: string;
|
|
9529
9622
|
calendarRightPaddingQuarter: string;
|
|
9530
9623
|
calendarRightPaddingMonthrange: string;
|
|
9624
|
+
calendarRightPaddingQuarterrange: string;
|
|
9625
|
+
calendarRightPaddingYearrange: string;
|
|
9531
9626
|
}, {
|
|
9532
9627
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
9533
9628
|
countTextColor: string;
|
|
@@ -10134,6 +10229,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10134
10229
|
calendarLeftPaddingYear: string;
|
|
10135
10230
|
calendarLeftPaddingQuarter: string;
|
|
10136
10231
|
calendarLeftPaddingMonthrange: string;
|
|
10232
|
+
calendarLeftPaddingQuarterrange: string;
|
|
10233
|
+
calendarLeftPaddingYearrange: string;
|
|
10137
10234
|
calendarRightPaddingDate: string;
|
|
10138
10235
|
calendarRightPaddingDatetime: string;
|
|
10139
10236
|
calendarRightPaddingDaterange: string;
|
|
@@ -10142,6 +10239,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10142
10239
|
calendarRightPaddingYear: string;
|
|
10143
10240
|
calendarRightPaddingQuarter: string;
|
|
10144
10241
|
calendarRightPaddingMonthrange: string;
|
|
10242
|
+
calendarRightPaddingQuarterrange: string;
|
|
10243
|
+
calendarRightPaddingYearrange: string;
|
|
10145
10244
|
}, {
|
|
10146
10245
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
10147
10246
|
countTextColor: string;
|
|
@@ -10713,8 +10812,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10713
10812
|
contentRef: HTMLElement | null;
|
|
10714
10813
|
containerScrollTop: number;
|
|
10715
10814
|
syncUnifiedContainer: () => void;
|
|
10716
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10717
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10815
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10816
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10718
10817
|
sync: () => void;
|
|
10719
10818
|
handleMouseEnterWrapper: () => void;
|
|
10720
10819
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10725,8 +10824,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10725
10824
|
contentRef: HTMLElement | null;
|
|
10726
10825
|
containerScrollTop: number;
|
|
10727
10826
|
syncUnifiedContainer: () => void;
|
|
10728
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10729
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10827
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10828
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10730
10829
|
sync: () => void;
|
|
10731
10830
|
handleMouseEnterWrapper: () => void;
|
|
10732
10831
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10742,8 +10841,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10742
10841
|
contentRef: HTMLElement | null;
|
|
10743
10842
|
containerScrollTop: number;
|
|
10744
10843
|
syncUnifiedContainer: () => void;
|
|
10745
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10746
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10844
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10845
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10747
10846
|
sync: () => void;
|
|
10748
10847
|
handleMouseEnterWrapper: () => void;
|
|
10749
10848
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10754,8 +10853,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10754
10853
|
contentRef: HTMLElement | null;
|
|
10755
10854
|
containerScrollTop: number;
|
|
10756
10855
|
syncUnifiedContainer: () => void;
|
|
10757
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10758
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10856
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10857
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10759
10858
|
sync: () => void;
|
|
10760
10859
|
handleMouseEnterWrapper: () => void;
|
|
10761
10860
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10766,8 +10865,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10766
10865
|
contentRef: HTMLElement | null;
|
|
10767
10866
|
containerScrollTop: number;
|
|
10768
10867
|
syncUnifiedContainer: () => void;
|
|
10769
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10770
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10868
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10869
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10771
10870
|
sync: () => void;
|
|
10772
10871
|
handleMouseEnterWrapper: () => void;
|
|
10773
10872
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10778,8 +10877,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10778
10877
|
contentRef: HTMLElement | null;
|
|
10779
10878
|
containerScrollTop: number;
|
|
10780
10879
|
syncUnifiedContainer: () => void;
|
|
10781
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10782
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10880
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10881
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10783
10882
|
sync: () => void;
|
|
10784
10883
|
handleMouseEnterWrapper: () => void;
|
|
10785
10884
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10822,8 +10921,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10822
10921
|
isValueInvalid: import("vue").ComputedRef<boolean>;
|
|
10823
10922
|
isStartValueInvalid: import("vue").ComputedRef<boolean>;
|
|
10824
10923
|
isEndValueInvalid: import("vue").ComputedRef<boolean>;
|
|
10924
|
+
handleInputKeydown: (e: KeyboardEvent) => void;
|
|
10825
10925
|
handleClickOutside: (e: MouseEvent) => void;
|
|
10826
|
-
|
|
10926
|
+
handleKeydown: (e: KeyboardEvent) => void;
|
|
10827
10927
|
handleClear: () => void;
|
|
10828
10928
|
handlePanelClear: () => void;
|
|
10829
10929
|
handleTriggerClick: (e: MouseEvent) => void;
|
|
@@ -10878,10 +10978,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10878
10978
|
opacity5: string;
|
|
10879
10979
|
dividerColor: string;
|
|
10880
10980
|
borderColor: string;
|
|
10881
|
-
|
|
10981
|
+
closeIconColor: string;
|
|
10982
|
+
closeIconColorHover: string;
|
|
10983
|
+
closeIconColorPressed: string;
|
|
10882
10984
|
closeColorHover: string;
|
|
10883
10985
|
closeColorPressed: string;
|
|
10884
|
-
closeColorDisabled: string;
|
|
10885
10986
|
clearColor: string;
|
|
10886
10987
|
clearColorHover: string;
|
|
10887
10988
|
clearColorPressed: string;
|
|
@@ -10992,6 +11093,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10992
11093
|
calendarLeftPaddingYear: string;
|
|
10993
11094
|
calendarLeftPaddingQuarter: string;
|
|
10994
11095
|
calendarLeftPaddingMonthrange: string;
|
|
11096
|
+
calendarLeftPaddingQuarterrange: string;
|
|
11097
|
+
calendarLeftPaddingYearrange: string;
|
|
10995
11098
|
calendarRightPaddingDate: string;
|
|
10996
11099
|
calendarRightPaddingDatetime: string;
|
|
10997
11100
|
calendarRightPaddingDaterange: string;
|
|
@@ -11000,6 +11103,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11000
11103
|
calendarRightPaddingYear: string;
|
|
11001
11104
|
calendarRightPaddingQuarter: string;
|
|
11002
11105
|
calendarRightPaddingMonthrange: string;
|
|
11106
|
+
calendarRightPaddingQuarterrange: string;
|
|
11107
|
+
calendarRightPaddingYearrange: string;
|
|
11003
11108
|
};
|
|
11004
11109
|
peers: {
|
|
11005
11110
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
@@ -11949,6 +12054,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11949
12054
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
11950
12055
|
readonly default: undefined;
|
|
11951
12056
|
};
|
|
12057
|
+
readonly panel: BooleanConstructor;
|
|
11952
12058
|
readonly ranges: import("vue").PropType<Record<string, [number, number]>>;
|
|
11953
12059
|
readonly firstDayOfWeek: import("vue").PropType<import("naive-ui/es/date-picker/src/interface").FirstDayOfWeek>;
|
|
11954
12060
|
readonly inputReadonly: BooleanConstructor;
|
|
@@ -12019,6 +12125,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12019
12125
|
calendarLeftPaddingYear: string;
|
|
12020
12126
|
calendarLeftPaddingQuarter: string;
|
|
12021
12127
|
calendarLeftPaddingMonthrange: string;
|
|
12128
|
+
calendarLeftPaddingQuarterrange: string;
|
|
12129
|
+
calendarLeftPaddingYearrange: string;
|
|
12022
12130
|
calendarRightPaddingDate: string;
|
|
12023
12131
|
calendarRightPaddingDatetime: string;
|
|
12024
12132
|
calendarRightPaddingDaterange: string;
|
|
@@ -12027,6 +12135,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12027
12135
|
calendarRightPaddingYear: string;
|
|
12028
12136
|
calendarRightPaddingQuarter: string;
|
|
12029
12137
|
calendarRightPaddingMonthrange: string;
|
|
12138
|
+
calendarRightPaddingQuarterrange: string;
|
|
12139
|
+
calendarRightPaddingYearrange: string;
|
|
12030
12140
|
}, {
|
|
12031
12141
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
12032
12142
|
countTextColor: string;
|
|
@@ -12633,6 +12743,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12633
12743
|
calendarLeftPaddingYear: string;
|
|
12634
12744
|
calendarLeftPaddingQuarter: string;
|
|
12635
12745
|
calendarLeftPaddingMonthrange: string;
|
|
12746
|
+
calendarLeftPaddingQuarterrange: string;
|
|
12747
|
+
calendarLeftPaddingYearrange: string;
|
|
12636
12748
|
calendarRightPaddingDate: string;
|
|
12637
12749
|
calendarRightPaddingDatetime: string;
|
|
12638
12750
|
calendarRightPaddingDaterange: string;
|
|
@@ -12641,6 +12753,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12641
12753
|
calendarRightPaddingYear: string;
|
|
12642
12754
|
calendarRightPaddingQuarter: string;
|
|
12643
12755
|
calendarRightPaddingMonthrange: string;
|
|
12756
|
+
calendarRightPaddingQuarterrange: string;
|
|
12757
|
+
calendarRightPaddingYearrange: string;
|
|
12644
12758
|
}, {
|
|
12645
12759
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
12646
12760
|
countTextColor: string;
|
|
@@ -13247,6 +13361,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13247
13361
|
calendarLeftPaddingYear: string;
|
|
13248
13362
|
calendarLeftPaddingQuarter: string;
|
|
13249
13363
|
calendarLeftPaddingMonthrange: string;
|
|
13364
|
+
calendarLeftPaddingQuarterrange: string;
|
|
13365
|
+
calendarLeftPaddingYearrange: string;
|
|
13250
13366
|
calendarRightPaddingDate: string;
|
|
13251
13367
|
calendarRightPaddingDatetime: string;
|
|
13252
13368
|
calendarRightPaddingDaterange: string;
|
|
@@ -13255,6 +13371,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13255
13371
|
calendarRightPaddingYear: string;
|
|
13256
13372
|
calendarRightPaddingQuarter: string;
|
|
13257
13373
|
calendarRightPaddingMonthrange: string;
|
|
13374
|
+
calendarRightPaddingQuarterrange: string;
|
|
13375
|
+
calendarRightPaddingYearrange: string;
|
|
13258
13376
|
}, {
|
|
13259
13377
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
13260
13378
|
countTextColor: string;
|
|
@@ -13812,17 +13930,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13812
13930
|
}, any>;
|
|
13813
13931
|
}>>>;
|
|
13814
13932
|
}>>, {
|
|
13815
|
-
type: import("naive-ui/es/date-picker/src/config").DatePickerType;
|
|
13816
|
-
show: boolean | undefined;
|
|
13817
|
-
disabled: boolean | undefined;
|
|
13818
|
-
to: string | boolean | HTMLElement;
|
|
13819
|
-
bordered: boolean | undefined;
|
|
13820
|
-
placement: import("naive-ui").PopoverPlacement;
|
|
13821
|
-
clearable: boolean;
|
|
13822
|
-
inputReadonly: boolean;
|
|
13823
|
-
|
|
13824
|
-
|
|
13825
|
-
|
|
13933
|
+
readonly type: import("naive-ui/es/date-picker/src/config").DatePickerType;
|
|
13934
|
+
readonly show: boolean | undefined;
|
|
13935
|
+
readonly disabled: boolean | undefined;
|
|
13936
|
+
readonly to: string | boolean | HTMLElement;
|
|
13937
|
+
readonly bordered: boolean | undefined;
|
|
13938
|
+
readonly placement: import("naive-ui").PopoverPlacement;
|
|
13939
|
+
readonly clearable: boolean;
|
|
13940
|
+
readonly inputReadonly: boolean;
|
|
13941
|
+
readonly panel: boolean;
|
|
13942
|
+
readonly updateValueOnClose: boolean;
|
|
13943
|
+
readonly closeOnSelect: boolean;
|
|
13944
|
+
readonly bindCalendarMonths: boolean;
|
|
13826
13945
|
}>;
|
|
13827
13946
|
NSelect: import("vue").DefineComponent<{
|
|
13828
13947
|
readonly to: {
|
|
@@ -13858,10 +13977,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13858
13977
|
};
|
|
13859
13978
|
readonly remote: BooleanConstructor;
|
|
13860
13979
|
readonly loading: BooleanConstructor;
|
|
13861
|
-
readonly filter:
|
|
13862
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
13863
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
13864
|
-
};
|
|
13980
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
13865
13981
|
readonly placement: {
|
|
13866
13982
|
readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
13867
13983
|
readonly default: "bottom-start";
|
|
@@ -13871,19 +13987,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13871
13987
|
readonly default: "trigger";
|
|
13872
13988
|
};
|
|
13873
13989
|
readonly tag: BooleanConstructor;
|
|
13874
|
-
readonly onCreate:
|
|
13875
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
13876
|
-
readonly default: (label: string) => {
|
|
13877
|
-
label: string;
|
|
13878
|
-
value: string;
|
|
13879
|
-
};
|
|
13880
|
-
};
|
|
13990
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
13881
13991
|
readonly fallbackOption: {
|
|
13882
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
13883
|
-
readonly default:
|
|
13884
|
-
label: string;
|
|
13885
|
-
value: string | number;
|
|
13886
|
-
};
|
|
13992
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
13993
|
+
readonly default: undefined;
|
|
13887
13994
|
};
|
|
13888
13995
|
readonly show: {
|
|
13889
13996
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -13902,6 +14009,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13902
14009
|
readonly type: BooleanConstructor;
|
|
13903
14010
|
readonly default: true;
|
|
13904
14011
|
};
|
|
14012
|
+
readonly labelField: {
|
|
14013
|
+
readonly type: StringConstructor;
|
|
14014
|
+
readonly default: "label";
|
|
14015
|
+
};
|
|
14016
|
+
readonly valueField: {
|
|
14017
|
+
readonly type: StringConstructor;
|
|
14018
|
+
readonly default: "value";
|
|
14019
|
+
};
|
|
14020
|
+
readonly childrenField: {
|
|
14021
|
+
readonly type: StringConstructor;
|
|
14022
|
+
readonly default: "children";
|
|
14023
|
+
};
|
|
13905
14024
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
13906
14025
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
13907
14026
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -13924,6 +14043,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13924
14043
|
readonly default: true;
|
|
13925
14044
|
};
|
|
13926
14045
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
14046
|
+
readonly internalShowCheckmark: {
|
|
14047
|
+
readonly type: BooleanConstructor;
|
|
14048
|
+
readonly default: true;
|
|
14049
|
+
};
|
|
13927
14050
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
13928
14051
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
13929
14052
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -14019,6 +14142,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14019
14142
|
optionCheckColor: string;
|
|
14020
14143
|
optionColorPending: string;
|
|
14021
14144
|
optionColorActive: string;
|
|
14145
|
+
optionColorActivePending: string;
|
|
14022
14146
|
actionTextColor: string;
|
|
14023
14147
|
loadingColor: string;
|
|
14024
14148
|
height: string;
|
|
@@ -14144,6 +14268,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14144
14268
|
optionCheckColor: string;
|
|
14145
14269
|
optionColorPending: string;
|
|
14146
14270
|
optionColorActive: string;
|
|
14271
|
+
optionColorActivePending: string;
|
|
14147
14272
|
actionTextColor: string;
|
|
14148
14273
|
loadingColor: string;
|
|
14149
14274
|
height: string;
|
|
@@ -14269,6 +14394,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14269
14394
|
optionCheckColor: string;
|
|
14270
14395
|
optionColorPending: string;
|
|
14271
14396
|
optionColorActive: string;
|
|
14397
|
+
optionColorActivePending: string;
|
|
14272
14398
|
actionTextColor: string;
|
|
14273
14399
|
loadingColor: string;
|
|
14274
14400
|
height: string;
|
|
@@ -14398,10 +14524,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14398
14524
|
opacity5: string;
|
|
14399
14525
|
dividerColor: string;
|
|
14400
14526
|
borderColor: string;
|
|
14401
|
-
|
|
14527
|
+
closeIconColor: string;
|
|
14528
|
+
closeIconColorHover: string;
|
|
14529
|
+
closeIconColorPressed: string;
|
|
14402
14530
|
closeColorHover: string;
|
|
14403
14531
|
closeColorPressed: string;
|
|
14404
|
-
closeColorDisabled: string;
|
|
14405
14532
|
clearColor: string;
|
|
14406
14533
|
clearColorHover: string;
|
|
14407
14534
|
clearColorPressed: string;
|
|
@@ -14556,6 +14683,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14556
14683
|
optionCheckColor: string;
|
|
14557
14684
|
optionColorPending: string;
|
|
14558
14685
|
optionColorActive: string;
|
|
14686
|
+
optionColorActivePending: string;
|
|
14559
14687
|
actionTextColor: string;
|
|
14560
14688
|
loadingColor: string;
|
|
14561
14689
|
height: string;
|
|
@@ -14671,10 +14799,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14671
14799
|
};
|
|
14672
14800
|
readonly remote: BooleanConstructor;
|
|
14673
14801
|
readonly loading: BooleanConstructor;
|
|
14674
|
-
readonly filter:
|
|
14675
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
14676
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
14677
|
-
};
|
|
14802
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
14678
14803
|
readonly placement: {
|
|
14679
14804
|
readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
14680
14805
|
readonly default: "bottom-start";
|
|
@@ -14684,19 +14809,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14684
14809
|
readonly default: "trigger";
|
|
14685
14810
|
};
|
|
14686
14811
|
readonly tag: BooleanConstructor;
|
|
14687
|
-
readonly onCreate:
|
|
14688
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
14689
|
-
readonly default: (label: string) => {
|
|
14690
|
-
label: string;
|
|
14691
|
-
value: string;
|
|
14692
|
-
};
|
|
14693
|
-
};
|
|
14812
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
14694
14813
|
readonly fallbackOption: {
|
|
14695
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
14696
|
-
readonly default:
|
|
14697
|
-
label: string;
|
|
14698
|
-
value: string | number;
|
|
14699
|
-
};
|
|
14814
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
14815
|
+
readonly default: undefined;
|
|
14700
14816
|
};
|
|
14701
14817
|
readonly show: {
|
|
14702
14818
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -14715,6 +14831,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14715
14831
|
readonly type: BooleanConstructor;
|
|
14716
14832
|
readonly default: true;
|
|
14717
14833
|
};
|
|
14834
|
+
readonly labelField: {
|
|
14835
|
+
readonly type: StringConstructor;
|
|
14836
|
+
readonly default: "label";
|
|
14837
|
+
};
|
|
14838
|
+
readonly valueField: {
|
|
14839
|
+
readonly type: StringConstructor;
|
|
14840
|
+
readonly default: "value";
|
|
14841
|
+
};
|
|
14842
|
+
readonly childrenField: {
|
|
14843
|
+
readonly type: StringConstructor;
|
|
14844
|
+
readonly default: "children";
|
|
14845
|
+
};
|
|
14718
14846
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
14719
14847
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
14720
14848
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -14737,6 +14865,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14737
14865
|
readonly default: true;
|
|
14738
14866
|
};
|
|
14739
14867
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
14868
|
+
readonly internalShowCheckmark: {
|
|
14869
|
+
readonly type: BooleanConstructor;
|
|
14870
|
+
readonly default: true;
|
|
14871
|
+
};
|
|
14740
14872
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
14741
14873
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
14742
14874
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -14832,6 +14964,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14832
14964
|
optionCheckColor: string;
|
|
14833
14965
|
optionColorPending: string;
|
|
14834
14966
|
optionColorActive: string;
|
|
14967
|
+
optionColorActivePending: string;
|
|
14835
14968
|
actionTextColor: string;
|
|
14836
14969
|
loadingColor: string;
|
|
14837
14970
|
height: string;
|
|
@@ -14957,6 +15090,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14957
15090
|
optionCheckColor: string;
|
|
14958
15091
|
optionColorPending: string;
|
|
14959
15092
|
optionColorActive: string;
|
|
15093
|
+
optionColorActivePending: string;
|
|
14960
15094
|
actionTextColor: string;
|
|
14961
15095
|
loadingColor: string;
|
|
14962
15096
|
height: string;
|
|
@@ -15082,6 +15216,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15082
15216
|
optionCheckColor: string;
|
|
15083
15217
|
optionColorPending: string;
|
|
15084
15218
|
optionColorActive: string;
|
|
15219
|
+
optionColorActivePending: string;
|
|
15085
15220
|
actionTextColor: string;
|
|
15086
15221
|
loadingColor: string;
|
|
15087
15222
|
height: string;
|
|
@@ -15115,29 +15250,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15115
15250
|
}>;
|
|
15116
15251
|
}>>>;
|
|
15117
15252
|
}>>, {
|
|
15118
|
-
tag: boolean;
|
|
15119
|
-
|
|
15120
|
-
|
|
15121
|
-
|
|
15122
|
-
|
|
15123
|
-
|
|
15124
|
-
|
|
15125
|
-
|
|
15126
|
-
|
|
15127
|
-
|
|
15128
|
-
virtualScroll: boolean;
|
|
15129
|
-
|
|
15130
|
-
|
|
15131
|
-
|
|
15132
|
-
|
|
15133
|
-
|
|
15134
|
-
|
|
15135
|
-
|
|
15136
|
-
|
|
15137
|
-
|
|
15138
|
-
|
|
15139
|
-
|
|
15140
|
-
|
|
15253
|
+
readonly tag: boolean;
|
|
15254
|
+
readonly show: boolean | undefined;
|
|
15255
|
+
readonly multiple: boolean;
|
|
15256
|
+
readonly disabled: boolean | undefined;
|
|
15257
|
+
readonly to: string | boolean | HTMLElement;
|
|
15258
|
+
readonly options: import("naive-ui/es/select/src/interface").SelectMixedOption[];
|
|
15259
|
+
readonly loading: boolean;
|
|
15260
|
+
readonly bordered: boolean | undefined;
|
|
15261
|
+
readonly placement: import("naive-ui").PopoverPlacement;
|
|
15262
|
+
readonly labelField: string;
|
|
15263
|
+
readonly virtualScroll: boolean;
|
|
15264
|
+
readonly valueField: string;
|
|
15265
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
15266
|
+
readonly showArrow: boolean;
|
|
15267
|
+
readonly displayDirective: "show" | "if";
|
|
15268
|
+
readonly filterable: boolean;
|
|
15269
|
+
readonly clearable: boolean;
|
|
15270
|
+
readonly internalShowCheckmark: boolean;
|
|
15271
|
+
readonly clearFilterAfterSelect: boolean;
|
|
15272
|
+
readonly defaultValue: import("naive-ui/es/select/src/interface").Value | null;
|
|
15273
|
+
readonly remote: boolean;
|
|
15274
|
+
readonly widthMode: string;
|
|
15275
|
+
readonly fallbackOption: false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined;
|
|
15276
|
+
readonly consistentMenuWidth: boolean;
|
|
15277
|
+
readonly childrenField: string;
|
|
15141
15278
|
}>;
|
|
15142
15279
|
NRadio: import("vue").DefineComponent<{
|
|
15143
15280
|
name: StringConstructor;
|
|
@@ -15217,7 +15354,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15217
15354
|
colorDisabled: string;
|
|
15218
15355
|
textColor: string;
|
|
15219
15356
|
textColorDisabled: string;
|
|
15220
|
-
/** line 类型 */
|
|
15221
15357
|
dotColorActive: string;
|
|
15222
15358
|
dotColorDisabled: string;
|
|
15223
15359
|
buttonBorderColor: string;
|
|
@@ -15562,9 +15698,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15562
15698
|
}, import("naive-ui/es/_mixins/use-form-item").UseFormItem<"small" | "medium" | "large"> & import("naive-ui").CheckboxInst & {
|
|
15563
15699
|
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
15564
15700
|
selfRef: import("vue").Ref<HTMLDivElement | null>;
|
|
15565
|
-
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
15566
|
-
* 更新配置
|
|
15567
|
-
*/
|
|
15701
|
+
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
15568
15702
|
mergedDisabled: import("vue").ComputedRef<boolean>;
|
|
15569
15703
|
renderedChecked: import("vue").ComputedRef<boolean>;
|
|
15570
15704
|
mergedTheme: import("vue").ComputedRef<{
|
|
@@ -15608,10 +15742,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15608
15742
|
opacity5: string;
|
|
15609
15743
|
dividerColor: string;
|
|
15610
15744
|
borderColor: string;
|
|
15611
|
-
|
|
15745
|
+
closeIconColor: string;
|
|
15746
|
+
closeIconColorHover: string;
|
|
15747
|
+
closeIconColorPressed: string;
|
|
15612
15748
|
closeColorHover: string;
|
|
15613
15749
|
closeColorPressed: string;
|
|
15614
|
-
closeColorDisabled: string;
|
|
15615
15750
|
clearColor: string;
|
|
15616
15751
|
clearColorHover: string;
|
|
15617
15752
|
clearColorPressed: string;
|
|
@@ -15861,8 +15996,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15861
15996
|
}>>, {
|
|
15862
15997
|
disabled: boolean | undefined;
|
|
15863
15998
|
checked: string | number | boolean | undefined;
|
|
15864
|
-
focusable: boolean;
|
|
15865
15999
|
indeterminate: boolean;
|
|
16000
|
+
focusable: boolean;
|
|
15866
16001
|
defaultChecked: string | number | boolean;
|
|
15867
16002
|
checkedValue: string | number | boolean;
|
|
15868
16003
|
uncheckedValue: string | number | boolean;
|
|
@@ -15926,6 +16061,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15926
16061
|
type: BooleanConstructor;
|
|
15927
16062
|
default: undefined;
|
|
15928
16063
|
};
|
|
16064
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
15929
16065
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
15930
16066
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
15931
16067
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -16146,8 +16282,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16146
16282
|
contentRef: HTMLElement | null;
|
|
16147
16283
|
containerScrollTop: number;
|
|
16148
16284
|
syncUnifiedContainer: () => void;
|
|
16149
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
16150
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
16285
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
16286
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
16151
16287
|
sync: () => void;
|
|
16152
16288
|
handleMouseEnterWrapper: () => void;
|
|
16153
16289
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -16181,7 +16317,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16181
16317
|
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
16182
16318
|
handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
|
|
16183
16319
|
handleInputBlur: (e: FocusEvent) => void;
|
|
16184
|
-
handleInputFocus: (e: FocusEvent) => void;
|
|
16320
|
+
handleInputFocus: (e: FocusEvent, index: number) => void;
|
|
16185
16321
|
handleWrapperBlur: (e: FocusEvent) => void;
|
|
16186
16322
|
handleWrapperFocus: (e: FocusEvent) => void;
|
|
16187
16323
|
handleMouseEnter: () => void;
|
|
@@ -16192,7 +16328,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16192
16328
|
handleClear: (e: MouseEvent) => void;
|
|
16193
16329
|
handlePasswordToggleClick: () => void;
|
|
16194
16330
|
handlePasswordToggleMousedown: (e: MouseEvent) => void;
|
|
16195
|
-
|
|
16331
|
+
handleWrapperKeydown: (e: KeyboardEvent) => void;
|
|
16196
16332
|
handleTextAreaMirrorResize: () => void;
|
|
16197
16333
|
getTextareaScrollContainer: () => HTMLTextAreaElement | null;
|
|
16198
16334
|
mergedTheme: import("vue").ComputedRef<{
|
|
@@ -16236,10 +16372,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16236
16372
|
opacity5: string;
|
|
16237
16373
|
dividerColor: string;
|
|
16238
16374
|
borderColor: string;
|
|
16239
|
-
|
|
16375
|
+
closeIconColor: string;
|
|
16376
|
+
closeIconColorHover: string;
|
|
16377
|
+
closeIconColorPressed: string;
|
|
16240
16378
|
closeColorHover: string;
|
|
16241
16379
|
closeColorPressed: string;
|
|
16242
|
-
closeColorDisabled: string;
|
|
16243
16380
|
clearColor: string;
|
|
16244
16381
|
clearColorHover: string;
|
|
16245
16382
|
clearColorPressed: string;
|
|
@@ -16480,6 +16617,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16480
16617
|
type: BooleanConstructor;
|
|
16481
16618
|
default: undefined;
|
|
16482
16619
|
};
|
|
16620
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
16483
16621
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
16484
16622
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
16485
16623
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -16849,7 +16987,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16849
16987
|
type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
16850
16988
|
default: string;
|
|
16851
16989
|
};
|
|
16852
|
-
x: NumberConstructor;
|
|
16990
|
+
x: NumberConstructor; /**
|
|
16991
|
+
* 更新配置
|
|
16992
|
+
*/
|
|
16853
16993
|
y: NumberConstructor;
|
|
16854
16994
|
arrowPointToCenter: BooleanConstructor;
|
|
16855
16995
|
disabled: BooleanConstructor;
|
|
@@ -16865,9 +17005,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16865
17005
|
};
|
|
16866
17006
|
animated: {
|
|
16867
17007
|
type: BooleanConstructor;
|
|
16868
|
-
/**
|
|
16869
|
-
* 更新配置
|
|
16870
|
-
*/
|
|
16871
17008
|
default: boolean;
|
|
16872
17009
|
};
|
|
16873
17010
|
width: {
|
|
@@ -16890,6 +17027,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16890
17027
|
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
16891
17028
|
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
16892
17029
|
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
17030
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
16893
17031
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
16894
17032
|
internalInheritedEventHandlers: {
|
|
16895
17033
|
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
@@ -17032,6 +17170,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17032
17170
|
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
17033
17171
|
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
17034
17172
|
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
17173
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
17035
17174
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
17036
17175
|
internalInheritedEventHandlers: {
|
|
17037
17176
|
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
@@ -17109,6 +17248,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17109
17248
|
arrowPointToCenter: boolean;
|
|
17110
17249
|
displayDirective: "show" | "if";
|
|
17111
17250
|
keepAliveOnHover: boolean;
|
|
17251
|
+
internalDeactivateImmediately: boolean;
|
|
17112
17252
|
animated: boolean;
|
|
17113
17253
|
internalTrapFocus: boolean;
|
|
17114
17254
|
defaultShow: boolean;
|
|
@@ -18490,26 +18630,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18490
18630
|
rippleDuration: string;
|
|
18491
18631
|
}, any>>>;
|
|
18492
18632
|
}>>, {
|
|
18493
|
-
type: import("naive-ui/es/button/src/interface").Type;
|
|
18494
|
-
tag: keyof HTMLElementTagNameMap;
|
|
18495
|
-
block: boolean;
|
|
18496
|
-
round: boolean;
|
|
18497
|
-
dashed: boolean;
|
|
18498
|
-
text: boolean;
|
|
18499
|
-
circle: boolean;
|
|
18500
|
-
disabled: boolean;
|
|
18501
|
-
focusable: boolean;
|
|
18502
|
-
strong: boolean;
|
|
18503
|
-
loading: boolean;
|
|
18504
|
-
bordered: boolean;
|
|
18505
|
-
tertiary: boolean;
|
|
18506
|
-
ghost: boolean;
|
|
18507
|
-
keyboard: boolean;
|
|
18508
|
-
secondary: boolean;
|
|
18509
|
-
quaternary: boolean;
|
|
18510
|
-
iconPlacement: "left" | "right";
|
|
18511
|
-
attrType: "button" | "reset" | "submit";
|
|
18512
|
-
nativeFocusBehavior: boolean;
|
|
18633
|
+
readonly type: import("naive-ui/es/button/src/interface").Type;
|
|
18634
|
+
readonly tag: keyof HTMLElementTagNameMap;
|
|
18635
|
+
readonly block: boolean;
|
|
18636
|
+
readonly round: boolean;
|
|
18637
|
+
readonly dashed: boolean;
|
|
18638
|
+
readonly text: boolean;
|
|
18639
|
+
readonly circle: boolean;
|
|
18640
|
+
readonly disabled: boolean;
|
|
18641
|
+
readonly focusable: boolean;
|
|
18642
|
+
readonly strong: boolean;
|
|
18643
|
+
readonly loading: boolean;
|
|
18644
|
+
readonly bordered: boolean;
|
|
18645
|
+
readonly tertiary: boolean;
|
|
18646
|
+
readonly ghost: boolean;
|
|
18647
|
+
readonly keyboard: boolean;
|
|
18648
|
+
readonly secondary: boolean;
|
|
18649
|
+
readonly quaternary: boolean;
|
|
18650
|
+
readonly iconPlacement: "left" | "right";
|
|
18651
|
+
readonly attrType: "button" | "reset" | "submit";
|
|
18652
|
+
readonly nativeFocusBehavior: boolean;
|
|
18513
18653
|
}>;
|
|
18514
18654
|
NSelect: import("vue").DefineComponent<{
|
|
18515
18655
|
readonly to: {
|
|
@@ -18545,10 +18685,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18545
18685
|
};
|
|
18546
18686
|
readonly remote: BooleanConstructor;
|
|
18547
18687
|
readonly loading: BooleanConstructor;
|
|
18548
|
-
readonly filter:
|
|
18549
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
18550
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
18551
|
-
};
|
|
18688
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
18552
18689
|
readonly placement: {
|
|
18553
18690
|
readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
18554
18691
|
readonly default: "bottom-start";
|
|
@@ -18558,19 +18695,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18558
18695
|
readonly default: "trigger";
|
|
18559
18696
|
};
|
|
18560
18697
|
readonly tag: BooleanConstructor;
|
|
18561
|
-
readonly onCreate:
|
|
18562
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
18563
|
-
readonly default: (label: string) => {
|
|
18564
|
-
label: string;
|
|
18565
|
-
value: string;
|
|
18566
|
-
};
|
|
18567
|
-
};
|
|
18698
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
18568
18699
|
readonly fallbackOption: {
|
|
18569
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
18570
|
-
readonly default:
|
|
18571
|
-
label: string;
|
|
18572
|
-
value: string | number;
|
|
18573
|
-
};
|
|
18700
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
18701
|
+
readonly default: undefined;
|
|
18574
18702
|
};
|
|
18575
18703
|
readonly show: {
|
|
18576
18704
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -18589,6 +18717,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18589
18717
|
readonly type: BooleanConstructor;
|
|
18590
18718
|
readonly default: true;
|
|
18591
18719
|
};
|
|
18720
|
+
readonly labelField: {
|
|
18721
|
+
readonly type: StringConstructor;
|
|
18722
|
+
readonly default: "label";
|
|
18723
|
+
};
|
|
18724
|
+
readonly valueField: {
|
|
18725
|
+
readonly type: StringConstructor;
|
|
18726
|
+
readonly default: "value";
|
|
18727
|
+
};
|
|
18728
|
+
readonly childrenField: {
|
|
18729
|
+
readonly type: StringConstructor;
|
|
18730
|
+
readonly default: "children";
|
|
18731
|
+
};
|
|
18592
18732
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
18593
18733
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
18594
18734
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -18611,6 +18751,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18611
18751
|
readonly default: true;
|
|
18612
18752
|
};
|
|
18613
18753
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
18754
|
+
readonly internalShowCheckmark: {
|
|
18755
|
+
readonly type: BooleanConstructor;
|
|
18756
|
+
readonly default: true;
|
|
18757
|
+
};
|
|
18614
18758
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
18615
18759
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
18616
18760
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -18706,6 +18850,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18706
18850
|
optionCheckColor: string;
|
|
18707
18851
|
optionColorPending: string;
|
|
18708
18852
|
optionColorActive: string;
|
|
18853
|
+
optionColorActivePending: string;
|
|
18709
18854
|
actionTextColor: string;
|
|
18710
18855
|
loadingColor: string;
|
|
18711
18856
|
height: string;
|
|
@@ -18831,6 +18976,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18831
18976
|
optionCheckColor: string;
|
|
18832
18977
|
optionColorPending: string;
|
|
18833
18978
|
optionColorActive: string;
|
|
18979
|
+
optionColorActivePending: string;
|
|
18834
18980
|
actionTextColor: string;
|
|
18835
18981
|
loadingColor: string;
|
|
18836
18982
|
height: string;
|
|
@@ -18956,6 +19102,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18956
19102
|
optionCheckColor: string;
|
|
18957
19103
|
optionColorPending: string;
|
|
18958
19104
|
optionColorActive: string;
|
|
19105
|
+
optionColorActivePending: string;
|
|
18959
19106
|
actionTextColor: string;
|
|
18960
19107
|
loadingColor: string;
|
|
18961
19108
|
height: string;
|
|
@@ -19085,10 +19232,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19085
19232
|
opacity5: string;
|
|
19086
19233
|
dividerColor: string;
|
|
19087
19234
|
borderColor: string;
|
|
19088
|
-
|
|
19235
|
+
closeIconColor: string;
|
|
19236
|
+
closeIconColorHover: string;
|
|
19237
|
+
closeIconColorPressed: string;
|
|
19089
19238
|
closeColorHover: string;
|
|
19090
19239
|
closeColorPressed: string;
|
|
19091
|
-
closeColorDisabled: string;
|
|
19092
19240
|
clearColor: string;
|
|
19093
19241
|
clearColorHover: string;
|
|
19094
19242
|
clearColorPressed: string;
|
|
@@ -19243,6 +19391,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19243
19391
|
optionCheckColor: string;
|
|
19244
19392
|
optionColorPending: string;
|
|
19245
19393
|
optionColorActive: string;
|
|
19394
|
+
optionColorActivePending: string;
|
|
19246
19395
|
actionTextColor: string;
|
|
19247
19396
|
loadingColor: string;
|
|
19248
19397
|
height: string;
|
|
@@ -19358,10 +19507,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19358
19507
|
};
|
|
19359
19508
|
readonly remote: BooleanConstructor;
|
|
19360
19509
|
readonly loading: BooleanConstructor;
|
|
19361
|
-
readonly filter:
|
|
19362
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
19363
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
19364
|
-
};
|
|
19510
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
19365
19511
|
readonly placement: {
|
|
19366
19512
|
readonly type: import("vue").PropType<import("naive-ui").PopoverPlacement>;
|
|
19367
19513
|
readonly default: "bottom-start";
|
|
@@ -19371,19 +19517,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19371
19517
|
readonly default: "trigger";
|
|
19372
19518
|
};
|
|
19373
19519
|
readonly tag: BooleanConstructor;
|
|
19374
|
-
readonly onCreate:
|
|
19375
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
19376
|
-
readonly default: (label: string) => {
|
|
19377
|
-
label: string;
|
|
19378
|
-
value: string;
|
|
19379
|
-
};
|
|
19380
|
-
};
|
|
19520
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
19381
19521
|
readonly fallbackOption: {
|
|
19382
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
19383
|
-
readonly default:
|
|
19384
|
-
label: string;
|
|
19385
|
-
value: string | number;
|
|
19386
|
-
};
|
|
19522
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
19523
|
+
readonly default: undefined;
|
|
19387
19524
|
};
|
|
19388
19525
|
readonly show: {
|
|
19389
19526
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -19402,6 +19539,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19402
19539
|
readonly type: BooleanConstructor;
|
|
19403
19540
|
readonly default: true;
|
|
19404
19541
|
};
|
|
19542
|
+
readonly labelField: {
|
|
19543
|
+
readonly type: StringConstructor;
|
|
19544
|
+
readonly default: "label";
|
|
19545
|
+
};
|
|
19546
|
+
readonly valueField: {
|
|
19547
|
+
readonly type: StringConstructor;
|
|
19548
|
+
readonly default: "value";
|
|
19549
|
+
};
|
|
19550
|
+
readonly childrenField: {
|
|
19551
|
+
readonly type: StringConstructor;
|
|
19552
|
+
readonly default: "children";
|
|
19553
|
+
};
|
|
19405
19554
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
19406
19555
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
19407
19556
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -19424,6 +19573,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19424
19573
|
readonly default: true;
|
|
19425
19574
|
};
|
|
19426
19575
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
19576
|
+
readonly internalShowCheckmark: {
|
|
19577
|
+
readonly type: BooleanConstructor;
|
|
19578
|
+
readonly default: true;
|
|
19579
|
+
};
|
|
19427
19580
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
19428
19581
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
19429
19582
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -19519,6 +19672,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19519
19672
|
optionCheckColor: string;
|
|
19520
19673
|
optionColorPending: string;
|
|
19521
19674
|
optionColorActive: string;
|
|
19675
|
+
optionColorActivePending: string;
|
|
19522
19676
|
actionTextColor: string;
|
|
19523
19677
|
loadingColor: string;
|
|
19524
19678
|
height: string;
|
|
@@ -19644,6 +19798,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19644
19798
|
optionCheckColor: string;
|
|
19645
19799
|
optionColorPending: string;
|
|
19646
19800
|
optionColorActive: string;
|
|
19801
|
+
optionColorActivePending: string;
|
|
19647
19802
|
actionTextColor: string;
|
|
19648
19803
|
loadingColor: string;
|
|
19649
19804
|
height: string;
|
|
@@ -19769,6 +19924,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19769
19924
|
optionCheckColor: string;
|
|
19770
19925
|
optionColorPending: string;
|
|
19771
19926
|
optionColorActive: string;
|
|
19927
|
+
optionColorActivePending: string;
|
|
19772
19928
|
actionTextColor: string;
|
|
19773
19929
|
loadingColor: string;
|
|
19774
19930
|
height: string;
|
|
@@ -19802,29 +19958,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19802
19958
|
}>;
|
|
19803
19959
|
}>>>;
|
|
19804
19960
|
}>>, {
|
|
19805
|
-
tag: boolean;
|
|
19806
|
-
|
|
19807
|
-
|
|
19808
|
-
|
|
19809
|
-
|
|
19810
|
-
|
|
19811
|
-
|
|
19812
|
-
|
|
19813
|
-
|
|
19814
|
-
|
|
19815
|
-
virtualScroll: boolean;
|
|
19816
|
-
|
|
19817
|
-
|
|
19818
|
-
|
|
19819
|
-
|
|
19820
|
-
|
|
19821
|
-
|
|
19822
|
-
|
|
19823
|
-
|
|
19824
|
-
|
|
19825
|
-
|
|
19826
|
-
|
|
19827
|
-
|
|
19961
|
+
readonly tag: boolean;
|
|
19962
|
+
readonly show: boolean | undefined;
|
|
19963
|
+
readonly multiple: boolean;
|
|
19964
|
+
readonly disabled: boolean | undefined;
|
|
19965
|
+
readonly to: string | boolean | HTMLElement;
|
|
19966
|
+
readonly options: import("naive-ui/es/select/src/interface").SelectMixedOption[];
|
|
19967
|
+
readonly loading: boolean;
|
|
19968
|
+
readonly bordered: boolean | undefined;
|
|
19969
|
+
readonly placement: import("naive-ui").PopoverPlacement;
|
|
19970
|
+
readonly labelField: string;
|
|
19971
|
+
readonly virtualScroll: boolean;
|
|
19972
|
+
readonly valueField: string;
|
|
19973
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
19974
|
+
readonly showArrow: boolean;
|
|
19975
|
+
readonly displayDirective: "show" | "if";
|
|
19976
|
+
readonly filterable: boolean;
|
|
19977
|
+
readonly clearable: boolean;
|
|
19978
|
+
readonly internalShowCheckmark: boolean;
|
|
19979
|
+
readonly clearFilterAfterSelect: boolean;
|
|
19980
|
+
readonly defaultValue: import("naive-ui/es/select/src/interface").Value | null;
|
|
19981
|
+
readonly remote: boolean;
|
|
19982
|
+
readonly widthMode: string;
|
|
19983
|
+
readonly fallbackOption: false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined;
|
|
19984
|
+
readonly consistentMenuWidth: boolean;
|
|
19985
|
+
readonly childrenField: string;
|
|
19828
19986
|
}>;
|
|
19829
19987
|
NIcon: import("vue").DefineComponent<{
|
|
19830
19988
|
readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
|