diff --git a/packages/cli/tests/Core.spec.ts b/packages/cli/tests/Core.spec.ts index 3c42899f..c851660e 100644 --- a/packages/cli/tests/Core.spec.ts +++ b/packages/cli/tests/Core.spec.ts @@ -1,6 +1,7 @@ -import { describe, expect, test } from 'vitest'; import path from 'node:path'; +import { describe, expect, test } from 'vitest'; + import Core from '../src/Core'; describe('Core', () => { diff --git a/packages/design/src/Icon.vue b/packages/design/src/Icon.vue index 8b36ce77..0f25233a 100644 --- a/packages/design/src/Icon.vue +++ b/packages/design/src/Icon.vue @@ -1,10 +1,12 @@ - + diff --git a/packages/editor/src/fields/StyleSetter/Index.vue b/packages/editor/src/fields/StyleSetter/Index.vue new file mode 100644 index 00000000..4ca0d852 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/Index.vue @@ -0,0 +1,69 @@ + + + + + + {{ item.title }} + + + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/components/BackgroundPosition.vue b/packages/editor/src/fields/StyleSetter/components/BackgroundPosition.vue new file mode 100644 index 00000000..4e0bdf65 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/components/BackgroundPosition.vue @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/components/Border.vue b/packages/editor/src/fields/StyleSetter/components/Border.vue new file mode 100644 index 00000000..1ef7c0f1 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/components/Border.vue @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/components/Box.vue b/packages/editor/src/fields/StyleSetter/components/Box.vue new file mode 100644 index 00000000..4e1be9e6 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/components/Box.vue @@ -0,0 +1,68 @@ + + + + {{ item.text }} + + + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/components/Position.vue b/packages/editor/src/fields/StyleSetter/components/Position.vue new file mode 100644 index 00000000..7d3955de --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/components/Position.vue @@ -0,0 +1,49 @@ + + + + + + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/background-position/LeftBottom.vue b/packages/editor/src/fields/StyleSetter/icons/background-position/LeftBottom.vue new file mode 100644 index 00000000..c0efd483 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/background-position/LeftBottom.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/background-position/LeftCenter.vue b/packages/editor/src/fields/StyleSetter/icons/background-position/LeftCenter.vue new file mode 100644 index 00000000..c0efd483 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/background-position/LeftCenter.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/background-position/LeftTop.vue b/packages/editor/src/fields/StyleSetter/icons/background-position/LeftTop.vue new file mode 100644 index 00000000..c3fa51c9 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/background-position/LeftTop.vue @@ -0,0 +1,12 @@ + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/background-position/index.ts b/packages/editor/src/fields/StyleSetter/icons/background-position/index.ts new file mode 100644 index 00000000..8b075039 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/background-position/index.ts @@ -0,0 +1,3 @@ +export { default as BackgroundPositionLeftTop } from './LeftTop.vue'; +export { default as DisplayFlex } from './Flex.vue'; +export { default as DisplayInline } from './Inline.vue'; diff --git a/packages/editor/src/fields/StyleSetter/icons/background-repeat/NoRepeat.vue b/packages/editor/src/fields/StyleSetter/icons/background-repeat/NoRepeat.vue new file mode 100644 index 00000000..735fefa4 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/background-repeat/NoRepeat.vue @@ -0,0 +1,8 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/background-repeat/Repeat.vue b/packages/editor/src/fields/StyleSetter/icons/background-repeat/Repeat.vue new file mode 100644 index 00000000..23fc93f7 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/background-repeat/Repeat.vue @@ -0,0 +1,31 @@ + + + + + + + + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/background-repeat/RepeatX.vue b/packages/editor/src/fields/StyleSetter/icons/background-repeat/RepeatX.vue new file mode 100644 index 00000000..0d860375 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/background-repeat/RepeatX.vue @@ -0,0 +1,8 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/background-repeat/RepeatY.vue b/packages/editor/src/fields/StyleSetter/icons/background-repeat/RepeatY.vue new file mode 100644 index 00000000..3ef25430 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/background-repeat/RepeatY.vue @@ -0,0 +1,8 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/background-repeat/index.ts b/packages/editor/src/fields/StyleSetter/icons/background-repeat/index.ts new file mode 100644 index 00000000..9f1712d4 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/background-repeat/index.ts @@ -0,0 +1,4 @@ +export { default as BackgroundRepeat } from './Repeat.vue'; +export { default as BackgroundRepeatX } from './RepeatX.vue'; +export { default as BackgroundRepeatY } from './RepeatY.vue'; +export { default as BackgroundNoRepeat } from './NoRepeat.vue'; diff --git a/packages/editor/src/fields/StyleSetter/icons/display/Block.vue b/packages/editor/src/fields/StyleSetter/icons/display/Block.vue new file mode 100644 index 00000000..c0efd483 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/display/Block.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/display/Flex.vue b/packages/editor/src/fields/StyleSetter/icons/display/Flex.vue new file mode 100644 index 00000000..92ea418f --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/display/Flex.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/display/Inline.vue b/packages/editor/src/fields/StyleSetter/icons/display/Inline.vue new file mode 100644 index 00000000..80163908 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/display/Inline.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/display/InlineBlock.vue b/packages/editor/src/fields/StyleSetter/icons/display/InlineBlock.vue new file mode 100644 index 00000000..ed7c9083 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/display/InlineBlock.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/display/None.vue b/packages/editor/src/fields/StyleSetter/icons/display/None.vue new file mode 100644 index 00000000..d68ced2e --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/display/None.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/display/index.ts b/packages/editor/src/fields/StyleSetter/icons/display/index.ts new file mode 100644 index 00000000..566ad4a5 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/display/index.ts @@ -0,0 +1,5 @@ +export { default as DisplayBlock } from './Block.vue'; +export { default as DisplayFlex } from './Flex.vue'; +export { default as DisplayInline } from './Inline.vue'; +export { default as DisplayInlineBlock } from './InlineBlock.vue'; +export { default as DisplayNone } from './None.vue'; diff --git a/packages/editor/src/fields/StyleSetter/icons/flex-direction/Column.vue b/packages/editor/src/fields/StyleSetter/icons/flex-direction/Column.vue new file mode 100644 index 00000000..57725c20 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/flex-direction/Column.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/flex-direction/ColumnReverse.vue b/packages/editor/src/fields/StyleSetter/icons/flex-direction/ColumnReverse.vue new file mode 100644 index 00000000..1400bec9 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/flex-direction/ColumnReverse.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/flex-direction/Row.vue b/packages/editor/src/fields/StyleSetter/icons/flex-direction/Row.vue new file mode 100644 index 00000000..574098dc --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/flex-direction/Row.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/flex-direction/RowReverse.vue b/packages/editor/src/fields/StyleSetter/icons/flex-direction/RowReverse.vue new file mode 100644 index 00000000..fa1457f1 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/flex-direction/RowReverse.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/flex-direction/index.ts b/packages/editor/src/fields/StyleSetter/icons/flex-direction/index.ts new file mode 100644 index 00000000..c7e5c709 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/flex-direction/index.ts @@ -0,0 +1,4 @@ +export { default as FlexDirectionColumn } from './Column.vue'; +export { default as FlexDirectionColumnReverse } from './ColumnReverse.vue'; +export { default as FlexDirectionRow } from './Row.vue'; +export { default as FlexDirectionRowReverse } from './RowReverse.vue'; diff --git a/packages/editor/src/fields/StyleSetter/icons/justify-content/Center.vue b/packages/editor/src/fields/StyleSetter/icons/justify-content/Center.vue new file mode 100644 index 00000000..dea10b6f --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/justify-content/Center.vue @@ -0,0 +1,5 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/justify-content/FlexEnd.vue b/packages/editor/src/fields/StyleSetter/icons/justify-content/FlexEnd.vue new file mode 100644 index 00000000..c911956b --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/justify-content/FlexEnd.vue @@ -0,0 +1,5 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/justify-content/FlexStart.vue b/packages/editor/src/fields/StyleSetter/icons/justify-content/FlexStart.vue new file mode 100644 index 00000000..3be4ec8c --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/justify-content/FlexStart.vue @@ -0,0 +1,5 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/justify-content/SpaceAround.vue b/packages/editor/src/fields/StyleSetter/icons/justify-content/SpaceAround.vue new file mode 100644 index 00000000..fe9b803d --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/justify-content/SpaceAround.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/justify-content/SpaceBetween.vue b/packages/editor/src/fields/StyleSetter/icons/justify-content/SpaceBetween.vue new file mode 100644 index 00000000..0ebcf483 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/justify-content/SpaceBetween.vue @@ -0,0 +1,5 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/justify-content/index.ts b/packages/editor/src/fields/StyleSetter/icons/justify-content/index.ts new file mode 100644 index 00000000..fbc5431b --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/justify-content/index.ts @@ -0,0 +1,5 @@ +export { default as JustifyContentCenter } from './Center.vue'; +export { default as JustifyContentFlexEnd } from './FlexEnd.vue'; +export { default as JustifyContentFlexStart } from './FlexStart.vue'; +export { default as JustifyContentSpaceAround } from './SpaceAround.vue'; +export { default as JustifyContentSpaceBetween } from './SpaceBetween.vue'; diff --git a/packages/editor/src/fields/StyleSetter/icons/text-align/Center.vue b/packages/editor/src/fields/StyleSetter/icons/text-align/Center.vue new file mode 100644 index 00000000..ee998b76 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/text-align/Center.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/text-align/Left.vue b/packages/editor/src/fields/StyleSetter/icons/text-align/Left.vue new file mode 100644 index 00000000..0cd53b87 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/text-align/Left.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/text-align/Right.vue b/packages/editor/src/fields/StyleSetter/icons/text-align/Right.vue new file mode 100644 index 00000000..2d4b0236 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/text-align/Right.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/icons/text-align/index.ts b/packages/editor/src/fields/StyleSetter/icons/text-align/index.ts new file mode 100644 index 00000000..92af3aa4 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/icons/text-align/index.ts @@ -0,0 +1,3 @@ +export { default as AlignLeft } from './Left.vue'; +export { default as AlignCenter } from './Center.vue'; +export { default as AlignRight } from './Right.vue'; diff --git a/packages/editor/src/fields/StyleSetter/pro/Background.vue b/packages/editor/src/fields/StyleSetter/pro/Background.vue new file mode 100644 index 00000000..a5c97742 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/pro/Background.vue @@ -0,0 +1,78 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/pro/Border.vue b/packages/editor/src/fields/StyleSetter/pro/Border.vue new file mode 100644 index 00000000..0d2a2307 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/pro/Border.vue @@ -0,0 +1,35 @@ + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/pro/Font.vue b/packages/editor/src/fields/StyleSetter/pro/Font.vue new file mode 100644 index 00000000..0c21274f --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/pro/Font.vue @@ -0,0 +1,90 @@ + + + + + diff --git a/packages/editor/src/fields/StyleSetter/pro/Layout.vue b/packages/editor/src/fields/StyleSetter/pro/Layout.vue new file mode 100644 index 00000000..b01f9e99 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/pro/Layout.vue @@ -0,0 +1,164 @@ + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/pro/Position.vue b/packages/editor/src/fields/StyleSetter/pro/Position.vue new file mode 100644 index 00000000..2923252e --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/pro/Position.vue @@ -0,0 +1,48 @@ + + + + + + diff --git a/packages/editor/src/fields/StyleSetter/pro/index.ts b/packages/editor/src/fields/StyleSetter/pro/index.ts new file mode 100644 index 00000000..b1ef5376 --- /dev/null +++ b/packages/editor/src/fields/StyleSetter/pro/index.ts @@ -0,0 +1,5 @@ +export { default as Background } from './Background.vue'; +export { default as Font } from './Font.vue'; +export { default as Layout } from './Layout.vue'; +export { default as Position } from './Position.vue'; +export { default as Border } from './Border.vue'; diff --git a/packages/editor/src/index.ts b/packages/editor/src/index.ts index 043abec9..a6d0cbfc 100644 --- a/packages/editor/src/index.ts +++ b/packages/editor/src/index.ts @@ -39,6 +39,7 @@ import DisplayConds from './fields/DisplayConds.vue'; import EventSelect from './fields/EventSelect.vue'; import KeyValue from './fields/KeyValue.vue'; import PageFragmentSelect from './fields/PageFragmentSelect.vue'; +import StyleSetter from './fields/StyleSetter/Index.vue'; import uiSelect from './fields/UISelect.vue'; import CodeEditor from './layouts/CodeEditor.vue'; import { setEditorConfig } from './utils/config'; @@ -106,6 +107,7 @@ export { default as TreeNode } from './components/TreeNode.vue'; export { default as PageFragmentSelect } from './fields/PageFragmentSelect.vue'; export { default as DisplayConds } from './fields/DisplayConds.vue'; export { default as CondOpSelect } from './fields/CondOpSelect.vue'; +export { default as StyleSetter } from './fields/StyleSetter/Index.vue'; const defaultInstallOpt: EditorInstallOptions = { // eslint-disable-next-line no-eval @@ -143,5 +145,6 @@ export default { app.component('m-fields-page-fragment-select', PageFragmentSelect); app.component('m-fields-display-conds', DisplayConds); app.component('m-fields-cond-op-select', CondOpSelect); + app.component('m-form-style-setter', StyleSetter); }, }; diff --git a/packages/editor/src/theme/style-setter/background.scss b/packages/editor/src/theme/style-setter/background.scss new file mode 100644 index 00000000..f47934e0 --- /dev/null +++ b/packages/editor/src/theme/style-setter/background.scss @@ -0,0 +1,113 @@ +.background-position-container { + display: flex; + width: 100%; + .presets-value-list { + display: flex; + flex-wrap: wrap; + width: 80px; + height: auto; + .el-button { + & + .el-button { + margin-left: 2px; + } + &:nth-child(3n + 1) { + margin-left: 0 !important; + } + } + + .position-icon { + position: relative; + width: 14px; + height: 14px; + border: 1px solid #1d1f24; + &.active { + background-color: var(--el-color-primary); + &::after { + border: 1px solid #fff; + } + } + &::after { + position: absolute; + content: ""; + border: 1px solid #1d1f24; + box-sizing: border-box; + } + &.left-top { + &::after { + top: 1px; + left: 1px; + width: 6px; + height: 6px; + } + } + &.center-top { + &::after { + top: 1px; + left: 1px; + width: 12px; + height: 6px; + } + } + &.right-top { + &::after { + top: 1px; + right: 1px; + width: 6px; + height: 6px; + } + } + &.left-center { + &::after { + top: 1px; + left: 1px; + width: 6px; + height: 12px; + } + } + &.center-center { + &::after { + top: 1px; + left: 1px; + width: 12px; + height: 12px; + } + } + &.right-center { + &::after { + top: 1px; + right: 1px; + width: 6px; + height: 12px; + } + } + &.left-bottom { + &::after { + bottom: 1px; + left: 1px; + width: 6px; + height: 6px; + } + } + &.center-bottom { + &::after { + bottom: 1px; + left: 1px; + width: 12px; + height: 6px; + } + } + &.right-bottom { + &::after { + bottom: 1px; + right: 1px; + width: 6px; + height: 6px; + } + } + } + } + .custom-value { + position: relative; + flex: 1; + } +} diff --git a/packages/editor/src/theme/style-setter/border.scss b/packages/editor/src/theme/style-setter/border.scss new file mode 100644 index 00000000..bf39f4e3 --- /dev/null +++ b/packages/editor/src/theme/style-setter/border.scss @@ -0,0 +1,53 @@ +.border-box-container { + display: flex; + .border-icon-container { + display: flex; + flex-direction: column; + justify-content: center; + width: 88px; + &-row { + display: flex; + justify-content: center; + align-items: center; + & + .border-icon-container-row { + margin-top: 8px; + } + } + .border-icon { + box-sizing: border-box; + width: 16px; + height: 16px; + border-width: 1px; + border-color: #111; + border-style: solid; + cursor: pointer; + & + .border-icon { + margin-left: 8px; + } + &.active { + border-width: 1px; + border-color: var(--el-color-primary); + } + &.border-icon-top { + border-top-width: 2px; + border-style: solid dashed dashed dashed; + } + &.border-icon-right { + border-right-width: 2px; + border-style: dashed solid dashed dashed; + } + &.border-icon-bottom { + border-bottom-width: 2px; + border-style: dashed dashed solid dashed; + } + &.border-icon-left { + border-left-width: 2px; + border-style: dashed dashed dashed solid; + } + } + } + .border-value-container { + margin-left: 16px; + flex: 1; + } +} diff --git a/packages/editor/src/theme/style-setter/index.scss b/packages/editor/src/theme/style-setter/index.scss new file mode 100644 index 00000000..0645dd81 --- /dev/null +++ b/packages/editor/src/theme/style-setter/index.scss @@ -0,0 +1,16 @@ +@use "./border.scss"; +@use "./layout.scss"; +@use "./background.scss"; + +.m-fields-style-setter { + width: 100%; +} + +.text-align-list { + display: flex; + height: 100%; + + .btn-active { + color: var(--el-color-primary) !important; + } +} diff --git a/packages/editor/src/theme/style-setter/layout.scss b/packages/editor/src/theme/style-setter/layout.scss new file mode 100644 index 00000000..51c3cc2e --- /dev/null +++ b/packages/editor/src/theme/style-setter/layout.scss @@ -0,0 +1,200 @@ +// 盒子模型 +.layout-box-container { + position: relative; + margin: 0 0 16px 16px; + width: 270px; + height: 150px; + + .help-txt { + float: left; + margin-left: -10px; + transform: scale(0.75); + } + + .outer-top-border, + .inner-top-border, + .outer-right-border, + .inner-right-border, + .outer-bottom-border, + .inner-bottom-border, + .outer-left-border, + .inner-left-border { + position: absolute; + transition: all 0.3s ease; + .next-input { + position: absolute; + height: 20px; + input { + padding: 0; + width: 100%; + border: none; + outline: none; + margin: 0; + font-weight: 400; + vertical-align: top; + background-color: transparent; + color: #333; + text-align: center; + line-height: 20px; + height: 20px; + } + } + } + + // top + .outer-top-border, + .inner-top-border { + height: 0; + border-left: 20px solid transparent; + border-right: 20px solid transparent; + border-top: 20px solid #d6e4ff; + .next-input { + left: 0; + right: 0; + top: -20px; + } + } + + .outer-top-border { + top: 0; + left: 0; + right: 0; + } + + .inner-top-border { + top: 25px; + left: 25px; + right: 25px; + } + + .outer-top-border, + .inner-top-border { + &:hover { + border-top: 20px solid #bfd4fb; + } + } + + // right + .outer-right-border, + .inner-right-border { + width: 0; + border-top: 20px solid transparent; + border-bottom: 20px solid transparent; + border-right: 20px solid #d6e4ff; + + .next-input { + top: 0; + bottom: 0; + right: -20px; + width: 20px; + margin: auto; + input { + position: absolute; + top: 0; + bottom: 0; + left: 0; + margin: auto; + width: 20px; + } + } + } + + .outer-right-border { + top: 5px; + bottom: 5px; + right: 0; + } + + .inner-right-border { + top: 30px; + bottom: 30px; + right: 25px; + } + + .outer-right-border, + .inner-right-border { + &:hover { + border-right: 20px solid #bfd4fb; + } + } + + // bottom + .outer-bottom-border, + .inner-bottom-border { + height: 0; + border-left: 20px solid transparent; + border-right: 20px solid transparent; + border-bottom: 20px solid #d6e4ff; + + .next-input { + position: absolute; + left: 0; + right: 0; + bottom: -20px; + } + } + + .outer-bottom-border { + bottom: 0; + left: 0; + right: 0; + } + + .inner-bottom-border { + bottom: 25px; + left: 25px; + right: 25px; + } + + .outer-bottom-border, + .inner-bottom-border { + &:hover { + border-bottom: 20px solid #bfd4fb; + } + } + + // left + .outer-left-border, + .inner-left-border { + width: 0; + border-top: 20px solid transparent; + border-bottom: 20px solid transparent; + border-left: 20px solid #d6e4ff; + + .next-input { + position: absolute; + top: 0; + bottom: 0; + left: -20px; + width: 20px; + margin: auto; + input { + position: absolute; + top: 0; + bottom: 0; + right: 0; + margin: auto; + width: 20px; + } + } + } + + .outer-left-border { + top: 5px; + bottom: 5px; + left: 0; + } + + .inner-left-border { + top: 30px; + bottom: 30px; + left: 25px; + } + + .outer-left-border, + .inner-left-border { + &:hover { + border-left: 20px solid #bfd4fb; + } + } +} diff --git a/packages/editor/src/theme/theme.scss b/packages/editor/src/theme/theme.scss index 06da53ca..cc2dd0b7 100644 --- a/packages/editor/src/theme/theme.scss +++ b/packages/editor/src/theme/theme.scss @@ -26,3 +26,4 @@ @use "./page-fragment-select.scss"; @use "./data-source-field.scss"; @use "./data-source-field-select.scss"; +@use "./style-setter/index.scss"; diff --git a/packages/editor/src/utils/props.ts b/packages/editor/src/utils/props.ts index 45487828..0f1d954b 100644 --- a/packages/editor/src/utils/props.ts +++ b/packages/editor/src/utils/props.ts @@ -46,305 +46,60 @@ export const styleTabConfig: TabPaneConfig = { items: [ { name: 'style', + labelWidth: '100px', + type: 'style-setter', items: [ { - type: 'fieldset', - legend: '位置', - items: [ - { - type: 'data-source-field-select', - name: 'position', - text: '固定定位', - labelPosition: 'left', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'checkbox', - activeValue: 'fixed', - inactiveValue: 'absolute', - defaultValue: 'absolute', - }, - }, - { - type: 'data-source-field-select', - name: 'left', - text: 'left', - checkStrictly: false, - dataSourceFieldType: ['string', 'number'], - fieldConfig: { - type: 'text', - }, - }, - { - type: 'data-source-field-select', - name: 'top', - text: 'top', - checkStrictly: false, - dataSourceFieldType: ['string', 'number'], - fieldConfig: { - type: 'text', - }, - disabled: (_vm: FormState, { model }: any) => - model.position === 'fixed' && model._magic_position === 'fixedBottom', - }, - { - type: 'data-source-field-select', - name: 'right', - text: 'right', - checkStrictly: false, - dataSourceFieldType: ['string', 'number'], - fieldConfig: { - type: 'text', - }, - }, - { - type: 'data-source-field-select', - name: 'bottom', - text: 'bottom', - checkStrictly: false, - dataSourceFieldType: ['string', 'number'], - fieldConfig: { - type: 'text', - }, - disabled: (_vm: FormState, { model }: any) => - model.position === 'fixed' && model._magic_position === 'fixedTop', - }, - ], - }, - { - type: 'fieldset', - legend: '盒子', - items: [ - { - type: 'data-source-field-select', - name: 'display', - text: 'display', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'select', - clearable: true, - allowCreate: true, - options: [ - { text: 'block', value: 'block' }, - { text: 'flex', value: 'flex' }, - { text: 'none', value: 'none' }, - { text: 'inline-block', value: 'inline-block' }, - { text: 'grid', value: 'grid' }, - { text: 'inline', value: 'inline' }, - { text: 'initial', value: 'initial' }, - ], - }, - }, - { - type: 'data-source-field-select', - name: 'width', - text: '宽度', - checkStrictly: false, - dataSourceFieldType: ['string', 'number'], - fieldConfig: { - type: 'text', - }, - }, - { - type: 'data-source-field-select', - name: 'height', - text: '高度', - checkStrictly: false, - dataSourceFieldType: ['string', 'number'], - fieldConfig: { - type: 'text', - }, - }, - { - type: 'data-source-field-select', - text: 'overflow', - name: 'overflow', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'select', - clearable: true, - allowCreate: true, - options: [ - { text: 'visible', value: 'visible' }, - { text: 'hidden', value: 'hidden' }, - { text: 'clip', value: 'clip' }, - { text: 'scroll', value: 'scroll' }, - { text: 'auto', value: 'auto' }, - { text: 'overlay', value: 'overlay' }, - { text: 'initial', value: 'initial' }, - ], - }, - }, - ], - }, - { - type: 'fieldset', - legend: '边框', - items: [ - { - type: 'data-source-field-select', - name: 'borderWidth', - text: '宽度', - defaultValue: '0', - checkStrictly: false, - dataSourceFieldType: ['string', 'number'], - fieldConfig: { - type: 'text', - }, - }, - { - type: 'data-source-field-select', - name: 'borderColor', - text: '颜色', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'text', - }, - }, - { - type: 'data-source-field-select', - name: 'borderStyle', - text: '样式', - defaultValue: 'none', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'select', - options: [ - { text: 'none', value: 'none' }, - { text: 'hidden', value: 'hidden' }, - { text: 'dotted', value: 'dotted' }, - { text: 'dashed', value: 'dashed' }, - { text: 'solid', value: 'solid' }, - { text: 'double', value: 'double' }, - { text: 'groove', value: 'groove' }, - { text: 'ridge', value: 'ridge' }, - { text: 'inset', value: 'inset' }, - { text: 'outset', value: 'outset' }, - ], - }, - }, - ], - }, - { - type: 'fieldset', - legend: '背景', - items: [ - { - type: 'data-source-field-select', - name: 'backgroundImage', - text: '背景图', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'img-upload', - }, - }, - { - type: 'data-source-field-select', - name: 'backgroundColor', - text: '背景颜色', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'colorPicker', - }, - }, - { - type: 'data-source-field-select', - name: 'backgroundRepeat', - text: '背景图重复', - defaultValue: 'no-repeat', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'select', - options: [ - { text: 'repeat', value: 'repeat' }, - { text: 'repeat-x', value: 'repeat-x' }, - { text: 'repeat-y', value: 'repeat-y' }, - { text: 'no-repeat', value: 'no-repeat' }, - { text: 'inherit', value: 'inherit' }, - ], - }, - }, - { - type: 'data-source-field-select', - name: 'backgroundSize', - text: '背景图大小', - defaultValue: '100% 100%', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'text', - }, - }, - ], - }, - { - type: 'fieldset', - legend: '字体', - items: [ - { - type: 'data-source-field-select', - name: 'color', - text: '颜色', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'colorPicker', - }, - }, - { - type: 'data-source-field-select', - name: 'fontSize', - text: '大小', - checkStrictly: false, - dataSourceFieldType: ['string', 'number'], - fieldConfig: { - type: 'text', - }, - }, - { - type: 'data-source-field-select', - name: 'fontWeight', - text: '粗细', - checkStrictly: false, - dataSourceFieldType: ['string', 'number'], - fieldConfig: { - type: 'text', - }, - }, - ], - }, - { - type: 'fieldset', - legend: '变形', - name: 'transform', - items: [ - { - type: 'data-source-field-select', - name: 'rotate', - text: '旋转角度', - checkStrictly: false, - dataSourceFieldType: ['string'], - fieldConfig: { - type: 'text', - }, - }, - { - type: 'data-source-field-select', - name: 'scale', - text: '缩放', - checkStrictly: false, - dataSourceFieldType: ['number', 'string'], - fieldConfig: { - type: 'text', - }, - }, + names: [ + 'display', + 'flexDirection', + 'justifyContent', + 'alignItems', + 'flexWrap', + 'marginTop', + 'marginRight', + 'marginBottom', + 'marginLeft', + 'paddingTop', + 'paddingRight', + 'paddingBottom', + 'paddingLeft', + 'width', + 'height', + 'overflow', + 'fontSize', + 'lineHeight', + 'fontWeight', + 'color', + 'textAlign', + 'backgroundColor', + 'backgroundImage', + 'backgroundSize', + 'backgroundPosition', + 'backgroundRepeat', + 'position', + 'zIndex', + 'top', + 'right', + 'bottom', + 'left', + 'borderRadius', + 'borderTopWidth', + 'borderTopStyle', + 'borderTopColor', + 'borderRightColor', + 'borderRightWidth', + 'borderRightStyle', + 'borderRightColor', + 'borderBottomWidth', + 'borderBottomStyle', + 'borderBottomColor', + 'borderLeftStyle', + 'borderLeftWidth', + 'borderLeftColor', + 'borderWidth', + 'borderStyle', + 'borderColor', ], }, ], diff --git a/packages/form/src/containers/Container.vue b/packages/form/src/containers/Container.vue index 95af3e83..83c456cb 100644 --- a/packages/form/src/containers/Container.vue +++ b/packages/form/src/containers/Container.vue @@ -306,7 +306,12 @@ const itemProp = computed(() => { return `${n}`; }); -const tagName = computed(() => `m-${items.value ? 'form' : 'fields'}-${type.value}`); +const tagName = computed(() => { + if (type.value === 'component') { + return props.config.component; + } + return `m-${items.value ? 'form' : 'fields'}-${type.value}`; +}); const disabled = computed(() => props.disabled || filterFunction(mForm, props.config.disabled, props)); diff --git a/packages/form/src/fields/RadioGroup.vue b/packages/form/src/fields/RadioGroup.vue index 530a88fd..9e3a4fef 100644 --- a/packages/form/src/fields/RadioGroup.vue +++ b/packages/form/src/fields/RadioGroup.vue @@ -1,13 +1,30 @@ - - {{ - option.text - }} + + + + + + {{ option.text }} + + + + + {{ option.text }} + + diff --git a/packages/form/src/schema.ts b/packages/form/src/schema.ts index 0f454a30..eea165fe 100644 --- a/packages/form/src/schema.ts +++ b/packages/form/src/schema.ts @@ -438,9 +438,12 @@ export interface SwitchConfig extends FormItem { */ export interface RadioGroupConfig extends FormItem { type: 'radio-group'; + childType?: 'default' | 'button'; options: { value: string | number | boolean; text: string; + icon?: any; + tooltip?: string; }[]; } diff --git a/packages/schema/src/index.ts b/packages/schema/src/index.ts index 93f07227..5196d1b3 100644 --- a/packages/schema/src/index.ts +++ b/packages/schema/src/index.ts @@ -126,9 +126,7 @@ export interface MComponent { /** 显示条件中配置的数据源条件的编译结果 */ condResult?: boolean; /** 组件根Dom的style */ - style?: { - [key: string]: any; - }; + style?: StyleSchema; [NODE_CONDS_KEY]?: DisplayCond[]; [key: string]: any; } @@ -308,3 +306,7 @@ export interface UiComponentProps { config: T; model?: any; } + +export interface StyleSchema { + [key: string]: any; +} diff --git a/react-components/page-fragment-container/src/PageFragmentContainer.tsx b/react-components/page-fragment-container/src/PageFragmentContainer.tsx index 16f8e717..9bba6f33 100644 --- a/react-components/page-fragment-container/src/PageFragmentContainer.tsx +++ b/react-components/page-fragment-container/src/PageFragmentContainer.tsx @@ -13,13 +13,15 @@ interface PageFragmentContainerProps { iteratorContainerId: Id[]; } -const PageFragmentContainer: React.FC = ({ config, +const PageFragmentContainer: React.FC = ({ + config, id, style, className, containerIndex, iteratorIndex, - iteratorContainerId, }) => { + iteratorContainerId, +}) => { const { app } = useApp({ config, methods: {}, diff --git a/rollup.dts.config.js b/rollup.dts.config.js index a74226a5..726f6923 100644 --- a/rollup.dts.config.js +++ b/rollup.dts.config.js @@ -1,7 +1,8 @@ -import alias from '@rollup/plugin-alias'; import { existsSync, readdirSync, readFileSync, writeFileSync } from 'node:fs'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; + +import alias from '@rollup/plugin-alias'; import dts from 'rollup-plugin-dts'; if (!existsSync('temp')) {