@luck-design-biz/luckda 0.0.24-2 → 0.0.24-3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/Builder/index.js +27 -22
- package/es/components/LdAutoForm/index.js +15 -5
- package/es/components/LdFormList/index.js +4 -1
- package/es/components/LdGrid/index.js +15 -18
- package/es/components/LdGridForm/index.js +12 -4
- package/es/helper/form.js +8 -2
- package/es/helper/ldBuilder.js +4 -1
- package/es/lowcode/constants/api-url.js +1 -292
- package/es/lowcode/constants/event-topics.js +1 -14
- package/es/lowcode/engine/meta/button.props.default.json +7 -15
- package/es/lowcode/engine/meta/cardlist.props.default.json +9 -17
- package/{lib/lowcode/engine/meta/button.props.json → es/lowcode/engine/meta/components/button.json} +103 -126
- package/es/lowcode/engine/meta/{cardlist.props.json → components/card-list.json} +142 -143
- package/es/lowcode/engine/meta/{drawer.props.json → components/drawer.json} +142 -143
- package/es/lowcode/engine/meta/{form.props.json → components/form.json} +115 -116
- package/{lib/lowcode/engine/meta/iframe.props.json → es/lowcode/engine/meta/components/iframe.json} +30 -31
- package/{lib/lowcode/engine/meta/image.props.json → es/lowcode/engine/meta/components/image.json} +112 -113
- package/{lib/lowcode/engine/meta/imex.props.json → es/lowcode/engine/meta/components/imex.json} +80 -81
- package/es/lowcode/engine/meta/{jsx.props.json → components/jsx.json} +23 -24
- package/es/lowcode/engine/meta/{layout.props.json → components/layout.json} +106 -107
- package/{lib/lowcode/engine/meta/link.props.json → es/lowcode/engine/meta/components/link.json} +110 -111
- package/es/lowcode/engine/meta/{dialog.props.json → components/modal.json} +119 -120
- package/{lib/lowcode/engine/meta/section.props.json → es/lowcode/engine/meta/components/section.json} +106 -107
- package/{lib/lowcode/engine/meta/split.props.json → es/lowcode/engine/meta/components/split.json} +70 -71
- package/es/lowcode/{view/lc-components/CardList/meta.json → engine/meta/components/table.json} +28 -11
- package/{lib/lowcode/engine/meta/tabs.props.json → es/lowcode/engine/meta/components/tabs.json} +139 -140
- package/{lib/lowcode/engine/meta/text.props.json → es/lowcode/engine/meta/components/text.json} +64 -65
- package/es/lowcode/engine/meta/{tree.props.json → components/tree.json} +155 -156
- package/es/lowcode/engine/meta/components-list.json +121 -127
- package/es/lowcode/engine/meta/drawer.props.default.json +9 -17
- package/es/lowcode/engine/meta/form.props.default.json +4 -12
- package/es/lowcode/engine/meta/iframe.props.default.json +2 -10
- package/es/lowcode/engine/meta/image.props.default.json +7 -15
- package/es/lowcode/engine/meta/imex.props.default.json +3 -11
- package/es/lowcode/engine/meta/jsx.props.default.json +1 -10
- package/es/lowcode/engine/meta/layout.props.default.json +4 -12
- package/es/lowcode/engine/meta/link.props.default.json +5 -13
- package/es/lowcode/engine/meta/modal.props.default.json +11 -0
- package/es/lowcode/engine/meta/section.props.default.json +8 -16
- package/es/lowcode/engine/meta/split.props.default.json +4 -12
- package/es/lowcode/engine/meta/table.props.default.json +9 -29
- package/es/lowcode/engine/meta/tabs.props.default.json +9 -17
- package/es/lowcode/engine/meta/text.props.default.json +3 -11
- package/es/lowcode/engine/meta/tree.props.default.json +8 -16
- package/es/lowcode/engine/provider/ContextProvider.js +41 -46
- package/es/lowcode/engine/provider/EventBusProvider.js +2 -2
- package/es/lowcode/engine/tools/dataProcess.js +8 -85
- package/es/lowcode/engine/tools/helper.js +0 -68
- package/es/lowcode/engine/tools/lcid.js +16 -0
- package/es/lowcode/index.js +1 -3
- package/es/lowcode/painter/Design.js +85 -40
- package/es/lowcode/painter/I18n.js +2 -202
- package/es/lowcode/painter/Outline.js +54 -63
- package/es/lowcode/painter/Panel.js +2 -239
- package/es/lowcode/painter/Ribbon.js +55 -61
- package/es/lowcode/painter/components/PanelItem.js +11 -83
- package/es/lowcode/painter/components/RuleInput.js +7 -9
- package/es/lowcode/painter/index.js +3 -33
- package/es/lowcode/painter/panel-section/LayoutRatio.js +49 -57
- package/es/lowcode/painter/panel-section/Radio.js +58 -0
- package/es/lowcode/painter/style/design.less +5 -116
- package/es/lowcode/painter/style/index.less +1 -0
- package/es/lowcode/painter/style/layout-ratio.less +1 -1
- package/es/lowcode/painter/style/outline.less +0 -2
- package/es/lowcode/painter/style/panel-item.less +12 -45
- package/es/lowcode/painter/style/panel.less +0 -124
- package/es/lowcode/painter/style/ribbon.less +0 -1
- package/es/lowcode/view/Canvas.js +70 -79
- package/es/lowcode/view/Page.js +28 -10
- package/es/lowcode/view/index.js +6 -5
- package/es/lowcode/view/lc-components/Box/index.js +5 -22
- package/es/lowcode/view/lc-components/Button/index.js +7 -75
- package/es/lowcode/view/lc-components/Dialog/index.js +11 -20
- package/es/lowcode/view/lc-components/Dialog/index.less +1 -1
- package/es/lowcode/view/lc-components/Drawer/index.js +9 -22
- package/es/lowcode/view/lc-components/Layout/index.js +7 -40
- package/es/lowcode/view/lc-components/Table/index.js +9 -229
- package/es/lowcode/view/lc-components/Wrapper.js +23 -32
- package/es/lowcode/view/style/page.less +1 -0
- package/es/services.js +24 -7
- package/es/upload/Form/gridForm.js +5 -4
- package/es/upload/FormItem/index.js +4 -3
- package/es/utils/form.js +37 -3
- package/es/utils/grid.js +9 -8
- package/lib/components/Builder/index.js +25 -20
- package/lib/components/LdAutoForm/index.js +14 -4
- package/lib/components/LdFormList/index.js +5 -1
- package/lib/components/LdGrid/index.js +15 -18
- package/lib/components/LdGridForm/index.js +11 -3
- package/lib/helper/form.js +8 -2
- package/lib/helper/ldBuilder.js +4 -1
- package/lib/lowcode/constants/api-url.js +2 -294
- package/lib/lowcode/constants/event-topics.js +2 -15
- package/lib/lowcode/engine/meta/button.props.default.json +7 -15
- package/lib/lowcode/engine/meta/cardlist.props.default.json +9 -17
- package/{es/lowcode/engine/meta/button.props.json → lib/lowcode/engine/meta/components/button.json} +103 -126
- package/lib/lowcode/engine/meta/{cardlist.props.json → components/card-list.json} +142 -143
- package/lib/lowcode/engine/meta/{drawer.props.json → components/drawer.json} +142 -143
- package/lib/lowcode/engine/meta/{form.props.json → components/form.json} +115 -116
- package/{es/lowcode/engine/meta/iframe.props.json → lib/lowcode/engine/meta/components/iframe.json} +30 -31
- package/{es/lowcode/engine/meta/image.props.json → lib/lowcode/engine/meta/components/image.json} +112 -113
- package/{es/lowcode/engine/meta/imex.props.json → lib/lowcode/engine/meta/components/imex.json} +80 -81
- package/lib/lowcode/engine/meta/{jsx.props.json → components/jsx.json} +23 -24
- package/lib/lowcode/engine/meta/{layout.props.json → components/layout.json} +106 -107
- package/{es/lowcode/engine/meta/link.props.json → lib/lowcode/engine/meta/components/link.json} +110 -111
- package/lib/lowcode/engine/meta/{dialog.props.json → components/modal.json} +119 -120
- package/{es/lowcode/engine/meta/section.props.json → lib/lowcode/engine/meta/components/section.json} +106 -107
- package/{es/lowcode/engine/meta/split.props.json → lib/lowcode/engine/meta/components/split.json} +70 -71
- package/lib/lowcode/{view/lc-components/CardList/meta.json → engine/meta/components/table.json} +28 -11
- package/{es/lowcode/engine/meta/tabs.props.json → lib/lowcode/engine/meta/components/tabs.json} +139 -140
- package/{es/lowcode/engine/meta/text.props.json → lib/lowcode/engine/meta/components/text.json} +64 -65
- package/lib/lowcode/engine/meta/{tree.props.json → components/tree.json} +155 -156
- package/lib/lowcode/engine/meta/components-list.json +121 -127
- package/lib/lowcode/engine/meta/drawer.props.default.json +9 -17
- package/lib/lowcode/engine/meta/form.props.default.json +4 -12
- package/lib/lowcode/engine/meta/iframe.props.default.json +2 -10
- package/lib/lowcode/engine/meta/image.props.default.json +7 -15
- package/lib/lowcode/engine/meta/imex.props.default.json +3 -11
- package/lib/lowcode/engine/meta/jsx.props.default.json +1 -10
- package/lib/lowcode/engine/meta/layout.props.default.json +4 -12
- package/lib/lowcode/engine/meta/link.props.default.json +5 -13
- package/lib/lowcode/engine/meta/modal.props.default.json +11 -0
- package/lib/lowcode/engine/meta/section.props.default.json +8 -16
- package/lib/lowcode/engine/meta/split.props.default.json +4 -12
- package/lib/lowcode/engine/meta/table.props.default.json +9 -29
- package/lib/lowcode/engine/meta/tabs.props.default.json +9 -17
- package/lib/lowcode/engine/meta/text.props.default.json +3 -11
- package/lib/lowcode/engine/meta/tree.props.default.json +8 -16
- package/lib/lowcode/engine/provider/ContextProvider.js +41 -46
- package/lib/lowcode/engine/provider/EventBusProvider.js +2 -2
- package/lib/lowcode/engine/tools/dataProcess.js +8 -86
- package/lib/lowcode/engine/tools/helper.js +0 -70
- package/lib/lowcode/engine/tools/lcid.js +22 -0
- package/lib/lowcode/index.js +1 -5
- package/lib/lowcode/painter/Design.js +84 -39
- package/lib/lowcode/painter/I18n.js +2 -203
- package/lib/lowcode/painter/Outline.js +53 -62
- package/lib/lowcode/painter/Panel.js +1 -238
- package/lib/lowcode/painter/Ribbon.js +64 -63
- package/lib/lowcode/painter/components/PanelItem.js +11 -84
- package/lib/lowcode/painter/components/RuleInput.js +7 -9
- package/lib/lowcode/painter/index.js +3 -35
- package/lib/lowcode/painter/panel-section/LayoutRatio.js +48 -56
- package/lib/lowcode/painter/panel-section/Radio.js +65 -0
- package/lib/lowcode/painter/style/design.less +5 -116
- package/lib/lowcode/painter/style/index.less +1 -0
- package/lib/lowcode/painter/style/layout-ratio.less +1 -1
- package/lib/lowcode/painter/style/outline.less +0 -2
- package/lib/lowcode/painter/style/panel-item.less +12 -45
- package/lib/lowcode/painter/style/panel.less +0 -124
- package/lib/lowcode/painter/style/ribbon.less +0 -1
- package/lib/lowcode/view/Canvas.js +75 -84
- package/lib/lowcode/view/Page.js +27 -9
- package/lib/lowcode/view/index.js +6 -5
- package/lib/lowcode/view/lc-components/Box/index.js +6 -23
- package/lib/lowcode/view/lc-components/Button/index.js +8 -76
- package/lib/lowcode/view/lc-components/Dialog/index.js +11 -20
- package/lib/lowcode/view/lc-components/Dialog/index.less +1 -1
- package/lib/lowcode/view/lc-components/Drawer/index.js +9 -22
- package/lib/lowcode/view/lc-components/Layout/index.js +8 -41
- package/lib/lowcode/view/lc-components/Table/index.js +8 -228
- package/lib/lowcode/view/lc-components/Wrapper.js +21 -30
- package/lib/lowcode/view/style/page.less +1 -0
- package/lib/services.js +25 -7
- package/lib/upload/Form/gridForm.js +5 -4
- package/lib/upload/FormItem/index.js +4 -3
- package/lib/utils/form.js +38 -3
- package/lib/utils/grid.js +11 -10
- package/package.json +6 -15
- package/es/lowcode/engine/factory/panel-item-factory/DynamicStrategy.js +0 -60
- package/es/lowcode/engine/factory/panel-item-factory/GroupStrategy.js +0 -32
- package/es/lowcode/engine/factory/panel-item-factory/NumberStrategy.js +0 -32
- package/es/lowcode/engine/factory/panel-item-factory/SegmentedStrategy.js +0 -32
- package/es/lowcode/engine/factory/panel-item-factory/SelectStrategy.js +0 -53
- package/es/lowcode/engine/factory/panel-item-factory/Strategy.js +0 -21
- package/es/lowcode/engine/factory/panel-item-factory/StringStrategy.js +0 -51
- package/es/lowcode/engine/factory/panel-item-factory/SwitchStrategy.js +0 -42
- package/es/lowcode/engine/factory/panel-item-factory/index.js +0 -44
- package/es/lowcode/engine/meta/box.props.default.json +0 -12
- package/es/lowcode/engine/meta/box.props.json +0 -42
- package/es/lowcode/engine/meta/dialog.props.default.json +0 -19
- package/es/lowcode/engine/meta/js-editor/auto-complete.json +0 -29
- package/es/lowcode/engine/meta/table.props.json +0 -236
- package/es/lowcode/engine/tools/usePromiseState.js +0 -24
- package/es/lowcode/painter/DesignOperator.js +0 -271
- package/es/lowcode/painter/DesignToolbar.js +0 -91
- package/es/lowcode/painter/components/Collapse.js +0 -90
- package/es/lowcode/painter/components/ColorInput.js +0 -125
- package/es/lowcode/painter/components/ListEditor.js +0 -89
- package/es/lowcode/painter/components/NumberInput.js +0 -148
- package/es/lowcode/painter/components/PopConfirm.js +0 -23
- package/es/lowcode/painter/components/PopForm.js +0 -71
- package/es/lowcode/painter/components/SortBox.js +0 -92
- package/es/lowcode/painter/components/actions-editor/ActionEditor.js +0 -147
- package/es/lowcode/painter/components/actions-editor/index.js +0 -170
- package/es/lowcode/painter/components/code-editor/BaseEditor.js +0 -96
- package/es/lowcode/painter/components/code-editor/CssEditor.js +0 -41
- package/es/lowcode/painter/components/code-editor/FullScreenEditor.js +0 -87
- package/es/lowcode/painter/components/code-editor/JSEditor.js +0 -106
- package/es/lowcode/painter/components/code-editor/index.js +0 -2
- package/es/lowcode/painter/panel-section/ButtonType.js +0 -39
- package/es/lowcode/painter/panel-section/DataSetSelector.js +0 -61
- package/es/lowcode/painter/panel-section/Icon.js +0 -48
- package/es/lowcode/painter/panel-section/IconSelector.js +0 -134
- package/es/lowcode/painter/panel-section/StylePanel/BackGround.js +0 -61
- package/es/lowcode/painter/panel-section/StylePanel/Border.js +0 -150
- package/es/lowcode/painter/panel-section/StylePanel/BorderRadius.js +0 -87
- package/es/lowcode/painter/panel-section/StylePanel/BorderRadiusSelector.js +0 -66
- package/es/lowcode/painter/panel-section/StylePanel/BorderSelector.js +0 -66
- package/es/lowcode/painter/panel-section/StylePanel/Display.js +0 -296
- package/es/lowcode/painter/panel-section/StylePanel/DisplaySvg.js +0 -543
- package/es/lowcode/painter/panel-section/StylePanel/Font.js +0 -162
- package/es/lowcode/painter/panel-section/StylePanel/FontEditor.js +0 -386
- package/es/lowcode/painter/panel-section/StylePanel/GapSelector.js +0 -78
- package/es/lowcode/painter/panel-section/StylePanel/HighLightPanel.js +0 -23
- package/es/lowcode/painter/panel-section/StylePanel/HighLigthtSpan.js +0 -20
- package/es/lowcode/painter/panel-section/StylePanel/HightLightSvg.js +0 -23
- package/es/lowcode/painter/panel-section/StylePanel/MainPanel.js +0 -96
- package/es/lowcode/painter/panel-section/StylePanel/Margin.js +0 -60
- package/es/lowcode/painter/panel-section/StylePanel/Opacity.js +0 -50
- package/es/lowcode/painter/panel-section/StylePanel/Padding.js +0 -61
- package/es/lowcode/painter/panel-section/StylePanel/Pointer.js +0 -41
- package/es/lowcode/painter/panel-section/StylePanel/Shadow.js +0 -216
- package/es/lowcode/painter/panel-section/StylePanel/Size.js +0 -53
- package/es/lowcode/painter/panel-section/StylePanel/StyleContext.js +0 -148
- package/es/lowcode/painter/panel-section/StylePanel/StyleRow.js +0 -16
- package/es/lowcode/painter/panel-section/StylePanel/WidthHeight.js +0 -51
- package/es/lowcode/painter/panel-section/StylePanel/index.js +0 -29
- package/es/lowcode/painter/panel-section/TabItems.js +0 -207
- package/es/lowcode/painter/panel-section/TableActions.js +0 -19
- package/es/lowcode/painter/panel-section/TableZebra.js +0 -14
- package/es/lowcode/painter/panel-section/WidthHeight.js +0 -39
- package/es/lowcode/painter/services/I18n.js +0 -85
- package/es/lowcode/painter/style/actions-editor.less +0 -16
- package/es/lowcode/painter/style/border-editor.less +0 -36
- package/es/lowcode/painter/style/border-radius-selector.less +0 -43
- package/es/lowcode/painter/style/border-selector.less +0 -40
- package/es/lowcode/painter/style/button-type.less +0 -5
- package/es/lowcode/painter/style/collapse.less +0 -22
- package/es/lowcode/painter/style/color-input.less +0 -19
- package/es/lowcode/painter/style/display.less +0 -17
- package/es/lowcode/painter/style/font-editor.less +0 -9
- package/es/lowcode/painter/style/fullscreen-editor.less +0 -17
- package/es/lowcode/painter/style/icon-selector.less +0 -22
- package/es/lowcode/painter/style/icon.less +0 -11
- package/es/lowcode/painter/style/list-editor.less +0 -59
- package/es/lowcode/painter/style/number-input.less +0 -17
- package/es/lowcode/painter/style/pop-confirm.less +0 -10
- package/es/lowcode/painter/style/pop-form.less +0 -20
- package/es/lowcode/painter/style/style-panel.less +0 -37
- package/es/lowcode/painter/style/tabitems.less +0 -90
- package/es/lowcode/view/lc-components/Box/FunctionDesign.js +0 -20
- package/es/lowcode/view/lc-components/Box/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Box/index.less +0 -15
- package/es/lowcode/view/lc-components/Box/meta.json +0 -42
- package/es/lowcode/view/lc-components/Button/FunctionDesign.js +0 -21
- package/es/lowcode/view/lc-components/Button/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Button/meta.json +0 -127
- package/es/lowcode/view/lc-components/Button/style.less +0 -3
- package/es/lowcode/view/lc-components/CardList/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/CardList/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Dialog/FunctionDesign.js +0 -54
- package/es/lowcode/view/lc-components/Dialog/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Dialog/meta.json +0 -121
- package/es/lowcode/view/lc-components/Drawer/FunctionDesign.js +0 -20
- package/es/lowcode/view/lc-components/Drawer/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Drawer/index.less +0 -7
- package/es/lowcode/view/lc-components/Drawer/meta.json +0 -144
- package/es/lowcode/view/lc-components/Form/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/Form/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Form/meta.json +0 -117
- package/es/lowcode/view/lc-components/Iframe/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/Iframe/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Iframe/meta.json +0 -32
- package/es/lowcode/view/lc-components/ImEx/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/ImEx/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/ImEx/meta.json +0 -82
- package/es/lowcode/view/lc-components/Image/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/Image/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Image/meta.json +0 -114
- package/es/lowcode/view/lc-components/JSX/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/JSX/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/JSX/meta.json +0 -25
- package/es/lowcode/view/lc-components/Layout/FunctionDesign.js +0 -75
- package/es/lowcode/view/lc-components/Layout/FunctionLive.js +0 -15
- package/es/lowcode/view/lc-components/Layout/index.less +0 -5
- package/es/lowcode/view/lc-components/Layout/meta.json +0 -108
- package/es/lowcode/view/lc-components/Link/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/Link/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Link/meta.json +0 -112
- package/es/lowcode/view/lc-components/Section/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/Section/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Section/meta.json +0 -108
- package/es/lowcode/view/lc-components/Split/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/Split/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Split/meta.json +0 -72
- package/es/lowcode/view/lc-components/Table/FunctionDesign.js +0 -18
- package/es/lowcode/view/lc-components/Table/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Table/meta.json +0 -225
- package/es/lowcode/view/lc-components/Tabs/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/Tabs/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Tabs/meta.json +0 -141
- package/es/lowcode/view/lc-components/Text/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/Text/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Text/meta.json +0 -66
- package/es/lowcode/view/lc-components/Tree/FunctionDesign.js +0 -9
- package/es/lowcode/view/lc-components/Tree/FunctionLive.js +0 -9
- package/es/lowcode/view/lc-components/Tree/meta.json +0 -157
- package/lib/lowcode/engine/factory/panel-item-factory/DynamicStrategy.js +0 -73
- package/lib/lowcode/engine/factory/panel-item-factory/GroupStrategy.js +0 -38
- package/lib/lowcode/engine/factory/panel-item-factory/NumberStrategy.js +0 -38
- package/lib/lowcode/engine/factory/panel-item-factory/SegmentedStrategy.js +0 -38
- package/lib/lowcode/engine/factory/panel-item-factory/SelectStrategy.js +0 -59
- package/lib/lowcode/engine/factory/panel-item-factory/Strategy.js +0 -27
- package/lib/lowcode/engine/factory/panel-item-factory/StringStrategy.js +0 -57
- package/lib/lowcode/engine/factory/panel-item-factory/SwitchStrategy.js +0 -48
- package/lib/lowcode/engine/factory/panel-item-factory/index.js +0 -50
- package/lib/lowcode/engine/meta/box.props.default.json +0 -12
- package/lib/lowcode/engine/meta/box.props.json +0 -42
- package/lib/lowcode/engine/meta/dialog.props.default.json +0 -19
- package/lib/lowcode/engine/meta/js-editor/auto-complete.json +0 -29
- package/lib/lowcode/engine/meta/table.props.json +0 -236
- package/lib/lowcode/engine/tools/usePromiseState.js +0 -31
- package/lib/lowcode/painter/DesignOperator.js +0 -278
- package/lib/lowcode/painter/DesignToolbar.js +0 -99
- package/lib/lowcode/painter/components/Collapse.js +0 -97
- package/lib/lowcode/painter/components/ColorInput.js +0 -132
- package/lib/lowcode/painter/components/ListEditor.js +0 -95
- package/lib/lowcode/painter/components/NumberInput.js +0 -155
- package/lib/lowcode/painter/components/PopConfirm.js +0 -29
- package/lib/lowcode/painter/components/PopForm.js +0 -77
- package/lib/lowcode/painter/components/SortBox.js +0 -99
- package/lib/lowcode/painter/components/actions-editor/ActionEditor.js +0 -155
- package/lib/lowcode/painter/components/actions-editor/index.js +0 -178
- package/lib/lowcode/painter/components/code-editor/BaseEditor.js +0 -103
- package/lib/lowcode/painter/components/code-editor/CssEditor.js +0 -48
- package/lib/lowcode/painter/components/code-editor/FullScreenEditor.js +0 -94
- package/lib/lowcode/painter/components/code-editor/JSEditor.js +0 -117
- package/lib/lowcode/painter/components/code-editor/index.js +0 -20
- package/lib/lowcode/painter/panel-section/ButtonType.js +0 -46
- package/lib/lowcode/painter/panel-section/DataSetSelector.js +0 -69
- package/lib/lowcode/painter/panel-section/Icon.js +0 -54
- package/lib/lowcode/painter/panel-section/IconSelector.js +0 -141
- package/lib/lowcode/painter/panel-section/StylePanel/BackGround.js +0 -68
- package/lib/lowcode/painter/panel-section/StylePanel/Border.js +0 -158
- package/lib/lowcode/painter/panel-section/StylePanel/BorderRadius.js +0 -95
- package/lib/lowcode/painter/panel-section/StylePanel/BorderRadiusSelector.js +0 -73
- package/lib/lowcode/painter/panel-section/StylePanel/BorderSelector.js +0 -73
- package/lib/lowcode/painter/panel-section/StylePanel/Display.js +0 -303
- package/lib/lowcode/painter/panel-section/StylePanel/DisplaySvg.js +0 -550
- package/lib/lowcode/painter/panel-section/StylePanel/Font.js +0 -170
- package/lib/lowcode/painter/panel-section/StylePanel/FontEditor.js +0 -392
- package/lib/lowcode/painter/panel-section/StylePanel/GapSelector.js +0 -85
- package/lib/lowcode/painter/panel-section/StylePanel/HighLightPanel.js +0 -29
- package/lib/lowcode/painter/panel-section/StylePanel/HighLigthtSpan.js +0 -26
- package/lib/lowcode/painter/panel-section/StylePanel/HightLightSvg.js +0 -29
- package/lib/lowcode/painter/panel-section/StylePanel/MainPanel.js +0 -103
- package/lib/lowcode/painter/panel-section/StylePanel/Margin.js +0 -67
- package/lib/lowcode/painter/panel-section/StylePanel/Opacity.js +0 -57
- package/lib/lowcode/painter/panel-section/StylePanel/Padding.js +0 -68
- package/lib/lowcode/painter/panel-section/StylePanel/Pointer.js +0 -48
- package/lib/lowcode/painter/panel-section/StylePanel/Shadow.js +0 -224
- package/lib/lowcode/painter/panel-section/StylePanel/Size.js +0 -59
- package/lib/lowcode/painter/panel-section/StylePanel/StyleContext.js +0 -159
- package/lib/lowcode/painter/panel-section/StylePanel/StyleRow.js +0 -22
- package/lib/lowcode/painter/panel-section/StylePanel/WidthHeight.js +0 -58
- package/lib/lowcode/painter/panel-section/StylePanel/index.js +0 -35
- package/lib/lowcode/painter/panel-section/TabItems.js +0 -215
- package/lib/lowcode/painter/panel-section/TableActions.js +0 -26
- package/lib/lowcode/painter/panel-section/TableZebra.js +0 -21
- package/lib/lowcode/painter/panel-section/WidthHeight.js +0 -46
- package/lib/lowcode/painter/services/I18n.js +0 -95
- package/lib/lowcode/painter/style/actions-editor.less +0 -16
- package/lib/lowcode/painter/style/border-editor.less +0 -36
- package/lib/lowcode/painter/style/border-radius-selector.less +0 -43
- package/lib/lowcode/painter/style/border-selector.less +0 -40
- package/lib/lowcode/painter/style/button-type.less +0 -5
- package/lib/lowcode/painter/style/collapse.less +0 -22
- package/lib/lowcode/painter/style/color-input.less +0 -19
- package/lib/lowcode/painter/style/display.less +0 -17
- package/lib/lowcode/painter/style/font-editor.less +0 -9
- package/lib/lowcode/painter/style/fullscreen-editor.less +0 -17
- package/lib/lowcode/painter/style/icon-selector.less +0 -22
- package/lib/lowcode/painter/style/icon.less +0 -11
- package/lib/lowcode/painter/style/list-editor.less +0 -59
- package/lib/lowcode/painter/style/number-input.less +0 -17
- package/lib/lowcode/painter/style/pop-confirm.less +0 -10
- package/lib/lowcode/painter/style/pop-form.less +0 -20
- package/lib/lowcode/painter/style/style-panel.less +0 -37
- package/lib/lowcode/painter/style/tabitems.less +0 -90
- package/lib/lowcode/view/lc-components/Box/FunctionDesign.js +0 -27
- package/lib/lowcode/view/lc-components/Box/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Box/index.less +0 -15
- package/lib/lowcode/view/lc-components/Box/meta.json +0 -42
- package/lib/lowcode/view/lc-components/Button/FunctionDesign.js +0 -28
- package/lib/lowcode/view/lc-components/Button/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Button/meta.json +0 -127
- package/lib/lowcode/view/lc-components/Button/style.less +0 -3
- package/lib/lowcode/view/lc-components/CardList/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/CardList/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Dialog/FunctionDesign.js +0 -62
- package/lib/lowcode/view/lc-components/Dialog/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Dialog/meta.json +0 -121
- package/lib/lowcode/view/lc-components/Drawer/FunctionDesign.js +0 -27
- package/lib/lowcode/view/lc-components/Drawer/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Drawer/index.less +0 -7
- package/lib/lowcode/view/lc-components/Drawer/meta.json +0 -144
- package/lib/lowcode/view/lc-components/Form/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/Form/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Form/meta.json +0 -117
- package/lib/lowcode/view/lc-components/Iframe/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/Iframe/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Iframe/meta.json +0 -32
- package/lib/lowcode/view/lc-components/ImEx/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/ImEx/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/ImEx/meta.json +0 -82
- package/lib/lowcode/view/lc-components/Image/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/Image/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Image/meta.json +0 -114
- package/lib/lowcode/view/lc-components/JSX/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/JSX/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/JSX/meta.json +0 -25
- package/lib/lowcode/view/lc-components/Layout/FunctionDesign.js +0 -82
- package/lib/lowcode/view/lc-components/Layout/FunctionLive.js +0 -22
- package/lib/lowcode/view/lc-components/Layout/index.less +0 -5
- package/lib/lowcode/view/lc-components/Layout/meta.json +0 -108
- package/lib/lowcode/view/lc-components/Link/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/Link/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Link/meta.json +0 -112
- package/lib/lowcode/view/lc-components/Section/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/Section/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Section/meta.json +0 -108
- package/lib/lowcode/view/lc-components/Split/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/Split/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Split/meta.json +0 -72
- package/lib/lowcode/view/lc-components/Table/FunctionDesign.js +0 -25
- package/lib/lowcode/view/lc-components/Table/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Table/meta.json +0 -225
- package/lib/lowcode/view/lc-components/Tabs/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/Tabs/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Tabs/meta.json +0 -141
- package/lib/lowcode/view/lc-components/Text/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/Text/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Text/meta.json +0 -66
- package/lib/lowcode/view/lc-components/Tree/FunctionDesign.js +0 -16
- package/lib/lowcode/view/lc-components/Tree/FunctionLive.js +0 -16
- package/lib/lowcode/view/lc-components/Tree/meta.json +0 -157
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"component": "Section",
|
|
3
|
-
"name": "分组",
|
|
4
|
-
"icon": "icon-section",
|
|
5
|
-
"group": "container",
|
|
6
|
-
"groupName": "布局",
|
|
7
|
-
"desc": "分组组件用于将相关组件或内容进行分组和组织。使用户能够轻松创建具有分组效果的界面,并根据需要进行定制。s",
|
|
8
|
-
"order": 1,
|
|
9
|
-
"props": [
|
|
10
|
-
{
|
|
11
|
-
"key": "fieldId",
|
|
12
|
-
"name": "唯一标识",
|
|
13
|
-
"desc": "组件的唯一标识符,不能够与其它组件重名,不能够为空,且只能够使用以字母开头的,下划线以及数字的组合",
|
|
14
|
-
"type": "string",
|
|
15
|
-
"disabled": true
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"key": "collapse",
|
|
19
|
-
"name": "折叠",
|
|
20
|
-
"desc": "是否采用折叠分组",
|
|
21
|
-
"type": "boolean",
|
|
22
|
-
"default": true
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"key": "showHeader",
|
|
26
|
-
"name": "显示头部",
|
|
27
|
-
"desc": "表示是否分组显示头部(仅在非折叠情况下有效)",
|
|
28
|
-
"type": "boolean",
|
|
29
|
-
"default": true
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"key": "title",
|
|
33
|
-
"name": "分组标题",
|
|
34
|
-
"desc": "表示分组标题的名称",
|
|
35
|
-
"type": "string",
|
|
36
|
-
"default": "分组"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"key": "icon",
|
|
40
|
-
"name": "图标",
|
|
41
|
-
"desc": "用于设置分组标题前面的图标",
|
|
42
|
-
"type": "Icon"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"key": "tooltip",
|
|
46
|
-
"name": "用户提示",
|
|
47
|
-
"desc": "用于设置分组的用户提示",
|
|
48
|
-
"type": "string"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"key": "subtitle",
|
|
52
|
-
"name": "副标题插槽",
|
|
53
|
-
"desc": "分组副标题的插槽内容",
|
|
54
|
-
"type": "string"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"key": "extra",
|
|
58
|
-
"name": "扩展区域插槽",
|
|
59
|
-
"desc": "分组扩展区域的插槽内容",
|
|
60
|
-
"type": "string"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"key": "showHeaderDivider",
|
|
64
|
-
"name": "头部分割线",
|
|
65
|
-
"desc": "是否展示头部分割线(仅在非折叠情况下有效)",
|
|
66
|
-
"type": "boolean",
|
|
67
|
-
"default": true
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"key": "showBorder",
|
|
71
|
-
"name": "显示边框",
|
|
72
|
-
"desc": "是否展示分组边框(仅在非折叠情况下有效)",
|
|
73
|
-
"type": "boolean",
|
|
74
|
-
"default": false
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"key": "withMargin",
|
|
78
|
-
"name": "外边距",
|
|
79
|
-
"desc": "是否展示外边距",
|
|
80
|
-
"type": "boolean",
|
|
81
|
-
"default": false
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"key": "withPadding",
|
|
85
|
-
"name": "内边距",
|
|
86
|
-
"desc": "是否展示内边距",
|
|
87
|
-
"type": "boolean",
|
|
88
|
-
"default": true
|
|
89
|
-
}
|
|
90
|
-
],
|
|
91
|
-
"style": {},
|
|
92
|
-
"advance": {
|
|
93
|
-
"events": [
|
|
94
|
-
{
|
|
95
|
-
"key": "onMount",
|
|
96
|
-
"name": "组件首次渲染时",
|
|
97
|
-
"desc": "在组件首次渲染时,执行方法",
|
|
98
|
-
"func": "(params)=>{\n\t\n}"
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"key": "onUnmount",
|
|
102
|
-
"name": "组件卸载时",
|
|
103
|
-
"desc": "在组件卸载时,执行方法。",
|
|
104
|
-
"func": "(params)=>{\n\t\n}"
|
|
105
|
-
}
|
|
106
|
-
]
|
|
107
|
-
}
|
|
108
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
9
|
-
var _index = _interopRequireDefault(require("./index"));
|
|
10
|
-
var _excluded = ["children"];
|
|
11
|
-
var FunctionDesign = function FunctionDesign(_ref) {
|
|
12
|
-
var children = _ref.children,
|
|
13
|
-
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
14
|
-
return /*#__PURE__*/React.createElement(_index.default, props, children);
|
|
15
|
-
};
|
|
16
|
-
var _default = exports.default = FunctionDesign;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
9
|
-
var _index = _interopRequireDefault(require("./index"));
|
|
10
|
-
var _excluded = ["children"];
|
|
11
|
-
var FunctionLive = function FunctionLive(_ref) {
|
|
12
|
-
var children = _ref.children,
|
|
13
|
-
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
14
|
-
return /*#__PURE__*/React.createElement(_index.default, props, children);
|
|
15
|
-
};
|
|
16
|
-
var _default = exports.default = FunctionLive;
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"component": "Split",
|
|
3
|
-
"name": "分割面板容器",
|
|
4
|
-
"icon": "icon-split",
|
|
5
|
-
"group": "container",
|
|
6
|
-
"groupName": "布局",
|
|
7
|
-
"desc": "分割面板容器是一种可以通过拖拽分割线调整面板大小的容器组件,用于创建页面布局或需要调整可视区域的布局场景",
|
|
8
|
-
"order": 1,
|
|
9
|
-
"props": [
|
|
10
|
-
{
|
|
11
|
-
"key": "fieldId",
|
|
12
|
-
"name": "唯一标识",
|
|
13
|
-
"desc": "组件的唯一标识符,不能够与其它组件重名,不能够为空,且只能够使用以字母开头的,下划线以及数字的组合",
|
|
14
|
-
"type": "string",
|
|
15
|
-
"disabled": true
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"key": "display",
|
|
19
|
-
"name": "展现形式",
|
|
20
|
-
"desc": "表示分割面板容器的展现形式",
|
|
21
|
-
"type": "_SplitDisplay",
|
|
22
|
-
"default": "normal"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"key": "split",
|
|
26
|
-
"name": "分割方向",
|
|
27
|
-
"desc": "分割面板容器的分割方向(仅display为normal时有效)",
|
|
28
|
-
"type": "radio",
|
|
29
|
-
"options": [
|
|
30
|
-
{
|
|
31
|
-
"label": "垂直",
|
|
32
|
-
"value": "vertical"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"label": "水平",
|
|
36
|
-
"value": "horizontal"
|
|
37
|
-
}
|
|
38
|
-
],
|
|
39
|
-
"default": "vertical"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"key": "ratio",
|
|
43
|
-
"name": "比率",
|
|
44
|
-
"desc": "表示分割面板容器所占比例的比率(仅display为normal时有效)",
|
|
45
|
-
"type": "string",
|
|
46
|
-
"default": "1:3"
|
|
47
|
-
}
|
|
48
|
-
],
|
|
49
|
-
"style": {},
|
|
50
|
-
"advance": {
|
|
51
|
-
"events": [
|
|
52
|
-
{
|
|
53
|
-
"key": "onMount",
|
|
54
|
-
"name": "组件首次渲染时",
|
|
55
|
-
"desc": "在组件首次渲染时,执行方法",
|
|
56
|
-
"func": "(params)=>{\n\t\n}"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"key": "onUnmount",
|
|
60
|
-
"name": "组件卸载时",
|
|
61
|
-
"desc": "在组件卸载时,执行方法。",
|
|
62
|
-
"func": "(params)=>{\n\t\n}"
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"key": "onChange",
|
|
66
|
-
"name": "尺寸变化事件",
|
|
67
|
-
"desc": "在面板尺寸发生变化时,执行方法",
|
|
68
|
-
"func": "(value)=>{\n\t\n}"
|
|
69
|
-
}
|
|
70
|
-
]
|
|
71
|
-
}
|
|
72
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
9
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
10
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
11
|
-
var _index = _interopRequireDefault(require("./index"));
|
|
12
|
-
var _classnames = _interopRequireDefault(require("classnames"));
|
|
13
|
-
var _index2 = require("../../../constants/index");
|
|
14
|
-
var _excluded = ["children", "className", "suppressPreset"];
|
|
15
|
-
var FunctionDesign = function FunctionDesign(_ref) {
|
|
16
|
-
var children = _ref.children,
|
|
17
|
-
className = _ref.className,
|
|
18
|
-
suppressPreset = _ref.suppressPreset,
|
|
19
|
-
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
20
|
-
return /*#__PURE__*/React.createElement(_index.default, (0, _extends2.default)({
|
|
21
|
-
className: (0, _classnames.default)(_index2.CELL_CLASS_NAME, (0, _defineProperty2.default)({}, className, !!className)),
|
|
22
|
-
suppressPreset: true
|
|
23
|
-
}, props), children);
|
|
24
|
-
};
|
|
25
|
-
var _default = exports.default = FunctionDesign;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
9
|
-
var _index = _interopRequireDefault(require("./index"));
|
|
10
|
-
var _excluded = ["children"];
|
|
11
|
-
var FunctionLive = function FunctionLive(_ref) {
|
|
12
|
-
var children = _ref.children,
|
|
13
|
-
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
14
|
-
return /*#__PURE__*/React.createElement(_index.default, props, children);
|
|
15
|
-
};
|
|
16
|
-
var _default = exports.default = FunctionLive;
|
|
@@ -1,225 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"component": "Table",
|
|
3
|
-
"name": "表格",
|
|
4
|
-
"desc": "用于展示和管理数据,实现数据的可视化和交互。用户可以根据配置数据集和表格属性,快速构建表格。",
|
|
5
|
-
"icon": "icon-table",
|
|
6
|
-
"group": "advance",
|
|
7
|
-
"groupName": "高级",
|
|
8
|
-
"order": 1,
|
|
9
|
-
"props": [
|
|
10
|
-
{
|
|
11
|
-
"key": "id",
|
|
12
|
-
"name": "唯一标识",
|
|
13
|
-
"type": "string",
|
|
14
|
-
"disabled": true
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"key": "dataset",
|
|
18
|
-
"name": "数据集",
|
|
19
|
-
"type": "_DataSetSelector"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"key": "autoLoad",
|
|
23
|
-
"name": "自动加载",
|
|
24
|
-
"desc": "首次数据是否自动加载,若存在必须带搜索条件再加载的情况,需要关闭",
|
|
25
|
-
"type": "switch",
|
|
26
|
-
"default": true
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"key": "readOnly",
|
|
30
|
-
"name": "只读",
|
|
31
|
-
"type": "switch",
|
|
32
|
-
"default": false
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"key": "suppressPreset",
|
|
36
|
-
"name": "关闭预设",
|
|
37
|
-
"type": "switch",
|
|
38
|
-
"default": false
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"key": "actionsColumn",
|
|
42
|
-
"name": "操作列",
|
|
43
|
-
"type": "group",
|
|
44
|
-
"default": true,
|
|
45
|
-
"next": {
|
|
46
|
-
"name": "操作列",
|
|
47
|
-
"props": [
|
|
48
|
-
{
|
|
49
|
-
"key": "suppressActions",
|
|
50
|
-
"name": "隐藏操作列",
|
|
51
|
-
"type": "switch",
|
|
52
|
-
"default": false
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"key": "actionsColumnWidth",
|
|
56
|
-
"name": "列宽",
|
|
57
|
-
"type": "_WidthHeight",
|
|
58
|
-
"options": [{ "label": "px", "value": "px" }],
|
|
59
|
-
"convertInt": true,
|
|
60
|
-
"default": 160
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"key": "actions",
|
|
64
|
-
"name": "#操作项",
|
|
65
|
-
"desc": "单行操作项",
|
|
66
|
-
"type": "_TableActions",
|
|
67
|
-
"default": {"display": "text", "max": 2, "todoList": []},
|
|
68
|
-
"panelItem": { "suppressPadding": true }
|
|
69
|
-
}
|
|
70
|
-
]
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"key": "styleSetting",
|
|
75
|
-
"name": "风格和样式",
|
|
76
|
-
"type": "group",
|
|
77
|
-
"props": [
|
|
78
|
-
{
|
|
79
|
-
"key": "width",
|
|
80
|
-
"name": "宽度",
|
|
81
|
-
"type": "_WidthHeight",
|
|
82
|
-
"default": "100%"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"key": "height",
|
|
86
|
-
"name": "高度",
|
|
87
|
-
"type": "_WidthHeight",
|
|
88
|
-
"default": "100%"
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"key": "zebra",
|
|
92
|
-
"name": "斑马纹",
|
|
93
|
-
"type": "_TableZebra",
|
|
94
|
-
"default": false
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"key": "bordered",
|
|
98
|
-
"name": "边框线",
|
|
99
|
-
"type": "switch",
|
|
100
|
-
"default": false
|
|
101
|
-
}
|
|
102
|
-
]
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"key": "paginationSetting",
|
|
106
|
-
"name": "分页设置",
|
|
107
|
-
"type": "group",
|
|
108
|
-
"props": [
|
|
109
|
-
{
|
|
110
|
-
"key": "pagination",
|
|
111
|
-
"name": "开启分页",
|
|
112
|
-
"type": "switch",
|
|
113
|
-
"default": true
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"key": "showSizeChanger",
|
|
117
|
-
"name": "分页器",
|
|
118
|
-
"type": "switch",
|
|
119
|
-
"default": true
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"key": "showQuickJumper",
|
|
123
|
-
"name": "快速跳转",
|
|
124
|
-
"type": "switch",
|
|
125
|
-
"default": true
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"key": "hideOnSinglePage",
|
|
129
|
-
"name": "单页无分页器",
|
|
130
|
-
"desc": "只有一页时隐藏分页器",
|
|
131
|
-
"type": "switch",
|
|
132
|
-
"default": false
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"key": "paginationSimple",
|
|
136
|
-
"name": "简单分页",
|
|
137
|
-
"type": "switch",
|
|
138
|
-
"default": false
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"key": "pageSize",
|
|
142
|
-
"name": "每页条数",
|
|
143
|
-
"type": "number",
|
|
144
|
-
"default": 30
|
|
145
|
-
}
|
|
146
|
-
]
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"key": "batchOperations",
|
|
150
|
-
"name": "批量操作",
|
|
151
|
-
"desc": "批量操作配置",
|
|
152
|
-
"type": "_CardListActionSelector"
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"key": "batchActions",
|
|
156
|
-
"name": "批量操作项",
|
|
157
|
-
"desc": "批量操作项",
|
|
158
|
-
"type": "_ActionSelector"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"key": "rowStyle",
|
|
162
|
-
"name": "行样式",
|
|
163
|
-
"desc": "向行添加 CSS 样式",
|
|
164
|
-
"type": "_CSSEditor"
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"key": "cellStyle",
|
|
168
|
-
"name": "行样式",
|
|
169
|
-
"desc": "向行添加 CSS 样式",
|
|
170
|
-
"type": "_CSSEditor"
|
|
171
|
-
}
|
|
172
|
-
],
|
|
173
|
-
"advance": {
|
|
174
|
-
"events": [
|
|
175
|
-
{
|
|
176
|
-
"key": "onMount",
|
|
177
|
-
"name": "组件首次渲染时",
|
|
178
|
-
"desc": "在组件首次渲染时,执行方法",
|
|
179
|
-
"func": "(params)=>{\n\t\n}"
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"key": "onUnmount",
|
|
183
|
-
"name": "组件卸载时",
|
|
184
|
-
"desc": "在组件卸载时,执行方法。",
|
|
185
|
-
"func": "(params)=>{\n\t\n}"
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"key": "onBatchOperationsClick",
|
|
189
|
-
"name": "批量操作点击",
|
|
190
|
-
"desc": "点击操作的回调函数",
|
|
191
|
-
"func": "(key, selectedRows)=>{\n\t\n}"
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
"key": "onActionClick",
|
|
195
|
-
"name": "操作列点击",
|
|
196
|
-
"desc": "点击操作的回调函数",
|
|
197
|
-
"func": "(itemData)=>{\n\t\n}"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"key": "actionRender",
|
|
201
|
-
"name": "操作列定制渲染",
|
|
202
|
-
"desc": "返回为false时,该操作不可见",
|
|
203
|
-
"func": "(title, rowData)=>{\n\t\n}"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"key": "onRowClick",
|
|
207
|
-
"name": "行单击",
|
|
208
|
-
"desc": "单击表格行时,执行方法",
|
|
209
|
-
"func": "(data, rowIndex, params)=>{\n\t\n}"
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
"key": "onRowDoubleClick",
|
|
213
|
-
"name": "行双击",
|
|
214
|
-
"desc": "双击表格行时,执行方法",
|
|
215
|
-
"func": "(data, rowIndex, params)=>{\n\t\n}"
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"key": "onCellRender",
|
|
219
|
-
"name": "单元格渲染",
|
|
220
|
-
"desc": "当单元格渲染时,执行方法",
|
|
221
|
-
"func": "(data,rowIndex,column,params)=>{\n\t\n}"
|
|
222
|
-
}
|
|
223
|
-
]
|
|
224
|
-
}
|
|
225
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
9
|
-
var _index = _interopRequireDefault(require("./index"));
|
|
10
|
-
var _excluded = ["children"];
|
|
11
|
-
var FunctionDesign = function FunctionDesign(_ref) {
|
|
12
|
-
var children = _ref.children,
|
|
13
|
-
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
14
|
-
return /*#__PURE__*/React.createElement(_index.default, props, children);
|
|
15
|
-
};
|
|
16
|
-
var _default = exports.default = FunctionDesign;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
9
|
-
var _index = _interopRequireDefault(require("./index"));
|
|
10
|
-
var _excluded = ["children"];
|
|
11
|
-
var FunctionLive = function FunctionLive(_ref) {
|
|
12
|
-
var children = _ref.children,
|
|
13
|
-
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
14
|
-
return /*#__PURE__*/React.createElement(_index.default, props, children);
|
|
15
|
-
};
|
|
16
|
-
var _default = exports.default = FunctionLive;
|
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"component": "Tabs",
|
|
3
|
-
"name": "选项卡",
|
|
4
|
-
"icon": "icon-tabs",
|
|
5
|
-
"group": "container",
|
|
6
|
-
"groupName": "布局",
|
|
7
|
-
"desc": "用于显示多个相关内容并提供切换功能。它包含了标签项、形态、大小等配置选项,使用户能够创建具有选项卡切换功能的界面,并根据需要自定义选项卡的外观和尺寸。",
|
|
8
|
-
"order": 1,
|
|
9
|
-
"props": [
|
|
10
|
-
{
|
|
11
|
-
"key": "fieldId",
|
|
12
|
-
"name": "唯一标识",
|
|
13
|
-
"desc": "组件的唯一标识符,不能够与其它组件重名,不能够为空,且只能够使用以字母开头的,下划线以及数字的组合",
|
|
14
|
-
"type": "string",
|
|
15
|
-
"disabled": true
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"key": "items",
|
|
19
|
-
"name": "标签项",
|
|
20
|
-
"desc": "表示标签项或选项卡的集合",
|
|
21
|
-
"type": "_TabsItems",
|
|
22
|
-
"default": []
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"key": "shape",
|
|
26
|
-
"name": "形态",
|
|
27
|
-
"desc": "表示选项卡的形态或外观样式",
|
|
28
|
-
"type": "radio",
|
|
29
|
-
"options": [
|
|
30
|
-
{
|
|
31
|
-
"label": "普通型",
|
|
32
|
-
"value": "pure"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"label": "包裹型",
|
|
36
|
-
"value": "wrapped"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"label": "文本型",
|
|
40
|
-
"value": "text"
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"label": "胶囊型",
|
|
44
|
-
"value": "capsule"
|
|
45
|
-
}
|
|
46
|
-
],
|
|
47
|
-
"default": "pure"
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"key": "size",
|
|
51
|
-
"name": "大小",
|
|
52
|
-
"desc": "表示选项卡的形态或外观样式",
|
|
53
|
-
"type": "radio",
|
|
54
|
-
"options": [
|
|
55
|
-
{
|
|
56
|
-
"label": "小",
|
|
57
|
-
"value": "small"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"label": "中",
|
|
61
|
-
"value": "default"
|
|
62
|
-
}
|
|
63
|
-
],
|
|
64
|
-
"default": "default"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"key": "contentPadding",
|
|
68
|
-
"name": "内容间距",
|
|
69
|
-
"desc": "设定内容区的内间距,请输入合理的CSS padding值",
|
|
70
|
-
"type": "string",
|
|
71
|
-
"default": "20px 20px"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"key": "excessMode",
|
|
75
|
-
"name": "选项卡过多时的滑动模式",
|
|
76
|
-
"desc": "表示选项卡过多时的滑动模式",
|
|
77
|
-
"type": "radio",
|
|
78
|
-
"options": [
|
|
79
|
-
{
|
|
80
|
-
"label": "滑动",
|
|
81
|
-
"value": "slide"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"label": "下拉",
|
|
85
|
-
"value": "dropdown"
|
|
86
|
-
}
|
|
87
|
-
],
|
|
88
|
-
"default": "slide"
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"key": "unmountInactiveTabs",
|
|
92
|
-
"name": "切换销毁",
|
|
93
|
-
"desc": "表示选项卡切换时是否销毁非活动选项卡的内容",
|
|
94
|
-
"type": "boolean",
|
|
95
|
-
"default": false
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"key": "lazyLoad",
|
|
99
|
-
"name": "延迟加载",
|
|
100
|
-
"desc": "表示选项卡的延迟加载行为",
|
|
101
|
-
"type": "boolean",
|
|
102
|
-
"default": false
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"key": "needBadge",
|
|
106
|
-
"name": "开启徽标",
|
|
107
|
-
"desc": "表示选项卡是否开启徽标",
|
|
108
|
-
"type": "boolean",
|
|
109
|
-
"default": false
|
|
110
|
-
}
|
|
111
|
-
],
|
|
112
|
-
"style": {},
|
|
113
|
-
"advance": {
|
|
114
|
-
"events": [
|
|
115
|
-
{
|
|
116
|
-
"key": "onMount",
|
|
117
|
-
"name": "组件首次渲染时",
|
|
118
|
-
"desc": "在组件首次渲染时,执行方法",
|
|
119
|
-
"func": "(params)=>{\n\t\n}"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"key": "onUnmount",
|
|
123
|
-
"name": "组件卸载时",
|
|
124
|
-
"desc": "在组件卸载时,执行方法。",
|
|
125
|
-
"func": "(params)=>{\n\t\n}"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"key": "renderBadge",
|
|
129
|
-
"name": "徽标渲染",
|
|
130
|
-
"desc": "当needBadge为true时可配置。徽标渲染方法",
|
|
131
|
-
"func": "(tabItem)=>{\n\t\n}"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"key": "onExtraRender",
|
|
135
|
-
"name": "渲染导航栏附加内容",
|
|
136
|
-
"desc": "渲染导航栏附加内容方法",
|
|
137
|
-
"func": "(activeTab)=>{\n\t\n}"
|
|
138
|
-
}
|
|
139
|
-
]
|
|
140
|
-
}
|
|
141
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
9
|
-
var _index = _interopRequireDefault(require("./index"));
|
|
10
|
-
var _excluded = ["children"];
|
|
11
|
-
var FunctionDesign = function FunctionDesign(_ref) {
|
|
12
|
-
var children = _ref.children,
|
|
13
|
-
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
14
|
-
return /*#__PURE__*/React.createElement(_index.default, props, children);
|
|
15
|
-
};
|
|
16
|
-
var _default = exports.default = FunctionDesign;
|