diff --git a/client/packages/lowcoder-design/src/components/Section.tsx b/client/packages/lowcoder-design/src/components/Section.tsx index 8a34f8e04..92fc4f3f3 100644 --- a/client/packages/lowcoder-design/src/components/Section.tsx +++ b/client/packages/lowcoder-design/src/components/Section.tsx @@ -4,6 +4,7 @@ import styled from "styled-components"; import { ReactComponent as Packup } from "icons/icon-Pack-up.svg"; import { labelCss } from "./Label"; import { controlItem, ControlNode } from "./control"; +import { Tooltip } from "./toolTip"; const SectionItem = styled.div<{ $width?: number }>` width: ${(props) => (props.$width ? props.$width : 312)}px; @@ -73,6 +74,12 @@ const ShowChildren = styled.div<{ $show?: string; $noMargin?: boolean }>` padding-right: ${(props) => (props.$noMargin ? 0 : "16px")}; `; +const TooltipWrapper = styled.span` + word-wrap: break-word; + word-break: break-word; + white-space: pre-wrap; + color:#fff; +`; interface ISectionConfig { name?: string; open?: boolean; @@ -81,6 +88,7 @@ interface ISectionConfig { style?: React.CSSProperties; children: T; additionalButton?: React.ReactNode; + hasTooltip?: boolean; } export interface PropertySectionState { @@ -102,7 +110,7 @@ export const PropertySectionContext = React.createContext) => { - const { name } = props; + const { name,hasTooltip } = props; const { compName, state, toggle } = useContext(PropertySectionContext); const open = props.open !== undefined ? props.open : name ? state[compName]?.[name] !== false : true; @@ -118,17 +126,35 @@ export const BaseSection = (props: ISectionConfig) => { return ( {props.name && ( - + {props.name} -
+
{open && props.additionalButton} - +
)} - - {props.children} - + + Here you can enter the animation type codes. Like bounce, swing or + tada. Read more about all possible codes at:{" "} + https://animate.style + + ) + } + arrow={{ + pointAtCenter: true, + }} + placement="top" + color="#2c2c2c" + getPopupContainer={(node: any) => node.closest('.react-grid-item')} + > + + {props.children} + + ); }; diff --git a/client/packages/lowcoder/src/comps/comps/autoCompleteComp/autoCompleteComp.tsx b/client/packages/lowcoder/src/comps/comps/autoCompleteComp/autoCompleteComp.tsx index 5b7d697eb..5e4c16243 100644 --- a/client/packages/lowcoder/src/comps/comps/autoCompleteComp/autoCompleteComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/autoCompleteComp/autoCompleteComp.tsx @@ -293,38 +293,38 @@ let AutoCompleteCompBase = (function () { return ( <>
- {children.autoCompleteType.getView() === "normal" && + {children.autoCompleteType.getView() === 'normal' && children.prefixIcon.propertyView({ - label: trans("button.prefixIcon"), + label: trans('button.prefixIcon'), })} - {children.autoCompleteType.getView() === "normal" && + {children.autoCompleteType.getView() === 'normal' && children.suffixIcon.propertyView({ - label: trans("button.suffixIcon"), + label: trans('button.suffixIcon'), })} - {allowClearPropertyView(children)} + {allowClearPropertyView(children)}
-
+
{children.items.propertyView({ - label: trans("autoComplete.value"), + label: trans('autoComplete.value'), tooltip: itemsDataTooltip, - placeholder: "[]", + placeholder: '[]', })} - {getDayJSLocale() === "zh-cn" && + {getDayJSLocale() === 'zh-cn' && children.searchFirstPY.propertyView({ - label: trans("autoComplete.searchFirstPY"), + label: trans('autoComplete.searchFirstPY'), })} - {getDayJSLocale() === "zh-cn" && + {getDayJSLocale() === 'zh-cn' && children.searchCompletePY.propertyView({ - label: trans("autoComplete.searchCompletePY"), + label: trans('autoComplete.searchCompletePY'), })} {children.searchLabelOnly.propertyView({ - label: trans("autoComplete.searchLabelOnly"), + label: trans('autoComplete.searchLabelOnly'), })} {children.ignoreCase.propertyView({ - label: trans("autoComplete.ignoreCase"), + label: trans('autoComplete.ignoreCase'), })} {children.valueOrLabel.propertyView({ - label: trans("autoComplete.checkedValueFrom"), + label: trans('autoComplete.checkedValueFrom'), radioButton: true, })}
@@ -350,7 +350,10 @@ let AutoCompleteCompBase = (function () {
{children.inputFieldStyle.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/buttonComp/floatButtonComp.tsx b/client/packages/lowcoder/src/comps/comps/buttonComp/floatButtonComp.tsx index f2ce2bcc2..1797dd070 100644 --- a/client/packages/lowcoder/src/comps/comps/buttonComp/floatButtonComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/buttonComp/floatButtonComp.tsx @@ -150,7 +150,7 @@ let FloatButtonBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/buttonComp/linkComp.tsx b/client/packages/lowcoder/src/comps/comps/buttonComp/linkComp.tsx index 6a870a79e..b9e1a7031 100644 --- a/client/packages/lowcoder/src/comps/comps/buttonComp/linkComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/buttonComp/linkComp.tsx @@ -139,7 +139,7 @@ const LinkTmpComp = (function () { {(useContext(EditorContext).editorModeStatus === "layout" || useContext(EditorContext).editorModeStatus === "both") && ( <>
{children.style.getPropertyView()}
-
{children.animationStyle.getPropertyView()}
+
{children.animationStyle.getPropertyView()}
)} diff --git a/client/packages/lowcoder/src/comps/comps/buttonComp/toggleButtonComp.tsx b/client/packages/lowcoder/src/comps/comps/buttonComp/toggleButtonComp.tsx index 868e2ebae..e8238e4c2 100644 --- a/client/packages/lowcoder/src/comps/comps/buttonComp/toggleButtonComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/buttonComp/toggleButtonComp.tsx @@ -139,7 +139,7 @@ const ToggleTmpComp = (function () { })} {children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/carouselComp.tsx b/client/packages/lowcoder/src/comps/comps/carouselComp.tsx index 9ebe3df8d..6ad2edf60 100644 --- a/client/packages/lowcoder/src/comps/comps/carouselComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/carouselComp.tsx @@ -105,7 +105,7 @@ let CarouselBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/commentComp/commentComp.tsx b/client/packages/lowcoder/src/comps/comps/commentComp/commentComp.tsx index 0ec885664..d927b6795 100644 --- a/client/packages/lowcoder/src/comps/comps/commentComp/commentComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/commentComp/commentComp.tsx @@ -424,7 +424,7 @@ let CommentBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
)} diff --git a/client/packages/lowcoder/src/comps/comps/containerComp/cardComp.tsx b/client/packages/lowcoder/src/comps/comps/containerComp/cardComp.tsx index ac746e4c5..43fc1bcb7 100644 --- a/client/packages/lowcoder/src/comps/comps/containerComp/cardComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/containerComp/cardComp.tsx @@ -333,7 +333,7 @@ export const ContainerBaseComp = (function () {
{children.bodyStyle.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/containerComp/pageLayoutComp.tsx b/client/packages/lowcoder/src/comps/comps/containerComp/pageLayoutComp.tsx index 5164cd7dd..0439d0848 100644 --- a/client/packages/lowcoder/src/comps/comps/containerComp/pageLayoutComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/containerComp/pageLayoutComp.tsx @@ -54,7 +54,7 @@ export const ContainerBaseComp = (function () {
{ children.container.stylePropertyView() }
-
+
{children.animationStyle.getPropertyView()}
{children.container.children.showHeader.getView() && ( diff --git a/client/packages/lowcoder/src/comps/comps/containerComp/textContainerComp.tsx b/client/packages/lowcoder/src/comps/comps/containerComp/textContainerComp.tsx index 22260ba00..653363f01 100644 --- a/client/packages/lowcoder/src/comps/comps/containerComp/textContainerComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/containerComp/textContainerComp.tsx @@ -96,7 +96,7 @@ export const ContainerBaseComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/customComp/customComp.tsx b/client/packages/lowcoder/src/comps/comps/customComp/customComp.tsx index 0b7a3b5e3..ee9d4c754 100644 --- a/client/packages/lowcoder/src/comps/comps/customComp/customComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/customComp/customComp.tsx @@ -247,7 +247,7 @@ const CustomCompBase = new UICompBuilder(childrenMap, (props, dispatch) => {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx b/client/packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx index 777db3518..b3496eb12 100644 --- a/client/packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx @@ -266,7 +266,7 @@ export const datePickerControl = new UICompBuilder(childrenMap, (props) => {
{children.inputFieldStyle.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/dividerComp.tsx b/client/packages/lowcoder/src/comps/comps/dividerComp.tsx index 42f0307ea..3baf6b53d 100644 --- a/client/packages/lowcoder/src/comps/comps/dividerComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/dividerComp.tsx @@ -129,7 +129,7 @@ export const DividerComp = migrateOldData( {children.dashed.propertyView({ label: trans("divider.dashed") })} {children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/fileComp/fileComp.tsx b/client/packages/lowcoder/src/comps/comps/fileComp/fileComp.tsx index 91ac35e88..fa1e4a080 100644 --- a/client/packages/lowcoder/src/comps/comps/fileComp/fileComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/fileComp/fileComp.tsx @@ -427,7 +427,7 @@ let FileTmpComp = new UICompBuilder(childrenMap, (props, dispatch) => ( {(useContext(EditorContext).editorModeStatus === "layout" || useContext(EditorContext).editorModeStatus === "both") && ( <>
{children.style.getPropertyView()}
-
{children.animationStyle.getPropertyView()}
+
{children.animationStyle.getPropertyView()}
)} diff --git a/client/packages/lowcoder/src/comps/comps/fileViewerComp.tsx b/client/packages/lowcoder/src/comps/comps/fileViewerComp.tsx index a8bbe06ef..5f4ada67a 100644 --- a/client/packages/lowcoder/src/comps/comps/fileViewerComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/fileViewerComp.tsx @@ -106,7 +106,7 @@ let FileViewerBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/formComp/formComp.tsx b/client/packages/lowcoder/src/comps/comps/formComp/formComp.tsx index 3b231b4b7..4851011f9 100644 --- a/client/packages/lowcoder/src/comps/comps/formComp/formComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/formComp/formComp.tsx @@ -237,7 +237,7 @@ const FormBaseComp = (function () {
{children.container.stylePropertyView()}
-
+
{children.animationStyle.getPropertyView()}
{children.container.children.showHeader.getView() && ( diff --git a/client/packages/lowcoder/src/comps/comps/iconComp.tsx b/client/packages/lowcoder/src/comps/comps/iconComp.tsx index 1b3ab8fb8..d0ea40cf5 100644 --- a/client/packages/lowcoder/src/comps/comps/iconComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/iconComp.tsx @@ -143,7 +143,7 @@ let IconBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/iframeComp.tsx b/client/packages/lowcoder/src/comps/comps/iframeComp.tsx index 4b83af299..b0e7dd64f 100644 --- a/client/packages/lowcoder/src/comps/comps/iframeComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/iframeComp.tsx @@ -87,7 +87,7 @@ let IFrameCompBase = new UICompBuilder(
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/imageComp.tsx b/client/packages/lowcoder/src/comps/comps/imageComp.tsx index fa42c1a30..4b571764c 100644 --- a/client/packages/lowcoder/src/comps/comps/imageComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/imageComp.tsx @@ -204,7 +204,7 @@ let ImageBasicComp = new UICompBuilder(childrenMap, (props) => {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/jsonComp/jsonEditorComp.tsx b/client/packages/lowcoder/src/comps/comps/jsonComp/jsonEditorComp.tsx index 33995353c..9583c449a 100644 --- a/client/packages/lowcoder/src/comps/comps/jsonComp/jsonEditorComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/jsonComp/jsonEditorComp.tsx @@ -142,7 +142,7 @@ let JsonEditorTmpComp = (function () { {(useContext(EditorContext).editorModeStatus === "layout" || useContext(EditorContext).editorModeStatus === "both") && ( <>
{children.style.getPropertyView()}
-
{children.animationStyle.getPropertyView()}
+
{children.animationStyle.getPropertyView()}
)} diff --git a/client/packages/lowcoder/src/comps/comps/jsonComp/jsonExplorerComp.tsx b/client/packages/lowcoder/src/comps/comps/jsonComp/jsonExplorerComp.tsx index c0ed71fae..da9514c79 100644 --- a/client/packages/lowcoder/src/comps/comps/jsonComp/jsonExplorerComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/jsonComp/jsonExplorerComp.tsx @@ -99,7 +99,7 @@ let JsonExplorerTmpComp = (function () { label: trans('jsonExplorer.theme'), })}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/jsonComp/jsonLottieComp.tsx b/client/packages/lowcoder/src/comps/comps/jsonComp/jsonLottieComp.tsx index a24d72a33..078228642 100644 --- a/client/packages/lowcoder/src/comps/comps/jsonComp/jsonLottieComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/jsonComp/jsonLottieComp.tsx @@ -166,7 +166,7 @@ let JsonLottieTmpComp = (function () {
{children.container.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/jsonSchemaFormComp/jsonSchemaFormComp.tsx b/client/packages/lowcoder/src/comps/comps/jsonSchemaFormComp/jsonSchemaFormComp.tsx index 021325ddf..d80ee9f23 100644 --- a/client/packages/lowcoder/src/comps/comps/jsonSchemaFormComp/jsonSchemaFormComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/jsonSchemaFormComp/jsonSchemaFormComp.tsx @@ -328,7 +328,7 @@ let FormBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/listViewComp/listViewPropertyView.tsx b/client/packages/lowcoder/src/comps/comps/listViewComp/listViewPropertyView.tsx index 5069b9c61..dc597f041 100644 --- a/client/packages/lowcoder/src/comps/comps/listViewComp/listViewPropertyView.tsx +++ b/client/packages/lowcoder/src/comps/comps/listViewComp/listViewPropertyView.tsx @@ -80,7 +80,7 @@ export function listPropertyView(compType: ListCompType) {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
)} diff --git a/client/packages/lowcoder/src/comps/comps/mediaComp/audioComp.tsx b/client/packages/lowcoder/src/comps/comps/mediaComp/audioComp.tsx index e946c69f4..9ed308493 100644 --- a/client/packages/lowcoder/src/comps/comps/mediaComp/audioComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/mediaComp/audioComp.tsx @@ -102,7 +102,7 @@ let AudioBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/mediaComp/videoComp.tsx b/client/packages/lowcoder/src/comps/comps/mediaComp/videoComp.tsx index 767e2837f..7130c84e0 100644 --- a/client/packages/lowcoder/src/comps/comps/mediaComp/videoComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/mediaComp/videoComp.tsx @@ -176,7 +176,7 @@ let VideoBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/navComp/navComp.tsx b/client/packages/lowcoder/src/comps/comps/navComp/navComp.tsx index b67f84127..124829fb2 100644 --- a/client/packages/lowcoder/src/comps/comps/navComp/navComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/navComp/navComp.tsx @@ -265,7 +265,7 @@ const NavCompBase = new UICompBuilder(childrenMap, (props) => {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/numberInputComp/numberInputComp.tsx b/client/packages/lowcoder/src/comps/comps/numberInputComp/numberInputComp.tsx index 7b570ec64..f94935ef3 100644 --- a/client/packages/lowcoder/src/comps/comps/numberInputComp/numberInputComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/numberInputComp/numberInputComp.tsx @@ -445,7 +445,7 @@ let NumberInputTmpComp = (function () {
{children.inputFieldStyle.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderCompConstants.tsx b/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderCompConstants.tsx index ce086bd09..41bc79f6b 100644 --- a/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderCompConstants.tsx +++ b/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderCompConstants.tsx @@ -110,7 +110,7 @@ export const SliderPropertyView = (
{children.inputFieldStyle.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/progressCircleComp.tsx b/client/packages/lowcoder/src/comps/comps/progressCircleComp.tsx index 23ddb8fce..a001c7bd2 100644 --- a/client/packages/lowcoder/src/comps/comps/progressCircleComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/progressCircleComp.tsx @@ -103,7 +103,7 @@ let ProgressCircleTmpComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/progressComp.tsx b/client/packages/lowcoder/src/comps/comps/progressComp.tsx index 875fe5117..6e5dc49c9 100644 --- a/client/packages/lowcoder/src/comps/comps/progressComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/progressComp.tsx @@ -90,7 +90,7 @@ const ProgressBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/qrCodeComp.tsx b/client/packages/lowcoder/src/comps/comps/qrCodeComp.tsx index 710f91674..818c5267f 100644 --- a/client/packages/lowcoder/src/comps/comps/qrCodeComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/qrCodeComp.tsx @@ -112,7 +112,7 @@ let QRCodeBasicComp = (function () { {children.style.getPropertyView()} {children.includeMargin.propertyView({ label: trans("QRCode.includeMargin") })}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/ratingComp.tsx b/client/packages/lowcoder/src/comps/comps/ratingComp.tsx index f4b2cbab0..793cf67c2 100644 --- a/client/packages/lowcoder/src/comps/comps/ratingComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/ratingComp.tsx @@ -130,7 +130,7 @@ const RatingBasicComp = (function () {
{children.inputFieldStyle.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/responsiveLayout/responsiveLayout.tsx b/client/packages/lowcoder/src/comps/comps/responsiveLayout/responsiveLayout.tsx index e7000ae10..a5e131248 100644 --- a/client/packages/lowcoder/src/comps/comps/responsiveLayout/responsiveLayout.tsx +++ b/client/packages/lowcoder/src/comps/comps/responsiveLayout/responsiveLayout.tsx @@ -252,7 +252,7 @@ export const ResponsiveLayoutBaseComp = (function () {
{children.columnStyle.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/selectInputComp/cascaderContants.tsx b/client/packages/lowcoder/src/comps/comps/selectInputComp/cascaderContants.tsx index 1cddea94b..d0327419c 100644 --- a/client/packages/lowcoder/src/comps/comps/selectInputComp/cascaderContants.tsx +++ b/client/packages/lowcoder/src/comps/comps/selectInputComp/cascaderContants.tsx @@ -88,7 +88,7 @@ export const CascaderPropertyView = (
{children.childrenInputFieldStyle.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/selectInputComp/radioCompConstants.tsx b/client/packages/lowcoder/src/comps/comps/selectInputComp/radioCompConstants.tsx index f29b17baa..5e3989f6f 100644 --- a/client/packages/lowcoder/src/comps/comps/selectInputComp/radioCompConstants.tsx +++ b/client/packages/lowcoder/src/comps/comps/selectInputComp/radioCompConstants.tsx @@ -99,7 +99,7 @@ export const RadioPropertyView = (
{children.style.getPropertyView()}
{children.labelStyle.getPropertyView()}
{children.inputFieldStyle.getPropertyView()}
-
{children.animationStyle.getPropertyView()}
+
{children.animationStyle.getPropertyView()}
)} diff --git a/client/packages/lowcoder/src/comps/comps/selectInputComp/segmentedControl.tsx b/client/packages/lowcoder/src/comps/comps/selectInputComp/segmentedControl.tsx index 2b97a324b..c8309f4a5 100644 --- a/client/packages/lowcoder/src/comps/comps/selectInputComp/segmentedControl.tsx +++ b/client/packages/lowcoder/src/comps/comps/selectInputComp/segmentedControl.tsx @@ -144,7 +144,7 @@ let SegmentedControlBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/selectInputComp/stepControl.tsx b/client/packages/lowcoder/src/comps/comps/selectInputComp/stepControl.tsx index 2cf75d2eb..ab3a3e95c 100644 --- a/client/packages/lowcoder/src/comps/comps/selectInputComp/stepControl.tsx +++ b/client/packages/lowcoder/src/comps/comps/selectInputComp/stepControl.tsx @@ -251,7 +251,7 @@ let StepControlBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/switchComp.tsx b/client/packages/lowcoder/src/comps/comps/switchComp.tsx index 7c4820e37..687cde5c0 100644 --- a/client/packages/lowcoder/src/comps/comps/switchComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/switchComp.tsx @@ -154,7 +154,7 @@ let SwitchTmpComp = (function () {
{children.inputFieldStyle.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/tabs/tabbedContainerComp.tsx b/client/packages/lowcoder/src/comps/comps/tabs/tabbedContainerComp.tsx index 48d2738f0..dbfaf6755 100644 --- a/client/packages/lowcoder/src/comps/comps/tabs/tabbedContainerComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/tabs/tabbedContainerComp.tsx @@ -335,7 +335,7 @@ export const TabbedContainerBaseComp = (function () {
{ children.bodyStyle.getPropertyView() }
-
+
{ children.animationStyle.getPropertyView() }
diff --git a/client/packages/lowcoder/src/comps/comps/textComp.tsx b/client/packages/lowcoder/src/comps/comps/textComp.tsx index 18cf05727..49838b294 100644 --- a/client/packages/lowcoder/src/comps/comps/textComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/textComp.tsx @@ -188,7 +188,7 @@ let TextTmpComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/textInputComp/inputComp.tsx b/client/packages/lowcoder/src/comps/comps/textInputComp/inputComp.tsx index 349e30e67..a7d90f09b 100644 --- a/client/packages/lowcoder/src/comps/comps/textInputComp/inputComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/textInputComp/inputComp.tsx @@ -107,7 +107,7 @@ let InputBasicComp = new UICompBuilder(childrenMap, (props) => {
{children.style.getPropertyView()}
{children.labelStyle.getPropertyView()}
{children.inputFieldStyle.getPropertyView()}
-
{children.animationStyle.getPropertyView()}
+
{children.animationStyle.getPropertyView()}
)} diff --git a/client/packages/lowcoder/src/comps/comps/textInputComp/mentionComp.tsx b/client/packages/lowcoder/src/comps/comps/textInputComp/mentionComp.tsx index 0a5add0a5..18972f975 100644 --- a/client/packages/lowcoder/src/comps/comps/textInputComp/mentionComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/textInputComp/mentionComp.tsx @@ -267,7 +267,7 @@ let MentionTmpComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}
diff --git a/client/packages/lowcoder/src/comps/comps/textInputComp/passwordComp.tsx b/client/packages/lowcoder/src/comps/comps/textInputComp/passwordComp.tsx index 94b63ab77..689e49d7d 100644 --- a/client/packages/lowcoder/src/comps/comps/textInputComp/passwordComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/textInputComp/passwordComp.tsx @@ -115,7 +115,7 @@ let PasswordTmpComp = (function () {
{children.style.getPropertyView()}
{children.labelStyle.getPropertyView()}
{children.inputFieldStyle.getPropertyView()}
-
{children.animationStyle.getPropertyView()}
+
{children.animationStyle.getPropertyView()}
)} diff --git a/client/packages/lowcoder/src/comps/comps/textInputComp/textAreaComp.tsx b/client/packages/lowcoder/src/comps/comps/textInputComp/textAreaComp.tsx index 6171aeae4..b4dacae51 100644 --- a/client/packages/lowcoder/src/comps/comps/textInputComp/textAreaComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/textInputComp/textAreaComp.tsx @@ -125,7 +125,7 @@ let TextAreaTmpComp = (function () {
{children.style.getPropertyView()}
{children.labelStyle.getPropertyView()}
{children.inputFieldStyle.getPropertyView()}
-
{children.animationStyle.getPropertyView()}
+
{children.animationStyle.getPropertyView()}
)} diff --git a/client/packages/lowcoder/src/comps/comps/timerComp.tsx b/client/packages/lowcoder/src/comps/comps/timerComp.tsx index b54e06ff6..5db56ca3a 100644 --- a/client/packages/lowcoder/src/comps/comps/timerComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/timerComp.tsx @@ -250,7 +250,7 @@ let AvatarGroupBasicComp = (function () {
{children.style.getPropertyView()}
-
+
{children.animationStyle.getPropertyView()}