From db6a3283b1d9f3213afa031f53b3cf69b2ea70ea Mon Sep 17 00:00:00 2001 From: zhf <1204297681@qq.com> Date: Tue, 29 Apr 2025 22:55:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E9=83=A8=E4=BB=B6?= =?UTF-8?q?=E3=80=81=E7=BC=96=E8=BE=91=E5=99=A8=E5=92=8C=E9=9D=A2=E6=9D=BF?= =?UTF-8?q?=E9=A1=B9=E7=9A=84=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/control/app-menu/app-menu.tsx | 2 +- src/control/calendar/calendar.tsx | 4 ++-- src/control/caption-bar/caption-bar.tsx | 2 +- src/control/chart/chart.tsx | 4 ++-- src/control/dashboard/dashboard.tsx | 2 +- src/control/data-view/data-view.tsx | 4 ++-- src/control/drbar/drbar.tsx | 2 +- src/control/drtab/drtab.tsx | 4 ++-- src/control/form/edit-form/edit-form.tsx | 4 ++-- src/control/form/search-form/search-form.tsx | 2 +- src/control/list/list/list.tsx | 8 ++++---- src/control/list/md-ctrl/md-ctrl.tsx | 2 +- src/control/pickup-view-panel/pickup-view-panel.tsx | 4 ++-- src/control/search-bar/search-bar.tsx | 2 +- src/control/tab-exp-panel/tab-exp-panel.tsx | 3 ++- src/control/toolbar/toolbar.tsx | 2 +- src/control/tree-exp-bar/tree-exp-bar.tsx | 5 ++--- src/control/tree/tree.tsx | 2 +- src/control/wizard-panel/wizard-panel.tsx | 3 ++- src/editor/cascader/ibiz-cascader/ibiz-cascader.tsx | 4 ++-- .../ibiz-checkbox-list/ibiz-checkbox-list.tsx | 4 ++-- src/editor/check-box/ibiz-checkbox/ibiz-checkbox.tsx | 6 +++--- .../color-picker/ibiz-color-picker/ibiz-color-picker.tsx | 4 ++-- src/editor/data-picker/ibiz-mpicker/ibiz-mpicker.tsx | 4 ++-- .../ibiz-picker-select-view/ibiz-picker-select-view.tsx | 4 ++-- src/editor/data-picker/ibiz-picker/ibiz-picker.tsx | 4 ++-- .../date-picker/ibiz-date-picker/ibiz-date-picker.tsx | 4 ++-- .../ibiz-date-range-picker/ibiz-date-range-picker.tsx | 4 ++-- .../ibiz-dropdown-list/ibiz-dropdown-list.tsx | 4 ++-- src/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.tsx | 4 ++-- .../dropdown-list/ibiz-emoji-picker/ibiz-emoji-picker.tsx | 4 ++-- src/editor/html/quill-editor/quill-editor.tsx | 4 ++-- .../ibiz-markdown-editor/ibiz-markdown-editor.tsx | 4 ++-- .../ibiz-number-range-picker/ibiz-number-range-picker.tsx | 4 ++-- src/editor/qrcode/ibiz-qrcode/ibiz-qrcode.tsx | 4 ++-- src/editor/radio-button-list/ibiz-radio/ibiz-radio.tsx | 4 ++-- src/editor/rate/ibiz-rate/ibiz-rate.tsx | 4 ++-- src/editor/raw/ibiz-raw/ibiz-raw.tsx | 8 ++++---- src/editor/slider/ibiz-slider/ibiz-slider.tsx | 4 ++-- src/editor/span/span-link/span-link.tsx | 2 +- src/editor/span/span/span.tsx | 2 +- src/editor/stepper/ibiz-stepper/ibiz-stepper.tsx | 4 ++-- src/editor/switch/ibiz-switch/ibiz-switch.tsx | 4 ++-- .../text-box/ibiz-input-number/ibiz-input-number.tsx | 4 ++-- src/editor/text-box/input/input.tsx | 4 ++-- src/editor/upload/ibiz-file-upload/ibiz-file-upload.tsx | 4 ++-- .../upload/ibiz-image-cropping/ibiz-image-cropping.tsx | 4 ++-- src/editor/upload/ibiz-image-select/ibiz-image-select.tsx | 4 ++-- src/editor/upload/ibiz-image-upload/ibiz-image-upload.tsx | 4 ++-- src/panel-component/async-action/mob-async-action.tsx | 2 +- src/panel-component/wf-step-trace/wf-step-trace.tsx | 3 +++ 51 files changed, 96 insertions(+), 92 deletions(-) diff --git a/src/control/app-menu/app-menu.tsx b/src/control/app-menu/app-menu.tsx index 0dfc501735..c341af0597 100644 --- a/src/control/app-menu/app-menu.tsx +++ b/src/control/app-menu/app-menu.tsx @@ -14,7 +14,7 @@ export const AppMenuControl = defineComponent({ */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/calendar/calendar.tsx b/src/control/calendar/calendar.tsx index f17d4dc9d0..bf903eebe8 100644 --- a/src/control/calendar/calendar.tsx +++ b/src/control/calendar/calendar.tsx @@ -24,7 +24,7 @@ export const CalendarControl = defineComponent({ */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** @@ -41,7 +41,7 @@ export const CalendarControl = defineComponent({ */ mdctrlActiveMode: { type: Number, default: undefined }, /** - * @description 是否加载默认数据 + * @description 是否默认加载数据 * @default false */ loadDefault: { type: Boolean, default: false }, diff --git a/src/control/caption-bar/caption-bar.tsx b/src/control/caption-bar/caption-bar.tsx index d125d79a85..c6ba546695 100644 --- a/src/control/caption-bar/caption-bar.tsx +++ b/src/control/caption-bar/caption-bar.tsx @@ -15,7 +15,7 @@ export const CaptionBarControl = defineComponent({ required: true, }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/chart/chart.tsx b/src/control/chart/chart.tsx index 9a05149828..2e764c4b2a 100644 --- a/src/control/chart/chart.tsx +++ b/src/control/chart/chart.tsx @@ -19,7 +19,7 @@ const ChartControl = defineComponent({ */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** @@ -36,7 +36,7 @@ const ChartControl = defineComponent({ */ mdctrlActiveMode: { type: Number, default: undefined }, /** - * @description 是否加载默认数据 + * @description 是否默认加载数据 * @default true */ loadDefault: { type: Boolean, default: true }, diff --git a/src/control/dashboard/dashboard.tsx b/src/control/dashboard/dashboard.tsx index a40a3f790d..81379ad6ef 100644 --- a/src/control/dashboard/dashboard.tsx +++ b/src/control/dashboard/dashboard.tsx @@ -84,7 +84,7 @@ export const DashboardControl = defineComponent({ required: true, }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/data-view/data-view.tsx b/src/control/data-view/data-view.tsx index 04931fc8d7..d3972593cd 100644 --- a/src/control/data-view/data-view.tsx +++ b/src/control/data-view/data-view.tsx @@ -20,7 +20,7 @@ export const DataViewControl = defineComponent({ */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** @@ -38,7 +38,7 @@ export const DataViewControl = defineComponent({ */ singleSelect: { type: Boolean, default: true }, /** - * @description 是否加载默认数据 + * @description 是否默认加载数据 * @default true */ loadDefault: { type: Boolean, default: true }, diff --git a/src/control/drbar/drbar.tsx b/src/control/drbar/drbar.tsx index 9a635aee2d..5e1b79c31e 100644 --- a/src/control/drbar/drbar.tsx +++ b/src/control/drbar/drbar.tsx @@ -22,7 +22,7 @@ export const DRBarControl = defineComponent({ */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/drtab/drtab.tsx b/src/control/drtab/drtab.tsx index 6bec1dc444..956d8a255e 100644 --- a/src/control/drtab/drtab.tsx +++ b/src/control/drtab/drtab.tsx @@ -18,11 +18,11 @@ export const DRTabControl = defineComponent({ name: 'IBizDrTabControl', props: { /** - * @description 数据分页模型数据 + * @description 数据关系分页模型数据 */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/form/edit-form/edit-form.tsx b/src/control/form/edit-form/edit-form.tsx index bfcee7bfb0..08d0879acc 100644 --- a/src/control/form/edit-form/edit-form.tsx +++ b/src/control/form/edit-form/edit-form.tsx @@ -18,7 +18,7 @@ export const EditFormControl: ReturnType = required: true, }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** @@ -39,7 +39,7 @@ export const EditFormControl: ReturnType = */ data: { type: Object as PropType, required: false }, /** - * @description 是否默认加载 + * @description 是否默认加载数据 * @default true */ loadDefault: { type: Boolean, default: true }, diff --git a/src/control/form/search-form/search-form.tsx b/src/control/form/search-form/search-form.tsx index 05bee50499..526ba86db9 100644 --- a/src/control/form/search-form/search-form.tsx +++ b/src/control/form/search-form/search-form.tsx @@ -19,7 +19,7 @@ export const SearchFormControl = defineComponent({ */ provider: { type: Object as PropType }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/list/list/list.tsx b/src/control/list/list/list.tsx index 495614de9e..92d8cea0e2 100644 --- a/src/control/list/list/list.tsx +++ b/src/control/list/list/list.tsx @@ -13,7 +13,7 @@ export const ListControl = defineComponent({ */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** @@ -26,7 +26,7 @@ export const ListControl = defineComponent({ */ provider: { type: Object as PropType }, /** - * @description 数据激活模式,值为0:无激活,值为1:单击激活,值为2:双击激活 + * @description 部件激活模式,值为0:无激活,值为1:单击激活,值为2:双击激活 * @default 1 */ mdctrlActiveMode: { type: Number, default: 1 }, @@ -46,12 +46,12 @@ export const ListControl = defineComponent({ */ columnsCount: { type: Number, default: 5 }, /** - * @description 是否加载默认数据 + * @description 是否默认加载数据 * @default true */ loadDefault: { type: Boolean, default: true }, /** - * @description 列表模式,值为LIST:正常显示列表,值为SELECT:在显示的每一项上会绘制是否勾选的图标 + * @description 模式,值为LIST:列表模式呈现加载数据,值为SELECT:呈现数据时显示勾选图标 * @default LIST */ mode: { type: String, default: 'LIST' }, diff --git a/src/control/list/md-ctrl/md-ctrl.tsx b/src/control/list/md-ctrl/md-ctrl.tsx index c9cb5aa709..d56f6f5a0e 100644 --- a/src/control/list/md-ctrl/md-ctrl.tsx +++ b/src/control/list/md-ctrl/md-ctrl.tsx @@ -32,7 +32,7 @@ export const MDCtrlControl = defineComponent({ */ provider: { type: Object as PropType }, /** - * @description 部件行数据默认激活模式,值为0:不激活,值为1:单击激活,值为2:双击激活 + * @description 部件激活模式,值为0:无激活,值为1:单击激活,值为2:双击激活 * @default 1 */ mdctrlActiveMode: { type: Number, default: 1 }, diff --git a/src/control/pickup-view-panel/pickup-view-panel.tsx b/src/control/pickup-view-panel/pickup-view-panel.tsx index de42d67a84..4f4b57589c 100644 --- a/src/control/pickup-view-panel/pickup-view-panel.tsx +++ b/src/control/pickup-view-panel/pickup-view-panel.tsx @@ -15,11 +15,11 @@ export const PickupViewPanelControl = defineComponent({ name: 'IBizPickupViewPanelControl', props: { /** - * 选择视图面板模型数据 + * @description 选择视图面板模型数据 */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/search-bar/search-bar.tsx b/src/control/search-bar/search-bar.tsx index 338b62eb60..f96020e469 100644 --- a/src/control/search-bar/search-bar.tsx +++ b/src/control/search-bar/search-bar.tsx @@ -25,7 +25,7 @@ export const SearchBarControl = defineComponent({ */ provider: { type: Object as PropType }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/tab-exp-panel/tab-exp-panel.tsx b/src/control/tab-exp-panel/tab-exp-panel.tsx index ef02c339f5..0be4a4a660 100644 --- a/src/control/tab-exp-panel/tab-exp-panel.tsx +++ b/src/control/tab-exp-panel/tab-exp-panel.tsx @@ -14,11 +14,12 @@ export const TabExpPanelControl = defineComponent({ */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** * @description 视图参数对象 + * @default {} */ params: { type: Object as PropType, default: () => ({}) }, /** diff --git a/src/control/toolbar/toolbar.tsx b/src/control/toolbar/toolbar.tsx index 729ba50e49..4a0d091753 100644 --- a/src/control/toolbar/toolbar.tsx +++ b/src/control/toolbar/toolbar.tsx @@ -66,7 +66,7 @@ export const ToolbarControl = defineComponent({ */ provider: { type: Object as PropType }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/tree-exp-bar/tree-exp-bar.tsx b/src/control/tree-exp-bar/tree-exp-bar.tsx index 029b5edc03..0da05a0988 100644 --- a/src/control/tree-exp-bar/tree-exp-bar.tsx +++ b/src/control/tree-exp-bar/tree-exp-bar.tsx @@ -13,7 +13,7 @@ export const TreeExpBarControl = defineComponent({ */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** @@ -30,11 +30,10 @@ export const TreeExpBarControl = defineComponent({ srfnav: { type: String, required: false }, /** * @description 是否不需要导航视图 - * @default false */ noNeedNavView: { type: Boolean, required: false }, /** - * @description 是否加载默认数据 + * @description 是否默认加载数据 * @default true */ loadDefault: { type: Boolean, default: true }, diff --git a/src/control/tree/tree.tsx b/src/control/tree/tree.tsx index d707d4e289..73bd197be8 100644 --- a/src/control/tree/tree.tsx +++ b/src/control/tree/tree.tsx @@ -37,7 +37,7 @@ export const TreeControl = defineComponent({ */ modelData: { type: Object as PropType, required: true }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** diff --git a/src/control/wizard-panel/wizard-panel.tsx b/src/control/wizard-panel/wizard-panel.tsx index de73cb07bc..2dedd7ce84 100644 --- a/src/control/wizard-panel/wizard-panel.tsx +++ b/src/control/wizard-panel/wizard-panel.tsx @@ -19,11 +19,12 @@ export const WizardPanelControl = defineComponent({ required: true, }, /** - * @description 应用上下文 + * @description 应用上下文对象 */ context: { type: Object as PropType, required: true }, /** * @description 视图参数对象 + * @default {} */ params: { type: Object as PropType, default: () => ({}) }, /** diff --git a/src/editor/cascader/ibiz-cascader/ibiz-cascader.tsx b/src/editor/cascader/ibiz-cascader/ibiz-cascader.tsx index 25fd5012fb..294776f63d 100644 --- a/src/editor/cascader/ibiz-cascader/ibiz-cascader.tsx +++ b/src/editor/cascader/ibiz-cascader/ibiz-cascader.tsx @@ -12,9 +12,9 @@ import { IBizCommonRightIcon } from '../../common/right-icon/right-icon'; import { usePopstateListener } from '../../../util'; /** - * 级联选择器 + * 移动端级联选择器 * @primary - * @description 支持多级联动加载与异步数据动态渲染,用于选择具有级联关系的数据。支持的编辑器类型为:级联选择器。 + * @description 支持多级联动加载与异步数据动态渲染,用于选择具有级联关系的数据。支持编辑器类型包含:`移动端级联选择器`。 * @editorparams {name:editorStyle,title:编辑器样式,parameterType:string,defaultvalue:default,description:值为default时,加载下级数据时,从节点的value属性获取值,否则从节点的data属性里的value上获取值} * @editorparams {name:separator,title:分割符,parameterType:string,defaultvalue:'/',description:用于拼接选择的值} * @editorparams {name:triggerMode,title:change触发模式,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} diff --git a/src/editor/check-box-list/ibiz-checkbox-list/ibiz-checkbox-list.tsx b/src/editor/check-box-list/ibiz-checkbox-list/ibiz-checkbox-list.tsx index 9b2d2fc231..7f9a3920d7 100644 --- a/src/editor/check-box-list/ibiz-checkbox-list/ibiz-checkbox-list.tsx +++ b/src/editor/check-box-list/ibiz-checkbox-list/ibiz-checkbox-list.tsx @@ -10,9 +10,9 @@ import './ibiz-checkbox-list.scss'; import { CheckBoxListEditorController } from '../checkbox-list-editor.controller'; /** - * 多选项列表框 + * 选项框列表 * @primary - * @description 实现轻量化多选列表框组件,支持选项勾选、数据绑定与状态反馈,满足高效的多项数据选取需求。支持的编辑器类型为:选项框列表。 + * @description 实现轻量化多选列表框组件,支持选项勾选、数据绑定与状态反馈,满足高效的多项数据选取需求。支持编辑器类型包含:`选项框列表`。 * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/check-box/ibiz-checkbox/ibiz-checkbox.tsx b/src/editor/check-box/ibiz-checkbox/ibiz-checkbox.tsx index 8f8d6bebf9..b9abfba6a2 100644 --- a/src/editor/check-box/ibiz-checkbox/ibiz-checkbox.tsx +++ b/src/editor/check-box/ibiz-checkbox/ibiz-checkbox.tsx @@ -11,9 +11,9 @@ import './ibiz-checkbox.scss'; /** * 选项框 * @primary - * @description 采用轻量化状态切换组件,通过布尔值勾选控制属性状态,支持即时反馈与无障碍操作,适用于配置项开关或编辑器场景。支持的编辑器类型为:选项框。 - * @editorparam {name:selectValue,title:选中时抛出的值,parameterType:number,defaultValue:1,description:选中时抛出的值} - * @editorparam {name:nullValue,title:未选中时抛出的值,parameterType:number,defaultValue:0,description:未选中时抛出的值} + * @description 采用轻量化状态切换组件,通过布尔值勾选控制属性状态,支持即时反馈与无障碍操作,适用于配置项开关或编辑器场景。支持编辑器类型包含:`选项框`。 + * @editorparams {name:selectValue,title:选中时抛出的值,parameterType:number,defaultValue:1,description:选中时抛出的值} + * @editorparams {name:nullValue,title:未选中时抛出的值,parameterType:number,defaultValue:0,description:未选中时抛出的值} * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/color-picker/ibiz-color-picker/ibiz-color-picker.tsx b/src/editor/color-picker/ibiz-color-picker/ibiz-color-picker.tsx index 9951ede7d5..05f9685888 100644 --- a/src/editor/color-picker/ibiz-color-picker/ibiz-color-picker.tsx +++ b/src/editor/color-picker/ibiz-color-picker/ibiz-color-picker.tsx @@ -8,9 +8,9 @@ import './ibiz-color-picker.scss'; import { ColorPickerEditorController } from '../color-picker-editor.controller'; /** - * 颜色选择器 + * 移动端颜色选择器 * @primary - * @description 轻量化的颜色选择器,支持色板选取、RGB 格式输入及实时预览,满足高效精准的色彩配置需求。支持的编辑器类型为:颜色选择器。 + * @description 轻量化的颜色选择器,支持色板选取、RGB 格式输入及实时预览,满足高效精准的色彩配置需求。支持编辑器类型包含:`移动端颜色选择器`。 * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/data-picker/ibiz-mpicker/ibiz-mpicker.tsx b/src/editor/data-picker/ibiz-mpicker/ibiz-mpicker.tsx index 97b8407d0e..0e7881e1fd 100644 --- a/src/editor/data-picker/ibiz-mpicker/ibiz-mpicker.tsx +++ b/src/editor/data-picker/ibiz-mpicker/ibiz-mpicker.tsx @@ -10,9 +10,9 @@ import { IBizDataMPicker } from '../../common/data-mpicker/ibiz-data-mpicker'; import { IBizCommonRightIcon } from '../../common/right-icon/right-icon'; /** - * 地址框选择器 + * 移动端多数据选择 * @primary - * @description 实现可扩展的数据选择器组件,支持模态化选择视图调用、支持多选操作、多维度数据筛选与选中结果回调处理,提供完整的数据选取交互闭环。支持的编辑器类型为:地址框。 + * @description 实现可扩展的数据选择器组件,支持模态化选择视图调用、支持多选操作、多维度数据筛选与选中结果回调处理,提供完整的数据选取交互闭环。支持编辑器类型包含:`移动端多数据选择`。 * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/data-picker/ibiz-picker-select-view/ibiz-picker-select-view.tsx b/src/editor/data-picker/ibiz-picker-select-view/ibiz-picker-select-view.tsx index d4df57d00e..ce39113072 100644 --- a/src/editor/data-picker/ibiz-picker-select-view/ibiz-picker-select-view.tsx +++ b/src/editor/data-picker/ibiz-picker-select-view/ibiz-picker-select-view.tsx @@ -10,9 +10,9 @@ import { clone } from 'ramda'; import { PickerEditorController } from '../picker-editor.controller'; /** - * 数据选择下拉视图 + * 移动端数据选择(下拉视图) * @primary - * @description 通过弹出一个模态来承载选择视图,可通过编辑参数multiple来决定是单选还是多选。支持的编辑器类型为:数据下拉选择视图。 + * @description 通过弹出一个模态来承载选择视图,可通过编辑参数multiple来决定是单选还是多选。支持编辑器类型包含:`移动端数据选择(下拉视图)`。 * @editorparams {name:multiple,title:多选,description:是否多选,parameterType:boolean,default:true} * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode diff --git a/src/editor/data-picker/ibiz-picker/ibiz-picker.tsx b/src/editor/data-picker/ibiz-picker/ibiz-picker.tsx index 6481f18566..c70829a538 100644 --- a/src/editor/data-picker/ibiz-picker/ibiz-picker.tsx +++ b/src/editor/data-picker/ibiz-picker/ibiz-picker.tsx @@ -10,9 +10,9 @@ import { PickerEditorController } from '../picker-editor.controller'; import { usePopstateListener } from '../../../util'; /** - * 数据选择器 + * 移动端数据选择 * @primary - * @description 实现轻量级单选数据选择器组件,支持视图层动态唤起、精准数据匹配及选中结果回调处理,提供高效的单数据点选取解决方案。支持的编辑器类型为:数据选择。 + * @description 实现轻量级单选数据选择器组件,支持视图层动态唤起、精准数据匹配及选中结果回调处理,提供高效的单数据点选取解决方案。支持编辑器类型包含:`移动端数据选择`。 * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/date-picker/ibiz-date-picker/ibiz-date-picker.tsx b/src/editor/date-picker/ibiz-date-picker/ibiz-date-picker.tsx index 9680741fcf..880a061583 100644 --- a/src/editor/date-picker/ibiz-date-picker/ibiz-date-picker.tsx +++ b/src/editor/date-picker/ibiz-date-picker/ibiz-date-picker.tsx @@ -13,9 +13,9 @@ import { IBizCommonRightIcon } from '../../common/right-icon/right-icon'; import { usePopstateListener } from '../../../util'; /** - * 时间选择器 + * 移动端时间选择器 * @primary - * @description 轻量的时间选择器,默认时间格式为年月日-时分秒,可通过配置值格式化串来格式化日期。支持的编辑器类型为:时间选择器(年月日-时分秒),时间选择器,时间选择器(小时),时间选择器(分钟),时间选择器(无日期),时间选择器(无秒钟),时间选择器(无时间),时间选择器(无分钟) + * @description 轻量的时间选择器,默认时间格式为年月日-时分秒,可通过配置值格式化串来格式化日期。支持编辑器类型包含: `移动端时间选择器`、`移动端时间选择器(YYYY-MM-DD HH)`、`移动端时间选择器(YYYY-MM-DD HH:mm)`、`移动端时间选择器(HH:mm:ss)`、`移动端时间选择器(HH:mm)`、`移动端时间选择器(YYYY-MM-DD)`、`移动端时间选择器(YYYY-MM-DD HH:mm:ss)` * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/date-range/ibiz-date-range-picker/ibiz-date-range-picker.tsx b/src/editor/date-range/ibiz-date-range-picker/ibiz-date-range-picker.tsx index 8abbd36d22..af9984ae25 100644 --- a/src/editor/date-range/ibiz-date-range-picker/ibiz-date-range-picker.tsx +++ b/src/editor/date-range/ibiz-date-range-picker/ibiz-date-range-picker.tsx @@ -13,9 +13,9 @@ import { usePopstateListener } from '../../../util'; import { IBizDateRangeCalendar } from '../../../common/date-range-picker/date-range-picker'; /** - * 时间范围选择器 + * 移动端时间范围选择器 * @primary - * @description 提供轻量的时间范围的选择组件,默认支持年月日的时间范围选择。支持的编辑器类型为:时间范围选择。 + * @description 提供轻量的时间范围的选择组件,默认支持年月日的时间范围选择。支持编辑器类型包含: `移动端时间范围选择器`、`移动端时间范围选择器(YYYY-MM-DD)`。 * @editorparams {name:SHOWMODE,parameterType:'DEFAULT' | 'CALENDAR',defaultValue:'DEFALUIT',description:显示模式,值为CALENDAR时,使用日历组件来选择日期范围,值为DEFAULT时,绘制两个时间选择器来绘制日期范围} * @editorparams {name:rangeSeparator,parameterType:string,defaultValue:'~',description:选择范围时的分隔符} * @editorparams {name:valueSeparator,parameterType:string,defaultValue:'',description:值分割符} diff --git a/src/editor/dropdown-list/ibiz-dropdown-list/ibiz-dropdown-list.tsx b/src/editor/dropdown-list/ibiz-dropdown-list/ibiz-dropdown-list.tsx index 1f71e5088a..9a0ed6581b 100644 --- a/src/editor/dropdown-list/ibiz-dropdown-list/ibiz-dropdown-list.tsx +++ b/src/editor/dropdown-list/ibiz-dropdown-list/ibiz-dropdown-list.tsx @@ -11,9 +11,9 @@ import { IBizDataMPicker } from '../../common/data-mpicker/ibiz-data-mpicker'; import { usePopstateListener } from '../../../util'; /** - * 下拉选择器-多选 + * 移动端下拉列表(多选) * @primary - * @description 用于在一维数组中进行多项数据选择。支持的编辑器类型为:下拉列表框(多选)。 + * @description 用于在一维数组中进行多项数据选择。支持编辑器类型包含:`移动端下拉列表(多选)`。 * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.tsx b/src/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.tsx index 1a5289619a..c40c1576b6 100644 --- a/src/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.tsx +++ b/src/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.tsx @@ -10,9 +10,9 @@ import { IBizCommonRightIcon } from '../../common/right-icon/right-icon'; import { usePopstateListener } from '../../../util'; /** - * 下拉选择器 + * 移动端下拉列表(单选) * @primary - * @description 用于在一维数组中进行单项数据选择。支持的编辑器类型为:下拉列表框。 + * @description 用于在一维数组中进行单项数据选择。支持编辑器类型包含:`移动端下拉列表(单选)`。 * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/dropdown-list/ibiz-emoji-picker/ibiz-emoji-picker.tsx b/src/editor/dropdown-list/ibiz-emoji-picker/ibiz-emoji-picker.tsx index 021c8a9135..110fd60c95 100644 --- a/src/editor/dropdown-list/ibiz-emoji-picker/ibiz-emoji-picker.tsx +++ b/src/editor/dropdown-list/ibiz-emoji-picker/ibiz-emoji-picker.tsx @@ -10,9 +10,9 @@ import { DropDownListEditorController } from '../dropdown-list-editor.controller import { usePopstateListener } from '../../../util'; /** - * 表情选择器 + * 表情选择器(扩展) * @primary - * @description 通过弹出底部抽屉来绘制表情列表,进而支持对表情数据的搜索与选择。支持的编辑器类型为:下拉列表框(表情选择)。 + * @description 通过弹出底部抽屉来绘制表情列表,进而支持对表情数据的搜索与选择。 * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/html/quill-editor/quill-editor.tsx b/src/editor/html/quill-editor/quill-editor.tsx index 390144b510..72582ac1bb 100644 --- a/src/editor/html/quill-editor/quill-editor.tsx +++ b/src/editor/html/quill-editor/quill-editor.tsx @@ -15,9 +15,9 @@ import { HtmlEditorController } from '../html-editor.controller'; import './quill-editor.scss'; /** - * 富文本编辑器 + * 移动端HTML编辑框 * @primary - * @description 基于Quill深度定制可扩展的富文本编辑器,集成文件/图片上传、实时预览及样式配置功能,提供完整的富媒体编辑解决方案。支持的编辑器类型为:HTML编辑器。 + * @description 基于Quill深度定制可扩展的富文本编辑器,集成文件/图片上传、实时预览及样式配置功能,提供完整的富媒体编辑解决方案。支持编辑器类型包含:`移动端HTML编辑框`。 * @editorparams {name:uploadParams,parameterType:IData,defaultvalue:{},description:上传参数} * @editorparams {name:exportParams,parameterType:IData,defaultvalue:{},description:下载参数} * @editorparams {name:SHOWTOOLBAR,parameterType:boolean,defaultvalue:true,description:显示工具栏} diff --git a/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.tsx b/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.tsx index 2200f80377..0dd6efb2c8 100644 --- a/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.tsx +++ b/src/editor/markdown/ibiz-markdown-editor/ibiz-markdown-editor.tsx @@ -20,9 +20,9 @@ import { MarkDownEditorController } from '../markdown-editor.controller'; import './ibiz-markdown-editor.scss'; /** - * markdown编辑器 + * 移动端Markdown编辑框 * @primary - * @description 轻量化的颜色选择器,支持色板选取、RGB 格式输入及实时预览,满足高效精准的色彩配置需求。支持的编辑器类型为:markdown编辑器。 + * @description 用于Markdown文档编辑。支持编辑器类型包含:`移动端Markdown编辑框`。 * @editorparams {name:uploadparams,parameterType:IData,defaultvalue:{},description:上传参数} * @editorparams {name:exportparams,parameterType:IData,defaultvalue:{},description:下载参数} * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} diff --git a/src/editor/number-range/ibiz-number-range-picker/ibiz-number-range-picker.tsx b/src/editor/number-range/ibiz-number-range-picker/ibiz-number-range-picker.tsx index 7c35440bf6..60d1e4f047 100644 --- a/src/editor/number-range/ibiz-number-range-picker/ibiz-number-range-picker.tsx +++ b/src/editor/number-range/ibiz-number-range-picker/ibiz-number-range-picker.tsx @@ -10,9 +10,9 @@ import { toNumber } from 'lodash-es'; import { NumberRangeEditorController } from '../number-range-editor.controller'; /** - * 数值范围选择器 + * 移动端数值范围编辑框 * @primary - * @description 实现移动端优化的数值范围选择器组件,支持双滑块精准控制、边界限制与手势交互,提供流畅的区间值选取体验。支持的编辑器类型为:数值范围选择器。 + * @description 实现移动端优化的数值范围选择器组件,支持双滑块精准控制、边界限制与手势交互,提供流畅的区间值选取体验。支持编辑器类型包含:`移动端数值范围编辑框`。 * @editorparams {name:maxValue,parameterType:string,defaultvalue:Infinity,description:最大值} * @editorparams {name:minValue,parameterType:string,defaultvalue:-Infinity,description:最小值} * @editorparams {name:valueSeparator,parameterType:string,defaultvalue:'-',description:数值范围分隔符} diff --git a/src/editor/qrcode/ibiz-qrcode/ibiz-qrcode.tsx b/src/editor/qrcode/ibiz-qrcode/ibiz-qrcode.tsx index df77ce3c93..f7a1f0d7d7 100644 --- a/src/editor/qrcode/ibiz-qrcode/ibiz-qrcode.tsx +++ b/src/editor/qrcode/ibiz-qrcode/ibiz-qrcode.tsx @@ -9,9 +9,9 @@ import { QrcodeEditorController } from '../qrcode-editor.controller'; import './ibiz-qrcode.scss'; /** - * 二维码组件 + * 移动端二维码阅读器 * @primary - * @description 支持将指定的值转换为二维码图片。支持的编辑器类型为:二维码编辑器。 + * @description 支持将指定的值转换为二维码图片。支持编辑器类型包含:`移动端二维码阅读器`。 * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter | change | focus | blur */ diff --git a/src/editor/radio-button-list/ibiz-radio/ibiz-radio.tsx b/src/editor/radio-button-list/ibiz-radio/ibiz-radio.tsx index 45af7fc462..612d4c6d75 100644 --- a/src/editor/radio-button-list/ibiz-radio/ibiz-radio.tsx +++ b/src/editor/radio-button-list/ibiz-radio/ibiz-radio.tsx @@ -9,9 +9,9 @@ import './ibiz-radio.scss'; import { RadioButtonListEditorController } from '../radio-button-list.controller'; /** - * 单选框列表 + * 移动端单选项列表 * @primary - * @description 实现轻量化单选框列表组件,支持数据驱动渲染、选项互斥选择与状态回调,适用于标准化单项数据选取场景。支持的编辑器类型为:单选框列表。 + * @description 实现轻量化单选框列表组件,支持数据驱动渲染、选项互斥选择与状态回调,适用于标准化单项数据选取场景。支持编辑器类型包含:`移动端单选项列表`。 * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/rate/ibiz-rate/ibiz-rate.tsx b/src/editor/rate/ibiz-rate/ibiz-rate.tsx index c5d1ce79c5..fb56354cb9 100644 --- a/src/editor/rate/ibiz-rate/ibiz-rate.tsx +++ b/src/editor/rate/ibiz-rate/ibiz-rate.tsx @@ -10,9 +10,9 @@ import { RateEditorController } from '../rate-editor.controller'; import './ibiz-rate.scss'; /** - * 评分器 + * 移动端评分器 * @primary - * @description 用于给某些东西进行评分,通过图标的多少来表示评分。支持的编辑器类型为:评分器。 + * @description 用于给某些东西进行评分,通过图标的多少来表示评分。支持编辑器类型包含:`移动端评分器`。 * @editorprops {name:maxValue,parameterType:number,defaultvalue:5,description:设置允许的最大值} * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode diff --git a/src/editor/raw/ibiz-raw/ibiz-raw.tsx b/src/editor/raw/ibiz-raw/ibiz-raw.tsx index c1adfaae3e..0bd188b96d 100644 --- a/src/editor/raw/ibiz-raw/ibiz-raw.tsx +++ b/src/editor/raw/ibiz-raw/ibiz-raw.tsx @@ -10,10 +10,10 @@ import './ibiz-raw.scss'; /** * 直接内容 * @primary - * @description 用于直接显示某个值或图片的编辑器,支持通过freemarker表达式动态获取值。支持的编辑器类型为:直接内容。 - * @editorprops {name:contenttype,parameterType:string,defaultvalue:TEXT,description:内容类型} - * @editorprops {name:template,parameterType:string,description:freeMarker模版字符串} - * @editorprops {name:TEMPLATE,parameterType:string,description:freeMarker模版字符串} + * @description 用于直接显示某个值或图片的编辑器,支持通过freemarker表达式动态获取值。支持编辑器类型包含:`直接内容`。 + * @editorparams {name:contenttype,parameterType:string,defaultvalue:TEXT,description:内容类型} + * @editorparams {name:template,parameterType:string,description:freeMarker模版字符串} + * @editorparams {name:TEMPLATE,parameterType:string,description:freeMarker模版字符串} * @editorparams {name:triggerMode,parameterType:string,description:指定触发 'change' 事件的模式,例如 'blur' 或 'input' 等} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter diff --git a/src/editor/slider/ibiz-slider/ibiz-slider.tsx b/src/editor/slider/ibiz-slider/ibiz-slider.tsx index fbf3d559d3..9ab0ac68c2 100644 --- a/src/editor/slider/ibiz-slider/ibiz-slider.tsx +++ b/src/editor/slider/ibiz-slider/ibiz-slider.tsx @@ -10,9 +10,9 @@ import { SliderEditorController } from '../slider-editor.controller'; import './ibiz-slider.scss'; /** - * 滑动条 + * 移动端滑动输入条 * @primary - * @description 通过拖动滑块来改变值。支持的编辑器参数为:滑动条编辑器。 + * @description 通过拖动滑块来改变值。支持编辑器类型包含:`移动端滑动输入条`。 * @editorparams {name:stepValue,parameterType:number,defaultvalue:1,description:步长} * @editorparams {name:maxValue,parameterType:number,defaultvalue:100,description:最大值} * @editorparams {name:minValue,parameterType:number,defaultvalue:0,description:最小值} diff --git a/src/editor/span/span-link/span-link.tsx b/src/editor/span/span-link/span-link.tsx index fa53070d02..4811d3baa7 100644 --- a/src/editor/span/span-link/span-link.tsx +++ b/src/editor/span/span-link/span-link.tsx @@ -9,7 +9,7 @@ import './span-link.scss'; import { SpanEditorController } from '../span-editor.controller'; /** - * 标签链接 + * 标签(数据链接) * * @description 直接呈现文本内容,可配置数据链接视图用于视图跳转。支持编辑器类型包含:`标签(数据链接)` * @primary diff --git a/src/editor/span/span/span.tsx b/src/editor/span/span/span.tsx index aa74ba4718..a33995a7dc 100644 --- a/src/editor/span/span/span.tsx +++ b/src/editor/span/span/span.tsx @@ -26,7 +26,7 @@ function isValidDateFormat(dateStr: string, format: string): boolean { * 标签 * @primary * @description 直接呈现文本内容。支持编辑器类型包含:`标签` - * @editorparams {name:REVERSECOLOR,parameterType:boolean,defaultvalue:'',description:是否反转颜色,即代码表项的color是否用于代码表项的背景色} + * @editorparams {name:REVERSECOLOR,parameterType:boolean,description:是否反转颜色,即代码表项的color是否用于代码表项的背景色} * @editorparams {name:SHOWMODE,parameterType:'DEFAULT' | 'ICON' | 'TEXT',defaultvalue:'DEFAULT',description:显示模式,即代码表项的显示情况,值为DEFAULT:显示图标和文本,值为ICON:只显示图标,值为TEXT:只显示文本} * @ignoreprops autoFocus | overflowMode * @ignoreemits infoTextChange | enter | change | blur | focus diff --git a/src/editor/stepper/ibiz-stepper/ibiz-stepper.tsx b/src/editor/stepper/ibiz-stepper/ibiz-stepper.tsx index 889734766c..186b8e0727 100644 --- a/src/editor/stepper/ibiz-stepper/ibiz-stepper.tsx +++ b/src/editor/stepper/ibiz-stepper/ibiz-stepper.tsx @@ -9,9 +9,9 @@ import { StepperEditorController } from '../stepper-editor.controller'; import './ibiz-stepper.scss'; /** - * 步进器 + * 移动端步进器 * - * @description 用于仅允许输入标准的数字值的场景。支持编辑器类型包含:`步进器` + * @description 用于仅允许输入标准的数字值的场景。支持编辑器类型包含:`移动端步进器` * @primary * @editorparams {name:stepValue,parameterType:number,defaultvalue:1,description:设置递增递减的步进控制} * @editorparams {name:precision,parameterType:number,defaultvalue:0,description:设置数值精度} diff --git a/src/editor/switch/ibiz-switch/ibiz-switch.tsx b/src/editor/switch/ibiz-switch/ibiz-switch.tsx index 8a787eb286..1609169d41 100644 --- a/src/editor/switch/ibiz-switch/ibiz-switch.tsx +++ b/src/editor/switch/ibiz-switch/ibiz-switch.tsx @@ -9,9 +9,9 @@ import './ibiz-switch.scss'; import { SwitchEditorController } from '../switch-editor.controller'; /** - * 开关 + * 移动端开关部件 * - * @description 表示两种相互对立的状态间的切换,多用于触发「开/关」。支持编辑器类型包含:`开关部件` + * @description 表示两种相互对立的状态间的切换,多用于触发「开/关」。支持编辑器类型包含:`移动端开关部件` * @primary * @ignoreprops overflowMode * @ignoreemits blur | focus | enter | infoTextChange diff --git a/src/editor/text-box/ibiz-input-number/ibiz-input-number.tsx b/src/editor/text-box/ibiz-input-number/ibiz-input-number.tsx index 2c8a8a58f3..555d4bd314 100644 --- a/src/editor/text-box/ibiz-input-number/ibiz-input-number.tsx +++ b/src/editor/text-box/ibiz-input-number/ibiz-input-number.tsx @@ -9,9 +9,9 @@ import { floor } from 'lodash-es'; import { TextBoxEditorController } from '../text-box-editor.controller'; /** - * 数值框 + * 移动端数值框 * - * @description 用于仅允许输入标准的数字值的场景。支持编辑器类型包含:`数值框` + * @description 用于仅允许输入标准的数字值的场景。支持编辑器类型包含:`移动端数值框` * @primary * @editorparams {name:precision,parameterType:number,description:设置数值精度} * @ignoreprops overflowMode diff --git a/src/editor/text-box/input/input.tsx b/src/editor/text-box/input/input.tsx index b61cccbbb2..1e960c52ed 100644 --- a/src/editor/text-box/input/input.tsx +++ b/src/editor/text-box/input/input.tsx @@ -10,9 +10,9 @@ import './input.scss'; import { TextBoxEditorController } from '../text-box-editor.controller'; /** - * 文本框 + * 移动端文本框 * - * @description 用于数据录入,通过鼠标或键盘输入字符。支持编辑器类型包含:`文本框`、`多行输入框`、`密码框` + * @description 用于数据录入,通过键盘输入字符。支持编辑器类型包含:`移动端文本框`、`移动端多行文本`、`移动端密码框` * @primary * @ignoreprops overflowMode * @ignoreemits infoTextChange diff --git a/src/editor/upload/ibiz-file-upload/ibiz-file-upload.tsx b/src/editor/upload/ibiz-file-upload/ibiz-file-upload.tsx index 78daea159d..d2f1e40255 100644 --- a/src/editor/upload/ibiz-file-upload/ibiz-file-upload.tsx +++ b/src/editor/upload/ibiz-file-upload/ibiz-file-upload.tsx @@ -9,9 +9,9 @@ import { useVanUpload } from '../use/use-van-upload'; import { UploadEditorController } from '../upload-editor.controller'; /** - * 文件上传组件 + * 移动端文件控件 * @primary - * @description 用于对文件进行上传,可限制上传文件类型与数量,并对已上传的文件进行回显。支持编辑器类型包含:文件控件(单项),文件控件。 + * @description 用于对文件进行上传,可限制上传文件类型与数量,并对已上传的文件进行回显。支持编辑器类型包含:`移动端文件控件(单项)`、`移动端文件控件(多项)` * @editorparams {name:multiple,parameterType:boolean,description:是否支持多选文件} * @editorparams {name:accept,parameterType:string,description:允许上传的文件类型} * @editorparams {name:uploadParams,parameterType:IData,description:上传参数} diff --git a/src/editor/upload/ibiz-image-cropping/ibiz-image-cropping.tsx b/src/editor/upload/ibiz-image-cropping/ibiz-image-cropping.tsx index d78feecb52..e403e4252a 100644 --- a/src/editor/upload/ibiz-image-cropping/ibiz-image-cropping.tsx +++ b/src/editor/upload/ibiz-image-cropping/ibiz-image-cropping.tsx @@ -11,9 +11,9 @@ import { useVanUpload } from '../use/use-van-upload'; import { UploadEditorController } from '../upload-editor.controller'; /** - * 图片裁剪上传 + * 图片裁剪上传(扩展) * @primary - * @description 用于对指定的图片进行裁剪,并根据裁剪内容生成新的图片后将其进行上传。支持编辑器类型包含:图片控件(单项)。 + * @description 用于对指定的图片进行裁剪,并根据裁剪内容生成新的图片后将其进行上传。 * @editorparams {name:multiple,parameterType:boolean,description:是否支持多选文件} * @editorparams {name:accept,parameterType:string,description:允许上传的文件类型} * @editorparams {name:STOPPROPAGATION,parameterType:boolean,description:是否阻止默认点击} diff --git a/src/editor/upload/ibiz-image-select/ibiz-image-select.tsx b/src/editor/upload/ibiz-image-select/ibiz-image-select.tsx index d6e5d4cbda..80e01d067f 100644 --- a/src/editor/upload/ibiz-image-select/ibiz-image-select.tsx +++ b/src/editor/upload/ibiz-image-select/ibiz-image-select.tsx @@ -11,9 +11,9 @@ import { UploadEditorController } from '../upload-editor.controller'; import { useVanUpload } from '../use/use-van-upload'; /** - * 图片选择 + * 移动端图片控件(单项、直接内容) * @primary - * @description 用于选择图片并可以进行预览。支持编辑器类型包含:图片控件,图片控件(单项)。 + * @description 用于选择图片并可以进行预览。支持编辑器类型包含:`移动端图片控件(单项、直接内容)`。 * @editorparams {name:STOPPROPAGATION,parameterType:boolean,description:是否阻止默认点击} * @editorparams {name:uploadParams,parameterType:IData,description:上传参数} * @editorparams {name:exportParams,parameterType:IData,description:下载参数} diff --git a/src/editor/upload/ibiz-image-upload/ibiz-image-upload.tsx b/src/editor/upload/ibiz-image-upload/ibiz-image-upload.tsx index 150bc7a3ae..6df3916dba 100644 --- a/src/editor/upload/ibiz-image-upload/ibiz-image-upload.tsx +++ b/src/editor/upload/ibiz-image-upload/ibiz-image-upload.tsx @@ -11,9 +11,9 @@ import { useVanUpload } from '../use/use-van-upload'; import { UploadEditorController } from '../upload-editor.controller'; /** - * 图片上传 + * 移动端图片控件 * @primary - * @description 用于对指定的图片文件类型进行上传。支持编辑器类型包含:图片控件,图片控件(单项)。 + * @description 用于对指定的图片文件类型进行上传。支持编辑器类型包含:`移动端图片控件(单项)`、`移动端图片控件(多项)`。 * @editorparams {name:multiple,parameterType:boolean,description:是否支持多选文件} * @editorparams {name:accept,parameterType:string,description:允许上传的文件类型} * @editorparams {name:STOPPROPAGATION,parameterType:boolean,description:是否阻止默认点击} diff --git a/src/panel-component/async-action/mob-async-action.tsx b/src/panel-component/async-action/mob-async-action.tsx index 30097b3911..2676fa03ba 100644 --- a/src/panel-component/async-action/mob-async-action.tsx +++ b/src/panel-component/async-action/mob-async-action.tsx @@ -6,7 +6,7 @@ import { AsyncActionTab } from './async-action-tab/async-action-tab'; import './mob-async-action.scss'; /** - * 移动端后台作业组件 + * 后台作业组件 * @primary * @description 用于在一些需要后台异步操作(如上传导入文件)的场景下,对异步操作过程和结果进行通知。 */ diff --git a/src/panel-component/wf-step-trace/wf-step-trace.tsx b/src/panel-component/wf-step-trace/wf-step-trace.tsx index 4168c563df..43dd6d7284 100644 --- a/src/panel-component/wf-step-trace/wf-step-trace.tsx +++ b/src/panel-component/wf-step-trace/wf-step-trace.tsx @@ -11,6 +11,9 @@ import './wf-step-trace.scss'; export const WFStepTrace = defineComponent({ name: 'IBizWFStepTrace', props: { + /** + * @description 流程跟踪组件控制器 + */ controller: { type: WFStepTraceController, required: true, -- Gitee