cnhis-design-vue 3.1.23-beta.14 → 3.1.23-beta.16
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/components/annotation-edit/index.js +10 -1
- package/es/components/big-table/index.d.ts +4 -6
- package/es/components/big-table/index.js +16 -2
- package/es/components/big-table/src/BigTable.vue.d.ts +20 -7
- package/es/components/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +13 -13
- package/es/components/big-table/src/bigTableEmits.js +53 -1
- package/es/components/big-table/src/bigTableProps.js +119 -1
- package/es/components/big-table/src/bigTableState.js +62 -1
- package/es/components/big-table/src/components/NoData.vue.d.ts +2 -4
- package/es/components/big-table/src/components/edit-form/edit-date.js +2 -2
- package/es/components/big-table/src/components/edit-form/edit-input.js +1 -1
- package/es/components/big-table/src/components/edit-form/edit-select.js +1 -1
- package/es/components/big-table/src/components/edit-form/edit-separate.js +1 -1
- package/es/components/big-table/src/components/edit-form/edit-separate.vue.d.ts +3 -5
- package/es/components/big-table/src/components/edit-form/edit-time.js +1 -1
- package/es/components/big-table/src/components/edit-form/useCommon.js +19 -1
- package/es/components/big-table/src/components/input-button.js +1 -2
- package/es/components/big-table/src/components/input-button.vue.d.ts +1 -1
- package/es/components/big-table/src/components/separate.js +1 -1
- package/es/components/big-table/src/components/separate.vue.d.ts +2 -4
- package/es/components/big-table/src/constants/index.js +3 -1
- package/es/components/big-table/src/hooks/export.js +1 -1
- package/es/components/big-table/src/hooks/index.js +8 -8
- package/es/components/big-table/src/hooks/useAnchor.js +49 -1
- package/es/components/big-table/src/hooks/useAnnotation.js +1 -1
- package/es/components/big-table/src/hooks/useBatchEditing.js +301 -1
- package/es/components/big-table/src/hooks/useColumnConfigAdaptor.js +158 -1
- package/es/components/big-table/src/hooks/useEdit.d.ts +3 -5
- package/es/components/big-table/src/hooks/useEdit.js +126 -1
- package/es/components/big-table/src/hooks/useEvent.js +81 -1
- package/es/components/big-table/src/hooks/useFormat.js +507 -1
- package/es/components/big-table/src/hooks/useNestTable.js +86 -1
- package/es/components/big-table/src/hooks/useSeparateRow.js +132 -1
- package/es/components/big-table/src/hooks/useTableParse.js +142 -1
- package/es/components/big-table/src/utils.js +608 -1
- package/es/components/big-table/style/index.css +1 -1
- package/es/components/bpmn-workflow/index.d.ts +2 -4
- package/es/components/bpmn-workflow/index.js +10 -1
- package/es/components/bpmn-workflow/src/BpmnWorkflow.js +34 -30
- package/es/components/bpmn-workflow/src/BpmnWorkflow.vue.d.ts +2 -4
- package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.js +65 -33
- package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.js +3 -1
- package/es/components/button-print/index.js +11 -2
- package/es/components/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +1 -1
- package/es/components/button-print/src/components/IdentityVerification.js +9 -7
- package/es/components/button-print/src/utils/index.js +1 -1
- package/es/components/button-print/src/utils/print.js +357 -1
- package/es/components/chunk-upload/index.d.ts +1 -1
- package/es/components/chunk-upload/index.js +14 -1
- package/es/components/chunk-upload/src/chunk-upload-new.js +11 -9
- package/es/components/chunk-upload/src/hooks/upload-computed.js +70 -1
- package/es/components/chunk-upload/src/hooks/upload-data.js +96 -1
- package/es/components/chunk-upload/src/hooks/vod-computed.js +79 -1
- package/es/components/chunk-upload/src/hooks/vod-data.js +28 -1
- package/es/components/chunk-upload/src/vod-chunk-upload/index.js +1 -0
- package/es/components/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.js +20 -18
- package/es/components/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +1 -1
- package/es/components/drag-layout/index.d.ts +1 -1
- package/es/components/drag-layout/index.js +11 -1
- package/es/components/drag-layout/src/DragFormLeftItem.js +10 -12
- package/es/components/drag-layout/src/DragFormLeftItem.vue.d.ts +1 -1
- package/es/components/drag-layout/src/DragFormRightItem.js +19 -21
- package/es/components/drag-layout/src/DragLayout.js +19 -17
- package/es/components/drag-layout/src/DragLayout.vue.d.ts +1 -1
- package/es/components/editor/index.js +10 -1
- package/es/components/fabric-chart/index.d.ts +1 -1
- package/es/components/fabric-chart/index.js +10 -1
- package/es/components/fabric-chart/src/FabricChart.js +30 -11
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +1 -1
- package/es/components/fabric-chart/src/components/PopupMenu.js +1 -1
- package/es/components/fabric-chart/src/components/PopupTip.js +1 -1
- package/es/components/fabric-chart/src/components/PopupTip.vue.d.ts +1 -1
- package/es/components/fabric-chart/src/components/useStyle.js +36 -1
- package/es/components/fabric-chart/src/hooks/constant.js +78 -1
- package/es/components/fabric-chart/src/hooks/index.js +9 -9
- package/es/components/fabric-chart/src/hooks/useBottom.js +97 -1
- package/es/components/fabric-chart/src/hooks/useCenter.js +588 -1
- package/es/components/fabric-chart/src/hooks/useCumputedPoint.js +60 -1
- package/es/components/fabric-chart/src/hooks/useDraw.js +182 -1
- package/es/components/fabric-chart/src/hooks/useEvent.js +161 -1
- package/es/components/fabric-chart/src/hooks/useGrid.js +50 -1
- package/es/components/fabric-chart/src/hooks/useLeft.js +331 -1
- package/es/components/fabric-chart/src/hooks/useOther.js +100 -1
- package/es/components/fabric-chart/src/hooks/useRight.js +27 -1
- package/es/components/fabric-chart/src/hooks/useShadow.js +132 -1
- package/es/components/fabric-chart/src/hooks/useTop.js +160 -1
- package/es/components/fabric-chart/src/interface.js +4 -1
- package/es/components/fabric-chart/src/utils/index.js +9713 -9169
- package/es/components/field-set/index.js +10 -1
- package/es/components/field-set/src/FieldSet.js +58 -62
- package/es/components/form-config/index.d.ts +16 -23
- package/es/components/form-config/index.js +10 -1
- package/es/components/form-config/src/FormConfig.js +10 -11
- package/es/components/form-config/src/FormConfig.vue.d.ts +16 -23
- package/es/components/form-config/src/components/FormConfigCreator.js +6 -8
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +1 -1
- package/es/components/form-config/src/components/FormConfigDragDisplay.js +2 -2
- package/es/components/form-config/src/components/FormConfigDragDisplay.vue.d.ts +1 -1
- package/es/components/form-config/src/components/FormConfigEdit.js +24 -20
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +12 -17
- package/es/components/form-config/src/components/renderer/CloseButton.js +1 -1
- package/es/components/form-config/src/components/renderer/CloseButton.vue.d.ts +2 -4
- package/es/components/form-config/src/components/renderer/ComplexNode.js +2 -2
- package/es/components/form-config/src/components/renderer/ComplexNode.vue.d.ts +5 -9
- package/es/components/form-config/src/components/renderer/DefaultNode.js +2 -2
- package/es/components/form-config/src/components/renderer/DefaultNode.vue.d.ts +4 -8
- package/es/components/form-config/src/constants/index.js +60 -1
- package/es/components/form-config/src/hooks/index.js +2 -2
- package/es/components/form-config/src/hooks/useConfigurationField.js +54 -1
- package/es/components/form-config/src/hooks/useSortalbeConfig.js +27 -1
- package/es/components/form-config/src/utils/index.js +26 -1
- package/es/components/form-render/index.js +23 -14
- package/es/components/form-render/src/FormRender.js +21 -14
- package/es/components/form-render/src/components/renderer/checkbox.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/checkbox.js +1 -1
- package/es/components/form-render/src/components/renderer/combination.js +4 -4
- package/es/components/form-render/src/components/renderer/complex.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/complex.js +1 -1
- package/es/components/form-render/src/components/renderer/date.js +3 -3
- package/es/components/form-render/src/components/renderer/formItem.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/formItem.js +3 -3
- package/es/components/form-render/src/components/renderer/index.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/index.js +2 -2
- package/es/components/form-render/src/components/renderer/input.js +9 -3
- package/es/components/form-render/src/components/renderer/inputGroup.js +11 -1
- package/es/components/form-render/src/components/renderer/inputNumber.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/inputNumber.js +2 -2
- package/es/components/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate.js +35 -1
- package/es/components/form-render/src/components/renderer/jsonCombination/index.js +2 -2
- package/es/components/form-render/src/components/renderer/labelSelect.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/levelSearchCascade.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/levelSearchCascade.js +52 -35
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.js +57 -0
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +54 -0
- package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +53 -0
- package/es/components/form-render/src/components/renderer/lineBar/index.js +11 -0
- package/es/components/form-render/src/components/renderer/radio.js +1 -1
- package/es/components/form-render/src/components/renderer/search.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/search.js +16 -11
- package/es/components/form-render/src/components/renderer/searchCascade.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/searchCascade.js +18 -12
- package/es/components/form-render/src/components/renderer/select.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/select.js +15 -10
- package/es/components/form-render/src/components/renderer/slider.js +1 -1
- package/es/components/form-render/src/components/renderer/switch.d.ts +1 -1
- package/es/components/form-render/src/components/renderer/switch.js +1 -1
- package/es/components/form-render/src/components/renderer/textarea.js +2 -2
- package/es/components/form-render/src/constants/index.js +45 -1
- package/es/components/form-render/src/hooks/index.js +13 -13
- package/es/components/form-render/src/hooks/useAnchor.js +99 -1
- package/es/components/form-render/src/hooks/useAsyncQueue.js +151 -1
- package/es/components/form-render/src/hooks/useBusinessBinding.js +107 -1
- package/es/components/form-render/src/hooks/useChangeContext.js +20 -1
- package/es/components/form-render/src/hooks/useCommonInjection.js +36 -1
- package/es/components/form-render/src/hooks/useCommonLog.js +12 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +287 -1
- package/es/components/form-render/src/hooks/useFieldNormalize.js +65 -1
- package/es/components/form-render/src/hooks/useFieldVisitor.js +46 -1
- package/es/components/form-render/src/hooks/useFormContext.js +68 -1
- package/es/components/form-render/src/hooks/useFormField.js +13 -1
- package/es/components/form-render/src/hooks/useFormItemDeps.js +31 -1
- package/es/components/form-render/src/hooks/useFormRenderLifeCycle.js +10 -1
- package/es/components/form-render/src/hooks/useFormRequest.js +19 -1
- package/es/components/form-render/src/hooks/useFormValidator.js +68 -1
- package/es/components/form-render/src/hooks/useNuiThemeOverrides.js +18 -1
- package/es/components/form-render/src/hooks/usePresetScope.js +22 -1
- package/es/components/form-render/src/types/fieldItem.d.ts +5 -1
- package/es/components/form-render/src/types/index.d.ts +1 -0
- package/es/components/form-render/src/utils/business.js +78 -1
- package/es/components/form-render/src/utils/dom.js +14 -1
- package/es/components/form-render/src/utils/index.d.ts +2 -2
- package/es/components/form-render/src/utils/index.js +6 -6
- package/es/components/form-render/src/utils/schema.js +105 -1
- package/es/components/form-render/style/index.css +1 -1
- package/es/components/grid/index.d.ts +1 -1
- package/es/components/grid/index.js +11 -1
- package/es/components/grid/src/Grid.d.ts +1 -1
- package/es/components/grid/src/Grid.js +1 -1
- package/es/components/grid/src/hooks.js +167 -1
- package/es/components/iho-table/index.d.ts +1 -1
- package/es/components/iho-table/index.js +34 -3
- package/es/components/iho-table/src/IhoTable.js +21 -13
- package/es/components/iho-table/src/IhoTable.vue.d.ts +1 -1
- package/es/components/iho-table/src/components/IhoTableColumn.d.ts +1 -1
- package/es/components/iho-table/src/constants/index.js +123 -1
- package/es/components/iho-table/src/hooks/index.js +2 -2
- package/es/components/iho-table/src/hooks/tapHooks/index.js +140 -1
- package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.js +67 -1
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.js +26 -1
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.js +252 -1
- package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.js +33 -1
- package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks.js +27 -1
- package/es/components/iho-table/src/hooks/useTablePlugin.js +20 -1
- package/es/components/iho-table/src/plugins/defaultConfigPlugin/index.js +33 -1
- package/es/components/iho-table/src/plugins/index.js +4 -4
- package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.js +36 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.d.ts +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/index.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useCommon.js +17 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/inputRendererPlugin.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.d.ts +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.js +2 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +4 -4
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils.js +20 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +6 -6
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separateUtils.js +57 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/editTime.d.ts +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/editTime.js +2 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/index.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.js +2 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/colorRendererPlugin.js +4 -4
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/defaultRendererPlugin.js +4 -4
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/labelRendererPlugin.js +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.js +5 -5
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.js +3 -3
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index.js +30 -1
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils.js +50 -1
- package/es/components/iho-table/src/plugins/virtualTreePlugin/index.js +89 -1
- package/es/components/iho-table/src/types/index.js +1 -1
- package/es/components/iho-table/src/types/pluginType.js +12 -1
- package/es/components/iho-table/src/utils/index.js +23 -1
- package/es/components/index.css +1 -1
- package/es/components/index.js +98 -41
- package/es/components/info-header/index.d.ts +5 -7
- package/es/components/info-header/index.js +10 -1
- package/es/components/info-header/src/HiddenContent.vue.d.ts +3 -5
- package/es/components/info-header/src/InfoEllipsis.vue.d.ts +1 -1
- package/es/components/info-header/src/InfoHeader.js +21 -16
- package/es/components/info-header/src/InfoHeader.vue.d.ts +5 -7
- package/es/components/map/index.js +10 -1
- package/es/components/map/src/Map.js +10 -12
- package/es/components/scale-view/index.d.ts +7 -11
- package/es/components/scale-view/index.js +35 -1
- package/es/components/scale-view/src/ScaleView.js +51 -42
- package/es/components/scale-view/src/ScaleView.vue.d.ts +7 -11
- package/es/components/scale-view/src/components/AnswerParse.vue.d.ts +3 -5
- package/es/components/scale-view/src/components/EvaluateCountdown.js +16 -8
- package/es/components/scale-view/src/components/EvaluateCountdown.vue.d.ts +1 -1
- package/es/components/scale-view/src/components/EvaluatePage.js +1 -1
- package/es/components/scale-view/src/components/NoData.vue.d.ts +2 -4
- package/es/components/scale-view/src/components/composables/choose-common.js +83 -1
- package/es/components/scale-view/src/components/formitem/address.js +3993 -1
- package/es/components/scale-view/src/components/formitem/r-address.js +1 -1
- package/es/components/scale-view/src/components/formitem/r-checkbox.js +1 -1
- package/es/components/scale-view/src/components/formitem/r-map.js +1 -1
- package/es/components/scale-view/src/components/formitem/r-radio.js +1 -1
- package/es/components/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +1 -1
- package/es/components/scale-view/src/hooks/scaleview-computed.js +309 -1
- package/es/components/scale-view/src/hooks/scaleview-init.js +437 -1
- package/es/components/scale-view/src/hooks/scaleview-props.js +81 -1
- package/es/components/scale-view/src/hooks/scaleview-state.js +38 -1
- package/es/components/scale-view/src/hooks/scaleview-submit.js +154 -1
- package/es/components/scale-view/src/hooks/scaleview-validate.js +187 -1
- package/es/components/scale-view/src/hooks/use-component.d.ts +2 -2
- package/es/components/scale-view/src/hooks/use-component.js +82 -1
- package/es/components/scale-view/src/hooks/use-evaluate.js +150 -1
- package/es/components/scale-view/src/hooks/use-event.js +129 -1
- package/es/components/scale-view/src/hooks/use-noData.js +41 -1
- package/es/components/scale-view/src/utils/judge-types.js +36 -1
- package/es/components/search-cascader/index.d.ts +1 -1
- package/es/components/search-cascader/index.js +10 -1
- package/es/components/search-cascader/src/SearchCascader.js +10 -7
- package/es/components/search-cascader/src/SearchCascader.vue.d.ts +1 -1
- package/es/components/search-cascader/src/components/SearchMenu.d.ts +1 -1
- package/es/components/search-cascader/src/components/SearchMenu.js +2 -2
- package/es/components/search-cascader/src/constants/index.js +5 -1
- package/es/components/search-cascader/src/hooks/index.js +1 -1
- package/es/components/search-cascader/src/hooks/useCssVariable.js +7 -1
- package/es/components/search-cascader/src/utils/index.js +11 -1
- package/es/components/select-label/index.d.ts +2 -2
- package/es/components/select-label/index.js +15 -1
- package/es/components/select-label/src/LabelFormContent.js +10 -6
- package/es/components/select-label/src/LabelFormContent.vue.d.ts +1 -1
- package/es/components/select-label/src/SelectLabel.vue.d.ts +1 -1
- package/es/components/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.js +7 -8
- package/es/components/select-label/src/components/label-classify.js +8 -5
- package/es/components/select-label/src/components/label-classify.vue.d.ts +1 -1
- package/es/components/select-person/index.js +10 -1
- package/es/components/select-person/src/SelectPerson.vue.d.ts +3 -1
- package/es/components/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.js +7 -9
- package/es/components/select-person/src/utils/index.js +84 -1
- package/es/components/shortcut-provider/index.d.ts +2 -4
- package/es/components/shortcut-provider/index.js +12 -3
- package/es/components/shortcut-provider/src/ShortcutProvider.js +4 -4
- package/es/components/shortcut-provider/src/ShortcutProvider.vue.d.ts +2 -4
- package/es/components/shortcut-provider/src/constants/index.js +8 -1
- package/es/components/shortcut-provider/src/hooks/index.js +2 -2
- package/es/components/shortcut-provider/src/hooks/useShortcutSignature.js +12 -1
- package/es/components/shortcut-provider/src/hooks/useShortcuts.js +185 -1
- package/es/components/shortcut-provider/src/utils/index.js +59 -1
- package/es/components/shortcut-setter/index.d.ts +11 -16
- package/es/components/shortcut-setter/index.js +10 -1
- package/es/components/shortcut-setter/src/ShortcutSetter.js +4 -4
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +11 -16
- package/es/components/shortcut-setter/src/ShortcutSetterItem.js +1 -1
- package/es/components/steps-wheel/index.d.ts +2 -4
- package/es/components/steps-wheel/index.js +10 -1
- package/es/components/steps-wheel/src/StepsWheel.js +10 -6
- package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +2 -4
- package/es/components/time-line/index.d.ts +1 -1
- package/es/components/time-line/index.js +10 -1
- package/es/components/time-line/src/TimeLine.vue.d.ts +1 -1
- package/es/shared/components/SelectPage/SelectPage.js +2 -4
- package/es/shared/components/SelectPage/SelectPage.vue.d.ts +2 -4
- package/es/shared/components/SelectPage/index.js +1 -0
- package/es/shared/components/SlotRender/SlotRender.d.ts +1 -1
- package/es/shared/components/SlotRender/index.js +1 -0
- package/es/shared/components/SvgIcon/SvgIcon.vue.d.ts +1 -1
- package/es/shared/components/SvgIcon/index.js +1 -0
- package/es/shared/components/TextOverTooltip/TextOverTooltip.vue.d.ts +1 -1
- package/es/shared/components/TextOverTooltip/index.js +1 -0
- package/es/shared/components/no-data/NoData.vue.d.ts +2 -4
- package/es/shared/components/no-data/index.js +1 -0
- package/es/shared/components/player-vod/index.vue.d.ts +1 -1
- package/es/shared/components/player-vod/player.d.ts +1 -1
- package/es/shared/components/player-vod/video-list.d.ts +1 -1
- package/es/shared/components/player-vod/video-modal.d.ts +1 -1
- package/es/shared/global/variable.js +3 -1
- package/es/shared/utils/anime.js +129 -1
- package/es/shared/utils/clickoutside.js +52 -1
- package/es/shared/utils/colorLog.js +53 -1
- package/es/shared/utils/index.js +98 -1
- package/es/shared/utils/loadViewer.js +11 -1
- package/es/shared/utils/state.js +44 -1
- package/es/shared/utils/tapable/HookCodeFactory.js +80 -67
- package/es/shared/utils/utilExpand.js +46 -46
- package/package.json +68 -68
- package/es/components/annotation-edit/index2.js +0 -10
- package/es/components/big-table/index2.js +0 -17
- package/es/components/big-table/src/bigTableEmits2.js +0 -53
- package/es/components/big-table/src/bigTableProps2.js +0 -119
- package/es/components/big-table/src/bigTableState2.js +0 -62
- package/es/components/big-table/src/components/edit-form/useCommon2.js +0 -19
- package/es/components/big-table/src/constants/index2.js +0 -3
- package/es/components/big-table/src/hooks/useAnchor2.js +0 -49
- package/es/components/big-table/src/hooks/useBatchEditing2.js +0 -289
- package/es/components/big-table/src/hooks/useColumnConfigAdaptor2.js +0 -154
- package/es/components/big-table/src/hooks/useEdit2.js +0 -126
- package/es/components/big-table/src/hooks/useEvent2.js +0 -81
- package/es/components/big-table/src/hooks/useFormat2.js +0 -501
- package/es/components/big-table/src/hooks/useNestTable2.js +0 -86
- package/es/components/big-table/src/hooks/useSeparateRow2.js +0 -125
- package/es/components/big-table/src/hooks/useTableParse2.js +0 -136
- package/es/components/big-table/src/utils2.js +0 -603
- package/es/components/bpmn-workflow/index2.js +0 -10
- package/es/components/button-print/index2.js +0 -11
- package/es/components/button-print/src/utils/print2.js +0 -349
- package/es/components/chunk-upload/index2.js +0 -14
- package/es/components/chunk-upload/src/hooks/upload-computed2.js +0 -70
- package/es/components/chunk-upload/src/hooks/upload-data2.js +0 -96
- package/es/components/chunk-upload/src/hooks/vod-computed2.js +0 -79
- package/es/components/chunk-upload/src/hooks/vod-data2.js +0 -28
- package/es/components/chunk-upload/src/vod-chunk-upload/index2.js +0 -2
- package/es/components/drag-layout/index2.js +0 -11
- package/es/components/editor/index2.js +0 -10
- package/es/components/fabric-chart/index2.js +0 -10
- package/es/components/fabric-chart/src/components/useStyle2.js +0 -36
- package/es/components/fabric-chart/src/hooks/constant2.js +0 -78
- package/es/components/fabric-chart/src/hooks/useBottom2.js +0 -85
- package/es/components/fabric-chart/src/hooks/useCenter2.js +0 -583
- package/es/components/fabric-chart/src/hooks/useCumputedPoint2.js +0 -60
- package/es/components/fabric-chart/src/hooks/useDraw2.js +0 -182
- package/es/components/fabric-chart/src/hooks/useEvent2.js +0 -136
- package/es/components/fabric-chart/src/hooks/useGrid2.js +0 -50
- package/es/components/fabric-chart/src/hooks/useLeft2.js +0 -321
- package/es/components/fabric-chart/src/hooks/useOther2.js +0 -100
- package/es/components/fabric-chart/src/hooks/useRight2.js +0 -27
- package/es/components/fabric-chart/src/hooks/useShadow2.js +0 -127
- package/es/components/fabric-chart/src/hooks/useTop2.js +0 -140
- package/es/components/fabric-chart/src/interface2.js +0 -4
- package/es/components/field-set/index2.js +0 -10
- package/es/components/form-config/index2.js +0 -10
- package/es/components/form-config/src/constants/index2.js +0 -60
- package/es/components/form-config/src/hooks/useConfigurationField2.js +0 -52
- package/es/components/form-config/src/hooks/useSortalbeConfig2.js +0 -27
- package/es/components/form-config/src/utils/index2.js +0 -26
- package/es/components/form-render/index2.js +0 -47
- package/es/components/form-render/src/components/renderer/index2.js +0 -20
- package/es/components/form-render/src/components/renderer/inputGroup2.js +0 -8
- package/es/components/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate2.js +0 -33
- package/es/components/form-render/src/components/renderer/linebar.d.ts +0 -31
- package/es/components/form-render/src/components/renderer/linebar.js +0 -61
- package/es/components/form-render/src/constants/index2.js +0 -41
- package/es/components/form-render/src/hooks/useAnchor2.js +0 -88
- package/es/components/form-render/src/hooks/useAsyncQueue2.js +0 -144
- package/es/components/form-render/src/hooks/useBusinessBinding2.js +0 -107
- package/es/components/form-render/src/hooks/useChangeContext2.js +0 -20
- package/es/components/form-render/src/hooks/useCommonInjection2.js +0 -36
- package/es/components/form-render/src/hooks/useCommonLog2.js +0 -10
- package/es/components/form-render/src/hooks/useFieldListAdaptor2.js +0 -282
- package/es/components/form-render/src/hooks/useFieldNormalize2.js +0 -65
- package/es/components/form-render/src/hooks/useFieldVisitor2.js +0 -46
- package/es/components/form-render/src/hooks/useFormContext2.js +0 -59
- package/es/components/form-render/src/hooks/useFormField2.js +0 -13
- package/es/components/form-render/src/hooks/useFormItemDeps2.js +0 -31
- package/es/components/form-render/src/hooks/useFormRenderLifeCycle2.js +0 -10
- package/es/components/form-render/src/hooks/useFormRequest2.js +0 -19
- package/es/components/form-render/src/hooks/useFormValidator2.js +0 -68
- package/es/components/form-render/src/hooks/useNuiThemeOverrides2.js +0 -18
- package/es/components/form-render/src/hooks/usePresetScope2.js +0 -22
- package/es/components/form-render/src/utils/business2.js +0 -78
- package/es/components/form-render/src/utils/dom2.js +0 -14
- package/es/components/form-render/src/utils/schema2.js +0 -105
- package/es/components/grid/index2.js +0 -11
- package/es/components/grid/src/hooks2.js +0 -167
- package/es/components/iho-table/index2.js +0 -30
- package/es/components/iho-table/src/constants/index2.js +0 -123
- package/es/components/iho-table/src/hooks/tapHooks/index2.js +0 -132
- package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks2.js +0 -67
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks2.js +0 -26
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks2.js +0 -248
- package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks2.js +0 -33
- package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks2.js +0 -27
- package/es/components/iho-table/src/hooks/useTablePlugin2.js +0 -20
- package/es/components/iho-table/src/plugins/defaultConfigPlugin/index2.js +0 -30
- package/es/components/iho-table/src/plugins/index2.js +0 -15
- package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index2.js +0 -36
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useCommon2.js +0 -17
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils2.js +0 -20
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separateUtils2.js +0 -54
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index2.js +0 -27
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils2.js +0 -50
- package/es/components/iho-table/src/plugins/virtualTreePlugin/index2.js +0 -84
- package/es/components/iho-table/src/types/pluginType2.js +0 -12
- package/es/components/iho-table/src/utils/index2.js +0 -23
- package/es/components/index2.js +0 -79
- package/es/components/info-header/index2.js +0 -10
- package/es/components/map/index2.js +0 -10
- package/es/components/scale-view/index2.js +0 -35
- package/es/components/scale-view/src/components/composables/choose-common2.js +0 -83
- package/es/components/scale-view/src/components/formitem/address2.js +0 -3993
- package/es/components/scale-view/src/hooks/scaleview-computed2.js +0 -309
- package/es/components/scale-view/src/hooks/scaleview-init2.js +0 -437
- package/es/components/scale-view/src/hooks/scaleview-props2.js +0 -81
- package/es/components/scale-view/src/hooks/scaleview-state2.js +0 -38
- package/es/components/scale-view/src/hooks/scaleview-submit2.js +0 -154
- package/es/components/scale-view/src/hooks/scaleview-validate2.js +0 -187
- package/es/components/scale-view/src/hooks/use-component2.js +0 -82
- package/es/components/scale-view/src/hooks/use-evaluate2.js +0 -150
- package/es/components/scale-view/src/hooks/use-event2.js +0 -129
- package/es/components/scale-view/src/hooks/use-noData2.js +0 -41
- package/es/components/scale-view/src/utils/judge-types2.js +0 -36
- package/es/components/search-cascader/index2.js +0 -10
- package/es/components/search-cascader/src/constants/index2.js +0 -3
- package/es/components/search-cascader/src/hooks/useCssVariable2.js +0 -7
- package/es/components/search-cascader/src/utils/index2.js +0 -11
- package/es/components/select-label/index2.js +0 -15
- package/es/components/select-person/index2.js +0 -10
- package/es/components/select-person/src/utils/index2.js +0 -84
- package/es/components/shortcut-provider/index2.js +0 -13
- package/es/components/shortcut-provider/src/constants/index2.js +0 -8
- package/es/components/shortcut-provider/src/hooks/useShortcutSignature2.js +0 -12
- package/es/components/shortcut-provider/src/hooks/useShortcuts2.js +0 -183
- package/es/components/shortcut-provider/src/utils/index2.js +0 -59
- package/es/components/shortcut-setter/index2.js +0 -10
- package/es/components/steps-wheel/index2.js +0 -10
- package/es/components/time-line/index2.js +0 -10
- package/es/shared/components/SelectPage/index2.js +0 -2
- package/es/shared/components/SlotRender/index2.js +0 -2
- package/es/shared/components/SvgIcon/index2.js +0 -2
- package/es/shared/components/TextOverTooltip/index2.js +0 -2
- package/es/shared/components/no-data/index2.js +0 -2
- package/es/shared/global/variable2.js +0 -3
- package/es/shared/utils/anime2.js +0 -129
- package/es/shared/utils/clickoutside2.js +0 -48
- package/es/shared/utils/colorLog2.js +0 -44
- package/es/shared/utils/index2.js +0 -98
- package/es/shared/utils/loadViewer2.js +0 -11
- package/es/shared/utils/state2.js +0 -44
|
@@ -1 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
import { arrayed } from '../../../../shared/utils/index.js';
|
|
2
|
+
import { isFunction } from 'lodash-es';
|
|
3
|
+
import { createTableHooks } from './tapHooks/index.js';
|
|
4
|
+
|
|
5
|
+
function useTablePlugin() {
|
|
6
|
+
const hooks = createTableHooks();
|
|
7
|
+
function use(plugin, instance) {
|
|
8
|
+
arrayed(plugin).forEach(({ vxe, apply }) => {
|
|
9
|
+
isFunction(vxe) && vxe(instance);
|
|
10
|
+
isFunction(apply) && apply(hooks);
|
|
11
|
+
});
|
|
12
|
+
return { use };
|
|
13
|
+
}
|
|
14
|
+
return { use };
|
|
15
|
+
}
|
|
16
|
+
function defineTablePlugin(plugin) {
|
|
17
|
+
return plugin;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { defineTablePlugin, useTablePlugin };
|
|
@@ -1 +1,33 @@
|
|
|
1
|
-
|
|
1
|
+
import { mergeWith } from 'lodash-es';
|
|
2
|
+
import { HIGHEST_PRIORITY } from '../../constants/index.js';
|
|
3
|
+
import { defineTablePlugin } from '../../hooks/useTablePlugin.js';
|
|
4
|
+
|
|
5
|
+
function defaultConfigPlugin() {
|
|
6
|
+
const pluginName = "defaultTablePlugin";
|
|
7
|
+
return defineTablePlugin({
|
|
8
|
+
name: pluginName,
|
|
9
|
+
apply(hooks) {
|
|
10
|
+
hooks.configHooks.config.tap({ name: pluginName, stage: HIGHEST_PRIORITY }, (config) => {
|
|
11
|
+
return mergeWith(
|
|
12
|
+
{
|
|
13
|
+
height: "100%",
|
|
14
|
+
border: true,
|
|
15
|
+
showSeq: true,
|
|
16
|
+
selectType: "checkbox",
|
|
17
|
+
columnConfig: { resizable: true },
|
|
18
|
+
rowConfig: { height: 48, isHover: true, isCurrent: true, keyField: "theUniqueKey" },
|
|
19
|
+
editConfig: {
|
|
20
|
+
trigger: "click",
|
|
21
|
+
mode: "cell",
|
|
22
|
+
autoClear: false,
|
|
23
|
+
showIcon: false
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
config
|
|
27
|
+
);
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export { defaultConfigPlugin };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { defaultConfigPlugin } from './defaultConfigPlugin/
|
|
2
|
-
export { lowCodeFieldAdaptorPlugin } from './lowCodeFieldAdaptorPlugin/
|
|
1
|
+
export { defaultConfigPlugin } from './defaultConfigPlugin/index.js';
|
|
2
|
+
export { lowCodeFieldAdaptorPlugin } from './lowCodeFieldAdaptorPlugin/index.js';
|
|
3
3
|
export { labelRendererPlugin } from './rendererPlugins/widgets/labelRendererPlugin.js';
|
|
4
4
|
export { defaultRendererPlugin } from './rendererPlugins/widgets/defaultRendererPlugin.js';
|
|
5
5
|
export { colorRendererPlugin } from './rendererPlugins/widgets/colorRendererPlugin.js';
|
|
@@ -11,5 +11,5 @@ export { separateRendererPlugins } from './rendererPlugins/editableWidgets/separ
|
|
|
11
11
|
export { selectRendererPlugin } from './rendererPlugins/editableWidgets/selectRendererPlugin/index.js';
|
|
12
12
|
export { dateRendererPlugin } from './rendererPlugins/editableWidgets/dateRendererPlugin/index.js';
|
|
13
13
|
export { timeRendererPlugin } from './rendererPlugins/editableWidgets/timeRendererPlugin/index.js';
|
|
14
|
-
export { rowGroupSettingPlugin } from './rowGroupSettingPlugin/
|
|
15
|
-
export { virtualTreePlugin } from './virtualTreePlugin/
|
|
14
|
+
export { rowGroupSettingPlugin } from './rowGroupSettingPlugin/index.js';
|
|
15
|
+
export { virtualTreePlugin } from './virtualTreePlugin/index.js';
|
|
@@ -1 +1,36 @@
|
|
|
1
|
-
|
|
1
|
+
import { pick, cloneDeep } from 'lodash-es';
|
|
2
|
+
import { toRaw } from 'vue';
|
|
3
|
+
import { HIGHEST_PRIORITY, WIDGET_TYPE } from '../../constants/index.js';
|
|
4
|
+
import { defineTablePlugin } from '../../hooks/useTablePlugin.js';
|
|
5
|
+
|
|
6
|
+
function lowCodeFieldAdaptorPlugin() {
|
|
7
|
+
const pluginName = "lowCodeFieldAdaptorPlugin";
|
|
8
|
+
return defineTablePlugin({
|
|
9
|
+
name: pluginName,
|
|
10
|
+
apply(hooks) {
|
|
11
|
+
hooks.fieldHooks.field.tap({ name: pluginName, stage: HIGHEST_PRIORITY }, (field) => {
|
|
12
|
+
const _field = field;
|
|
13
|
+
const result = {
|
|
14
|
+
field: _field.columnName,
|
|
15
|
+
width: _field.colWidth,
|
|
16
|
+
showOverflow: "tooltip",
|
|
17
|
+
...pick(_field, ["title", "treeNode"])
|
|
18
|
+
};
|
|
19
|
+
settingObjAdaptor(result, _field);
|
|
20
|
+
return result;
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
function settingObjAdaptor(fieldItem, lowCodeField) {
|
|
26
|
+
if (!lowCodeField.settingObj)
|
|
27
|
+
return;
|
|
28
|
+
fieldItem.editRender = {
|
|
29
|
+
name: lowCodeField.settingObj.attr || "DEFAULT",
|
|
30
|
+
props: cloneDeep(toRaw(lowCodeField))
|
|
31
|
+
};
|
|
32
|
+
fieldItem.editRender.enabled = !Reflect.get(WIDGET_TYPE, fieldItem.editRender.name);
|
|
33
|
+
fieldItem.visible = lowCodeField.settingObj.isHide !== "1";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export { lowCodeFieldAdaptorPlugin };
|
|
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
14
|
type: NumberConstructor;
|
|
15
15
|
required: true;
|
|
16
16
|
};
|
|
17
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
17
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
18
|
column: {
|
|
19
19
|
type: PropType<IhoTableFieldItem>;
|
|
20
20
|
required: true;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { defineComponent, inject, ref, computed, watch, createVNode, mergeProps } from 'vue';
|
|
2
|
-
import { generateTimeFormat } from '../../../../../../../shared/utils/
|
|
2
|
+
import { generateTimeFormat } from '../../../../../../../shared/utils/index.js';
|
|
3
3
|
import { isFunction, isNaN } from 'lodash-es';
|
|
4
4
|
import { NDatePicker, NPopover, NInput } from 'naive-ui';
|
|
5
|
-
import { InjectionIhoTableEmits } from '../../../../constants/
|
|
6
|
-
import { useCommon } from '../hooks/
|
|
5
|
+
import { InjectionIhoTableEmits } from '../../../../constants/index.js';
|
|
6
|
+
import { useCommon } from '../hooks/useCommon.js';
|
|
7
7
|
|
|
8
8
|
var EditDate = defineComponent({
|
|
9
9
|
name: "EditDate",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { createVNode, mergeProps } from 'vue';
|
|
2
|
-
import '../../../../../
|
|
3
|
-
import { EDITABLE_WIDGET_TYPE } from '../../../../constants/
|
|
2
|
+
import '../../../../../index.js';
|
|
3
|
+
import { EDITABLE_WIDGET_TYPE } from '../../../../constants/index.js';
|
|
4
4
|
import EditDate from './editDate.js';
|
|
5
|
-
import { defineTablePlugin } from '../../../../hooks/
|
|
5
|
+
import { defineTablePlugin } from '../../../../hooks/useTablePlugin.js';
|
|
6
6
|
|
|
7
7
|
function dateRendererPlugin() {
|
|
8
8
|
const pluginName = "dateRendererPlugin";
|
package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useCommon.js
CHANGED
|
@@ -1 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
import { ref, onMounted } from 'vue';
|
|
2
|
+
|
|
3
|
+
const useCommon = () => {
|
|
4
|
+
const formRef = ref(null);
|
|
5
|
+
const isShow = ref(false);
|
|
6
|
+
onMounted(() => {
|
|
7
|
+
var _a;
|
|
8
|
+
(_a = formRef.value) == null ? void 0 : _a.focus();
|
|
9
|
+
isShow.value = true;
|
|
10
|
+
});
|
|
11
|
+
return {
|
|
12
|
+
formRef,
|
|
13
|
+
isShow
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export { useCommon };
|
package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/inputRendererPlugin.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { createVNode, inject } from 'vue';
|
|
2
2
|
import { NInput } from 'naive-ui';
|
|
3
|
-
import '../../../../
|
|
4
|
-
import { EDITABLE_WIDGET_TYPE, InjectionIhoTableEmits } from '../../../constants/
|
|
5
|
-
import { defineTablePlugin } from '../../../hooks/
|
|
3
|
+
import '../../../../index.js';
|
|
4
|
+
import { EDITABLE_WIDGET_TYPE, InjectionIhoTableEmits } from '../../../constants/index.js';
|
|
5
|
+
import { defineTablePlugin } from '../../../hooks/useTablePlugin.js';
|
|
6
6
|
|
|
7
7
|
function inputRendererPlugin() {
|
|
8
8
|
const pluginName = "inputRendererPlugins";
|
|
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
14
|
type: NumberConstructor;
|
|
15
15
|
required: true;
|
|
16
16
|
};
|
|
17
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
17
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
18
|
column: {
|
|
19
19
|
type: PropType<IhoTableFieldItem>;
|
|
20
20
|
required: true;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent, inject, createVNode, mergeProps } from 'vue';
|
|
2
2
|
import { NSelect } from 'naive-ui';
|
|
3
|
-
import { InjectionIhoTableEmits } from '../../../../constants/
|
|
4
|
-
import { useCommon } from '../hooks/
|
|
3
|
+
import { InjectionIhoTableEmits } from '../../../../constants/index.js';
|
|
4
|
+
import { useCommon } from '../hooks/useCommon.js';
|
|
5
5
|
|
|
6
6
|
var EditSelect = defineComponent({
|
|
7
7
|
name: "EditSelect",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { createVNode, mergeProps } from 'vue';
|
|
2
|
-
import '../../../../../
|
|
3
|
-
import { EDITABLE_WIDGET_TYPE } from '../../../../constants/
|
|
2
|
+
import '../../../../../index.js';
|
|
3
|
+
import { EDITABLE_WIDGET_TYPE } from '../../../../constants/index.js';
|
|
4
4
|
import EditSelect from './editSelect.js';
|
|
5
|
-
import { getDefaultValue } from './
|
|
6
|
-
import { defineTablePlugin } from '../../../../hooks/
|
|
5
|
+
import { getDefaultValue } from './selectUtils.js';
|
|
6
|
+
import { defineTablePlugin } from '../../../../hooks/useTablePlugin.js';
|
|
7
7
|
|
|
8
8
|
function selectRendererPlugin() {
|
|
9
9
|
const pluginName = "selectRendererPlugin";
|
|
@@ -1 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
function getDefaultValue(row, item) {
|
|
2
|
+
var _a;
|
|
3
|
+
const value = row[item.columnName];
|
|
4
|
+
if (Array.isArray(value))
|
|
5
|
+
return (_a = value.map((v) => getValue(v))) == null ? void 0 : _a.join(",");
|
|
6
|
+
return getValue(value);
|
|
7
|
+
function getValue(value2) {
|
|
8
|
+
var _a2, _b;
|
|
9
|
+
const findValue = (options) => {
|
|
10
|
+
var _a3;
|
|
11
|
+
return ((_a3 = options == null ? void 0 : options.find((v) => v.value == value2)) == null ? void 0 : _a3.label) || value2 || "";
|
|
12
|
+
};
|
|
13
|
+
if (item.formatMap) {
|
|
14
|
+
return row[(_a2 = item.formatMap) == null ? void 0 : _a2.label];
|
|
15
|
+
}
|
|
16
|
+
return findValue(((_b = item.componentProps) == null ? void 0 : _b.options) || []);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { getDefaultValue };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent, inject, ref, watch, computed, onMounted, onDeactivated, openBlock, createBlock, unref, withCtx, createElementVNode, withModifiers, normalizeStyle, toDisplayString, renderSlot, createVNode } from 'vue';
|
|
2
2
|
import { cloneDeep, isObject, isArray } from 'lodash-es';
|
|
3
3
|
import { NPopover, NInput } from 'naive-ui';
|
|
4
|
-
import { InjectionIhoTableEmits, InjectionIhoTableHandler } from '../../../../constants/
|
|
4
|
+
import { InjectionIhoTableEmits, InjectionIhoTableHandler } from '../../../../constants/index.js';
|
|
5
5
|
import _export_sfc from '../../../../../../../_virtual/plugin-vue_export-helper.js';
|
|
6
6
|
|
|
7
7
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { reactive, inject, unref, createVNode, onBeforeUnmount } from 'vue';
|
|
2
|
-
import { traverse } from '../../../../../../../shared/utils/
|
|
2
|
+
import { traverse } from '../../../../../../../shared/utils/index.js';
|
|
3
3
|
import { isFunction } from 'lodash-es';
|
|
4
|
-
import '../../../../../
|
|
5
|
-
import { EDITABLE_WIDGET_TYPE, InjectionIhoTableUUID } from '../../../../constants/
|
|
6
|
-
import { getRowHeight } from '../../../../utils/
|
|
7
|
-
import { isSeparateColumn, getColumnRenderWidth, contentSeparate, getColumnInfoMaxLength, generateSeparateRowData } from './
|
|
4
|
+
import '../../../../../index.js';
|
|
5
|
+
import { EDITABLE_WIDGET_TYPE, InjectionIhoTableUUID } from '../../../../constants/index.js';
|
|
6
|
+
import { getRowHeight } from '../../../../utils/index.js';
|
|
7
|
+
import { isSeparateColumn, getColumnRenderWidth, contentSeparate, getColumnInfoMaxLength, generateSeparateRowData } from './separateUtils.js';
|
|
8
8
|
import EditSeparate from './editSeparate.js';
|
|
9
|
-
import { defineTablePlugin } from '../../../../hooks/
|
|
9
|
+
import { defineTablePlugin } from '../../../../hooks/useTablePlugin.js';
|
|
10
10
|
|
|
11
11
|
function separateRendererPlugins() {
|
|
12
12
|
const pluginName = "separateRendererPlugins";
|
|
@@ -1 +1,57 @@
|
|
|
1
|
-
|
|
1
|
+
import { getStringWidth } from '../../../../../../../shared/utils/index.js';
|
|
2
|
+
import { isNumber, isArray, cloneDeep, isString } from 'lodash-es';
|
|
3
|
+
import { nextTick, unref } from 'vue';
|
|
4
|
+
import { EDITABLE_WIDGET_TYPE } from '../../../../constants/index.js';
|
|
5
|
+
|
|
6
|
+
function getColumnInfoMaxLength(parsedRowDataInfo) {
|
|
7
|
+
return Math.max(...parsedRowDataInfo.map((r) => r.data.length), 1);
|
|
8
|
+
}
|
|
9
|
+
async function getColumnRenderWidth(column, $table) {
|
|
10
|
+
const prev = getRenderWidth();
|
|
11
|
+
if (!prev) {
|
|
12
|
+
await nextTick();
|
|
13
|
+
}
|
|
14
|
+
return getRenderWidth() || getColumnWidth();
|
|
15
|
+
function getRenderWidth() {
|
|
16
|
+
var _a, _b;
|
|
17
|
+
return (_b = (_a = unref($table)) == null ? void 0 : _a.getColumnByField(column.field)) == null ? void 0 : _b.renderWidth;
|
|
18
|
+
}
|
|
19
|
+
function getColumnWidth() {
|
|
20
|
+
return isNumber(column.width) ? column.width : 64;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
function generateSeparateRowData(parsedRowDataInfo, index) {
|
|
24
|
+
return parsedRowDataInfo.reduce((res, info) => {
|
|
25
|
+
res[info.field] = info.data[index];
|
|
26
|
+
return res;
|
|
27
|
+
}, {});
|
|
28
|
+
}
|
|
29
|
+
function contentSeparate(value, field, width) {
|
|
30
|
+
if (isArray(value)) {
|
|
31
|
+
return value.map((row) => {
|
|
32
|
+
var _a, _b, _c, _d;
|
|
33
|
+
return (_d = (_c = (_b = (_a = field.editRender) == null ? void 0 : _a.props) == null ? void 0 : _b.separateFormatter) == null ? void 0 : _c.call(_b, cloneDeep(row))) != null ? _d : row;
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
if (!isString(value) || !isNumber(width))
|
|
37
|
+
return [value];
|
|
38
|
+
width -= 24;
|
|
39
|
+
return [...value].reduce(
|
|
40
|
+
(res, char) => {
|
|
41
|
+
const latestString = res[res.length - 1];
|
|
42
|
+
if (getStringWidth(latestString + char) > width) {
|
|
43
|
+
res.push(char);
|
|
44
|
+
} else {
|
|
45
|
+
res[res.length - 1] = latestString + char;
|
|
46
|
+
}
|
|
47
|
+
return res;
|
|
48
|
+
},
|
|
49
|
+
[""]
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
function isSeparateColumn(field) {
|
|
53
|
+
var _a;
|
|
54
|
+
return field.field && ((_a = field.editRender) == null ? void 0 : _a.name) === EDITABLE_WIDGET_TYPE.SEPARATE;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export { contentSeparate, generateSeparateRowData, getColumnInfoMaxLength, getColumnRenderWidth, isSeparateColumn };
|
|
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
14
|
type: NumberConstructor;
|
|
15
15
|
required: true;
|
|
16
16
|
};
|
|
17
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
17
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
18
|
column: {
|
|
19
19
|
type: PropType<IhoTableFieldItem>;
|
|
20
20
|
required: true;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent, inject, createVNode, mergeProps } from 'vue';
|
|
2
2
|
import { NTimePicker } from 'naive-ui';
|
|
3
|
-
import { InjectionIhoTableEmits } from '../../../../constants/
|
|
4
|
-
import { useCommon } from '../hooks/
|
|
3
|
+
import { InjectionIhoTableEmits } from '../../../../constants/index.js';
|
|
4
|
+
import { useCommon } from '../hooks/useCommon.js';
|
|
5
5
|
|
|
6
6
|
var EditTime = defineComponent({
|
|
7
7
|
name: "EditTime",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { createVNode, mergeProps } from 'vue';
|
|
2
|
-
import '../../../../../
|
|
3
|
-
import { EDITABLE_WIDGET_TYPE } from '../../../../constants/
|
|
2
|
+
import '../../../../../index.js';
|
|
3
|
+
import { EDITABLE_WIDGET_TYPE } from '../../../../constants/index.js';
|
|
4
4
|
import EditTime from './editTime.js';
|
|
5
|
-
import { defineTablePlugin } from '../../../../hooks/
|
|
5
|
+
import { defineTablePlugin } from '../../../../hooks/useTablePlugin.js';
|
|
6
6
|
|
|
7
7
|
function timeRendererPlugin() {
|
|
8
8
|
const pluginName = "timeRendererPlugin";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '../../../../
|
|
2
|
-
import { defineTablePlugin } from '../../../hooks/
|
|
1
|
+
import '../../../../index.js';
|
|
2
|
+
import { defineTablePlugin } from '../../../hooks/useTablePlugin.js';
|
|
3
3
|
|
|
4
4
|
function checkRendererPlugin() {
|
|
5
5
|
const pluginName = "checkRendererPlugin";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { createVNode } from 'vue';
|
|
2
|
-
import '../../../../
|
|
3
|
-
import { WIDGET_TYPE } from '../../../constants/
|
|
4
|
-
import { getRowHeight } from '../../../utils/
|
|
5
|
-
import { defineTablePlugin } from '../../../hooks/
|
|
2
|
+
import '../../../../index.js';
|
|
3
|
+
import { WIDGET_TYPE } from '../../../constants/index.js';
|
|
4
|
+
import { getRowHeight } from '../../../utils/index.js';
|
|
5
|
+
import { defineTablePlugin } from '../../../hooks/useTablePlugin.js';
|
|
6
6
|
|
|
7
7
|
function colorRendererPlugin() {
|
|
8
8
|
const pluginName = "checkRendererPlugin";
|
package/es/components/iho-table/src/plugins/rendererPlugins/widgets/defaultRendererPlugin.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { createVNode } from 'vue';
|
|
2
2
|
import { isString } from 'lodash-es';
|
|
3
|
-
import '../../../../
|
|
4
|
-
import { WIDGET_TYPE } from '../../../constants/
|
|
5
|
-
import { IhoTableWarn } from '../../../utils/
|
|
6
|
-
import { defineTablePlugin } from '../../../hooks/
|
|
3
|
+
import '../../../../index.js';
|
|
4
|
+
import { WIDGET_TYPE } from '../../../constants/index.js';
|
|
5
|
+
import { IhoTableWarn } from '../../../utils/index.js';
|
|
6
|
+
import { defineTablePlugin } from '../../../hooks/useTablePlugin.js';
|
|
7
7
|
|
|
8
8
|
function defaultRendererPlugin() {
|
|
9
9
|
const pluginName = "defaultRendererPlugin";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { createVNode } from 'vue';
|
|
2
2
|
import { isArray, isString } from 'lodash-es';
|
|
3
|
-
import '../../../../
|
|
4
|
-
import { WIDGET_TYPE } from '../../../constants/
|
|
5
|
-
import { defineTablePlugin } from '../../../hooks/
|
|
3
|
+
import '../../../../index.js';
|
|
4
|
+
import { WIDGET_TYPE } from '../../../constants/index.js';
|
|
5
|
+
import { defineTablePlugin } from '../../../hooks/useTablePlugin.js';
|
|
6
6
|
|
|
7
7
|
function labelRendererPlugin() {
|
|
8
8
|
const pluginName = "labelRendererPlugin";
|
package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { defineComponent, watch, onBeforeUnmount, createVNode } from 'vue';
|
|
2
|
-
import { arrayed } from '../../../../../../shared/utils/
|
|
3
|
-
import '../../../../
|
|
4
|
-
import { WIDGET_TYPE } from '../../../constants/
|
|
5
|
-
import { getRowHeight, IhoTableWarn } from '../../../utils/
|
|
2
|
+
import { arrayed } from '../../../../../../shared/utils/index.js';
|
|
3
|
+
import '../../../../index.js';
|
|
4
|
+
import { WIDGET_TYPE } from '../../../constants/index.js';
|
|
5
|
+
import { getRowHeight, IhoTableWarn } from '../../../utils/index.js';
|
|
6
6
|
import Viewer from 'viewerjs';
|
|
7
7
|
import 'viewerjs/dist/viewer.css';
|
|
8
|
-
import { defineTablePlugin } from '../../../hooks/
|
|
8
|
+
import { defineTablePlugin } from '../../../hooks/useTablePlugin.js';
|
|
9
9
|
|
|
10
10
|
function pictureRendererPlugin() {
|
|
11
11
|
const pluginName = "pictureRendererPlugin";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { inject, createVNode } from 'vue';
|
|
2
2
|
import { SettingsSharp } from '@vicons/ionicons5';
|
|
3
3
|
import { NIcon } from 'naive-ui';
|
|
4
|
-
import '../../../../
|
|
5
|
-
import { InjectionIhoTableEmits } from '../../../constants/
|
|
6
|
-
import { defineTablePlugin } from '../../../hooks/
|
|
4
|
+
import '../../../../index.js';
|
|
5
|
+
import { InjectionIhoTableEmits } from '../../../constants/index.js';
|
|
6
|
+
import { defineTablePlugin } from '../../../hooks/useTablePlugin.js';
|
|
7
7
|
|
|
8
8
|
function seqRendererPlugin() {
|
|
9
9
|
const pluginName = "seqRendererPlugin";
|
|
@@ -1 +1,30 @@
|
|
|
1
|
-
|
|
1
|
+
import { isObject } from '@vue/shared';
|
|
2
|
+
import '../../../index.js';
|
|
3
|
+
import { groupTraverser, createRowGroupList } from './rowGroupUtils.js';
|
|
4
|
+
import { defineTablePlugin } from '../../hooks/useTablePlugin.js';
|
|
5
|
+
|
|
6
|
+
function rowGroupSettingPlugin() {
|
|
7
|
+
const pluginName = "rowGroupSettingPlugin";
|
|
8
|
+
return defineTablePlugin({
|
|
9
|
+
name: pluginName,
|
|
10
|
+
apply(hooks) {
|
|
11
|
+
hooks.fieldHooks.fieldList.tap(pluginName, (fieldList, config) => {
|
|
12
|
+
if (!isObject(config.rowGroupSetting))
|
|
13
|
+
return fieldList;
|
|
14
|
+
return groupTraverser(
|
|
15
|
+
createRowGroupList(config.rowGroupSetting, fieldList),
|
|
16
|
+
(fieldName, isBlock) => {
|
|
17
|
+
if (isBlock)
|
|
18
|
+
return { field: fieldName, title: fieldName };
|
|
19
|
+
return fieldSearcher(fieldName, fieldList);
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
function fieldSearcher(fieldName, fieldList) {
|
|
27
|
+
return fieldList.find((field) => field.field === fieldName);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export { rowGroupSettingPlugin };
|
|
@@ -1 +1,50 @@
|
|
|
1
|
-
|
|
1
|
+
import { isObject } from '@vue/shared';
|
|
2
|
+
import { isArray, isString } from 'lodash-es';
|
|
3
|
+
import { IhoTableRowGroupSequence } from '../../constants/index.js';
|
|
4
|
+
|
|
5
|
+
function createRowGroupList(rowGroupSetting, fieldList, getKey = (field) => field.field) {
|
|
6
|
+
const result = fieldList.map((field) => getKey(field));
|
|
7
|
+
IhoTableRowGroupSequence.some((sequence) => {
|
|
8
|
+
const currentLevelGroup = rowGroupSetting[sequence];
|
|
9
|
+
if (!isArray(currentLevelGroup))
|
|
10
|
+
return true;
|
|
11
|
+
currentLevelGroup.forEach((groupSetting) => {
|
|
12
|
+
if (!isArray(groupSetting.list) || !groupSetting.list.length)
|
|
13
|
+
return;
|
|
14
|
+
const children = [];
|
|
15
|
+
groupSetting.list.forEach((fieldName, idx) => {
|
|
16
|
+
const groupIdx = groupIndexSearcher(fieldName, result);
|
|
17
|
+
if (!~groupIdx)
|
|
18
|
+
return;
|
|
19
|
+
children.push(result[groupIdx]);
|
|
20
|
+
if (idx === 0) {
|
|
21
|
+
result.splice(groupIdx, 1, { fieldName: groupSetting.title, children });
|
|
22
|
+
} else {
|
|
23
|
+
result.splice(groupIdx, 1);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
return result;
|
|
29
|
+
function groupIndexSearcher(fieldName, groupList) {
|
|
30
|
+
return groupList.findIndex((group) => (isObject(group) ? group.fieldName : group) === fieldName);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
function groupTraverser(groupList, replacer) {
|
|
34
|
+
return groupList.reduce((result, group) => {
|
|
35
|
+
if (isString(group)) {
|
|
36
|
+
const item = replacer(group);
|
|
37
|
+
item && result.push(item);
|
|
38
|
+
}
|
|
39
|
+
if (isObject(group) && group.children) {
|
|
40
|
+
const item = replacer(group.fieldName, true);
|
|
41
|
+
if (item) {
|
|
42
|
+
item.children = groupTraverser(group.children, replacer);
|
|
43
|
+
result.push(item);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
return result;
|
|
47
|
+
}, []);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export { createRowGroupList, groupTraverser };
|
|
@@ -1 +1,89 @@
|
|
|
1
|
-
|
|
1
|
+
import { DMZ, traverse, uuidGenerator } from '../../../../../shared/utils/index.js';
|
|
2
|
+
import { isArray, isFunction } from 'lodash-es';
|
|
3
|
+
import { onBeforeUnmount } from 'vue';
|
|
4
|
+
import '../../../index.js';
|
|
5
|
+
import { defineTablePlugin } from '../../hooks/useTablePlugin.js';
|
|
6
|
+
|
|
7
|
+
function virtualTreePlugin() {
|
|
8
|
+
const pluginName = "virtualTreePlugin";
|
|
9
|
+
const treeNodeColumnIndexMap = /* @__PURE__ */ new Map();
|
|
10
|
+
return defineTablePlugin({
|
|
11
|
+
name: pluginName,
|
|
12
|
+
apply(hooks) {
|
|
13
|
+
hooks.dataHooks.data.tap(pluginName, (rowData, context, config) => {
|
|
14
|
+
const {
|
|
15
|
+
transform,
|
|
16
|
+
rowField = "__parentId",
|
|
17
|
+
parentField = "parentId",
|
|
18
|
+
children = "childrenList"
|
|
19
|
+
} = config.treeConfig || DMZ;
|
|
20
|
+
if (!transform)
|
|
21
|
+
return;
|
|
22
|
+
enrichRowData(rowData);
|
|
23
|
+
if (!isArray(rowData[children]))
|
|
24
|
+
return;
|
|
25
|
+
traverse(
|
|
26
|
+
rowData[children],
|
|
27
|
+
(item, _, parent) => {
|
|
28
|
+
parent && (item[parentField] = parent[rowField]);
|
|
29
|
+
context.insertAfter(item);
|
|
30
|
+
enrichRowData(item);
|
|
31
|
+
},
|
|
32
|
+
children,
|
|
33
|
+
rowData
|
|
34
|
+
);
|
|
35
|
+
function enrichRowData(rowData2) {
|
|
36
|
+
rowData2[rowField] = rowData2[rowField] || rowData2.theUniqueKey || uuidGenerator();
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
hooks.fieldHooks.fieldList.tap(pluginName, (fieldList, config) => {
|
|
40
|
+
const { transform } = config.treeConfig || DMZ;
|
|
41
|
+
if (transform && config.uuid) {
|
|
42
|
+
const treeNodeColumnIndex = fieldList.findIndex((field) => field.treeNode);
|
|
43
|
+
treeNodeColumnIndexMap.set(config.uuid, {
|
|
44
|
+
index: ~treeNodeColumnIndex ? treeNodeColumnIndex : 0,
|
|
45
|
+
length: fieldList.length
|
|
46
|
+
});
|
|
47
|
+
!~treeNodeColumnIndex && Reflect.set(fieldList[0], "treeNode", true);
|
|
48
|
+
}
|
|
49
|
+
return fieldList;
|
|
50
|
+
});
|
|
51
|
+
hooks.configHooks.config.tap(pluginName, (config) => {
|
|
52
|
+
const { transform, parentField = "parentId", rowField = "__parentId" } = config.treeConfig || DMZ;
|
|
53
|
+
if (!transform)
|
|
54
|
+
return config;
|
|
55
|
+
Object.assign(config.treeConfig, { parentField, rowField });
|
|
56
|
+
if (transform && !isFunction(config.spanMethod)) {
|
|
57
|
+
config.spanMethod = (...args) => {
|
|
58
|
+
const { row, column, columnIndex } = args[0];
|
|
59
|
+
const treeNodeColumnInfo = treeNodeColumnIndexMap.get(config.uuid);
|
|
60
|
+
if (!treeNodeColumnInfo)
|
|
61
|
+
return;
|
|
62
|
+
if (column.treeNode) {
|
|
63
|
+
if (row[parentField])
|
|
64
|
+
return { rowspan: 1, colspan: 1 };
|
|
65
|
+
return { rowspan: 1, colspan: 99999 };
|
|
66
|
+
} else {
|
|
67
|
+
if (row[parentField])
|
|
68
|
+
return { rowspan: 1, colspan: 1 };
|
|
69
|
+
if (columnIndex < treeNodeColumnInfo.index)
|
|
70
|
+
return { rowspan: 1, colspan: 1 };
|
|
71
|
+
return { rowspan: 0, colspan: 0 };
|
|
72
|
+
}
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
return config;
|
|
76
|
+
});
|
|
77
|
+
hooks.setupHooks.setup.tap(pluginName, (configRef) => {
|
|
78
|
+
onBeforeUnmount(() => {
|
|
79
|
+
var _a;
|
|
80
|
+
if (!((_a = configRef.value) == null ? void 0 : _a.uuid))
|
|
81
|
+
return;
|
|
82
|
+
treeNodeColumnIndexMap.delete(configRef.value.uuid);
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export { virtualTreePlugin };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { AbstractConfigHooks, AbstractDataHooks, AbstractEventHooks, AbstractFieldHooks, AbstractSetupHooks } from './
|
|
1
|
+
export { AbstractConfigHooks, AbstractDataHooks, AbstractEventHooks, AbstractFieldHooks, AbstractSetupHooks } from './pluginType.js';
|