cnhis-design-vue 3.1.12-beta.0 → 3.1.12-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/node_modules/date-fns/esm/_lib/defaultOptions/index.js +6 -0
- package/es/node_modules/date-fns/esm/_lib/getUTCISOWeek/index.js +17 -0
- package/es/node_modules/date-fns/esm/_lib/getUTCISOWeekYear/index.js +27 -0
- package/es/node_modules/date-fns/esm/_lib/getUTCWeek/index.js +17 -0
- package/es/node_modules/date-fns/esm/_lib/getUTCWeekYear/index.js +38 -0
- package/es/node_modules/date-fns/esm/_lib/setUTCDay/index.js +27 -0
- package/es/node_modules/date-fns/esm/_lib/setUTCISODay/index.js +23 -0
- package/es/node_modules/date-fns/esm/_lib/setUTCISOWeek/index.js +15 -0
- package/es/node_modules/date-fns/esm/_lib/setUTCWeek/index.js +15 -0
- package/es/node_modules/date-fns/esm/_lib/startOfUTCISOWeek/index.js +15 -0
- package/es/node_modules/date-fns/esm/_lib/startOfUTCISOWeekYear/index.js +15 -0
- package/es/node_modules/date-fns/esm/_lib/startOfUTCWeek/index.js +25 -0
- package/es/node_modules/date-fns/esm/_lib/startOfUTCWeekYear/index.js +21 -0
- package/es/node_modules/date-fns/esm/_lib/toInteger/index.js +15 -0
- package/es/node_modules/date-fns/esm/compareAsc/index.js +0 -4
- package/es/node_modules/date-fns/esm/constants/index.js +40 -0
- package/es/node_modules/date-fns/esm/differenceInCalendarDays/index.js +0 -4
- package/es/node_modules/date-fns/esm/differenceInCalendarMonths/index.js +1 -5
- package/es/node_modules/date-fns/esm/differenceInCalendarYears/index.js +33 -0
- package/es/node_modules/date-fns/esm/differenceInDays/index.js +0 -4
- package/es/node_modules/date-fns/esm/differenceInMonths/index.js +0 -4
- package/es/node_modules/date-fns/esm/differenceInYears/index.js +43 -0
- package/es/node_modules/date-fns/esm/endOfDay/index.js +0 -4
- package/es/node_modules/date-fns/esm/endOfMonth/index.js +0 -4
- package/es/node_modules/date-fns/esm/isLastDayOfMonth/index.js +1 -5
- package/es/node_modules/date-fns/esm/parse/_lib/Parser.js +32 -0
- package/es/node_modules/date-fns/esm/parse/_lib/Setter.js +37 -0
- package/es/node_modules/date-fns/esm/parse/_lib/constants.js +48 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/AMPMMidnightParser.js +55 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/AMPMParser.js +55 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/DateParser.js +55 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayOfYearParser.js +52 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayParser.js +80 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/DayPeriodParser.js +56 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/EraParser.js +53 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/ExtendedYearParser.js +30 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/FractionOfSecondParser.js +29 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour0To11Parser.js +48 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour0to23Parser.js +41 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour1To24Parser.js +42 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/Hour1to12Parser.js +50 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISODayParser.js +99 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOTimezoneParser.js +46 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOTimezoneWithZParser.js +46 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOWeekParser.js +43 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/ISOWeekYearParser.js +33 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalDayParser.js +96 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalWeekParser.js +43 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/LocalWeekYearParser.js +61 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/MinuteParser.js +41 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/MonthParser.js +80 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/QuarterParser.js +73 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/SecondParser.js +41 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneLocalDayParser.js +96 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneMonthParser.js +80 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/StandAloneQuarterParser.js +73 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/TimestampMillisecondsParser.js +26 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/TimestampSecondsParser.js +26 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/YearParser.js +66 -0
- package/es/node_modules/date-fns/esm/parse/_lib/parsers/index.js +109 -0
- package/es/node_modules/date-fns/esm/parse/_lib/utils.js +133 -0
- package/es/node_modules/date-fns/esm/startOfDay/index.js +0 -4
- package/es/node_modules/date-fns/esm/toDate/index.js +1 -1
- package/es/packages/big-table/index.d.ts +50 -33
- package/es/packages/big-table/index.js +17 -1
- package/es/packages/big-table/src/BigTable.js +3 -1
- package/es/packages/big-table/src/BigTable.vue.d.ts +51 -40
- package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +32 -28
- package/es/packages/big-table/src/bigTableEmits.js +52 -1
- package/es/packages/big-table/src/bigTableProps.js +117 -1
- package/es/packages/big-table/src/bigTableState.js +60 -1
- package/es/packages/big-table/src/components/NoData.js +3 -1
- package/es/packages/big-table/src/components/NoData.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/big-table/src/components/edit-form/edit-date.js +114 -1
- package/es/packages/big-table/src/components/edit-form/edit-input.js +54 -1
- package/es/packages/big-table/src/components/edit-form/edit-select-table.js +148 -1
- package/es/packages/big-table/src/components/edit-form/edit-select.js +91 -1
- package/es/packages/big-table/src/components/edit-form/edit-separate.js +3 -1
- package/es/packages/big-table/src/components/edit-form/edit-separate.vue.d.ts +16 -6
- package/es/packages/big-table/src/components/edit-form/edit-separate.vue_vue_type_script_setup_true_lang.js +2 -1
- package/es/packages/big-table/src/components/input-button.js +3 -1
- package/es/packages/big-table/src/components/input-button.vue.d.ts +37 -28
- package/es/packages/big-table/src/components/input-button.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/big-table/src/components/separate.js +3 -1
- package/es/packages/big-table/src/components/separate.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/big-table/src/constants/index.js +3 -1
- package/es/packages/big-table/src/hooks/useBatchEditing.js +289 -1
- package/es/packages/big-table/src/hooks/useEdit.d.ts +16 -6
- package/es/packages/big-table/src/hooks/useEdit.js +133 -1
- package/es/packages/big-table/src/hooks/useEvent.js +70 -1
- package/es/packages/big-table/src/hooks/useFormat.js +484 -1
- package/es/packages/big-table/src/hooks/useNestTable.js +85 -1
- package/es/packages/big-table/src/hooks/useSeparateRow.js +157 -1
- package/es/packages/big-table/src/hooks/useTableParse.js +135 -1
- package/es/packages/big-table/src/utils.js +605 -1
- package/es/packages/bpmn-workflow/index.js +11 -1
- package/es/packages/bpmn-workflow/src/BpmnWorkflow.js +3 -1
- package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue_vue_type_script_setup_true_lang.js +3 -2
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.js +1420 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.js +373 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.js +131 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.js +99 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.js +111 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.js +40 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index.js +18 -1
- package/es/packages/bpmn-workflow/src/custom/customModeler/index.js +12 -1
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.js +47 -1
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.js +14 -1
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll.js +10 -1
- package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate.js +15 -1
- package/es/packages/bpmn-workflow/src/custom/customTranslate/zh.js +227 -1
- package/es/packages/button-print/index.d.ts +188 -110
- package/es/packages/button-print/index.js +11 -1
- package/es/packages/button-print/src/ButtonPrint.js +3 -1
- package/es/packages/button-print/src/ButtonPrint.vue.d.ts +188 -110
- package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +9 -8
- package/es/packages/button-print/src/components/IdentityVerification.js +3 -1
- package/es/packages/button-print/src/components/IdentityVerification.vue.d.ts +115 -56
- package/es/packages/button-print/src/components/IdentityVerification.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/button-print/src/utils/print.es.min.js +2532 -1
- package/es/packages/chunk-upload/index.d.ts +28 -22
- package/es/packages/chunk-upload/index.js +15 -1
- package/es/packages/chunk-upload/src/chunk-upload-new.js +3 -1
- package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +38 -32
- package/es/packages/chunk-upload/src/chunk-upload-new.vue_vue_type_script_setup_true_lang.js +5 -4
- package/es/packages/chunk-upload/src/hooks/upload-computed.js +70 -1
- package/es/packages/chunk-upload/src/hooks/upload-data.js +96 -1
- package/es/packages/chunk-upload/src/hooks/vod-computed.js +79 -1
- package/es/packages/chunk-upload/src/hooks/vod-data.js +28 -1
- package/es/packages/chunk-upload/src/vod-chunk-upload/index.js +2 -1
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.js +3 -1
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +28 -22
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue_vue_type_script_setup_true_lang.js +15 -14
- package/es/packages/chunk-upload/src/vod-upload-modal.js +95 -1
- package/es/packages/drag-layout/index.d.ts +478 -298
- package/es/packages/drag-layout/index.js +13 -1
- package/es/packages/drag-layout/src/DragFormLeftItem.js +3 -1
- package/es/packages/drag-layout/src/DragFormLeftItem.vue.d.ts +147 -92
- package/es/packages/drag-layout/src/DragFormLeftItem.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/drag-layout/src/DragFormRightItem.js +3 -1
- package/es/packages/drag-layout/src/DragFormRightItem.vue.d.ts +110 -79
- package/es/packages/drag-layout/src/DragFormRightItem.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/drag-layout/src/DragLayout.js +3 -1
- package/es/packages/drag-layout/src/DragLayout.vue.d.ts +478 -298
- package/es/packages/drag-layout/src/DragLayout.vue_vue_type_script_setup_true_lang.js +47 -46
- package/es/packages/editor/index.js +10 -1
- package/es/packages/editor/src/Editor.js +77 -1
- package/es/packages/fabric-chart/index.js +11 -1
- package/es/packages/fabric-chart/src/FabricChart.js +3 -1
- package/es/packages/fabric-chart/src/FabricChart.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/field-set/index.d.ts +80 -54
- package/es/packages/field-set/index.js +11 -1
- package/es/packages/field-set/src/FieldSet.js +3 -1
- package/es/packages/field-set/src/FieldSet.vue.d.ts +80 -54
- package/es/packages/field-set/src/FieldSet.vue_vue_type_script_setup_true_lang.js +3 -2
- package/es/packages/field-set/src/NewFieldSet.js +3 -1
- package/es/packages/field-set/src/NewFieldSet.vue.d.ts +40 -27
- package/es/packages/field-set/src/NewFieldSet.vue_vue_type_script_setup_true_lang.js +5 -4
- package/es/packages/field-set/src/OldFieldSet.js +3 -1
- package/es/packages/field-set/src/OldFieldSet.vue.d.ts +40 -27
- package/es/packages/field-set/src/OldFieldSet.vue_vue_type_script_setup_true_lang.js +5 -4
- package/es/packages/form-render/index.d.ts +118 -73
- package/es/packages/form-render/index.js +25 -15
- package/es/packages/form-render/src/FormRender.js +3 -1
- package/es/packages/form-render/src/FormRender.vue.d.ts +119 -74
- package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.js +8 -11
- package/es/packages/form-render/src/components/renderer/cascader.js +162 -1
- package/es/packages/form-render/src/components/renderer/checkbox.js +42 -1
- package/es/packages/form-render/src/components/renderer/combination.js +112 -1
- package/es/packages/form-render/src/components/renderer/complex.js +39 -1
- package/es/packages/form-render/src/components/renderer/date.js +51 -1
- package/es/packages/form-render/src/components/renderer/formItem.d.ts +10 -8
- package/es/packages/form-render/src/components/renderer/formItem.js +22 -1
- package/es/packages/form-render/src/components/renderer/index.js +16 -16
- package/es/packages/form-render/src/components/renderer/input.js +40 -1
- package/es/packages/form-render/src/components/renderer/inputGroup.js +8 -1
- package/es/packages/form-render/src/components/renderer/inputNumber.js +18 -1
- package/es/packages/form-render/src/components/renderer/labelSelect.js +18 -1
- package/es/packages/form-render/src/components/renderer/linebar.js +75 -1
- package/es/packages/form-render/src/components/renderer/radio.d.ts +2 -0
- package/es/packages/form-render/src/components/renderer/radio.js +45 -1
- package/es/packages/form-render/src/components/renderer/select.js +136 -1
- package/es/packages/form-render/src/components/renderer/slider.d.ts +12 -12
- package/es/packages/form-render/src/components/renderer/slider.js +16 -1
- package/es/packages/form-render/src/components/renderer/switch.js +47 -1
- package/es/packages/form-render/src/components/renderer/textarea.d.ts +9 -6
- package/es/packages/form-render/src/components/renderer/textarea.js +11 -1
- package/es/packages/form-render/src/constants/index.js +30 -1
- package/es/packages/form-render/src/hooks/index.js +14 -14
- package/es/packages/form-render/src/hooks/useAnchor.js +85 -1
- package/es/packages/form-render/src/hooks/useAsyncQueue.js +137 -1
- package/es/packages/form-render/src/hooks/useBusinessBinding.d.ts +6 -2
- package/es/packages/form-render/src/hooks/useBusinessBinding.js +85 -1
- package/es/packages/form-render/src/hooks/useChangeContext.js +23 -1
- package/es/packages/form-render/src/hooks/useCommonLog.js +10 -1
- package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +212 -1
- package/es/packages/form-render/src/hooks/useFieldVisitor.js +38 -1
- package/es/packages/form-render/src/hooks/useFormContext.js +36 -1
- package/es/packages/form-render/src/hooks/useFormField.js +13 -1
- package/es/packages/form-render/src/hooks/useFormItemDeps.js +29 -1
- package/es/packages/form-render/src/hooks/useFormRequest.js +12 -1
- package/es/packages/form-render/src/hooks/useFormValidator.js +42 -1
- package/es/packages/form-render/src/hooks/useInitialData.js +11 -1
- package/es/packages/form-render/src/hooks/usePresetScope.d.ts +6 -0
- package/es/packages/form-render/src/hooks/usePresetScope.js +21 -0
- package/es/packages/form-render/src/hooks/useTypeNormalize.js +42 -1
- package/es/packages/form-render/src/types/fieldItem.d.ts +2 -2
- package/es/packages/form-render/src/types/index.d.ts +7 -0
- package/es/packages/form-render/src/utils/index.d.ts +2 -0
- package/es/packages/form-render/src/utils/index.js +99 -1
- package/es/packages/form-table/index.d.ts +36024 -0
- package/es/packages/form-table/index.js +11 -1
- package/es/packages/form-table/src/FormTable.js +3 -1
- package/es/packages/form-table/src/FormTable.vue.d.ts +36024 -0
- package/es/packages/form-table/src/FormTable.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/form-table/src/components/index.d.ts +35783 -0
- package/es/packages/form-table/src/components/index.js +54 -1
- package/es/packages/form-table/src/components/table-age.js +3 -1
- package/es/packages/form-table/src/components/table-age.vue.d.ts +101 -61
- package/es/packages/form-table/src/components/table-age.vue_vue_type_script_setup_true_lang.js +2 -1
- package/es/packages/form-table/src/components/table-date-picker.js +3 -1
- package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +59 -26
- package/es/packages/form-table/src/components/table-date-picker.vue_vue_type_script_setup_true_lang.js +3 -5
- package/es/packages/form-table/src/components/table-digital.js +3 -1
- package/es/packages/form-table/src/components/table-digital.vue.d.ts +26 -4
- package/es/packages/form-table/src/components/table-digital.vue_vue_type_script_setup_true_lang.js +2 -1
- package/es/packages/form-table/src/components/table-input-password.js +3 -1
- package/es/packages/form-table/src/components/table-input-password.vue.d.ts +17 -8
- package/es/packages/form-table/src/components/table-input-password.vue_vue_type_script_setup_true_lang.js +2 -1
- package/es/packages/form-table/src/components/table-input.js +3 -1
- package/es/packages/form-table/src/components/table-input.vue.d.ts +17 -8
- package/es/packages/form-table/src/components/table-input.vue_vue_type_script_setup_true_lang.js +2 -1
- package/es/packages/form-table/src/components/table-month-picker.js +3 -1
- package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +59 -26
- package/es/packages/form-table/src/components/table-month-picker.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/form-table/src/components/table-search-more.js +3 -1
- package/es/packages/form-table/src/components/table-search-more.vue.d.ts +28 -22
- package/es/packages/form-table/src/components/table-search-more.vue_vue_type_script_setup_true_lang.js +2 -1
- package/es/packages/form-table/src/components/table-search.js +3 -1
- package/es/packages/form-table/src/components/table-search.vue.d.ts +103 -79
- package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.js +2 -1
- package/es/packages/form-table/src/components/table-select-multiple.js +3 -1
- package/es/packages/form-table/src/components/table-select-multiple.vue.d.ts +75 -57
- package/es/packages/form-table/src/components/table-select-multiple.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/form-table/src/components/table-select.js +3 -1
- package/es/packages/form-table/src/components/table-select.vue.d.ts +75 -57
- package/es/packages/form-table/src/components/table-select.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/form-table/src/components/table-textarea.js +3 -1
- package/es/packages/form-table/src/components/table-textarea.vue.d.ts +17 -8
- package/es/packages/form-table/src/components/table-textarea.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/form-table/src/components/table-time-picker.js +3 -1
- package/es/packages/form-table/src/components/table-time-picker.vue.d.ts +23 -19
- package/es/packages/form-table/src/components/table-time-picker.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/form-table/src/components/table-tree-select.js +3 -1
- package/es/packages/form-table/src/components/table-tree-select.vue.d.ts +1897 -0
- package/es/packages/form-table/src/components/table-tree-select.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/form-table/src/components/text-over-tooltip.js +3 -1
- package/es/packages/form-table/src/components/text-over-tooltip.vue.d.ts +8 -2
- package/es/packages/form-table/src/components/text-over-tooltip.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/form-table/src/configs/index.js +67 -1
- package/es/packages/form-table/src/hooks/index.js +5 -5
- package/es/packages/form-table/src/hooks/useBoundDate.js +414 -1
- package/es/packages/form-table/src/hooks/useDateType.js +160 -1
- package/es/packages/form-table/src/hooks/useFormCommon.js +100 -1
- package/es/packages/form-table/src/hooks/useFormEvent.js +67 -1
- package/es/packages/form-table/src/hooks/useItemDefault.js +218 -1
- package/es/packages/form-table/src/hooks/useSearch.js +1153 -1
- package/es/packages/form-table/src/hooks/useValidate.js +480 -1
- package/es/packages/grid/index.js +14 -1
- package/es/packages/grid/src/Grid.js +28 -1
- package/es/packages/grid/src/hooks.js +165 -1
- package/es/packages/index.css +11 -0
- package/es/packages/index.js +81 -32
- package/es/packages/info-header/index.d.ts +217 -54
- package/es/packages/info-header/index.js +11 -1
- package/es/packages/info-header/src/HiddenContent.js +3 -1
- package/es/packages/info-header/src/HiddenContent.vue.d.ts +4 -3
- package/es/packages/info-header/src/HiddenContent.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/info-header/src/InfoHeader.js +3 -1
- package/es/packages/info-header/src/InfoHeader.vue.d.ts +217 -54
- package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.js +3 -2
- package/es/packages/info-header/src/SlotRender.js +35 -1
- package/es/packages/map/index.d.ts +37 -28
- package/es/packages/map/index.js +11 -1
- package/es/packages/map/src/Map.js +3 -1
- package/es/packages/map/src/Map.vue.d.ts +37 -28
- package/es/packages/map/src/Map.vue_vue_type_script_setup_true_lang.js +6 -5
- package/es/packages/scale-view/index.d.ts +78 -60
- package/es/packages/scale-view/index.js +37 -1
- package/es/packages/scale-view/src/ScaleView.js +3 -1
- package/es/packages/scale-view/src/ScaleView.vue.d.ts +78 -60
- package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.js +35 -33
- package/es/packages/scale-view/src/components/AnswerParse.js +3 -1
- package/es/packages/scale-view/src/components/AnswerParse.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/scale-view/src/components/EvaluateCountdown.js +3 -1
- package/es/packages/scale-view/src/components/EvaluateCountdown.vue.d.ts +4 -0
- package/es/packages/scale-view/src/components/EvaluateCountdown.vue_vue_type_script_setup_true_lang.js +10 -4
- package/es/packages/scale-view/src/components/EvaluatePage.js +3 -1
- package/es/packages/scale-view/src/components/EvaluatePage.vue.d.ts +28 -22
- package/es/packages/scale-view/src/components/EvaluatePage.vue_vue_type_script_setup_true_lang.js +5 -4
- package/es/packages/scale-view/src/components/LoadingCom.js +7 -1
- package/es/packages/scale-view/src/components/NoData.js +3 -1
- package/es/packages/scale-view/src/components/NoData.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/scale-view/src/components/ScaleScore.js +63 -1
- package/es/packages/scale-view/src/components/composables/choose-common.d.ts +1 -1
- package/es/packages/scale-view/src/components/composables/choose-common.js +83 -1
- package/es/packages/scale-view/src/components/formitem/address.js +3993 -1
- package/es/packages/scale-view/src/components/formitem/r-address.js +225 -1
- package/es/packages/scale-view/src/components/formitem/r-cascader.js +133 -1
- package/es/packages/scale-view/src/components/formitem/r-checkbox.js +280 -1
- package/es/packages/scale-view/src/components/formitem/r-collection.js +113 -1
- package/es/packages/scale-view/src/components/formitem/r-datetime.js +212 -1
- package/es/packages/scale-view/src/components/formitem/r-input.js +86 -1
- package/es/packages/scale-view/src/components/formitem/r-map.js +105 -1
- package/es/packages/scale-view/src/components/formitem/r-radio.js +240 -1
- package/es/packages/scale-view/src/components/formitem/r-select.js +202 -1
- package/es/packages/scale-view/src/components/formitem/r-upload.js +221 -1
- package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.js +3 -1
- package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +8 -2
- package/es/packages/scale-view/src/hooks/scaleview-computed.js +314 -1
- package/es/packages/scale-view/src/hooks/scaleview-init.js +443 -1
- package/es/packages/scale-view/src/hooks/scaleview-props.js +81 -1
- package/es/packages/scale-view/src/hooks/scaleview-state.js +38 -1
- package/es/packages/scale-view/src/hooks/scaleview-submit.js +159 -1
- package/es/packages/scale-view/src/hooks/scaleview-validate.js +190 -1
- package/es/packages/scale-view/src/hooks/use-component.d.ts +623 -177
- package/es/packages/scale-view/src/hooks/use-component.js +82 -1
- package/es/packages/scale-view/src/hooks/use-evaluate.js +150 -1
- package/es/packages/scale-view/src/hooks/use-event.js +128 -1
- package/es/packages/scale-view/src/hooks/use-noData.js +41 -1
- package/es/packages/scale-view/src/utils/judge-types.js +36 -1
- package/es/packages/scale-view/style/index.css +11 -0
- package/es/packages/select-label/index.d.ts +905 -253
- package/es/packages/select-label/index.js +17 -1
- package/es/packages/select-label/src/LabelFormContent.js +3 -1
- package/es/packages/select-label/src/LabelFormContent.vue.d.ts +313 -98
- package/es/packages/select-label/src/LabelFormContent.vue_vue_type_script_setup_true_lang.js +7 -6
- package/es/packages/select-label/src/SelectLabel.js +3 -1
- package/es/packages/select-label/src/SelectLabel.vue.d.ts +607 -162
- package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.js +16 -15
- package/es/packages/select-label/src/components/label-classify.js +3 -1
- package/es/packages/select-label/src/components/label-classify.vue.d.ts +246 -70
- package/es/packages/select-label/src/components/label-classify.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/packages/select-person/index.d.ts +41 -31
- package/es/packages/select-person/index.js +11 -1
- package/es/packages/select-person/src/SearchTree.js +3 -1
- package/es/packages/select-person/src/SearchTree.vue_vue_type_script_setup_true_lang.js +3 -2
- package/es/packages/select-person/src/SelectPerson.js +3 -1
- package/es/packages/select-person/src/SelectPerson.vue.d.ts +47 -35
- package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.js +25 -24
- package/es/packages/select-person/src/utils/index.js +84 -1
- package/es/packages/time-line/index.d.ts +55 -30
- package/es/packages/time-line/index.js +11 -1
- package/es/packages/time-line/src/TimeLine.js +3 -1
- package/es/packages/time-line/src/TimeLine.vue.d.ts +55 -30
- package/es/packages/time-line/src/TimeLine.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/src/components/SelectPage/SelectPage.js +3 -1
- package/es/src/components/SelectPage/SelectPage.vue.d.ts +28 -22
- package/es/src/components/SelectPage/SelectPage.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/src/components/SelectPage/index.js +2 -1
- package/es/src/components/SvgIcon/SvgIcon.js +3 -1
- package/es/src/components/SvgIcon/SvgIcon.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/src/components/SvgIcon/index.js +2 -1
- package/es/src/components/TextOverTooltip/TextOverTooltip.js +3 -1
- package/es/src/components/TextOverTooltip/TextOverTooltip.vue.d.ts +8 -2
- package/es/src/components/TextOverTooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/src/components/TextOverTooltip/index.js +2 -1
- package/es/src/components/player-vod/index.js +3 -1
- package/es/src/components/player-vod/index.vue_vue_type_script_setup_true_lang.js +1 -0
- package/es/src/components/player-vod/player.js +121 -1
- package/es/src/components/player-vod/video-list.js +125 -1
- package/es/src/components/player-vod/video-modal.js +91 -1
- package/es/src/core/create.js +8 -1
- package/es/src/global/variable.js +4 -1
- package/es/src/utils/anime.js +129 -1
- package/es/src/utils/clickoutside.js +48 -1
- package/es/src/utils/crypto.js +25 -1
- package/es/src/utils/index.js +15 -1
- package/es/src/utils/loadViewer.js +11 -1
- package/es/src/utils/loadVxe.js +12 -1
- package/es/src/utils/utilExpand.js +714 -1
- package/es/src/utils/vexutils.js +78 -1
- package/package.json +3 -3
- package/.husky/commit-msg +0 -4
- package/.husky/pre-commit +0 -4
- package/.versionrc.json +0 -24
- package/commitlint.config.js +0 -12
- package/es/packages/big-table/index2.js +0 -17
- package/es/packages/big-table/src/BigTable2.js +0 -4
- package/es/packages/big-table/src/bigTableEmits2.js +0 -51
- package/es/packages/big-table/src/bigTableProps2.js +0 -117
- package/es/packages/big-table/src/bigTableState2.js +0 -60
- package/es/packages/big-table/src/components/NoData2.js +0 -4
- package/es/packages/big-table/src/components/edit-form/edit-date2.js +0 -114
- package/es/packages/big-table/src/components/edit-form/edit-input2.js +0 -54
- package/es/packages/big-table/src/components/edit-form/edit-select-table2.js +0 -148
- package/es/packages/big-table/src/components/edit-form/edit-select2.js +0 -91
- package/es/packages/big-table/src/components/edit-form/edit-separate2.js +0 -4
- package/es/packages/big-table/src/components/input-button2.js +0 -4
- package/es/packages/big-table/src/components/separate2.js +0 -4
- package/es/packages/big-table/src/constants/index2.js +0 -3
- package/es/packages/big-table/src/hooks/useBatchEditing2.js +0 -289
- package/es/packages/big-table/src/hooks/useEdit2.js +0 -133
- package/es/packages/big-table/src/hooks/useEvent2.js +0 -70
- package/es/packages/big-table/src/hooks/useFormat2.js +0 -484
- package/es/packages/big-table/src/hooks/useNestTable2.js +0 -85
- package/es/packages/big-table/src/hooks/useSeparateRow2.js +0 -157
- package/es/packages/big-table/src/hooks/useTableParse2.js +0 -135
- package/es/packages/big-table/src/utils2.js +0 -605
- package/es/packages/bpmn-workflow/index2.js +0 -11
- package/es/packages/bpmn-workflow/src/BpmnWorkflow2.js +0 -4
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer2.js +0 -1420
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider2.js +0 -373
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette2.js +0 -131
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap2.js +0 -99
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer2.js +0 -111
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules2.js +0 -40
- package/es/packages/bpmn-workflow/src/custom/customModeler/customBpmn/index2.js +0 -18
- package/es/packages/bpmn-workflow/src/custom/customModeler/index2.js +0 -12
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu2.js +0 -47
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer2.js +0 -14
- package/es/packages/bpmn-workflow/src/custom/customOtherModule/zoomScroll2.js +0 -10
- package/es/packages/bpmn-workflow/src/custom/customTranslate/customTranslate2.js +0 -15
- package/es/packages/bpmn-workflow/src/custom/customTranslate/zh2.js +0 -227
- package/es/packages/button-print/index2.js +0 -11
- package/es/packages/button-print/src/ButtonPrint2.js +0 -4
- package/es/packages/button-print/src/components/IdentityVerification2.js +0 -4
- package/es/packages/button-print/src/utils/print.es.min2.js +0 -2532
- package/es/packages/chunk-upload/index2.js +0 -16
- package/es/packages/chunk-upload/src/chunk-upload-new2.js +0 -4
- package/es/packages/chunk-upload/src/hooks/upload-computed2.js +0 -70
- package/es/packages/chunk-upload/src/hooks/upload-data2.js +0 -96
- package/es/packages/chunk-upload/src/hooks/vod-computed2.js +0 -79
- package/es/packages/chunk-upload/src/hooks/vod-data2.js +0 -28
- package/es/packages/chunk-upload/src/vod-chunk-upload/index2.js +0 -3
- package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload2.js +0 -4
- package/es/packages/chunk-upload/src/vod-upload-modal2.js +0 -95
- package/es/packages/drag-layout/index2.js +0 -13
- package/es/packages/drag-layout/src/DragFormLeftItem2.js +0 -4
- package/es/packages/drag-layout/src/DragFormRightItem2.js +0 -4
- package/es/packages/drag-layout/src/DragLayout2.js +0 -4
- package/es/packages/editor/index2.js +0 -10
- package/es/packages/editor/src/Editor2.js +0 -77
- package/es/packages/fabric-chart/index2.js +0 -11
- package/es/packages/fabric-chart/src/FabricChart2.js +0 -4
- package/es/packages/field-set/index2.js +0 -11
- package/es/packages/field-set/src/FieldSet2.js +0 -4
- package/es/packages/field-set/src/NewFieldSet2.js +0 -4
- package/es/packages/field-set/src/OldFieldSet2.js +0 -4
- package/es/packages/form-render/index2.js +0 -21
- package/es/packages/form-render/src/FormRender2.js +0 -4
- package/es/packages/form-render/src/components/renderer/cascader2.js +0 -167
- package/es/packages/form-render/src/components/renderer/checkbox2.js +0 -42
- package/es/packages/form-render/src/components/renderer/combination2.js +0 -112
- package/es/packages/form-render/src/components/renderer/complex2.js +0 -39
- package/es/packages/form-render/src/components/renderer/date2.js +0 -51
- package/es/packages/form-render/src/components/renderer/formItem2.js +0 -22
- package/es/packages/form-render/src/components/renderer/input2.js +0 -40
- package/es/packages/form-render/src/components/renderer/inputGroup2.js +0 -8
- package/es/packages/form-render/src/components/renderer/inputNumber2.js +0 -18
- package/es/packages/form-render/src/components/renderer/labelSelect2.js +0 -18
- package/es/packages/form-render/src/components/renderer/linebar2.js +0 -75
- package/es/packages/form-render/src/components/renderer/radio2.js +0 -44
- package/es/packages/form-render/src/components/renderer/select2.js +0 -141
- package/es/packages/form-render/src/components/renderer/slider2.js +0 -16
- package/es/packages/form-render/src/components/renderer/switch2.js +0 -47
- package/es/packages/form-render/src/components/renderer/textarea2.js +0 -11
- package/es/packages/form-render/src/constants/index2.js +0 -30
- package/es/packages/form-render/src/hooks/useAnchor2.js +0 -85
- package/es/packages/form-render/src/hooks/useAsyncQueue2.js +0 -137
- package/es/packages/form-render/src/hooks/useBusinessBinding2.js +0 -62
- package/es/packages/form-render/src/hooks/useChangeContext2.js +0 -23
- package/es/packages/form-render/src/hooks/useCommonLog2.js +0 -10
- package/es/packages/form-render/src/hooks/useFieldListAdaptor2.js +0 -201
- package/es/packages/form-render/src/hooks/useFieldVisitor2.js +0 -38
- package/es/packages/form-render/src/hooks/useFormContext2.js +0 -35
- package/es/packages/form-render/src/hooks/useFormField2.js +0 -13
- package/es/packages/form-render/src/hooks/useFormItemDeps2.js +0 -29
- package/es/packages/form-render/src/hooks/useFormRequest2.js +0 -12
- package/es/packages/form-render/src/hooks/useFormValidator2.js +0 -48
- package/es/packages/form-render/src/hooks/useInitialData2.js +0 -11
- package/es/packages/form-render/src/hooks/useTypeNormalize2.js +0 -42
- package/es/packages/form-render/src/utils/index2.js +0 -86
- package/es/packages/form-table/index2.js +0 -11
- package/es/packages/form-table/src/FormTable2.js +0 -4
- package/es/packages/form-table/src/components/index2.js +0 -54
- package/es/packages/form-table/src/components/table-age2.js +0 -4
- package/es/packages/form-table/src/components/table-date-picker2.js +0 -4
- package/es/packages/form-table/src/components/table-digital2.js +0 -4
- package/es/packages/form-table/src/components/table-input-password2.js +0 -4
- package/es/packages/form-table/src/components/table-input2.js +0 -4
- package/es/packages/form-table/src/components/table-month-picker2.js +0 -4
- package/es/packages/form-table/src/components/table-search-more2.js +0 -4
- package/es/packages/form-table/src/components/table-search2.js +0 -4
- package/es/packages/form-table/src/components/table-select-multiple2.js +0 -4
- package/es/packages/form-table/src/components/table-select2.js +0 -4
- package/es/packages/form-table/src/components/table-textarea2.js +0 -4
- package/es/packages/form-table/src/components/table-time-picker2.js +0 -4
- package/es/packages/form-table/src/components/table-tree-select2.js +0 -4
- package/es/packages/form-table/src/components/text-over-tooltip2.js +0 -4
- package/es/packages/form-table/src/configs/index2.js +0 -67
- package/es/packages/form-table/src/hooks/useBoundDate2.js +0 -414
- package/es/packages/form-table/src/hooks/useDateType2.js +0 -160
- package/es/packages/form-table/src/hooks/useFormCommon2.js +0 -100
- package/es/packages/form-table/src/hooks/useFormEvent2.js +0 -67
- package/es/packages/form-table/src/hooks/useItemDefault2.js +0 -218
- package/es/packages/form-table/src/hooks/useSearch2.js +0 -1153
- package/es/packages/form-table/src/hooks/useValidate2.js +0 -480
- package/es/packages/grid/index2.js +0 -14
- package/es/packages/grid/src/Grid2.js +0 -28
- package/es/packages/grid/src/hooks2.js +0 -165
- package/es/packages/index2.js +0 -67
- package/es/packages/info-header/index2.js +0 -11
- package/es/packages/info-header/src/HiddenContent2.js +0 -4
- package/es/packages/info-header/src/InfoHeader2.js +0 -4
- package/es/packages/info-header/src/SlotRender2.js +0 -35
- package/es/packages/map/index2.js +0 -11
- package/es/packages/map/src/Map2.js +0 -4
- package/es/packages/scale-view/index2.js +0 -37
- package/es/packages/scale-view/src/ScaleView2.js +0 -4
- package/es/packages/scale-view/src/components/AnswerParse2.js +0 -4
- package/es/packages/scale-view/src/components/EvaluateCountdown2.js +0 -4
- package/es/packages/scale-view/src/components/EvaluatePage2.js +0 -4
- package/es/packages/scale-view/src/components/LoadingCom2.js +0 -7
- package/es/packages/scale-view/src/components/NoData2.js +0 -4
- package/es/packages/scale-view/src/components/ScaleScore2.js +0 -63
- package/es/packages/scale-view/src/components/composables/choose-common2.js +0 -83
- package/es/packages/scale-view/src/components/formitem/address2.js +0 -3993
- package/es/packages/scale-view/src/components/formitem/r-address2.js +0 -225
- package/es/packages/scale-view/src/components/formitem/r-cascader2.js +0 -133
- package/es/packages/scale-view/src/components/formitem/r-checkbox2.js +0 -280
- package/es/packages/scale-view/src/components/formitem/r-collection2.js +0 -113
- package/es/packages/scale-view/src/components/formitem/r-datetime2.js +0 -212
- package/es/packages/scale-view/src/components/formitem/r-input2.js +0 -88
- package/es/packages/scale-view/src/components/formitem/r-map2.js +0 -105
- package/es/packages/scale-view/src/components/formitem/r-radio2.js +0 -240
- package/es/packages/scale-view/src/components/formitem/r-select2.js +0 -148
- package/es/packages/scale-view/src/components/formitem/r-upload2.js +0 -221
- package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip2.js +0 -4
- package/es/packages/scale-view/src/hooks/scaleview-computed2.js +0 -307
- package/es/packages/scale-view/src/hooks/scaleview-init2.js +0 -437
- package/es/packages/scale-view/src/hooks/scaleview-props2.js +0 -81
- package/es/packages/scale-view/src/hooks/scaleview-state2.js +0 -38
- package/es/packages/scale-view/src/hooks/scaleview-submit2.js +0 -159
- package/es/packages/scale-view/src/hooks/scaleview-validate2.js +0 -190
- package/es/packages/scale-view/src/hooks/use-component2.js +0 -82
- package/es/packages/scale-view/src/hooks/use-evaluate2.js +0 -150
- package/es/packages/scale-view/src/hooks/use-event2.js +0 -128
- package/es/packages/scale-view/src/hooks/use-noData2.js +0 -41
- package/es/packages/scale-view/src/utils/judge-types2.js +0 -35
- package/es/packages/select-label/index2.js +0 -17
- package/es/packages/select-label/src/LabelFormContent2.js +0 -4
- package/es/packages/select-label/src/SelectLabel2.js +0 -4
- package/es/packages/select-label/src/components/label-classify2.js +0 -4
- package/es/packages/select-person/index2.js +0 -11
- package/es/packages/select-person/src/SearchTree2.js +0 -4
- package/es/packages/select-person/src/SelectPerson2.js +0 -4
- package/es/packages/select-person/src/utils/index2.js +0 -84
- package/es/packages/time-line/index2.js +0 -11
- package/es/packages/time-line/src/TimeLine2.js +0 -4
- package/es/src/components/SelectPage/SelectPage2.js +0 -4
- package/es/src/components/SelectPage/index2.js +0 -3
- package/es/src/components/SvgIcon/SvgIcon2.js +0 -4
- package/es/src/components/SvgIcon/index2.js +0 -3
- package/es/src/components/TextOverTooltip/TextOverTooltip2.js +0 -4
- package/es/src/components/TextOverTooltip/index2.js +0 -3
- package/es/src/components/player-vod/index2.js +0 -4
- package/es/src/components/player-vod/player2.js +0 -121
- package/es/src/components/player-vod/video-list2.js +0 -125
- package/es/src/components/player-vod/video-modal2.js +0 -91
- package/es/src/core/create2.js +0 -8
- package/es/src/global/variable2.js +0 -4
- package/es/src/utils/anime2.js +0 -129
- package/es/src/utils/clickoutside2.js +0 -48
- package/es/src/utils/crypto2.js +0 -25
- package/es/src/utils/index2.js +0 -15
- package/es/src/utils/loadViewer2.js +0 -11
- package/es/src/utils/loadVxe2.js +0 -12
- package/es/src/utils/utilExpand2.js +0 -714
- package/es/src/utils/vexutils2.js +0 -80
|
@@ -82,6 +82,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
82
82
|
readonly default: 0;
|
|
83
83
|
};
|
|
84
84
|
}, {
|
|
85
|
+
isSsr: boolean;
|
|
86
|
+
contentEl: import("vue").Ref<HTMLElement | undefined>;
|
|
85
87
|
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
86
88
|
style: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
87
89
|
isResponsive: import("vue").ComputedRef<boolean>;
|
|
@@ -114,13 +116,13 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
114
116
|
readonly default: 0;
|
|
115
117
|
};
|
|
116
118
|
}>>, {
|
|
117
|
-
cols: string | number;
|
|
118
|
-
responsive: "self" | "screen";
|
|
119
|
-
collapsed: boolean;
|
|
120
|
-
itemResponsive: boolean;
|
|
121
|
-
collapsedRows: number;
|
|
122
|
-
xGap: string | number;
|
|
123
|
-
yGap: string | number;
|
|
119
|
+
readonly cols: string | number;
|
|
120
|
+
readonly responsive: "self" | "screen";
|
|
121
|
+
readonly collapsed: boolean;
|
|
122
|
+
readonly itemResponsive: boolean;
|
|
123
|
+
readonly collapsedRows: number;
|
|
124
|
+
readonly xGap: string | number;
|
|
125
|
+
readonly yGap: string | number;
|
|
124
126
|
}>;
|
|
125
127
|
NFormItemGi: import("vue").DefineComponent<{
|
|
126
128
|
readonly label: StringConstructor;
|
|
@@ -408,16 +410,16 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
408
410
|
readonly default: true;
|
|
409
411
|
};
|
|
410
412
|
}>>, {
|
|
411
|
-
required: boolean;
|
|
412
|
-
first: boolean;
|
|
413
|
-
offset: string | number;
|
|
414
|
-
span: string | number;
|
|
415
|
-
suffix: boolean;
|
|
416
|
-
showRequireMark: boolean | undefined;
|
|
417
|
-
showFeedback: boolean | undefined;
|
|
418
|
-
showLabel: boolean | undefined;
|
|
419
|
-
ignorePathChange: boolean;
|
|
420
|
-
privateShow: boolean;
|
|
413
|
+
readonly required: boolean;
|
|
414
|
+
readonly first: boolean;
|
|
415
|
+
readonly offset: string | number;
|
|
416
|
+
readonly span: string | number;
|
|
417
|
+
readonly suffix: boolean;
|
|
418
|
+
readonly showRequireMark: boolean | undefined;
|
|
419
|
+
readonly showFeedback: boolean | undefined;
|
|
420
|
+
readonly showLabel: boolean | undefined;
|
|
421
|
+
readonly ignorePathChange: boolean;
|
|
422
|
+
readonly privateShow: boolean;
|
|
421
423
|
}>;
|
|
422
424
|
NButton: import("vue").DefineComponent<{
|
|
423
425
|
readonly color: StringConstructor;
|
|
@@ -464,7 +466,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
464
466
|
readonly default: true;
|
|
465
467
|
};
|
|
466
468
|
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
467
|
-
readonly nativeFocusBehavior:
|
|
469
|
+
readonly nativeFocusBehavior: {
|
|
470
|
+
readonly type: BooleanConstructor;
|
|
471
|
+
readonly default: boolean;
|
|
472
|
+
};
|
|
468
473
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
469
474
|
heightTiny: string;
|
|
470
475
|
heightSmall: string;
|
|
@@ -1178,7 +1183,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1178
1183
|
readonly default: true;
|
|
1179
1184
|
};
|
|
1180
1185
|
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
1181
|
-
readonly nativeFocusBehavior:
|
|
1186
|
+
readonly nativeFocusBehavior: {
|
|
1187
|
+
readonly type: BooleanConstructor;
|
|
1188
|
+
readonly default: boolean;
|
|
1189
|
+
};
|
|
1182
1190
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
1183
1191
|
heightTiny: string;
|
|
1184
1192
|
heightSmall: string;
|
|
@@ -1792,26 +1800,26 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1792
1800
|
rippleDuration: string;
|
|
1793
1801
|
}, any>>>;
|
|
1794
1802
|
}>>, {
|
|
1795
|
-
type: import("naive-ui/es/button/src/interface").Type;
|
|
1796
|
-
tag: keyof HTMLElementTagNameMap;
|
|
1797
|
-
block: boolean;
|
|
1798
|
-
round: boolean;
|
|
1799
|
-
dashed: boolean;
|
|
1800
|
-
text: boolean;
|
|
1801
|
-
circle: boolean;
|
|
1802
|
-
disabled: boolean;
|
|
1803
|
-
focusable: boolean;
|
|
1804
|
-
strong: boolean;
|
|
1805
|
-
loading: boolean;
|
|
1806
|
-
bordered: boolean;
|
|
1807
|
-
tertiary: boolean;
|
|
1808
|
-
ghost: boolean;
|
|
1809
|
-
keyboard: boolean;
|
|
1810
|
-
secondary: boolean;
|
|
1811
|
-
quaternary: boolean;
|
|
1812
|
-
iconPlacement: "left" | "right";
|
|
1813
|
-
attrType: "button" | "reset" | "submit";
|
|
1814
|
-
nativeFocusBehavior: boolean;
|
|
1803
|
+
readonly type: import("naive-ui/es/button/src/interface").Type;
|
|
1804
|
+
readonly tag: keyof HTMLElementTagNameMap;
|
|
1805
|
+
readonly block: boolean;
|
|
1806
|
+
readonly round: boolean;
|
|
1807
|
+
readonly dashed: boolean;
|
|
1808
|
+
readonly text: boolean;
|
|
1809
|
+
readonly circle: boolean;
|
|
1810
|
+
readonly disabled: boolean;
|
|
1811
|
+
readonly focusable: boolean;
|
|
1812
|
+
readonly strong: boolean;
|
|
1813
|
+
readonly loading: boolean;
|
|
1814
|
+
readonly bordered: boolean;
|
|
1815
|
+
readonly tertiary: boolean;
|
|
1816
|
+
readonly ghost: boolean;
|
|
1817
|
+
readonly keyboard: boolean;
|
|
1818
|
+
readonly secondary: boolean;
|
|
1819
|
+
readonly quaternary: boolean;
|
|
1820
|
+
readonly iconPlacement: "left" | "right";
|
|
1821
|
+
readonly attrType: "button" | "reset" | "submit";
|
|
1822
|
+
readonly nativeFocusBehavior: boolean;
|
|
1815
1823
|
}>;
|
|
1816
1824
|
NModal: import("vue").DefineComponent<{
|
|
1817
1825
|
onEsc: import("vue").PropType<() => void>;
|
|
@@ -1923,9 +1931,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1923
1931
|
titleTextColor: string;
|
|
1924
1932
|
textColor: string;
|
|
1925
1933
|
color: string;
|
|
1926
|
-
closeColor: string;
|
|
1927
1934
|
closeColorHover: string;
|
|
1928
1935
|
closeColorPressed: string;
|
|
1936
|
+
closeIconColor: string;
|
|
1937
|
+
closeIconColorHover: string;
|
|
1938
|
+
closeIconColorPressed: string;
|
|
1939
|
+
closeBorderRadius: string;
|
|
1929
1940
|
iconColor: string;
|
|
1930
1941
|
iconColorInfo: string;
|
|
1931
1942
|
iconColorSuccess: string;
|
|
@@ -1941,6 +1952,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1941
1952
|
iconMargin: string;
|
|
1942
1953
|
iconMarginIconTop: string;
|
|
1943
1954
|
closeSize: string;
|
|
1955
|
+
closeIconSize: string;
|
|
1944
1956
|
closeMargin: string;
|
|
1945
1957
|
closeMarginIconTop: string;
|
|
1946
1958
|
}, {
|
|
@@ -2161,9 +2173,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2161
2173
|
borderColor: string;
|
|
2162
2174
|
actionColor: string;
|
|
2163
2175
|
titleFontWeight: string;
|
|
2164
|
-
closeColor: string;
|
|
2165
2176
|
closeColorHover: string;
|
|
2166
2177
|
closeColorPressed: string;
|
|
2178
|
+
closeBorderRadius: string;
|
|
2179
|
+
closeIconColor: string;
|
|
2180
|
+
closeIconColorHover: string;
|
|
2181
|
+
closeIconColorPressed: string;
|
|
2167
2182
|
fontSizeSmall: string;
|
|
2168
2183
|
fontSizeMedium: string;
|
|
2169
2184
|
fontSizeLarge: string;
|
|
@@ -2178,6 +2193,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2178
2193
|
titleFontSizeMedium: string;
|
|
2179
2194
|
titleFontSizeLarge: string;
|
|
2180
2195
|
titleFontSizeHuge: string;
|
|
2196
|
+
closeIconSize: string;
|
|
2181
2197
|
closeSize: string;
|
|
2182
2198
|
}, any>;
|
|
2183
2199
|
}>>;
|
|
@@ -2197,9 +2213,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2197
2213
|
titleTextColor: string;
|
|
2198
2214
|
textColor: string;
|
|
2199
2215
|
color: string;
|
|
2200
|
-
closeColor: string;
|
|
2201
2216
|
closeColorHover: string;
|
|
2202
2217
|
closeColorPressed: string;
|
|
2218
|
+
closeIconColor: string;
|
|
2219
|
+
closeIconColorHover: string;
|
|
2220
|
+
closeIconColorPressed: string;
|
|
2221
|
+
closeBorderRadius: string;
|
|
2203
2222
|
iconColor: string;
|
|
2204
2223
|
iconColorInfo: string;
|
|
2205
2224
|
iconColorSuccess: string;
|
|
@@ -2215,6 +2234,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2215
2234
|
iconMargin: string;
|
|
2216
2235
|
iconMarginIconTop: string;
|
|
2217
2236
|
closeSize: string;
|
|
2237
|
+
closeIconSize: string;
|
|
2218
2238
|
closeMargin: string;
|
|
2219
2239
|
closeMarginIconTop: string;
|
|
2220
2240
|
}, {
|
|
@@ -2435,9 +2455,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2435
2455
|
borderColor: string;
|
|
2436
2456
|
actionColor: string;
|
|
2437
2457
|
titleFontWeight: string;
|
|
2438
|
-
closeColor: string;
|
|
2439
2458
|
closeColorHover: string;
|
|
2440
2459
|
closeColorPressed: string;
|
|
2460
|
+
closeBorderRadius: string;
|
|
2461
|
+
closeIconColor: string;
|
|
2462
|
+
closeIconColorHover: string;
|
|
2463
|
+
closeIconColorPressed: string;
|
|
2441
2464
|
fontSizeSmall: string;
|
|
2442
2465
|
fontSizeMedium: string;
|
|
2443
2466
|
fontSizeLarge: string;
|
|
@@ -2452,6 +2475,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2452
2475
|
titleFontSizeMedium: string;
|
|
2453
2476
|
titleFontSizeLarge: string;
|
|
2454
2477
|
titleFontSizeHuge: string;
|
|
2478
|
+
closeIconSize: string;
|
|
2455
2479
|
closeSize: string;
|
|
2456
2480
|
}, any>;
|
|
2457
2481
|
}>>>;
|
|
@@ -2471,9 +2495,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2471
2495
|
titleTextColor: string;
|
|
2472
2496
|
textColor: string;
|
|
2473
2497
|
color: string;
|
|
2474
|
-
closeColor: string;
|
|
2475
2498
|
closeColorHover: string;
|
|
2476
2499
|
closeColorPressed: string;
|
|
2500
|
+
closeIconColor: string;
|
|
2501
|
+
closeIconColorHover: string;
|
|
2502
|
+
closeIconColorPressed: string;
|
|
2503
|
+
closeBorderRadius: string;
|
|
2477
2504
|
iconColor: string;
|
|
2478
2505
|
iconColorInfo: string;
|
|
2479
2506
|
iconColorSuccess: string;
|
|
@@ -2489,6 +2516,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2489
2516
|
iconMargin: string;
|
|
2490
2517
|
iconMarginIconTop: string;
|
|
2491
2518
|
closeSize: string;
|
|
2519
|
+
closeIconSize: string;
|
|
2492
2520
|
closeMargin: string;
|
|
2493
2521
|
closeMarginIconTop: string;
|
|
2494
2522
|
}, {
|
|
@@ -2709,9 +2737,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2709
2737
|
borderColor: string;
|
|
2710
2738
|
actionColor: string;
|
|
2711
2739
|
titleFontWeight: string;
|
|
2712
|
-
closeColor: string;
|
|
2713
2740
|
closeColorHover: string;
|
|
2714
2741
|
closeColorPressed: string;
|
|
2742
|
+
closeBorderRadius: string;
|
|
2743
|
+
closeIconColor: string;
|
|
2744
|
+
closeIconColorHover: string;
|
|
2745
|
+
closeIconColorPressed: string;
|
|
2715
2746
|
fontSizeSmall: string;
|
|
2716
2747
|
fontSizeMedium: string;
|
|
2717
2748
|
fontSizeLarge: string;
|
|
@@ -2726,6 +2757,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2726
2757
|
titleFontSizeMedium: string;
|
|
2727
2758
|
titleFontSizeLarge: string;
|
|
2728
2759
|
titleFontSizeHuge: string;
|
|
2760
|
+
closeIconSize: string;
|
|
2729
2761
|
closeSize: string;
|
|
2730
2762
|
}, any>;
|
|
2731
2763
|
}>>>;
|
|
@@ -2861,9 +2893,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2861
2893
|
titleTextColor: string;
|
|
2862
2894
|
textColor: string;
|
|
2863
2895
|
color: string;
|
|
2864
|
-
closeColor: string;
|
|
2865
2896
|
closeColorHover: string;
|
|
2866
2897
|
closeColorPressed: string;
|
|
2898
|
+
closeIconColor: string;
|
|
2899
|
+
closeIconColorHover: string;
|
|
2900
|
+
closeIconColorPressed: string;
|
|
2901
|
+
closeBorderRadius: string;
|
|
2867
2902
|
iconColor: string;
|
|
2868
2903
|
iconColorInfo: string;
|
|
2869
2904
|
iconColorSuccess: string;
|
|
@@ -2879,6 +2914,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2879
2914
|
iconMargin: string;
|
|
2880
2915
|
iconMarginIconTop: string;
|
|
2881
2916
|
closeSize: string;
|
|
2917
|
+
closeIconSize: string;
|
|
2882
2918
|
closeMargin: string;
|
|
2883
2919
|
closeMarginIconTop: string;
|
|
2884
2920
|
}, {
|
|
@@ -3099,9 +3135,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3099
3135
|
borderColor: string;
|
|
3100
3136
|
actionColor: string;
|
|
3101
3137
|
titleFontWeight: string;
|
|
3102
|
-
closeColor: string;
|
|
3103
3138
|
closeColorHover: string;
|
|
3104
3139
|
closeColorPressed: string;
|
|
3140
|
+
closeBorderRadius: string;
|
|
3141
|
+
closeIconColor: string;
|
|
3142
|
+
closeIconColorHover: string;
|
|
3143
|
+
closeIconColorPressed: string;
|
|
3105
3144
|
fontSizeSmall: string;
|
|
3106
3145
|
fontSizeMedium: string;
|
|
3107
3146
|
fontSizeLarge: string;
|
|
@@ -3116,6 +3155,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3116
3155
|
titleFontSizeMedium: string;
|
|
3117
3156
|
titleFontSizeLarge: string;
|
|
3118
3157
|
titleFontSizeHuge: string;
|
|
3158
|
+
closeIconSize: string;
|
|
3119
3159
|
closeSize: string;
|
|
3120
3160
|
}, any>;
|
|
3121
3161
|
}>>;
|
|
@@ -3135,9 +3175,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3135
3175
|
titleTextColor: string;
|
|
3136
3176
|
textColor: string;
|
|
3137
3177
|
color: string;
|
|
3138
|
-
closeColor: string;
|
|
3139
3178
|
closeColorHover: string;
|
|
3140
3179
|
closeColorPressed: string;
|
|
3180
|
+
closeIconColor: string;
|
|
3181
|
+
closeIconColorHover: string;
|
|
3182
|
+
closeIconColorPressed: string;
|
|
3183
|
+
closeBorderRadius: string;
|
|
3141
3184
|
iconColor: string;
|
|
3142
3185
|
iconColorInfo: string;
|
|
3143
3186
|
iconColorSuccess: string;
|
|
@@ -3153,6 +3196,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3153
3196
|
iconMargin: string;
|
|
3154
3197
|
iconMarginIconTop: string;
|
|
3155
3198
|
closeSize: string;
|
|
3199
|
+
closeIconSize: string;
|
|
3156
3200
|
closeMargin: string;
|
|
3157
3201
|
closeMarginIconTop: string;
|
|
3158
3202
|
}, {
|
|
@@ -3373,9 +3417,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3373
3417
|
borderColor: string;
|
|
3374
3418
|
actionColor: string;
|
|
3375
3419
|
titleFontWeight: string;
|
|
3376
|
-
closeColor: string;
|
|
3377
3420
|
closeColorHover: string;
|
|
3378
3421
|
closeColorPressed: string;
|
|
3422
|
+
closeBorderRadius: string;
|
|
3423
|
+
closeIconColor: string;
|
|
3424
|
+
closeIconColorHover: string;
|
|
3425
|
+
closeIconColorPressed: string;
|
|
3379
3426
|
fontSizeSmall: string;
|
|
3380
3427
|
fontSizeMedium: string;
|
|
3381
3428
|
fontSizeLarge: string;
|
|
@@ -3390,6 +3437,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3390
3437
|
titleFontSizeMedium: string;
|
|
3391
3438
|
titleFontSizeLarge: string;
|
|
3392
3439
|
titleFontSizeHuge: string;
|
|
3440
|
+
closeIconSize: string;
|
|
3393
3441
|
closeSize: string;
|
|
3394
3442
|
}, any>;
|
|
3395
3443
|
}>>>;
|
|
@@ -3409,9 +3457,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3409
3457
|
titleTextColor: string;
|
|
3410
3458
|
textColor: string;
|
|
3411
3459
|
color: string;
|
|
3412
|
-
closeColor: string;
|
|
3413
3460
|
closeColorHover: string;
|
|
3414
3461
|
closeColorPressed: string;
|
|
3462
|
+
closeIconColor: string;
|
|
3463
|
+
closeIconColorHover: string;
|
|
3464
|
+
closeIconColorPressed: string;
|
|
3465
|
+
closeBorderRadius: string;
|
|
3415
3466
|
iconColor: string;
|
|
3416
3467
|
iconColorInfo: string;
|
|
3417
3468
|
iconColorSuccess: string;
|
|
@@ -3427,6 +3478,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3427
3478
|
iconMargin: string;
|
|
3428
3479
|
iconMarginIconTop: string;
|
|
3429
3480
|
closeSize: string;
|
|
3481
|
+
closeIconSize: string;
|
|
3430
3482
|
closeMargin: string;
|
|
3431
3483
|
closeMarginIconTop: string;
|
|
3432
3484
|
}, {
|
|
@@ -3647,9 +3699,12 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3647
3699
|
borderColor: string;
|
|
3648
3700
|
actionColor: string;
|
|
3649
3701
|
titleFontWeight: string;
|
|
3650
|
-
closeColor: string;
|
|
3651
3702
|
closeColorHover: string;
|
|
3652
3703
|
closeColorPressed: string;
|
|
3704
|
+
closeBorderRadius: string;
|
|
3705
|
+
closeIconColor: string;
|
|
3706
|
+
closeIconColorHover: string;
|
|
3707
|
+
closeIconColorPressed: string;
|
|
3653
3708
|
fontSizeSmall: string;
|
|
3654
3709
|
fontSizeMedium: string;
|
|
3655
3710
|
fontSizeLarge: string;
|
|
@@ -3664,6 +3719,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3664
3719
|
titleFontSizeMedium: string;
|
|
3665
3720
|
titleFontSizeLarge: string;
|
|
3666
3721
|
titleFontSizeHuge: string;
|
|
3722
|
+
closeIconSize: string;
|
|
3667
3723
|
closeSize: string;
|
|
3668
3724
|
}, any>;
|
|
3669
3725
|
}>>>;
|
|
@@ -3944,14 +4000,14 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3944
4000
|
labelTextAlignHorizontal: string;
|
|
3945
4001
|
}, any>>>;
|
|
3946
4002
|
}>>, {
|
|
3947
|
-
inline: boolean;
|
|
3948
|
-
disabled: boolean;
|
|
3949
|
-
onSubmit: (e: Event) => void;
|
|
3950
|
-
labelPlacement: import("naive-ui/es/form/src/interface").LabelPlacement;
|
|
3951
|
-
model: Record<string, any>;
|
|
3952
|
-
showRequireMark: boolean | undefined;
|
|
3953
|
-
showFeedback: boolean;
|
|
3954
|
-
showLabel: boolean | undefined;
|
|
4003
|
+
readonly inline: boolean;
|
|
4004
|
+
readonly disabled: boolean;
|
|
4005
|
+
readonly onSubmit: (e: Event) => void;
|
|
4006
|
+
readonly labelPlacement: import("naive-ui/es/form/src/interface").LabelPlacement;
|
|
4007
|
+
readonly model: Record<string, any>;
|
|
4008
|
+
readonly showRequireMark: boolean | undefined;
|
|
4009
|
+
readonly showFeedback: boolean;
|
|
4010
|
+
readonly showLabel: boolean | undefined;
|
|
3955
4011
|
}>;
|
|
3956
4012
|
NInput: import("vue").DefineComponent<{
|
|
3957
4013
|
bordered: {
|
|
@@ -4011,6 +4067,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4011
4067
|
type: BooleanConstructor;
|
|
4012
4068
|
default: undefined;
|
|
4013
4069
|
};
|
|
4070
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
4014
4071
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
4015
4072
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
4016
4073
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -4231,8 +4288,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4231
4288
|
contentRef: HTMLElement | null;
|
|
4232
4289
|
containerScrollTop: number;
|
|
4233
4290
|
syncUnifiedContainer: () => void;
|
|
4234
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
4235
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
4291
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
4292
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
4236
4293
|
sync: () => void;
|
|
4237
4294
|
handleMouseEnterWrapper: () => void;
|
|
4238
4295
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -4266,7 +4323,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4266
4323
|
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
4267
4324
|
handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
|
|
4268
4325
|
handleInputBlur: (e: FocusEvent) => void;
|
|
4269
|
-
handleInputFocus: (e: FocusEvent) => void;
|
|
4326
|
+
handleInputFocus: (e: FocusEvent, index: number) => void;
|
|
4270
4327
|
handleWrapperBlur: (e: FocusEvent) => void;
|
|
4271
4328
|
handleWrapperFocus: (e: FocusEvent) => void;
|
|
4272
4329
|
handleMouseEnter: () => void;
|
|
@@ -4277,7 +4334,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4277
4334
|
handleClear: (e: MouseEvent) => void;
|
|
4278
4335
|
handlePasswordToggleClick: () => void;
|
|
4279
4336
|
handlePasswordToggleMousedown: (e: MouseEvent) => void;
|
|
4280
|
-
|
|
4337
|
+
handleWrapperKeydown: (e: KeyboardEvent) => void;
|
|
4281
4338
|
handleTextAreaMirrorResize: () => void;
|
|
4282
4339
|
getTextareaScrollContainer: () => HTMLTextAreaElement | null;
|
|
4283
4340
|
mergedTheme: import("vue").ComputedRef<{
|
|
@@ -4321,10 +4378,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4321
4378
|
opacity5: string;
|
|
4322
4379
|
dividerColor: string;
|
|
4323
4380
|
borderColor: string;
|
|
4324
|
-
|
|
4381
|
+
closeIconColor: string;
|
|
4382
|
+
closeIconColorHover: string;
|
|
4383
|
+
closeIconColorPressed: string;
|
|
4325
4384
|
closeColorHover: string;
|
|
4326
4385
|
closeColorPressed: string;
|
|
4327
|
-
closeColorDisabled: string;
|
|
4328
4386
|
clearColor: string;
|
|
4329
4387
|
clearColorHover: string;
|
|
4330
4388
|
clearColorPressed: string;
|
|
@@ -4565,6 +4623,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4565
4623
|
type: BooleanConstructor;
|
|
4566
4624
|
default: undefined;
|
|
4567
4625
|
};
|
|
4626
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
4568
4627
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
4569
4628
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
4570
4629
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -4832,10 +4891,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4832
4891
|
};
|
|
4833
4892
|
readonly remote: BooleanConstructor;
|
|
4834
4893
|
readonly loading: BooleanConstructor;
|
|
4835
|
-
readonly filter:
|
|
4836
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
4837
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
4838
|
-
};
|
|
4894
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
4839
4895
|
readonly placement: {
|
|
4840
4896
|
readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
|
|
4841
4897
|
readonly default: "bottom-start";
|
|
@@ -4845,19 +4901,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4845
4901
|
readonly default: "trigger";
|
|
4846
4902
|
};
|
|
4847
4903
|
readonly tag: BooleanConstructor;
|
|
4848
|
-
readonly onCreate:
|
|
4849
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
4850
|
-
readonly default: (label: string) => {
|
|
4851
|
-
label: string;
|
|
4852
|
-
value: string;
|
|
4853
|
-
};
|
|
4854
|
-
};
|
|
4904
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
4855
4905
|
readonly fallbackOption: {
|
|
4856
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
4857
|
-
readonly default:
|
|
4858
|
-
label: string;
|
|
4859
|
-
value: string | number;
|
|
4860
|
-
};
|
|
4906
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
4907
|
+
readonly default: undefined;
|
|
4861
4908
|
};
|
|
4862
4909
|
readonly show: {
|
|
4863
4910
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -4876,6 +4923,18 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4876
4923
|
readonly type: BooleanConstructor;
|
|
4877
4924
|
readonly default: true;
|
|
4878
4925
|
};
|
|
4926
|
+
readonly labelField: {
|
|
4927
|
+
readonly type: StringConstructor;
|
|
4928
|
+
readonly default: "label";
|
|
4929
|
+
};
|
|
4930
|
+
readonly valueField: {
|
|
4931
|
+
readonly type: StringConstructor;
|
|
4932
|
+
readonly default: "value";
|
|
4933
|
+
};
|
|
4934
|
+
readonly childrenField: {
|
|
4935
|
+
readonly type: StringConstructor;
|
|
4936
|
+
readonly default: "children";
|
|
4937
|
+
};
|
|
4879
4938
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
4880
4939
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
4881
4940
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -4898,6 +4957,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4898
4957
|
readonly default: true;
|
|
4899
4958
|
};
|
|
4900
4959
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
4960
|
+
readonly internalShowCheckmark: {
|
|
4961
|
+
readonly type: BooleanConstructor;
|
|
4962
|
+
readonly default: true;
|
|
4963
|
+
};
|
|
4901
4964
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
4902
4965
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
4903
4966
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -4993,6 +5056,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4993
5056
|
optionCheckColor: string;
|
|
4994
5057
|
optionColorPending: string;
|
|
4995
5058
|
optionColorActive: string;
|
|
5059
|
+
optionColorActivePending: string;
|
|
4996
5060
|
actionTextColor: string;
|
|
4997
5061
|
loadingColor: string;
|
|
4998
5062
|
height: string;
|
|
@@ -5118,6 +5182,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5118
5182
|
optionCheckColor: string;
|
|
5119
5183
|
optionColorPending: string;
|
|
5120
5184
|
optionColorActive: string;
|
|
5185
|
+
optionColorActivePending: string;
|
|
5121
5186
|
actionTextColor: string;
|
|
5122
5187
|
loadingColor: string;
|
|
5123
5188
|
height: string;
|
|
@@ -5243,6 +5308,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5243
5308
|
optionCheckColor: string;
|
|
5244
5309
|
optionColorPending: string;
|
|
5245
5310
|
optionColorActive: string;
|
|
5311
|
+
optionColorActivePending: string;
|
|
5246
5312
|
actionTextColor: string;
|
|
5247
5313
|
loadingColor: string;
|
|
5248
5314
|
height: string;
|
|
@@ -5372,10 +5438,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5372
5438
|
opacity5: string;
|
|
5373
5439
|
dividerColor: string;
|
|
5374
5440
|
borderColor: string;
|
|
5375
|
-
|
|
5441
|
+
closeIconColor: string;
|
|
5442
|
+
closeIconColorHover: string;
|
|
5443
|
+
closeIconColorPressed: string;
|
|
5376
5444
|
closeColorHover: string;
|
|
5377
5445
|
closeColorPressed: string;
|
|
5378
|
-
closeColorDisabled: string;
|
|
5379
5446
|
clearColor: string;
|
|
5380
5447
|
clearColorHover: string;
|
|
5381
5448
|
clearColorPressed: string;
|
|
@@ -5530,6 +5597,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5530
5597
|
optionCheckColor: string;
|
|
5531
5598
|
optionColorPending: string;
|
|
5532
5599
|
optionColorActive: string;
|
|
5600
|
+
optionColorActivePending: string;
|
|
5533
5601
|
actionTextColor: string;
|
|
5534
5602
|
loadingColor: string;
|
|
5535
5603
|
height: string;
|
|
@@ -5645,10 +5713,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5645
5713
|
};
|
|
5646
5714
|
readonly remote: BooleanConstructor;
|
|
5647
5715
|
readonly loading: BooleanConstructor;
|
|
5648
|
-
readonly filter:
|
|
5649
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
5650
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
5651
|
-
};
|
|
5716
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
5652
5717
|
readonly placement: {
|
|
5653
5718
|
readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
|
|
5654
5719
|
readonly default: "bottom-start";
|
|
@@ -5658,19 +5723,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5658
5723
|
readonly default: "trigger";
|
|
5659
5724
|
};
|
|
5660
5725
|
readonly tag: BooleanConstructor;
|
|
5661
|
-
readonly onCreate:
|
|
5662
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
5663
|
-
readonly default: (label: string) => {
|
|
5664
|
-
label: string;
|
|
5665
|
-
value: string;
|
|
5666
|
-
};
|
|
5667
|
-
};
|
|
5726
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
5668
5727
|
readonly fallbackOption: {
|
|
5669
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
5670
|
-
readonly default:
|
|
5671
|
-
label: string;
|
|
5672
|
-
value: string | number;
|
|
5673
|
-
};
|
|
5728
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
5729
|
+
readonly default: undefined;
|
|
5674
5730
|
};
|
|
5675
5731
|
readonly show: {
|
|
5676
5732
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -5689,6 +5745,18 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5689
5745
|
readonly type: BooleanConstructor;
|
|
5690
5746
|
readonly default: true;
|
|
5691
5747
|
};
|
|
5748
|
+
readonly labelField: {
|
|
5749
|
+
readonly type: StringConstructor;
|
|
5750
|
+
readonly default: "label";
|
|
5751
|
+
};
|
|
5752
|
+
readonly valueField: {
|
|
5753
|
+
readonly type: StringConstructor;
|
|
5754
|
+
readonly default: "value";
|
|
5755
|
+
};
|
|
5756
|
+
readonly childrenField: {
|
|
5757
|
+
readonly type: StringConstructor;
|
|
5758
|
+
readonly default: "children";
|
|
5759
|
+
};
|
|
5692
5760
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
5693
5761
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
5694
5762
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -5711,6 +5779,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5711
5779
|
readonly default: true;
|
|
5712
5780
|
};
|
|
5713
5781
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
5782
|
+
readonly internalShowCheckmark: {
|
|
5783
|
+
readonly type: BooleanConstructor;
|
|
5784
|
+
readonly default: true;
|
|
5785
|
+
};
|
|
5714
5786
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
5715
5787
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
5716
5788
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -5806,6 +5878,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5806
5878
|
optionCheckColor: string;
|
|
5807
5879
|
optionColorPending: string;
|
|
5808
5880
|
optionColorActive: string;
|
|
5881
|
+
optionColorActivePending: string;
|
|
5809
5882
|
actionTextColor: string;
|
|
5810
5883
|
loadingColor: string;
|
|
5811
5884
|
height: string;
|
|
@@ -5931,6 +6004,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5931
6004
|
optionCheckColor: string;
|
|
5932
6005
|
optionColorPending: string;
|
|
5933
6006
|
optionColorActive: string;
|
|
6007
|
+
optionColorActivePending: string;
|
|
5934
6008
|
actionTextColor: string;
|
|
5935
6009
|
loadingColor: string;
|
|
5936
6010
|
height: string;
|
|
@@ -6056,6 +6130,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6056
6130
|
optionCheckColor: string;
|
|
6057
6131
|
optionColorPending: string;
|
|
6058
6132
|
optionColorActive: string;
|
|
6133
|
+
optionColorActivePending: string;
|
|
6059
6134
|
actionTextColor: string;
|
|
6060
6135
|
loadingColor: string;
|
|
6061
6136
|
height: string;
|
|
@@ -6089,29 +6164,31 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6089
6164
|
}>;
|
|
6090
6165
|
}>>>;
|
|
6091
6166
|
}>>, {
|
|
6092
|
-
tag: boolean;
|
|
6093
|
-
|
|
6094
|
-
|
|
6095
|
-
|
|
6096
|
-
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
virtualScroll: boolean;
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
|
|
6109
|
-
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
|
|
6167
|
+
readonly tag: boolean;
|
|
6168
|
+
readonly show: boolean | undefined;
|
|
6169
|
+
readonly multiple: boolean;
|
|
6170
|
+
readonly disabled: boolean | undefined;
|
|
6171
|
+
readonly to: string | boolean | HTMLElement;
|
|
6172
|
+
readonly options: import("naive-ui/es/select/src/interface").SelectMixedOption[];
|
|
6173
|
+
readonly loading: boolean;
|
|
6174
|
+
readonly bordered: boolean | undefined;
|
|
6175
|
+
readonly placement: import("vueuc").FollowerPlacement;
|
|
6176
|
+
readonly labelField: string;
|
|
6177
|
+
readonly virtualScroll: boolean;
|
|
6178
|
+
readonly valueField: string;
|
|
6179
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
6180
|
+
readonly showArrow: boolean;
|
|
6181
|
+
readonly displayDirective: "show" | "if";
|
|
6182
|
+
readonly filterable: boolean;
|
|
6183
|
+
readonly clearable: boolean;
|
|
6184
|
+
readonly internalShowCheckmark: boolean;
|
|
6185
|
+
readonly clearFilterAfterSelect: boolean;
|
|
6186
|
+
readonly defaultValue: import("naive-ui/es/select/src/interface").Value | null;
|
|
6187
|
+
readonly remote: boolean;
|
|
6188
|
+
readonly widthMode: string;
|
|
6189
|
+
readonly fallbackOption: false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined;
|
|
6190
|
+
readonly consistentMenuWidth: boolean;
|
|
6191
|
+
readonly childrenField: string;
|
|
6115
6192
|
}>;
|
|
6116
6193
|
NCheckbox: import("vue").DefineComponent<{
|
|
6117
6194
|
size: import("vue").PropType<"small" | "medium" | "large">;
|
|
@@ -6280,10 +6357,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6280
6357
|
opacity5: string;
|
|
6281
6358
|
dividerColor: string;
|
|
6282
6359
|
borderColor: string;
|
|
6283
|
-
|
|
6360
|
+
closeIconColor: string;
|
|
6361
|
+
closeIconColorHover: string;
|
|
6362
|
+
closeIconColorPressed: string;
|
|
6284
6363
|
closeColorHover: string;
|
|
6285
6364
|
closeColorPressed: string;
|
|
6286
|
-
closeColorDisabled: string;
|
|
6287
6365
|
clearColor: string;
|
|
6288
6366
|
clearColorHover: string;
|
|
6289
6367
|
clearColorPressed: string;
|
|
@@ -6533,8 +6611,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6533
6611
|
}>>, {
|
|
6534
6612
|
disabled: boolean | undefined;
|
|
6535
6613
|
checked: string | number | boolean | undefined;
|
|
6536
|
-
focusable: boolean;
|
|
6537
6614
|
indeterminate: boolean;
|
|
6615
|
+
focusable: boolean;
|
|
6538
6616
|
defaultChecked: string | number | boolean;
|
|
6539
6617
|
checkedValue: string | number | boolean;
|
|
6540
6618
|
uncheckedValue: string | number | boolean;
|
|
@@ -6572,6 +6650,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6572
6650
|
type: BooleanConstructor;
|
|
6573
6651
|
default: boolean;
|
|
6574
6652
|
};
|
|
6653
|
+
buttonPlacement: {
|
|
6654
|
+
type: import("vue").PropType<"right" | "both">;
|
|
6655
|
+
default: string;
|
|
6656
|
+
};
|
|
6575
6657
|
readonly: BooleanConstructor;
|
|
6576
6658
|
clearable: BooleanConstructor;
|
|
6577
6659
|
keyboard: {
|
|
@@ -6585,6 +6667,9 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6585
6667
|
type: BooleanConstructor;
|
|
6586
6668
|
default: boolean;
|
|
6587
6669
|
};
|
|
6670
|
+
parse: import("vue").PropType<(input: string) => number | null>;
|
|
6671
|
+
format: import("vue").PropType<(value: number | null) => string>;
|
|
6672
|
+
precision: NumberConstructor;
|
|
6588
6673
|
status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
6589
6674
|
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
6590
6675
|
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
@@ -7478,10 +7563,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7478
7563
|
opacity5: string;
|
|
7479
7564
|
dividerColor: string;
|
|
7480
7565
|
borderColor: string;
|
|
7481
|
-
|
|
7566
|
+
closeIconColor: string;
|
|
7567
|
+
closeIconColorHover: string;
|
|
7568
|
+
closeIconColorPressed: string;
|
|
7482
7569
|
closeColorHover: string;
|
|
7483
7570
|
closeColorPressed: string;
|
|
7484
|
-
closeColorDisabled: string;
|
|
7485
7571
|
clearColor: string;
|
|
7486
7572
|
clearColorHover: string;
|
|
7487
7573
|
clearColorPressed: string;
|
|
@@ -7867,6 +7953,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7867
7953
|
type: BooleanConstructor;
|
|
7868
7954
|
default: boolean;
|
|
7869
7955
|
};
|
|
7956
|
+
buttonPlacement: {
|
|
7957
|
+
type: import("vue").PropType<"right" | "both">;
|
|
7958
|
+
default: string;
|
|
7959
|
+
};
|
|
7870
7960
|
readonly: BooleanConstructor;
|
|
7871
7961
|
clearable: BooleanConstructor;
|
|
7872
7962
|
keyboard: {
|
|
@@ -7880,6 +7970,9 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7880
7970
|
type: BooleanConstructor;
|
|
7881
7971
|
default: boolean;
|
|
7882
7972
|
};
|
|
7973
|
+
parse: import("vue").PropType<(input: string) => number | null>;
|
|
7974
|
+
format: import("vue").PropType<(value: number | null) => string>;
|
|
7975
|
+
precision: NumberConstructor;
|
|
7883
7976
|
status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
7884
7977
|
'onUpdate:value': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
7885
7978
|
onUpdateValue: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/input-number/src/interface").OnUpdateValue>>;
|
|
@@ -8705,6 +8798,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8705
8798
|
ArrowDown?: boolean | undefined;
|
|
8706
8799
|
};
|
|
8707
8800
|
showButton: boolean;
|
|
8801
|
+
buttonPlacement: "right" | "both";
|
|
8708
8802
|
updateValueOnInput: boolean;
|
|
8709
8803
|
}>;
|
|
8710
8804
|
Draggable: import("vue").DefineComponent<{
|
|
@@ -8834,6 +8928,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8834
8928
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
8835
8929
|
readonly default: undefined;
|
|
8836
8930
|
};
|
|
8931
|
+
readonly panel: BooleanConstructor;
|
|
8837
8932
|
readonly ranges: import("vue").PropType<Record<string, [number, number]>>;
|
|
8838
8933
|
readonly firstDayOfWeek: import("vue").PropType<import("naive-ui/es/date-picker/src/interface").FirstDayOfWeek>;
|
|
8839
8934
|
readonly inputReadonly: BooleanConstructor;
|
|
@@ -8904,6 +8999,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8904
8999
|
calendarLeftPaddingYear: string;
|
|
8905
9000
|
calendarLeftPaddingQuarter: string;
|
|
8906
9001
|
calendarLeftPaddingMonthrange: string;
|
|
9002
|
+
calendarLeftPaddingQuarterrange: string;
|
|
9003
|
+
calendarLeftPaddingYearrange: string;
|
|
8907
9004
|
calendarRightPaddingDate: string;
|
|
8908
9005
|
calendarRightPaddingDatetime: string;
|
|
8909
9006
|
calendarRightPaddingDaterange: string;
|
|
@@ -8912,6 +9009,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8912
9009
|
calendarRightPaddingYear: string;
|
|
8913
9010
|
calendarRightPaddingQuarter: string;
|
|
8914
9011
|
calendarRightPaddingMonthrange: string;
|
|
9012
|
+
calendarRightPaddingQuarterrange: string;
|
|
9013
|
+
calendarRightPaddingYearrange: string;
|
|
8915
9014
|
}, {
|
|
8916
9015
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
8917
9016
|
countTextColor: string;
|
|
@@ -9518,6 +9617,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9518
9617
|
calendarLeftPaddingYear: string;
|
|
9519
9618
|
calendarLeftPaddingQuarter: string;
|
|
9520
9619
|
calendarLeftPaddingMonthrange: string;
|
|
9620
|
+
calendarLeftPaddingQuarterrange: string;
|
|
9621
|
+
calendarLeftPaddingYearrange: string;
|
|
9521
9622
|
calendarRightPaddingDate: string;
|
|
9522
9623
|
calendarRightPaddingDatetime: string;
|
|
9523
9624
|
calendarRightPaddingDaterange: string;
|
|
@@ -9526,6 +9627,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9526
9627
|
calendarRightPaddingYear: string;
|
|
9527
9628
|
calendarRightPaddingQuarter: string;
|
|
9528
9629
|
calendarRightPaddingMonthrange: string;
|
|
9630
|
+
calendarRightPaddingQuarterrange: string;
|
|
9631
|
+
calendarRightPaddingYearrange: string;
|
|
9529
9632
|
}, {
|
|
9530
9633
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
9531
9634
|
countTextColor: string;
|
|
@@ -10132,6 +10235,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10132
10235
|
calendarLeftPaddingYear: string;
|
|
10133
10236
|
calendarLeftPaddingQuarter: string;
|
|
10134
10237
|
calendarLeftPaddingMonthrange: string;
|
|
10238
|
+
calendarLeftPaddingQuarterrange: string;
|
|
10239
|
+
calendarLeftPaddingYearrange: string;
|
|
10135
10240
|
calendarRightPaddingDate: string;
|
|
10136
10241
|
calendarRightPaddingDatetime: string;
|
|
10137
10242
|
calendarRightPaddingDaterange: string;
|
|
@@ -10140,6 +10245,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10140
10245
|
calendarRightPaddingYear: string;
|
|
10141
10246
|
calendarRightPaddingQuarter: string;
|
|
10142
10247
|
calendarRightPaddingMonthrange: string;
|
|
10248
|
+
calendarRightPaddingQuarterrange: string;
|
|
10249
|
+
calendarRightPaddingYearrange: string;
|
|
10143
10250
|
}, {
|
|
10144
10251
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
10145
10252
|
countTextColor: string;
|
|
@@ -10711,8 +10818,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10711
10818
|
contentRef: HTMLElement | null;
|
|
10712
10819
|
containerScrollTop: number;
|
|
10713
10820
|
syncUnifiedContainer: () => void;
|
|
10714
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10715
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10821
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10822
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10716
10823
|
sync: () => void;
|
|
10717
10824
|
handleMouseEnterWrapper: () => void;
|
|
10718
10825
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10723,8 +10830,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10723
10830
|
contentRef: HTMLElement | null;
|
|
10724
10831
|
containerScrollTop: number;
|
|
10725
10832
|
syncUnifiedContainer: () => void;
|
|
10726
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10727
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10833
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10834
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10728
10835
|
sync: () => void;
|
|
10729
10836
|
handleMouseEnterWrapper: () => void;
|
|
10730
10837
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10740,8 +10847,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10740
10847
|
contentRef: HTMLElement | null;
|
|
10741
10848
|
containerScrollTop: number;
|
|
10742
10849
|
syncUnifiedContainer: () => void;
|
|
10743
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10744
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10850
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10851
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10745
10852
|
sync: () => void;
|
|
10746
10853
|
handleMouseEnterWrapper: () => void;
|
|
10747
10854
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10752,8 +10859,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10752
10859
|
contentRef: HTMLElement | null;
|
|
10753
10860
|
containerScrollTop: number;
|
|
10754
10861
|
syncUnifiedContainer: () => void;
|
|
10755
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10756
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10862
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10863
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10757
10864
|
sync: () => void;
|
|
10758
10865
|
handleMouseEnterWrapper: () => void;
|
|
10759
10866
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10764,8 +10871,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10764
10871
|
contentRef: HTMLElement | null;
|
|
10765
10872
|
containerScrollTop: number;
|
|
10766
10873
|
syncUnifiedContainer: () => void;
|
|
10767
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10768
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10874
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10875
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10769
10876
|
sync: () => void;
|
|
10770
10877
|
handleMouseEnterWrapper: () => void;
|
|
10771
10878
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10776,8 +10883,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10776
10883
|
contentRef: HTMLElement | null;
|
|
10777
10884
|
containerScrollTop: number;
|
|
10778
10885
|
syncUnifiedContainer: () => void;
|
|
10779
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10780
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
10886
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
10887
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10781
10888
|
sync: () => void;
|
|
10782
10889
|
handleMouseEnterWrapper: () => void;
|
|
10783
10890
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10820,8 +10927,9 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10820
10927
|
isValueInvalid: import("vue").ComputedRef<boolean>;
|
|
10821
10928
|
isStartValueInvalid: import("vue").ComputedRef<boolean>;
|
|
10822
10929
|
isEndValueInvalid: import("vue").ComputedRef<boolean>;
|
|
10930
|
+
handleInputKeydown: (e: KeyboardEvent) => void;
|
|
10823
10931
|
handleClickOutside: (e: MouseEvent) => void;
|
|
10824
|
-
|
|
10932
|
+
handleKeydown: (e: KeyboardEvent) => void;
|
|
10825
10933
|
handleClear: () => void;
|
|
10826
10934
|
handlePanelClear: () => void;
|
|
10827
10935
|
handleTriggerClick: (e: MouseEvent) => void;
|
|
@@ -10876,10 +10984,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10876
10984
|
opacity5: string;
|
|
10877
10985
|
dividerColor: string;
|
|
10878
10986
|
borderColor: string;
|
|
10879
|
-
|
|
10987
|
+
closeIconColor: string;
|
|
10988
|
+
closeIconColorHover: string;
|
|
10989
|
+
closeIconColorPressed: string;
|
|
10880
10990
|
closeColorHover: string;
|
|
10881
10991
|
closeColorPressed: string;
|
|
10882
|
-
closeColorDisabled: string;
|
|
10883
10992
|
clearColor: string;
|
|
10884
10993
|
clearColorHover: string;
|
|
10885
10994
|
clearColorPressed: string;
|
|
@@ -10990,6 +11099,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10990
11099
|
calendarLeftPaddingYear: string;
|
|
10991
11100
|
calendarLeftPaddingQuarter: string;
|
|
10992
11101
|
calendarLeftPaddingMonthrange: string;
|
|
11102
|
+
calendarLeftPaddingQuarterrange: string;
|
|
11103
|
+
calendarLeftPaddingYearrange: string;
|
|
10993
11104
|
calendarRightPaddingDate: string;
|
|
10994
11105
|
calendarRightPaddingDatetime: string;
|
|
10995
11106
|
calendarRightPaddingDaterange: string;
|
|
@@ -10998,6 +11109,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10998
11109
|
calendarRightPaddingYear: string;
|
|
10999
11110
|
calendarRightPaddingQuarter: string;
|
|
11000
11111
|
calendarRightPaddingMonthrange: string;
|
|
11112
|
+
calendarRightPaddingQuarterrange: string;
|
|
11113
|
+
calendarRightPaddingYearrange: string;
|
|
11001
11114
|
};
|
|
11002
11115
|
peers: {
|
|
11003
11116
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
@@ -11947,6 +12060,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
11947
12060
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
11948
12061
|
readonly default: undefined;
|
|
11949
12062
|
};
|
|
12063
|
+
readonly panel: BooleanConstructor;
|
|
11950
12064
|
readonly ranges: import("vue").PropType<Record<string, [number, number]>>;
|
|
11951
12065
|
readonly firstDayOfWeek: import("vue").PropType<import("naive-ui/es/date-picker/src/interface").FirstDayOfWeek>;
|
|
11952
12066
|
readonly inputReadonly: BooleanConstructor;
|
|
@@ -12017,6 +12131,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12017
12131
|
calendarLeftPaddingYear: string;
|
|
12018
12132
|
calendarLeftPaddingQuarter: string;
|
|
12019
12133
|
calendarLeftPaddingMonthrange: string;
|
|
12134
|
+
calendarLeftPaddingQuarterrange: string;
|
|
12135
|
+
calendarLeftPaddingYearrange: string;
|
|
12020
12136
|
calendarRightPaddingDate: string;
|
|
12021
12137
|
calendarRightPaddingDatetime: string;
|
|
12022
12138
|
calendarRightPaddingDaterange: string;
|
|
@@ -12025,6 +12141,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12025
12141
|
calendarRightPaddingYear: string;
|
|
12026
12142
|
calendarRightPaddingQuarter: string;
|
|
12027
12143
|
calendarRightPaddingMonthrange: string;
|
|
12144
|
+
calendarRightPaddingQuarterrange: string;
|
|
12145
|
+
calendarRightPaddingYearrange: string;
|
|
12028
12146
|
}, {
|
|
12029
12147
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
12030
12148
|
countTextColor: string;
|
|
@@ -12631,6 +12749,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12631
12749
|
calendarLeftPaddingYear: string;
|
|
12632
12750
|
calendarLeftPaddingQuarter: string;
|
|
12633
12751
|
calendarLeftPaddingMonthrange: string;
|
|
12752
|
+
calendarLeftPaddingQuarterrange: string;
|
|
12753
|
+
calendarLeftPaddingYearrange: string;
|
|
12634
12754
|
calendarRightPaddingDate: string;
|
|
12635
12755
|
calendarRightPaddingDatetime: string;
|
|
12636
12756
|
calendarRightPaddingDaterange: string;
|
|
@@ -12639,6 +12759,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12639
12759
|
calendarRightPaddingYear: string;
|
|
12640
12760
|
calendarRightPaddingQuarter: string;
|
|
12641
12761
|
calendarRightPaddingMonthrange: string;
|
|
12762
|
+
calendarRightPaddingQuarterrange: string;
|
|
12763
|
+
calendarRightPaddingYearrange: string;
|
|
12642
12764
|
}, {
|
|
12643
12765
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
12644
12766
|
countTextColor: string;
|
|
@@ -13245,6 +13367,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13245
13367
|
calendarLeftPaddingYear: string;
|
|
13246
13368
|
calendarLeftPaddingQuarter: string;
|
|
13247
13369
|
calendarLeftPaddingMonthrange: string;
|
|
13370
|
+
calendarLeftPaddingQuarterrange: string;
|
|
13371
|
+
calendarLeftPaddingYearrange: string;
|
|
13248
13372
|
calendarRightPaddingDate: string;
|
|
13249
13373
|
calendarRightPaddingDatetime: string;
|
|
13250
13374
|
calendarRightPaddingDaterange: string;
|
|
@@ -13253,6 +13377,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13253
13377
|
calendarRightPaddingYear: string;
|
|
13254
13378
|
calendarRightPaddingQuarter: string;
|
|
13255
13379
|
calendarRightPaddingMonthrange: string;
|
|
13380
|
+
calendarRightPaddingQuarterrange: string;
|
|
13381
|
+
calendarRightPaddingYearrange: string;
|
|
13256
13382
|
}, {
|
|
13257
13383
|
Input: import("naive-ui/es/_mixins").Theme<"Input", {
|
|
13258
13384
|
countTextColor: string;
|
|
@@ -13810,17 +13936,18 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13810
13936
|
}, any>;
|
|
13811
13937
|
}>>>;
|
|
13812
13938
|
}>>, {
|
|
13813
|
-
type: import("naive-ui/es/date-picker/src/config").DatePickerType;
|
|
13814
|
-
show: boolean | undefined;
|
|
13815
|
-
disabled: boolean | undefined;
|
|
13816
|
-
to: string | boolean | HTMLElement;
|
|
13817
|
-
bordered: boolean | undefined;
|
|
13818
|
-
placement: import("vueuc").FollowerPlacement;
|
|
13819
|
-
clearable: boolean;
|
|
13820
|
-
inputReadonly: boolean;
|
|
13821
|
-
|
|
13822
|
-
|
|
13823
|
-
|
|
13939
|
+
readonly type: import("naive-ui/es/date-picker/src/config").DatePickerType;
|
|
13940
|
+
readonly show: boolean | undefined;
|
|
13941
|
+
readonly disabled: boolean | undefined;
|
|
13942
|
+
readonly to: string | boolean | HTMLElement;
|
|
13943
|
+
readonly bordered: boolean | undefined;
|
|
13944
|
+
readonly placement: import("vueuc").FollowerPlacement;
|
|
13945
|
+
readonly clearable: boolean;
|
|
13946
|
+
readonly inputReadonly: boolean;
|
|
13947
|
+
readonly panel: boolean;
|
|
13948
|
+
readonly updateValueOnClose: boolean;
|
|
13949
|
+
readonly closeOnSelect: boolean;
|
|
13950
|
+
readonly bindCalendarMonths: boolean;
|
|
13824
13951
|
}>;
|
|
13825
13952
|
NSelect: import("vue").DefineComponent<{
|
|
13826
13953
|
readonly to: {
|
|
@@ -13856,10 +13983,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13856
13983
|
};
|
|
13857
13984
|
readonly remote: BooleanConstructor;
|
|
13858
13985
|
readonly loading: BooleanConstructor;
|
|
13859
|
-
readonly filter:
|
|
13860
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
13861
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
13862
|
-
};
|
|
13986
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
13863
13987
|
readonly placement: {
|
|
13864
13988
|
readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
|
|
13865
13989
|
readonly default: "bottom-start";
|
|
@@ -13869,19 +13993,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13869
13993
|
readonly default: "trigger";
|
|
13870
13994
|
};
|
|
13871
13995
|
readonly tag: BooleanConstructor;
|
|
13872
|
-
readonly onCreate:
|
|
13873
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
13874
|
-
readonly default: (label: string) => {
|
|
13875
|
-
label: string;
|
|
13876
|
-
value: string;
|
|
13877
|
-
};
|
|
13878
|
-
};
|
|
13996
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
13879
13997
|
readonly fallbackOption: {
|
|
13880
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
13881
|
-
readonly default:
|
|
13882
|
-
label: string;
|
|
13883
|
-
value: string | number;
|
|
13884
|
-
};
|
|
13998
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
13999
|
+
readonly default: undefined;
|
|
13885
14000
|
};
|
|
13886
14001
|
readonly show: {
|
|
13887
14002
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -13900,6 +14015,18 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13900
14015
|
readonly type: BooleanConstructor;
|
|
13901
14016
|
readonly default: true;
|
|
13902
14017
|
};
|
|
14018
|
+
readonly labelField: {
|
|
14019
|
+
readonly type: StringConstructor;
|
|
14020
|
+
readonly default: "label";
|
|
14021
|
+
};
|
|
14022
|
+
readonly valueField: {
|
|
14023
|
+
readonly type: StringConstructor;
|
|
14024
|
+
readonly default: "value";
|
|
14025
|
+
};
|
|
14026
|
+
readonly childrenField: {
|
|
14027
|
+
readonly type: StringConstructor;
|
|
14028
|
+
readonly default: "children";
|
|
14029
|
+
};
|
|
13903
14030
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
13904
14031
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
13905
14032
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -13922,6 +14049,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13922
14049
|
readonly default: true;
|
|
13923
14050
|
};
|
|
13924
14051
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
14052
|
+
readonly internalShowCheckmark: {
|
|
14053
|
+
readonly type: BooleanConstructor;
|
|
14054
|
+
readonly default: true;
|
|
14055
|
+
};
|
|
13925
14056
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
13926
14057
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
13927
14058
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -14017,6 +14148,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14017
14148
|
optionCheckColor: string;
|
|
14018
14149
|
optionColorPending: string;
|
|
14019
14150
|
optionColorActive: string;
|
|
14151
|
+
optionColorActivePending: string;
|
|
14020
14152
|
actionTextColor: string;
|
|
14021
14153
|
loadingColor: string;
|
|
14022
14154
|
height: string;
|
|
@@ -14142,6 +14274,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14142
14274
|
optionCheckColor: string;
|
|
14143
14275
|
optionColorPending: string;
|
|
14144
14276
|
optionColorActive: string;
|
|
14277
|
+
optionColorActivePending: string;
|
|
14145
14278
|
actionTextColor: string;
|
|
14146
14279
|
loadingColor: string;
|
|
14147
14280
|
height: string;
|
|
@@ -14267,6 +14400,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14267
14400
|
optionCheckColor: string;
|
|
14268
14401
|
optionColorPending: string;
|
|
14269
14402
|
optionColorActive: string;
|
|
14403
|
+
optionColorActivePending: string;
|
|
14270
14404
|
actionTextColor: string;
|
|
14271
14405
|
loadingColor: string;
|
|
14272
14406
|
height: string;
|
|
@@ -14396,10 +14530,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14396
14530
|
opacity5: string;
|
|
14397
14531
|
dividerColor: string;
|
|
14398
14532
|
borderColor: string;
|
|
14399
|
-
|
|
14533
|
+
closeIconColor: string;
|
|
14534
|
+
closeIconColorHover: string;
|
|
14535
|
+
closeIconColorPressed: string;
|
|
14400
14536
|
closeColorHover: string;
|
|
14401
14537
|
closeColorPressed: string;
|
|
14402
|
-
closeColorDisabled: string;
|
|
14403
14538
|
clearColor: string;
|
|
14404
14539
|
clearColorHover: string;
|
|
14405
14540
|
clearColorPressed: string;
|
|
@@ -14554,6 +14689,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14554
14689
|
optionCheckColor: string;
|
|
14555
14690
|
optionColorPending: string;
|
|
14556
14691
|
optionColorActive: string;
|
|
14692
|
+
optionColorActivePending: string;
|
|
14557
14693
|
actionTextColor: string;
|
|
14558
14694
|
loadingColor: string;
|
|
14559
14695
|
height: string;
|
|
@@ -14669,10 +14805,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14669
14805
|
};
|
|
14670
14806
|
readonly remote: BooleanConstructor;
|
|
14671
14807
|
readonly loading: BooleanConstructor;
|
|
14672
|
-
readonly filter:
|
|
14673
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
14674
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
14675
|
-
};
|
|
14808
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
14676
14809
|
readonly placement: {
|
|
14677
14810
|
readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
|
|
14678
14811
|
readonly default: "bottom-start";
|
|
@@ -14682,19 +14815,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14682
14815
|
readonly default: "trigger";
|
|
14683
14816
|
};
|
|
14684
14817
|
readonly tag: BooleanConstructor;
|
|
14685
|
-
readonly onCreate:
|
|
14686
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
14687
|
-
readonly default: (label: string) => {
|
|
14688
|
-
label: string;
|
|
14689
|
-
value: string;
|
|
14690
|
-
};
|
|
14691
|
-
};
|
|
14818
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
14692
14819
|
readonly fallbackOption: {
|
|
14693
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
14694
|
-
readonly default:
|
|
14695
|
-
label: string;
|
|
14696
|
-
value: string | number;
|
|
14697
|
-
};
|
|
14820
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
14821
|
+
readonly default: undefined;
|
|
14698
14822
|
};
|
|
14699
14823
|
readonly show: {
|
|
14700
14824
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -14713,6 +14837,18 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14713
14837
|
readonly type: BooleanConstructor;
|
|
14714
14838
|
readonly default: true;
|
|
14715
14839
|
};
|
|
14840
|
+
readonly labelField: {
|
|
14841
|
+
readonly type: StringConstructor;
|
|
14842
|
+
readonly default: "label";
|
|
14843
|
+
};
|
|
14844
|
+
readonly valueField: {
|
|
14845
|
+
readonly type: StringConstructor;
|
|
14846
|
+
readonly default: "value";
|
|
14847
|
+
};
|
|
14848
|
+
readonly childrenField: {
|
|
14849
|
+
readonly type: StringConstructor;
|
|
14850
|
+
readonly default: "children";
|
|
14851
|
+
};
|
|
14716
14852
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
14717
14853
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
14718
14854
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -14735,6 +14871,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14735
14871
|
readonly default: true;
|
|
14736
14872
|
};
|
|
14737
14873
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
14874
|
+
readonly internalShowCheckmark: {
|
|
14875
|
+
readonly type: BooleanConstructor;
|
|
14876
|
+
readonly default: true;
|
|
14877
|
+
};
|
|
14738
14878
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
14739
14879
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
14740
14880
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -14830,6 +14970,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14830
14970
|
optionCheckColor: string;
|
|
14831
14971
|
optionColorPending: string;
|
|
14832
14972
|
optionColorActive: string;
|
|
14973
|
+
optionColorActivePending: string;
|
|
14833
14974
|
actionTextColor: string;
|
|
14834
14975
|
loadingColor: string;
|
|
14835
14976
|
height: string;
|
|
@@ -14955,6 +15096,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14955
15096
|
optionCheckColor: string;
|
|
14956
15097
|
optionColorPending: string;
|
|
14957
15098
|
optionColorActive: string;
|
|
15099
|
+
optionColorActivePending: string;
|
|
14958
15100
|
actionTextColor: string;
|
|
14959
15101
|
loadingColor: string;
|
|
14960
15102
|
height: string;
|
|
@@ -15080,6 +15222,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15080
15222
|
optionCheckColor: string;
|
|
15081
15223
|
optionColorPending: string;
|
|
15082
15224
|
optionColorActive: string;
|
|
15225
|
+
optionColorActivePending: string;
|
|
15083
15226
|
actionTextColor: string;
|
|
15084
15227
|
loadingColor: string;
|
|
15085
15228
|
height: string;
|
|
@@ -15113,29 +15256,31 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15113
15256
|
}>;
|
|
15114
15257
|
}>>>;
|
|
15115
15258
|
}>>, {
|
|
15116
|
-
tag: boolean;
|
|
15117
|
-
|
|
15118
|
-
|
|
15119
|
-
|
|
15120
|
-
|
|
15121
|
-
|
|
15122
|
-
|
|
15123
|
-
|
|
15124
|
-
|
|
15125
|
-
|
|
15126
|
-
virtualScroll: boolean;
|
|
15127
|
-
|
|
15128
|
-
|
|
15129
|
-
|
|
15130
|
-
|
|
15131
|
-
|
|
15132
|
-
|
|
15133
|
-
|
|
15134
|
-
|
|
15135
|
-
|
|
15136
|
-
|
|
15137
|
-
|
|
15138
|
-
|
|
15259
|
+
readonly tag: boolean;
|
|
15260
|
+
readonly show: boolean | undefined;
|
|
15261
|
+
readonly multiple: boolean;
|
|
15262
|
+
readonly disabled: boolean | undefined;
|
|
15263
|
+
readonly to: string | boolean | HTMLElement;
|
|
15264
|
+
readonly options: import("naive-ui/es/select/src/interface").SelectMixedOption[];
|
|
15265
|
+
readonly loading: boolean;
|
|
15266
|
+
readonly bordered: boolean | undefined;
|
|
15267
|
+
readonly placement: import("vueuc").FollowerPlacement;
|
|
15268
|
+
readonly labelField: string;
|
|
15269
|
+
readonly virtualScroll: boolean;
|
|
15270
|
+
readonly valueField: string;
|
|
15271
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
15272
|
+
readonly showArrow: boolean;
|
|
15273
|
+
readonly displayDirective: "show" | "if";
|
|
15274
|
+
readonly filterable: boolean;
|
|
15275
|
+
readonly clearable: boolean;
|
|
15276
|
+
readonly internalShowCheckmark: boolean;
|
|
15277
|
+
readonly clearFilterAfterSelect: boolean;
|
|
15278
|
+
readonly defaultValue: import("naive-ui/es/select/src/interface").Value | null;
|
|
15279
|
+
readonly remote: boolean;
|
|
15280
|
+
readonly widthMode: string;
|
|
15281
|
+
readonly fallbackOption: false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined;
|
|
15282
|
+
readonly consistentMenuWidth: boolean;
|
|
15283
|
+
readonly childrenField: string;
|
|
15139
15284
|
}>;
|
|
15140
15285
|
NRadio: import("vue").DefineComponent<{
|
|
15141
15286
|
name: StringConstructor;
|
|
@@ -15603,10 +15748,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15603
15748
|
opacity5: string;
|
|
15604
15749
|
dividerColor: string;
|
|
15605
15750
|
borderColor: string;
|
|
15606
|
-
|
|
15751
|
+
closeIconColor: string;
|
|
15752
|
+
closeIconColorHover: string;
|
|
15753
|
+
closeIconColorPressed: string;
|
|
15607
15754
|
closeColorHover: string;
|
|
15608
15755
|
closeColorPressed: string;
|
|
15609
|
-
closeColorDisabled: string;
|
|
15610
15756
|
clearColor: string;
|
|
15611
15757
|
clearColorHover: string;
|
|
15612
15758
|
clearColorPressed: string;
|
|
@@ -15856,8 +16002,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15856
16002
|
}>>, {
|
|
15857
16003
|
disabled: boolean | undefined;
|
|
15858
16004
|
checked: string | number | boolean | undefined;
|
|
15859
|
-
focusable: boolean;
|
|
15860
16005
|
indeterminate: boolean;
|
|
16006
|
+
focusable: boolean;
|
|
15861
16007
|
defaultChecked: string | number | boolean;
|
|
15862
16008
|
checkedValue: string | number | boolean;
|
|
15863
16009
|
uncheckedValue: string | number | boolean;
|
|
@@ -15921,6 +16067,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15921
16067
|
type: BooleanConstructor;
|
|
15922
16068
|
default: undefined;
|
|
15923
16069
|
};
|
|
16070
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
15924
16071
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
15925
16072
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
15926
16073
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -16141,8 +16288,8 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16141
16288
|
contentRef: HTMLElement | null;
|
|
16142
16289
|
containerScrollTop: number;
|
|
16143
16290
|
syncUnifiedContainer: () => void;
|
|
16144
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
16145
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
16291
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
16292
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
16146
16293
|
sync: () => void;
|
|
16147
16294
|
handleMouseEnterWrapper: () => void;
|
|
16148
16295
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -16176,7 +16323,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16176
16323
|
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
16177
16324
|
handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
|
|
16178
16325
|
handleInputBlur: (e: FocusEvent) => void;
|
|
16179
|
-
handleInputFocus: (e: FocusEvent) => void;
|
|
16326
|
+
handleInputFocus: (e: FocusEvent, index: number) => void;
|
|
16180
16327
|
handleWrapperBlur: (e: FocusEvent) => void;
|
|
16181
16328
|
handleWrapperFocus: (e: FocusEvent) => void;
|
|
16182
16329
|
handleMouseEnter: () => void;
|
|
@@ -16187,7 +16334,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16187
16334
|
handleClear: (e: MouseEvent) => void;
|
|
16188
16335
|
handlePasswordToggleClick: () => void;
|
|
16189
16336
|
handlePasswordToggleMousedown: (e: MouseEvent) => void;
|
|
16190
|
-
|
|
16337
|
+
handleWrapperKeydown: (e: KeyboardEvent) => void;
|
|
16191
16338
|
handleTextAreaMirrorResize: () => void;
|
|
16192
16339
|
getTextareaScrollContainer: () => HTMLTextAreaElement | null;
|
|
16193
16340
|
mergedTheme: import("vue").ComputedRef<{
|
|
@@ -16231,10 +16378,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16231
16378
|
opacity5: string;
|
|
16232
16379
|
dividerColor: string;
|
|
16233
16380
|
borderColor: string;
|
|
16234
|
-
|
|
16381
|
+
closeIconColor: string;
|
|
16382
|
+
closeIconColorHover: string;
|
|
16383
|
+
closeIconColorPressed: string;
|
|
16235
16384
|
closeColorHover: string;
|
|
16236
16385
|
closeColorPressed: string;
|
|
16237
|
-
closeColorDisabled: string;
|
|
16238
16386
|
clearColor: string;
|
|
16239
16387
|
clearColorHover: string;
|
|
16240
16388
|
clearColorPressed: string;
|
|
@@ -16475,6 +16623,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16475
16623
|
type: BooleanConstructor;
|
|
16476
16624
|
default: undefined;
|
|
16477
16625
|
};
|
|
16626
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
16478
16627
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
16479
16628
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
16480
16629
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -16817,6 +16966,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16817
16966
|
componentData: Record<string, any>;
|
|
16818
16967
|
}>;
|
|
16819
16968
|
NPopover: import("vue").DefineComponent<{
|
|
16969
|
+
internalOnAfterLeave: import("vue").PropType<() => void>;
|
|
16820
16970
|
internalRenderBody: import("vue").PropType<import("naive-ui/es/popover/src/interface").InternalRenderBody>;
|
|
16821
16971
|
show: {
|
|
16822
16972
|
type: import("vue").PropType<boolean | undefined>;
|
|
@@ -16879,9 +17029,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16879
17029
|
scrollable: BooleanConstructor;
|
|
16880
17030
|
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
16881
17031
|
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
17032
|
+
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
16882
17033
|
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
16883
17034
|
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
16884
17035
|
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
17036
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
16885
17037
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
16886
17038
|
internalInheritedEventHandlers: {
|
|
16887
17039
|
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
@@ -16959,6 +17111,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16959
17111
|
handleBlur: () => void;
|
|
16960
17112
|
syncPosition: () => void;
|
|
16961
17113
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17114
|
+
internalOnAfterLeave: import("vue").PropType<() => void>;
|
|
16962
17115
|
internalRenderBody: import("vue").PropType<import("naive-ui/es/popover/src/interface").InternalRenderBody>;
|
|
16963
17116
|
show: {
|
|
16964
17117
|
type: import("vue").PropType<boolean | undefined>;
|
|
@@ -17021,9 +17174,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17021
17174
|
scrollable: BooleanConstructor;
|
|
17022
17175
|
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
17023
17176
|
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
17177
|
+
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
17024
17178
|
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
17025
17179
|
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
17026
17180
|
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
17181
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
17027
17182
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
17028
17183
|
internalInheritedEventHandlers: {
|
|
17029
17184
|
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
@@ -17101,6 +17256,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17101
17256
|
arrowPointToCenter: boolean;
|
|
17102
17257
|
displayDirective: "show" | "if";
|
|
17103
17258
|
keepAliveOnHover: boolean;
|
|
17259
|
+
internalDeactivateImmediately: boolean;
|
|
17104
17260
|
animated: boolean;
|
|
17105
17261
|
internalTrapFocus: boolean;
|
|
17106
17262
|
defaultShow: boolean;
|
|
@@ -17154,7 +17310,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17154
17310
|
readonly default: true;
|
|
17155
17311
|
};
|
|
17156
17312
|
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
17157
|
-
readonly nativeFocusBehavior:
|
|
17313
|
+
readonly nativeFocusBehavior: {
|
|
17314
|
+
readonly type: BooleanConstructor;
|
|
17315
|
+
readonly default: boolean;
|
|
17316
|
+
};
|
|
17158
17317
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
17159
17318
|
heightTiny: string;
|
|
17160
17319
|
heightSmall: string;
|
|
@@ -17868,7 +18027,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17868
18027
|
readonly default: true;
|
|
17869
18028
|
};
|
|
17870
18029
|
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
17871
|
-
readonly nativeFocusBehavior:
|
|
18030
|
+
readonly nativeFocusBehavior: {
|
|
18031
|
+
readonly type: BooleanConstructor;
|
|
18032
|
+
readonly default: boolean;
|
|
18033
|
+
};
|
|
17872
18034
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
17873
18035
|
heightTiny: string;
|
|
17874
18036
|
heightSmall: string;
|
|
@@ -18482,26 +18644,26 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18482
18644
|
rippleDuration: string;
|
|
18483
18645
|
}, any>>>;
|
|
18484
18646
|
}>>, {
|
|
18485
|
-
type: import("naive-ui/es/button/src/interface").Type;
|
|
18486
|
-
tag: keyof HTMLElementTagNameMap;
|
|
18487
|
-
block: boolean;
|
|
18488
|
-
round: boolean;
|
|
18489
|
-
dashed: boolean;
|
|
18490
|
-
text: boolean;
|
|
18491
|
-
circle: boolean;
|
|
18492
|
-
disabled: boolean;
|
|
18493
|
-
focusable: boolean;
|
|
18494
|
-
strong: boolean;
|
|
18495
|
-
loading: boolean;
|
|
18496
|
-
bordered: boolean;
|
|
18497
|
-
tertiary: boolean;
|
|
18498
|
-
ghost: boolean;
|
|
18499
|
-
keyboard: boolean;
|
|
18500
|
-
secondary: boolean;
|
|
18501
|
-
quaternary: boolean;
|
|
18502
|
-
iconPlacement: "left" | "right";
|
|
18503
|
-
attrType: "button" | "reset" | "submit";
|
|
18504
|
-
nativeFocusBehavior: boolean;
|
|
18647
|
+
readonly type: import("naive-ui/es/button/src/interface").Type;
|
|
18648
|
+
readonly tag: keyof HTMLElementTagNameMap;
|
|
18649
|
+
readonly block: boolean;
|
|
18650
|
+
readonly round: boolean;
|
|
18651
|
+
readonly dashed: boolean;
|
|
18652
|
+
readonly text: boolean;
|
|
18653
|
+
readonly circle: boolean;
|
|
18654
|
+
readonly disabled: boolean;
|
|
18655
|
+
readonly focusable: boolean;
|
|
18656
|
+
readonly strong: boolean;
|
|
18657
|
+
readonly loading: boolean;
|
|
18658
|
+
readonly bordered: boolean;
|
|
18659
|
+
readonly tertiary: boolean;
|
|
18660
|
+
readonly ghost: boolean;
|
|
18661
|
+
readonly keyboard: boolean;
|
|
18662
|
+
readonly secondary: boolean;
|
|
18663
|
+
readonly quaternary: boolean;
|
|
18664
|
+
readonly iconPlacement: "left" | "right";
|
|
18665
|
+
readonly attrType: "button" | "reset" | "submit";
|
|
18666
|
+
readonly nativeFocusBehavior: boolean;
|
|
18505
18667
|
}>;
|
|
18506
18668
|
NSelect: import("vue").DefineComponent<{
|
|
18507
18669
|
readonly to: {
|
|
@@ -18537,10 +18699,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18537
18699
|
};
|
|
18538
18700
|
readonly remote: BooleanConstructor;
|
|
18539
18701
|
readonly loading: BooleanConstructor;
|
|
18540
|
-
readonly filter:
|
|
18541
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
18542
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
18543
|
-
};
|
|
18702
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
18544
18703
|
readonly placement: {
|
|
18545
18704
|
readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
|
|
18546
18705
|
readonly default: "bottom-start";
|
|
@@ -18550,19 +18709,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18550
18709
|
readonly default: "trigger";
|
|
18551
18710
|
};
|
|
18552
18711
|
readonly tag: BooleanConstructor;
|
|
18553
|
-
readonly onCreate:
|
|
18554
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
18555
|
-
readonly default: (label: string) => {
|
|
18556
|
-
label: string;
|
|
18557
|
-
value: string;
|
|
18558
|
-
};
|
|
18559
|
-
};
|
|
18712
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
18560
18713
|
readonly fallbackOption: {
|
|
18561
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
18562
|
-
readonly default:
|
|
18563
|
-
label: string;
|
|
18564
|
-
value: string | number;
|
|
18565
|
-
};
|
|
18714
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
18715
|
+
readonly default: undefined;
|
|
18566
18716
|
};
|
|
18567
18717
|
readonly show: {
|
|
18568
18718
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -18581,6 +18731,18 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18581
18731
|
readonly type: BooleanConstructor;
|
|
18582
18732
|
readonly default: true;
|
|
18583
18733
|
};
|
|
18734
|
+
readonly labelField: {
|
|
18735
|
+
readonly type: StringConstructor;
|
|
18736
|
+
readonly default: "label";
|
|
18737
|
+
};
|
|
18738
|
+
readonly valueField: {
|
|
18739
|
+
readonly type: StringConstructor;
|
|
18740
|
+
readonly default: "value";
|
|
18741
|
+
};
|
|
18742
|
+
readonly childrenField: {
|
|
18743
|
+
readonly type: StringConstructor;
|
|
18744
|
+
readonly default: "children";
|
|
18745
|
+
};
|
|
18584
18746
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
18585
18747
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
18586
18748
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -18603,6 +18765,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18603
18765
|
readonly default: true;
|
|
18604
18766
|
};
|
|
18605
18767
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
18768
|
+
readonly internalShowCheckmark: {
|
|
18769
|
+
readonly type: BooleanConstructor;
|
|
18770
|
+
readonly default: true;
|
|
18771
|
+
};
|
|
18606
18772
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
18607
18773
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
18608
18774
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -18698,6 +18864,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18698
18864
|
optionCheckColor: string;
|
|
18699
18865
|
optionColorPending: string;
|
|
18700
18866
|
optionColorActive: string;
|
|
18867
|
+
optionColorActivePending: string;
|
|
18701
18868
|
actionTextColor: string;
|
|
18702
18869
|
loadingColor: string;
|
|
18703
18870
|
height: string;
|
|
@@ -18823,6 +18990,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18823
18990
|
optionCheckColor: string;
|
|
18824
18991
|
optionColorPending: string;
|
|
18825
18992
|
optionColorActive: string;
|
|
18993
|
+
optionColorActivePending: string;
|
|
18826
18994
|
actionTextColor: string;
|
|
18827
18995
|
loadingColor: string;
|
|
18828
18996
|
height: string;
|
|
@@ -18948,6 +19116,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18948
19116
|
optionCheckColor: string;
|
|
18949
19117
|
optionColorPending: string;
|
|
18950
19118
|
optionColorActive: string;
|
|
19119
|
+
optionColorActivePending: string;
|
|
18951
19120
|
actionTextColor: string;
|
|
18952
19121
|
loadingColor: string;
|
|
18953
19122
|
height: string;
|
|
@@ -19077,10 +19246,11 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19077
19246
|
opacity5: string;
|
|
19078
19247
|
dividerColor: string;
|
|
19079
19248
|
borderColor: string;
|
|
19080
|
-
|
|
19249
|
+
closeIconColor: string;
|
|
19250
|
+
closeIconColorHover: string;
|
|
19251
|
+
closeIconColorPressed: string;
|
|
19081
19252
|
closeColorHover: string;
|
|
19082
19253
|
closeColorPressed: string;
|
|
19083
|
-
closeColorDisabled: string;
|
|
19084
19254
|
clearColor: string;
|
|
19085
19255
|
clearColorHover: string;
|
|
19086
19256
|
clearColorPressed: string;
|
|
@@ -19235,6 +19405,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19235
19405
|
optionCheckColor: string;
|
|
19236
19406
|
optionColorPending: string;
|
|
19237
19407
|
optionColorActive: string;
|
|
19408
|
+
optionColorActivePending: string;
|
|
19238
19409
|
actionTextColor: string;
|
|
19239
19410
|
loadingColor: string;
|
|
19240
19411
|
height: string;
|
|
@@ -19350,10 +19521,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19350
19521
|
};
|
|
19351
19522
|
readonly remote: BooleanConstructor;
|
|
19352
19523
|
readonly loading: BooleanConstructor;
|
|
19353
|
-
readonly filter:
|
|
19354
|
-
readonly type: import("vue").PropType<(pattern: string, option: import("naive-ui").SelectOption) => boolean>;
|
|
19355
|
-
readonly default: typeof import("naive-ui/es/select/src/utils").defaultFilter;
|
|
19356
|
-
};
|
|
19524
|
+
readonly filter: import("vue").PropType<import("naive-ui").SelectFilter>;
|
|
19357
19525
|
readonly placement: {
|
|
19358
19526
|
readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
|
|
19359
19527
|
readonly default: "bottom-start";
|
|
@@ -19363,19 +19531,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19363
19531
|
readonly default: "trigger";
|
|
19364
19532
|
};
|
|
19365
19533
|
readonly tag: BooleanConstructor;
|
|
19366
|
-
readonly onCreate:
|
|
19367
|
-
readonly type: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
19368
|
-
readonly default: (label: string) => {
|
|
19369
|
-
label: string;
|
|
19370
|
-
value: string;
|
|
19371
|
-
};
|
|
19372
|
-
};
|
|
19534
|
+
readonly onCreate: import("vue").PropType<(label: string) => import("naive-ui").SelectOption>;
|
|
19373
19535
|
readonly fallbackOption: {
|
|
19374
|
-
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption>;
|
|
19375
|
-
readonly default:
|
|
19376
|
-
label: string;
|
|
19377
|
-
value: string | number;
|
|
19378
|
-
};
|
|
19536
|
+
readonly type: import("vue").PropType<false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined>;
|
|
19537
|
+
readonly default: undefined;
|
|
19379
19538
|
};
|
|
19380
19539
|
readonly show: {
|
|
19381
19540
|
readonly type: import("vue").PropType<boolean | undefined>;
|
|
@@ -19394,6 +19553,18 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19394
19553
|
readonly type: BooleanConstructor;
|
|
19395
19554
|
readonly default: true;
|
|
19396
19555
|
};
|
|
19556
|
+
readonly labelField: {
|
|
19557
|
+
readonly type: StringConstructor;
|
|
19558
|
+
readonly default: "label";
|
|
19559
|
+
};
|
|
19560
|
+
readonly valueField: {
|
|
19561
|
+
readonly type: StringConstructor;
|
|
19562
|
+
readonly default: "value";
|
|
19563
|
+
};
|
|
19564
|
+
readonly childrenField: {
|
|
19565
|
+
readonly type: StringConstructor;
|
|
19566
|
+
readonly default: "children";
|
|
19567
|
+
};
|
|
19397
19568
|
readonly renderLabel: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderLabel>;
|
|
19398
19569
|
readonly renderOption: import("vue").PropType<import("naive-ui/es/_internal/select-menu/src/interface").RenderOption>;
|
|
19399
19570
|
readonly renderTag: import("vue").PropType<import("naive-ui").SelectRenderTag>;
|
|
@@ -19416,6 +19587,10 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19416
19587
|
readonly default: true;
|
|
19417
19588
|
};
|
|
19418
19589
|
readonly status: import("vue").PropType<import("naive-ui/es/form/src/interface").FormValidationStatus>;
|
|
19590
|
+
readonly internalShowCheckmark: {
|
|
19591
|
+
readonly type: BooleanConstructor;
|
|
19592
|
+
readonly default: true;
|
|
19593
|
+
};
|
|
19419
19594
|
readonly onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/select/src/interface").OnUpdateValue>>;
|
|
19420
19595
|
readonly items: import("vue").PropType<import("naive-ui/es/select/src/interface").SelectMixedOption[]>;
|
|
19421
19596
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Select", {
|
|
@@ -19511,6 +19686,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19511
19686
|
optionCheckColor: string;
|
|
19512
19687
|
optionColorPending: string;
|
|
19513
19688
|
optionColorActive: string;
|
|
19689
|
+
optionColorActivePending: string;
|
|
19514
19690
|
actionTextColor: string;
|
|
19515
19691
|
loadingColor: string;
|
|
19516
19692
|
height: string;
|
|
@@ -19636,6 +19812,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19636
19812
|
optionCheckColor: string;
|
|
19637
19813
|
optionColorPending: string;
|
|
19638
19814
|
optionColorActive: string;
|
|
19815
|
+
optionColorActivePending: string;
|
|
19639
19816
|
actionTextColor: string;
|
|
19640
19817
|
loadingColor: string;
|
|
19641
19818
|
height: string;
|
|
@@ -19761,6 +19938,7 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19761
19938
|
optionCheckColor: string;
|
|
19762
19939
|
optionColorPending: string;
|
|
19763
19940
|
optionColorActive: string;
|
|
19941
|
+
optionColorActivePending: string;
|
|
19764
19942
|
actionTextColor: string;
|
|
19765
19943
|
loadingColor: string;
|
|
19766
19944
|
height: string;
|
|
@@ -19794,29 +19972,31 @@ declare const DragLayout: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19794
19972
|
}>;
|
|
19795
19973
|
}>>>;
|
|
19796
19974
|
}>>, {
|
|
19797
|
-
tag: boolean;
|
|
19798
|
-
|
|
19799
|
-
|
|
19800
|
-
|
|
19801
|
-
|
|
19802
|
-
|
|
19803
|
-
|
|
19804
|
-
|
|
19805
|
-
|
|
19806
|
-
|
|
19807
|
-
virtualScroll: boolean;
|
|
19808
|
-
|
|
19809
|
-
|
|
19810
|
-
|
|
19811
|
-
|
|
19812
|
-
|
|
19813
|
-
|
|
19814
|
-
|
|
19815
|
-
|
|
19816
|
-
|
|
19817
|
-
|
|
19818
|
-
|
|
19819
|
-
|
|
19975
|
+
readonly tag: boolean;
|
|
19976
|
+
readonly show: boolean | undefined;
|
|
19977
|
+
readonly multiple: boolean;
|
|
19978
|
+
readonly disabled: boolean | undefined;
|
|
19979
|
+
readonly to: string | boolean | HTMLElement;
|
|
19980
|
+
readonly options: import("naive-ui/es/select/src/interface").SelectMixedOption[];
|
|
19981
|
+
readonly loading: boolean;
|
|
19982
|
+
readonly bordered: boolean | undefined;
|
|
19983
|
+
readonly placement: import("vueuc").FollowerPlacement;
|
|
19984
|
+
readonly labelField: string;
|
|
19985
|
+
readonly virtualScroll: boolean;
|
|
19986
|
+
readonly valueField: string;
|
|
19987
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
19988
|
+
readonly showArrow: boolean;
|
|
19989
|
+
readonly displayDirective: "show" | "if";
|
|
19990
|
+
readonly filterable: boolean;
|
|
19991
|
+
readonly clearable: boolean;
|
|
19992
|
+
readonly internalShowCheckmark: boolean;
|
|
19993
|
+
readonly clearFilterAfterSelect: boolean;
|
|
19994
|
+
readonly defaultValue: import("naive-ui/es/select/src/interface").Value | null;
|
|
19995
|
+
readonly remote: boolean;
|
|
19996
|
+
readonly widthMode: string;
|
|
19997
|
+
readonly fallbackOption: false | import("naive-ui/es/select/src/interface").SelectFallbackOption | undefined;
|
|
19998
|
+
readonly consistentMenuWidth: boolean;
|
|
19999
|
+
readonly childrenField: string;
|
|
19820
20000
|
}>;
|
|
19821
20001
|
NIcon: import("vue").DefineComponent<{
|
|
19822
20002
|
readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
|