cnhis-design-vue 3.1.5-beta.1 → 3.1.5-beta.10
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/CHANGELOG.md +105 -35
- package/env.d.ts +17 -1
- package/es/_virtual/_commonjsHelpers.mjs +5 -0
- package/es/_virtual/inherits.mjs +3 -0
- package/es/_virtual/inherits_browser.mjs +3 -0
- package/es/node_modules/date-fns/esm/_lib/getTimezoneOffsetInMilliseconds/index.mjs +18 -0
- package/es/node_modules/date-fns/esm/_lib/requiredArgs/index.mjs +7 -0
- package/es/node_modules/date-fns/esm/compareAsc/index.mjs +56 -0
- package/es/node_modules/date-fns/esm/differenceInCalendarDays/index.mjs +53 -0
- package/es/node_modules/date-fns/esm/differenceInCalendarMonths/index.mjs +39 -0
- package/es/node_modules/date-fns/esm/differenceInDays/index.mjs +90 -0
- package/es/node_modules/date-fns/esm/differenceInMonths/index.mjs +63 -0
- package/es/node_modules/date-fns/esm/endOfDay/index.mjs +34 -0
- package/es/node_modules/date-fns/esm/endOfMonth/index.mjs +36 -0
- package/es/node_modules/date-fns/esm/isLastDayOfMonth/index.mjs +34 -0
- package/es/node_modules/date-fns/esm/startOfDay/index.mjs +34 -0
- package/es/node_modules/date-fns/esm/toDate/index.mjs +55 -0
- package/es/node_modules/diagram-js/lib/command/CommandInterceptor.mjs +139 -0
- package/es/node_modules/diagram-js/lib/draw/BaseRenderer.mjs +88 -0
- package/es/node_modules/diagram-js/lib/features/popup-menu/PopupMenu.mjs +572 -0
- package/es/node_modules/diagram-js/lib/features/rules/RuleProvider.mjs +88 -0
- package/es/node_modules/diagram-js/lib/navigation/movecanvas/MoveCanvas.mjs +120 -0
- package/es/node_modules/diagram-js/lib/navigation/movecanvas/index.mjs +8 -0
- package/es/node_modules/diagram-js/lib/navigation/zoomscroll/ZoomScroll.mjs +227 -0
- package/es/node_modules/diagram-js/lib/navigation/zoomscroll/ZoomUtil.mjs +24 -0
- package/es/node_modules/diagram-js/lib/util/ClickTrap.mjs +23 -0
- package/es/node_modules/diagram-js/lib/util/Cursor.mjs +20 -0
- package/es/node_modules/diagram-js/lib/util/Event.mjs +22 -0
- package/es/node_modules/diagram-js/lib/util/Math.mjs +9 -0
- package/es/node_modules/diagram-js/lib/util/Mouse.mjs +30 -0
- package/es/node_modules/diagram-js/lib/util/Platform.mjs +5 -0
- package/es/node_modules/diagram-js/lib/util/PositionUtil.mjs +8 -0
- package/es/node_modules/diagram-js/lib/util/RenderUtil.mjs +25 -0
- package/es/node_modules/diagram-js/lib/util/SvgTransformUtil.mjs +48 -0
- package/es/node_modules/ids/dist/index.esm.mjs +164 -0
- package/es/node_modules/inherits/inherits.mjs +19 -0
- package/es/node_modules/inherits/inherits_browser.mjs +38 -0
- package/es/node_modules/inherits-browser/dist/index.es.mjs +3 -0
- package/es/node_modules/min-dash/dist/index.esm.mjs +169 -0
- package/es/node_modules/min-dom/dist/index.esm.mjs +588 -0
- package/es/node_modules/tiny-svg/dist/index.esm.mjs +525 -0
- package/es/packages/big-table/index.d.ts +11 -6
- package/es/packages/big-table/index.mjs +1 -1
- package/es/packages/big-table/index2.mjs +17 -1
- package/es/packages/big-table/src/BigTable.mjs +2 -1
- package/es/packages/big-table/src/BigTable.vue.d.ts +12 -9
- package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.mjs +2341 -1
- package/es/packages/big-table/src/BigTable2.mjs +4 -1
- package/es/packages/big-table/src/bigTableEmits.mjs +1 -1
- package/es/packages/big-table/src/bigTableEmits2.mjs +49 -1
- package/es/packages/big-table/src/bigTableProps.mjs +1 -1
- package/es/packages/big-table/src/bigTableProps2.mjs +116 -1
- package/es/packages/big-table/src/bigTableState.d.ts +5 -2
- package/es/packages/big-table/src/bigTableState.mjs +1 -1
- package/es/packages/big-table/src/bigTableState2.mjs +52 -1
- package/es/packages/big-table/src/components/NoData.mjs +2 -1
- package/es/packages/big-table/src/components/NoData.vue_vue_type_script_setup_true_lang.mjs +72 -1
- package/es/packages/big-table/src/components/NoData2.mjs +4 -1
- package/es/packages/big-table/src/components/edit-form/edit-date.mjs +1 -1
- package/es/packages/big-table/src/components/edit-form/edit-date2.mjs +114 -1
- package/es/packages/big-table/src/components/edit-form/edit-input.mjs +1 -1
- package/es/packages/big-table/src/components/edit-form/edit-input2.mjs +54 -1
- package/es/packages/big-table/src/components/edit-form/edit-select-table.d.ts +1 -1
- package/es/packages/big-table/src/components/edit-form/edit-select-table.mjs +1 -1
- package/es/packages/big-table/src/components/edit-form/edit-select-table2.mjs +148 -1
- package/es/packages/big-table/src/components/edit-form/edit-select.mjs +1 -1
- package/es/packages/big-table/src/components/edit-form/edit-select2.mjs +89 -1
- package/es/packages/big-table/src/hooks/useBatchEditing.mjs +1 -1
- package/es/packages/big-table/src/hooks/useBatchEditing2.mjs +289 -1
- package/es/packages/big-table/src/hooks/useEdit.mjs +1 -1
- package/es/packages/big-table/src/hooks/useEdit2.mjs +115 -1
- package/es/packages/big-table/src/hooks/useEvent.mjs +1 -1
- package/es/packages/big-table/src/hooks/useEvent2.mjs +70 -1
- package/es/packages/big-table/src/hooks/useFormat.d.ts +0 -1
- package/es/packages/big-table/src/hooks/useFormat.mjs +1 -1
- package/es/packages/big-table/src/hooks/useFormat2.mjs +484 -1
- package/es/packages/big-table/src/hooks/useNestTable.mjs +1 -1
- package/es/packages/big-table/src/hooks/useNestTable2.mjs +85 -1
- package/es/packages/big-table/src/hooks/useTableParse.mjs +1 -1
- package/es/packages/big-table/src/hooks/useTableParse2.mjs +135 -1
- package/es/packages/big-table/src/utils.mjs +1 -1
- package/es/packages/big-table/src/utils2.mjs +607 -1
- package/es/packages/bpmn-workflow/index.d.ts +74 -0
- package/es/packages/bpmn-workflow/index.mjs +1 -0
- package/es/packages/bpmn-workflow/index2.mjs +11 -0
- package/es/packages/bpmn-workflow/src/BpmnWorkflow.d.mjs +1 -0
- package/es/packages/bpmn-workflow/src/BpmnWorkflow.mjs +2 -0
- 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 +252 -0
- package/es/packages/bpmn-workflow/src/BpmnWorkflow2.mjs +4 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.d.ts +75 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer2.mjs +1427 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.d.ts +24 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider2.mjs +373 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.d.ts +19 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette2.mjs +141 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.d.ts +70 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap2.mjs +99 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.d.ts +21 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer2.mjs +119 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.d.ts +12 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules2.mjs +40 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.d.ts +16 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index2.mjs +25 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/index.d.ts +6 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/index.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customModeler/index2.mjs +12 -0
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.d.ts +5 -0
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu2.mjs +47 -0
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.d.ts +12 -0
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer2.mjs +14 -0
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll.d.ts +5 -0
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll2.mjs +10 -0
- package/es/packages/bpmn-workflow/src/custom/customRules/no-task.d.ts +4 -0
- package/es/packages/bpmn-workflow/src/custom/customRules/no-task.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customRules/no-task2.mjs +16 -0
- package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate.d.ts +1 -0
- package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate2.mjs +15 -0
- package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.d.ts +226 -0
- package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.mjs +1 -0
- package/es/packages/bpmn-workflow/src/custom/customTranslate/zh2.mjs +227 -0
- package/es/packages/bpmn-workflow/style/index.css +29 -0
- package/es/packages/bpmn-workflow/style/index.less +29 -0
- package/es/packages/bpmn-workflow/types/BpmnViewer.d.mjs +1 -0
- package/es/packages/bpmn-workflow/types/ModelingModule.d.mjs +1 -0
- package/es/packages/bpmn-workflow/types/MoveCanvasModule.d.mjs +1 -0
- package/es/packages/button-print/index.mjs +1 -1
- package/es/packages/button-print/index2.mjs +11 -1
- package/es/packages/button-print/src/ButtonPrint.mjs +2 -1
- package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.mjs +453 -1
- package/es/packages/button-print/src/ButtonPrint2.mjs +4 -1
- package/es/packages/button-print/src/components/IdentityVerification.mjs +2 -1
- package/es/packages/button-print/src/components/IdentityVerification.vue_vue_type_script_setup_true_lang.mjs +128 -1
- package/es/packages/button-print/src/components/IdentityVerification2.mjs +4 -1
- package/es/packages/button-print/src/utils/print.es.min.mjs +1 -1
- package/es/packages/button-print/src/utils/print.es.min2.mjs +2080 -1
- package/es/packages/chunk-upload/index.mjs +1 -1
- package/es/packages/chunk-upload/index2.mjs +16 -1
- package/es/packages/chunk-upload/src/chunk-upload-new.mjs +2 -1
- package/es/packages/chunk-upload/src/chunk-upload-new.vue_vue_type_script_setup_true_lang.mjs +466 -1
- package/es/packages/chunk-upload/src/chunk-upload-new2.mjs +4 -1
- package/es/packages/chunk-upload/src/hooks/upload-computed.mjs +1 -1
- package/es/packages/chunk-upload/src/hooks/upload-computed2.mjs +68 -1
- package/es/packages/chunk-upload/src/hooks/upload-data.mjs +1 -1
- package/es/packages/chunk-upload/src/hooks/upload-data2.mjs +93 -1
- package/es/packages/chunk-upload/src/hooks/vod-computed.mjs +1 -1
- package/es/packages/chunk-upload/src/hooks/vod-computed2.mjs +79 -1
- package/es/packages/chunk-upload/src/hooks/vod-data.mjs +1 -1
- package/es/packages/chunk-upload/src/hooks/vod-data2.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/index2.mjs +3 -1
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.mjs +2 -1
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue_vue_type_script_setup_true_lang.mjs +326 -1
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload2.mjs +4 -1
- package/es/packages/chunk-upload/src/vod-upload-modal.mjs +1 -1
- package/es/packages/chunk-upload/src/vod-upload-modal2.mjs +95 -1
- package/es/packages/drag-layout/index.mjs +1 -1
- package/es/packages/drag-layout/index2.mjs +13 -1
- package/es/packages/drag-layout/src/DragFormLeftItem.mjs +2 -1
- package/es/packages/drag-layout/src/DragFormLeftItem.vue_vue_type_script_setup_true_lang.mjs +122 -1
- package/es/packages/drag-layout/src/DragFormLeftItem2.mjs +4 -1
- package/es/packages/drag-layout/src/DragFormRightItem.mjs +2 -1
- package/es/packages/drag-layout/src/DragFormRightItem.vue_vue_type_script_setup_true_lang.mjs +267 -1
- package/es/packages/drag-layout/src/DragFormRightItem2.mjs +4 -1
- package/es/packages/drag-layout/src/DragLayout.mjs +2 -1
- package/es/packages/drag-layout/src/DragLayout.vue_vue_type_script_setup_true_lang.mjs +659 -1
- package/es/packages/drag-layout/src/DragLayout2.mjs +4 -1
- package/es/packages/editor/index.d.ts +30 -0
- package/es/packages/editor/index.mjs +1 -0
- package/es/packages/editor/index2.mjs +10 -0
- package/es/packages/editor/src/Editor.d.ts +30 -0
- package/es/packages/editor/src/Editor.mjs +1 -0
- package/es/packages/editor/src/Editor2.mjs +77 -0
- package/es/packages/editor/style/index.css +0 -0
- package/es/packages/editor/style/index.less +0 -0
- package/es/packages/field-set/index.d.ts +5150 -2516
- package/es/packages/field-set/index.mjs +1 -1
- package/es/packages/field-set/index2.mjs +11 -1
- package/es/packages/field-set/src/FieldSet.mjs +2 -1
- package/es/packages/field-set/src/FieldSet.vue_vue_type_script_setup_true_lang.mjs +330 -1
- package/es/packages/field-set/src/FieldSet2.mjs +4 -1
- package/es/packages/field-set/src/Index.mjs +2 -0
- package/es/packages/field-set/src/Index.vue_vue_type_script_setup_true_lang.mjs +25 -0
- package/es/packages/field-set/src/Index2.mjs +4 -0
- package/es/packages/field-set/src/NewFieldSet.mjs +2 -0
- 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 +299 -0
- package/es/packages/field-set/src/NewFieldSet2.mjs +4 -0
- package/es/packages/field-set/src/index.vue_vue_type_script_setup_true_lang2.mjs +25 -0
- package/es/packages/field-set/src/index3.mjs +4 -0
- package/es/packages/field-set/style/index.css +30 -44
- package/es/packages/field-set/style/index.less +18 -33
- package/es/packages/form-render/index.d.ts +402 -0
- package/es/packages/form-render/index.mjs +10 -0
- package/es/packages/form-render/index2.mjs +15 -0
- package/es/packages/form-render/src/FormRender.mjs +2 -0
- package/es/packages/form-render/src/FormRender.vue.d.ts +402 -0
- package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.mjs +92 -0
- package/es/packages/form-render/src/FormRender2.mjs +4 -0
- package/es/packages/form-render/src/components/cascader.d.ts +40 -0
- package/es/packages/form-render/src/components/cascader.mjs +1 -0
- package/es/packages/form-render/src/components/cascader2.mjs +122 -0
- package/es/packages/form-render/src/components/checkbox.d.ts +24 -0
- package/es/packages/form-render/src/components/checkbox.mjs +1 -0
- package/es/packages/form-render/src/components/checkbox2.mjs +42 -0
- package/es/packages/form-render/src/components/collapse.d.ts +31 -0
- package/es/packages/form-render/src/components/collapse.mjs +1 -0
- package/es/packages/form-render/src/components/collapse2.mjs +54 -0
- package/es/packages/form-render/src/components/combination.d.ts +142 -0
- package/es/packages/form-render/src/components/combination.mjs +1 -0
- package/es/packages/form-render/src/components/combination2.mjs +118 -0
- package/es/packages/form-render/src/components/date.d.ts +5038 -0
- package/es/packages/form-render/src/components/date.mjs +1 -0
- package/es/packages/form-render/src/components/date2.mjs +34 -0
- package/es/packages/form-render/src/components/formItem.d.ts +294 -0
- package/es/packages/form-render/src/components/formItem.mjs +1 -0
- package/es/packages/form-render/src/components/formItem2.mjs +22 -0
- package/es/packages/form-render/src/components/index.d.ts +15 -0
- package/es/packages/form-render/src/components/index.mjs +15 -0
- package/es/packages/form-render/src/components/index2.mjs +15 -0
- package/es/packages/form-render/src/components/input.d.ts +15 -0
- package/es/packages/form-render/src/components/input.mjs +1 -0
- package/es/packages/form-render/src/components/input2.mjs +40 -0
- package/es/packages/form-render/src/components/inputGroup.d.ts +11 -0
- package/es/packages/form-render/src/components/inputGroup.mjs +1 -0
- package/es/packages/form-render/src/components/inputGroup2.mjs +8 -0
- package/es/packages/form-render/src/components/inputNumber.d.ts +2183 -0
- package/es/packages/form-render/src/components/inputNumber.mjs +1 -0
- package/es/packages/form-render/src/components/inputNumber2.mjs +7 -0
- package/es/packages/form-render/src/components/labelSelect.d.ts +1 -0
- package/es/packages/form-render/src/components/labelSelect.mjs +1 -0
- package/es/packages/form-render/src/components/labelSelect2.mjs +18 -0
- package/es/packages/form-render/src/components/radio.d.ts +24 -0
- package/es/packages/form-render/src/components/radio.mjs +1 -0
- package/es/packages/form-render/src/components/radio2.mjs +44 -0
- package/es/packages/form-render/src/components/select.d.ts +29 -0
- package/es/packages/form-render/src/components/select.mjs +1 -0
- package/es/packages/form-render/src/components/select2.mjs +97 -0
- package/es/packages/form-render/src/components/slider.d.ts +347 -0
- package/es/packages/form-render/src/components/slider.mjs +1 -0
- package/es/packages/form-render/src/components/slider2.mjs +16 -0
- package/es/packages/form-render/src/components/switch.d.ts +21 -0
- package/es/packages/form-render/src/components/switch.mjs +1 -0
- package/es/packages/form-render/src/components/switch2.mjs +48 -0
- package/es/packages/form-render/src/components/textarea.d.ts +848 -0
- package/es/packages/form-render/src/components/textarea.mjs +1 -0
- package/es/packages/form-render/src/components/textarea2.mjs +11 -0
- package/es/packages/form-render/src/constants/index.d.ts +23 -0
- package/es/packages/form-render/src/constants/index.mjs +1 -0
- package/es/packages/form-render/src/constants/index2.mjs +24 -0
- package/es/packages/form-render/src/hooks/index.d.ts +9 -0
- package/es/packages/form-render/src/hooks/index.mjs +9 -0
- package/es/packages/form-render/src/hooks/useAsyncQueue.d.ts +60 -0
- package/es/packages/form-render/src/hooks/useAsyncQueue.mjs +1 -0
- package/es/packages/form-render/src/hooks/useAsyncQueue2.mjs +138 -0
- package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +13 -0
- package/es/packages/form-render/src/hooks/useBusinessBinding.mjs +1 -0
- package/es/packages/form-render/src/hooks/useBusinessBinding2.mjs +48 -0
- package/es/packages/form-render/src/hooks/useCommonLog.d.ts +3 -0
- package/es/packages/form-render/src/hooks/useCommonLog.mjs +1 -0
- package/es/packages/form-render/src/hooks/useCommonLog2.mjs +10 -0
- package/es/packages/form-render/src/hooks/useFieldList2Schema.d.ts +64 -0
- package/es/packages/form-render/src/hooks/useFieldList2Schema.mjs +1 -0
- package/es/packages/form-render/src/hooks/useFieldList2Schema2.mjs +184 -0
- package/es/packages/form-render/src/hooks/useFieldVisitor.d.ts +4 -0
- package/es/packages/form-render/src/hooks/useFieldVisitor.mjs +1 -0
- package/es/packages/form-render/src/hooks/useFieldVisitor2.mjs +38 -0
- package/es/packages/form-render/src/hooks/useFormField.d.ts +4 -0
- package/es/packages/form-render/src/hooks/useFormField.mjs +1 -0
- package/es/packages/form-render/src/hooks/useFormField2.mjs +9 -0
- package/es/packages/form-render/src/hooks/useFormRequest.d.ts +6 -0
- package/es/packages/form-render/src/hooks/useFormRequest.mjs +1 -0
- package/es/packages/form-render/src/hooks/useFormRequest2.mjs +12 -0
- package/es/packages/form-render/src/hooks/useFormValidator.d.ts +5 -0
- package/es/packages/form-render/src/hooks/useFormValidator.mjs +1 -0
- package/es/packages/form-render/src/hooks/useFormValidator2.mjs +48 -0
- package/es/packages/form-render/src/hooks/useTypeNormalize.d.ts +4 -0
- package/es/packages/form-render/src/hooks/useTypeNormalize.mjs +1 -0
- package/es/packages/form-render/src/hooks/useTypeNormalize2.mjs +37 -0
- package/es/packages/form-render/src/types/fieldItem.d.ts +45 -0
- package/es/packages/form-render/src/types/fieldItem.mjs +1 -0
- package/es/packages/form-render/src/types/index.d.ts +26 -0
- package/es/packages/form-render/src/types/index.mjs +1 -0
- package/es/packages/form-render/src/utils/index.d.ts +10 -0
- package/es/packages/form-render/src/utils/index.mjs +1 -0
- package/es/packages/form-render/src/utils/index2.mjs +59 -0
- package/es/packages/form-render/style/index.css +84 -0
- package/es/packages/form-render/style/index.less +121 -0
- package/es/packages/form-table/index.d.ts +35926 -1
- package/es/packages/form-table/index.mjs +1 -1
- package/es/packages/form-table/index2.mjs +11 -1
- package/es/packages/form-table/src/FormTable.mjs +2 -1
- package/es/packages/form-table/src/FormTable.vue.d.ts +35927 -1
- package/es/packages/form-table/src/FormTable.vue_vue_type_script_setup_true_lang.mjs +474 -1
- package/es/packages/form-table/src/FormTable2.mjs +4 -1
- package/es/packages/form-table/src/components/index.d.ts +35687 -0
- package/es/packages/form-table/src/components/index.mjs +1 -0
- package/es/packages/form-table/src/components/index2.mjs +54 -0
- package/es/packages/form-table/src/components/table-age.mjs +2 -1
- package/es/packages/form-table/src/components/table-age.vue.d.ts +1 -1
- package/es/packages/form-table/src/components/table-age.vue_vue_type_script_setup_true_lang.mjs +232 -1
- package/es/packages/form-table/src/components/table-age2.mjs +4 -1
- package/es/packages/form-table/src/components/table-date-picker.mjs +2 -1
- package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +1 -1
- package/es/packages/form-table/src/components/table-date-picker.vue_vue_type_script_setup_true_lang.mjs +178 -1
- package/es/packages/form-table/src/components/table-date-picker2.mjs +4 -1
- package/es/packages/form-table/src/components/table-digital.mjs +2 -1
- package/es/packages/form-table/src/components/table-digital.vue.d.ts +1 -1
- package/es/packages/form-table/src/components/table-digital.vue_vue_type_script_setup_true_lang.mjs +138 -1
- package/es/packages/form-table/src/components/table-digital2.mjs +4 -1
- package/es/packages/form-table/src/components/table-input-password.mjs +2 -1
- package/es/packages/form-table/src/components/table-input-password.vue.d.ts +1 -1
- package/es/packages/form-table/src/components/table-input-password.vue_vue_type_script_setup_true_lang.mjs +138 -1
- package/es/packages/form-table/src/components/table-input-password2.mjs +4 -1
- package/es/packages/form-table/src/components/table-input.mjs +2 -1
- package/es/packages/form-table/src/components/table-input.vue.d.ts +1 -1
- package/es/packages/form-table/src/components/table-input.vue_vue_type_script_setup_true_lang.mjs +124 -1
- package/es/packages/form-table/src/components/table-input2.mjs +4 -1
- package/es/packages/form-table/src/components/table-month-picker.mjs +2 -1
- package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +1 -1
- package/es/packages/form-table/src/components/table-month-picker.vue_vue_type_script_setup_true_lang.mjs +99 -1
- package/es/packages/form-table/src/components/table-month-picker2.mjs +4 -1
- package/es/packages/form-table/src/components/table-search-more.mjs +2 -1
- package/es/packages/form-table/src/components/table-search-more.vue.d.ts +101 -101
- package/es/packages/form-table/src/components/table-search-more.vue_vue_type_script_setup_true_lang.mjs +276 -1
- package/es/packages/form-table/src/components/table-search-more2.mjs +4 -1
- package/es/packages/form-table/src/components/table-search.mjs +2 -1
- package/es/packages/form-table/src/components/table-search.vue.d.ts +169 -296
- package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.mjs +276 -1
- package/es/packages/form-table/src/components/table-search2.mjs +4 -1
- package/es/packages/form-table/src/components/table-select-multiple.mjs +2 -0
- 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 +160 -0
- package/es/packages/form-table/src/components/table-select-multiple2.mjs +4 -0
- package/es/packages/form-table/src/components/table-select.mjs +2 -0
- 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 +155 -0
- package/es/packages/form-table/src/components/table-select2.mjs +4 -0
- package/es/packages/form-table/src/components/table-textarea.mjs +2 -0
- 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 +153 -0
- package/es/packages/form-table/src/components/table-textarea2.mjs +4 -0
- package/es/packages/form-table/src/components/table-time-picker.mjs +2 -0
- 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 +145 -0
- package/es/packages/form-table/src/components/table-time-picker2.mjs +4 -0
- package/es/packages/form-table/src/components/table-tree-select.mjs +2 -0
- package/es/packages/form-table/src/components/table-tree-select.vue.d.ts +1881 -0
- package/es/packages/form-table/src/components/table-tree-select.vue_vue_type_script_setup_true_lang.mjs +279 -0
- package/es/packages/form-table/src/components/table-tree-select2.mjs +4 -0
- package/es/packages/form-table/src/components/text-over-tooltip.mjs +2 -1
- package/es/packages/form-table/src/components/text-over-tooltip.vue_vue_type_script_setup_true_lang.mjs +62 -1
- package/es/packages/form-table/src/components/text-over-tooltip2.mjs +4 -1
- package/es/packages/form-table/src/configs/index.mjs +1 -1
- package/es/packages/form-table/src/configs/index2.mjs +74 -1
- package/es/packages/form-table/src/hooks/index.mjs +5 -1
- package/es/packages/form-table/src/hooks/useBoundDate.mjs +1 -1
- package/es/packages/form-table/src/hooks/useBoundDate2.mjs +411 -1
- package/es/packages/form-table/src/hooks/useDateType.mjs +1 -1
- package/es/packages/form-table/src/hooks/useDateType2.mjs +160 -1
- package/es/packages/form-table/src/hooks/useFormCommon.mjs +1 -1
- package/es/packages/form-table/src/hooks/useFormCommon2.mjs +95 -1
- package/es/packages/form-table/src/hooks/useFormEvent.mjs +1 -1
- package/es/packages/form-table/src/hooks/useFormEvent2.mjs +71 -1
- package/es/packages/form-table/src/hooks/useItemDefault.mjs +1 -1
- package/es/packages/form-table/src/hooks/useItemDefault2.mjs +218 -1
- package/es/packages/form-table/src/hooks/useSearch.mjs +1 -1
- package/es/packages/form-table/src/hooks/useSearch2.mjs +1216 -1
- package/es/packages/form-table/src/hooks/useValidate.mjs +1 -1
- package/es/packages/form-table/src/hooks/useValidate2.mjs +480 -1
- package/es/packages/form-table/style/index.css +23 -0
- package/es/packages/form-table/style/index.less +36 -0
- package/es/packages/grid/index.mjs +1 -1
- package/es/packages/grid/index2.mjs +14 -1
- package/es/packages/grid/src/Grid.mjs +1 -1
- package/es/packages/grid/src/Grid2.mjs +28 -1
- package/es/packages/grid/src/hooks.mjs +1 -1
- package/es/packages/grid/src/hooks2.mjs +165 -1
- package/es/packages/grid/style/index.css +10 -0
- package/es/packages/grid/style/index.less +12 -0
- package/es/packages/index.css +331 -45
- package/es/packages/index.d.ts +11 -3
- package/es/packages/index.less +400 -35
- package/es/packages/index.mjs +26 -1
- package/es/packages/index2.mjs +64 -1
- package/es/packages/info-header/index.d.ts +1846 -0
- package/es/packages/info-header/index.mjs +1 -0
- package/es/packages/info-header/index2.mjs +11 -0
- package/es/packages/info-header/src/HiddenContent.mjs +2 -0
- 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 +61 -0
- package/es/packages/info-header/src/HiddenContent2.mjs +4 -0
- package/es/packages/info-header/src/InfoHeader.mjs +2 -0
- package/es/packages/info-header/src/InfoHeader.vue.d.ts +1847 -0
- package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.mjs +218 -0
- package/es/packages/info-header/src/InfoHeader2.mjs +4 -0
- package/es/packages/info-header/src/SlotRender.d.ts +22 -0
- package/es/packages/info-header/src/SlotRender.mjs +1 -0
- package/es/packages/info-header/src/SlotRender2.mjs +35 -0
- package/es/packages/info-header/style/iconfont.ttf +0 -0
- package/es/packages/info-header/style/index.css +121 -0
- package/es/packages/info-header/style/index.less +153 -0
- package/es/packages/map/index.mjs +1 -1
- package/es/packages/map/index2.mjs +11 -1
- package/es/packages/map/src/Map.mjs +2 -1
- package/es/packages/map/src/Map.vue_vue_type_script_setup_true_lang.mjs +336 -1
- package/es/packages/map/src/Map2.mjs +4 -1
- package/es/packages/scale-view/index.d.ts +15 -129
- package/es/packages/scale-view/index.mjs +1 -1
- package/es/packages/scale-view/index2.mjs +37 -1
- package/es/packages/scale-view/src/ScaleView.mjs +2 -1
- package/es/packages/scale-view/src/ScaleView.vue.d.ts +18 -132
- package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.mjs +395 -1
- package/es/packages/scale-view/src/ScaleView2.mjs +4 -1
- package/es/packages/scale-view/src/components/AnswerParse.mjs +2 -1
- package/es/packages/scale-view/src/components/AnswerParse.vue_vue_type_script_setup_true_lang.mjs +78 -1
- package/es/packages/scale-view/src/components/AnswerParse2.mjs +4 -1
- package/es/packages/scale-view/src/components/EvaluateCountdown.mjs +2 -1
- package/es/packages/scale-view/src/components/EvaluateCountdown.vue_vue_type_script_setup_true_lang.mjs +109 -1
- package/es/packages/scale-view/src/components/EvaluateCountdown2.mjs +4 -1
- package/es/packages/scale-view/src/components/EvaluatePage.mjs +2 -1
- package/es/packages/scale-view/src/components/EvaluatePage.vue_vue_type_script_setup_true_lang.mjs +139 -1
- package/es/packages/scale-view/src/components/EvaluatePage2.mjs +4 -1
- package/es/packages/scale-view/src/components/NoData.mjs +2 -1
- package/es/packages/scale-view/src/components/NoData.vue_vue_type_script_setup_true_lang.mjs +72 -1
- package/es/packages/scale-view/src/components/NoData2.mjs +4 -1
- package/es/packages/scale-view/src/components/ScaleScore.mjs +1 -1
- package/es/packages/scale-view/src/components/ScaleScore2.mjs +63 -1
- package/es/packages/scale-view/src/components/composables/choose-common.mjs +1 -1
- package/es/packages/scale-view/src/components/composables/choose-common2.mjs +78 -1
- package/es/packages/scale-view/src/components/formitem/address.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/address2.mjs +3993 -1
- package/es/packages/scale-view/src/components/formitem/r-address.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-address2.mjs +225 -1
- package/es/packages/scale-view/src/components/formitem/r-cascader.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-cascader2.mjs +121 -1
- package/es/packages/scale-view/src/components/formitem/r-checkbox.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-checkbox2.mjs +229 -1
- package/es/packages/scale-view/src/components/formitem/r-collection.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-collection2.mjs +111 -1
- package/es/packages/scale-view/src/components/formitem/r-datetime.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-datetime2.mjs +200 -1
- package/es/packages/scale-view/src/components/formitem/r-input.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-input2.mjs +88 -1
- package/es/packages/scale-view/src/components/formitem/r-map.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-map2.mjs +104 -1
- package/es/packages/scale-view/src/components/formitem/r-radio.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-radio2.mjs +221 -1
- package/es/packages/scale-view/src/components/formitem/r-select.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-select2.mjs +134 -1
- package/es/packages/scale-view/src/components/formitem/r-upload.mjs +1 -1
- package/es/packages/scale-view/src/components/formitem/r-upload2.mjs +210 -1
- package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.mjs +2 -1
- package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.mjs +77 -1
- package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip2.mjs +4 -1
- package/es/packages/scale-view/src/hooks/scaleview-computed.d.ts +1 -1
- package/es/packages/scale-view/src/hooks/scaleview-computed.mjs +1 -1
- package/es/packages/scale-view/src/hooks/scaleview-computed2.mjs +321 -1
- package/es/packages/scale-view/src/hooks/scaleview-init.mjs +1 -1
- package/es/packages/scale-view/src/hooks/scaleview-init2.mjs +441 -1
- package/es/packages/scale-view/src/hooks/scaleview-props.d.ts +4 -0
- package/es/packages/scale-view/src/hooks/scaleview-props.mjs +1 -1
- package/es/packages/scale-view/src/hooks/scaleview-props2.mjs +60 -1
- package/es/packages/scale-view/src/hooks/scaleview-state.mjs +1 -1
- package/es/packages/scale-view/src/hooks/scaleview-state2.mjs +42 -1
- package/es/packages/scale-view/src/hooks/scaleview-submit.mjs +1 -1
- package/es/packages/scale-view/src/hooks/scaleview-submit2.mjs +162 -1
- package/es/packages/scale-view/src/hooks/scaleview-validate.mjs +1 -1
- package/es/packages/scale-view/src/hooks/scaleview-validate2.mjs +164 -1
- package/es/packages/scale-view/src/hooks/use-component.d.ts +7504 -14
- package/es/packages/scale-view/src/hooks/use-component.mjs +1 -1
- package/es/packages/scale-view/src/hooks/use-component2.mjs +82 -1
- package/es/packages/scale-view/src/hooks/use-evaluate.mjs +1 -1
- package/es/packages/scale-view/src/hooks/use-evaluate2.mjs +150 -1
- package/es/packages/scale-view/src/hooks/use-event.d.ts +1 -1
- package/es/packages/scale-view/src/hooks/use-event.mjs +1 -1
- package/es/packages/scale-view/src/hooks/use-event2.mjs +128 -1
- package/es/packages/scale-view/src/hooks/use-noData.mjs +1 -1
- package/es/packages/scale-view/src/hooks/use-noData2.mjs +41 -1
- package/es/packages/scale-view/src/utils/judge-types.mjs +1 -1
- package/es/packages/scale-view/src/utils/judge-types2.mjs +40 -1
- package/es/packages/scale-view/style/index.css +14 -1
- package/es/packages/scale-view/style/index.less +16 -1
- package/es/packages/select-label/index.d.ts +4589 -2
- package/es/packages/select-label/index.mjs +1 -1
- package/es/packages/select-label/index2.mjs +17 -1
- package/es/packages/select-label/src/LabelFormContent.mjs +2 -0
- package/es/packages/select-label/src/{components/label-form-content.vue.d.ts → LabelFormContent.vue.d.ts} +9 -2
- package/es/packages/select-label/src/LabelFormContent.vue_vue_type_script_setup_true_lang.mjs +442 -0
- package/es/packages/select-label/src/LabelFormContent2.mjs +4 -0
- package/es/packages/select-label/src/SelectLabel.mjs +2 -1
- package/es/packages/select-label/src/SelectLabel.vue.d.ts +21 -9
- package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.mjs +437 -1
- package/es/packages/select-label/src/SelectLabel2.mjs +4 -1
- package/es/packages/select-label/src/components/label-classify.mjs +2 -1
- package/es/packages/select-label/src/components/label-classify.vue.d.ts +1 -0
- package/es/packages/select-label/src/components/label-classify.vue_vue_type_script_setup_true_lang.mjs +124 -1
- package/es/packages/select-label/src/components/label-classify2.mjs +4 -1
- package/es/packages/select-label/style/index.css +11 -0
- package/es/packages/select-label/style/index.less +13 -2
- package/es/packages/select-person/index.d.ts +1 -1
- package/es/packages/select-person/index.mjs +1 -1
- package/es/packages/select-person/index2.mjs +11 -1
- package/es/packages/select-person/src/SearchTree.mjs +2 -1
- package/es/packages/select-person/src/SearchTree.vue.d.ts +1 -1
- package/es/packages/select-person/src/SearchTree.vue_vue_type_script_setup_true_lang.mjs +233 -1
- package/es/packages/select-person/src/SearchTree2.mjs +4 -1
- package/es/packages/select-person/src/SelectPerson.mjs +2 -1
- package/es/packages/select-person/src/SelectPerson.vue.d.ts +1 -1
- package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.mjs +895 -1
- package/es/packages/select-person/src/SelectPerson2.mjs +4 -1
- package/es/packages/select-person/src/utils/index.d.ts +8 -8
- package/es/packages/select-person/src/utils/index.mjs +1 -1
- package/es/packages/select-person/src/utils/index2.mjs +57 -1
- package/es/packages/time-line/index.d.ts +1721 -0
- package/es/packages/time-line/index.mjs +1 -0
- package/es/packages/time-line/index2.mjs +11 -0
- package/es/packages/time-line/src/TimeLine.mjs +2 -0
- package/es/packages/time-line/src/TimeLine.vue.d.ts +1724 -0
- package/es/packages/time-line/src/TimeLine.vue_vue_type_script_setup_true_lang.mjs +63 -0
- package/es/packages/time-line/src/TimeLine2.mjs +4 -0
- package/es/packages/time-line/style/index.css +32 -0
- package/es/packages/time-line/style/index.less +35 -0
- package/es/src/components/SelectPage/SelectPage.mjs +2 -1
- package/es/src/components/SelectPage/SelectPage.vue_vue_type_script_setup_true_lang.mjs +61 -1
- package/es/src/components/SelectPage/SelectPage2.mjs +4 -1
- package/es/src/components/SelectPage/index.mjs +2 -1
- package/es/src/components/SelectPage/index2.mjs +3 -1
- package/es/src/components/SvgIcon/SvgIcon.mjs +2 -1
- package/es/src/components/SvgIcon/SvgIcon.vue_vue_type_script_setup_true_lang.mjs +34 -1
- package/es/src/components/SvgIcon/SvgIcon2.mjs +4 -1
- package/es/src/components/SvgIcon/index.mjs +2 -1
- package/es/src/components/SvgIcon/index2.mjs +3 -1
- package/es/src/components/TextOverTooltip/TextOverTooltip.mjs +2 -0
- package/es/{packages/big-table/src/components → src/components/TextOverTooltip}/TextOverTooltip.vue.d.ts +0 -0
- package/es/src/components/TextOverTooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.mjs +74 -0
- package/es/src/components/TextOverTooltip/TextOverTooltip2.mjs +4 -0
- package/es/src/components/TextOverTooltip/index.d.ts +2 -0
- package/es/src/components/TextOverTooltip/index.mjs +2 -0
- package/es/src/components/TextOverTooltip/index2.mjs +3 -0
- package/es/src/components/player-vod/index.mjs +2 -1
- package/es/src/components/player-vod/index.vue_vue_type_script_setup_true_lang.mjs +12 -1
- package/es/src/components/player-vod/index2.mjs +4 -1
- package/es/src/components/player-vod/player.mjs +1 -1
- package/es/src/components/player-vod/player2.mjs +121 -1
- package/es/src/components/player-vod/video-list.mjs +1 -1
- package/es/src/components/player-vod/video-list2.mjs +125 -1
- package/es/src/components/player-vod/video-modal.mjs +1 -1
- package/es/src/components/player-vod/video-modal2.mjs +91 -1
- package/es/src/core/create.mjs +1 -1
- package/es/src/core/create2.mjs +8 -1
- package/es/src/global/variable.d.ts +1 -1
- package/es/src/global/variable.mjs +1 -1
- package/es/src/global/variable2.mjs +4 -1
- package/es/src/utils/anime.d.ts +35 -0
- package/es/src/utils/anime.mjs +1 -0
- package/es/src/utils/anime2.mjs +126 -0
- package/es/src/utils/clickoutside.mjs +1 -1
- package/es/src/utils/clickoutside2.mjs +48 -1
- package/es/src/utils/crypto.mjs +1 -1
- package/es/src/utils/crypto2.mjs +25 -1
- package/es/src/utils/index.d.ts +0 -3
- package/es/src/utils/index.mjs +1 -1
- package/es/src/utils/index2.mjs +15 -1
- package/es/src/utils/loadViewer.d.ts +2 -0
- package/es/src/utils/loadViewer.mjs +1 -0
- package/es/src/utils/loadViewer2.mjs +11 -0
- package/es/src/utils/loadVxe.d.ts +2 -0
- package/es/src/utils/loadVxe.mjs +1 -0
- package/es/src/utils/loadVxe2.mjs +12 -0
- package/es/src/utils/utilExpand.d.ts +1 -0
- package/es/src/utils/utilExpand.mjs +1 -0
- package/es/src/utils/utilExpand2.mjs +714 -0
- package/es/src/utils/vexutils.mjs +3 -1
- package/es/src/utils/vexutils2.mjs +80 -1
- package/memory-log.ts +62 -0
- package/package.json +128 -112
- package/es/packages/big-table/src/components/TextOverTooltip.mjs +0 -1
- package/es/packages/big-table/src/components/TextOverTooltip.vue_vue_type_script_setup_true_lang.mjs +0 -1
- package/es/packages/big-table/src/components/TextOverTooltip2.mjs +0 -1
- package/es/packages/select-label/src/components/label-form-content.mjs +0 -1
- package/es/packages/select-label/src/components/label-form-content.vue_vue_type_script_setup_true_lang.mjs +0 -1
- package/es/packages/select-label/src/components/label-form-content2.mjs +0 -1
|
@@ -0,0 +1,2183 @@
|
|
|
1
|
+
export declare const INPUT_NUMBER: import("vue").DefineComponent<{
|
|
2
|
+
autofocus: BooleanConstructor;
|
|
3
|
+
loading: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: undefined;
|
|
6
|
+
};
|
|
7
|
+
placeholder: StringConstructor;
|
|
8
|
+
defaultValue: {
|
|
9
|
+
type: import("vue").PropType<number | null>;
|
|
10
|
+
default: null;
|
|
11
|
+
};
|
|
12
|
+
value: import("vue").PropType<number | null>;
|
|
13
|
+
step: {
|
|
14
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
15
|
+
default: number;
|
|
16
|
+
};
|
|
17
|
+
min: (NumberConstructor | StringConstructor)[];
|
|
18
|
+
max: (NumberConstructor | StringConstructor)[];
|
|
19
|
+
size: import("vue").PropType<"small" | "medium" | "large">;
|
|
20
|
+
disabled: {
|
|
21
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
22
|
+
default: undefined;
|
|
23
|
+
};
|
|
24
|
+
validator: import("vue").PropType<(value: number) => boolean>;
|
|
25
|
+
bordered: {
|
|
26
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
27
|
+
default: undefined;
|
|
28
|
+
};
|
|
29
|
+
showButton: {
|
|
30
|
+
type: BooleanConstructor;
|
|
31
|
+
default: boolean;
|
|
32
|
+
};
|
|
33
|
+
buttonPlacement: {
|
|
34
|
+
type: import("vue").PropType<"right" | "both">;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
readonly: BooleanConstructor;
|
|
38
|
+
clearable: BooleanConstructor;
|
|
39
|
+
keyboard: {
|
|
40
|
+
type: import("vue").PropType<{
|
|
41
|
+
ArrowUp?: boolean | undefined;
|
|
42
|
+
ArrowDown?: boolean | undefined;
|
|
43
|
+
}>;
|
|
44
|
+
default: {};
|
|
45
|
+
};
|
|
46
|
+
updateValueOnInput: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
50
|
+
parse: import("vue").PropType<(input: string) => number | null>;
|
|
51
|
+
format: import("vue").PropType<(value: number | null) => string>;
|
|
52
|
+
precision: NumberConstructor;
|
|
53
|
+
status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
54
|
+
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
55
|
+
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
56
|
+
onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
57
|
+
onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
58
|
+
onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
59
|
+
onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
60
|
+
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"InputNumber", {
|
|
61
|
+
iconColorDisabled: string;
|
|
62
|
+
}, {
|
|
63
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
64
|
+
heightTiny: string;
|
|
65
|
+
heightSmall: string;
|
|
66
|
+
heightMedium: string;
|
|
67
|
+
heightLarge: string;
|
|
68
|
+
borderRadiusTiny: string;
|
|
69
|
+
borderRadiusSmall: string;
|
|
70
|
+
borderRadiusMedium: string;
|
|
71
|
+
borderRadiusLarge: string;
|
|
72
|
+
fontSizeTiny: string;
|
|
73
|
+
fontSizeSmall: string;
|
|
74
|
+
fontSizeMedium: string;
|
|
75
|
+
fontSizeLarge: string;
|
|
76
|
+
opacityDisabled: string;
|
|
77
|
+
colorOpacitySecondary: string;
|
|
78
|
+
colorOpacitySecondaryHover: string;
|
|
79
|
+
colorOpacitySecondaryPressed: string;
|
|
80
|
+
colorSecondary: string;
|
|
81
|
+
colorSecondaryHover: string;
|
|
82
|
+
colorSecondaryPressed: string;
|
|
83
|
+
colorTertiary: string;
|
|
84
|
+
colorTertiaryHover: string;
|
|
85
|
+
colorTertiaryPressed: string;
|
|
86
|
+
colorQuaternary: string;
|
|
87
|
+
colorQuaternaryHover: string;
|
|
88
|
+
colorQuaternaryPressed: string;
|
|
89
|
+
color: string;
|
|
90
|
+
colorHover: string;
|
|
91
|
+
colorPressed: string;
|
|
92
|
+
colorFocus: string;
|
|
93
|
+
colorDisabled: string;
|
|
94
|
+
textColor: string;
|
|
95
|
+
textColorTertiary: string;
|
|
96
|
+
textColorHover: string;
|
|
97
|
+
textColorPressed: string;
|
|
98
|
+
textColorFocus: string;
|
|
99
|
+
textColorDisabled: string;
|
|
100
|
+
textColorText: string;
|
|
101
|
+
textColorTextHover: string;
|
|
102
|
+
textColorTextPressed: string;
|
|
103
|
+
textColorTextFocus: string;
|
|
104
|
+
textColorTextDisabled: string;
|
|
105
|
+
textColorGhost: string;
|
|
106
|
+
textColorGhostHover: string;
|
|
107
|
+
textColorGhostPressed: string;
|
|
108
|
+
textColorGhostFocus: string;
|
|
109
|
+
textColorGhostDisabled: string;
|
|
110
|
+
border: string;
|
|
111
|
+
borderHover: string;
|
|
112
|
+
borderPressed: string;
|
|
113
|
+
borderFocus: string;
|
|
114
|
+
borderDisabled: string;
|
|
115
|
+
rippleColor: string;
|
|
116
|
+
colorPrimary: string;
|
|
117
|
+
colorHoverPrimary: string;
|
|
118
|
+
colorPressedPrimary: string;
|
|
119
|
+
colorFocusPrimary: string;
|
|
120
|
+
colorDisabledPrimary: string;
|
|
121
|
+
textColorPrimary: string;
|
|
122
|
+
textColorHoverPrimary: string;
|
|
123
|
+
textColorPressedPrimary: string;
|
|
124
|
+
textColorFocusPrimary: string;
|
|
125
|
+
textColorDisabledPrimary: string;
|
|
126
|
+
textColorTextPrimary: string;
|
|
127
|
+
textColorTextHoverPrimary: string;
|
|
128
|
+
textColorTextPressedPrimary: string;
|
|
129
|
+
textColorTextFocusPrimary: string;
|
|
130
|
+
textColorTextDisabledPrimary: string;
|
|
131
|
+
textColorGhostPrimary: string;
|
|
132
|
+
textColorGhostHoverPrimary: string;
|
|
133
|
+
textColorGhostPressedPrimary: string;
|
|
134
|
+
textColorGhostFocusPrimary: string;
|
|
135
|
+
textColorGhostDisabledPrimary: string;
|
|
136
|
+
borderPrimary: string;
|
|
137
|
+
borderHoverPrimary: string;
|
|
138
|
+
borderPressedPrimary: string;
|
|
139
|
+
borderFocusPrimary: string;
|
|
140
|
+
borderDisabledPrimary: string;
|
|
141
|
+
rippleColorPrimary: string;
|
|
142
|
+
colorInfo: string;
|
|
143
|
+
colorHoverInfo: string;
|
|
144
|
+
colorPressedInfo: string;
|
|
145
|
+
colorFocusInfo: string;
|
|
146
|
+
colorDisabledInfo: string;
|
|
147
|
+
textColorInfo: string;
|
|
148
|
+
textColorHoverInfo: string;
|
|
149
|
+
textColorPressedInfo: string;
|
|
150
|
+
textColorFocusInfo: string;
|
|
151
|
+
textColorDisabledInfo: string;
|
|
152
|
+
textColorTextInfo: string;
|
|
153
|
+
textColorTextHoverInfo: string;
|
|
154
|
+
textColorTextPressedInfo: string;
|
|
155
|
+
textColorTextFocusInfo: string;
|
|
156
|
+
textColorTextDisabledInfo: string;
|
|
157
|
+
textColorGhostInfo: string;
|
|
158
|
+
textColorGhostHoverInfo: string;
|
|
159
|
+
textColorGhostPressedInfo: string;
|
|
160
|
+
textColorGhostFocusInfo: string;
|
|
161
|
+
textColorGhostDisabledInfo: string;
|
|
162
|
+
borderInfo: string;
|
|
163
|
+
borderHoverInfo: string;
|
|
164
|
+
borderPressedInfo: string;
|
|
165
|
+
borderFocusInfo: string;
|
|
166
|
+
borderDisabledInfo: string;
|
|
167
|
+
rippleColorInfo: string;
|
|
168
|
+
colorSuccess: string;
|
|
169
|
+
colorHoverSuccess: string;
|
|
170
|
+
colorPressedSuccess: string;
|
|
171
|
+
colorFocusSuccess: string;
|
|
172
|
+
colorDisabledSuccess: string;
|
|
173
|
+
textColorSuccess: string;
|
|
174
|
+
textColorHoverSuccess: string;
|
|
175
|
+
textColorPressedSuccess: string;
|
|
176
|
+
textColorFocusSuccess: string;
|
|
177
|
+
textColorDisabledSuccess: string;
|
|
178
|
+
textColorTextSuccess: string;
|
|
179
|
+
textColorTextHoverSuccess: string;
|
|
180
|
+
textColorTextPressedSuccess: string;
|
|
181
|
+
textColorTextFocusSuccess: string;
|
|
182
|
+
textColorTextDisabledSuccess: string;
|
|
183
|
+
textColorGhostSuccess: string;
|
|
184
|
+
textColorGhostHoverSuccess: string;
|
|
185
|
+
textColorGhostPressedSuccess: string;
|
|
186
|
+
textColorGhostFocusSuccess: string;
|
|
187
|
+
textColorGhostDisabledSuccess: string;
|
|
188
|
+
borderSuccess: string;
|
|
189
|
+
borderHoverSuccess: string;
|
|
190
|
+
borderPressedSuccess: string;
|
|
191
|
+
borderFocusSuccess: string;
|
|
192
|
+
borderDisabledSuccess: string;
|
|
193
|
+
rippleColorSuccess: string;
|
|
194
|
+
colorWarning: string;
|
|
195
|
+
colorHoverWarning: string;
|
|
196
|
+
colorPressedWarning: string;
|
|
197
|
+
colorFocusWarning: string;
|
|
198
|
+
colorDisabledWarning: string;
|
|
199
|
+
textColorWarning: string;
|
|
200
|
+
textColorHoverWarning: string;
|
|
201
|
+
textColorPressedWarning: string;
|
|
202
|
+
textColorFocusWarning: string;
|
|
203
|
+
textColorDisabledWarning: string;
|
|
204
|
+
textColorTextWarning: string;
|
|
205
|
+
textColorTextHoverWarning: string;
|
|
206
|
+
textColorTextPressedWarning: string;
|
|
207
|
+
textColorTextFocusWarning: string;
|
|
208
|
+
textColorTextDisabledWarning: string;
|
|
209
|
+
textColorGhostWarning: string;
|
|
210
|
+
textColorGhostHoverWarning: string;
|
|
211
|
+
textColorGhostPressedWarning: string;
|
|
212
|
+
textColorGhostFocusWarning: string;
|
|
213
|
+
textColorGhostDisabledWarning: string;
|
|
214
|
+
borderWarning: string;
|
|
215
|
+
borderHoverWarning: string;
|
|
216
|
+
borderPressedWarning: string;
|
|
217
|
+
borderFocusWarning: string;
|
|
218
|
+
borderDisabledWarning: string;
|
|
219
|
+
rippleColorWarning: string;
|
|
220
|
+
colorError: string;
|
|
221
|
+
colorHoverError: string;
|
|
222
|
+
colorPressedError: string;
|
|
223
|
+
colorFocusError: string;
|
|
224
|
+
colorDisabledError: string;
|
|
225
|
+
textColorError: string;
|
|
226
|
+
textColorHoverError: string;
|
|
227
|
+
textColorPressedError: string;
|
|
228
|
+
textColorFocusError: string;
|
|
229
|
+
textColorDisabledError: string;
|
|
230
|
+
textColorTextError: string;
|
|
231
|
+
textColorTextHoverError: string;
|
|
232
|
+
textColorTextPressedError: string;
|
|
233
|
+
textColorTextFocusError: string;
|
|
234
|
+
textColorTextDisabledError: string;
|
|
235
|
+
textColorGhostError: string;
|
|
236
|
+
textColorGhostHoverError: string;
|
|
237
|
+
textColorGhostPressedError: string;
|
|
238
|
+
textColorGhostFocusError: string;
|
|
239
|
+
textColorGhostDisabledError: string;
|
|
240
|
+
borderError: string;
|
|
241
|
+
borderHoverError: string;
|
|
242
|
+
borderPressedError: string;
|
|
243
|
+
borderFocusError: string;
|
|
244
|
+
borderDisabledError: string;
|
|
245
|
+
rippleColorError: string;
|
|
246
|
+
waveOpacity: string;
|
|
247
|
+
fontWeight: string;
|
|
248
|
+
fontWeightStrong: string;
|
|
249
|
+
paddingTiny: string;
|
|
250
|
+
paddingSmall: string;
|
|
251
|
+
paddingMedium: string;
|
|
252
|
+
paddingLarge: string;
|
|
253
|
+
paddingRoundTiny: string;
|
|
254
|
+
paddingRoundSmall: string;
|
|
255
|
+
paddingRoundMedium: string;
|
|
256
|
+
paddingRoundLarge: string;
|
|
257
|
+
iconMarginTiny: string;
|
|
258
|
+
iconMarginSmall: string;
|
|
259
|
+
iconMarginMedium: string;
|
|
260
|
+
iconMarginLarge: string;
|
|
261
|
+
iconSizeTiny: string;
|
|
262
|
+
iconSizeSmall: string;
|
|
263
|
+
iconSizeMedium: string;
|
|
264
|
+
iconSizeLarge: string;
|
|
265
|
+
rippleDuration: string;
|
|
266
|
+
}, any>;
|
|
267
|
+
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
268
|
+
countTextColor: string;
|
|
269
|
+
heightTiny: string;
|
|
270
|
+
heightSmall: string;
|
|
271
|
+
heightMedium: string;
|
|
272
|
+
heightLarge: string;
|
|
273
|
+
fontSizeTiny: string;
|
|
274
|
+
fontSizeSmall: string;
|
|
275
|
+
fontSizeMedium: string;
|
|
276
|
+
fontSizeLarge: string;
|
|
277
|
+
lineHeight: string;
|
|
278
|
+
lineHeightTextarea: string;
|
|
279
|
+
borderRadius: string;
|
|
280
|
+
iconSize: string;
|
|
281
|
+
groupLabelColor: string;
|
|
282
|
+
groupLabelTextColor: string;
|
|
283
|
+
textColor: string;
|
|
284
|
+
textColorDisabled: string;
|
|
285
|
+
textDecorationColor: string;
|
|
286
|
+
caretColor: string;
|
|
287
|
+
placeholderColor: string;
|
|
288
|
+
placeholderColorDisabled: string;
|
|
289
|
+
color: string;
|
|
290
|
+
colorDisabled: string;
|
|
291
|
+
colorFocus: string;
|
|
292
|
+
groupLabelBorder: string;
|
|
293
|
+
border: string;
|
|
294
|
+
borderHover: string;
|
|
295
|
+
borderDisabled: string;
|
|
296
|
+
borderFocus: string;
|
|
297
|
+
boxShadowFocus: string;
|
|
298
|
+
loadingColor: string;
|
|
299
|
+
loadingColorWarning: string;
|
|
300
|
+
borderWarning: string;
|
|
301
|
+
borderHoverWarning: string;
|
|
302
|
+
colorFocusWarning: string;
|
|
303
|
+
borderFocusWarning: string;
|
|
304
|
+
boxShadowFocusWarning: string;
|
|
305
|
+
caretColorWarning: string;
|
|
306
|
+
loadingColorError: string;
|
|
307
|
+
borderError: string;
|
|
308
|
+
borderHoverError: string;
|
|
309
|
+
colorFocusError: string;
|
|
310
|
+
borderFocusError: string;
|
|
311
|
+
boxShadowFocusError: string;
|
|
312
|
+
caretColorError: string;
|
|
313
|
+
clearColor: string;
|
|
314
|
+
clearColorHover: string;
|
|
315
|
+
clearColorPressed: string;
|
|
316
|
+
iconColor: string;
|
|
317
|
+
iconColorDisabled: string;
|
|
318
|
+
iconColorHover: string;
|
|
319
|
+
iconColorPressed: string;
|
|
320
|
+
suffixTextColor: string;
|
|
321
|
+
paddingTiny: string;
|
|
322
|
+
paddingSmall: string;
|
|
323
|
+
paddingMedium: string;
|
|
324
|
+
paddingLarge: string;
|
|
325
|
+
clearSize: string;
|
|
326
|
+
}, any>;
|
|
327
|
+
}>>;
|
|
328
|
+
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
|
|
329
|
+
iconColorDisabled: string;
|
|
330
|
+
}, {
|
|
331
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
332
|
+
heightTiny: string;
|
|
333
|
+
heightSmall: string;
|
|
334
|
+
heightMedium: string;
|
|
335
|
+
heightLarge: string;
|
|
336
|
+
borderRadiusTiny: string;
|
|
337
|
+
borderRadiusSmall: string;
|
|
338
|
+
borderRadiusMedium: string;
|
|
339
|
+
borderRadiusLarge: string;
|
|
340
|
+
fontSizeTiny: string;
|
|
341
|
+
fontSizeSmall: string;
|
|
342
|
+
fontSizeMedium: string;
|
|
343
|
+
fontSizeLarge: string;
|
|
344
|
+
opacityDisabled: string;
|
|
345
|
+
colorOpacitySecondary: string;
|
|
346
|
+
colorOpacitySecondaryHover: string;
|
|
347
|
+
colorOpacitySecondaryPressed: string;
|
|
348
|
+
colorSecondary: string;
|
|
349
|
+
colorSecondaryHover: string;
|
|
350
|
+
colorSecondaryPressed: string;
|
|
351
|
+
colorTertiary: string;
|
|
352
|
+
colorTertiaryHover: string;
|
|
353
|
+
colorTertiaryPressed: string;
|
|
354
|
+
colorQuaternary: string;
|
|
355
|
+
colorQuaternaryHover: string;
|
|
356
|
+
colorQuaternaryPressed: string;
|
|
357
|
+
color: string;
|
|
358
|
+
colorHover: string;
|
|
359
|
+
colorPressed: string;
|
|
360
|
+
colorFocus: string;
|
|
361
|
+
colorDisabled: string;
|
|
362
|
+
textColor: string;
|
|
363
|
+
textColorTertiary: string;
|
|
364
|
+
textColorHover: string;
|
|
365
|
+
textColorPressed: string;
|
|
366
|
+
textColorFocus: string;
|
|
367
|
+
textColorDisabled: string;
|
|
368
|
+
textColorText: string;
|
|
369
|
+
textColorTextHover: string;
|
|
370
|
+
textColorTextPressed: string;
|
|
371
|
+
textColorTextFocus: string;
|
|
372
|
+
textColorTextDisabled: string;
|
|
373
|
+
textColorGhost: string;
|
|
374
|
+
textColorGhostHover: string;
|
|
375
|
+
textColorGhostPressed: string;
|
|
376
|
+
textColorGhostFocus: string;
|
|
377
|
+
textColorGhostDisabled: string;
|
|
378
|
+
border: string;
|
|
379
|
+
borderHover: string;
|
|
380
|
+
borderPressed: string;
|
|
381
|
+
borderFocus: string;
|
|
382
|
+
borderDisabled: string;
|
|
383
|
+
rippleColor: string;
|
|
384
|
+
colorPrimary: string;
|
|
385
|
+
colorHoverPrimary: string;
|
|
386
|
+
colorPressedPrimary: string;
|
|
387
|
+
colorFocusPrimary: string;
|
|
388
|
+
colorDisabledPrimary: string;
|
|
389
|
+
textColorPrimary: string;
|
|
390
|
+
textColorHoverPrimary: string;
|
|
391
|
+
textColorPressedPrimary: string;
|
|
392
|
+
textColorFocusPrimary: string;
|
|
393
|
+
textColorDisabledPrimary: string;
|
|
394
|
+
textColorTextPrimary: string;
|
|
395
|
+
textColorTextHoverPrimary: string;
|
|
396
|
+
textColorTextPressedPrimary: string;
|
|
397
|
+
textColorTextFocusPrimary: string;
|
|
398
|
+
textColorTextDisabledPrimary: string;
|
|
399
|
+
textColorGhostPrimary: string;
|
|
400
|
+
textColorGhostHoverPrimary: string;
|
|
401
|
+
textColorGhostPressedPrimary: string;
|
|
402
|
+
textColorGhostFocusPrimary: string;
|
|
403
|
+
textColorGhostDisabledPrimary: string;
|
|
404
|
+
borderPrimary: string;
|
|
405
|
+
borderHoverPrimary: string;
|
|
406
|
+
borderPressedPrimary: string;
|
|
407
|
+
borderFocusPrimary: string;
|
|
408
|
+
borderDisabledPrimary: string;
|
|
409
|
+
rippleColorPrimary: string;
|
|
410
|
+
colorInfo: string;
|
|
411
|
+
colorHoverInfo: string;
|
|
412
|
+
colorPressedInfo: string;
|
|
413
|
+
colorFocusInfo: string;
|
|
414
|
+
colorDisabledInfo: string;
|
|
415
|
+
textColorInfo: string;
|
|
416
|
+
textColorHoverInfo: string;
|
|
417
|
+
textColorPressedInfo: string;
|
|
418
|
+
textColorFocusInfo: string;
|
|
419
|
+
textColorDisabledInfo: string;
|
|
420
|
+
textColorTextInfo: string;
|
|
421
|
+
textColorTextHoverInfo: string;
|
|
422
|
+
textColorTextPressedInfo: string;
|
|
423
|
+
textColorTextFocusInfo: string;
|
|
424
|
+
textColorTextDisabledInfo: string;
|
|
425
|
+
textColorGhostInfo: string;
|
|
426
|
+
textColorGhostHoverInfo: string;
|
|
427
|
+
textColorGhostPressedInfo: string;
|
|
428
|
+
textColorGhostFocusInfo: string;
|
|
429
|
+
textColorGhostDisabledInfo: string;
|
|
430
|
+
borderInfo: string;
|
|
431
|
+
borderHoverInfo: string;
|
|
432
|
+
borderPressedInfo: string;
|
|
433
|
+
borderFocusInfo: string;
|
|
434
|
+
borderDisabledInfo: string;
|
|
435
|
+
rippleColorInfo: string;
|
|
436
|
+
colorSuccess: string;
|
|
437
|
+
colorHoverSuccess: string;
|
|
438
|
+
colorPressedSuccess: string;
|
|
439
|
+
colorFocusSuccess: string;
|
|
440
|
+
colorDisabledSuccess: string;
|
|
441
|
+
textColorSuccess: string;
|
|
442
|
+
textColorHoverSuccess: string;
|
|
443
|
+
textColorPressedSuccess: string;
|
|
444
|
+
textColorFocusSuccess: string;
|
|
445
|
+
textColorDisabledSuccess: string;
|
|
446
|
+
textColorTextSuccess: string;
|
|
447
|
+
textColorTextHoverSuccess: string;
|
|
448
|
+
textColorTextPressedSuccess: string;
|
|
449
|
+
textColorTextFocusSuccess: string;
|
|
450
|
+
textColorTextDisabledSuccess: string;
|
|
451
|
+
textColorGhostSuccess: string;
|
|
452
|
+
textColorGhostHoverSuccess: string;
|
|
453
|
+
textColorGhostPressedSuccess: string;
|
|
454
|
+
textColorGhostFocusSuccess: string;
|
|
455
|
+
textColorGhostDisabledSuccess: string;
|
|
456
|
+
borderSuccess: string;
|
|
457
|
+
borderHoverSuccess: string;
|
|
458
|
+
borderPressedSuccess: string;
|
|
459
|
+
borderFocusSuccess: string;
|
|
460
|
+
borderDisabledSuccess: string;
|
|
461
|
+
rippleColorSuccess: string;
|
|
462
|
+
colorWarning: string;
|
|
463
|
+
colorHoverWarning: string;
|
|
464
|
+
colorPressedWarning: string;
|
|
465
|
+
colorFocusWarning: string;
|
|
466
|
+
colorDisabledWarning: string;
|
|
467
|
+
textColorWarning: string;
|
|
468
|
+
textColorHoverWarning: string;
|
|
469
|
+
textColorPressedWarning: string;
|
|
470
|
+
textColorFocusWarning: string;
|
|
471
|
+
textColorDisabledWarning: string;
|
|
472
|
+
textColorTextWarning: string;
|
|
473
|
+
textColorTextHoverWarning: string;
|
|
474
|
+
textColorTextPressedWarning: string;
|
|
475
|
+
textColorTextFocusWarning: string;
|
|
476
|
+
textColorTextDisabledWarning: string;
|
|
477
|
+
textColorGhostWarning: string;
|
|
478
|
+
textColorGhostHoverWarning: string;
|
|
479
|
+
textColorGhostPressedWarning: string;
|
|
480
|
+
textColorGhostFocusWarning: string;
|
|
481
|
+
textColorGhostDisabledWarning: string;
|
|
482
|
+
borderWarning: string;
|
|
483
|
+
borderHoverWarning: string;
|
|
484
|
+
borderPressedWarning: string;
|
|
485
|
+
borderFocusWarning: string;
|
|
486
|
+
borderDisabledWarning: string;
|
|
487
|
+
rippleColorWarning: string;
|
|
488
|
+
colorError: string;
|
|
489
|
+
colorHoverError: string;
|
|
490
|
+
colorPressedError: string;
|
|
491
|
+
colorFocusError: string;
|
|
492
|
+
colorDisabledError: string;
|
|
493
|
+
textColorError: string;
|
|
494
|
+
textColorHoverError: string;
|
|
495
|
+
textColorPressedError: string;
|
|
496
|
+
textColorFocusError: string;
|
|
497
|
+
textColorDisabledError: string;
|
|
498
|
+
textColorTextError: string;
|
|
499
|
+
textColorTextHoverError: string;
|
|
500
|
+
textColorTextPressedError: string;
|
|
501
|
+
textColorTextFocusError: string;
|
|
502
|
+
textColorTextDisabledError: string;
|
|
503
|
+
textColorGhostError: string;
|
|
504
|
+
textColorGhostHoverError: string;
|
|
505
|
+
textColorGhostPressedError: string;
|
|
506
|
+
textColorGhostFocusError: string;
|
|
507
|
+
textColorGhostDisabledError: string;
|
|
508
|
+
borderError: string;
|
|
509
|
+
borderHoverError: string;
|
|
510
|
+
borderPressedError: string;
|
|
511
|
+
borderFocusError: string;
|
|
512
|
+
borderDisabledError: string;
|
|
513
|
+
rippleColorError: string;
|
|
514
|
+
waveOpacity: string;
|
|
515
|
+
fontWeight: string;
|
|
516
|
+
fontWeightStrong: string;
|
|
517
|
+
paddingTiny: string;
|
|
518
|
+
paddingSmall: string;
|
|
519
|
+
paddingMedium: string;
|
|
520
|
+
paddingLarge: string;
|
|
521
|
+
paddingRoundTiny: string;
|
|
522
|
+
paddingRoundSmall: string;
|
|
523
|
+
paddingRoundMedium: string;
|
|
524
|
+
paddingRoundLarge: string;
|
|
525
|
+
iconMarginTiny: string;
|
|
526
|
+
iconMarginSmall: string;
|
|
527
|
+
iconMarginMedium: string;
|
|
528
|
+
iconMarginLarge: string;
|
|
529
|
+
iconSizeTiny: string;
|
|
530
|
+
iconSizeSmall: string;
|
|
531
|
+
iconSizeMedium: string;
|
|
532
|
+
iconSizeLarge: string;
|
|
533
|
+
rippleDuration: string;
|
|
534
|
+
}, any>;
|
|
535
|
+
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
536
|
+
countTextColor: string;
|
|
537
|
+
heightTiny: string;
|
|
538
|
+
heightSmall: string;
|
|
539
|
+
heightMedium: string;
|
|
540
|
+
heightLarge: string;
|
|
541
|
+
fontSizeTiny: string;
|
|
542
|
+
fontSizeSmall: string;
|
|
543
|
+
fontSizeMedium: string;
|
|
544
|
+
fontSizeLarge: string;
|
|
545
|
+
lineHeight: string;
|
|
546
|
+
lineHeightTextarea: string;
|
|
547
|
+
borderRadius: string;
|
|
548
|
+
iconSize: string;
|
|
549
|
+
groupLabelColor: string;
|
|
550
|
+
groupLabelTextColor: string;
|
|
551
|
+
textColor: string;
|
|
552
|
+
textColorDisabled: string;
|
|
553
|
+
textDecorationColor: string;
|
|
554
|
+
caretColor: string;
|
|
555
|
+
placeholderColor: string;
|
|
556
|
+
placeholderColorDisabled: string;
|
|
557
|
+
color: string;
|
|
558
|
+
colorDisabled: string;
|
|
559
|
+
colorFocus: string;
|
|
560
|
+
groupLabelBorder: string;
|
|
561
|
+
border: string;
|
|
562
|
+
borderHover: string;
|
|
563
|
+
borderDisabled: string;
|
|
564
|
+
borderFocus: string;
|
|
565
|
+
boxShadowFocus: string;
|
|
566
|
+
loadingColor: string;
|
|
567
|
+
loadingColorWarning: string;
|
|
568
|
+
borderWarning: string;
|
|
569
|
+
borderHoverWarning: string;
|
|
570
|
+
colorFocusWarning: string;
|
|
571
|
+
borderFocusWarning: string;
|
|
572
|
+
boxShadowFocusWarning: string;
|
|
573
|
+
caretColorWarning: string;
|
|
574
|
+
loadingColorError: string;
|
|
575
|
+
borderError: string;
|
|
576
|
+
borderHoverError: string;
|
|
577
|
+
colorFocusError: string;
|
|
578
|
+
borderFocusError: string;
|
|
579
|
+
boxShadowFocusError: string;
|
|
580
|
+
caretColorError: string;
|
|
581
|
+
clearColor: string;
|
|
582
|
+
clearColorHover: string;
|
|
583
|
+
clearColorPressed: string;
|
|
584
|
+
iconColor: string;
|
|
585
|
+
iconColorDisabled: string;
|
|
586
|
+
iconColorHover: string;
|
|
587
|
+
iconColorPressed: string;
|
|
588
|
+
suffixTextColor: string;
|
|
589
|
+
paddingTiny: string;
|
|
590
|
+
paddingSmall: string;
|
|
591
|
+
paddingMedium: string;
|
|
592
|
+
paddingLarge: string;
|
|
593
|
+
clearSize: string;
|
|
594
|
+
}, any>;
|
|
595
|
+
}>>>;
|
|
596
|
+
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
|
|
597
|
+
iconColorDisabled: string;
|
|
598
|
+
}, {
|
|
599
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
600
|
+
heightTiny: string;
|
|
601
|
+
heightSmall: string;
|
|
602
|
+
heightMedium: string;
|
|
603
|
+
heightLarge: string;
|
|
604
|
+
borderRadiusTiny: string;
|
|
605
|
+
borderRadiusSmall: string;
|
|
606
|
+
borderRadiusMedium: string;
|
|
607
|
+
borderRadiusLarge: string;
|
|
608
|
+
fontSizeTiny: string;
|
|
609
|
+
fontSizeSmall: string;
|
|
610
|
+
fontSizeMedium: string;
|
|
611
|
+
fontSizeLarge: string;
|
|
612
|
+
opacityDisabled: string;
|
|
613
|
+
colorOpacitySecondary: string;
|
|
614
|
+
colorOpacitySecondaryHover: string;
|
|
615
|
+
colorOpacitySecondaryPressed: string;
|
|
616
|
+
colorSecondary: string;
|
|
617
|
+
colorSecondaryHover: string;
|
|
618
|
+
colorSecondaryPressed: string;
|
|
619
|
+
colorTertiary: string;
|
|
620
|
+
colorTertiaryHover: string;
|
|
621
|
+
colorTertiaryPressed: string;
|
|
622
|
+
colorQuaternary: string;
|
|
623
|
+
colorQuaternaryHover: string;
|
|
624
|
+
colorQuaternaryPressed: string;
|
|
625
|
+
color: string;
|
|
626
|
+
colorHover: string;
|
|
627
|
+
colorPressed: string;
|
|
628
|
+
colorFocus: string;
|
|
629
|
+
colorDisabled: string;
|
|
630
|
+
textColor: string;
|
|
631
|
+
textColorTertiary: string;
|
|
632
|
+
textColorHover: string;
|
|
633
|
+
textColorPressed: string;
|
|
634
|
+
textColorFocus: string;
|
|
635
|
+
textColorDisabled: string;
|
|
636
|
+
textColorText: string;
|
|
637
|
+
textColorTextHover: string;
|
|
638
|
+
textColorTextPressed: string;
|
|
639
|
+
textColorTextFocus: string;
|
|
640
|
+
textColorTextDisabled: string;
|
|
641
|
+
textColorGhost: string;
|
|
642
|
+
textColorGhostHover: string;
|
|
643
|
+
textColorGhostPressed: string;
|
|
644
|
+
textColorGhostFocus: string;
|
|
645
|
+
textColorGhostDisabled: string;
|
|
646
|
+
border: string;
|
|
647
|
+
borderHover: string;
|
|
648
|
+
borderPressed: string;
|
|
649
|
+
borderFocus: string;
|
|
650
|
+
borderDisabled: string;
|
|
651
|
+
rippleColor: string;
|
|
652
|
+
colorPrimary: string;
|
|
653
|
+
colorHoverPrimary: string;
|
|
654
|
+
colorPressedPrimary: string;
|
|
655
|
+
colorFocusPrimary: string;
|
|
656
|
+
colorDisabledPrimary: string;
|
|
657
|
+
textColorPrimary: string;
|
|
658
|
+
textColorHoverPrimary: string;
|
|
659
|
+
textColorPressedPrimary: string;
|
|
660
|
+
textColorFocusPrimary: string;
|
|
661
|
+
textColorDisabledPrimary: string;
|
|
662
|
+
textColorTextPrimary: string;
|
|
663
|
+
textColorTextHoverPrimary: string;
|
|
664
|
+
textColorTextPressedPrimary: string;
|
|
665
|
+
textColorTextFocusPrimary: string;
|
|
666
|
+
textColorTextDisabledPrimary: string;
|
|
667
|
+
textColorGhostPrimary: string;
|
|
668
|
+
textColorGhostHoverPrimary: string;
|
|
669
|
+
textColorGhostPressedPrimary: string;
|
|
670
|
+
textColorGhostFocusPrimary: string;
|
|
671
|
+
textColorGhostDisabledPrimary: string;
|
|
672
|
+
borderPrimary: string;
|
|
673
|
+
borderHoverPrimary: string;
|
|
674
|
+
borderPressedPrimary: string;
|
|
675
|
+
borderFocusPrimary: string;
|
|
676
|
+
borderDisabledPrimary: string;
|
|
677
|
+
rippleColorPrimary: string;
|
|
678
|
+
colorInfo: string;
|
|
679
|
+
colorHoverInfo: string;
|
|
680
|
+
colorPressedInfo: string;
|
|
681
|
+
colorFocusInfo: string;
|
|
682
|
+
colorDisabledInfo: string;
|
|
683
|
+
textColorInfo: string;
|
|
684
|
+
textColorHoverInfo: string;
|
|
685
|
+
textColorPressedInfo: string;
|
|
686
|
+
textColorFocusInfo: string;
|
|
687
|
+
textColorDisabledInfo: string;
|
|
688
|
+
textColorTextInfo: string;
|
|
689
|
+
textColorTextHoverInfo: string;
|
|
690
|
+
textColorTextPressedInfo: string;
|
|
691
|
+
textColorTextFocusInfo: string;
|
|
692
|
+
textColorTextDisabledInfo: string;
|
|
693
|
+
textColorGhostInfo: string;
|
|
694
|
+
textColorGhostHoverInfo: string;
|
|
695
|
+
textColorGhostPressedInfo: string;
|
|
696
|
+
textColorGhostFocusInfo: string;
|
|
697
|
+
textColorGhostDisabledInfo: string;
|
|
698
|
+
borderInfo: string;
|
|
699
|
+
borderHoverInfo: string;
|
|
700
|
+
borderPressedInfo: string;
|
|
701
|
+
borderFocusInfo: string;
|
|
702
|
+
borderDisabledInfo: string;
|
|
703
|
+
rippleColorInfo: string;
|
|
704
|
+
colorSuccess: string;
|
|
705
|
+
colorHoverSuccess: string;
|
|
706
|
+
colorPressedSuccess: string;
|
|
707
|
+
colorFocusSuccess: string;
|
|
708
|
+
colorDisabledSuccess: string;
|
|
709
|
+
textColorSuccess: string;
|
|
710
|
+
textColorHoverSuccess: string;
|
|
711
|
+
textColorPressedSuccess: string;
|
|
712
|
+
textColorFocusSuccess: string;
|
|
713
|
+
textColorDisabledSuccess: string;
|
|
714
|
+
textColorTextSuccess: string;
|
|
715
|
+
textColorTextHoverSuccess: string;
|
|
716
|
+
textColorTextPressedSuccess: string;
|
|
717
|
+
textColorTextFocusSuccess: string;
|
|
718
|
+
textColorTextDisabledSuccess: string;
|
|
719
|
+
textColorGhostSuccess: string;
|
|
720
|
+
textColorGhostHoverSuccess: string;
|
|
721
|
+
textColorGhostPressedSuccess: string;
|
|
722
|
+
textColorGhostFocusSuccess: string;
|
|
723
|
+
textColorGhostDisabledSuccess: string;
|
|
724
|
+
borderSuccess: string;
|
|
725
|
+
borderHoverSuccess: string;
|
|
726
|
+
borderPressedSuccess: string;
|
|
727
|
+
borderFocusSuccess: string;
|
|
728
|
+
borderDisabledSuccess: string;
|
|
729
|
+
rippleColorSuccess: string;
|
|
730
|
+
colorWarning: string;
|
|
731
|
+
colorHoverWarning: string;
|
|
732
|
+
colorPressedWarning: string;
|
|
733
|
+
colorFocusWarning: string;
|
|
734
|
+
colorDisabledWarning: string;
|
|
735
|
+
textColorWarning: string;
|
|
736
|
+
textColorHoverWarning: string;
|
|
737
|
+
textColorPressedWarning: string;
|
|
738
|
+
textColorFocusWarning: string;
|
|
739
|
+
textColorDisabledWarning: string;
|
|
740
|
+
textColorTextWarning: string;
|
|
741
|
+
textColorTextHoverWarning: string;
|
|
742
|
+
textColorTextPressedWarning: string;
|
|
743
|
+
textColorTextFocusWarning: string;
|
|
744
|
+
textColorTextDisabledWarning: string;
|
|
745
|
+
textColorGhostWarning: string;
|
|
746
|
+
textColorGhostHoverWarning: string;
|
|
747
|
+
textColorGhostPressedWarning: string;
|
|
748
|
+
textColorGhostFocusWarning: string;
|
|
749
|
+
textColorGhostDisabledWarning: string;
|
|
750
|
+
borderWarning: string;
|
|
751
|
+
borderHoverWarning: string;
|
|
752
|
+
borderPressedWarning: string;
|
|
753
|
+
borderFocusWarning: string;
|
|
754
|
+
borderDisabledWarning: string;
|
|
755
|
+
rippleColorWarning: string;
|
|
756
|
+
colorError: string;
|
|
757
|
+
colorHoverError: string;
|
|
758
|
+
colorPressedError: string;
|
|
759
|
+
colorFocusError: string;
|
|
760
|
+
colorDisabledError: string;
|
|
761
|
+
textColorError: string;
|
|
762
|
+
textColorHoverError: string;
|
|
763
|
+
textColorPressedError: string;
|
|
764
|
+
textColorFocusError: string;
|
|
765
|
+
textColorDisabledError: string;
|
|
766
|
+
textColorTextError: string;
|
|
767
|
+
textColorTextHoverError: string;
|
|
768
|
+
textColorTextPressedError: string;
|
|
769
|
+
textColorTextFocusError: string;
|
|
770
|
+
textColorTextDisabledError: string;
|
|
771
|
+
textColorGhostError: string;
|
|
772
|
+
textColorGhostHoverError: string;
|
|
773
|
+
textColorGhostPressedError: string;
|
|
774
|
+
textColorGhostFocusError: string;
|
|
775
|
+
textColorGhostDisabledError: string;
|
|
776
|
+
borderError: string;
|
|
777
|
+
borderHoverError: string;
|
|
778
|
+
borderPressedError: string;
|
|
779
|
+
borderFocusError: string;
|
|
780
|
+
borderDisabledError: string;
|
|
781
|
+
rippleColorError: string;
|
|
782
|
+
waveOpacity: string;
|
|
783
|
+
fontWeight: string;
|
|
784
|
+
fontWeightStrong: string;
|
|
785
|
+
paddingTiny: string;
|
|
786
|
+
paddingSmall: string;
|
|
787
|
+
paddingMedium: string;
|
|
788
|
+
paddingLarge: string;
|
|
789
|
+
paddingRoundTiny: string;
|
|
790
|
+
paddingRoundSmall: string;
|
|
791
|
+
paddingRoundMedium: string;
|
|
792
|
+
paddingRoundLarge: string;
|
|
793
|
+
iconMarginTiny: string;
|
|
794
|
+
iconMarginSmall: string;
|
|
795
|
+
iconMarginMedium: string;
|
|
796
|
+
iconMarginLarge: string;
|
|
797
|
+
iconSizeTiny: string;
|
|
798
|
+
iconSizeSmall: string;
|
|
799
|
+
iconSizeMedium: string;
|
|
800
|
+
iconSizeLarge: string;
|
|
801
|
+
rippleDuration: string;
|
|
802
|
+
}, any>;
|
|
803
|
+
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
804
|
+
countTextColor: string;
|
|
805
|
+
heightTiny: string;
|
|
806
|
+
heightSmall: string;
|
|
807
|
+
heightMedium: string;
|
|
808
|
+
heightLarge: string;
|
|
809
|
+
fontSizeTiny: string;
|
|
810
|
+
fontSizeSmall: string;
|
|
811
|
+
fontSizeMedium: string;
|
|
812
|
+
fontSizeLarge: string;
|
|
813
|
+
lineHeight: string;
|
|
814
|
+
lineHeightTextarea: string;
|
|
815
|
+
borderRadius: string;
|
|
816
|
+
iconSize: string;
|
|
817
|
+
groupLabelColor: string;
|
|
818
|
+
groupLabelTextColor: string;
|
|
819
|
+
textColor: string;
|
|
820
|
+
textColorDisabled: string;
|
|
821
|
+
textDecorationColor: string;
|
|
822
|
+
caretColor: string;
|
|
823
|
+
placeholderColor: string;
|
|
824
|
+
placeholderColorDisabled: string;
|
|
825
|
+
color: string;
|
|
826
|
+
colorDisabled: string;
|
|
827
|
+
colorFocus: string;
|
|
828
|
+
groupLabelBorder: string;
|
|
829
|
+
border: string;
|
|
830
|
+
borderHover: string;
|
|
831
|
+
borderDisabled: string;
|
|
832
|
+
borderFocus: string;
|
|
833
|
+
boxShadowFocus: string;
|
|
834
|
+
loadingColor: string;
|
|
835
|
+
loadingColorWarning: string;
|
|
836
|
+
borderWarning: string;
|
|
837
|
+
borderHoverWarning: string;
|
|
838
|
+
colorFocusWarning: string;
|
|
839
|
+
borderFocusWarning: string;
|
|
840
|
+
boxShadowFocusWarning: string;
|
|
841
|
+
caretColorWarning: string;
|
|
842
|
+
loadingColorError: string;
|
|
843
|
+
borderError: string;
|
|
844
|
+
borderHoverError: string;
|
|
845
|
+
colorFocusError: string;
|
|
846
|
+
borderFocusError: string;
|
|
847
|
+
boxShadowFocusError: string;
|
|
848
|
+
caretColorError: string;
|
|
849
|
+
clearColor: string;
|
|
850
|
+
clearColorHover: string;
|
|
851
|
+
clearColorPressed: string;
|
|
852
|
+
iconColor: string;
|
|
853
|
+
iconColorDisabled: string;
|
|
854
|
+
iconColorHover: string;
|
|
855
|
+
iconColorPressed: string;
|
|
856
|
+
suffixTextColor: string;
|
|
857
|
+
paddingTiny: string;
|
|
858
|
+
paddingSmall: string;
|
|
859
|
+
paddingMedium: string;
|
|
860
|
+
paddingLarge: string;
|
|
861
|
+
clearSize: string;
|
|
862
|
+
}, any>;
|
|
863
|
+
}>>>;
|
|
864
|
+
}, {
|
|
865
|
+
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
866
|
+
inputInstRef: import("vue").Ref<{
|
|
867
|
+
wrapperElRef: HTMLElement | null;
|
|
868
|
+
textareaElRef: HTMLTextAreaElement | null;
|
|
869
|
+
inputElRef: HTMLInputElement | null;
|
|
870
|
+
isCompositing: boolean;
|
|
871
|
+
blur: () => void;
|
|
872
|
+
focus: () => void;
|
|
873
|
+
select: () => void;
|
|
874
|
+
activate: () => void;
|
|
875
|
+
deactivate: () => void;
|
|
876
|
+
} | null>;
|
|
877
|
+
minusButtonInstRef: import("vue").Ref<{
|
|
878
|
+
$el: HTMLElement;
|
|
879
|
+
} | null>;
|
|
880
|
+
addButtonInstRef: import("vue").Ref<{
|
|
881
|
+
$el: HTMLElement;
|
|
882
|
+
} | null>;
|
|
883
|
+
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
884
|
+
mergedBordered: import("vue").ComputedRef<boolean>;
|
|
885
|
+
uncontrolledValue: import("vue").Ref<number | null>;
|
|
886
|
+
mergedValue: import("vue").ComputedRef<number | null>;
|
|
887
|
+
mergedPlaceholder: import("vue").ComputedRef<string>;
|
|
888
|
+
displayedValueInvalid: import("vue").ComputedRef<boolean>;
|
|
889
|
+
mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
|
|
890
|
+
mergedDisabled: import("vue").ComputedRef<boolean>;
|
|
891
|
+
displayedValue: import("vue").Ref<string>;
|
|
892
|
+
addable: import("vue").ComputedRef<boolean>;
|
|
893
|
+
minusable: import("vue").ComputedRef<boolean>;
|
|
894
|
+
mergedStatus: import("vue").ComputedRef<import("naive-ui/es/form/src/interface").FormValidationStatus | undefined>;
|
|
895
|
+
handleFocus: (e: FocusEvent) => void;
|
|
896
|
+
handleBlur: (e: FocusEvent) => void;
|
|
897
|
+
handleClear: (e: MouseEvent) => void;
|
|
898
|
+
handleMouseDown: (e: MouseEvent) => void;
|
|
899
|
+
handleAddClick: () => void;
|
|
900
|
+
handleMinusClick: () => void;
|
|
901
|
+
handleAddMousedown: () => void;
|
|
902
|
+
handleMinusMousedown: () => void;
|
|
903
|
+
handleKeyDown: (e: KeyboardEvent) => void;
|
|
904
|
+
handleUpdateDisplayedValue: (value: string) => void;
|
|
905
|
+
mergedTheme: import("vue").ComputedRef<{
|
|
906
|
+
common: {
|
|
907
|
+
baseColor: string;
|
|
908
|
+
primaryColor: string;
|
|
909
|
+
primaryColorHover: string;
|
|
910
|
+
primaryColorPressed: string;
|
|
911
|
+
primaryColorSuppl: string;
|
|
912
|
+
infoColor: string;
|
|
913
|
+
infoColorHover: string;
|
|
914
|
+
infoColorPressed: string;
|
|
915
|
+
infoColorSuppl: string;
|
|
916
|
+
successColor: string;
|
|
917
|
+
successColorHover: string;
|
|
918
|
+
successColorPressed: string;
|
|
919
|
+
successColorSuppl: string;
|
|
920
|
+
warningColor: string;
|
|
921
|
+
warningColorHover: string;
|
|
922
|
+
warningColorPressed: string;
|
|
923
|
+
warningColorSuppl: string;
|
|
924
|
+
errorColor: string;
|
|
925
|
+
errorColorHover: string;
|
|
926
|
+
errorColorPressed: string;
|
|
927
|
+
errorColorSuppl: string;
|
|
928
|
+
textColorBase: string;
|
|
929
|
+
textColor1: string;
|
|
930
|
+
textColor2: string;
|
|
931
|
+
textColor3: string;
|
|
932
|
+
textColorDisabled: string;
|
|
933
|
+
placeholderColor: string;
|
|
934
|
+
placeholderColorDisabled: string;
|
|
935
|
+
iconColor: string;
|
|
936
|
+
iconColorHover: string;
|
|
937
|
+
iconColorPressed: string;
|
|
938
|
+
iconColorDisabled: string;
|
|
939
|
+
opacity1: string;
|
|
940
|
+
opacity2: string;
|
|
941
|
+
opacity3: string;
|
|
942
|
+
opacity4: string;
|
|
943
|
+
opacity5: string;
|
|
944
|
+
dividerColor: string;
|
|
945
|
+
borderColor: string;
|
|
946
|
+
closeIconColor: string;
|
|
947
|
+
closeIconColorHover: string;
|
|
948
|
+
closeIconColorPressed: string;
|
|
949
|
+
closeColorHover: string;
|
|
950
|
+
closeColorPressed: string;
|
|
951
|
+
clearColor: string;
|
|
952
|
+
clearColorHover: string;
|
|
953
|
+
clearColorPressed: string;
|
|
954
|
+
scrollbarColor: string;
|
|
955
|
+
scrollbarColorHover: string;
|
|
956
|
+
scrollbarWidth: string;
|
|
957
|
+
scrollbarHeight: string;
|
|
958
|
+
scrollbarBorderRadius: string;
|
|
959
|
+
progressRailColor: string;
|
|
960
|
+
railColor: string;
|
|
961
|
+
popoverColor: string;
|
|
962
|
+
tableColor: string;
|
|
963
|
+
cardColor: string;
|
|
964
|
+
modalColor: string;
|
|
965
|
+
bodyColor: string;
|
|
966
|
+
tagColor: string;
|
|
967
|
+
avatarColor: string;
|
|
968
|
+
invertedColor: string;
|
|
969
|
+
inputColor: string;
|
|
970
|
+
codeColor: string;
|
|
971
|
+
tabColor: string;
|
|
972
|
+
actionColor: string;
|
|
973
|
+
tableHeaderColor: string;
|
|
974
|
+
hoverColor: string;
|
|
975
|
+
tableColorHover: string;
|
|
976
|
+
tableColorStriped: string;
|
|
977
|
+
pressedColor: string;
|
|
978
|
+
opacityDisabled: string;
|
|
979
|
+
inputColorDisabled: string;
|
|
980
|
+
buttonColor2: string;
|
|
981
|
+
buttonColor2Hover: string;
|
|
982
|
+
buttonColor2Pressed: string;
|
|
983
|
+
boxShadow1: string;
|
|
984
|
+
boxShadow2: string;
|
|
985
|
+
boxShadow3: string;
|
|
986
|
+
fontFamily: string;
|
|
987
|
+
fontFamilyMono: string;
|
|
988
|
+
fontWeight: string;
|
|
989
|
+
fontWeightStrong: string;
|
|
990
|
+
cubicBezierEaseInOut: string;
|
|
991
|
+
cubicBezierEaseOut: string;
|
|
992
|
+
cubicBezierEaseIn: string;
|
|
993
|
+
borderRadius: string;
|
|
994
|
+
borderRadiusSmall: string;
|
|
995
|
+
fontSize: string;
|
|
996
|
+
fontSizeMini: string;
|
|
997
|
+
fontSizeTiny: string;
|
|
998
|
+
fontSizeSmall: string;
|
|
999
|
+
fontSizeMedium: string;
|
|
1000
|
+
fontSizeLarge: string;
|
|
1001
|
+
fontSizeHuge: string;
|
|
1002
|
+
lineHeight: string;
|
|
1003
|
+
heightMini: string;
|
|
1004
|
+
heightTiny: string;
|
|
1005
|
+
heightSmall: string;
|
|
1006
|
+
heightMedium: string;
|
|
1007
|
+
heightLarge: string;
|
|
1008
|
+
heightHuge: string;
|
|
1009
|
+
name: "common";
|
|
1010
|
+
};
|
|
1011
|
+
self: {
|
|
1012
|
+
iconColorDisabled: string;
|
|
1013
|
+
};
|
|
1014
|
+
peers: {
|
|
1015
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
1016
|
+
heightTiny: string;
|
|
1017
|
+
heightSmall: string;
|
|
1018
|
+
heightMedium: string;
|
|
1019
|
+
heightLarge: string;
|
|
1020
|
+
borderRadiusTiny: string;
|
|
1021
|
+
borderRadiusSmall: string;
|
|
1022
|
+
borderRadiusMedium: string;
|
|
1023
|
+
borderRadiusLarge: string;
|
|
1024
|
+
fontSizeTiny: string;
|
|
1025
|
+
fontSizeSmall: string;
|
|
1026
|
+
fontSizeMedium: string;
|
|
1027
|
+
fontSizeLarge: string;
|
|
1028
|
+
opacityDisabled: string;
|
|
1029
|
+
colorOpacitySecondary: string;
|
|
1030
|
+
colorOpacitySecondaryHover: string;
|
|
1031
|
+
colorOpacitySecondaryPressed: string;
|
|
1032
|
+
colorSecondary: string;
|
|
1033
|
+
colorSecondaryHover: string;
|
|
1034
|
+
colorSecondaryPressed: string;
|
|
1035
|
+
colorTertiary: string;
|
|
1036
|
+
colorTertiaryHover: string;
|
|
1037
|
+
colorTertiaryPressed: string;
|
|
1038
|
+
colorQuaternary: string;
|
|
1039
|
+
colorQuaternaryHover: string;
|
|
1040
|
+
colorQuaternaryPressed: string;
|
|
1041
|
+
color: string;
|
|
1042
|
+
colorHover: string;
|
|
1043
|
+
colorPressed: string;
|
|
1044
|
+
colorFocus: string;
|
|
1045
|
+
colorDisabled: string;
|
|
1046
|
+
textColor: string;
|
|
1047
|
+
textColorTertiary: string;
|
|
1048
|
+
textColorHover: string;
|
|
1049
|
+
textColorPressed: string;
|
|
1050
|
+
textColorFocus: string;
|
|
1051
|
+
textColorDisabled: string;
|
|
1052
|
+
textColorText: string;
|
|
1053
|
+
textColorTextHover: string;
|
|
1054
|
+
textColorTextPressed: string;
|
|
1055
|
+
textColorTextFocus: string;
|
|
1056
|
+
textColorTextDisabled: string;
|
|
1057
|
+
textColorGhost: string;
|
|
1058
|
+
textColorGhostHover: string;
|
|
1059
|
+
textColorGhostPressed: string;
|
|
1060
|
+
textColorGhostFocus: string;
|
|
1061
|
+
textColorGhostDisabled: string;
|
|
1062
|
+
border: string;
|
|
1063
|
+
borderHover: string;
|
|
1064
|
+
borderPressed: string;
|
|
1065
|
+
borderFocus: string;
|
|
1066
|
+
borderDisabled: string;
|
|
1067
|
+
rippleColor: string;
|
|
1068
|
+
colorPrimary: string;
|
|
1069
|
+
colorHoverPrimary: string;
|
|
1070
|
+
colorPressedPrimary: string;
|
|
1071
|
+
colorFocusPrimary: string;
|
|
1072
|
+
colorDisabledPrimary: string;
|
|
1073
|
+
textColorPrimary: string;
|
|
1074
|
+
textColorHoverPrimary: string;
|
|
1075
|
+
textColorPressedPrimary: string;
|
|
1076
|
+
textColorFocusPrimary: string;
|
|
1077
|
+
textColorDisabledPrimary: string;
|
|
1078
|
+
textColorTextPrimary: string;
|
|
1079
|
+
textColorTextHoverPrimary: string;
|
|
1080
|
+
textColorTextPressedPrimary: string;
|
|
1081
|
+
textColorTextFocusPrimary: string;
|
|
1082
|
+
textColorTextDisabledPrimary: string;
|
|
1083
|
+
textColorGhostPrimary: string;
|
|
1084
|
+
textColorGhostHoverPrimary: string;
|
|
1085
|
+
textColorGhostPressedPrimary: string;
|
|
1086
|
+
textColorGhostFocusPrimary: string;
|
|
1087
|
+
textColorGhostDisabledPrimary: string;
|
|
1088
|
+
borderPrimary: string;
|
|
1089
|
+
borderHoverPrimary: string;
|
|
1090
|
+
borderPressedPrimary: string;
|
|
1091
|
+
borderFocusPrimary: string;
|
|
1092
|
+
borderDisabledPrimary: string;
|
|
1093
|
+
rippleColorPrimary: string;
|
|
1094
|
+
colorInfo: string;
|
|
1095
|
+
colorHoverInfo: string;
|
|
1096
|
+
colorPressedInfo: string;
|
|
1097
|
+
colorFocusInfo: string;
|
|
1098
|
+
colorDisabledInfo: string;
|
|
1099
|
+
textColorInfo: string;
|
|
1100
|
+
textColorHoverInfo: string;
|
|
1101
|
+
textColorPressedInfo: string;
|
|
1102
|
+
textColorFocusInfo: string;
|
|
1103
|
+
textColorDisabledInfo: string;
|
|
1104
|
+
textColorTextInfo: string;
|
|
1105
|
+
textColorTextHoverInfo: string;
|
|
1106
|
+
textColorTextPressedInfo: string;
|
|
1107
|
+
textColorTextFocusInfo: string;
|
|
1108
|
+
textColorTextDisabledInfo: string;
|
|
1109
|
+
textColorGhostInfo: string;
|
|
1110
|
+
textColorGhostHoverInfo: string;
|
|
1111
|
+
textColorGhostPressedInfo: string;
|
|
1112
|
+
textColorGhostFocusInfo: string;
|
|
1113
|
+
textColorGhostDisabledInfo: string;
|
|
1114
|
+
borderInfo: string;
|
|
1115
|
+
borderHoverInfo: string;
|
|
1116
|
+
borderPressedInfo: string;
|
|
1117
|
+
borderFocusInfo: string;
|
|
1118
|
+
borderDisabledInfo: string;
|
|
1119
|
+
rippleColorInfo: string;
|
|
1120
|
+
colorSuccess: string;
|
|
1121
|
+
colorHoverSuccess: string;
|
|
1122
|
+
colorPressedSuccess: string;
|
|
1123
|
+
colorFocusSuccess: string;
|
|
1124
|
+
colorDisabledSuccess: string;
|
|
1125
|
+
textColorSuccess: string;
|
|
1126
|
+
textColorHoverSuccess: string;
|
|
1127
|
+
textColorPressedSuccess: string;
|
|
1128
|
+
textColorFocusSuccess: string;
|
|
1129
|
+
textColorDisabledSuccess: string;
|
|
1130
|
+
textColorTextSuccess: string;
|
|
1131
|
+
textColorTextHoverSuccess: string;
|
|
1132
|
+
textColorTextPressedSuccess: string;
|
|
1133
|
+
textColorTextFocusSuccess: string;
|
|
1134
|
+
textColorTextDisabledSuccess: string;
|
|
1135
|
+
textColorGhostSuccess: string;
|
|
1136
|
+
textColorGhostHoverSuccess: string;
|
|
1137
|
+
textColorGhostPressedSuccess: string;
|
|
1138
|
+
textColorGhostFocusSuccess: string;
|
|
1139
|
+
textColorGhostDisabledSuccess: string;
|
|
1140
|
+
borderSuccess: string;
|
|
1141
|
+
borderHoverSuccess: string;
|
|
1142
|
+
borderPressedSuccess: string;
|
|
1143
|
+
borderFocusSuccess: string;
|
|
1144
|
+
borderDisabledSuccess: string;
|
|
1145
|
+
rippleColorSuccess: string;
|
|
1146
|
+
colorWarning: string;
|
|
1147
|
+
colorHoverWarning: string;
|
|
1148
|
+
colorPressedWarning: string;
|
|
1149
|
+
colorFocusWarning: string;
|
|
1150
|
+
colorDisabledWarning: string;
|
|
1151
|
+
textColorWarning: string;
|
|
1152
|
+
textColorHoverWarning: string;
|
|
1153
|
+
textColorPressedWarning: string;
|
|
1154
|
+
textColorFocusWarning: string;
|
|
1155
|
+
textColorDisabledWarning: string;
|
|
1156
|
+
textColorTextWarning: string;
|
|
1157
|
+
textColorTextHoverWarning: string;
|
|
1158
|
+
textColorTextPressedWarning: string;
|
|
1159
|
+
textColorTextFocusWarning: string;
|
|
1160
|
+
textColorTextDisabledWarning: string;
|
|
1161
|
+
textColorGhostWarning: string;
|
|
1162
|
+
textColorGhostHoverWarning: string;
|
|
1163
|
+
textColorGhostPressedWarning: string;
|
|
1164
|
+
textColorGhostFocusWarning: string;
|
|
1165
|
+
textColorGhostDisabledWarning: string;
|
|
1166
|
+
borderWarning: string;
|
|
1167
|
+
borderHoverWarning: string;
|
|
1168
|
+
borderPressedWarning: string;
|
|
1169
|
+
borderFocusWarning: string;
|
|
1170
|
+
borderDisabledWarning: string;
|
|
1171
|
+
rippleColorWarning: string;
|
|
1172
|
+
colorError: string;
|
|
1173
|
+
colorHoverError: string;
|
|
1174
|
+
colorPressedError: string;
|
|
1175
|
+
colorFocusError: string;
|
|
1176
|
+
colorDisabledError: string;
|
|
1177
|
+
textColorError: string;
|
|
1178
|
+
textColorHoverError: string;
|
|
1179
|
+
textColorPressedError: string;
|
|
1180
|
+
textColorFocusError: string;
|
|
1181
|
+
textColorDisabledError: string;
|
|
1182
|
+
textColorTextError: string;
|
|
1183
|
+
textColorTextHoverError: string;
|
|
1184
|
+
textColorTextPressedError: string;
|
|
1185
|
+
textColorTextFocusError: string;
|
|
1186
|
+
textColorTextDisabledError: string;
|
|
1187
|
+
textColorGhostError: string;
|
|
1188
|
+
textColorGhostHoverError: string;
|
|
1189
|
+
textColorGhostPressedError: string;
|
|
1190
|
+
textColorGhostFocusError: string;
|
|
1191
|
+
textColorGhostDisabledError: string;
|
|
1192
|
+
borderError: string;
|
|
1193
|
+
borderHoverError: string;
|
|
1194
|
+
borderPressedError: string;
|
|
1195
|
+
borderFocusError: string;
|
|
1196
|
+
borderDisabledError: string;
|
|
1197
|
+
rippleColorError: string;
|
|
1198
|
+
waveOpacity: string;
|
|
1199
|
+
fontWeight: string;
|
|
1200
|
+
fontWeightStrong: string;
|
|
1201
|
+
paddingTiny: string;
|
|
1202
|
+
paddingSmall: string;
|
|
1203
|
+
paddingMedium: string;
|
|
1204
|
+
paddingLarge: string;
|
|
1205
|
+
paddingRoundTiny: string;
|
|
1206
|
+
paddingRoundSmall: string;
|
|
1207
|
+
paddingRoundMedium: string;
|
|
1208
|
+
paddingRoundLarge: string;
|
|
1209
|
+
iconMarginTiny: string;
|
|
1210
|
+
iconMarginSmall: string;
|
|
1211
|
+
iconMarginMedium: string;
|
|
1212
|
+
iconMarginLarge: string;
|
|
1213
|
+
iconSizeTiny: string;
|
|
1214
|
+
iconSizeSmall: string;
|
|
1215
|
+
iconSizeMedium: string;
|
|
1216
|
+
iconSizeLarge: string;
|
|
1217
|
+
rippleDuration: string;
|
|
1218
|
+
}, any>;
|
|
1219
|
+
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
1220
|
+
countTextColor: string;
|
|
1221
|
+
heightTiny: string;
|
|
1222
|
+
heightSmall: string;
|
|
1223
|
+
heightMedium: string;
|
|
1224
|
+
heightLarge: string;
|
|
1225
|
+
fontSizeTiny: string;
|
|
1226
|
+
fontSizeSmall: string;
|
|
1227
|
+
fontSizeMedium: string;
|
|
1228
|
+
fontSizeLarge: string;
|
|
1229
|
+
lineHeight: string;
|
|
1230
|
+
lineHeightTextarea: string;
|
|
1231
|
+
borderRadius: string;
|
|
1232
|
+
iconSize: string;
|
|
1233
|
+
groupLabelColor: string;
|
|
1234
|
+
groupLabelTextColor: string;
|
|
1235
|
+
textColor: string;
|
|
1236
|
+
textColorDisabled: string;
|
|
1237
|
+
textDecorationColor: string;
|
|
1238
|
+
caretColor: string;
|
|
1239
|
+
placeholderColor: string;
|
|
1240
|
+
placeholderColorDisabled: string;
|
|
1241
|
+
color: string;
|
|
1242
|
+
colorDisabled: string;
|
|
1243
|
+
colorFocus: string;
|
|
1244
|
+
groupLabelBorder: string;
|
|
1245
|
+
border: string;
|
|
1246
|
+
borderHover: string;
|
|
1247
|
+
borderDisabled: string;
|
|
1248
|
+
borderFocus: string;
|
|
1249
|
+
boxShadowFocus: string;
|
|
1250
|
+
loadingColor: string;
|
|
1251
|
+
loadingColorWarning: string;
|
|
1252
|
+
borderWarning: string;
|
|
1253
|
+
borderHoverWarning: string;
|
|
1254
|
+
colorFocusWarning: string;
|
|
1255
|
+
borderFocusWarning: string;
|
|
1256
|
+
boxShadowFocusWarning: string;
|
|
1257
|
+
caretColorWarning: string;
|
|
1258
|
+
loadingColorError: string;
|
|
1259
|
+
borderError: string;
|
|
1260
|
+
borderHoverError: string;
|
|
1261
|
+
colorFocusError: string;
|
|
1262
|
+
borderFocusError: string;
|
|
1263
|
+
boxShadowFocusError: string;
|
|
1264
|
+
caretColorError: string;
|
|
1265
|
+
clearColor: string;
|
|
1266
|
+
clearColorHover: string;
|
|
1267
|
+
clearColorPressed: string;
|
|
1268
|
+
iconColor: string;
|
|
1269
|
+
iconColorDisabled: string;
|
|
1270
|
+
iconColorHover: string;
|
|
1271
|
+
iconColorPressed: string;
|
|
1272
|
+
suffixTextColor: string;
|
|
1273
|
+
paddingTiny: string;
|
|
1274
|
+
paddingSmall: string;
|
|
1275
|
+
paddingMedium: string;
|
|
1276
|
+
paddingLarge: string;
|
|
1277
|
+
clearSize: string;
|
|
1278
|
+
}, any>;
|
|
1279
|
+
};
|
|
1280
|
+
peerOverrides: {
|
|
1281
|
+
Button?: {
|
|
1282
|
+
peers?: {
|
|
1283
|
+
[x: string]: any;
|
|
1284
|
+
} | undefined;
|
|
1285
|
+
} | undefined;
|
|
1286
|
+
Input?: {
|
|
1287
|
+
peers?: {
|
|
1288
|
+
[x: string]: any;
|
|
1289
|
+
} | undefined;
|
|
1290
|
+
} | undefined;
|
|
1291
|
+
};
|
|
1292
|
+
}>;
|
|
1293
|
+
inputThemeOverrides: {
|
|
1294
|
+
paddingSmall: string;
|
|
1295
|
+
paddingMedium: string;
|
|
1296
|
+
paddingLarge: string;
|
|
1297
|
+
};
|
|
1298
|
+
buttonThemeOverrides: import("vue").ComputedRef<{
|
|
1299
|
+
textColorTextDisabled: string;
|
|
1300
|
+
opacityDisabled: string;
|
|
1301
|
+
}>;
|
|
1302
|
+
focus: () => void;
|
|
1303
|
+
blur: () => void;
|
|
1304
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1305
|
+
autofocus: BooleanConstructor;
|
|
1306
|
+
loading: {
|
|
1307
|
+
type: BooleanConstructor;
|
|
1308
|
+
default: undefined;
|
|
1309
|
+
};
|
|
1310
|
+
placeholder: StringConstructor;
|
|
1311
|
+
defaultValue: {
|
|
1312
|
+
type: import("vue").PropType<number | null>;
|
|
1313
|
+
default: null;
|
|
1314
|
+
};
|
|
1315
|
+
value: import("vue").PropType<number | null>;
|
|
1316
|
+
step: {
|
|
1317
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
1318
|
+
default: number;
|
|
1319
|
+
};
|
|
1320
|
+
min: (NumberConstructor | StringConstructor)[];
|
|
1321
|
+
max: (NumberConstructor | StringConstructor)[];
|
|
1322
|
+
size: import("vue").PropType<"small" | "medium" | "large">;
|
|
1323
|
+
disabled: {
|
|
1324
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1325
|
+
default: undefined;
|
|
1326
|
+
};
|
|
1327
|
+
validator: import("vue").PropType<(value: number) => boolean>;
|
|
1328
|
+
bordered: {
|
|
1329
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
1330
|
+
default: undefined;
|
|
1331
|
+
};
|
|
1332
|
+
showButton: {
|
|
1333
|
+
type: BooleanConstructor;
|
|
1334
|
+
default: boolean;
|
|
1335
|
+
};
|
|
1336
|
+
buttonPlacement: {
|
|
1337
|
+
type: import("vue").PropType<"right" | "both">;
|
|
1338
|
+
default: string;
|
|
1339
|
+
};
|
|
1340
|
+
readonly: BooleanConstructor;
|
|
1341
|
+
clearable: BooleanConstructor;
|
|
1342
|
+
keyboard: {
|
|
1343
|
+
type: import("vue").PropType<{
|
|
1344
|
+
ArrowUp?: boolean | undefined;
|
|
1345
|
+
ArrowDown?: boolean | undefined;
|
|
1346
|
+
}>;
|
|
1347
|
+
default: {};
|
|
1348
|
+
};
|
|
1349
|
+
updateValueOnInput: {
|
|
1350
|
+
type: BooleanConstructor;
|
|
1351
|
+
default: boolean;
|
|
1352
|
+
};
|
|
1353
|
+
parse: import("vue").PropType<(input: string) => number | null>;
|
|
1354
|
+
format: import("vue").PropType<(value: number | null) => string>;
|
|
1355
|
+
precision: NumberConstructor;
|
|
1356
|
+
status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
1357
|
+
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
1358
|
+
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
1359
|
+
onFocus: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
1360
|
+
onBlur: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: FocusEvent) => void>>;
|
|
1361
|
+
onClear: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
1362
|
+
onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
1363
|
+
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"InputNumber", {
|
|
1364
|
+
iconColorDisabled: string;
|
|
1365
|
+
}, {
|
|
1366
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
1367
|
+
heightTiny: string;
|
|
1368
|
+
heightSmall: string;
|
|
1369
|
+
heightMedium: string;
|
|
1370
|
+
heightLarge: string;
|
|
1371
|
+
borderRadiusTiny: string;
|
|
1372
|
+
borderRadiusSmall: string;
|
|
1373
|
+
borderRadiusMedium: string;
|
|
1374
|
+
borderRadiusLarge: string;
|
|
1375
|
+
fontSizeTiny: string;
|
|
1376
|
+
fontSizeSmall: string;
|
|
1377
|
+
fontSizeMedium: string;
|
|
1378
|
+
fontSizeLarge: string;
|
|
1379
|
+
opacityDisabled: string;
|
|
1380
|
+
colorOpacitySecondary: string;
|
|
1381
|
+
colorOpacitySecondaryHover: string;
|
|
1382
|
+
colorOpacitySecondaryPressed: string;
|
|
1383
|
+
colorSecondary: string;
|
|
1384
|
+
colorSecondaryHover: string;
|
|
1385
|
+
colorSecondaryPressed: string;
|
|
1386
|
+
colorTertiary: string;
|
|
1387
|
+
colorTertiaryHover: string;
|
|
1388
|
+
colorTertiaryPressed: string;
|
|
1389
|
+
colorQuaternary: string;
|
|
1390
|
+
colorQuaternaryHover: string;
|
|
1391
|
+
colorQuaternaryPressed: string;
|
|
1392
|
+
color: string;
|
|
1393
|
+
colorHover: string;
|
|
1394
|
+
colorPressed: string;
|
|
1395
|
+
colorFocus: string;
|
|
1396
|
+
colorDisabled: string;
|
|
1397
|
+
textColor: string;
|
|
1398
|
+
textColorTertiary: string;
|
|
1399
|
+
textColorHover: string;
|
|
1400
|
+
textColorPressed: string;
|
|
1401
|
+
textColorFocus: string;
|
|
1402
|
+
textColorDisabled: string;
|
|
1403
|
+
textColorText: string;
|
|
1404
|
+
textColorTextHover: string;
|
|
1405
|
+
textColorTextPressed: string;
|
|
1406
|
+
textColorTextFocus: string;
|
|
1407
|
+
textColorTextDisabled: string;
|
|
1408
|
+
textColorGhost: string;
|
|
1409
|
+
textColorGhostHover: string;
|
|
1410
|
+
textColorGhostPressed: string;
|
|
1411
|
+
textColorGhostFocus: string;
|
|
1412
|
+
textColorGhostDisabled: string;
|
|
1413
|
+
border: string;
|
|
1414
|
+
borderHover: string;
|
|
1415
|
+
borderPressed: string;
|
|
1416
|
+
borderFocus: string;
|
|
1417
|
+
borderDisabled: string;
|
|
1418
|
+
rippleColor: string;
|
|
1419
|
+
colorPrimary: string;
|
|
1420
|
+
colorHoverPrimary: string;
|
|
1421
|
+
colorPressedPrimary: string;
|
|
1422
|
+
colorFocusPrimary: string;
|
|
1423
|
+
colorDisabledPrimary: string;
|
|
1424
|
+
textColorPrimary: string;
|
|
1425
|
+
textColorHoverPrimary: string;
|
|
1426
|
+
textColorPressedPrimary: string;
|
|
1427
|
+
textColorFocusPrimary: string;
|
|
1428
|
+
textColorDisabledPrimary: string;
|
|
1429
|
+
textColorTextPrimary: string;
|
|
1430
|
+
textColorTextHoverPrimary: string;
|
|
1431
|
+
textColorTextPressedPrimary: string;
|
|
1432
|
+
textColorTextFocusPrimary: string;
|
|
1433
|
+
textColorTextDisabledPrimary: string;
|
|
1434
|
+
textColorGhostPrimary: string;
|
|
1435
|
+
textColorGhostHoverPrimary: string;
|
|
1436
|
+
textColorGhostPressedPrimary: string;
|
|
1437
|
+
textColorGhostFocusPrimary: string;
|
|
1438
|
+
textColorGhostDisabledPrimary: string;
|
|
1439
|
+
borderPrimary: string;
|
|
1440
|
+
borderHoverPrimary: string;
|
|
1441
|
+
borderPressedPrimary: string;
|
|
1442
|
+
borderFocusPrimary: string;
|
|
1443
|
+
borderDisabledPrimary: string;
|
|
1444
|
+
rippleColorPrimary: string;
|
|
1445
|
+
colorInfo: string;
|
|
1446
|
+
colorHoverInfo: string;
|
|
1447
|
+
colorPressedInfo: string;
|
|
1448
|
+
colorFocusInfo: string;
|
|
1449
|
+
colorDisabledInfo: string;
|
|
1450
|
+
textColorInfo: string;
|
|
1451
|
+
textColorHoverInfo: string;
|
|
1452
|
+
textColorPressedInfo: string;
|
|
1453
|
+
textColorFocusInfo: string;
|
|
1454
|
+
textColorDisabledInfo: string;
|
|
1455
|
+
textColorTextInfo: string;
|
|
1456
|
+
textColorTextHoverInfo: string;
|
|
1457
|
+
textColorTextPressedInfo: string;
|
|
1458
|
+
textColorTextFocusInfo: string;
|
|
1459
|
+
textColorTextDisabledInfo: string;
|
|
1460
|
+
textColorGhostInfo: string;
|
|
1461
|
+
textColorGhostHoverInfo: string;
|
|
1462
|
+
textColorGhostPressedInfo: string;
|
|
1463
|
+
textColorGhostFocusInfo: string;
|
|
1464
|
+
textColorGhostDisabledInfo: string;
|
|
1465
|
+
borderInfo: string;
|
|
1466
|
+
borderHoverInfo: string;
|
|
1467
|
+
borderPressedInfo: string;
|
|
1468
|
+
borderFocusInfo: string;
|
|
1469
|
+
borderDisabledInfo: string;
|
|
1470
|
+
rippleColorInfo: string;
|
|
1471
|
+
colorSuccess: string;
|
|
1472
|
+
colorHoverSuccess: string;
|
|
1473
|
+
colorPressedSuccess: string;
|
|
1474
|
+
colorFocusSuccess: string;
|
|
1475
|
+
colorDisabledSuccess: string;
|
|
1476
|
+
textColorSuccess: string;
|
|
1477
|
+
textColorHoverSuccess: string;
|
|
1478
|
+
textColorPressedSuccess: string;
|
|
1479
|
+
textColorFocusSuccess: string;
|
|
1480
|
+
textColorDisabledSuccess: string;
|
|
1481
|
+
textColorTextSuccess: string;
|
|
1482
|
+
textColorTextHoverSuccess: string;
|
|
1483
|
+
textColorTextPressedSuccess: string;
|
|
1484
|
+
textColorTextFocusSuccess: string;
|
|
1485
|
+
textColorTextDisabledSuccess: string;
|
|
1486
|
+
textColorGhostSuccess: string;
|
|
1487
|
+
textColorGhostHoverSuccess: string;
|
|
1488
|
+
textColorGhostPressedSuccess: string;
|
|
1489
|
+
textColorGhostFocusSuccess: string;
|
|
1490
|
+
textColorGhostDisabledSuccess: string;
|
|
1491
|
+
borderSuccess: string;
|
|
1492
|
+
borderHoverSuccess: string;
|
|
1493
|
+
borderPressedSuccess: string;
|
|
1494
|
+
borderFocusSuccess: string;
|
|
1495
|
+
borderDisabledSuccess: string;
|
|
1496
|
+
rippleColorSuccess: string;
|
|
1497
|
+
colorWarning: string;
|
|
1498
|
+
colorHoverWarning: string;
|
|
1499
|
+
colorPressedWarning: string;
|
|
1500
|
+
colorFocusWarning: string;
|
|
1501
|
+
colorDisabledWarning: string;
|
|
1502
|
+
textColorWarning: string;
|
|
1503
|
+
textColorHoverWarning: string;
|
|
1504
|
+
textColorPressedWarning: string;
|
|
1505
|
+
textColorFocusWarning: string;
|
|
1506
|
+
textColorDisabledWarning: string;
|
|
1507
|
+
textColorTextWarning: string;
|
|
1508
|
+
textColorTextHoverWarning: string;
|
|
1509
|
+
textColorTextPressedWarning: string;
|
|
1510
|
+
textColorTextFocusWarning: string;
|
|
1511
|
+
textColorTextDisabledWarning: string;
|
|
1512
|
+
textColorGhostWarning: string;
|
|
1513
|
+
textColorGhostHoverWarning: string;
|
|
1514
|
+
textColorGhostPressedWarning: string;
|
|
1515
|
+
textColorGhostFocusWarning: string;
|
|
1516
|
+
textColorGhostDisabledWarning: string;
|
|
1517
|
+
borderWarning: string;
|
|
1518
|
+
borderHoverWarning: string;
|
|
1519
|
+
borderPressedWarning: string;
|
|
1520
|
+
borderFocusWarning: string;
|
|
1521
|
+
borderDisabledWarning: string;
|
|
1522
|
+
rippleColorWarning: string;
|
|
1523
|
+
colorError: string;
|
|
1524
|
+
colorHoverError: string;
|
|
1525
|
+
colorPressedError: string;
|
|
1526
|
+
colorFocusError: string;
|
|
1527
|
+
colorDisabledError: string;
|
|
1528
|
+
textColorError: string;
|
|
1529
|
+
textColorHoverError: string;
|
|
1530
|
+
textColorPressedError: string;
|
|
1531
|
+
textColorFocusError: string;
|
|
1532
|
+
textColorDisabledError: string;
|
|
1533
|
+
textColorTextError: string;
|
|
1534
|
+
textColorTextHoverError: string;
|
|
1535
|
+
textColorTextPressedError: string;
|
|
1536
|
+
textColorTextFocusError: string;
|
|
1537
|
+
textColorTextDisabledError: string;
|
|
1538
|
+
textColorGhostError: string;
|
|
1539
|
+
textColorGhostHoverError: string;
|
|
1540
|
+
textColorGhostPressedError: string;
|
|
1541
|
+
textColorGhostFocusError: string;
|
|
1542
|
+
textColorGhostDisabledError: string;
|
|
1543
|
+
borderError: string;
|
|
1544
|
+
borderHoverError: string;
|
|
1545
|
+
borderPressedError: string;
|
|
1546
|
+
borderFocusError: string;
|
|
1547
|
+
borderDisabledError: string;
|
|
1548
|
+
rippleColorError: string;
|
|
1549
|
+
waveOpacity: string;
|
|
1550
|
+
fontWeight: string;
|
|
1551
|
+
fontWeightStrong: string;
|
|
1552
|
+
paddingTiny: string;
|
|
1553
|
+
paddingSmall: string;
|
|
1554
|
+
paddingMedium: string;
|
|
1555
|
+
paddingLarge: string;
|
|
1556
|
+
paddingRoundTiny: string;
|
|
1557
|
+
paddingRoundSmall: string;
|
|
1558
|
+
paddingRoundMedium: string;
|
|
1559
|
+
paddingRoundLarge: string;
|
|
1560
|
+
iconMarginTiny: string;
|
|
1561
|
+
iconMarginSmall: string;
|
|
1562
|
+
iconMarginMedium: string;
|
|
1563
|
+
iconMarginLarge: string;
|
|
1564
|
+
iconSizeTiny: string;
|
|
1565
|
+
iconSizeSmall: string;
|
|
1566
|
+
iconSizeMedium: string;
|
|
1567
|
+
iconSizeLarge: string;
|
|
1568
|
+
rippleDuration: string;
|
|
1569
|
+
}, any>;
|
|
1570
|
+
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
1571
|
+
countTextColor: string;
|
|
1572
|
+
heightTiny: string;
|
|
1573
|
+
heightSmall: string;
|
|
1574
|
+
heightMedium: string;
|
|
1575
|
+
heightLarge: string;
|
|
1576
|
+
fontSizeTiny: string;
|
|
1577
|
+
fontSizeSmall: string;
|
|
1578
|
+
fontSizeMedium: string;
|
|
1579
|
+
fontSizeLarge: string;
|
|
1580
|
+
lineHeight: string;
|
|
1581
|
+
lineHeightTextarea: string;
|
|
1582
|
+
borderRadius: string;
|
|
1583
|
+
iconSize: string;
|
|
1584
|
+
groupLabelColor: string;
|
|
1585
|
+
groupLabelTextColor: string;
|
|
1586
|
+
textColor: string;
|
|
1587
|
+
textColorDisabled: string;
|
|
1588
|
+
textDecorationColor: string;
|
|
1589
|
+
caretColor: string;
|
|
1590
|
+
placeholderColor: string;
|
|
1591
|
+
placeholderColorDisabled: string;
|
|
1592
|
+
color: string;
|
|
1593
|
+
colorDisabled: string;
|
|
1594
|
+
colorFocus: string;
|
|
1595
|
+
groupLabelBorder: string;
|
|
1596
|
+
border: string;
|
|
1597
|
+
borderHover: string;
|
|
1598
|
+
borderDisabled: string;
|
|
1599
|
+
borderFocus: string;
|
|
1600
|
+
boxShadowFocus: string;
|
|
1601
|
+
loadingColor: string;
|
|
1602
|
+
loadingColorWarning: string;
|
|
1603
|
+
borderWarning: string;
|
|
1604
|
+
borderHoverWarning: string;
|
|
1605
|
+
colorFocusWarning: string;
|
|
1606
|
+
borderFocusWarning: string;
|
|
1607
|
+
boxShadowFocusWarning: string;
|
|
1608
|
+
caretColorWarning: string;
|
|
1609
|
+
loadingColorError: string;
|
|
1610
|
+
borderError: string;
|
|
1611
|
+
borderHoverError: string;
|
|
1612
|
+
colorFocusError: string;
|
|
1613
|
+
borderFocusError: string;
|
|
1614
|
+
boxShadowFocusError: string;
|
|
1615
|
+
caretColorError: string;
|
|
1616
|
+
clearColor: string;
|
|
1617
|
+
clearColorHover: string;
|
|
1618
|
+
clearColorPressed: string;
|
|
1619
|
+
iconColor: string;
|
|
1620
|
+
iconColorDisabled: string;
|
|
1621
|
+
iconColorHover: string;
|
|
1622
|
+
iconColorPressed: string;
|
|
1623
|
+
suffixTextColor: string;
|
|
1624
|
+
paddingTiny: string;
|
|
1625
|
+
paddingSmall: string;
|
|
1626
|
+
paddingMedium: string;
|
|
1627
|
+
paddingLarge: string;
|
|
1628
|
+
clearSize: string;
|
|
1629
|
+
}, any>;
|
|
1630
|
+
}>>;
|
|
1631
|
+
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
|
|
1632
|
+
iconColorDisabled: string;
|
|
1633
|
+
}, {
|
|
1634
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
1635
|
+
heightTiny: string;
|
|
1636
|
+
heightSmall: string;
|
|
1637
|
+
heightMedium: string;
|
|
1638
|
+
heightLarge: string;
|
|
1639
|
+
borderRadiusTiny: string;
|
|
1640
|
+
borderRadiusSmall: string;
|
|
1641
|
+
borderRadiusMedium: string;
|
|
1642
|
+
borderRadiusLarge: string;
|
|
1643
|
+
fontSizeTiny: string;
|
|
1644
|
+
fontSizeSmall: string;
|
|
1645
|
+
fontSizeMedium: string;
|
|
1646
|
+
fontSizeLarge: string;
|
|
1647
|
+
opacityDisabled: string;
|
|
1648
|
+
colorOpacitySecondary: string;
|
|
1649
|
+
colorOpacitySecondaryHover: string;
|
|
1650
|
+
colorOpacitySecondaryPressed: string;
|
|
1651
|
+
colorSecondary: string;
|
|
1652
|
+
colorSecondaryHover: string;
|
|
1653
|
+
colorSecondaryPressed: string;
|
|
1654
|
+
colorTertiary: string;
|
|
1655
|
+
colorTertiaryHover: string;
|
|
1656
|
+
colorTertiaryPressed: string;
|
|
1657
|
+
colorQuaternary: string;
|
|
1658
|
+
colorQuaternaryHover: string;
|
|
1659
|
+
colorQuaternaryPressed: string;
|
|
1660
|
+
color: string;
|
|
1661
|
+
colorHover: string;
|
|
1662
|
+
colorPressed: string;
|
|
1663
|
+
colorFocus: string;
|
|
1664
|
+
colorDisabled: string;
|
|
1665
|
+
textColor: string;
|
|
1666
|
+
textColorTertiary: string;
|
|
1667
|
+
textColorHover: string;
|
|
1668
|
+
textColorPressed: string;
|
|
1669
|
+
textColorFocus: string;
|
|
1670
|
+
textColorDisabled: string;
|
|
1671
|
+
textColorText: string;
|
|
1672
|
+
textColorTextHover: string;
|
|
1673
|
+
textColorTextPressed: string;
|
|
1674
|
+
textColorTextFocus: string;
|
|
1675
|
+
textColorTextDisabled: string;
|
|
1676
|
+
textColorGhost: string;
|
|
1677
|
+
textColorGhostHover: string;
|
|
1678
|
+
textColorGhostPressed: string;
|
|
1679
|
+
textColorGhostFocus: string;
|
|
1680
|
+
textColorGhostDisabled: string;
|
|
1681
|
+
border: string;
|
|
1682
|
+
borderHover: string;
|
|
1683
|
+
borderPressed: string;
|
|
1684
|
+
borderFocus: string;
|
|
1685
|
+
borderDisabled: string;
|
|
1686
|
+
rippleColor: string;
|
|
1687
|
+
colorPrimary: string;
|
|
1688
|
+
colorHoverPrimary: string;
|
|
1689
|
+
colorPressedPrimary: string;
|
|
1690
|
+
colorFocusPrimary: string;
|
|
1691
|
+
colorDisabledPrimary: string;
|
|
1692
|
+
textColorPrimary: string;
|
|
1693
|
+
textColorHoverPrimary: string;
|
|
1694
|
+
textColorPressedPrimary: string;
|
|
1695
|
+
textColorFocusPrimary: string;
|
|
1696
|
+
textColorDisabledPrimary: string;
|
|
1697
|
+
textColorTextPrimary: string;
|
|
1698
|
+
textColorTextHoverPrimary: string;
|
|
1699
|
+
textColorTextPressedPrimary: string;
|
|
1700
|
+
textColorTextFocusPrimary: string;
|
|
1701
|
+
textColorTextDisabledPrimary: string;
|
|
1702
|
+
textColorGhostPrimary: string;
|
|
1703
|
+
textColorGhostHoverPrimary: string;
|
|
1704
|
+
textColorGhostPressedPrimary: string;
|
|
1705
|
+
textColorGhostFocusPrimary: string;
|
|
1706
|
+
textColorGhostDisabledPrimary: string;
|
|
1707
|
+
borderPrimary: string;
|
|
1708
|
+
borderHoverPrimary: string;
|
|
1709
|
+
borderPressedPrimary: string;
|
|
1710
|
+
borderFocusPrimary: string;
|
|
1711
|
+
borderDisabledPrimary: string;
|
|
1712
|
+
rippleColorPrimary: string;
|
|
1713
|
+
colorInfo: string;
|
|
1714
|
+
colorHoverInfo: string;
|
|
1715
|
+
colorPressedInfo: string;
|
|
1716
|
+
colorFocusInfo: string;
|
|
1717
|
+
colorDisabledInfo: string;
|
|
1718
|
+
textColorInfo: string;
|
|
1719
|
+
textColorHoverInfo: string;
|
|
1720
|
+
textColorPressedInfo: string;
|
|
1721
|
+
textColorFocusInfo: string;
|
|
1722
|
+
textColorDisabledInfo: string;
|
|
1723
|
+
textColorTextInfo: string;
|
|
1724
|
+
textColorTextHoverInfo: string;
|
|
1725
|
+
textColorTextPressedInfo: string;
|
|
1726
|
+
textColorTextFocusInfo: string;
|
|
1727
|
+
textColorTextDisabledInfo: string;
|
|
1728
|
+
textColorGhostInfo: string;
|
|
1729
|
+
textColorGhostHoverInfo: string;
|
|
1730
|
+
textColorGhostPressedInfo: string;
|
|
1731
|
+
textColorGhostFocusInfo: string;
|
|
1732
|
+
textColorGhostDisabledInfo: string;
|
|
1733
|
+
borderInfo: string;
|
|
1734
|
+
borderHoverInfo: string;
|
|
1735
|
+
borderPressedInfo: string;
|
|
1736
|
+
borderFocusInfo: string;
|
|
1737
|
+
borderDisabledInfo: string;
|
|
1738
|
+
rippleColorInfo: string;
|
|
1739
|
+
colorSuccess: string;
|
|
1740
|
+
colorHoverSuccess: string;
|
|
1741
|
+
colorPressedSuccess: string;
|
|
1742
|
+
colorFocusSuccess: string;
|
|
1743
|
+
colorDisabledSuccess: string;
|
|
1744
|
+
textColorSuccess: string;
|
|
1745
|
+
textColorHoverSuccess: string;
|
|
1746
|
+
textColorPressedSuccess: string;
|
|
1747
|
+
textColorFocusSuccess: string;
|
|
1748
|
+
textColorDisabledSuccess: string;
|
|
1749
|
+
textColorTextSuccess: string;
|
|
1750
|
+
textColorTextHoverSuccess: string;
|
|
1751
|
+
textColorTextPressedSuccess: string;
|
|
1752
|
+
textColorTextFocusSuccess: string;
|
|
1753
|
+
textColorTextDisabledSuccess: string;
|
|
1754
|
+
textColorGhostSuccess: string;
|
|
1755
|
+
textColorGhostHoverSuccess: string;
|
|
1756
|
+
textColorGhostPressedSuccess: string;
|
|
1757
|
+
textColorGhostFocusSuccess: string;
|
|
1758
|
+
textColorGhostDisabledSuccess: string;
|
|
1759
|
+
borderSuccess: string;
|
|
1760
|
+
borderHoverSuccess: string;
|
|
1761
|
+
borderPressedSuccess: string;
|
|
1762
|
+
borderFocusSuccess: string;
|
|
1763
|
+
borderDisabledSuccess: string;
|
|
1764
|
+
rippleColorSuccess: string;
|
|
1765
|
+
colorWarning: string;
|
|
1766
|
+
colorHoverWarning: string;
|
|
1767
|
+
colorPressedWarning: string;
|
|
1768
|
+
colorFocusWarning: string;
|
|
1769
|
+
colorDisabledWarning: string;
|
|
1770
|
+
textColorWarning: string;
|
|
1771
|
+
textColorHoverWarning: string;
|
|
1772
|
+
textColorPressedWarning: string;
|
|
1773
|
+
textColorFocusWarning: string;
|
|
1774
|
+
textColorDisabledWarning: string;
|
|
1775
|
+
textColorTextWarning: string;
|
|
1776
|
+
textColorTextHoverWarning: string;
|
|
1777
|
+
textColorTextPressedWarning: string;
|
|
1778
|
+
textColorTextFocusWarning: string;
|
|
1779
|
+
textColorTextDisabledWarning: string;
|
|
1780
|
+
textColorGhostWarning: string;
|
|
1781
|
+
textColorGhostHoverWarning: string;
|
|
1782
|
+
textColorGhostPressedWarning: string;
|
|
1783
|
+
textColorGhostFocusWarning: string;
|
|
1784
|
+
textColorGhostDisabledWarning: string;
|
|
1785
|
+
borderWarning: string;
|
|
1786
|
+
borderHoverWarning: string;
|
|
1787
|
+
borderPressedWarning: string;
|
|
1788
|
+
borderFocusWarning: string;
|
|
1789
|
+
borderDisabledWarning: string;
|
|
1790
|
+
rippleColorWarning: string;
|
|
1791
|
+
colorError: string;
|
|
1792
|
+
colorHoverError: string;
|
|
1793
|
+
colorPressedError: string;
|
|
1794
|
+
colorFocusError: string;
|
|
1795
|
+
colorDisabledError: string;
|
|
1796
|
+
textColorError: string;
|
|
1797
|
+
textColorHoverError: string;
|
|
1798
|
+
textColorPressedError: string;
|
|
1799
|
+
textColorFocusError: string;
|
|
1800
|
+
textColorDisabledError: string;
|
|
1801
|
+
textColorTextError: string;
|
|
1802
|
+
textColorTextHoverError: string;
|
|
1803
|
+
textColorTextPressedError: string;
|
|
1804
|
+
textColorTextFocusError: string;
|
|
1805
|
+
textColorTextDisabledError: string;
|
|
1806
|
+
textColorGhostError: string;
|
|
1807
|
+
textColorGhostHoverError: string;
|
|
1808
|
+
textColorGhostPressedError: string;
|
|
1809
|
+
textColorGhostFocusError: string;
|
|
1810
|
+
textColorGhostDisabledError: string;
|
|
1811
|
+
borderError: string;
|
|
1812
|
+
borderHoverError: string;
|
|
1813
|
+
borderPressedError: string;
|
|
1814
|
+
borderFocusError: string;
|
|
1815
|
+
borderDisabledError: string;
|
|
1816
|
+
rippleColorError: string;
|
|
1817
|
+
waveOpacity: string;
|
|
1818
|
+
fontWeight: string;
|
|
1819
|
+
fontWeightStrong: string;
|
|
1820
|
+
paddingTiny: string;
|
|
1821
|
+
paddingSmall: string;
|
|
1822
|
+
paddingMedium: string;
|
|
1823
|
+
paddingLarge: string;
|
|
1824
|
+
paddingRoundTiny: string;
|
|
1825
|
+
paddingRoundSmall: string;
|
|
1826
|
+
paddingRoundMedium: string;
|
|
1827
|
+
paddingRoundLarge: string;
|
|
1828
|
+
iconMarginTiny: string;
|
|
1829
|
+
iconMarginSmall: string;
|
|
1830
|
+
iconMarginMedium: string;
|
|
1831
|
+
iconMarginLarge: string;
|
|
1832
|
+
iconSizeTiny: string;
|
|
1833
|
+
iconSizeSmall: string;
|
|
1834
|
+
iconSizeMedium: string;
|
|
1835
|
+
iconSizeLarge: string;
|
|
1836
|
+
rippleDuration: string;
|
|
1837
|
+
}, any>;
|
|
1838
|
+
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
1839
|
+
countTextColor: string;
|
|
1840
|
+
heightTiny: string;
|
|
1841
|
+
heightSmall: string;
|
|
1842
|
+
heightMedium: string;
|
|
1843
|
+
heightLarge: string;
|
|
1844
|
+
fontSizeTiny: string;
|
|
1845
|
+
fontSizeSmall: string;
|
|
1846
|
+
fontSizeMedium: string;
|
|
1847
|
+
fontSizeLarge: string;
|
|
1848
|
+
lineHeight: string;
|
|
1849
|
+
lineHeightTextarea: string;
|
|
1850
|
+
borderRadius: string;
|
|
1851
|
+
iconSize: string;
|
|
1852
|
+
groupLabelColor: string;
|
|
1853
|
+
groupLabelTextColor: string;
|
|
1854
|
+
textColor: string;
|
|
1855
|
+
textColorDisabled: string;
|
|
1856
|
+
textDecorationColor: string;
|
|
1857
|
+
caretColor: string;
|
|
1858
|
+
placeholderColor: string;
|
|
1859
|
+
placeholderColorDisabled: string;
|
|
1860
|
+
color: string;
|
|
1861
|
+
colorDisabled: string;
|
|
1862
|
+
colorFocus: string;
|
|
1863
|
+
groupLabelBorder: string;
|
|
1864
|
+
border: string;
|
|
1865
|
+
borderHover: string;
|
|
1866
|
+
borderDisabled: string;
|
|
1867
|
+
borderFocus: string;
|
|
1868
|
+
boxShadowFocus: string;
|
|
1869
|
+
loadingColor: string;
|
|
1870
|
+
loadingColorWarning: string;
|
|
1871
|
+
borderWarning: string;
|
|
1872
|
+
borderHoverWarning: string;
|
|
1873
|
+
colorFocusWarning: string;
|
|
1874
|
+
borderFocusWarning: string;
|
|
1875
|
+
boxShadowFocusWarning: string;
|
|
1876
|
+
caretColorWarning: string;
|
|
1877
|
+
loadingColorError: string;
|
|
1878
|
+
borderError: string;
|
|
1879
|
+
borderHoverError: string;
|
|
1880
|
+
colorFocusError: string;
|
|
1881
|
+
borderFocusError: string;
|
|
1882
|
+
boxShadowFocusError: string;
|
|
1883
|
+
caretColorError: string;
|
|
1884
|
+
clearColor: string;
|
|
1885
|
+
clearColorHover: string;
|
|
1886
|
+
clearColorPressed: string;
|
|
1887
|
+
iconColor: string;
|
|
1888
|
+
iconColorDisabled: string;
|
|
1889
|
+
iconColorHover: string;
|
|
1890
|
+
iconColorPressed: string;
|
|
1891
|
+
suffixTextColor: string;
|
|
1892
|
+
paddingTiny: string;
|
|
1893
|
+
paddingSmall: string;
|
|
1894
|
+
paddingMedium: string;
|
|
1895
|
+
paddingLarge: string;
|
|
1896
|
+
clearSize: string;
|
|
1897
|
+
}, any>;
|
|
1898
|
+
}>>>;
|
|
1899
|
+
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"InputNumber", {
|
|
1900
|
+
iconColorDisabled: string;
|
|
1901
|
+
}, {
|
|
1902
|
+
Button: import("naive-ui/es/_mixins").Theme<"Button", {
|
|
1903
|
+
heightTiny: string;
|
|
1904
|
+
heightSmall: string;
|
|
1905
|
+
heightMedium: string;
|
|
1906
|
+
heightLarge: string;
|
|
1907
|
+
borderRadiusTiny: string;
|
|
1908
|
+
borderRadiusSmall: string;
|
|
1909
|
+
borderRadiusMedium: string;
|
|
1910
|
+
borderRadiusLarge: string;
|
|
1911
|
+
fontSizeTiny: string;
|
|
1912
|
+
fontSizeSmall: string;
|
|
1913
|
+
fontSizeMedium: string;
|
|
1914
|
+
fontSizeLarge: string;
|
|
1915
|
+
opacityDisabled: string;
|
|
1916
|
+
colorOpacitySecondary: string;
|
|
1917
|
+
colorOpacitySecondaryHover: string;
|
|
1918
|
+
colorOpacitySecondaryPressed: string;
|
|
1919
|
+
colorSecondary: string;
|
|
1920
|
+
colorSecondaryHover: string;
|
|
1921
|
+
colorSecondaryPressed: string;
|
|
1922
|
+
colorTertiary: string;
|
|
1923
|
+
colorTertiaryHover: string;
|
|
1924
|
+
colorTertiaryPressed: string;
|
|
1925
|
+
colorQuaternary: string;
|
|
1926
|
+
colorQuaternaryHover: string;
|
|
1927
|
+
colorQuaternaryPressed: string;
|
|
1928
|
+
color: string;
|
|
1929
|
+
colorHover: string;
|
|
1930
|
+
colorPressed: string;
|
|
1931
|
+
colorFocus: string;
|
|
1932
|
+
colorDisabled: string;
|
|
1933
|
+
textColor: string;
|
|
1934
|
+
textColorTertiary: string;
|
|
1935
|
+
textColorHover: string;
|
|
1936
|
+
textColorPressed: string;
|
|
1937
|
+
textColorFocus: string;
|
|
1938
|
+
textColorDisabled: string;
|
|
1939
|
+
textColorText: string;
|
|
1940
|
+
textColorTextHover: string;
|
|
1941
|
+
textColorTextPressed: string;
|
|
1942
|
+
textColorTextFocus: string;
|
|
1943
|
+
textColorTextDisabled: string;
|
|
1944
|
+
textColorGhost: string;
|
|
1945
|
+
textColorGhostHover: string;
|
|
1946
|
+
textColorGhostPressed: string;
|
|
1947
|
+
textColorGhostFocus: string;
|
|
1948
|
+
textColorGhostDisabled: string;
|
|
1949
|
+
border: string;
|
|
1950
|
+
borderHover: string;
|
|
1951
|
+
borderPressed: string;
|
|
1952
|
+
borderFocus: string;
|
|
1953
|
+
borderDisabled: string;
|
|
1954
|
+
rippleColor: string;
|
|
1955
|
+
colorPrimary: string;
|
|
1956
|
+
colorHoverPrimary: string;
|
|
1957
|
+
colorPressedPrimary: string;
|
|
1958
|
+
colorFocusPrimary: string;
|
|
1959
|
+
colorDisabledPrimary: string;
|
|
1960
|
+
textColorPrimary: string;
|
|
1961
|
+
textColorHoverPrimary: string;
|
|
1962
|
+
textColorPressedPrimary: string;
|
|
1963
|
+
textColorFocusPrimary: string;
|
|
1964
|
+
textColorDisabledPrimary: string;
|
|
1965
|
+
textColorTextPrimary: string;
|
|
1966
|
+
textColorTextHoverPrimary: string;
|
|
1967
|
+
textColorTextPressedPrimary: string;
|
|
1968
|
+
textColorTextFocusPrimary: string;
|
|
1969
|
+
textColorTextDisabledPrimary: string;
|
|
1970
|
+
textColorGhostPrimary: string;
|
|
1971
|
+
textColorGhostHoverPrimary: string;
|
|
1972
|
+
textColorGhostPressedPrimary: string;
|
|
1973
|
+
textColorGhostFocusPrimary: string;
|
|
1974
|
+
textColorGhostDisabledPrimary: string;
|
|
1975
|
+
borderPrimary: string;
|
|
1976
|
+
borderHoverPrimary: string;
|
|
1977
|
+
borderPressedPrimary: string;
|
|
1978
|
+
borderFocusPrimary: string;
|
|
1979
|
+
borderDisabledPrimary: string;
|
|
1980
|
+
rippleColorPrimary: string;
|
|
1981
|
+
colorInfo: string;
|
|
1982
|
+
colorHoverInfo: string;
|
|
1983
|
+
colorPressedInfo: string;
|
|
1984
|
+
colorFocusInfo: string;
|
|
1985
|
+
colorDisabledInfo: string;
|
|
1986
|
+
textColorInfo: string;
|
|
1987
|
+
textColorHoverInfo: string;
|
|
1988
|
+
textColorPressedInfo: string;
|
|
1989
|
+
textColorFocusInfo: string;
|
|
1990
|
+
textColorDisabledInfo: string;
|
|
1991
|
+
textColorTextInfo: string;
|
|
1992
|
+
textColorTextHoverInfo: string;
|
|
1993
|
+
textColorTextPressedInfo: string;
|
|
1994
|
+
textColorTextFocusInfo: string;
|
|
1995
|
+
textColorTextDisabledInfo: string;
|
|
1996
|
+
textColorGhostInfo: string;
|
|
1997
|
+
textColorGhostHoverInfo: string;
|
|
1998
|
+
textColorGhostPressedInfo: string;
|
|
1999
|
+
textColorGhostFocusInfo: string;
|
|
2000
|
+
textColorGhostDisabledInfo: string;
|
|
2001
|
+
borderInfo: string;
|
|
2002
|
+
borderHoverInfo: string;
|
|
2003
|
+
borderPressedInfo: string;
|
|
2004
|
+
borderFocusInfo: string;
|
|
2005
|
+
borderDisabledInfo: string;
|
|
2006
|
+
rippleColorInfo: string;
|
|
2007
|
+
colorSuccess: string;
|
|
2008
|
+
colorHoverSuccess: string;
|
|
2009
|
+
colorPressedSuccess: string;
|
|
2010
|
+
colorFocusSuccess: string;
|
|
2011
|
+
colorDisabledSuccess: string;
|
|
2012
|
+
textColorSuccess: string;
|
|
2013
|
+
textColorHoverSuccess: string;
|
|
2014
|
+
textColorPressedSuccess: string;
|
|
2015
|
+
textColorFocusSuccess: string;
|
|
2016
|
+
textColorDisabledSuccess: string;
|
|
2017
|
+
textColorTextSuccess: string;
|
|
2018
|
+
textColorTextHoverSuccess: string;
|
|
2019
|
+
textColorTextPressedSuccess: string;
|
|
2020
|
+
textColorTextFocusSuccess: string;
|
|
2021
|
+
textColorTextDisabledSuccess: string;
|
|
2022
|
+
textColorGhostSuccess: string;
|
|
2023
|
+
textColorGhostHoverSuccess: string;
|
|
2024
|
+
textColorGhostPressedSuccess: string;
|
|
2025
|
+
textColorGhostFocusSuccess: string;
|
|
2026
|
+
textColorGhostDisabledSuccess: string;
|
|
2027
|
+
borderSuccess: string;
|
|
2028
|
+
borderHoverSuccess: string;
|
|
2029
|
+
borderPressedSuccess: string;
|
|
2030
|
+
borderFocusSuccess: string;
|
|
2031
|
+
borderDisabledSuccess: string;
|
|
2032
|
+
rippleColorSuccess: string;
|
|
2033
|
+
colorWarning: string;
|
|
2034
|
+
colorHoverWarning: string;
|
|
2035
|
+
colorPressedWarning: string;
|
|
2036
|
+
colorFocusWarning: string;
|
|
2037
|
+
colorDisabledWarning: string;
|
|
2038
|
+
textColorWarning: string;
|
|
2039
|
+
textColorHoverWarning: string;
|
|
2040
|
+
textColorPressedWarning: string;
|
|
2041
|
+
textColorFocusWarning: string;
|
|
2042
|
+
textColorDisabledWarning: string;
|
|
2043
|
+
textColorTextWarning: string;
|
|
2044
|
+
textColorTextHoverWarning: string;
|
|
2045
|
+
textColorTextPressedWarning: string;
|
|
2046
|
+
textColorTextFocusWarning: string;
|
|
2047
|
+
textColorTextDisabledWarning: string;
|
|
2048
|
+
textColorGhostWarning: string;
|
|
2049
|
+
textColorGhostHoverWarning: string;
|
|
2050
|
+
textColorGhostPressedWarning: string;
|
|
2051
|
+
textColorGhostFocusWarning: string;
|
|
2052
|
+
textColorGhostDisabledWarning: string;
|
|
2053
|
+
borderWarning: string;
|
|
2054
|
+
borderHoverWarning: string;
|
|
2055
|
+
borderPressedWarning: string;
|
|
2056
|
+
borderFocusWarning: string;
|
|
2057
|
+
borderDisabledWarning: string;
|
|
2058
|
+
rippleColorWarning: string;
|
|
2059
|
+
colorError: string;
|
|
2060
|
+
colorHoverError: string;
|
|
2061
|
+
colorPressedError: string;
|
|
2062
|
+
colorFocusError: string;
|
|
2063
|
+
colorDisabledError: string;
|
|
2064
|
+
textColorError: string;
|
|
2065
|
+
textColorHoverError: string;
|
|
2066
|
+
textColorPressedError: string;
|
|
2067
|
+
textColorFocusError: string;
|
|
2068
|
+
textColorDisabledError: string;
|
|
2069
|
+
textColorTextError: string;
|
|
2070
|
+
textColorTextHoverError: string;
|
|
2071
|
+
textColorTextPressedError: string;
|
|
2072
|
+
textColorTextFocusError: string;
|
|
2073
|
+
textColorTextDisabledError: string;
|
|
2074
|
+
textColorGhostError: string;
|
|
2075
|
+
textColorGhostHoverError: string;
|
|
2076
|
+
textColorGhostPressedError: string;
|
|
2077
|
+
textColorGhostFocusError: string;
|
|
2078
|
+
textColorGhostDisabledError: string;
|
|
2079
|
+
borderError: string;
|
|
2080
|
+
borderHoverError: string;
|
|
2081
|
+
borderPressedError: string;
|
|
2082
|
+
borderFocusError: string;
|
|
2083
|
+
borderDisabledError: string;
|
|
2084
|
+
rippleColorError: string;
|
|
2085
|
+
waveOpacity: string;
|
|
2086
|
+
fontWeight: string;
|
|
2087
|
+
fontWeightStrong: string;
|
|
2088
|
+
paddingTiny: string;
|
|
2089
|
+
paddingSmall: string;
|
|
2090
|
+
paddingMedium: string;
|
|
2091
|
+
paddingLarge: string;
|
|
2092
|
+
paddingRoundTiny: string;
|
|
2093
|
+
paddingRoundSmall: string;
|
|
2094
|
+
paddingRoundMedium: string;
|
|
2095
|
+
paddingRoundLarge: string;
|
|
2096
|
+
iconMarginTiny: string;
|
|
2097
|
+
iconMarginSmall: string;
|
|
2098
|
+
iconMarginMedium: string;
|
|
2099
|
+
iconMarginLarge: string;
|
|
2100
|
+
iconSizeTiny: string;
|
|
2101
|
+
iconSizeSmall: string;
|
|
2102
|
+
iconSizeMedium: string;
|
|
2103
|
+
iconSizeLarge: string;
|
|
2104
|
+
rippleDuration: string;
|
|
2105
|
+
}, any>;
|
|
2106
|
+
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
2107
|
+
countTextColor: string;
|
|
2108
|
+
heightTiny: string;
|
|
2109
|
+
heightSmall: string;
|
|
2110
|
+
heightMedium: string;
|
|
2111
|
+
heightLarge: string;
|
|
2112
|
+
fontSizeTiny: string;
|
|
2113
|
+
fontSizeSmall: string;
|
|
2114
|
+
fontSizeMedium: string;
|
|
2115
|
+
fontSizeLarge: string;
|
|
2116
|
+
lineHeight: string;
|
|
2117
|
+
lineHeightTextarea: string;
|
|
2118
|
+
borderRadius: string;
|
|
2119
|
+
iconSize: string;
|
|
2120
|
+
groupLabelColor: string;
|
|
2121
|
+
groupLabelTextColor: string;
|
|
2122
|
+
textColor: string;
|
|
2123
|
+
textColorDisabled: string;
|
|
2124
|
+
textDecorationColor: string;
|
|
2125
|
+
caretColor: string;
|
|
2126
|
+
placeholderColor: string;
|
|
2127
|
+
placeholderColorDisabled: string;
|
|
2128
|
+
color: string;
|
|
2129
|
+
colorDisabled: string;
|
|
2130
|
+
colorFocus: string;
|
|
2131
|
+
groupLabelBorder: string;
|
|
2132
|
+
border: string;
|
|
2133
|
+
borderHover: string;
|
|
2134
|
+
borderDisabled: string;
|
|
2135
|
+
borderFocus: string;
|
|
2136
|
+
boxShadowFocus: string;
|
|
2137
|
+
loadingColor: string;
|
|
2138
|
+
loadingColorWarning: string;
|
|
2139
|
+
borderWarning: string;
|
|
2140
|
+
borderHoverWarning: string;
|
|
2141
|
+
colorFocusWarning: string;
|
|
2142
|
+
borderFocusWarning: string;
|
|
2143
|
+
boxShadowFocusWarning: string;
|
|
2144
|
+
caretColorWarning: string;
|
|
2145
|
+
loadingColorError: string;
|
|
2146
|
+
borderError: string;
|
|
2147
|
+
borderHoverError: string;
|
|
2148
|
+
colorFocusError: string;
|
|
2149
|
+
borderFocusError: string;
|
|
2150
|
+
boxShadowFocusError: string;
|
|
2151
|
+
caretColorError: string;
|
|
2152
|
+
clearColor: string;
|
|
2153
|
+
clearColorHover: string;
|
|
2154
|
+
clearColorPressed: string;
|
|
2155
|
+
iconColor: string;
|
|
2156
|
+
iconColorDisabled: string;
|
|
2157
|
+
iconColorHover: string;
|
|
2158
|
+
iconColorPressed: string;
|
|
2159
|
+
suffixTextColor: string;
|
|
2160
|
+
paddingTiny: string;
|
|
2161
|
+
paddingSmall: string;
|
|
2162
|
+
paddingMedium: string;
|
|
2163
|
+
paddingLarge: string;
|
|
2164
|
+
clearSize: string;
|
|
2165
|
+
}, any>;
|
|
2166
|
+
}>>>;
|
|
2167
|
+
}>>, {
|
|
2168
|
+
readonly: boolean;
|
|
2169
|
+
disabled: boolean | undefined;
|
|
2170
|
+
step: string | number;
|
|
2171
|
+
autofocus: boolean;
|
|
2172
|
+
loading: boolean;
|
|
2173
|
+
bordered: boolean | undefined;
|
|
2174
|
+
clearable: boolean;
|
|
2175
|
+
defaultValue: number | null;
|
|
2176
|
+
keyboard: {
|
|
2177
|
+
ArrowUp?: boolean | undefined;
|
|
2178
|
+
ArrowDown?: boolean | undefined;
|
|
2179
|
+
};
|
|
2180
|
+
showButton: boolean;
|
|
2181
|
+
buttonPlacement: "right" | "both";
|
|
2182
|
+
updateValueOnInput: boolean;
|
|
2183
|
+
}>;
|