cnhis-design-vue 3.1.12-beta.0 → 3.1.12-beta.1
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/differenceInDays/index.js +0 -4
- package/es/node_modules/date-fns/esm/differenceInMonths/index.js +0 -4
- 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 +49 -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 +54 -41
- package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +23 -22
- package/es/packages/big-table/src/bigTableEmits.js +51 -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 +61 -25
- 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 +61 -25
- package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.js +6 -8
- package/es/packages/form-render/src/components/renderer/cascader.js +161 -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.js +44 -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.js +62 -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 +201 -1
- package/es/packages/form-render/src/hooks/useFieldVisitor.js +38 -1
- package/es/packages/form-render/src/hooks/useFormContext.js +35 -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 +48 -1
- package/es/packages/form-render/src/hooks/useInitialData.js +11 -1
- package/es/packages/form-render/src/hooks/useTypeNormalize.js +42 -1
- package/es/packages/form-render/src/utils/index.js +87 -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.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 +74 -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 +74 -60
- package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.js +24 -23
- 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_vue_type_script_setup_true_lang.js +3 -2
- 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 +88 -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 +148 -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 +307 -1
- package/es/packages/scale-view/src/hooks/scaleview-init.js +437 -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 +35 -1
- 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 +1 -1
- 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
|
@@ -174,11 +174,16 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
174
174
|
};
|
|
175
175
|
checked: BooleanConstructor;
|
|
176
176
|
checkable: BooleanConstructor;
|
|
177
|
+
strong: BooleanConstructor;
|
|
177
178
|
onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
178
179
|
onMouseenter: import("vue").PropType<(e: MouseEvent) => void>;
|
|
179
180
|
onMouseleave: import("vue").PropType<(e: MouseEvent) => void>;
|
|
180
181
|
'onUpdate:checked': import("vue").PropType<(checked: boolean) => void>;
|
|
181
182
|
onUpdateChecked: import("vue").PropType<(checked: boolean) => void>;
|
|
183
|
+
internalCloseFocusable: {
|
|
184
|
+
type: BooleanConstructor;
|
|
185
|
+
default: boolean;
|
|
186
|
+
};
|
|
182
187
|
internalStopClickPropagation: BooleanConstructor;
|
|
183
188
|
onCheckedChange: {
|
|
184
189
|
type: import("vue").PropType<(checked: boolean) => void>;
|
|
@@ -201,6 +206,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
201
206
|
readonly default: undefined;
|
|
202
207
|
};
|
|
203
208
|
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
209
|
+
closeBorderRadius: string;
|
|
204
210
|
heightTiny: string;
|
|
205
211
|
heightSmall: string;
|
|
206
212
|
heightMedium: string;
|
|
@@ -211,6 +217,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
211
217
|
fontSizeSmall: string;
|
|
212
218
|
fontSizeMedium: string;
|
|
213
219
|
fontSizeLarge: string;
|
|
220
|
+
fontWeightStrong: string;
|
|
214
221
|
textColorCheckable: string;
|
|
215
222
|
textColorHoverCheckable: string;
|
|
216
223
|
textColorPressedCheckable: string;
|
|
@@ -224,39 +231,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
224
231
|
border: string;
|
|
225
232
|
textColor: string;
|
|
226
233
|
color: string;
|
|
227
|
-
|
|
234
|
+
colorBordered: string;
|
|
235
|
+
closeIconColor: string;
|
|
236
|
+
closeIconColorHover: string;
|
|
237
|
+
closeIconColorPressed: string;
|
|
228
238
|
closeColorHover: string;
|
|
229
239
|
closeColorPressed: string;
|
|
230
240
|
borderPrimary: string;
|
|
231
241
|
textColorPrimary: string;
|
|
232
242
|
colorPrimary: string;
|
|
233
|
-
|
|
243
|
+
colorBorderedPrimary: string;
|
|
244
|
+
closeIconColorPrimary: string;
|
|
245
|
+
closeIconColorHoverPrimary: string;
|
|
246
|
+
closeIconColorPressedPrimary: string;
|
|
234
247
|
closeColorHoverPrimary: string;
|
|
235
248
|
closeColorPressedPrimary: string;
|
|
236
249
|
borderInfo: string;
|
|
237
250
|
textColorInfo: string;
|
|
238
251
|
colorInfo: string;
|
|
239
|
-
|
|
252
|
+
colorBorderedInfo: string;
|
|
253
|
+
closeIconColorInfo: string;
|
|
254
|
+
closeIconColorHoverInfo: string;
|
|
255
|
+
closeIconColorPressedInfo: string;
|
|
240
256
|
closeColorHoverInfo: string;
|
|
241
257
|
closeColorPressedInfo: string;
|
|
242
258
|
borderSuccess: string;
|
|
243
259
|
textColorSuccess: string;
|
|
244
260
|
colorSuccess: string;
|
|
245
|
-
|
|
261
|
+
colorBorderedSuccess: string;
|
|
262
|
+
closeIconColorSuccess: string;
|
|
263
|
+
closeIconColorHoverSuccess: string;
|
|
264
|
+
closeIconColorPressedSuccess: string;
|
|
246
265
|
closeColorHoverSuccess: string;
|
|
247
266
|
closeColorPressedSuccess: string;
|
|
248
267
|
borderWarning: string;
|
|
249
268
|
textColorWarning: string;
|
|
250
269
|
colorWarning: string;
|
|
251
|
-
|
|
270
|
+
colorBorderedWarning: string;
|
|
271
|
+
closeIconColorWarning: string;
|
|
272
|
+
closeIconColorHoverWarning: string;
|
|
273
|
+
closeIconColorPressedWarning: string;
|
|
252
274
|
closeColorHoverWarning: string;
|
|
253
275
|
closeColorPressedWarning: string;
|
|
254
276
|
borderError: string;
|
|
255
277
|
textColorError: string;
|
|
256
278
|
colorError: string;
|
|
257
|
-
|
|
279
|
+
colorBorderedError: string;
|
|
280
|
+
closeIconColorError: string;
|
|
281
|
+
closeIconColorHoverError: string;
|
|
282
|
+
closeIconColorPressedError: string;
|
|
258
283
|
closeColorHoverError: string;
|
|
259
284
|
closeColorPressedError: string;
|
|
285
|
+
closeIconSizeTiny: string;
|
|
286
|
+
closeIconSizeSmall: string;
|
|
287
|
+
closeIconSizeMedium: string;
|
|
288
|
+
closeIconSizeLarge: string;
|
|
260
289
|
closeSizeTiny: string;
|
|
261
290
|
closeSizeSmall: string;
|
|
262
291
|
closeSizeMedium: string;
|
|
@@ -266,6 +295,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
266
295
|
closeMarginRtl: string;
|
|
267
296
|
}, any>>;
|
|
268
297
|
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
298
|
+
closeBorderRadius: string;
|
|
269
299
|
heightTiny: string;
|
|
270
300
|
heightSmall: string;
|
|
271
301
|
heightMedium: string;
|
|
@@ -276,6 +306,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
276
306
|
fontSizeSmall: string;
|
|
277
307
|
fontSizeMedium: string;
|
|
278
308
|
fontSizeLarge: string;
|
|
309
|
+
fontWeightStrong: string;
|
|
279
310
|
textColorCheckable: string;
|
|
280
311
|
textColorHoverCheckable: string;
|
|
281
312
|
textColorPressedCheckable: string;
|
|
@@ -289,39 +320,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
289
320
|
border: string;
|
|
290
321
|
textColor: string;
|
|
291
322
|
color: string;
|
|
292
|
-
|
|
323
|
+
colorBordered: string;
|
|
324
|
+
closeIconColor: string;
|
|
325
|
+
closeIconColorHover: string;
|
|
326
|
+
closeIconColorPressed: string;
|
|
293
327
|
closeColorHover: string;
|
|
294
328
|
closeColorPressed: string;
|
|
295
329
|
borderPrimary: string;
|
|
296
330
|
textColorPrimary: string;
|
|
297
331
|
colorPrimary: string;
|
|
298
|
-
|
|
332
|
+
colorBorderedPrimary: string;
|
|
333
|
+
closeIconColorPrimary: string;
|
|
334
|
+
closeIconColorHoverPrimary: string;
|
|
335
|
+
closeIconColorPressedPrimary: string;
|
|
299
336
|
closeColorHoverPrimary: string;
|
|
300
337
|
closeColorPressedPrimary: string;
|
|
301
338
|
borderInfo: string;
|
|
302
339
|
textColorInfo: string;
|
|
303
340
|
colorInfo: string;
|
|
304
|
-
|
|
341
|
+
colorBorderedInfo: string;
|
|
342
|
+
closeIconColorInfo: string;
|
|
343
|
+
closeIconColorHoverInfo: string;
|
|
344
|
+
closeIconColorPressedInfo: string;
|
|
305
345
|
closeColorHoverInfo: string;
|
|
306
346
|
closeColorPressedInfo: string;
|
|
307
347
|
borderSuccess: string;
|
|
308
348
|
textColorSuccess: string;
|
|
309
349
|
colorSuccess: string;
|
|
310
|
-
|
|
350
|
+
colorBorderedSuccess: string;
|
|
351
|
+
closeIconColorSuccess: string;
|
|
352
|
+
closeIconColorHoverSuccess: string;
|
|
353
|
+
closeIconColorPressedSuccess: string;
|
|
311
354
|
closeColorHoverSuccess: string;
|
|
312
355
|
closeColorPressedSuccess: string;
|
|
313
356
|
borderWarning: string;
|
|
314
357
|
textColorWarning: string;
|
|
315
358
|
colorWarning: string;
|
|
316
|
-
|
|
359
|
+
colorBorderedWarning: string;
|
|
360
|
+
closeIconColorWarning: string;
|
|
361
|
+
closeIconColorHoverWarning: string;
|
|
362
|
+
closeIconColorPressedWarning: string;
|
|
317
363
|
closeColorHoverWarning: string;
|
|
318
364
|
closeColorPressedWarning: string;
|
|
319
365
|
borderError: string;
|
|
320
366
|
textColorError: string;
|
|
321
367
|
colorError: string;
|
|
322
|
-
|
|
368
|
+
colorBorderedError: string;
|
|
369
|
+
closeIconColorError: string;
|
|
370
|
+
closeIconColorHoverError: string;
|
|
371
|
+
closeIconColorPressedError: string;
|
|
323
372
|
closeColorHoverError: string;
|
|
324
373
|
closeColorPressedError: string;
|
|
374
|
+
closeIconSizeTiny: string;
|
|
375
|
+
closeIconSizeSmall: string;
|
|
376
|
+
closeIconSizeMedium: string;
|
|
377
|
+
closeIconSizeLarge: string;
|
|
325
378
|
closeSizeTiny: string;
|
|
326
379
|
closeSizeSmall: string;
|
|
327
380
|
closeSizeMedium: string;
|
|
@@ -331,6 +384,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
331
384
|
closeMarginRtl: string;
|
|
332
385
|
}, any>>>;
|
|
333
386
|
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
387
|
+
closeBorderRadius: string;
|
|
334
388
|
heightTiny: string;
|
|
335
389
|
heightSmall: string;
|
|
336
390
|
heightMedium: string;
|
|
@@ -341,6 +395,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
341
395
|
fontSizeSmall: string;
|
|
342
396
|
fontSizeMedium: string;
|
|
343
397
|
fontSizeLarge: string;
|
|
398
|
+
fontWeightStrong: string;
|
|
344
399
|
textColorCheckable: string;
|
|
345
400
|
textColorHoverCheckable: string;
|
|
346
401
|
textColorPressedCheckable: string;
|
|
@@ -354,39 +409,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
354
409
|
border: string;
|
|
355
410
|
textColor: string;
|
|
356
411
|
color: string;
|
|
357
|
-
|
|
412
|
+
colorBordered: string;
|
|
413
|
+
closeIconColor: string;
|
|
414
|
+
closeIconColorHover: string;
|
|
415
|
+
closeIconColorPressed: string;
|
|
358
416
|
closeColorHover: string;
|
|
359
417
|
closeColorPressed: string;
|
|
360
418
|
borderPrimary: string;
|
|
361
419
|
textColorPrimary: string;
|
|
362
420
|
colorPrimary: string;
|
|
363
|
-
|
|
421
|
+
colorBorderedPrimary: string;
|
|
422
|
+
closeIconColorPrimary: string;
|
|
423
|
+
closeIconColorHoverPrimary: string;
|
|
424
|
+
closeIconColorPressedPrimary: string;
|
|
364
425
|
closeColorHoverPrimary: string;
|
|
365
426
|
closeColorPressedPrimary: string;
|
|
366
427
|
borderInfo: string;
|
|
367
428
|
textColorInfo: string;
|
|
368
429
|
colorInfo: string;
|
|
369
|
-
|
|
430
|
+
colorBorderedInfo: string;
|
|
431
|
+
closeIconColorInfo: string;
|
|
432
|
+
closeIconColorHoverInfo: string;
|
|
433
|
+
closeIconColorPressedInfo: string;
|
|
370
434
|
closeColorHoverInfo: string;
|
|
371
435
|
closeColorPressedInfo: string;
|
|
372
436
|
borderSuccess: string;
|
|
373
437
|
textColorSuccess: string;
|
|
374
438
|
colorSuccess: string;
|
|
375
|
-
|
|
439
|
+
colorBorderedSuccess: string;
|
|
440
|
+
closeIconColorSuccess: string;
|
|
441
|
+
closeIconColorHoverSuccess: string;
|
|
442
|
+
closeIconColorPressedSuccess: string;
|
|
376
443
|
closeColorHoverSuccess: string;
|
|
377
444
|
closeColorPressedSuccess: string;
|
|
378
445
|
borderWarning: string;
|
|
379
446
|
textColorWarning: string;
|
|
380
447
|
colorWarning: string;
|
|
381
|
-
|
|
448
|
+
colorBorderedWarning: string;
|
|
449
|
+
closeIconColorWarning: string;
|
|
450
|
+
closeIconColorHoverWarning: string;
|
|
451
|
+
closeIconColorPressedWarning: string;
|
|
382
452
|
closeColorHoverWarning: string;
|
|
383
453
|
closeColorPressedWarning: string;
|
|
384
454
|
borderError: string;
|
|
385
455
|
textColorError: string;
|
|
386
456
|
colorError: string;
|
|
387
|
-
|
|
457
|
+
colorBorderedError: string;
|
|
458
|
+
closeIconColorError: string;
|
|
459
|
+
closeIconColorHoverError: string;
|
|
460
|
+
closeIconColorPressedError: string;
|
|
388
461
|
closeColorHoverError: string;
|
|
389
462
|
closeColorPressedError: string;
|
|
463
|
+
closeIconSizeTiny: string;
|
|
464
|
+
closeIconSizeSmall: string;
|
|
465
|
+
closeIconSizeMedium: string;
|
|
466
|
+
closeIconSizeLarge: string;
|
|
390
467
|
closeSizeTiny: string;
|
|
391
468
|
closeSizeSmall: string;
|
|
392
469
|
closeSizeMedium: string;
|
|
@@ -403,14 +480,19 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
403
480
|
handleClick: (e: MouseEvent) => void;
|
|
404
481
|
handleCloseClick: (e: MouseEvent) => void;
|
|
405
482
|
cssVars: import("vue").ComputedRef<{
|
|
483
|
+
'--n-font-weight-strong': string;
|
|
406
484
|
'--n-avatar-size-override': string;
|
|
407
485
|
'--n-bezier': string;
|
|
408
486
|
'--n-border-radius': string;
|
|
409
487
|
'--n-border': string;
|
|
410
|
-
'--n-close-
|
|
411
|
-
'--n-close-color-hover': string;
|
|
488
|
+
'--n-close-icon-size': string;
|
|
412
489
|
'--n-close-color-pressed': string;
|
|
413
|
-
'--n-close-color-
|
|
490
|
+
'--n-close-color-hover': string;
|
|
491
|
+
'--n-close-border-radius': string;
|
|
492
|
+
'--n-close-icon-color': string;
|
|
493
|
+
'--n-close-icon-color-hover': string;
|
|
494
|
+
'--n-close-icon-color-pressed': string;
|
|
495
|
+
'--n-close-icon-color-disabled': string;
|
|
414
496
|
'--n-close-margin': string;
|
|
415
497
|
'--n-close-margin-rtl': string;
|
|
416
498
|
'--n-close-size': string;
|
|
@@ -441,11 +523,16 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
441
523
|
};
|
|
442
524
|
checked: BooleanConstructor;
|
|
443
525
|
checkable: BooleanConstructor;
|
|
526
|
+
strong: BooleanConstructor;
|
|
444
527
|
onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
445
528
|
onMouseenter: import("vue").PropType<(e: MouseEvent) => void>;
|
|
446
529
|
onMouseleave: import("vue").PropType<(e: MouseEvent) => void>;
|
|
447
530
|
'onUpdate:checked': import("vue").PropType<(checked: boolean) => void>;
|
|
448
531
|
onUpdateChecked: import("vue").PropType<(checked: boolean) => void>;
|
|
532
|
+
internalCloseFocusable: {
|
|
533
|
+
type: BooleanConstructor;
|
|
534
|
+
default: boolean;
|
|
535
|
+
};
|
|
449
536
|
internalStopClickPropagation: BooleanConstructor;
|
|
450
537
|
onCheckedChange: {
|
|
451
538
|
type: import("vue").PropType<(checked: boolean) => void>;
|
|
@@ -468,6 +555,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
468
555
|
readonly default: undefined;
|
|
469
556
|
};
|
|
470
557
|
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
558
|
+
closeBorderRadius: string;
|
|
471
559
|
heightTiny: string;
|
|
472
560
|
heightSmall: string;
|
|
473
561
|
heightMedium: string;
|
|
@@ -478,6 +566,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
478
566
|
fontSizeSmall: string;
|
|
479
567
|
fontSizeMedium: string;
|
|
480
568
|
fontSizeLarge: string;
|
|
569
|
+
fontWeightStrong: string;
|
|
481
570
|
textColorCheckable: string;
|
|
482
571
|
textColorHoverCheckable: string;
|
|
483
572
|
textColorPressedCheckable: string;
|
|
@@ -491,39 +580,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
491
580
|
border: string;
|
|
492
581
|
textColor: string;
|
|
493
582
|
color: string;
|
|
494
|
-
|
|
583
|
+
colorBordered: string;
|
|
584
|
+
closeIconColor: string;
|
|
585
|
+
closeIconColorHover: string;
|
|
586
|
+
closeIconColorPressed: string;
|
|
495
587
|
closeColorHover: string;
|
|
496
588
|
closeColorPressed: string;
|
|
497
589
|
borderPrimary: string;
|
|
498
590
|
textColorPrimary: string;
|
|
499
591
|
colorPrimary: string;
|
|
500
|
-
|
|
592
|
+
colorBorderedPrimary: string;
|
|
593
|
+
closeIconColorPrimary: string;
|
|
594
|
+
closeIconColorHoverPrimary: string;
|
|
595
|
+
closeIconColorPressedPrimary: string;
|
|
501
596
|
closeColorHoverPrimary: string;
|
|
502
597
|
closeColorPressedPrimary: string;
|
|
503
598
|
borderInfo: string;
|
|
504
599
|
textColorInfo: string;
|
|
505
600
|
colorInfo: string;
|
|
506
|
-
|
|
601
|
+
colorBorderedInfo: string;
|
|
602
|
+
closeIconColorInfo: string;
|
|
603
|
+
closeIconColorHoverInfo: string;
|
|
604
|
+
closeIconColorPressedInfo: string;
|
|
507
605
|
closeColorHoverInfo: string;
|
|
508
606
|
closeColorPressedInfo: string;
|
|
509
607
|
borderSuccess: string;
|
|
510
608
|
textColorSuccess: string;
|
|
511
609
|
colorSuccess: string;
|
|
512
|
-
|
|
610
|
+
colorBorderedSuccess: string;
|
|
611
|
+
closeIconColorSuccess: string;
|
|
612
|
+
closeIconColorHoverSuccess: string;
|
|
613
|
+
closeIconColorPressedSuccess: string;
|
|
513
614
|
closeColorHoverSuccess: string;
|
|
514
615
|
closeColorPressedSuccess: string;
|
|
515
616
|
borderWarning: string;
|
|
516
617
|
textColorWarning: string;
|
|
517
618
|
colorWarning: string;
|
|
518
|
-
|
|
619
|
+
colorBorderedWarning: string;
|
|
620
|
+
closeIconColorWarning: string;
|
|
621
|
+
closeIconColorHoverWarning: string;
|
|
622
|
+
closeIconColorPressedWarning: string;
|
|
519
623
|
closeColorHoverWarning: string;
|
|
520
624
|
closeColorPressedWarning: string;
|
|
521
625
|
borderError: string;
|
|
522
626
|
textColorError: string;
|
|
523
627
|
colorError: string;
|
|
524
|
-
|
|
628
|
+
colorBorderedError: string;
|
|
629
|
+
closeIconColorError: string;
|
|
630
|
+
closeIconColorHoverError: string;
|
|
631
|
+
closeIconColorPressedError: string;
|
|
525
632
|
closeColorHoverError: string;
|
|
526
633
|
closeColorPressedError: string;
|
|
634
|
+
closeIconSizeTiny: string;
|
|
635
|
+
closeIconSizeSmall: string;
|
|
636
|
+
closeIconSizeMedium: string;
|
|
637
|
+
closeIconSizeLarge: string;
|
|
527
638
|
closeSizeTiny: string;
|
|
528
639
|
closeSizeSmall: string;
|
|
529
640
|
closeSizeMedium: string;
|
|
@@ -533,6 +644,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
533
644
|
closeMarginRtl: string;
|
|
534
645
|
}, any>>;
|
|
535
646
|
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
647
|
+
closeBorderRadius: string;
|
|
536
648
|
heightTiny: string;
|
|
537
649
|
heightSmall: string;
|
|
538
650
|
heightMedium: string;
|
|
@@ -543,6 +655,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
543
655
|
fontSizeSmall: string;
|
|
544
656
|
fontSizeMedium: string;
|
|
545
657
|
fontSizeLarge: string;
|
|
658
|
+
fontWeightStrong: string;
|
|
546
659
|
textColorCheckable: string;
|
|
547
660
|
textColorHoverCheckable: string;
|
|
548
661
|
textColorPressedCheckable: string;
|
|
@@ -556,39 +669,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
556
669
|
border: string;
|
|
557
670
|
textColor: string;
|
|
558
671
|
color: string;
|
|
559
|
-
|
|
672
|
+
colorBordered: string;
|
|
673
|
+
closeIconColor: string;
|
|
674
|
+
closeIconColorHover: string;
|
|
675
|
+
closeIconColorPressed: string;
|
|
560
676
|
closeColorHover: string;
|
|
561
677
|
closeColorPressed: string;
|
|
562
678
|
borderPrimary: string;
|
|
563
679
|
textColorPrimary: string;
|
|
564
680
|
colorPrimary: string;
|
|
565
|
-
|
|
681
|
+
colorBorderedPrimary: string;
|
|
682
|
+
closeIconColorPrimary: string;
|
|
683
|
+
closeIconColorHoverPrimary: string;
|
|
684
|
+
closeIconColorPressedPrimary: string;
|
|
566
685
|
closeColorHoverPrimary: string;
|
|
567
686
|
closeColorPressedPrimary: string;
|
|
568
687
|
borderInfo: string;
|
|
569
688
|
textColorInfo: string;
|
|
570
689
|
colorInfo: string;
|
|
571
|
-
|
|
690
|
+
colorBorderedInfo: string;
|
|
691
|
+
closeIconColorInfo: string;
|
|
692
|
+
closeIconColorHoverInfo: string;
|
|
693
|
+
closeIconColorPressedInfo: string;
|
|
572
694
|
closeColorHoverInfo: string;
|
|
573
695
|
closeColorPressedInfo: string;
|
|
574
696
|
borderSuccess: string;
|
|
575
697
|
textColorSuccess: string;
|
|
576
698
|
colorSuccess: string;
|
|
577
|
-
|
|
699
|
+
colorBorderedSuccess: string;
|
|
700
|
+
closeIconColorSuccess: string;
|
|
701
|
+
closeIconColorHoverSuccess: string;
|
|
702
|
+
closeIconColorPressedSuccess: string;
|
|
578
703
|
closeColorHoverSuccess: string;
|
|
579
704
|
closeColorPressedSuccess: string;
|
|
580
705
|
borderWarning: string;
|
|
581
706
|
textColorWarning: string;
|
|
582
707
|
colorWarning: string;
|
|
583
|
-
|
|
708
|
+
colorBorderedWarning: string;
|
|
709
|
+
closeIconColorWarning: string;
|
|
710
|
+
closeIconColorHoverWarning: string;
|
|
711
|
+
closeIconColorPressedWarning: string;
|
|
584
712
|
closeColorHoverWarning: string;
|
|
585
713
|
closeColorPressedWarning: string;
|
|
586
714
|
borderError: string;
|
|
587
715
|
textColorError: string;
|
|
588
716
|
colorError: string;
|
|
589
|
-
|
|
717
|
+
colorBorderedError: string;
|
|
718
|
+
closeIconColorError: string;
|
|
719
|
+
closeIconColorHoverError: string;
|
|
720
|
+
closeIconColorPressedError: string;
|
|
590
721
|
closeColorHoverError: string;
|
|
591
722
|
closeColorPressedError: string;
|
|
723
|
+
closeIconSizeTiny: string;
|
|
724
|
+
closeIconSizeSmall: string;
|
|
725
|
+
closeIconSizeMedium: string;
|
|
726
|
+
closeIconSizeLarge: string;
|
|
592
727
|
closeSizeTiny: string;
|
|
593
728
|
closeSizeSmall: string;
|
|
594
729
|
closeSizeMedium: string;
|
|
@@ -598,6 +733,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
598
733
|
closeMarginRtl: string;
|
|
599
734
|
}, any>>>;
|
|
600
735
|
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
736
|
+
closeBorderRadius: string;
|
|
601
737
|
heightTiny: string;
|
|
602
738
|
heightSmall: string;
|
|
603
739
|
heightMedium: string;
|
|
@@ -608,6 +744,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
608
744
|
fontSizeSmall: string;
|
|
609
745
|
fontSizeMedium: string;
|
|
610
746
|
fontSizeLarge: string;
|
|
747
|
+
fontWeightStrong: string;
|
|
611
748
|
textColorCheckable: string;
|
|
612
749
|
textColorHoverCheckable: string;
|
|
613
750
|
textColorPressedCheckable: string;
|
|
@@ -621,39 +758,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
621
758
|
border: string;
|
|
622
759
|
textColor: string;
|
|
623
760
|
color: string;
|
|
624
|
-
|
|
761
|
+
colorBordered: string;
|
|
762
|
+
closeIconColor: string;
|
|
763
|
+
closeIconColorHover: string;
|
|
764
|
+
closeIconColorPressed: string;
|
|
625
765
|
closeColorHover: string;
|
|
626
766
|
closeColorPressed: string;
|
|
627
767
|
borderPrimary: string;
|
|
628
768
|
textColorPrimary: string;
|
|
629
769
|
colorPrimary: string;
|
|
630
|
-
|
|
770
|
+
colorBorderedPrimary: string;
|
|
771
|
+
closeIconColorPrimary: string;
|
|
772
|
+
closeIconColorHoverPrimary: string;
|
|
773
|
+
closeIconColorPressedPrimary: string;
|
|
631
774
|
closeColorHoverPrimary: string;
|
|
632
775
|
closeColorPressedPrimary: string;
|
|
633
776
|
borderInfo: string;
|
|
634
777
|
textColorInfo: string;
|
|
635
778
|
colorInfo: string;
|
|
636
|
-
|
|
779
|
+
colorBorderedInfo: string;
|
|
780
|
+
closeIconColorInfo: string;
|
|
781
|
+
closeIconColorHoverInfo: string;
|
|
782
|
+
closeIconColorPressedInfo: string;
|
|
637
783
|
closeColorHoverInfo: string;
|
|
638
784
|
closeColorPressedInfo: string;
|
|
639
785
|
borderSuccess: string;
|
|
640
786
|
textColorSuccess: string;
|
|
641
787
|
colorSuccess: string;
|
|
642
|
-
|
|
788
|
+
colorBorderedSuccess: string;
|
|
789
|
+
closeIconColorSuccess: string;
|
|
790
|
+
closeIconColorHoverSuccess: string;
|
|
791
|
+
closeIconColorPressedSuccess: string;
|
|
643
792
|
closeColorHoverSuccess: string;
|
|
644
793
|
closeColorPressedSuccess: string;
|
|
645
794
|
borderWarning: string;
|
|
646
795
|
textColorWarning: string;
|
|
647
796
|
colorWarning: string;
|
|
648
|
-
|
|
797
|
+
colorBorderedWarning: string;
|
|
798
|
+
closeIconColorWarning: string;
|
|
799
|
+
closeIconColorHoverWarning: string;
|
|
800
|
+
closeIconColorPressedWarning: string;
|
|
649
801
|
closeColorHoverWarning: string;
|
|
650
802
|
closeColorPressedWarning: string;
|
|
651
803
|
borderError: string;
|
|
652
804
|
textColorError: string;
|
|
653
805
|
colorError: string;
|
|
654
|
-
|
|
806
|
+
colorBorderedError: string;
|
|
807
|
+
closeIconColorError: string;
|
|
808
|
+
closeIconColorHoverError: string;
|
|
809
|
+
closeIconColorPressedError: string;
|
|
655
810
|
closeColorHoverError: string;
|
|
656
811
|
closeColorPressedError: string;
|
|
812
|
+
closeIconSizeTiny: string;
|
|
813
|
+
closeIconSizeSmall: string;
|
|
814
|
+
closeIconSizeMedium: string;
|
|
815
|
+
closeIconSizeLarge: string;
|
|
657
816
|
closeSizeTiny: string;
|
|
658
817
|
closeSizeSmall: string;
|
|
659
818
|
closeSizeMedium: string;
|
|
@@ -668,11 +827,13 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
668
827
|
size: "small" | "medium" | "tiny" | "large";
|
|
669
828
|
disabled: boolean | undefined;
|
|
670
829
|
checked: boolean;
|
|
830
|
+
strong: boolean;
|
|
671
831
|
bordered: boolean | undefined;
|
|
832
|
+
closable: boolean;
|
|
672
833
|
checkable: boolean;
|
|
834
|
+
internalCloseFocusable: boolean;
|
|
673
835
|
internalStopClickPropagation: boolean;
|
|
674
836
|
onCheckedChange: (checked: boolean) => void;
|
|
675
|
-
closable: boolean;
|
|
676
837
|
}>;
|
|
677
838
|
NIcon: import("vue").DefineComponent<{
|
|
678
839
|
readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
|
|
@@ -856,9 +1017,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
856
1017
|
titleTextColor: string;
|
|
857
1018
|
textColor: string;
|
|
858
1019
|
color: string;
|
|
859
|
-
closeColor: string;
|
|
860
1020
|
closeColorHover: string;
|
|
861
1021
|
closeColorPressed: string;
|
|
1022
|
+
closeIconColor: string;
|
|
1023
|
+
closeIconColorHover: string;
|
|
1024
|
+
closeIconColorPressed: string;
|
|
1025
|
+
closeBorderRadius: string;
|
|
862
1026
|
iconColor: string;
|
|
863
1027
|
iconColorInfo: string;
|
|
864
1028
|
iconColorSuccess: string;
|
|
@@ -874,6 +1038,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
874
1038
|
iconMargin: string;
|
|
875
1039
|
iconMarginIconTop: string;
|
|
876
1040
|
closeSize: string;
|
|
1041
|
+
closeIconSize: string;
|
|
877
1042
|
closeMargin: string;
|
|
878
1043
|
closeMarginIconTop: string;
|
|
879
1044
|
}, {
|
|
@@ -1094,9 +1259,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1094
1259
|
borderColor: string;
|
|
1095
1260
|
actionColor: string;
|
|
1096
1261
|
titleFontWeight: string;
|
|
1097
|
-
closeColor: string;
|
|
1098
1262
|
closeColorHover: string;
|
|
1099
1263
|
closeColorPressed: string;
|
|
1264
|
+
closeBorderRadius: string;
|
|
1265
|
+
closeIconColor: string;
|
|
1266
|
+
closeIconColorHover: string;
|
|
1267
|
+
closeIconColorPressed: string;
|
|
1100
1268
|
fontSizeSmall: string;
|
|
1101
1269
|
fontSizeMedium: string;
|
|
1102
1270
|
fontSizeLarge: string;
|
|
@@ -1111,6 +1279,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1111
1279
|
titleFontSizeMedium: string;
|
|
1112
1280
|
titleFontSizeLarge: string;
|
|
1113
1281
|
titleFontSizeHuge: string;
|
|
1282
|
+
closeIconSize: string;
|
|
1114
1283
|
closeSize: string;
|
|
1115
1284
|
}, any>;
|
|
1116
1285
|
}>>;
|
|
@@ -1130,9 +1299,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1130
1299
|
titleTextColor: string;
|
|
1131
1300
|
textColor: string;
|
|
1132
1301
|
color: string;
|
|
1133
|
-
closeColor: string;
|
|
1134
1302
|
closeColorHover: string;
|
|
1135
1303
|
closeColorPressed: string;
|
|
1304
|
+
closeIconColor: string;
|
|
1305
|
+
closeIconColorHover: string;
|
|
1306
|
+
closeIconColorPressed: string;
|
|
1307
|
+
closeBorderRadius: string;
|
|
1136
1308
|
iconColor: string;
|
|
1137
1309
|
iconColorInfo: string;
|
|
1138
1310
|
iconColorSuccess: string;
|
|
@@ -1148,6 +1320,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1148
1320
|
iconMargin: string;
|
|
1149
1321
|
iconMarginIconTop: string;
|
|
1150
1322
|
closeSize: string;
|
|
1323
|
+
closeIconSize: string;
|
|
1151
1324
|
closeMargin: string;
|
|
1152
1325
|
closeMarginIconTop: string;
|
|
1153
1326
|
}, {
|
|
@@ -1368,9 +1541,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1368
1541
|
borderColor: string;
|
|
1369
1542
|
actionColor: string;
|
|
1370
1543
|
titleFontWeight: string;
|
|
1371
|
-
closeColor: string;
|
|
1372
1544
|
closeColorHover: string;
|
|
1373
1545
|
closeColorPressed: string;
|
|
1546
|
+
closeBorderRadius: string;
|
|
1547
|
+
closeIconColor: string;
|
|
1548
|
+
closeIconColorHover: string;
|
|
1549
|
+
closeIconColorPressed: string;
|
|
1374
1550
|
fontSizeSmall: string;
|
|
1375
1551
|
fontSizeMedium: string;
|
|
1376
1552
|
fontSizeLarge: string;
|
|
@@ -1385,6 +1561,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1385
1561
|
titleFontSizeMedium: string;
|
|
1386
1562
|
titleFontSizeLarge: string;
|
|
1387
1563
|
titleFontSizeHuge: string;
|
|
1564
|
+
closeIconSize: string;
|
|
1388
1565
|
closeSize: string;
|
|
1389
1566
|
}, any>;
|
|
1390
1567
|
}>>>;
|
|
@@ -1404,9 +1581,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1404
1581
|
titleTextColor: string;
|
|
1405
1582
|
textColor: string;
|
|
1406
1583
|
color: string;
|
|
1407
|
-
closeColor: string;
|
|
1408
1584
|
closeColorHover: string;
|
|
1409
1585
|
closeColorPressed: string;
|
|
1586
|
+
closeIconColor: string;
|
|
1587
|
+
closeIconColorHover: string;
|
|
1588
|
+
closeIconColorPressed: string;
|
|
1589
|
+
closeBorderRadius: string;
|
|
1410
1590
|
iconColor: string;
|
|
1411
1591
|
iconColorInfo: string;
|
|
1412
1592
|
iconColorSuccess: string;
|
|
@@ -1422,6 +1602,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1422
1602
|
iconMargin: string;
|
|
1423
1603
|
iconMarginIconTop: string;
|
|
1424
1604
|
closeSize: string;
|
|
1605
|
+
closeIconSize: string;
|
|
1425
1606
|
closeMargin: string;
|
|
1426
1607
|
closeMarginIconTop: string;
|
|
1427
1608
|
}, {
|
|
@@ -1642,9 +1823,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1642
1823
|
borderColor: string;
|
|
1643
1824
|
actionColor: string;
|
|
1644
1825
|
titleFontWeight: string;
|
|
1645
|
-
closeColor: string;
|
|
1646
1826
|
closeColorHover: string;
|
|
1647
1827
|
closeColorPressed: string;
|
|
1828
|
+
closeBorderRadius: string;
|
|
1829
|
+
closeIconColor: string;
|
|
1830
|
+
closeIconColorHover: string;
|
|
1831
|
+
closeIconColorPressed: string;
|
|
1648
1832
|
fontSizeSmall: string;
|
|
1649
1833
|
fontSizeMedium: string;
|
|
1650
1834
|
fontSizeLarge: string;
|
|
@@ -1659,6 +1843,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1659
1843
|
titleFontSizeMedium: string;
|
|
1660
1844
|
titleFontSizeLarge: string;
|
|
1661
1845
|
titleFontSizeHuge: string;
|
|
1846
|
+
closeIconSize: string;
|
|
1662
1847
|
closeSize: string;
|
|
1663
1848
|
}, any>;
|
|
1664
1849
|
}>>>;
|
|
@@ -1794,9 +1979,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1794
1979
|
titleTextColor: string;
|
|
1795
1980
|
textColor: string;
|
|
1796
1981
|
color: string;
|
|
1797
|
-
closeColor: string;
|
|
1798
1982
|
closeColorHover: string;
|
|
1799
1983
|
closeColorPressed: string;
|
|
1984
|
+
closeIconColor: string;
|
|
1985
|
+
closeIconColorHover: string;
|
|
1986
|
+
closeIconColorPressed: string;
|
|
1987
|
+
closeBorderRadius: string;
|
|
1800
1988
|
iconColor: string;
|
|
1801
1989
|
iconColorInfo: string;
|
|
1802
1990
|
iconColorSuccess: string;
|
|
@@ -1812,6 +2000,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1812
2000
|
iconMargin: string;
|
|
1813
2001
|
iconMarginIconTop: string;
|
|
1814
2002
|
closeSize: string;
|
|
2003
|
+
closeIconSize: string;
|
|
1815
2004
|
closeMargin: string;
|
|
1816
2005
|
closeMarginIconTop: string;
|
|
1817
2006
|
}, {
|
|
@@ -2032,9 +2221,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2032
2221
|
borderColor: string;
|
|
2033
2222
|
actionColor: string;
|
|
2034
2223
|
titleFontWeight: string;
|
|
2035
|
-
closeColor: string;
|
|
2036
2224
|
closeColorHover: string;
|
|
2037
2225
|
closeColorPressed: string;
|
|
2226
|
+
closeBorderRadius: string;
|
|
2227
|
+
closeIconColor: string;
|
|
2228
|
+
closeIconColorHover: string;
|
|
2229
|
+
closeIconColorPressed: string;
|
|
2038
2230
|
fontSizeSmall: string;
|
|
2039
2231
|
fontSizeMedium: string;
|
|
2040
2232
|
fontSizeLarge: string;
|
|
@@ -2049,6 +2241,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2049
2241
|
titleFontSizeMedium: string;
|
|
2050
2242
|
titleFontSizeLarge: string;
|
|
2051
2243
|
titleFontSizeHuge: string;
|
|
2244
|
+
closeIconSize: string;
|
|
2052
2245
|
closeSize: string;
|
|
2053
2246
|
}, any>;
|
|
2054
2247
|
}>>;
|
|
@@ -2068,9 +2261,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2068
2261
|
titleTextColor: string;
|
|
2069
2262
|
textColor: string;
|
|
2070
2263
|
color: string;
|
|
2071
|
-
closeColor: string;
|
|
2072
2264
|
closeColorHover: string;
|
|
2073
2265
|
closeColorPressed: string;
|
|
2266
|
+
closeIconColor: string;
|
|
2267
|
+
closeIconColorHover: string;
|
|
2268
|
+
closeIconColorPressed: string;
|
|
2269
|
+
closeBorderRadius: string;
|
|
2074
2270
|
iconColor: string;
|
|
2075
2271
|
iconColorInfo: string;
|
|
2076
2272
|
iconColorSuccess: string;
|
|
@@ -2086,6 +2282,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2086
2282
|
iconMargin: string;
|
|
2087
2283
|
iconMarginIconTop: string;
|
|
2088
2284
|
closeSize: string;
|
|
2285
|
+
closeIconSize: string;
|
|
2089
2286
|
closeMargin: string;
|
|
2090
2287
|
closeMarginIconTop: string;
|
|
2091
2288
|
}, {
|
|
@@ -2306,9 +2503,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2306
2503
|
borderColor: string;
|
|
2307
2504
|
actionColor: string;
|
|
2308
2505
|
titleFontWeight: string;
|
|
2309
|
-
closeColor: string;
|
|
2310
2506
|
closeColorHover: string;
|
|
2311
2507
|
closeColorPressed: string;
|
|
2508
|
+
closeBorderRadius: string;
|
|
2509
|
+
closeIconColor: string;
|
|
2510
|
+
closeIconColorHover: string;
|
|
2511
|
+
closeIconColorPressed: string;
|
|
2312
2512
|
fontSizeSmall: string;
|
|
2313
2513
|
fontSizeMedium: string;
|
|
2314
2514
|
fontSizeLarge: string;
|
|
@@ -2323,6 +2523,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2323
2523
|
titleFontSizeMedium: string;
|
|
2324
2524
|
titleFontSizeLarge: string;
|
|
2325
2525
|
titleFontSizeHuge: string;
|
|
2526
|
+
closeIconSize: string;
|
|
2326
2527
|
closeSize: string;
|
|
2327
2528
|
}, any>;
|
|
2328
2529
|
}>>>;
|
|
@@ -2342,9 +2543,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2342
2543
|
titleTextColor: string;
|
|
2343
2544
|
textColor: string;
|
|
2344
2545
|
color: string;
|
|
2345
|
-
closeColor: string;
|
|
2346
2546
|
closeColorHover: string;
|
|
2347
2547
|
closeColorPressed: string;
|
|
2548
|
+
closeIconColor: string;
|
|
2549
|
+
closeIconColorHover: string;
|
|
2550
|
+
closeIconColorPressed: string;
|
|
2551
|
+
closeBorderRadius: string;
|
|
2348
2552
|
iconColor: string;
|
|
2349
2553
|
iconColorInfo: string;
|
|
2350
2554
|
iconColorSuccess: string;
|
|
@@ -2360,6 +2564,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2360
2564
|
iconMargin: string;
|
|
2361
2565
|
iconMarginIconTop: string;
|
|
2362
2566
|
closeSize: string;
|
|
2567
|
+
closeIconSize: string;
|
|
2363
2568
|
closeMargin: string;
|
|
2364
2569
|
closeMarginIconTop: string;
|
|
2365
2570
|
}, {
|
|
@@ -2580,9 +2785,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2580
2785
|
borderColor: string;
|
|
2581
2786
|
actionColor: string;
|
|
2582
2787
|
titleFontWeight: string;
|
|
2583
|
-
closeColor: string;
|
|
2584
2788
|
closeColorHover: string;
|
|
2585
2789
|
closeColorPressed: string;
|
|
2790
|
+
closeBorderRadius: string;
|
|
2791
|
+
closeIconColor: string;
|
|
2792
|
+
closeIconColorHover: string;
|
|
2793
|
+
closeIconColorPressed: string;
|
|
2586
2794
|
fontSizeSmall: string;
|
|
2587
2795
|
fontSizeMedium: string;
|
|
2588
2796
|
fontSizeLarge: string;
|
|
@@ -2597,6 +2805,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2597
2805
|
titleFontSizeMedium: string;
|
|
2598
2806
|
titleFontSizeLarge: string;
|
|
2599
2807
|
titleFontSizeHuge: string;
|
|
2808
|
+
closeIconSize: string;
|
|
2600
2809
|
closeSize: string;
|
|
2601
2810
|
}, any>;
|
|
2602
2811
|
}>>>;
|
|
@@ -2634,11 +2843,19 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2634
2843
|
readonly type: import("vue").PropType<number | "small" | "medium" | "large" | [number, number]>;
|
|
2635
2844
|
readonly default: "medium";
|
|
2636
2845
|
};
|
|
2846
|
+
readonly wrapItem: {
|
|
2847
|
+
readonly type: BooleanConstructor;
|
|
2848
|
+
readonly default: true;
|
|
2849
|
+
};
|
|
2637
2850
|
readonly itemStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
2638
2851
|
readonly wrap: {
|
|
2639
2852
|
readonly type: BooleanConstructor;
|
|
2640
2853
|
readonly default: true;
|
|
2641
2854
|
};
|
|
2855
|
+
readonly internalUseGap: {
|
|
2856
|
+
readonly type: BooleanConstructor;
|
|
2857
|
+
readonly default: undefined;
|
|
2858
|
+
};
|
|
2642
2859
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Space", {
|
|
2643
2860
|
gapSmall: string;
|
|
2644
2861
|
gapMedium: string;
|
|
@@ -2655,6 +2872,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2655
2872
|
gapLarge: string;
|
|
2656
2873
|
}, any>>>;
|
|
2657
2874
|
}, {
|
|
2875
|
+
useGap: boolean;
|
|
2658
2876
|
rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
2659
2877
|
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
2660
2878
|
margin: import("vue").ComputedRef<{
|
|
@@ -2673,11 +2891,19 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2673
2891
|
readonly type: import("vue").PropType<number | "small" | "medium" | "large" | [number, number]>;
|
|
2674
2892
|
readonly default: "medium";
|
|
2675
2893
|
};
|
|
2894
|
+
readonly wrapItem: {
|
|
2895
|
+
readonly type: BooleanConstructor;
|
|
2896
|
+
readonly default: true;
|
|
2897
|
+
};
|
|
2676
2898
|
readonly itemStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
2677
2899
|
readonly wrap: {
|
|
2678
2900
|
readonly type: BooleanConstructor;
|
|
2679
2901
|
readonly default: true;
|
|
2680
2902
|
};
|
|
2903
|
+
readonly internalUseGap: {
|
|
2904
|
+
readonly type: BooleanConstructor;
|
|
2905
|
+
readonly default: undefined;
|
|
2906
|
+
};
|
|
2681
2907
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Space", {
|
|
2682
2908
|
gapSmall: string;
|
|
2683
2909
|
gapMedium: string;
|
|
@@ -2694,11 +2920,13 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2694
2920
|
gapLarge: string;
|
|
2695
2921
|
}, any>>>;
|
|
2696
2922
|
}>>, {
|
|
2697
|
-
inline: boolean;
|
|
2698
|
-
size: number | "small" | "medium" | "large" | [number, number];
|
|
2699
|
-
wrap: boolean;
|
|
2700
|
-
vertical: boolean;
|
|
2701
|
-
justify: import("naive-ui/es/space/src/Space").Justify;
|
|
2923
|
+
readonly inline: boolean;
|
|
2924
|
+
readonly size: number | "small" | "medium" | "large" | [number, number];
|
|
2925
|
+
readonly wrap: boolean;
|
|
2926
|
+
readonly vertical: boolean;
|
|
2927
|
+
readonly justify: import("naive-ui/es/space/src/Space").Justify;
|
|
2928
|
+
readonly wrapItem: boolean;
|
|
2929
|
+
readonly internalUseGap: boolean;
|
|
2702
2930
|
}>;
|
|
2703
2931
|
AddCircleOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2704
2932
|
labelFormContent: import("vue").DefineComponent<{
|
|
@@ -2866,9 +3094,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2866
3094
|
tabTextColorActiveCard: string;
|
|
2867
3095
|
tabTextColorDisabledCard: string;
|
|
2868
3096
|
barColor: string;
|
|
2869
|
-
|
|
3097
|
+
closeIconColor: string;
|
|
3098
|
+
closeIconColorHover: string;
|
|
3099
|
+
closeIconColorPressed: string;
|
|
2870
3100
|
closeColorHover: string;
|
|
2871
3101
|
closeColorPressed: string;
|
|
3102
|
+
closeBorderRadius: string;
|
|
2872
3103
|
tabColor: string;
|
|
2873
3104
|
tabColorSegment: string;
|
|
2874
3105
|
tabBorderColor: string;
|
|
@@ -2907,6 +3138,8 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2907
3138
|
panePaddingSmall: string;
|
|
2908
3139
|
panePaddingMedium: string;
|
|
2909
3140
|
panePaddingLarge: string;
|
|
3141
|
+
closeSize: string;
|
|
3142
|
+
closeIconSize: string;
|
|
2910
3143
|
}, any>>;
|
|
2911
3144
|
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
2912
3145
|
colorSegment: string;
|
|
@@ -2928,9 +3161,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2928
3161
|
tabTextColorActiveCard: string;
|
|
2929
3162
|
tabTextColorDisabledCard: string;
|
|
2930
3163
|
barColor: string;
|
|
2931
|
-
|
|
3164
|
+
closeIconColor: string;
|
|
3165
|
+
closeIconColorHover: string;
|
|
3166
|
+
closeIconColorPressed: string;
|
|
2932
3167
|
closeColorHover: string;
|
|
2933
3168
|
closeColorPressed: string;
|
|
3169
|
+
closeBorderRadius: string;
|
|
2934
3170
|
tabColor: string;
|
|
2935
3171
|
tabColorSegment: string;
|
|
2936
3172
|
tabBorderColor: string;
|
|
@@ -2969,6 +3205,8 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2969
3205
|
panePaddingSmall: string;
|
|
2970
3206
|
panePaddingMedium: string;
|
|
2971
3207
|
panePaddingLarge: string;
|
|
3208
|
+
closeSize: string;
|
|
3209
|
+
closeIconSize: string;
|
|
2972
3210
|
}, any>>>;
|
|
2973
3211
|
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
2974
3212
|
colorSegment: string;
|
|
@@ -2990,9 +3228,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2990
3228
|
tabTextColorActiveCard: string;
|
|
2991
3229
|
tabTextColorDisabledCard: string;
|
|
2992
3230
|
barColor: string;
|
|
2993
|
-
|
|
3231
|
+
closeIconColor: string;
|
|
3232
|
+
closeIconColorHover: string;
|
|
3233
|
+
closeIconColorPressed: string;
|
|
2994
3234
|
closeColorHover: string;
|
|
2995
3235
|
closeColorPressed: string;
|
|
3236
|
+
closeBorderRadius: string;
|
|
2996
3237
|
tabColor: string;
|
|
2997
3238
|
tabColorSegment: string;
|
|
2998
3239
|
tabBorderColor: string;
|
|
@@ -3031,12 +3272,15 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3031
3272
|
panePaddingSmall: string;
|
|
3032
3273
|
panePaddingMedium: string;
|
|
3033
3274
|
panePaddingLarge: string;
|
|
3275
|
+
closeSize: string;
|
|
3276
|
+
closeIconSize: string;
|
|
3034
3277
|
}, any>>>;
|
|
3035
3278
|
}, {
|
|
3036
3279
|
syncBarPosition: () => void;
|
|
3037
3280
|
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
3038
3281
|
mergedValue: import("vue").ComputedRef<string | number | null>;
|
|
3039
3282
|
renderedNames: Set<string | number>;
|
|
3283
|
+
tabsRailElRef: import("vue").Ref<HTMLElement | null>;
|
|
3040
3284
|
tabsPaneWrapperRef: import("vue").Ref<HTMLElement | null>;
|
|
3041
3285
|
tabsElRef: import("vue").Ref<HTMLElement | null>;
|
|
3042
3286
|
barElRef: import("vue").Ref<HTMLElement | null>;
|
|
@@ -3101,9 +3345,14 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3101
3345
|
'--n-pane-text-color': string;
|
|
3102
3346
|
'--n-tab-border-color': string;
|
|
3103
3347
|
'--n-tab-border-radius': string;
|
|
3104
|
-
'--n-close-
|
|
3348
|
+
'--n-close-size': string;
|
|
3349
|
+
'--n-close-icon-size': string;
|
|
3105
3350
|
'--n-close-color-hover': string;
|
|
3106
3351
|
'--n-close-color-pressed': string;
|
|
3352
|
+
'--n-close-border-radius': string;
|
|
3353
|
+
'--n-close-icon-color': string;
|
|
3354
|
+
'--n-close-icon-color-hover': string;
|
|
3355
|
+
'--n-close-icon-color-pressed': string;
|
|
3107
3356
|
'--n-tab-color': string;
|
|
3108
3357
|
'--n-tab-font-weight': string;
|
|
3109
3358
|
'--n-tab-font-weight-active': string;
|
|
@@ -3118,7 +3367,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3118
3367
|
renderNameListRef: {
|
|
3119
3368
|
value: (string | number)[];
|
|
3120
3369
|
};
|
|
3121
|
-
onAnimationBeforeLeave: () => void;
|
|
3370
|
+
onAnimationBeforeLeave: (el: HTMLElement) => void;
|
|
3122
3371
|
onAnimationEnter: (el: HTMLElement) => void;
|
|
3123
3372
|
onAnimationAfterEnter: () => void;
|
|
3124
3373
|
onRender: (() => void) | undefined;
|
|
@@ -3177,9 +3426,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3177
3426
|
tabTextColorActiveCard: string;
|
|
3178
3427
|
tabTextColorDisabledCard: string;
|
|
3179
3428
|
barColor: string;
|
|
3180
|
-
|
|
3429
|
+
closeIconColor: string;
|
|
3430
|
+
closeIconColorHover: string;
|
|
3431
|
+
closeIconColorPressed: string;
|
|
3181
3432
|
closeColorHover: string;
|
|
3182
3433
|
closeColorPressed: string;
|
|
3434
|
+
closeBorderRadius: string;
|
|
3183
3435
|
tabColor: string;
|
|
3184
3436
|
tabColorSegment: string;
|
|
3185
3437
|
tabBorderColor: string;
|
|
@@ -3218,6 +3470,8 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3218
3470
|
panePaddingSmall: string;
|
|
3219
3471
|
panePaddingMedium: string;
|
|
3220
3472
|
panePaddingLarge: string;
|
|
3473
|
+
closeSize: string;
|
|
3474
|
+
closeIconSize: string;
|
|
3221
3475
|
}, any>>;
|
|
3222
3476
|
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
3223
3477
|
colorSegment: string;
|
|
@@ -3239,9 +3493,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3239
3493
|
tabTextColorActiveCard: string;
|
|
3240
3494
|
tabTextColorDisabledCard: string;
|
|
3241
3495
|
barColor: string;
|
|
3242
|
-
|
|
3496
|
+
closeIconColor: string;
|
|
3497
|
+
closeIconColorHover: string;
|
|
3498
|
+
closeIconColorPressed: string;
|
|
3243
3499
|
closeColorHover: string;
|
|
3244
3500
|
closeColorPressed: string;
|
|
3501
|
+
closeBorderRadius: string;
|
|
3245
3502
|
tabColor: string;
|
|
3246
3503
|
tabColorSegment: string;
|
|
3247
3504
|
tabBorderColor: string;
|
|
@@ -3280,6 +3537,8 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3280
3537
|
panePaddingSmall: string;
|
|
3281
3538
|
panePaddingMedium: string;
|
|
3282
3539
|
panePaddingLarge: string;
|
|
3540
|
+
closeSize: string;
|
|
3541
|
+
closeIconSize: string;
|
|
3283
3542
|
}, any>>>;
|
|
3284
3543
|
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
3285
3544
|
colorSegment: string;
|
|
@@ -3301,9 +3560,12 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3301
3560
|
tabTextColorActiveCard: string;
|
|
3302
3561
|
tabTextColorDisabledCard: string;
|
|
3303
3562
|
barColor: string;
|
|
3304
|
-
|
|
3563
|
+
closeIconColor: string;
|
|
3564
|
+
closeIconColorHover: string;
|
|
3565
|
+
closeIconColorPressed: string;
|
|
3305
3566
|
closeColorHover: string;
|
|
3306
3567
|
closeColorPressed: string;
|
|
3568
|
+
closeBorderRadius: string;
|
|
3307
3569
|
tabColor: string;
|
|
3308
3570
|
tabColorSegment: string;
|
|
3309
3571
|
tabBorderColor: string;
|
|
@@ -3342,14 +3604,16 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3342
3604
|
panePaddingSmall: string;
|
|
3343
3605
|
panePaddingMedium: string;
|
|
3344
3606
|
panePaddingLarge: string;
|
|
3607
|
+
closeSize: string;
|
|
3608
|
+
closeIconSize: string;
|
|
3345
3609
|
}, any>>>;
|
|
3346
3610
|
}>>, {
|
|
3347
|
-
type: import("naive-ui/es/tabs/src/interface").TabsType;
|
|
3348
|
-
size: "small" | "medium" | "large";
|
|
3349
|
-
closable: boolean;
|
|
3350
|
-
trigger: "click" | "hover";
|
|
3351
|
-
animated: boolean;
|
|
3352
|
-
tabsPadding: number;
|
|
3611
|
+
readonly type: import("naive-ui/es/tabs/src/interface").TabsType;
|
|
3612
|
+
readonly size: "small" | "medium" | "large";
|
|
3613
|
+
readonly closable: boolean;
|
|
3614
|
+
readonly trigger: "click" | "hover";
|
|
3615
|
+
readonly animated: boolean;
|
|
3616
|
+
readonly tabsPadding: number;
|
|
3353
3617
|
}>;
|
|
3354
3618
|
NTabPane: import("vue").DefineComponent<{
|
|
3355
3619
|
readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -3398,9 +3662,9 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3398
3662
|
[key: string]: any;
|
|
3399
3663
|
}> | (() => import("vue").VNodeChild)>;
|
|
3400
3664
|
}>>, {
|
|
3401
|
-
disabled: boolean;
|
|
3402
|
-
closable: boolean | undefined;
|
|
3403
|
-
displayDirective: "show" | "if" | "show:lazy";
|
|
3665
|
+
readonly disabled: boolean;
|
|
3666
|
+
readonly closable: boolean | undefined;
|
|
3667
|
+
readonly displayDirective: "show" | "if" | "show:lazy";
|
|
3404
3668
|
}>;
|
|
3405
3669
|
NAnchor: import("vue").DefineComponent<{
|
|
3406
3670
|
readonly type: {
|
|
@@ -3574,17 +3838,17 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3574
3838
|
railWidth: string;
|
|
3575
3839
|
}, any>>>;
|
|
3576
3840
|
}>>, {
|
|
3577
|
-
type: "block" | "rail";
|
|
3578
|
-
bound: number;
|
|
3579
|
-
position: "fix" | "absolute";
|
|
3580
|
-
target: (() => HTMLElement) | undefined;
|
|
3581
|
-
affix: boolean;
|
|
3582
|
-
offsetTop: number | undefined;
|
|
3583
|
-
offsetBottom: number | undefined;
|
|
3584
|
-
showRail: boolean;
|
|
3585
|
-
showBackground: boolean;
|
|
3586
|
-
internalScrollable: boolean;
|
|
3587
|
-
ignoreGap: boolean;
|
|
3841
|
+
readonly type: "block" | "rail";
|
|
3842
|
+
readonly bound: number;
|
|
3843
|
+
readonly position: "fix" | "absolute";
|
|
3844
|
+
readonly target: (() => HTMLElement) | undefined;
|
|
3845
|
+
readonly affix: boolean;
|
|
3846
|
+
readonly offsetTop: number | undefined;
|
|
3847
|
+
readonly offsetBottom: number | undefined;
|
|
3848
|
+
readonly showRail: boolean;
|
|
3849
|
+
readonly showBackground: boolean;
|
|
3850
|
+
readonly internalScrollable: boolean;
|
|
3851
|
+
readonly ignoreGap: boolean;
|
|
3588
3852
|
}>;
|
|
3589
3853
|
NAnchorLink: import("vue").DefineComponent<{
|
|
3590
3854
|
readonly title: StringConstructor;
|
|
@@ -3659,11 +3923,16 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3659
3923
|
};
|
|
3660
3924
|
checked: BooleanConstructor;
|
|
3661
3925
|
checkable: BooleanConstructor;
|
|
3926
|
+
strong: BooleanConstructor;
|
|
3662
3927
|
onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
3663
3928
|
onMouseenter: import("vue").PropType<(e: MouseEvent) => void>;
|
|
3664
3929
|
onMouseleave: import("vue").PropType<(e: MouseEvent) => void>;
|
|
3665
3930
|
'onUpdate:checked': import("vue").PropType<(checked: boolean) => void>;
|
|
3666
3931
|
onUpdateChecked: import("vue").PropType<(checked: boolean) => void>;
|
|
3932
|
+
internalCloseFocusable: {
|
|
3933
|
+
type: BooleanConstructor;
|
|
3934
|
+
default: boolean;
|
|
3935
|
+
};
|
|
3667
3936
|
internalStopClickPropagation: BooleanConstructor;
|
|
3668
3937
|
onCheckedChange: {
|
|
3669
3938
|
type: import("vue").PropType<(checked: boolean) => void>;
|
|
@@ -3686,6 +3955,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3686
3955
|
readonly default: undefined;
|
|
3687
3956
|
};
|
|
3688
3957
|
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
3958
|
+
closeBorderRadius: string;
|
|
3689
3959
|
heightTiny: string;
|
|
3690
3960
|
heightSmall: string;
|
|
3691
3961
|
heightMedium: string;
|
|
@@ -3696,6 +3966,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3696
3966
|
fontSizeSmall: string;
|
|
3697
3967
|
fontSizeMedium: string;
|
|
3698
3968
|
fontSizeLarge: string;
|
|
3969
|
+
fontWeightStrong: string;
|
|
3699
3970
|
textColorCheckable: string;
|
|
3700
3971
|
textColorHoverCheckable: string;
|
|
3701
3972
|
textColorPressedCheckable: string;
|
|
@@ -3709,39 +3980,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3709
3980
|
border: string;
|
|
3710
3981
|
textColor: string;
|
|
3711
3982
|
color: string;
|
|
3712
|
-
|
|
3983
|
+
colorBordered: string;
|
|
3984
|
+
closeIconColor: string;
|
|
3985
|
+
closeIconColorHover: string;
|
|
3986
|
+
closeIconColorPressed: string;
|
|
3713
3987
|
closeColorHover: string;
|
|
3714
3988
|
closeColorPressed: string;
|
|
3715
3989
|
borderPrimary: string;
|
|
3716
3990
|
textColorPrimary: string;
|
|
3717
3991
|
colorPrimary: string;
|
|
3718
|
-
|
|
3992
|
+
colorBorderedPrimary: string;
|
|
3993
|
+
closeIconColorPrimary: string;
|
|
3994
|
+
closeIconColorHoverPrimary: string;
|
|
3995
|
+
closeIconColorPressedPrimary: string;
|
|
3719
3996
|
closeColorHoverPrimary: string;
|
|
3720
3997
|
closeColorPressedPrimary: string;
|
|
3721
3998
|
borderInfo: string;
|
|
3722
3999
|
textColorInfo: string;
|
|
3723
4000
|
colorInfo: string;
|
|
3724
|
-
|
|
4001
|
+
colorBorderedInfo: string;
|
|
4002
|
+
closeIconColorInfo: string;
|
|
4003
|
+
closeIconColorHoverInfo: string;
|
|
4004
|
+
closeIconColorPressedInfo: string;
|
|
3725
4005
|
closeColorHoverInfo: string;
|
|
3726
4006
|
closeColorPressedInfo: string;
|
|
3727
4007
|
borderSuccess: string;
|
|
3728
4008
|
textColorSuccess: string;
|
|
3729
4009
|
colorSuccess: string;
|
|
3730
|
-
|
|
4010
|
+
colorBorderedSuccess: string;
|
|
4011
|
+
closeIconColorSuccess: string;
|
|
4012
|
+
closeIconColorHoverSuccess: string;
|
|
4013
|
+
closeIconColorPressedSuccess: string;
|
|
3731
4014
|
closeColorHoverSuccess: string;
|
|
3732
4015
|
closeColorPressedSuccess: string;
|
|
3733
4016
|
borderWarning: string;
|
|
3734
4017
|
textColorWarning: string;
|
|
3735
4018
|
colorWarning: string;
|
|
3736
|
-
|
|
4019
|
+
colorBorderedWarning: string;
|
|
4020
|
+
closeIconColorWarning: string;
|
|
4021
|
+
closeIconColorHoverWarning: string;
|
|
4022
|
+
closeIconColorPressedWarning: string;
|
|
3737
4023
|
closeColorHoverWarning: string;
|
|
3738
4024
|
closeColorPressedWarning: string;
|
|
3739
4025
|
borderError: string;
|
|
3740
4026
|
textColorError: string;
|
|
3741
4027
|
colorError: string;
|
|
3742
|
-
|
|
4028
|
+
colorBorderedError: string;
|
|
4029
|
+
closeIconColorError: string;
|
|
4030
|
+
closeIconColorHoverError: string;
|
|
4031
|
+
closeIconColorPressedError: string;
|
|
3743
4032
|
closeColorHoverError: string;
|
|
3744
4033
|
closeColorPressedError: string;
|
|
4034
|
+
closeIconSizeTiny: string;
|
|
4035
|
+
closeIconSizeSmall: string;
|
|
4036
|
+
closeIconSizeMedium: string;
|
|
4037
|
+
closeIconSizeLarge: string;
|
|
3745
4038
|
closeSizeTiny: string;
|
|
3746
4039
|
closeSizeSmall: string;
|
|
3747
4040
|
closeSizeMedium: string;
|
|
@@ -3751,6 +4044,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3751
4044
|
closeMarginRtl: string;
|
|
3752
4045
|
}, any>>;
|
|
3753
4046
|
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
4047
|
+
closeBorderRadius: string;
|
|
3754
4048
|
heightTiny: string;
|
|
3755
4049
|
heightSmall: string;
|
|
3756
4050
|
heightMedium: string;
|
|
@@ -3761,6 +4055,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3761
4055
|
fontSizeSmall: string;
|
|
3762
4056
|
fontSizeMedium: string;
|
|
3763
4057
|
fontSizeLarge: string;
|
|
4058
|
+
fontWeightStrong: string;
|
|
3764
4059
|
textColorCheckable: string;
|
|
3765
4060
|
textColorHoverCheckable: string;
|
|
3766
4061
|
textColorPressedCheckable: string;
|
|
@@ -3774,39 +4069,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3774
4069
|
border: string;
|
|
3775
4070
|
textColor: string;
|
|
3776
4071
|
color: string;
|
|
3777
|
-
|
|
4072
|
+
colorBordered: string;
|
|
4073
|
+
closeIconColor: string;
|
|
4074
|
+
closeIconColorHover: string;
|
|
4075
|
+
closeIconColorPressed: string;
|
|
3778
4076
|
closeColorHover: string;
|
|
3779
4077
|
closeColorPressed: string;
|
|
3780
4078
|
borderPrimary: string;
|
|
3781
4079
|
textColorPrimary: string;
|
|
3782
4080
|
colorPrimary: string;
|
|
3783
|
-
|
|
4081
|
+
colorBorderedPrimary: string;
|
|
4082
|
+
closeIconColorPrimary: string;
|
|
4083
|
+
closeIconColorHoverPrimary: string;
|
|
4084
|
+
closeIconColorPressedPrimary: string;
|
|
3784
4085
|
closeColorHoverPrimary: string;
|
|
3785
4086
|
closeColorPressedPrimary: string;
|
|
3786
4087
|
borderInfo: string;
|
|
3787
4088
|
textColorInfo: string;
|
|
3788
4089
|
colorInfo: string;
|
|
3789
|
-
|
|
4090
|
+
colorBorderedInfo: string;
|
|
4091
|
+
closeIconColorInfo: string;
|
|
4092
|
+
closeIconColorHoverInfo: string;
|
|
4093
|
+
closeIconColorPressedInfo: string;
|
|
3790
4094
|
closeColorHoverInfo: string;
|
|
3791
4095
|
closeColorPressedInfo: string;
|
|
3792
4096
|
borderSuccess: string;
|
|
3793
4097
|
textColorSuccess: string;
|
|
3794
4098
|
colorSuccess: string;
|
|
3795
|
-
|
|
4099
|
+
colorBorderedSuccess: string;
|
|
4100
|
+
closeIconColorSuccess: string;
|
|
4101
|
+
closeIconColorHoverSuccess: string;
|
|
4102
|
+
closeIconColorPressedSuccess: string;
|
|
3796
4103
|
closeColorHoverSuccess: string;
|
|
3797
4104
|
closeColorPressedSuccess: string;
|
|
3798
4105
|
borderWarning: string;
|
|
3799
4106
|
textColorWarning: string;
|
|
3800
4107
|
colorWarning: string;
|
|
3801
|
-
|
|
4108
|
+
colorBorderedWarning: string;
|
|
4109
|
+
closeIconColorWarning: string;
|
|
4110
|
+
closeIconColorHoverWarning: string;
|
|
4111
|
+
closeIconColorPressedWarning: string;
|
|
3802
4112
|
closeColorHoverWarning: string;
|
|
3803
4113
|
closeColorPressedWarning: string;
|
|
3804
4114
|
borderError: string;
|
|
3805
4115
|
textColorError: string;
|
|
3806
4116
|
colorError: string;
|
|
3807
|
-
|
|
4117
|
+
colorBorderedError: string;
|
|
4118
|
+
closeIconColorError: string;
|
|
4119
|
+
closeIconColorHoverError: string;
|
|
4120
|
+
closeIconColorPressedError: string;
|
|
3808
4121
|
closeColorHoverError: string;
|
|
3809
4122
|
closeColorPressedError: string;
|
|
4123
|
+
closeIconSizeTiny: string;
|
|
4124
|
+
closeIconSizeSmall: string;
|
|
4125
|
+
closeIconSizeMedium: string;
|
|
4126
|
+
closeIconSizeLarge: string;
|
|
3810
4127
|
closeSizeTiny: string;
|
|
3811
4128
|
closeSizeSmall: string;
|
|
3812
4129
|
closeSizeMedium: string;
|
|
@@ -3816,6 +4133,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3816
4133
|
closeMarginRtl: string;
|
|
3817
4134
|
}, any>>>;
|
|
3818
4135
|
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
4136
|
+
closeBorderRadius: string;
|
|
3819
4137
|
heightTiny: string;
|
|
3820
4138
|
heightSmall: string;
|
|
3821
4139
|
heightMedium: string;
|
|
@@ -3826,6 +4144,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3826
4144
|
fontSizeSmall: string;
|
|
3827
4145
|
fontSizeMedium: string;
|
|
3828
4146
|
fontSizeLarge: string;
|
|
4147
|
+
fontWeightStrong: string;
|
|
3829
4148
|
textColorCheckable: string;
|
|
3830
4149
|
textColorHoverCheckable: string;
|
|
3831
4150
|
textColorPressedCheckable: string;
|
|
@@ -3839,39 +4158,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3839
4158
|
border: string;
|
|
3840
4159
|
textColor: string;
|
|
3841
4160
|
color: string;
|
|
3842
|
-
|
|
4161
|
+
colorBordered: string;
|
|
4162
|
+
closeIconColor: string;
|
|
4163
|
+
closeIconColorHover: string;
|
|
4164
|
+
closeIconColorPressed: string;
|
|
3843
4165
|
closeColorHover: string;
|
|
3844
4166
|
closeColorPressed: string;
|
|
3845
4167
|
borderPrimary: string;
|
|
3846
4168
|
textColorPrimary: string;
|
|
3847
4169
|
colorPrimary: string;
|
|
3848
|
-
|
|
4170
|
+
colorBorderedPrimary: string;
|
|
4171
|
+
closeIconColorPrimary: string;
|
|
4172
|
+
closeIconColorHoverPrimary: string;
|
|
4173
|
+
closeIconColorPressedPrimary: string;
|
|
3849
4174
|
closeColorHoverPrimary: string;
|
|
3850
4175
|
closeColorPressedPrimary: string;
|
|
3851
4176
|
borderInfo: string;
|
|
3852
4177
|
textColorInfo: string;
|
|
3853
4178
|
colorInfo: string;
|
|
3854
|
-
|
|
4179
|
+
colorBorderedInfo: string;
|
|
4180
|
+
closeIconColorInfo: string;
|
|
4181
|
+
closeIconColorHoverInfo: string;
|
|
4182
|
+
closeIconColorPressedInfo: string;
|
|
3855
4183
|
closeColorHoverInfo: string;
|
|
3856
4184
|
closeColorPressedInfo: string;
|
|
3857
4185
|
borderSuccess: string;
|
|
3858
4186
|
textColorSuccess: string;
|
|
3859
4187
|
colorSuccess: string;
|
|
3860
|
-
|
|
4188
|
+
colorBorderedSuccess: string;
|
|
4189
|
+
closeIconColorSuccess: string;
|
|
4190
|
+
closeIconColorHoverSuccess: string;
|
|
4191
|
+
closeIconColorPressedSuccess: string;
|
|
3861
4192
|
closeColorHoverSuccess: string;
|
|
3862
4193
|
closeColorPressedSuccess: string;
|
|
3863
4194
|
borderWarning: string;
|
|
3864
4195
|
textColorWarning: string;
|
|
3865
4196
|
colorWarning: string;
|
|
3866
|
-
|
|
4197
|
+
colorBorderedWarning: string;
|
|
4198
|
+
closeIconColorWarning: string;
|
|
4199
|
+
closeIconColorHoverWarning: string;
|
|
4200
|
+
closeIconColorPressedWarning: string;
|
|
3867
4201
|
closeColorHoverWarning: string;
|
|
3868
4202
|
closeColorPressedWarning: string;
|
|
3869
4203
|
borderError: string;
|
|
3870
4204
|
textColorError: string;
|
|
3871
4205
|
colorError: string;
|
|
3872
|
-
|
|
4206
|
+
colorBorderedError: string;
|
|
4207
|
+
closeIconColorError: string;
|
|
4208
|
+
closeIconColorHoverError: string;
|
|
4209
|
+
closeIconColorPressedError: string;
|
|
3873
4210
|
closeColorHoverError: string;
|
|
3874
4211
|
closeColorPressedError: string;
|
|
4212
|
+
closeIconSizeTiny: string;
|
|
4213
|
+
closeIconSizeSmall: string;
|
|
4214
|
+
closeIconSizeMedium: string;
|
|
4215
|
+
closeIconSizeLarge: string;
|
|
3875
4216
|
closeSizeTiny: string;
|
|
3876
4217
|
closeSizeSmall: string;
|
|
3877
4218
|
closeSizeMedium: string;
|
|
@@ -3888,14 +4229,19 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3888
4229
|
handleClick: (e: MouseEvent) => void;
|
|
3889
4230
|
handleCloseClick: (e: MouseEvent) => void;
|
|
3890
4231
|
cssVars: import("vue").ComputedRef<{
|
|
4232
|
+
'--n-font-weight-strong': string;
|
|
3891
4233
|
'--n-avatar-size-override': string;
|
|
3892
4234
|
'--n-bezier': string;
|
|
3893
4235
|
'--n-border-radius': string;
|
|
3894
4236
|
'--n-border': string;
|
|
3895
|
-
'--n-close-
|
|
3896
|
-
'--n-close-color-hover': string;
|
|
4237
|
+
'--n-close-icon-size': string;
|
|
3897
4238
|
'--n-close-color-pressed': string;
|
|
3898
|
-
'--n-close-color-
|
|
4239
|
+
'--n-close-color-hover': string;
|
|
4240
|
+
'--n-close-border-radius': string;
|
|
4241
|
+
'--n-close-icon-color': string;
|
|
4242
|
+
'--n-close-icon-color-hover': string;
|
|
4243
|
+
'--n-close-icon-color-pressed': string;
|
|
4244
|
+
'--n-close-icon-color-disabled': string;
|
|
3899
4245
|
'--n-close-margin': string;
|
|
3900
4246
|
'--n-close-margin-rtl': string;
|
|
3901
4247
|
'--n-close-size': string;
|
|
@@ -3926,11 +4272,16 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3926
4272
|
};
|
|
3927
4273
|
checked: BooleanConstructor;
|
|
3928
4274
|
checkable: BooleanConstructor;
|
|
4275
|
+
strong: BooleanConstructor;
|
|
3929
4276
|
onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
3930
4277
|
onMouseenter: import("vue").PropType<(e: MouseEvent) => void>;
|
|
3931
4278
|
onMouseleave: import("vue").PropType<(e: MouseEvent) => void>;
|
|
3932
4279
|
'onUpdate:checked': import("vue").PropType<(checked: boolean) => void>;
|
|
3933
4280
|
onUpdateChecked: import("vue").PropType<(checked: boolean) => void>;
|
|
4281
|
+
internalCloseFocusable: {
|
|
4282
|
+
type: BooleanConstructor;
|
|
4283
|
+
default: boolean;
|
|
4284
|
+
};
|
|
3934
4285
|
internalStopClickPropagation: BooleanConstructor;
|
|
3935
4286
|
onCheckedChange: {
|
|
3936
4287
|
type: import("vue").PropType<(checked: boolean) => void>;
|
|
@@ -3953,6 +4304,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3953
4304
|
readonly default: undefined;
|
|
3954
4305
|
};
|
|
3955
4306
|
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
4307
|
+
closeBorderRadius: string;
|
|
3956
4308
|
heightTiny: string;
|
|
3957
4309
|
heightSmall: string;
|
|
3958
4310
|
heightMedium: string;
|
|
@@ -3963,6 +4315,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3963
4315
|
fontSizeSmall: string;
|
|
3964
4316
|
fontSizeMedium: string;
|
|
3965
4317
|
fontSizeLarge: string;
|
|
4318
|
+
fontWeightStrong: string;
|
|
3966
4319
|
textColorCheckable: string;
|
|
3967
4320
|
textColorHoverCheckable: string;
|
|
3968
4321
|
textColorPressedCheckable: string;
|
|
@@ -3976,39 +4329,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3976
4329
|
border: string;
|
|
3977
4330
|
textColor: string;
|
|
3978
4331
|
color: string;
|
|
3979
|
-
|
|
4332
|
+
colorBordered: string;
|
|
4333
|
+
closeIconColor: string;
|
|
4334
|
+
closeIconColorHover: string;
|
|
4335
|
+
closeIconColorPressed: string;
|
|
3980
4336
|
closeColorHover: string;
|
|
3981
4337
|
closeColorPressed: string;
|
|
3982
4338
|
borderPrimary: string;
|
|
3983
4339
|
textColorPrimary: string;
|
|
3984
4340
|
colorPrimary: string;
|
|
3985
|
-
|
|
4341
|
+
colorBorderedPrimary: string;
|
|
4342
|
+
closeIconColorPrimary: string;
|
|
4343
|
+
closeIconColorHoverPrimary: string;
|
|
4344
|
+
closeIconColorPressedPrimary: string;
|
|
3986
4345
|
closeColorHoverPrimary: string;
|
|
3987
4346
|
closeColorPressedPrimary: string;
|
|
3988
4347
|
borderInfo: string;
|
|
3989
4348
|
textColorInfo: string;
|
|
3990
4349
|
colorInfo: string;
|
|
3991
|
-
|
|
4350
|
+
colorBorderedInfo: string;
|
|
4351
|
+
closeIconColorInfo: string;
|
|
4352
|
+
closeIconColorHoverInfo: string;
|
|
4353
|
+
closeIconColorPressedInfo: string;
|
|
3992
4354
|
closeColorHoverInfo: string;
|
|
3993
4355
|
closeColorPressedInfo: string;
|
|
3994
4356
|
borderSuccess: string;
|
|
3995
4357
|
textColorSuccess: string;
|
|
3996
4358
|
colorSuccess: string;
|
|
3997
|
-
|
|
4359
|
+
colorBorderedSuccess: string;
|
|
4360
|
+
closeIconColorSuccess: string;
|
|
4361
|
+
closeIconColorHoverSuccess: string;
|
|
4362
|
+
closeIconColorPressedSuccess: string;
|
|
3998
4363
|
closeColorHoverSuccess: string;
|
|
3999
4364
|
closeColorPressedSuccess: string;
|
|
4000
4365
|
borderWarning: string;
|
|
4001
4366
|
textColorWarning: string;
|
|
4002
4367
|
colorWarning: string;
|
|
4003
|
-
|
|
4368
|
+
colorBorderedWarning: string;
|
|
4369
|
+
closeIconColorWarning: string;
|
|
4370
|
+
closeIconColorHoverWarning: string;
|
|
4371
|
+
closeIconColorPressedWarning: string;
|
|
4004
4372
|
closeColorHoverWarning: string;
|
|
4005
4373
|
closeColorPressedWarning: string;
|
|
4006
4374
|
borderError: string;
|
|
4007
4375
|
textColorError: string;
|
|
4008
4376
|
colorError: string;
|
|
4009
|
-
|
|
4377
|
+
colorBorderedError: string;
|
|
4378
|
+
closeIconColorError: string;
|
|
4379
|
+
closeIconColorHoverError: string;
|
|
4380
|
+
closeIconColorPressedError: string;
|
|
4010
4381
|
closeColorHoverError: string;
|
|
4011
4382
|
closeColorPressedError: string;
|
|
4383
|
+
closeIconSizeTiny: string;
|
|
4384
|
+
closeIconSizeSmall: string;
|
|
4385
|
+
closeIconSizeMedium: string;
|
|
4386
|
+
closeIconSizeLarge: string;
|
|
4012
4387
|
closeSizeTiny: string;
|
|
4013
4388
|
closeSizeSmall: string;
|
|
4014
4389
|
closeSizeMedium: string;
|
|
@@ -4018,6 +4393,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4018
4393
|
closeMarginRtl: string;
|
|
4019
4394
|
}, any>>;
|
|
4020
4395
|
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
4396
|
+
closeBorderRadius: string;
|
|
4021
4397
|
heightTiny: string;
|
|
4022
4398
|
heightSmall: string;
|
|
4023
4399
|
heightMedium: string;
|
|
@@ -4028,6 +4404,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4028
4404
|
fontSizeSmall: string;
|
|
4029
4405
|
fontSizeMedium: string;
|
|
4030
4406
|
fontSizeLarge: string;
|
|
4407
|
+
fontWeightStrong: string;
|
|
4031
4408
|
textColorCheckable: string;
|
|
4032
4409
|
textColorHoverCheckable: string;
|
|
4033
4410
|
textColorPressedCheckable: string;
|
|
@@ -4041,39 +4418,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4041
4418
|
border: string;
|
|
4042
4419
|
textColor: string;
|
|
4043
4420
|
color: string;
|
|
4044
|
-
|
|
4421
|
+
colorBordered: string;
|
|
4422
|
+
closeIconColor: string;
|
|
4423
|
+
closeIconColorHover: string;
|
|
4424
|
+
closeIconColorPressed: string;
|
|
4045
4425
|
closeColorHover: string;
|
|
4046
4426
|
closeColorPressed: string;
|
|
4047
4427
|
borderPrimary: string;
|
|
4048
4428
|
textColorPrimary: string;
|
|
4049
4429
|
colorPrimary: string;
|
|
4050
|
-
|
|
4430
|
+
colorBorderedPrimary: string;
|
|
4431
|
+
closeIconColorPrimary: string;
|
|
4432
|
+
closeIconColorHoverPrimary: string;
|
|
4433
|
+
closeIconColorPressedPrimary: string;
|
|
4051
4434
|
closeColorHoverPrimary: string;
|
|
4052
4435
|
closeColorPressedPrimary: string;
|
|
4053
4436
|
borderInfo: string;
|
|
4054
4437
|
textColorInfo: string;
|
|
4055
4438
|
colorInfo: string;
|
|
4056
|
-
|
|
4439
|
+
colorBorderedInfo: string;
|
|
4440
|
+
closeIconColorInfo: string;
|
|
4441
|
+
closeIconColorHoverInfo: string;
|
|
4442
|
+
closeIconColorPressedInfo: string;
|
|
4057
4443
|
closeColorHoverInfo: string;
|
|
4058
4444
|
closeColorPressedInfo: string;
|
|
4059
4445
|
borderSuccess: string;
|
|
4060
4446
|
textColorSuccess: string;
|
|
4061
4447
|
colorSuccess: string;
|
|
4062
|
-
|
|
4448
|
+
colorBorderedSuccess: string;
|
|
4449
|
+
closeIconColorSuccess: string;
|
|
4450
|
+
closeIconColorHoverSuccess: string;
|
|
4451
|
+
closeIconColorPressedSuccess: string;
|
|
4063
4452
|
closeColorHoverSuccess: string;
|
|
4064
4453
|
closeColorPressedSuccess: string;
|
|
4065
4454
|
borderWarning: string;
|
|
4066
4455
|
textColorWarning: string;
|
|
4067
4456
|
colorWarning: string;
|
|
4068
|
-
|
|
4457
|
+
colorBorderedWarning: string;
|
|
4458
|
+
closeIconColorWarning: string;
|
|
4459
|
+
closeIconColorHoverWarning: string;
|
|
4460
|
+
closeIconColorPressedWarning: string;
|
|
4069
4461
|
closeColorHoverWarning: string;
|
|
4070
4462
|
closeColorPressedWarning: string;
|
|
4071
4463
|
borderError: string;
|
|
4072
4464
|
textColorError: string;
|
|
4073
4465
|
colorError: string;
|
|
4074
|
-
|
|
4466
|
+
colorBorderedError: string;
|
|
4467
|
+
closeIconColorError: string;
|
|
4468
|
+
closeIconColorHoverError: string;
|
|
4469
|
+
closeIconColorPressedError: string;
|
|
4075
4470
|
closeColorHoverError: string;
|
|
4076
4471
|
closeColorPressedError: string;
|
|
4472
|
+
closeIconSizeTiny: string;
|
|
4473
|
+
closeIconSizeSmall: string;
|
|
4474
|
+
closeIconSizeMedium: string;
|
|
4475
|
+
closeIconSizeLarge: string;
|
|
4077
4476
|
closeSizeTiny: string;
|
|
4078
4477
|
closeSizeSmall: string;
|
|
4079
4478
|
closeSizeMedium: string;
|
|
@@ -4083,6 +4482,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4083
4482
|
closeMarginRtl: string;
|
|
4084
4483
|
}, any>>>;
|
|
4085
4484
|
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
4485
|
+
closeBorderRadius: string;
|
|
4086
4486
|
heightTiny: string;
|
|
4087
4487
|
heightSmall: string;
|
|
4088
4488
|
heightMedium: string;
|
|
@@ -4093,6 +4493,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4093
4493
|
fontSizeSmall: string;
|
|
4094
4494
|
fontSizeMedium: string;
|
|
4095
4495
|
fontSizeLarge: string;
|
|
4496
|
+
fontWeightStrong: string;
|
|
4096
4497
|
textColorCheckable: string;
|
|
4097
4498
|
textColorHoverCheckable: string;
|
|
4098
4499
|
textColorPressedCheckable: string;
|
|
@@ -4106,39 +4507,61 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4106
4507
|
border: string;
|
|
4107
4508
|
textColor: string;
|
|
4108
4509
|
color: string;
|
|
4109
|
-
|
|
4510
|
+
colorBordered: string;
|
|
4511
|
+
closeIconColor: string;
|
|
4512
|
+
closeIconColorHover: string;
|
|
4513
|
+
closeIconColorPressed: string;
|
|
4110
4514
|
closeColorHover: string;
|
|
4111
4515
|
closeColorPressed: string;
|
|
4112
4516
|
borderPrimary: string;
|
|
4113
4517
|
textColorPrimary: string;
|
|
4114
4518
|
colorPrimary: string;
|
|
4115
|
-
|
|
4519
|
+
colorBorderedPrimary: string;
|
|
4520
|
+
closeIconColorPrimary: string;
|
|
4521
|
+
closeIconColorHoverPrimary: string;
|
|
4522
|
+
closeIconColorPressedPrimary: string;
|
|
4116
4523
|
closeColorHoverPrimary: string;
|
|
4117
4524
|
closeColorPressedPrimary: string;
|
|
4118
4525
|
borderInfo: string;
|
|
4119
4526
|
textColorInfo: string;
|
|
4120
4527
|
colorInfo: string;
|
|
4121
|
-
|
|
4528
|
+
colorBorderedInfo: string;
|
|
4529
|
+
closeIconColorInfo: string;
|
|
4530
|
+
closeIconColorHoverInfo: string;
|
|
4531
|
+
closeIconColorPressedInfo: string;
|
|
4122
4532
|
closeColorHoverInfo: string;
|
|
4123
4533
|
closeColorPressedInfo: string;
|
|
4124
4534
|
borderSuccess: string;
|
|
4125
4535
|
textColorSuccess: string;
|
|
4126
4536
|
colorSuccess: string;
|
|
4127
|
-
|
|
4537
|
+
colorBorderedSuccess: string;
|
|
4538
|
+
closeIconColorSuccess: string;
|
|
4539
|
+
closeIconColorHoverSuccess: string;
|
|
4540
|
+
closeIconColorPressedSuccess: string;
|
|
4128
4541
|
closeColorHoverSuccess: string;
|
|
4129
4542
|
closeColorPressedSuccess: string;
|
|
4130
4543
|
borderWarning: string;
|
|
4131
4544
|
textColorWarning: string;
|
|
4132
4545
|
colorWarning: string;
|
|
4133
|
-
|
|
4546
|
+
colorBorderedWarning: string;
|
|
4547
|
+
closeIconColorWarning: string;
|
|
4548
|
+
closeIconColorHoverWarning: string;
|
|
4549
|
+
closeIconColorPressedWarning: string;
|
|
4134
4550
|
closeColorHoverWarning: string;
|
|
4135
4551
|
closeColorPressedWarning: string;
|
|
4136
4552
|
borderError: string;
|
|
4137
4553
|
textColorError: string;
|
|
4138
4554
|
colorError: string;
|
|
4139
|
-
|
|
4555
|
+
colorBorderedError: string;
|
|
4556
|
+
closeIconColorError: string;
|
|
4557
|
+
closeIconColorHoverError: string;
|
|
4558
|
+
closeIconColorPressedError: string;
|
|
4140
4559
|
closeColorHoverError: string;
|
|
4141
4560
|
closeColorPressedError: string;
|
|
4561
|
+
closeIconSizeTiny: string;
|
|
4562
|
+
closeIconSizeSmall: string;
|
|
4563
|
+
closeIconSizeMedium: string;
|
|
4564
|
+
closeIconSizeLarge: string;
|
|
4142
4565
|
closeSizeTiny: string;
|
|
4143
4566
|
closeSizeSmall: string;
|
|
4144
4567
|
closeSizeMedium: string;
|
|
@@ -4153,11 +4576,13 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4153
4576
|
size: "small" | "medium" | "tiny" | "large";
|
|
4154
4577
|
disabled: boolean | undefined;
|
|
4155
4578
|
checked: boolean;
|
|
4579
|
+
strong: boolean;
|
|
4156
4580
|
bordered: boolean | undefined;
|
|
4581
|
+
closable: boolean;
|
|
4157
4582
|
checkable: boolean;
|
|
4583
|
+
internalCloseFocusable: boolean;
|
|
4158
4584
|
internalStopClickPropagation: boolean;
|
|
4159
4585
|
onCheckedChange: (checked: boolean) => void;
|
|
4160
|
-
closable: boolean;
|
|
4161
4586
|
}>;
|
|
4162
4587
|
NTooltip: import("vue").DefineComponent<{
|
|
4163
4588
|
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
|
@@ -4287,9 +4712,11 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4287
4712
|
scrollable: BooleanConstructor;
|
|
4288
4713
|
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
4289
4714
|
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
4715
|
+
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
4290
4716
|
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
4291
4717
|
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
4292
4718
|
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
4719
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
4293
4720
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
4294
4721
|
internalInheritedEventHandlers: {
|
|
4295
4722
|
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
@@ -4354,10 +4781,11 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4354
4781
|
opacity5: string;
|
|
4355
4782
|
dividerColor: string;
|
|
4356
4783
|
borderColor: string;
|
|
4357
|
-
|
|
4784
|
+
closeIconColor: string;
|
|
4785
|
+
closeIconColorHover: string;
|
|
4786
|
+
closeIconColorPressed: string;
|
|
4358
4787
|
closeColorHover: string;
|
|
4359
4788
|
closeColorPressed: string;
|
|
4360
|
-
closeColorDisabled: string;
|
|
4361
4789
|
clearColor: string;
|
|
4362
4790
|
clearColorHover: string;
|
|
4363
4791
|
clearColorPressed: string;
|
|
@@ -4586,9 +5014,11 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4586
5014
|
scrollable: BooleanConstructor;
|
|
4587
5015
|
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
4588
5016
|
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
5017
|
+
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
4589
5018
|
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
4590
5019
|
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
4591
5020
|
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
5021
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
4592
5022
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
4593
5023
|
internalInheritedEventHandlers: {
|
|
4594
5024
|
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
@@ -4624,6 +5054,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4624
5054
|
arrowPointToCenter: boolean;
|
|
4625
5055
|
displayDirective: "show" | "if";
|
|
4626
5056
|
keepAliveOnHover: boolean;
|
|
5057
|
+
internalDeactivateImmediately: boolean;
|
|
4627
5058
|
animated: boolean;
|
|
4628
5059
|
internalTrapFocus: boolean;
|
|
4629
5060
|
defaultShow: boolean;
|
|
@@ -4749,7 +5180,10 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4749
5180
|
readonly default: true;
|
|
4750
5181
|
};
|
|
4751
5182
|
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
4752
|
-
readonly nativeFocusBehavior:
|
|
5183
|
+
readonly nativeFocusBehavior: {
|
|
5184
|
+
readonly type: BooleanConstructor;
|
|
5185
|
+
readonly default: boolean;
|
|
5186
|
+
};
|
|
4753
5187
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
4754
5188
|
heightTiny: string;
|
|
4755
5189
|
heightSmall: string;
|
|
@@ -5463,7 +5897,10 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5463
5897
|
readonly default: true;
|
|
5464
5898
|
};
|
|
5465
5899
|
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
5466
|
-
readonly nativeFocusBehavior:
|
|
5900
|
+
readonly nativeFocusBehavior: {
|
|
5901
|
+
readonly type: BooleanConstructor;
|
|
5902
|
+
readonly default: boolean;
|
|
5903
|
+
};
|
|
5467
5904
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
5468
5905
|
heightTiny: string;
|
|
5469
5906
|
heightSmall: string;
|
|
@@ -6077,26 +6514,26 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6077
6514
|
rippleDuration: string;
|
|
6078
6515
|
}, any>>>;
|
|
6079
6516
|
}>>, {
|
|
6080
|
-
type: import("naive-ui/es/button/src/interface").Type;
|
|
6081
|
-
tag: keyof HTMLElementTagNameMap;
|
|
6082
|
-
block: boolean;
|
|
6083
|
-
round: boolean;
|
|
6084
|
-
dashed: boolean;
|
|
6085
|
-
text: boolean;
|
|
6086
|
-
circle: boolean;
|
|
6087
|
-
disabled: boolean;
|
|
6088
|
-
focusable: boolean;
|
|
6089
|
-
strong: boolean;
|
|
6090
|
-
loading: boolean;
|
|
6091
|
-
bordered: boolean;
|
|
6092
|
-
tertiary: boolean;
|
|
6093
|
-
ghost: boolean;
|
|
6094
|
-
keyboard: boolean;
|
|
6095
|
-
secondary: boolean;
|
|
6096
|
-
quaternary: boolean;
|
|
6097
|
-
iconPlacement: "left" | "right";
|
|
6098
|
-
attrType: "button" | "reset" | "submit";
|
|
6099
|
-
nativeFocusBehavior: boolean;
|
|
6517
|
+
readonly type: import("naive-ui/es/button/src/interface").Type;
|
|
6518
|
+
readonly tag: keyof HTMLElementTagNameMap;
|
|
6519
|
+
readonly block: boolean;
|
|
6520
|
+
readonly round: boolean;
|
|
6521
|
+
readonly dashed: boolean;
|
|
6522
|
+
readonly text: boolean;
|
|
6523
|
+
readonly circle: boolean;
|
|
6524
|
+
readonly disabled: boolean;
|
|
6525
|
+
readonly focusable: boolean;
|
|
6526
|
+
readonly strong: boolean;
|
|
6527
|
+
readonly loading: boolean;
|
|
6528
|
+
readonly bordered: boolean;
|
|
6529
|
+
readonly tertiary: boolean;
|
|
6530
|
+
readonly ghost: boolean;
|
|
6531
|
+
readonly keyboard: boolean;
|
|
6532
|
+
readonly secondary: boolean;
|
|
6533
|
+
readonly quaternary: boolean;
|
|
6534
|
+
readonly iconPlacement: "left" | "right";
|
|
6535
|
+
readonly attrType: "button" | "reset" | "submit";
|
|
6536
|
+
readonly nativeFocusBehavior: boolean;
|
|
6100
6537
|
}>;
|
|
6101
6538
|
NInput: import("vue").DefineComponent<{
|
|
6102
6539
|
bordered: {
|
|
@@ -6156,6 +6593,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6156
6593
|
type: BooleanConstructor;
|
|
6157
6594
|
default: undefined;
|
|
6158
6595
|
};
|
|
6596
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
6159
6597
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
6160
6598
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
6161
6599
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -6376,8 +6814,8 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6376
6814
|
contentRef: HTMLElement | null;
|
|
6377
6815
|
containerScrollTop: number;
|
|
6378
6816
|
syncUnifiedContainer: () => void;
|
|
6379
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
6380
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
6817
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
6818
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
6381
6819
|
sync: () => void;
|
|
6382
6820
|
handleMouseEnterWrapper: () => void;
|
|
6383
6821
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -6411,7 +6849,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6411
6849
|
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
6412
6850
|
handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
|
|
6413
6851
|
handleInputBlur: (e: FocusEvent) => void;
|
|
6414
|
-
handleInputFocus: (e: FocusEvent) => void;
|
|
6852
|
+
handleInputFocus: (e: FocusEvent, index: number) => void;
|
|
6415
6853
|
handleWrapperBlur: (e: FocusEvent) => void;
|
|
6416
6854
|
handleWrapperFocus: (e: FocusEvent) => void;
|
|
6417
6855
|
handleMouseEnter: () => void;
|
|
@@ -6422,7 +6860,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6422
6860
|
handleClear: (e: MouseEvent) => void;
|
|
6423
6861
|
handlePasswordToggleClick: () => void;
|
|
6424
6862
|
handlePasswordToggleMousedown: (e: MouseEvent) => void;
|
|
6425
|
-
|
|
6863
|
+
handleWrapperKeydown: (e: KeyboardEvent) => void;
|
|
6426
6864
|
handleTextAreaMirrorResize: () => void;
|
|
6427
6865
|
getTextareaScrollContainer: () => HTMLTextAreaElement | null;
|
|
6428
6866
|
mergedTheme: import("vue").ComputedRef<{
|
|
@@ -6466,10 +6904,11 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6466
6904
|
opacity5: string;
|
|
6467
6905
|
dividerColor: string;
|
|
6468
6906
|
borderColor: string;
|
|
6469
|
-
|
|
6907
|
+
closeIconColor: string;
|
|
6908
|
+
closeIconColorHover: string;
|
|
6909
|
+
closeIconColorPressed: string;
|
|
6470
6910
|
closeColorHover: string;
|
|
6471
6911
|
closeColorPressed: string;
|
|
6472
|
-
closeColorDisabled: string;
|
|
6473
6912
|
clearColor: string;
|
|
6474
6913
|
clearColorHover: string;
|
|
6475
6914
|
clearColorPressed: string;
|
|
@@ -6710,6 +7149,7 @@ declare const SelectLabel: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6710
7149
|
type: BooleanConstructor;
|
|
6711
7150
|
default: undefined;
|
|
6712
7151
|
};
|
|
7152
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
6713
7153
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
6714
7154
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
6715
7155
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -7321,9 +7761,12 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7321
7761
|
tabTextColorActiveCard: string;
|
|
7322
7762
|
tabTextColorDisabledCard: string;
|
|
7323
7763
|
barColor: string;
|
|
7324
|
-
|
|
7764
|
+
closeIconColor: string;
|
|
7765
|
+
closeIconColorHover: string;
|
|
7766
|
+
closeIconColorPressed: string;
|
|
7325
7767
|
closeColorHover: string;
|
|
7326
7768
|
closeColorPressed: string;
|
|
7769
|
+
closeBorderRadius: string;
|
|
7327
7770
|
tabColor: string;
|
|
7328
7771
|
tabColorSegment: string;
|
|
7329
7772
|
tabBorderColor: string;
|
|
@@ -7362,6 +7805,8 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7362
7805
|
panePaddingSmall: string;
|
|
7363
7806
|
panePaddingMedium: string;
|
|
7364
7807
|
panePaddingLarge: string;
|
|
7808
|
+
closeSize: string;
|
|
7809
|
+
closeIconSize: string;
|
|
7365
7810
|
}, any>>;
|
|
7366
7811
|
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
7367
7812
|
colorSegment: string;
|
|
@@ -7383,9 +7828,12 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7383
7828
|
tabTextColorActiveCard: string;
|
|
7384
7829
|
tabTextColorDisabledCard: string;
|
|
7385
7830
|
barColor: string;
|
|
7386
|
-
|
|
7831
|
+
closeIconColor: string;
|
|
7832
|
+
closeIconColorHover: string;
|
|
7833
|
+
closeIconColorPressed: string;
|
|
7387
7834
|
closeColorHover: string;
|
|
7388
7835
|
closeColorPressed: string;
|
|
7836
|
+
closeBorderRadius: string;
|
|
7389
7837
|
tabColor: string;
|
|
7390
7838
|
tabColorSegment: string;
|
|
7391
7839
|
tabBorderColor: string;
|
|
@@ -7424,6 +7872,8 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7424
7872
|
panePaddingSmall: string;
|
|
7425
7873
|
panePaddingMedium: string;
|
|
7426
7874
|
panePaddingLarge: string;
|
|
7875
|
+
closeSize: string;
|
|
7876
|
+
closeIconSize: string;
|
|
7427
7877
|
}, any>>>;
|
|
7428
7878
|
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
7429
7879
|
colorSegment: string;
|
|
@@ -7445,9 +7895,12 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7445
7895
|
tabTextColorActiveCard: string;
|
|
7446
7896
|
tabTextColorDisabledCard: string;
|
|
7447
7897
|
barColor: string;
|
|
7448
|
-
|
|
7898
|
+
closeIconColor: string;
|
|
7899
|
+
closeIconColorHover: string;
|
|
7900
|
+
closeIconColorPressed: string;
|
|
7449
7901
|
closeColorHover: string;
|
|
7450
7902
|
closeColorPressed: string;
|
|
7903
|
+
closeBorderRadius: string;
|
|
7451
7904
|
tabColor: string;
|
|
7452
7905
|
tabColorSegment: string;
|
|
7453
7906
|
tabBorderColor: string;
|
|
@@ -7486,12 +7939,15 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7486
7939
|
panePaddingSmall: string;
|
|
7487
7940
|
panePaddingMedium: string;
|
|
7488
7941
|
panePaddingLarge: string;
|
|
7942
|
+
closeSize: string;
|
|
7943
|
+
closeIconSize: string;
|
|
7489
7944
|
}, any>>>;
|
|
7490
7945
|
}, {
|
|
7491
7946
|
syncBarPosition: () => void;
|
|
7492
7947
|
mergedClsPrefix: import("vue").ComputedRef<string>;
|
|
7493
7948
|
mergedValue: import("vue").ComputedRef<string | number | null>;
|
|
7494
7949
|
renderedNames: Set<string | number>;
|
|
7950
|
+
tabsRailElRef: import("vue").Ref<HTMLElement | null>;
|
|
7495
7951
|
tabsPaneWrapperRef: import("vue").Ref<HTMLElement | null>;
|
|
7496
7952
|
tabsElRef: import("vue").Ref<HTMLElement | null>;
|
|
7497
7953
|
barElRef: import("vue").Ref<HTMLElement | null>;
|
|
@@ -7556,9 +8012,14 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7556
8012
|
'--n-pane-text-color': string;
|
|
7557
8013
|
'--n-tab-border-color': string;
|
|
7558
8014
|
'--n-tab-border-radius': string;
|
|
7559
|
-
'--n-close-
|
|
8015
|
+
'--n-close-size': string;
|
|
8016
|
+
'--n-close-icon-size': string;
|
|
7560
8017
|
'--n-close-color-hover': string;
|
|
7561
8018
|
'--n-close-color-pressed': string;
|
|
8019
|
+
'--n-close-border-radius': string;
|
|
8020
|
+
'--n-close-icon-color': string;
|
|
8021
|
+
'--n-close-icon-color-hover': string;
|
|
8022
|
+
'--n-close-icon-color-pressed': string;
|
|
7562
8023
|
'--n-tab-color': string;
|
|
7563
8024
|
'--n-tab-font-weight': string;
|
|
7564
8025
|
'--n-tab-font-weight-active': string;
|
|
@@ -7573,7 +8034,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7573
8034
|
renderNameListRef: {
|
|
7574
8035
|
value: (string | number)[];
|
|
7575
8036
|
};
|
|
7576
|
-
onAnimationBeforeLeave: () => void;
|
|
8037
|
+
onAnimationBeforeLeave: (el: HTMLElement) => void;
|
|
7577
8038
|
onAnimationEnter: (el: HTMLElement) => void;
|
|
7578
8039
|
onAnimationAfterEnter: () => void;
|
|
7579
8040
|
onRender: (() => void) | undefined;
|
|
@@ -7632,9 +8093,12 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7632
8093
|
tabTextColorActiveCard: string;
|
|
7633
8094
|
tabTextColorDisabledCard: string;
|
|
7634
8095
|
barColor: string;
|
|
7635
|
-
|
|
8096
|
+
closeIconColor: string;
|
|
8097
|
+
closeIconColorHover: string;
|
|
8098
|
+
closeIconColorPressed: string;
|
|
7636
8099
|
closeColorHover: string;
|
|
7637
8100
|
closeColorPressed: string;
|
|
8101
|
+
closeBorderRadius: string;
|
|
7638
8102
|
tabColor: string;
|
|
7639
8103
|
tabColorSegment: string;
|
|
7640
8104
|
tabBorderColor: string;
|
|
@@ -7673,6 +8137,8 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7673
8137
|
panePaddingSmall: string;
|
|
7674
8138
|
panePaddingMedium: string;
|
|
7675
8139
|
panePaddingLarge: string;
|
|
8140
|
+
closeSize: string;
|
|
8141
|
+
closeIconSize: string;
|
|
7676
8142
|
}, any>>;
|
|
7677
8143
|
readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
7678
8144
|
colorSegment: string;
|
|
@@ -7694,9 +8160,12 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7694
8160
|
tabTextColorActiveCard: string;
|
|
7695
8161
|
tabTextColorDisabledCard: string;
|
|
7696
8162
|
barColor: string;
|
|
7697
|
-
|
|
8163
|
+
closeIconColor: string;
|
|
8164
|
+
closeIconColorHover: string;
|
|
8165
|
+
closeIconColorPressed: string;
|
|
7698
8166
|
closeColorHover: string;
|
|
7699
8167
|
closeColorPressed: string;
|
|
8168
|
+
closeBorderRadius: string;
|
|
7700
8169
|
tabColor: string;
|
|
7701
8170
|
tabColorSegment: string;
|
|
7702
8171
|
tabBorderColor: string;
|
|
@@ -7735,6 +8204,8 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7735
8204
|
panePaddingSmall: string;
|
|
7736
8205
|
panePaddingMedium: string;
|
|
7737
8206
|
panePaddingLarge: string;
|
|
8207
|
+
closeSize: string;
|
|
8208
|
+
closeIconSize: string;
|
|
7738
8209
|
}, any>>>;
|
|
7739
8210
|
readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tabs", {
|
|
7740
8211
|
colorSegment: string;
|
|
@@ -7756,9 +8227,12 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7756
8227
|
tabTextColorActiveCard: string;
|
|
7757
8228
|
tabTextColorDisabledCard: string;
|
|
7758
8229
|
barColor: string;
|
|
7759
|
-
|
|
8230
|
+
closeIconColor: string;
|
|
8231
|
+
closeIconColorHover: string;
|
|
8232
|
+
closeIconColorPressed: string;
|
|
7760
8233
|
closeColorHover: string;
|
|
7761
8234
|
closeColorPressed: string;
|
|
8235
|
+
closeBorderRadius: string;
|
|
7762
8236
|
tabColor: string;
|
|
7763
8237
|
tabColorSegment: string;
|
|
7764
8238
|
tabBorderColor: string;
|
|
@@ -7797,14 +8271,16 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7797
8271
|
panePaddingSmall: string;
|
|
7798
8272
|
panePaddingMedium: string;
|
|
7799
8273
|
panePaddingLarge: string;
|
|
8274
|
+
closeSize: string;
|
|
8275
|
+
closeIconSize: string;
|
|
7800
8276
|
}, any>>>;
|
|
7801
8277
|
}>>, {
|
|
7802
|
-
type: import("naive-ui/es/tabs/src/interface").TabsType;
|
|
7803
|
-
size: "small" | "medium" | "large";
|
|
7804
|
-
closable: boolean;
|
|
7805
|
-
trigger: "click" | "hover";
|
|
7806
|
-
animated: boolean;
|
|
7807
|
-
tabsPadding: number;
|
|
8278
|
+
readonly type: import("naive-ui/es/tabs/src/interface").TabsType;
|
|
8279
|
+
readonly size: "small" | "medium" | "large";
|
|
8280
|
+
readonly closable: boolean;
|
|
8281
|
+
readonly trigger: "click" | "hover";
|
|
8282
|
+
readonly animated: boolean;
|
|
8283
|
+
readonly tabsPadding: number;
|
|
7808
8284
|
}>;
|
|
7809
8285
|
NTabPane: import("vue").DefineComponent<{
|
|
7810
8286
|
readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -7853,9 +8329,9 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7853
8329
|
[key: string]: any;
|
|
7854
8330
|
}> | (() => import("vue").VNodeChild)>;
|
|
7855
8331
|
}>>, {
|
|
7856
|
-
disabled: boolean;
|
|
7857
|
-
closable: boolean | undefined;
|
|
7858
|
-
displayDirective: "show" | "if" | "show:lazy";
|
|
8332
|
+
readonly disabled: boolean;
|
|
8333
|
+
readonly closable: boolean | undefined;
|
|
8334
|
+
readonly displayDirective: "show" | "if" | "show:lazy";
|
|
7859
8335
|
}>;
|
|
7860
8336
|
NAnchor: import("vue").DefineComponent<{
|
|
7861
8337
|
readonly type: {
|
|
@@ -8029,17 +8505,17 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8029
8505
|
railWidth: string;
|
|
8030
8506
|
}, any>>>;
|
|
8031
8507
|
}>>, {
|
|
8032
|
-
type: "block" | "rail";
|
|
8033
|
-
bound: number;
|
|
8034
|
-
position: "fix" | "absolute";
|
|
8035
|
-
target: (() => HTMLElement) | undefined;
|
|
8036
|
-
affix: boolean;
|
|
8037
|
-
offsetTop: number | undefined;
|
|
8038
|
-
offsetBottom: number | undefined;
|
|
8039
|
-
showRail: boolean;
|
|
8040
|
-
showBackground: boolean;
|
|
8041
|
-
internalScrollable: boolean;
|
|
8042
|
-
ignoreGap: boolean;
|
|
8508
|
+
readonly type: "block" | "rail";
|
|
8509
|
+
readonly bound: number;
|
|
8510
|
+
readonly position: "fix" | "absolute";
|
|
8511
|
+
readonly target: (() => HTMLElement) | undefined;
|
|
8512
|
+
readonly affix: boolean;
|
|
8513
|
+
readonly offsetTop: number | undefined;
|
|
8514
|
+
readonly offsetBottom: number | undefined;
|
|
8515
|
+
readonly showRail: boolean;
|
|
8516
|
+
readonly showBackground: boolean;
|
|
8517
|
+
readonly internalScrollable: boolean;
|
|
8518
|
+
readonly ignoreGap: boolean;
|
|
8043
8519
|
}>;
|
|
8044
8520
|
NAnchorLink: import("vue").DefineComponent<{
|
|
8045
8521
|
readonly title: StringConstructor;
|
|
@@ -8114,11 +8590,16 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8114
8590
|
};
|
|
8115
8591
|
checked: BooleanConstructor;
|
|
8116
8592
|
checkable: BooleanConstructor;
|
|
8593
|
+
strong: BooleanConstructor;
|
|
8117
8594
|
onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
8118
8595
|
onMouseenter: import("vue").PropType<(e: MouseEvent) => void>;
|
|
8119
8596
|
onMouseleave: import("vue").PropType<(e: MouseEvent) => void>;
|
|
8120
8597
|
'onUpdate:checked': import("vue").PropType<(checked: boolean) => void>;
|
|
8121
8598
|
onUpdateChecked: import("vue").PropType<(checked: boolean) => void>;
|
|
8599
|
+
internalCloseFocusable: {
|
|
8600
|
+
type: BooleanConstructor;
|
|
8601
|
+
default: boolean;
|
|
8602
|
+
};
|
|
8122
8603
|
internalStopClickPropagation: BooleanConstructor;
|
|
8123
8604
|
onCheckedChange: {
|
|
8124
8605
|
type: import("vue").PropType<(checked: boolean) => void>;
|
|
@@ -8141,6 +8622,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8141
8622
|
readonly default: undefined;
|
|
8142
8623
|
};
|
|
8143
8624
|
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
8625
|
+
closeBorderRadius: string;
|
|
8144
8626
|
heightTiny: string;
|
|
8145
8627
|
heightSmall: string;
|
|
8146
8628
|
heightMedium: string;
|
|
@@ -8151,6 +8633,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8151
8633
|
fontSizeSmall: string;
|
|
8152
8634
|
fontSizeMedium: string;
|
|
8153
8635
|
fontSizeLarge: string;
|
|
8636
|
+
fontWeightStrong: string;
|
|
8154
8637
|
textColorCheckable: string;
|
|
8155
8638
|
textColorHoverCheckable: string;
|
|
8156
8639
|
textColorPressedCheckable: string;
|
|
@@ -8164,39 +8647,61 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8164
8647
|
border: string;
|
|
8165
8648
|
textColor: string;
|
|
8166
8649
|
color: string;
|
|
8167
|
-
|
|
8650
|
+
colorBordered: string;
|
|
8651
|
+
closeIconColor: string;
|
|
8652
|
+
closeIconColorHover: string;
|
|
8653
|
+
closeIconColorPressed: string;
|
|
8168
8654
|
closeColorHover: string;
|
|
8169
8655
|
closeColorPressed: string;
|
|
8170
8656
|
borderPrimary: string;
|
|
8171
8657
|
textColorPrimary: string;
|
|
8172
8658
|
colorPrimary: string;
|
|
8173
|
-
|
|
8659
|
+
colorBorderedPrimary: string;
|
|
8660
|
+
closeIconColorPrimary: string;
|
|
8661
|
+
closeIconColorHoverPrimary: string;
|
|
8662
|
+
closeIconColorPressedPrimary: string;
|
|
8174
8663
|
closeColorHoverPrimary: string;
|
|
8175
8664
|
closeColorPressedPrimary: string;
|
|
8176
8665
|
borderInfo: string;
|
|
8177
8666
|
textColorInfo: string;
|
|
8178
8667
|
colorInfo: string;
|
|
8179
|
-
|
|
8668
|
+
colorBorderedInfo: string;
|
|
8669
|
+
closeIconColorInfo: string;
|
|
8670
|
+
closeIconColorHoverInfo: string;
|
|
8671
|
+
closeIconColorPressedInfo: string;
|
|
8180
8672
|
closeColorHoverInfo: string;
|
|
8181
8673
|
closeColorPressedInfo: string;
|
|
8182
8674
|
borderSuccess: string;
|
|
8183
8675
|
textColorSuccess: string;
|
|
8184
8676
|
colorSuccess: string;
|
|
8185
|
-
|
|
8677
|
+
colorBorderedSuccess: string;
|
|
8678
|
+
closeIconColorSuccess: string;
|
|
8679
|
+
closeIconColorHoverSuccess: string;
|
|
8680
|
+
closeIconColorPressedSuccess: string;
|
|
8186
8681
|
closeColorHoverSuccess: string;
|
|
8187
8682
|
closeColorPressedSuccess: string;
|
|
8188
8683
|
borderWarning: string;
|
|
8189
8684
|
textColorWarning: string;
|
|
8190
8685
|
colorWarning: string;
|
|
8191
|
-
|
|
8686
|
+
colorBorderedWarning: string;
|
|
8687
|
+
closeIconColorWarning: string;
|
|
8688
|
+
closeIconColorHoverWarning: string;
|
|
8689
|
+
closeIconColorPressedWarning: string;
|
|
8192
8690
|
closeColorHoverWarning: string;
|
|
8193
8691
|
closeColorPressedWarning: string;
|
|
8194
8692
|
borderError: string;
|
|
8195
8693
|
textColorError: string;
|
|
8196
8694
|
colorError: string;
|
|
8197
|
-
|
|
8695
|
+
colorBorderedError: string;
|
|
8696
|
+
closeIconColorError: string;
|
|
8697
|
+
closeIconColorHoverError: string;
|
|
8698
|
+
closeIconColorPressedError: string;
|
|
8198
8699
|
closeColorHoverError: string;
|
|
8199
8700
|
closeColorPressedError: string;
|
|
8701
|
+
closeIconSizeTiny: string;
|
|
8702
|
+
closeIconSizeSmall: string;
|
|
8703
|
+
closeIconSizeMedium: string;
|
|
8704
|
+
closeIconSizeLarge: string;
|
|
8200
8705
|
closeSizeTiny: string;
|
|
8201
8706
|
closeSizeSmall: string;
|
|
8202
8707
|
closeSizeMedium: string;
|
|
@@ -8206,6 +8711,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8206
8711
|
closeMarginRtl: string;
|
|
8207
8712
|
}, any>>;
|
|
8208
8713
|
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
8714
|
+
closeBorderRadius: string;
|
|
8209
8715
|
heightTiny: string;
|
|
8210
8716
|
heightSmall: string;
|
|
8211
8717
|
heightMedium: string;
|
|
@@ -8216,6 +8722,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8216
8722
|
fontSizeSmall: string;
|
|
8217
8723
|
fontSizeMedium: string;
|
|
8218
8724
|
fontSizeLarge: string;
|
|
8725
|
+
fontWeightStrong: string;
|
|
8219
8726
|
textColorCheckable: string;
|
|
8220
8727
|
textColorHoverCheckable: string;
|
|
8221
8728
|
textColorPressedCheckable: string;
|
|
@@ -8229,39 +8736,61 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8229
8736
|
border: string;
|
|
8230
8737
|
textColor: string;
|
|
8231
8738
|
color: string;
|
|
8232
|
-
|
|
8739
|
+
colorBordered: string;
|
|
8740
|
+
closeIconColor: string;
|
|
8741
|
+
closeIconColorHover: string;
|
|
8742
|
+
closeIconColorPressed: string;
|
|
8233
8743
|
closeColorHover: string;
|
|
8234
8744
|
closeColorPressed: string;
|
|
8235
8745
|
borderPrimary: string;
|
|
8236
8746
|
textColorPrimary: string;
|
|
8237
8747
|
colorPrimary: string;
|
|
8238
|
-
|
|
8748
|
+
colorBorderedPrimary: string;
|
|
8749
|
+
closeIconColorPrimary: string;
|
|
8750
|
+
closeIconColorHoverPrimary: string;
|
|
8751
|
+
closeIconColorPressedPrimary: string;
|
|
8239
8752
|
closeColorHoverPrimary: string;
|
|
8240
8753
|
closeColorPressedPrimary: string;
|
|
8241
8754
|
borderInfo: string;
|
|
8242
8755
|
textColorInfo: string;
|
|
8243
8756
|
colorInfo: string;
|
|
8244
|
-
|
|
8757
|
+
colorBorderedInfo: string;
|
|
8758
|
+
closeIconColorInfo: string;
|
|
8759
|
+
closeIconColorHoverInfo: string;
|
|
8760
|
+
closeIconColorPressedInfo: string;
|
|
8245
8761
|
closeColorHoverInfo: string;
|
|
8246
8762
|
closeColorPressedInfo: string;
|
|
8247
8763
|
borderSuccess: string;
|
|
8248
8764
|
textColorSuccess: string;
|
|
8249
8765
|
colorSuccess: string;
|
|
8250
|
-
|
|
8766
|
+
colorBorderedSuccess: string;
|
|
8767
|
+
closeIconColorSuccess: string;
|
|
8768
|
+
closeIconColorHoverSuccess: string;
|
|
8769
|
+
closeIconColorPressedSuccess: string;
|
|
8251
8770
|
closeColorHoverSuccess: string;
|
|
8252
8771
|
closeColorPressedSuccess: string;
|
|
8253
8772
|
borderWarning: string;
|
|
8254
8773
|
textColorWarning: string;
|
|
8255
8774
|
colorWarning: string;
|
|
8256
|
-
|
|
8775
|
+
colorBorderedWarning: string;
|
|
8776
|
+
closeIconColorWarning: string;
|
|
8777
|
+
closeIconColorHoverWarning: string;
|
|
8778
|
+
closeIconColorPressedWarning: string;
|
|
8257
8779
|
closeColorHoverWarning: string;
|
|
8258
8780
|
closeColorPressedWarning: string;
|
|
8259
8781
|
borderError: string;
|
|
8260
8782
|
textColorError: string;
|
|
8261
8783
|
colorError: string;
|
|
8262
|
-
|
|
8784
|
+
colorBorderedError: string;
|
|
8785
|
+
closeIconColorError: string;
|
|
8786
|
+
closeIconColorHoverError: string;
|
|
8787
|
+
closeIconColorPressedError: string;
|
|
8263
8788
|
closeColorHoverError: string;
|
|
8264
8789
|
closeColorPressedError: string;
|
|
8790
|
+
closeIconSizeTiny: string;
|
|
8791
|
+
closeIconSizeSmall: string;
|
|
8792
|
+
closeIconSizeMedium: string;
|
|
8793
|
+
closeIconSizeLarge: string;
|
|
8265
8794
|
closeSizeTiny: string;
|
|
8266
8795
|
closeSizeSmall: string;
|
|
8267
8796
|
closeSizeMedium: string;
|
|
@@ -8271,6 +8800,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8271
8800
|
closeMarginRtl: string;
|
|
8272
8801
|
}, any>>>;
|
|
8273
8802
|
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
8803
|
+
closeBorderRadius: string;
|
|
8274
8804
|
heightTiny: string;
|
|
8275
8805
|
heightSmall: string;
|
|
8276
8806
|
heightMedium: string;
|
|
@@ -8281,6 +8811,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8281
8811
|
fontSizeSmall: string;
|
|
8282
8812
|
fontSizeMedium: string;
|
|
8283
8813
|
fontSizeLarge: string;
|
|
8814
|
+
fontWeightStrong: string;
|
|
8284
8815
|
textColorCheckable: string;
|
|
8285
8816
|
textColorHoverCheckable: string;
|
|
8286
8817
|
textColorPressedCheckable: string;
|
|
@@ -8294,39 +8825,61 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8294
8825
|
border: string;
|
|
8295
8826
|
textColor: string;
|
|
8296
8827
|
color: string;
|
|
8297
|
-
|
|
8828
|
+
colorBordered: string;
|
|
8829
|
+
closeIconColor: string;
|
|
8830
|
+
closeIconColorHover: string;
|
|
8831
|
+
closeIconColorPressed: string;
|
|
8298
8832
|
closeColorHover: string;
|
|
8299
8833
|
closeColorPressed: string;
|
|
8300
8834
|
borderPrimary: string;
|
|
8301
8835
|
textColorPrimary: string;
|
|
8302
8836
|
colorPrimary: string;
|
|
8303
|
-
|
|
8837
|
+
colorBorderedPrimary: string;
|
|
8838
|
+
closeIconColorPrimary: string;
|
|
8839
|
+
closeIconColorHoverPrimary: string;
|
|
8840
|
+
closeIconColorPressedPrimary: string;
|
|
8304
8841
|
closeColorHoverPrimary: string;
|
|
8305
8842
|
closeColorPressedPrimary: string;
|
|
8306
8843
|
borderInfo: string;
|
|
8307
8844
|
textColorInfo: string;
|
|
8308
8845
|
colorInfo: string;
|
|
8309
|
-
|
|
8846
|
+
colorBorderedInfo: string;
|
|
8847
|
+
closeIconColorInfo: string;
|
|
8848
|
+
closeIconColorHoverInfo: string;
|
|
8849
|
+
closeIconColorPressedInfo: string;
|
|
8310
8850
|
closeColorHoverInfo: string;
|
|
8311
8851
|
closeColorPressedInfo: string;
|
|
8312
8852
|
borderSuccess: string;
|
|
8313
8853
|
textColorSuccess: string;
|
|
8314
8854
|
colorSuccess: string;
|
|
8315
|
-
|
|
8855
|
+
colorBorderedSuccess: string;
|
|
8856
|
+
closeIconColorSuccess: string;
|
|
8857
|
+
closeIconColorHoverSuccess: string;
|
|
8858
|
+
closeIconColorPressedSuccess: string;
|
|
8316
8859
|
closeColorHoverSuccess: string;
|
|
8317
8860
|
closeColorPressedSuccess: string;
|
|
8318
8861
|
borderWarning: string;
|
|
8319
8862
|
textColorWarning: string;
|
|
8320
8863
|
colorWarning: string;
|
|
8321
|
-
|
|
8864
|
+
colorBorderedWarning: string;
|
|
8865
|
+
closeIconColorWarning: string;
|
|
8866
|
+
closeIconColorHoverWarning: string;
|
|
8867
|
+
closeIconColorPressedWarning: string;
|
|
8322
8868
|
closeColorHoverWarning: string;
|
|
8323
8869
|
closeColorPressedWarning: string;
|
|
8324
8870
|
borderError: string;
|
|
8325
8871
|
textColorError: string;
|
|
8326
8872
|
colorError: string;
|
|
8327
|
-
|
|
8873
|
+
colorBorderedError: string;
|
|
8874
|
+
closeIconColorError: string;
|
|
8875
|
+
closeIconColorHoverError: string;
|
|
8876
|
+
closeIconColorPressedError: string;
|
|
8328
8877
|
closeColorHoverError: string;
|
|
8329
8878
|
closeColorPressedError: string;
|
|
8879
|
+
closeIconSizeTiny: string;
|
|
8880
|
+
closeIconSizeSmall: string;
|
|
8881
|
+
closeIconSizeMedium: string;
|
|
8882
|
+
closeIconSizeLarge: string;
|
|
8330
8883
|
closeSizeTiny: string;
|
|
8331
8884
|
closeSizeSmall: string;
|
|
8332
8885
|
closeSizeMedium: string;
|
|
@@ -8343,14 +8896,19 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8343
8896
|
handleClick: (e: MouseEvent) => void;
|
|
8344
8897
|
handleCloseClick: (e: MouseEvent) => void;
|
|
8345
8898
|
cssVars: import("vue").ComputedRef<{
|
|
8899
|
+
'--n-font-weight-strong': string;
|
|
8346
8900
|
'--n-avatar-size-override': string;
|
|
8347
8901
|
'--n-bezier': string;
|
|
8348
8902
|
'--n-border-radius': string;
|
|
8349
8903
|
'--n-border': string;
|
|
8350
|
-
'--n-close-
|
|
8351
|
-
'--n-close-color-hover': string;
|
|
8904
|
+
'--n-close-icon-size': string;
|
|
8352
8905
|
'--n-close-color-pressed': string;
|
|
8353
|
-
'--n-close-color-
|
|
8906
|
+
'--n-close-color-hover': string;
|
|
8907
|
+
'--n-close-border-radius': string;
|
|
8908
|
+
'--n-close-icon-color': string;
|
|
8909
|
+
'--n-close-icon-color-hover': string;
|
|
8910
|
+
'--n-close-icon-color-pressed': string;
|
|
8911
|
+
'--n-close-icon-color-disabled': string;
|
|
8354
8912
|
'--n-close-margin': string;
|
|
8355
8913
|
'--n-close-margin-rtl': string;
|
|
8356
8914
|
'--n-close-size': string;
|
|
@@ -8381,11 +8939,16 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8381
8939
|
};
|
|
8382
8940
|
checked: BooleanConstructor;
|
|
8383
8941
|
checkable: BooleanConstructor;
|
|
8942
|
+
strong: BooleanConstructor;
|
|
8384
8943
|
onClose: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
8385
8944
|
onMouseenter: import("vue").PropType<(e: MouseEvent) => void>;
|
|
8386
8945
|
onMouseleave: import("vue").PropType<(e: MouseEvent) => void>;
|
|
8387
8946
|
'onUpdate:checked': import("vue").PropType<(checked: boolean) => void>;
|
|
8388
8947
|
onUpdateChecked: import("vue").PropType<(checked: boolean) => void>;
|
|
8948
|
+
internalCloseFocusable: {
|
|
8949
|
+
type: BooleanConstructor;
|
|
8950
|
+
default: boolean;
|
|
8951
|
+
};
|
|
8389
8952
|
internalStopClickPropagation: BooleanConstructor;
|
|
8390
8953
|
onCheckedChange: {
|
|
8391
8954
|
type: import("vue").PropType<(checked: boolean) => void>;
|
|
@@ -8408,6 +8971,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8408
8971
|
readonly default: undefined;
|
|
8409
8972
|
};
|
|
8410
8973
|
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
8974
|
+
closeBorderRadius: string;
|
|
8411
8975
|
heightTiny: string;
|
|
8412
8976
|
heightSmall: string;
|
|
8413
8977
|
heightMedium: string;
|
|
@@ -8418,6 +8982,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8418
8982
|
fontSizeSmall: string;
|
|
8419
8983
|
fontSizeMedium: string;
|
|
8420
8984
|
fontSizeLarge: string;
|
|
8985
|
+
fontWeightStrong: string;
|
|
8421
8986
|
textColorCheckable: string;
|
|
8422
8987
|
textColorHoverCheckable: string;
|
|
8423
8988
|
textColorPressedCheckable: string;
|
|
@@ -8431,39 +8996,61 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8431
8996
|
border: string;
|
|
8432
8997
|
textColor: string;
|
|
8433
8998
|
color: string;
|
|
8434
|
-
|
|
8999
|
+
colorBordered: string;
|
|
9000
|
+
closeIconColor: string;
|
|
9001
|
+
closeIconColorHover: string;
|
|
9002
|
+
closeIconColorPressed: string;
|
|
8435
9003
|
closeColorHover: string;
|
|
8436
9004
|
closeColorPressed: string;
|
|
8437
9005
|
borderPrimary: string;
|
|
8438
9006
|
textColorPrimary: string;
|
|
8439
9007
|
colorPrimary: string;
|
|
8440
|
-
|
|
9008
|
+
colorBorderedPrimary: string;
|
|
9009
|
+
closeIconColorPrimary: string;
|
|
9010
|
+
closeIconColorHoverPrimary: string;
|
|
9011
|
+
closeIconColorPressedPrimary: string;
|
|
8441
9012
|
closeColorHoverPrimary: string;
|
|
8442
9013
|
closeColorPressedPrimary: string;
|
|
8443
9014
|
borderInfo: string;
|
|
8444
9015
|
textColorInfo: string;
|
|
8445
9016
|
colorInfo: string;
|
|
8446
|
-
|
|
9017
|
+
colorBorderedInfo: string;
|
|
9018
|
+
closeIconColorInfo: string;
|
|
9019
|
+
closeIconColorHoverInfo: string;
|
|
9020
|
+
closeIconColorPressedInfo: string;
|
|
8447
9021
|
closeColorHoverInfo: string;
|
|
8448
9022
|
closeColorPressedInfo: string;
|
|
8449
9023
|
borderSuccess: string;
|
|
8450
9024
|
textColorSuccess: string;
|
|
8451
9025
|
colorSuccess: string;
|
|
8452
|
-
|
|
9026
|
+
colorBorderedSuccess: string;
|
|
9027
|
+
closeIconColorSuccess: string;
|
|
9028
|
+
closeIconColorHoverSuccess: string;
|
|
9029
|
+
closeIconColorPressedSuccess: string;
|
|
8453
9030
|
closeColorHoverSuccess: string;
|
|
8454
9031
|
closeColorPressedSuccess: string;
|
|
8455
9032
|
borderWarning: string;
|
|
8456
9033
|
textColorWarning: string;
|
|
8457
9034
|
colorWarning: string;
|
|
8458
|
-
|
|
9035
|
+
colorBorderedWarning: string;
|
|
9036
|
+
closeIconColorWarning: string;
|
|
9037
|
+
closeIconColorHoverWarning: string;
|
|
9038
|
+
closeIconColorPressedWarning: string;
|
|
8459
9039
|
closeColorHoverWarning: string;
|
|
8460
9040
|
closeColorPressedWarning: string;
|
|
8461
9041
|
borderError: string;
|
|
8462
9042
|
textColorError: string;
|
|
8463
9043
|
colorError: string;
|
|
8464
|
-
|
|
9044
|
+
colorBorderedError: string;
|
|
9045
|
+
closeIconColorError: string;
|
|
9046
|
+
closeIconColorHoverError: string;
|
|
9047
|
+
closeIconColorPressedError: string;
|
|
8465
9048
|
closeColorHoverError: string;
|
|
8466
9049
|
closeColorPressedError: string;
|
|
9050
|
+
closeIconSizeTiny: string;
|
|
9051
|
+
closeIconSizeSmall: string;
|
|
9052
|
+
closeIconSizeMedium: string;
|
|
9053
|
+
closeIconSizeLarge: string;
|
|
8467
9054
|
closeSizeTiny: string;
|
|
8468
9055
|
closeSizeSmall: string;
|
|
8469
9056
|
closeSizeMedium: string;
|
|
@@ -8473,6 +9060,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8473
9060
|
closeMarginRtl: string;
|
|
8474
9061
|
}, any>>;
|
|
8475
9062
|
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
9063
|
+
closeBorderRadius: string;
|
|
8476
9064
|
heightTiny: string;
|
|
8477
9065
|
heightSmall: string;
|
|
8478
9066
|
heightMedium: string;
|
|
@@ -8483,6 +9071,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8483
9071
|
fontSizeSmall: string;
|
|
8484
9072
|
fontSizeMedium: string;
|
|
8485
9073
|
fontSizeLarge: string;
|
|
9074
|
+
fontWeightStrong: string;
|
|
8486
9075
|
textColorCheckable: string;
|
|
8487
9076
|
textColorHoverCheckable: string;
|
|
8488
9077
|
textColorPressedCheckable: string;
|
|
@@ -8496,39 +9085,61 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8496
9085
|
border: string;
|
|
8497
9086
|
textColor: string;
|
|
8498
9087
|
color: string;
|
|
8499
|
-
|
|
9088
|
+
colorBordered: string;
|
|
9089
|
+
closeIconColor: string;
|
|
9090
|
+
closeIconColorHover: string;
|
|
9091
|
+
closeIconColorPressed: string;
|
|
8500
9092
|
closeColorHover: string;
|
|
8501
9093
|
closeColorPressed: string;
|
|
8502
9094
|
borderPrimary: string;
|
|
8503
9095
|
textColorPrimary: string;
|
|
8504
9096
|
colorPrimary: string;
|
|
8505
|
-
|
|
9097
|
+
colorBorderedPrimary: string;
|
|
9098
|
+
closeIconColorPrimary: string;
|
|
9099
|
+
closeIconColorHoverPrimary: string;
|
|
9100
|
+
closeIconColorPressedPrimary: string;
|
|
8506
9101
|
closeColorHoverPrimary: string;
|
|
8507
9102
|
closeColorPressedPrimary: string;
|
|
8508
9103
|
borderInfo: string;
|
|
8509
9104
|
textColorInfo: string;
|
|
8510
9105
|
colorInfo: string;
|
|
8511
|
-
|
|
9106
|
+
colorBorderedInfo: string;
|
|
9107
|
+
closeIconColorInfo: string;
|
|
9108
|
+
closeIconColorHoverInfo: string;
|
|
9109
|
+
closeIconColorPressedInfo: string;
|
|
8512
9110
|
closeColorHoverInfo: string;
|
|
8513
9111
|
closeColorPressedInfo: string;
|
|
8514
9112
|
borderSuccess: string;
|
|
8515
9113
|
textColorSuccess: string;
|
|
8516
9114
|
colorSuccess: string;
|
|
8517
|
-
|
|
9115
|
+
colorBorderedSuccess: string;
|
|
9116
|
+
closeIconColorSuccess: string;
|
|
9117
|
+
closeIconColorHoverSuccess: string;
|
|
9118
|
+
closeIconColorPressedSuccess: string;
|
|
8518
9119
|
closeColorHoverSuccess: string;
|
|
8519
9120
|
closeColorPressedSuccess: string;
|
|
8520
9121
|
borderWarning: string;
|
|
8521
9122
|
textColorWarning: string;
|
|
8522
9123
|
colorWarning: string;
|
|
8523
|
-
|
|
9124
|
+
colorBorderedWarning: string;
|
|
9125
|
+
closeIconColorWarning: string;
|
|
9126
|
+
closeIconColorHoverWarning: string;
|
|
9127
|
+
closeIconColorPressedWarning: string;
|
|
8524
9128
|
closeColorHoverWarning: string;
|
|
8525
9129
|
closeColorPressedWarning: string;
|
|
8526
9130
|
borderError: string;
|
|
8527
9131
|
textColorError: string;
|
|
8528
9132
|
colorError: string;
|
|
8529
|
-
|
|
9133
|
+
colorBorderedError: string;
|
|
9134
|
+
closeIconColorError: string;
|
|
9135
|
+
closeIconColorHoverError: string;
|
|
9136
|
+
closeIconColorPressedError: string;
|
|
8530
9137
|
closeColorHoverError: string;
|
|
8531
9138
|
closeColorPressedError: string;
|
|
9139
|
+
closeIconSizeTiny: string;
|
|
9140
|
+
closeIconSizeSmall: string;
|
|
9141
|
+
closeIconSizeMedium: string;
|
|
9142
|
+
closeIconSizeLarge: string;
|
|
8532
9143
|
closeSizeTiny: string;
|
|
8533
9144
|
closeSizeSmall: string;
|
|
8534
9145
|
closeSizeMedium: string;
|
|
@@ -8538,6 +9149,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8538
9149
|
closeMarginRtl: string;
|
|
8539
9150
|
}, any>>>;
|
|
8540
9151
|
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tag", {
|
|
9152
|
+
closeBorderRadius: string;
|
|
8541
9153
|
heightTiny: string;
|
|
8542
9154
|
heightSmall: string;
|
|
8543
9155
|
heightMedium: string;
|
|
@@ -8548,6 +9160,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8548
9160
|
fontSizeSmall: string;
|
|
8549
9161
|
fontSizeMedium: string;
|
|
8550
9162
|
fontSizeLarge: string;
|
|
9163
|
+
fontWeightStrong: string;
|
|
8551
9164
|
textColorCheckable: string;
|
|
8552
9165
|
textColorHoverCheckable: string;
|
|
8553
9166
|
textColorPressedCheckable: string;
|
|
@@ -8561,39 +9174,61 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8561
9174
|
border: string;
|
|
8562
9175
|
textColor: string;
|
|
8563
9176
|
color: string;
|
|
8564
|
-
|
|
9177
|
+
colorBordered: string;
|
|
9178
|
+
closeIconColor: string;
|
|
9179
|
+
closeIconColorHover: string;
|
|
9180
|
+
closeIconColorPressed: string;
|
|
8565
9181
|
closeColorHover: string;
|
|
8566
9182
|
closeColorPressed: string;
|
|
8567
9183
|
borderPrimary: string;
|
|
8568
9184
|
textColorPrimary: string;
|
|
8569
9185
|
colorPrimary: string;
|
|
8570
|
-
|
|
9186
|
+
colorBorderedPrimary: string;
|
|
9187
|
+
closeIconColorPrimary: string;
|
|
9188
|
+
closeIconColorHoverPrimary: string;
|
|
9189
|
+
closeIconColorPressedPrimary: string;
|
|
8571
9190
|
closeColorHoverPrimary: string;
|
|
8572
9191
|
closeColorPressedPrimary: string;
|
|
8573
9192
|
borderInfo: string;
|
|
8574
9193
|
textColorInfo: string;
|
|
8575
9194
|
colorInfo: string;
|
|
8576
|
-
|
|
9195
|
+
colorBorderedInfo: string;
|
|
9196
|
+
closeIconColorInfo: string;
|
|
9197
|
+
closeIconColorHoverInfo: string;
|
|
9198
|
+
closeIconColorPressedInfo: string;
|
|
8577
9199
|
closeColorHoverInfo: string;
|
|
8578
9200
|
closeColorPressedInfo: string;
|
|
8579
9201
|
borderSuccess: string;
|
|
8580
9202
|
textColorSuccess: string;
|
|
8581
9203
|
colorSuccess: string;
|
|
8582
|
-
|
|
9204
|
+
colorBorderedSuccess: string;
|
|
9205
|
+
closeIconColorSuccess: string;
|
|
9206
|
+
closeIconColorHoverSuccess: string;
|
|
9207
|
+
closeIconColorPressedSuccess: string;
|
|
8583
9208
|
closeColorHoverSuccess: string;
|
|
8584
9209
|
closeColorPressedSuccess: string;
|
|
8585
9210
|
borderWarning: string;
|
|
8586
9211
|
textColorWarning: string;
|
|
8587
9212
|
colorWarning: string;
|
|
8588
|
-
|
|
9213
|
+
colorBorderedWarning: string;
|
|
9214
|
+
closeIconColorWarning: string;
|
|
9215
|
+
closeIconColorHoverWarning: string;
|
|
9216
|
+
closeIconColorPressedWarning: string;
|
|
8589
9217
|
closeColorHoverWarning: string;
|
|
8590
9218
|
closeColorPressedWarning: string;
|
|
8591
9219
|
borderError: string;
|
|
8592
9220
|
textColorError: string;
|
|
8593
9221
|
colorError: string;
|
|
8594
|
-
|
|
9222
|
+
colorBorderedError: string;
|
|
9223
|
+
closeIconColorError: string;
|
|
9224
|
+
closeIconColorHoverError: string;
|
|
9225
|
+
closeIconColorPressedError: string;
|
|
8595
9226
|
closeColorHoverError: string;
|
|
8596
9227
|
closeColorPressedError: string;
|
|
9228
|
+
closeIconSizeTiny: string;
|
|
9229
|
+
closeIconSizeSmall: string;
|
|
9230
|
+
closeIconSizeMedium: string;
|
|
9231
|
+
closeIconSizeLarge: string;
|
|
8597
9232
|
closeSizeTiny: string;
|
|
8598
9233
|
closeSizeSmall: string;
|
|
8599
9234
|
closeSizeMedium: string;
|
|
@@ -8608,11 +9243,13 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8608
9243
|
size: "small" | "medium" | "tiny" | "large";
|
|
8609
9244
|
disabled: boolean | undefined;
|
|
8610
9245
|
checked: boolean;
|
|
9246
|
+
strong: boolean;
|
|
8611
9247
|
bordered: boolean | undefined;
|
|
9248
|
+
closable: boolean;
|
|
8612
9249
|
checkable: boolean;
|
|
9250
|
+
internalCloseFocusable: boolean;
|
|
8613
9251
|
internalStopClickPropagation: boolean;
|
|
8614
9252
|
onCheckedChange: (checked: boolean) => void;
|
|
8615
|
-
closable: boolean;
|
|
8616
9253
|
}>;
|
|
8617
9254
|
NTooltip: import("vue").DefineComponent<{
|
|
8618
9255
|
theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
|
|
@@ -8742,9 +9379,11 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8742
9379
|
scrollable: BooleanConstructor;
|
|
8743
9380
|
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
8744
9381
|
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
9382
|
+
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
8745
9383
|
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
8746
9384
|
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
8747
9385
|
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
9386
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
8748
9387
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
8749
9388
|
internalInheritedEventHandlers: {
|
|
8750
9389
|
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
@@ -8809,10 +9448,11 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8809
9448
|
opacity5: string;
|
|
8810
9449
|
dividerColor: string;
|
|
8811
9450
|
borderColor: string;
|
|
8812
|
-
|
|
9451
|
+
closeIconColor: string;
|
|
9452
|
+
closeIconColorHover: string;
|
|
9453
|
+
closeIconColorPressed: string;
|
|
8813
9454
|
closeColorHover: string;
|
|
8814
9455
|
closeColorPressed: string;
|
|
8815
|
-
closeColorDisabled: string;
|
|
8816
9456
|
clearColor: string;
|
|
8817
9457
|
clearColorHover: string;
|
|
8818
9458
|
clearColorPressed: string;
|
|
@@ -9041,9 +9681,11 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9041
9681
|
scrollable: BooleanConstructor;
|
|
9042
9682
|
contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
9043
9683
|
headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
9684
|
+
footerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
|
|
9044
9685
|
onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
|
|
9045
9686
|
'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
9046
9687
|
onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
|
|
9688
|
+
internalDeactivateImmediately: BooleanConstructor;
|
|
9047
9689
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
9048
9690
|
internalInheritedEventHandlers: {
|
|
9049
9691
|
type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
|
|
@@ -9079,6 +9721,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9079
9721
|
arrowPointToCenter: boolean;
|
|
9080
9722
|
displayDirective: "show" | "if";
|
|
9081
9723
|
keepAliveOnHover: boolean;
|
|
9724
|
+
internalDeactivateImmediately: boolean;
|
|
9082
9725
|
animated: boolean;
|
|
9083
9726
|
internalTrapFocus: boolean;
|
|
9084
9727
|
defaultShow: boolean;
|
|
@@ -9204,7 +9847,10 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9204
9847
|
readonly default: true;
|
|
9205
9848
|
};
|
|
9206
9849
|
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
9207
|
-
readonly nativeFocusBehavior:
|
|
9850
|
+
readonly nativeFocusBehavior: {
|
|
9851
|
+
readonly type: BooleanConstructor;
|
|
9852
|
+
readonly default: boolean;
|
|
9853
|
+
};
|
|
9208
9854
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
9209
9855
|
heightTiny: string;
|
|
9210
9856
|
heightSmall: string;
|
|
@@ -9918,7 +10564,10 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9918
10564
|
readonly default: true;
|
|
9919
10565
|
};
|
|
9920
10566
|
readonly onClick: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
|
|
9921
|
-
readonly nativeFocusBehavior:
|
|
10567
|
+
readonly nativeFocusBehavior: {
|
|
10568
|
+
readonly type: BooleanConstructor;
|
|
10569
|
+
readonly default: boolean;
|
|
10570
|
+
};
|
|
9922
10571
|
readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Button", {
|
|
9923
10572
|
heightTiny: string;
|
|
9924
10573
|
heightSmall: string;
|
|
@@ -10532,26 +11181,26 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10532
11181
|
rippleDuration: string;
|
|
10533
11182
|
}, any>>>;
|
|
10534
11183
|
}>>, {
|
|
10535
|
-
type: import("naive-ui/es/button/src/interface").Type;
|
|
10536
|
-
tag: keyof HTMLElementTagNameMap;
|
|
10537
|
-
block: boolean;
|
|
10538
|
-
round: boolean;
|
|
10539
|
-
dashed: boolean;
|
|
10540
|
-
text: boolean;
|
|
10541
|
-
circle: boolean;
|
|
10542
|
-
disabled: boolean;
|
|
10543
|
-
focusable: boolean;
|
|
10544
|
-
strong: boolean;
|
|
10545
|
-
loading: boolean;
|
|
10546
|
-
bordered: boolean;
|
|
10547
|
-
tertiary: boolean;
|
|
10548
|
-
ghost: boolean;
|
|
10549
|
-
keyboard: boolean;
|
|
10550
|
-
secondary: boolean;
|
|
10551
|
-
quaternary: boolean;
|
|
10552
|
-
iconPlacement: "left" | "right";
|
|
10553
|
-
attrType: "button" | "reset" | "submit";
|
|
10554
|
-
nativeFocusBehavior: boolean;
|
|
11184
|
+
readonly type: import("naive-ui/es/button/src/interface").Type;
|
|
11185
|
+
readonly tag: keyof HTMLElementTagNameMap;
|
|
11186
|
+
readonly block: boolean;
|
|
11187
|
+
readonly round: boolean;
|
|
11188
|
+
readonly dashed: boolean;
|
|
11189
|
+
readonly text: boolean;
|
|
11190
|
+
readonly circle: boolean;
|
|
11191
|
+
readonly disabled: boolean;
|
|
11192
|
+
readonly focusable: boolean;
|
|
11193
|
+
readonly strong: boolean;
|
|
11194
|
+
readonly loading: boolean;
|
|
11195
|
+
readonly bordered: boolean;
|
|
11196
|
+
readonly tertiary: boolean;
|
|
11197
|
+
readonly ghost: boolean;
|
|
11198
|
+
readonly keyboard: boolean;
|
|
11199
|
+
readonly secondary: boolean;
|
|
11200
|
+
readonly quaternary: boolean;
|
|
11201
|
+
readonly iconPlacement: "left" | "right";
|
|
11202
|
+
readonly attrType: "button" | "reset" | "submit";
|
|
11203
|
+
readonly nativeFocusBehavior: boolean;
|
|
10555
11204
|
}>;
|
|
10556
11205
|
NInput: import("vue").DefineComponent<{
|
|
10557
11206
|
bordered: {
|
|
@@ -10611,6 +11260,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10611
11260
|
type: BooleanConstructor;
|
|
10612
11261
|
default: undefined;
|
|
10613
11262
|
};
|
|
11263
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
10614
11264
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
10615
11265
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
10616
11266
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
@@ -10831,8 +11481,8 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10831
11481
|
contentRef: HTMLElement | null;
|
|
10832
11482
|
containerScrollTop: number;
|
|
10833
11483
|
syncUnifiedContainer: () => void;
|
|
10834
|
-
scrollTo: import("naive-ui/es/_internal/scrollbar/src/
|
|
10835
|
-
scrollBy: import("naive-ui/es/_internal/scrollbar/src/
|
|
11484
|
+
scrollTo: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollTo;
|
|
11485
|
+
scrollBy: import("naive-ui/es/_internal/scrollbar/src/Scrollbar").ScrollBy;
|
|
10836
11486
|
sync: () => void;
|
|
10837
11487
|
handleMouseEnterWrapper: () => void;
|
|
10838
11488
|
handleMouseLeaveWrapper: () => void;
|
|
@@ -10866,7 +11516,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10866
11516
|
handleCompositionEnd: (e: CompositionEvent) => void;
|
|
10867
11517
|
handleInput: (e: Event | CompositionEvent | InputEvent, index?: 0 | 1 | undefined, event?: string | undefined) => void;
|
|
10868
11518
|
handleInputBlur: (e: FocusEvent) => void;
|
|
10869
|
-
handleInputFocus: (e: FocusEvent) => void;
|
|
11519
|
+
handleInputFocus: (e: FocusEvent, index: number) => void;
|
|
10870
11520
|
handleWrapperBlur: (e: FocusEvent) => void;
|
|
10871
11521
|
handleWrapperFocus: (e: FocusEvent) => void;
|
|
10872
11522
|
handleMouseEnter: () => void;
|
|
@@ -10877,7 +11527,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10877
11527
|
handleClear: (e: MouseEvent) => void;
|
|
10878
11528
|
handlePasswordToggleClick: () => void;
|
|
10879
11529
|
handlePasswordToggleMousedown: (e: MouseEvent) => void;
|
|
10880
|
-
|
|
11530
|
+
handleWrapperKeydown: (e: KeyboardEvent) => void;
|
|
10881
11531
|
handleTextAreaMirrorResize: () => void;
|
|
10882
11532
|
getTextareaScrollContainer: () => HTMLTextAreaElement | null;
|
|
10883
11533
|
mergedTheme: import("vue").ComputedRef<{
|
|
@@ -10921,10 +11571,11 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10921
11571
|
opacity5: string;
|
|
10922
11572
|
dividerColor: string;
|
|
10923
11573
|
borderColor: string;
|
|
10924
|
-
|
|
11574
|
+
closeIconColor: string;
|
|
11575
|
+
closeIconColorHover: string;
|
|
11576
|
+
closeIconColorPressed: string;
|
|
10925
11577
|
closeColorHover: string;
|
|
10926
11578
|
closeColorPressed: string;
|
|
10927
|
-
closeColorDisabled: string;
|
|
10928
11579
|
clearColor: string;
|
|
10929
11580
|
clearColorHover: string;
|
|
10930
11581
|
clearColorPressed: string;
|
|
@@ -11165,6 +11816,7 @@ declare const LabelFormContent: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
11165
11816
|
type: BooleanConstructor;
|
|
11166
11817
|
default: undefined;
|
|
11167
11818
|
};
|
|
11819
|
+
allowInput: import("vue").PropType<(value: string) => boolean>;
|
|
11168
11820
|
onMousedown: import("vue").PropType<(e: MouseEvent) => void>;
|
|
11169
11821
|
onKeydown: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
11170
11822
|
onKeyup: import("vue").PropType<(e: KeyboardEvent) => void>;
|