@luck-design-biz/luckda 1.0.2-13 → 1.0.2-14
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/LICENSE +21 -21
- package/README.md +40 -40
- package/es/components/Builder/index.js +13 -10
- package/es/components/LDActions/index.less +70 -70
- package/es/components/LdAutoForm/index.js +5 -4
- package/es/components/LdCom/index.js +3 -2
- package/es/components/LdFormList/index.js +4 -3
- package/es/components/LdGrid/index.js +4 -4
- package/es/components/LdGridForm/index.js +5 -4
- package/es/components/LdGridForm/index.less +7 -7
- package/es/components/LdTree/index.less +42 -42
- package/es/helper/FromItems.js +64 -5
- package/es/helper/action.js +6 -6
- package/es/helper/form.js +14 -14
- package/es/helper/index.less +7 -7
- package/es/helper/ldBuilder.js +5 -4
- package/es/helper/ldComBuild.js +16 -11
- package/es/locales/zh-CN.js +41 -5
- package/es/lowcode/constants/api-url.js +309 -261
- package/es/lowcode/constants/event-topics.js +2 -0
- package/es/lowcode/constants/index.js +5 -4
- package/es/lowcode/engine/meta/components-list.json +12 -6
- package/es/lowcode/engine/meta/fielddate.props.default.json +1 -0
- package/es/lowcode/engine/meta/fielddate.props.json +48 -0
- package/es/lowcode/engine/meta/js-editor/auto-complete.json +35 -30
- package/es/lowcode/engine/meta/proxy.props.default.json +15 -0
- package/es/lowcode/engine/meta/proxy.props.json +66 -0
- package/es/lowcode/engine/provider/ContextProvider/index.js +87 -49
- package/es/lowcode/engine/provider/ContextProvider/usePageDataStore.js +49 -43
- package/es/lowcode/engine/provider/ContextProvider/usePageVar.js +11 -5
- package/es/lowcode/engine/provider/ContextProvider/useTodo.js +2 -4
- package/es/lowcode/engine/provider/EventBusProvider.js +14 -4
- package/es/lowcode/engine/provider/PageProxyProvider.js +95 -0
- package/es/lowcode/engine/provider/RemoteSourceProvider.js +10 -12
- package/es/lowcode/engine/tools/dataProcess.js +76 -76
- package/es/lowcode/engine/tools/helper.js +25 -1
- package/es/lowcode/engine/tools/initDS.js +4 -4
- package/es/lowcode/painter/Components.js +2 -2
- package/es/lowcode/painter/Design.js +1 -0
- package/es/lowcode/painter/DesignOperator.js +129 -27
- package/es/lowcode/painter/DesignToolbar.js +88 -173
- package/es/lowcode/painter/components/AdvancePanel.js +28 -10
- package/es/lowcode/painter/components/Collapse.js +26 -26
- package/es/lowcode/painter/components/ColorInput.js +24 -24
- package/es/lowcode/painter/components/ListEditor.js +24 -24
- package/es/lowcode/painter/components/NumberInput.js +28 -28
- package/es/lowcode/painter/components/PanelItem.js +24 -24
- package/es/lowcode/painter/components/PopConfirm.js +8 -8
- package/es/lowcode/painter/components/PopForm.js +27 -27
- package/es/lowcode/painter/components/RuleInput.js +30 -30
- package/es/lowcode/painter/components/SortBox.js +22 -22
- package/es/lowcode/painter/components/TipIcon.js +12 -4
- package/es/lowcode/painter/components/TreeEditor.js +10 -10
- package/es/lowcode/painter/components/code-editor/BaseEditor.js +32 -32
- package/es/lowcode/painter/components/code-editor/CssEditor.js +25 -25
- package/es/lowcode/painter/components/code-editor/FullScreenEditor.js +23 -23
- package/es/lowcode/painter/components/code-editor/JSEditor.js +20 -20
- package/es/lowcode/painter/components/code-editor/JsonEditor.js +25 -25
- package/es/lowcode/painter/components/field-setting/SettingUI.js +56 -4
- package/es/lowcode/painter/components/field-setting/index.js +24 -1
- package/es/lowcode/painter/components/shortcut-modal/KeyIcon.js +11 -0
- package/es/lowcode/painter/components/shortcut-modal/index.js +208 -0
- package/es/lowcode/painter/panel-section/BlockEditor/index.js +10 -19
- package/es/lowcode/painter/panel-section/BlocksEditor/index.js +4 -1
- package/es/lowcode/painter/panel-section/ConditionCheck.js +0 -1
- package/es/lowcode/painter/panel-section/DataSetSelector.js +6 -3
- package/es/lowcode/painter/panel-section/FieldsSetting.js +1 -1
- package/es/lowcode/painter/panel-section/Icon.js +23 -23
- package/es/lowcode/painter/panel-section/IconConditionSelector.js +2 -1
- package/es/lowcode/painter/panel-section/IconSelector.js +16 -16
- package/es/lowcode/painter/panel-section/JSEditor/ToolBar.js +7 -4
- package/es/lowcode/painter/panel-section/JSEditor/index.js +15 -5
- package/es/lowcode/painter/panel-section/JSEditor/index.less +4 -0
- package/es/lowcode/painter/panel-section/LayoutRatio.js +21 -21
- package/es/lowcode/painter/panel-section/ProxyLinker.js +137 -0
- package/es/lowcode/painter/panel-section/ProxyParams.js +28 -0
- package/es/lowcode/painter/panel-section/ProxyParamsSetter.js +240 -0
- package/es/lowcode/painter/panel-section/StylePanel/BackGround.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/Border.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/BorderRadius.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/BorderRadiusSelector.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/BorderSelector.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/Display.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/Font.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/FontEditor.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/GapSelector.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/HighLightPanel.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/HighLigthtSpan.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/HightLightSvg.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/MainPanel.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/Margin.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/Opacity.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/Padding.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/Pointer.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/Shadow.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/Size.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/StyleContext.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/StyleRow.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/WidthHeight.js +2 -2
- package/es/lowcode/painter/panel-section/StylePanel/index.js +15 -15
- package/es/lowcode/painter/style/action-bind-modal.less +104 -104
- package/es/lowcode/painter/style/actions-editor.less +15 -15
- package/es/lowcode/painter/style/border-editor.less +36 -36
- package/es/lowcode/painter/style/border-radius-selector.less +42 -42
- package/es/lowcode/painter/style/border-selector.less +39 -39
- package/es/lowcode/painter/style/button-type.less +5 -5
- package/es/lowcode/painter/style/collapse.less +28 -28
- package/es/lowcode/painter/style/color-input.less +19 -19
- package/es/lowcode/painter/style/components.less +91 -91
- package/es/lowcode/painter/style/design.less +178 -178
- package/es/lowcode/painter/style/display.less +17 -17
- package/es/lowcode/painter/style/dragdrop.less +56 -56
- package/es/lowcode/painter/style/fields-setting.less +25 -25
- package/es/lowcode/painter/style/font-editor.less +9 -9
- package/es/lowcode/painter/style/fullscreen-editor.less +17 -17
- package/es/lowcode/painter/style/history.less +46 -46
- package/es/lowcode/painter/style/icon-selector.less +22 -22
- package/es/lowcode/painter/style/icon.less +10 -10
- package/es/lowcode/painter/style/impexp.less +7 -7
- package/es/lowcode/painter/style/index.less +6 -6
- package/es/lowcode/painter/style/layout-ratio.less +51 -51
- package/es/lowcode/painter/style/list-editor.less +97 -97
- package/es/lowcode/painter/style/number-input.less +19 -19
- package/es/lowcode/painter/style/outline.less +30 -30
- package/es/lowcode/painter/style/page-layout-display.less +27 -27
- package/es/lowcode/painter/style/page-vars.less +25 -25
- package/es/lowcode/painter/style/panel-attrs.less +47 -47
- package/es/lowcode/painter/style/panel-item.less +55 -54
- package/es/lowcode/painter/style/panel.less +100 -100
- package/es/lowcode/painter/style/pop-confirm.less +17 -17
- package/es/lowcode/painter/style/pop-form.less +19 -19
- package/es/lowcode/painter/style/radio.less +24 -24
- package/es/lowcode/painter/style/ribbon.less +7 -7
- package/es/lowcode/painter/style/rule-input.less +12 -12
- package/es/lowcode/painter/style/split-display.less +18 -18
- package/es/lowcode/painter/style/style-panel.less +37 -37
- package/es/lowcode/painter/style/tabitems.less +90 -90
- package/es/lowcode/painter/svg/code.svg +3 -3
- package/es/lowcode/painter/svg/expect.svg +9 -9
- package/es/lowcode/preview/DebugTool.js +78 -0
- package/es/lowcode/preview/DebugToolDetail.js +103 -0
- package/es/lowcode/preview/index.js +10 -17
- package/es/lowcode/preview/useDebugSettings.js +62 -0
- package/es/lowcode/view/Canvas.js +5 -1
- package/es/lowcode/view/Page.js +8 -3
- package/es/lowcode/view/lc-components/Box/index.js +4 -4
- package/es/lowcode/view/lc-components/Box/index.less +14 -14
- package/es/lowcode/view/lc-components/Box/meta.json +40 -40
- package/es/lowcode/view/lc-components/Button/index.js +33 -33
- package/es/lowcode/view/lc-components/Button/meta.json +127 -127
- package/es/lowcode/view/lc-components/Button/style.less +2 -2
- package/es/lowcode/view/lc-components/CardList/index.js +126 -123
- package/es/lowcode/view/lc-components/CardList/meta.json +332 -332
- package/es/lowcode/view/lc-components/Dialog/index.js +14 -13
- package/es/lowcode/view/lc-components/Dialog/index.less +12 -12
- package/es/lowcode/view/lc-components/Dialog/meta.json +224 -224
- package/es/lowcode/view/lc-components/Drawer/index.js +15 -13
- package/es/lowcode/view/lc-components/Drawer/index.less +13 -13
- package/es/lowcode/view/lc-components/Drawer/meta.json +242 -242
- package/es/lowcode/view/lc-components/FieldColor/meta.json +157 -157
- package/es/lowcode/view/lc-components/FieldComplex/meta.json +140 -140
- package/es/lowcode/view/lc-components/FieldDate/meta.json +188 -140
- package/es/lowcode/view/lc-components/FieldDict/meta.json +138 -138
- package/es/lowcode/view/lc-components/FieldEditor/meta.json +137 -137
- package/es/lowcode/view/lc-components/FieldGroup/meta.json +166 -166
- package/es/lowcode/view/lc-components/FieldNumber/meta.json +143 -143
- package/es/lowcode/view/lc-components/FieldRadio/meta.json +115 -115
- package/es/lowcode/view/lc-components/FieldRegion/meta.json +121 -121
- package/es/lowcode/view/lc-components/FieldSelect/meta.json +152 -152
- package/es/lowcode/view/lc-components/FieldString/meta.json +152 -152
- package/es/lowcode/view/lc-components/FieldSwitch/meta.json +125 -125
- package/es/lowcode/view/lc-components/FieldTextarea/meta.json +143 -143
- package/es/lowcode/view/lc-components/FieldUpload/meta.json +165 -165
- package/es/lowcode/view/lc-components/FieldUser/meta.json +176 -176
- package/es/lowcode/view/lc-components/FieldYear/meta.json +128 -128
- package/es/lowcode/view/lc-components/Form/index.js +23 -20
- package/es/lowcode/view/lc-components/Form/meta.json +629 -629
- package/es/lowcode/view/lc-components/GroupTree/index.js +23 -23
- package/es/lowcode/view/lc-components/GroupTree/index.less +11 -11
- package/es/lowcode/view/lc-components/GroupTree/meta.json +82 -82
- package/es/lowcode/view/lc-components/Iframe/meta.json +31 -31
- package/es/lowcode/view/lc-components/ImEx/index.js +25 -25
- package/es/lowcode/view/lc-components/ImEx/index.less +7 -7
- package/es/lowcode/view/lc-components/ImEx/meta.json +134 -134
- package/es/lowcode/view/lc-components/Image/index.less +27 -27
- package/es/lowcode/view/lc-components/Image/meta.json +149 -149
- package/es/lowcode/view/lc-components/JSX/RuntimeComp.js +4 -4
- package/es/lowcode/view/lc-components/JSX/meta.json +29 -29
- package/es/lowcode/view/lc-components/Layout/index.js +16 -16
- package/es/lowcode/view/lc-components/Layout/index.less +5 -5
- package/es/lowcode/view/lc-components/Layout/meta.json +107 -107
- package/es/lowcode/view/lc-components/Link/index.less +15 -15
- package/es/lowcode/view/lc-components/Link/meta.json +112 -112
- package/es/lowcode/view/lc-components/Page/meta.json +61 -61
- package/es/lowcode/view/lc-components/PageContent/meta.json +9 -9
- package/es/lowcode/view/lc-components/PageFooter/meta.json +9 -9
- package/es/lowcode/view/lc-components/PageHeader/meta.json +9 -9
- package/es/lowcode/view/lc-components/PageLayout/meta.json +59 -59
- package/es/lowcode/view/lc-components/Proxy/FunctionDesign.js +17 -0
- package/es/lowcode/view/lc-components/Proxy/FunctionLive.js +23 -0
- package/es/lowcode/view/lc-components/Proxy/FunctionPreview.js +23 -0
- package/es/lowcode/view/lc-components/Proxy/index.js +42 -0
- package/es/lowcode/view/lc-components/Proxy/index.less +5 -0
- package/es/lowcode/view/lc-components/Proxy/meta.json +66 -0
- package/es/lowcode/view/lc-components/Section/index.less +7 -7
- package/es/lowcode/view/lc-components/Section/meta.json +108 -108
- package/es/lowcode/view/lc-components/Split/meta.json +53 -53
- package/es/lowcode/view/lc-components/Table/index.js +156 -149
- package/es/lowcode/view/lc-components/Table/meta.json +443 -443
- package/es/lowcode/view/lc-components/Tabs/index.js +23 -23
- package/es/lowcode/view/lc-components/Tabs/meta.json +113 -113
- package/es/lowcode/view/lc-components/Text/meta.json +56 -56
- package/es/lowcode/view/lc-components/Tree/index.js +99 -96
- package/es/lowcode/view/lc-components/Tree/index.less +4 -4
- package/es/lowcode/view/lc-components/Tree/meta.json +353 -353
- package/es/lowcode/view/lc-components/Wrapper.js +7 -1
- package/es/lowcode/view/style/canvas.less +5 -5
- package/es/lowcode/view/style/loading.less +98 -98
- package/es/lowcode/view/style/page.less +7 -7
- package/es/upload/FilesWall/index.js +13 -13
- package/es/upload/FilesWall/index.less +74 -74
- package/es/upload/Form/index.less +7 -7
- package/es/upload/FormItem/index.js +15 -15
- package/es/utils/form.js +21 -21
- package/lib/components/Builder/index.js +13 -10
- package/lib/components/LDActions/index.less +70 -70
- package/lib/components/LdAutoForm/index.js +3 -2
- package/lib/components/LdCom/index.js +3 -2
- package/lib/components/LdFormList/index.js +3 -2
- package/lib/components/LdGrid/index.js +4 -4
- package/lib/components/LdGridForm/index.js +3 -2
- package/lib/components/LdGridForm/index.less +7 -7
- package/lib/components/LdTree/index.less +42 -42
- package/lib/helper/FromItems.js +64 -5
- package/lib/helper/action.js +6 -6
- package/lib/helper/form.js +14 -14
- package/lib/helper/index.less +7 -7
- package/lib/helper/ldBuilder.js +4 -4
- package/lib/helper/ldComBuild.js +14 -9
- package/lib/locales/zh-CN.js +41 -5
- package/lib/lowcode/constants/api-url.js +309 -260
- package/lib/lowcode/constants/event-topics.js +3 -1
- package/lib/lowcode/constants/index.js +6 -5
- package/lib/lowcode/engine/meta/components-list.json +12 -6
- package/lib/lowcode/engine/meta/fielddate.props.default.json +1 -0
- package/lib/lowcode/engine/meta/fielddate.props.json +48 -0
- package/lib/lowcode/engine/meta/js-editor/auto-complete.json +35 -30
- package/lib/lowcode/engine/meta/proxy.props.default.json +15 -0
- package/lib/lowcode/engine/meta/proxy.props.json +66 -0
- package/lib/lowcode/engine/provider/ContextProvider/index.js +87 -49
- package/lib/lowcode/engine/provider/ContextProvider/usePageDataStore.js +50 -44
- package/lib/lowcode/engine/provider/ContextProvider/usePageVar.js +10 -4
- package/lib/lowcode/engine/provider/ContextProvider/useTodo.js +1 -3
- package/lib/lowcode/engine/provider/EventBusProvider.js +14 -4
- package/lib/lowcode/engine/provider/PageProxyProvider.js +103 -0
- package/lib/lowcode/engine/provider/RemoteSourceProvider.js +10 -12
- package/lib/lowcode/engine/tools/dataProcess.js +76 -76
- package/lib/lowcode/engine/tools/helper.js +25 -0
- package/lib/lowcode/engine/tools/initDS.js +4 -4
- package/lib/lowcode/painter/Components.js +2 -2
- package/lib/lowcode/painter/Design.js +1 -0
- package/lib/lowcode/painter/DesignOperator.js +126 -24
- package/lib/lowcode/painter/DesignToolbar.js +84 -169
- package/lib/lowcode/painter/components/AdvancePanel.js +27 -9
- package/lib/lowcode/painter/components/Collapse.js +26 -26
- package/lib/lowcode/painter/components/ColorInput.js +24 -24
- package/lib/lowcode/painter/components/ListEditor.js +24 -24
- package/lib/lowcode/painter/components/NumberInput.js +28 -28
- package/lib/lowcode/painter/components/PanelItem.js +24 -24
- package/lib/lowcode/painter/components/PopConfirm.js +8 -8
- package/lib/lowcode/painter/components/PopForm.js +27 -27
- package/lib/lowcode/painter/components/RuleInput.js +30 -30
- package/lib/lowcode/painter/components/SortBox.js +22 -22
- package/lib/lowcode/painter/components/TipIcon.js +12 -4
- package/lib/lowcode/painter/components/TreeEditor.js +10 -10
- package/lib/lowcode/painter/components/code-editor/BaseEditor.js +32 -32
- package/lib/lowcode/painter/components/code-editor/CssEditor.js +25 -25
- package/lib/lowcode/painter/components/code-editor/FullScreenEditor.js +23 -23
- package/lib/lowcode/painter/components/code-editor/JSEditor.js +20 -20
- package/lib/lowcode/painter/components/code-editor/JsonEditor.js +25 -25
- package/lib/lowcode/painter/components/field-setting/SettingUI.js +55 -3
- package/lib/lowcode/painter/components/field-setting/index.js +24 -1
- package/lib/lowcode/painter/components/shortcut-modal/KeyIcon.js +18 -0
- package/lib/lowcode/painter/components/shortcut-modal/index.js +215 -0
- package/lib/lowcode/painter/panel-section/BlockEditor/index.js +9 -18
- package/lib/lowcode/painter/panel-section/BlocksEditor/index.js +4 -1
- package/lib/lowcode/painter/panel-section/ConditionCheck.js +0 -1
- package/lib/lowcode/painter/panel-section/DataSetSelector.js +6 -3
- package/lib/lowcode/painter/panel-section/FieldsSetting.js +1 -1
- package/lib/lowcode/painter/panel-section/Icon.js +23 -23
- package/lib/lowcode/painter/panel-section/IconConditionSelector.js +2 -1
- package/lib/lowcode/painter/panel-section/IconSelector.js +16 -16
- package/lib/lowcode/painter/panel-section/JSEditor/ToolBar.js +7 -4
- package/lib/lowcode/painter/panel-section/JSEditor/index.js +14 -4
- package/lib/lowcode/painter/panel-section/JSEditor/index.less +4 -0
- package/lib/lowcode/painter/panel-section/LayoutRatio.js +21 -21
- package/lib/lowcode/painter/panel-section/ProxyLinker.js +145 -0
- package/lib/lowcode/painter/panel-section/ProxyParams.js +35 -0
- package/lib/lowcode/painter/panel-section/ProxyParamsSetter.js +248 -0
- package/lib/lowcode/painter/panel-section/StylePanel/BackGround.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/Border.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/BorderRadius.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/BorderRadiusSelector.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/BorderSelector.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/Display.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/Font.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/FontEditor.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/GapSelector.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/HighLightPanel.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/HighLigthtSpan.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/HightLightSvg.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/MainPanel.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/Margin.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/Opacity.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/Padding.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/Pointer.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/Shadow.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/Size.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/StyleContext.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/StyleRow.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/WidthHeight.js +2 -2
- package/lib/lowcode/painter/panel-section/StylePanel/index.js +15 -15
- package/lib/lowcode/painter/style/action-bind-modal.less +104 -104
- package/lib/lowcode/painter/style/actions-editor.less +15 -15
- package/lib/lowcode/painter/style/border-editor.less +36 -36
- package/lib/lowcode/painter/style/border-radius-selector.less +42 -42
- package/lib/lowcode/painter/style/border-selector.less +39 -39
- package/lib/lowcode/painter/style/button-type.less +5 -5
- package/lib/lowcode/painter/style/collapse.less +28 -28
- package/lib/lowcode/painter/style/color-input.less +19 -19
- package/lib/lowcode/painter/style/components.less +91 -91
- package/lib/lowcode/painter/style/design.less +178 -178
- package/lib/lowcode/painter/style/display.less +17 -17
- package/lib/lowcode/painter/style/dragdrop.less +56 -56
- package/lib/lowcode/painter/style/fields-setting.less +25 -25
- package/lib/lowcode/painter/style/font-editor.less +9 -9
- package/lib/lowcode/painter/style/fullscreen-editor.less +17 -17
- package/lib/lowcode/painter/style/history.less +46 -46
- package/lib/lowcode/painter/style/icon-selector.less +22 -22
- package/lib/lowcode/painter/style/icon.less +10 -10
- package/lib/lowcode/painter/style/impexp.less +7 -7
- package/lib/lowcode/painter/style/index.less +6 -6
- package/lib/lowcode/painter/style/layout-ratio.less +51 -51
- package/lib/lowcode/painter/style/list-editor.less +97 -97
- package/lib/lowcode/painter/style/number-input.less +19 -19
- package/lib/lowcode/painter/style/outline.less +30 -30
- package/lib/lowcode/painter/style/page-layout-display.less +27 -27
- package/lib/lowcode/painter/style/page-vars.less +25 -25
- package/lib/lowcode/painter/style/panel-attrs.less +47 -47
- package/lib/lowcode/painter/style/panel-item.less +55 -54
- package/lib/lowcode/painter/style/panel.less +100 -100
- package/lib/lowcode/painter/style/pop-confirm.less +17 -17
- package/lib/lowcode/painter/style/pop-form.less +19 -19
- package/lib/lowcode/painter/style/radio.less +24 -24
- package/lib/lowcode/painter/style/ribbon.less +7 -7
- package/lib/lowcode/painter/style/rule-input.less +12 -12
- package/lib/lowcode/painter/style/split-display.less +18 -18
- package/lib/lowcode/painter/style/style-panel.less +37 -37
- package/lib/lowcode/painter/style/tabitems.less +90 -90
- package/lib/lowcode/painter/svg/code.svg +3 -3
- package/lib/lowcode/painter/svg/expect.svg +9 -9
- package/lib/lowcode/preview/DebugTool.js +86 -0
- package/lib/lowcode/preview/DebugToolDetail.js +111 -0
- package/lib/lowcode/preview/index.js +10 -18
- package/lib/lowcode/preview/useDebugSettings.js +69 -0
- package/lib/lowcode/view/Canvas.js +5 -1
- package/lib/lowcode/view/Page.js +8 -3
- package/lib/lowcode/view/lc-components/Box/index.js +4 -4
- package/lib/lowcode/view/lc-components/Box/index.less +14 -14
- package/lib/lowcode/view/lc-components/Box/meta.json +40 -40
- package/lib/lowcode/view/lc-components/Button/index.js +33 -33
- package/lib/lowcode/view/lc-components/Button/meta.json +127 -127
- package/lib/lowcode/view/lc-components/Button/style.less +2 -2
- package/lib/lowcode/view/lc-components/CardList/index.js +126 -123
- package/lib/lowcode/view/lc-components/CardList/meta.json +332 -332
- package/lib/lowcode/view/lc-components/Dialog/index.js +14 -13
- package/lib/lowcode/view/lc-components/Dialog/index.less +12 -12
- package/lib/lowcode/view/lc-components/Dialog/meta.json +224 -224
- package/lib/lowcode/view/lc-components/Drawer/index.js +15 -13
- package/lib/lowcode/view/lc-components/Drawer/index.less +13 -13
- package/lib/lowcode/view/lc-components/Drawer/meta.json +242 -242
- package/lib/lowcode/view/lc-components/FieldColor/meta.json +157 -157
- package/lib/lowcode/view/lc-components/FieldComplex/meta.json +140 -140
- package/lib/lowcode/view/lc-components/FieldDate/meta.json +188 -140
- package/lib/lowcode/view/lc-components/FieldDict/meta.json +138 -138
- package/lib/lowcode/view/lc-components/FieldEditor/meta.json +137 -137
- package/lib/lowcode/view/lc-components/FieldGroup/meta.json +166 -166
- package/lib/lowcode/view/lc-components/FieldNumber/meta.json +143 -143
- package/lib/lowcode/view/lc-components/FieldRadio/meta.json +115 -115
- package/lib/lowcode/view/lc-components/FieldRegion/meta.json +121 -121
- package/lib/lowcode/view/lc-components/FieldSelect/meta.json +152 -152
- package/lib/lowcode/view/lc-components/FieldString/meta.json +152 -152
- package/lib/lowcode/view/lc-components/FieldSwitch/meta.json +125 -125
- package/lib/lowcode/view/lc-components/FieldTextarea/meta.json +143 -143
- package/lib/lowcode/view/lc-components/FieldUpload/meta.json +165 -165
- package/lib/lowcode/view/lc-components/FieldUser/meta.json +176 -176
- package/lib/lowcode/view/lc-components/FieldYear/meta.json +128 -128
- package/lib/lowcode/view/lc-components/Form/index.js +23 -20
- package/lib/lowcode/view/lc-components/Form/meta.json +629 -629
- package/lib/lowcode/view/lc-components/GroupTree/index.js +23 -23
- package/lib/lowcode/view/lc-components/GroupTree/index.less +11 -11
- package/lib/lowcode/view/lc-components/GroupTree/meta.json +82 -82
- package/lib/lowcode/view/lc-components/Iframe/meta.json +31 -31
- package/lib/lowcode/view/lc-components/ImEx/index.js +25 -25
- package/lib/lowcode/view/lc-components/ImEx/index.less +7 -7
- package/lib/lowcode/view/lc-components/ImEx/meta.json +134 -134
- package/lib/lowcode/view/lc-components/Image/index.less +27 -27
- package/lib/lowcode/view/lc-components/Image/meta.json +149 -149
- package/lib/lowcode/view/lc-components/JSX/RuntimeComp.js +4 -4
- package/lib/lowcode/view/lc-components/JSX/meta.json +29 -29
- package/lib/lowcode/view/lc-components/Layout/index.js +16 -16
- package/lib/lowcode/view/lc-components/Layout/index.less +5 -5
- package/lib/lowcode/view/lc-components/Layout/meta.json +107 -107
- package/lib/lowcode/view/lc-components/Link/index.less +15 -15
- package/lib/lowcode/view/lc-components/Link/meta.json +112 -112
- package/lib/lowcode/view/lc-components/Page/meta.json +61 -61
- package/lib/lowcode/view/lc-components/PageContent/meta.json +9 -9
- package/lib/lowcode/view/lc-components/PageFooter/meta.json +9 -9
- package/lib/lowcode/view/lc-components/PageHeader/meta.json +9 -9
- package/lib/lowcode/view/lc-components/PageLayout/meta.json +59 -59
- package/lib/lowcode/view/lc-components/Proxy/FunctionDesign.js +24 -0
- package/lib/lowcode/view/lc-components/Proxy/FunctionLive.js +30 -0
- package/lib/lowcode/view/lc-components/Proxy/FunctionPreview.js +30 -0
- package/lib/lowcode/view/lc-components/Proxy/index.js +50 -0
- package/lib/lowcode/view/lc-components/Proxy/index.less +5 -0
- package/lib/lowcode/view/lc-components/Proxy/meta.json +66 -0
- package/lib/lowcode/view/lc-components/Section/index.less +7 -7
- package/lib/lowcode/view/lc-components/Section/meta.json +108 -108
- package/lib/lowcode/view/lc-components/Split/meta.json +53 -53
- package/lib/lowcode/view/lc-components/Table/index.js +156 -149
- package/lib/lowcode/view/lc-components/Table/meta.json +443 -443
- package/lib/lowcode/view/lc-components/Tabs/index.js +23 -23
- package/lib/lowcode/view/lc-components/Tabs/meta.json +113 -113
- package/lib/lowcode/view/lc-components/Text/meta.json +56 -56
- package/lib/lowcode/view/lc-components/Tree/index.js +99 -96
- package/lib/lowcode/view/lc-components/Tree/index.less +4 -4
- package/lib/lowcode/view/lc-components/Tree/meta.json +353 -353
- package/lib/lowcode/view/lc-components/Wrapper.js +6 -0
- package/lib/lowcode/view/style/canvas.less +5 -5
- package/lib/lowcode/view/style/loading.less +98 -98
- package/lib/lowcode/view/style/page.less +7 -7
- package/lib/upload/FilesWall/index.js +13 -13
- package/lib/upload/FilesWall/index.less +74 -74
- package/lib/upload/Form/index.less +7 -7
- package/lib/upload/FormItem/index.js +15 -15
- package/lib/utils/form.js +21 -21
- package/lowcode.js +1 -1
- package/package.json +175 -175
- package/upload.js +1 -1
- package/utils.js +1 -1
package/es/helper/action.js
CHANGED
|
@@ -7,12 +7,12 @@ import { transform, isArray, startsWith, keyBy } from 'lodash';
|
|
|
7
7
|
import { dataFormat, behaviorCall } from "../utils";
|
|
8
8
|
import { defaultComName } from "./form";
|
|
9
9
|
|
|
10
|
-
/**
|
|
11
|
-
* 提交行为
|
|
12
|
-
* @param action 行为
|
|
13
|
-
* @param data 数据
|
|
14
|
-
* @param parmas 附件设置
|
|
15
|
-
* @param moduleData 当前模块信息
|
|
10
|
+
/**
|
|
11
|
+
* 提交行为
|
|
12
|
+
* @param action 行为
|
|
13
|
+
* @param data 数据
|
|
14
|
+
* @param parmas 附件设置
|
|
15
|
+
* @param moduleData 当前模块信息
|
|
16
16
|
*/
|
|
17
17
|
export var doAction = function doAction(action) {
|
|
18
18
|
var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
package/es/helper/form.js
CHANGED
|
@@ -30,11 +30,11 @@ export var defaultComName = {
|
|
|
30
30
|
complex: 'complex'
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
-
/**
|
|
34
|
-
* 动态表单配置项转译
|
|
35
|
-
* @param {key string} keyStr
|
|
36
|
-
* @param {label string} labelStr
|
|
37
|
-
* @returns [{key,label}]
|
|
33
|
+
/**
|
|
34
|
+
* 动态表单配置项转译
|
|
35
|
+
* @param {key string} keyStr
|
|
36
|
+
* @param {label string} labelStr
|
|
37
|
+
* @returns [{key,label}]
|
|
38
38
|
*/
|
|
39
39
|
export var splitStrToObj = function splitStrToObj(keyStr, labelStr) {
|
|
40
40
|
var keys = keyStr && keyStr.length > 0 ? keyStr.split(',') : undefined;
|
|
@@ -51,11 +51,11 @@ export var splitStrToObj = function splitStrToObj(keyStr, labelStr) {
|
|
|
51
51
|
return undefined;
|
|
52
52
|
};
|
|
53
53
|
|
|
54
|
-
/**
|
|
55
|
-
* 动态表单配置项转译
|
|
56
|
-
* @param {动态表单配置项} props
|
|
57
|
-
* @param {自定义动态表单配置项} customProps
|
|
58
|
-
* @returns {name: '',...}
|
|
54
|
+
/**
|
|
55
|
+
* 动态表单配置项转译
|
|
56
|
+
* @param {动态表单配置项} props
|
|
57
|
+
* @param {自定义动态表单配置项} customProps
|
|
58
|
+
* @returns {name: '',...}
|
|
59
59
|
*/
|
|
60
60
|
export function translator() {
|
|
61
61
|
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
|
|
@@ -122,10 +122,10 @@ export function translator() {
|
|
|
122
122
|
return _props;
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
-
/**
|
|
126
|
-
* 删除自动移操作中的不可覆盖字段
|
|
127
|
-
* @param props
|
|
128
|
-
* @returns {{multiple}|*}
|
|
125
|
+
/**
|
|
126
|
+
* 删除自动移操作中的不可覆盖字段
|
|
127
|
+
* @param props
|
|
128
|
+
* @returns {{multiple}|*}
|
|
129
129
|
*/
|
|
130
130
|
export function formatCustomProps(comType, props) {
|
|
131
131
|
var _props2, _props3;
|
package/es/helper/index.less
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
.ldLabs{
|
|
2
|
-
:global{
|
|
3
|
-
.ant-tabs-bar{
|
|
4
|
-
margin: 0 0 4px 0;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
}
|
|
1
|
+
.ldLabs{
|
|
2
|
+
:global{
|
|
3
|
+
.ant-tabs-bar{
|
|
4
|
+
margin: 0 0 4px 0;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
}
|
package/es/helper/ldBuilder.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
-
import React
|
|
2
|
+
import React from 'react';
|
|
3
3
|
import styled from 'styled-components';
|
|
4
|
-
import {
|
|
4
|
+
import { useLDCtx } from "../components/Builder";
|
|
5
5
|
import { formatMessage } from '@luck-design-biz/base/utils';
|
|
6
6
|
export var ErrorWrapper = styled.span.withConfig({
|
|
7
7
|
displayName: "ErrorWrapper",
|
|
@@ -13,8 +13,9 @@ var builder = function builder(wrapped) {
|
|
|
13
13
|
dataSetKey = props.dataSetKey,
|
|
14
14
|
wrapper = props.wrapper,
|
|
15
15
|
className = props.className,
|
|
16
|
-
style = props.style
|
|
17
|
-
|
|
16
|
+
style = props.style,
|
|
17
|
+
pageProxy = props.pageProxy;
|
|
18
|
+
var _ref = useLDCtx(pageProxy) || {},
|
|
18
19
|
resources = _ref.resources,
|
|
19
20
|
actions = _ref.actions,
|
|
20
21
|
_ref$dataSets = _ref.dataSets,
|
package/es/helper/ldComBuild.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
2
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
3
3
|
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
4
|
-
var _excluded = ["$css"],
|
|
5
|
-
_excluded2 = ["className", "$css"];
|
|
6
|
-
import React, {
|
|
4
|
+
var _excluded = ["$css", "pageProxy"],
|
|
5
|
+
_excluded2 = ["className", "$css", "pageProxy"];
|
|
6
|
+
import React, { forwardRef } from 'react';
|
|
7
7
|
import { useCreation } from 'ahooks';
|
|
8
8
|
import { includes, intersectionWith, isNil } from 'lodash';
|
|
9
9
|
import { ChildrenUtil } from '@luck-design-biz/base/utils';
|
|
10
|
-
import {
|
|
10
|
+
import { useLDCtx } from "../components/Builder";
|
|
11
11
|
import classNames from 'classnames';
|
|
12
12
|
import styles from "./index.less";
|
|
13
|
-
export var getResources = function getResources() {
|
|
14
|
-
var _ref =
|
|
13
|
+
export var getResources = function getResources(pageProxy) {
|
|
14
|
+
var _ref = useLDCtx(pageProxy) || {},
|
|
15
15
|
_ref$resources = _ref.resources,
|
|
16
16
|
resources = _ref$resources === void 0 ? [] : _ref$resources;
|
|
17
17
|
return resources;
|
|
@@ -19,26 +19,29 @@ export var getResources = function getResources() {
|
|
|
19
19
|
export var ldComBuilder = function ldComBuilder(Com) {
|
|
20
20
|
var Component = /*#__PURE__*/forwardRef(function (_ref2, ref) {
|
|
21
21
|
var $css = _ref2.$css,
|
|
22
|
+
pageProxy = _ref2.pageProxy,
|
|
22
23
|
props = _objectWithoutProperties(_ref2, _excluded);
|
|
23
|
-
var resources = getResources();
|
|
24
|
+
var resources = getResources(pageProxy);
|
|
24
25
|
var hasResources = useCreation(function () {
|
|
25
26
|
return isNil(props === null || props === void 0 ? void 0 : props.resource) || includes(resources, props.resource);
|
|
26
27
|
}, [props === null || props === void 0 ? void 0 : props.resource, resources]);
|
|
27
28
|
if (hasResources) {
|
|
28
29
|
return /*#__PURE__*/React.createElement(Com, _extends({}, props, {
|
|
30
|
+
pageProxy: pageProxy,
|
|
29
31
|
ref: ref
|
|
30
32
|
}));
|
|
31
33
|
}
|
|
32
34
|
return props.serialEffect === 'hidden' ? /*#__PURE__*/React.createElement(React.Fragment, null) : /*#__PURE__*/React.createElement(Com, _extends({}, props, {
|
|
33
35
|
disabled: true,
|
|
36
|
+
pageProxy: pageProxy,
|
|
34
37
|
ref: ref
|
|
35
38
|
}));
|
|
36
39
|
});
|
|
37
40
|
return Component;
|
|
38
41
|
};
|
|
39
|
-
export var filterOptions = function filterOptions(options) {
|
|
40
|
-
var key = arguments.length >
|
|
41
|
-
var resources = getResources();
|
|
42
|
+
export var filterOptions = function filterOptions(options, pageProxy) {
|
|
43
|
+
var key = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'resource';
|
|
44
|
+
var resources = getResources(pageProxy);
|
|
42
45
|
return intersectionWith(options, resources, function (arrVal, othVal) {
|
|
43
46
|
return !arrVal[key] || arrVal[key] === othVal;
|
|
44
47
|
});
|
|
@@ -47,9 +50,11 @@ export var deepFilterCom = function deepFilterCom(Com, childMark) {
|
|
|
47
50
|
var Component = /*#__PURE__*/forwardRef(function (_ref3, ref) {
|
|
48
51
|
var className = _ref3.className,
|
|
49
52
|
$css = _ref3.$css,
|
|
53
|
+
pageProxy = _ref3.pageProxy,
|
|
50
54
|
props = _objectWithoutProperties(_ref3, _excluded2);
|
|
51
|
-
var resources = getResources();
|
|
55
|
+
var resources = getResources(pageProxy);
|
|
52
56
|
var com = /*#__PURE__*/React.createElement(Com, _extends({}, props, {
|
|
57
|
+
pageProxy: pageProxy,
|
|
53
58
|
className: classNames(styles.ldLabs, _defineProperty({}, className, !!className)),
|
|
54
59
|
ref: ref
|
|
55
60
|
}));
|
package/es/locales/zh-CN.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"luckda.lowcode.view.lc-components.label.all": "全部",
|
|
3
|
+
"luckda.lowcode.view.lc-component.design.show": "请在预览、运行界面查看嵌入的代理页面",
|
|
3
4
|
"luckda.lowcode.painter.import": "导入",
|
|
4
5
|
"luckda.lowcode.painter.components.fullscreen-exit.tip": "退出全屏",
|
|
5
6
|
"luckda.lowcode.painter.components.fullscreen.tip": "全屏",
|
|
@@ -7,6 +8,10 @@ export default {
|
|
|
7
8
|
"lc.form.validator.textNum": "个字符",
|
|
8
9
|
"lc.form.validator.numberBelowMin": "低于最小值",
|
|
9
10
|
"lc.form.validator.numberExceedMax": "超过最大值",
|
|
11
|
+
"luckda.lowcode.design.toolbar.selectUser": "模拟登录人",
|
|
12
|
+
"luckda.lowcode.design.toolbar.placeholder.selectUser": "请选择模拟登录人",
|
|
13
|
+
"luckda.lowcode.design.toolbar.debugTool": "调试工具",
|
|
14
|
+
"luckda.lowcode.painter.I18n.empty": "敬请期待",
|
|
10
15
|
"luckda.lowcode.painter.panel.attrs": "属性",
|
|
11
16
|
"luckda.lowcode.painter.panel.css": "样式",
|
|
12
17
|
"luckda.lowcode.painter.panel.advance": "高级",
|
|
@@ -26,7 +31,6 @@ export default {
|
|
|
26
31
|
"luckda.lowcode.version.add": "添加到历史版本",
|
|
27
32
|
"luckda.lowcode.version.placeholder.title": "请输入版本标题",
|
|
28
33
|
"luckda.lowcode.version.placeholder.note": "请输入版本描述",
|
|
29
|
-
"luckda.lowcode.painter.I18n.empty": "敬请期待",
|
|
30
34
|
"luckda.lowcode.design.toolbar.save.on": "保存中...",
|
|
31
35
|
"luckda.lowcode.design.toolbar.save.success": "保存成功",
|
|
32
36
|
"luckda.lowcode.design.toolbar.save.error": "保存失败",
|
|
@@ -34,11 +38,10 @@ export default {
|
|
|
34
38
|
"luckda.lowcode.design.toolbar.clear": "清除缓存",
|
|
35
39
|
"luckda.lowcode.not.mobile": "此功能暂未开放",
|
|
36
40
|
"luckda.lowcode.design.toolbar.pageAttrs": "页面属性",
|
|
37
|
-
"luckda.lowcode.design.toolbar.
|
|
41
|
+
"luckda.lowcode.design.toolbar.shortcut": "快捷键",
|
|
38
42
|
"luckda.lowcode.design.toolbar.code": "Schema面板",
|
|
43
|
+
"luckda.lowcode.design.toolbar.debug": "调试",
|
|
39
44
|
"luckda.lowcode.design.toolbar.save": "保存",
|
|
40
|
-
"luckda.lowcode.design.toolbar.pagePreview": "页面预览",
|
|
41
|
-
"luckda.lowcode.design.toolbar.selectUser": "请选择模拟登录人",
|
|
42
45
|
"app.base.operate.comfire.leave": "离开当前页面?",
|
|
43
46
|
"app.base.operate.comfire.message.leave": "系统可能不会保存您所做的更改。",
|
|
44
47
|
"luckda.lowcode.painter.components.search": "搜索组件",
|
|
@@ -76,6 +79,22 @@ export default {
|
|
|
76
79
|
"luckda.lowcode.painter.panel-section.splitdisplay.split": "分割方向",
|
|
77
80
|
"luckda.lowcode.painter.panel-section.splitdisplay.ratio": "列比例",
|
|
78
81
|
"luckda.lowcode.painter.panel-section.Layoutratio.placeholder": "请输入列比例",
|
|
82
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.state": "页面全局状态",
|
|
83
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.global": "页面全局变量",
|
|
84
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.url": "页面URL参数",
|
|
85
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.string": "字符串常量",
|
|
86
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.num": "数字常量",
|
|
87
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin.bool": "布尔常量",
|
|
88
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-name": "参数名称",
|
|
89
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.warn.param-name": "请输入参数名称",
|
|
90
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-origin": "参数来源",
|
|
91
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.param-value": "值或变量名",
|
|
92
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.warn.param-value": "请输入参数值或变量名",
|
|
93
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.add": "添加参数",
|
|
94
|
+
"luckda.lowcode.painter.panel-section.proxy-params-setter.save": "保存并返回",
|
|
95
|
+
"luckda.lowcode.painter.panel-section.proxy-linker.add": "新建页面",
|
|
96
|
+
"luckda.lowcode.painter.panel-section.proxy-linker.edit": "编辑页面",
|
|
97
|
+
"luckda.lowcode.painter.panel-section.proxy-linker.sync": "同步数据",
|
|
79
98
|
"luckda.lowcode.painter.pageVars.var": "变量",
|
|
80
99
|
"luckda.lowcode.painter.pageVars.api": "远程 API",
|
|
81
100
|
"luckda.lowcode.painter.pageVars.edit": "编辑数据源",
|
|
@@ -192,6 +211,7 @@ export default {
|
|
|
192
211
|
"luckda.lowcode.painter.panel-section.blocksEditor.writer": "行内编辑表格",
|
|
193
212
|
"luckda.lowcode.painter.panel-section.blocksEditor.uploadForm": "附件列表",
|
|
194
213
|
"luckda.lowcode.painter.panel-section.blocksEditor.blank": "空白区",
|
|
214
|
+
"luckda.lowcode.painter.panel-section.blocksEditor.defaultBlock": "默认区块",
|
|
195
215
|
"luckda.lowcode.painter.panel-section.blocksEditor.addBlock": "新增区块",
|
|
196
216
|
"luckda.lowcode.painter.panel-section.actionsEditor.button": "按钮",
|
|
197
217
|
"luckda.lowcode.painter.panel-section.actionsEditor.text": "文本",
|
|
@@ -247,6 +267,20 @@ export default {
|
|
|
247
267
|
"luckda.lowcode.painter.actionBindModal.params": "配置参数",
|
|
248
268
|
"luckda.lowcode.painter.actionBindModal.params.info": "请勿随意修改配置参数结构和参数名称,参数异常可能会导致请求失败",
|
|
249
269
|
"luckda.lowcode.painter.actionBindModal.noActionSelected": "请在右侧选择行为项",
|
|
270
|
+
"luckda.lowcode.design.toolbar.shortcut.save": "保存",
|
|
271
|
+
"luckda.lowcode.design.toolbar.shortcut.preview": "预览调试",
|
|
272
|
+
"luckda.lowcode.design.toolbar.shortcut.undo": "撤销",
|
|
273
|
+
"luckda.lowcode.design.toolbar.shortcut.redo": "重做",
|
|
274
|
+
"luckda.lowcode.design.toolbar.shortcut.copy": "克隆组件",
|
|
275
|
+
"luckda.lowcode.design.toolbar.shortcut.delete": "删除组件",
|
|
276
|
+
"luckda.lowcode.design.toolbar.shortcut.selectParent": "选择父级组件",
|
|
277
|
+
"luckda.lowcode.design.toolbar.shortcut.selectChildren": "选择子级组件",
|
|
278
|
+
"luckda.lowcode.design.toolbar.shortcut.selectLeftBrother": "向左选择兄弟组件",
|
|
279
|
+
"luckda.lowcode.design.toolbar.shortcut.selectRightBrother": "向右选择兄弟组件",
|
|
280
|
+
"luckda.lowcode.design.toolbar.shortcut.moveLeft": "向左移动组件",
|
|
281
|
+
"luckda.lowcode.design.toolbar.shortcut.moveRight": "向右移动组件",
|
|
282
|
+
"luckda.lowcode.design.toolbar.shortcut.general": "常规操作",
|
|
283
|
+
"luckda.lowcode.design.toolbar.shortcut.others": "组件选择和移动",
|
|
250
284
|
"luckda.lowcode.painter.panel-section.fieldsSetting.align.left": "居左",
|
|
251
285
|
"luckda.lowcode.painter.panel-section.fieldsSetting.align.center": "居中",
|
|
252
286
|
"luckda.lowcode.painter.panel-section.fieldsSetting.align.right": "居右",
|
|
@@ -269,6 +303,7 @@ export default {
|
|
|
269
303
|
"luckda.lowcode.painter.panel-section.fieldsSetting.form.display": "表单中显示",
|
|
270
304
|
"luckda.lowcode.painter.panel-section.fieldsSetting.writable": "是否可写",
|
|
271
305
|
"luckda.lowcode.painter.panel-section.fieldsSetting.readonly": "是否只读",
|
|
306
|
+
"luckda.lowcode.painter.panel-section.fieldsSetting.dateFormat": "日期格式",
|
|
272
307
|
"luckda.lowcode.painter.panel-section.fieldsSetting.render": "内容定制渲染",
|
|
273
308
|
"luckda.lowcode.painter.panel-section.fieldsSetting.defaultValue": "默认值",
|
|
274
309
|
"luckda.lowcode.painter.settingTo": "设置为",
|
|
@@ -294,5 +329,6 @@ export default {
|
|
|
294
329
|
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.message.verifyType": "请选择校验规则",
|
|
295
330
|
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.errorMsg": "错误提示",
|
|
296
331
|
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.message.errorMsg": "请输入错误提示",
|
|
297
|
-
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.logic": "校验逻辑"
|
|
332
|
+
"luckda.lowcode.painter.panel-section.fieldsSetting.checkRules.logic": "校验逻辑",
|
|
333
|
+
"luckda.lowcode.view.lc-component.design.nocode": "缺少页面代理编码配置"
|
|
298
334
|
};
|