Skip to content

Commit e1303f8

Browse files
committed
tooltip added
1 parent a3f9e29 commit e1303f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+57
-50
lines changed

client/packages/lowcoder-design/src/components/Section.tsx

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const ShowChildren = styled.div<{ $show?: string; $noMargin?: boolean }>`
7474
padding-right: ${(props) => (props.$noMargin ? 0 : "16px")};
7575
`;
7676

77-
const TooltipWrapper = styled.a`
77+
const TooltipWrapper = styled.span`
7878
word-wrap: break-word;
7979
word-break: break-word;
8080
white-space: pre-wrap;
@@ -88,7 +88,7 @@ interface ISectionConfig<T> {
8888
style?: React.CSSProperties;
8989
children: T;
9090
additionalButton?: React.ReactNode;
91-
tooltip?:string
91+
hasTooltip?: boolean;
9292
}
9393

9494
export interface PropertySectionState {
@@ -110,8 +110,7 @@ export const PropertySectionContext = React.createContext<PropertySectionContext
110110
});
111111

112112
export const BaseSection = (props: ISectionConfig<ReactNode>) => {
113-
const { name,tooltip } = props;
114-
console.log("🚀 ~ BaseSection ~ name:", name)
113+
const { name,hasTooltip } = props;
115114
const { compName, state, toggle } = useContext(PropertySectionContext);
116115
const open = props.open !== undefined ? props.open : name ? state[compName]?.[name] !== false : true;
117116

@@ -136,7 +135,15 @@ export const BaseSection = (props: ISectionConfig<ReactNode>) => {
136135
</SectionLabelDiv>
137136
)}
138137
<Tooltip
139-
title={tooltip && <TooltipWrapper href={tooltip}>{tooltip}</TooltipWrapper>}
138+
title={
139+
hasTooltip && (
140+
<TooltipWrapper>
141+
Here you can enter the animation type codes. Like bounce, swing or
142+
tada. Read more about all possible codes at:{" "}
143+
<a href="https://animate.style">https://animate.style</a>
144+
</TooltipWrapper>
145+
)
146+
}
140147
arrow={{
141148
pointAtCenter: true,
142149
}}

client/packages/lowcoder/src/comps/comps/autoCompleteComp/autoCompleteComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ let AutoCompleteCompBase = (function () {
352352
</Section>
353353
<Section
354354
name={sectionNames.animationStyle}
355-
tooltip="https://animate.style/"
355+
hasTooltip={true}
356356
>
357357
{children.animationStyle.getPropertyView()}
358358
</Section>

client/packages/lowcoder/src/comps/comps/buttonComp/floatButtonComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ let FloatButtonBasicComp = (function () {
150150
<Section name={sectionNames.style}>
151151
{children.style.getPropertyView()}
152152
</Section>
153-
<Section name={sectionNames.animationStyle}>
153+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
154154
{children.animationStyle.getPropertyView()}
155155
</Section>
156156
</>

client/packages/lowcoder/src/comps/comps/buttonComp/linkComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const LinkTmpComp = (function () {
139139
{(useContext(EditorContext).editorModeStatus === "layout" || useContext(EditorContext).editorModeStatus === "both") && (
140140
<>
141141
<Section name={sectionNames.style}>{children.style.getPropertyView()}</Section>
142-
<Section name={sectionNames.animationStyle}>{children.animationStyle.getPropertyView()}</Section>
142+
<Section name={sectionNames.animationStyle} hasTooltip={true}>{children.animationStyle.getPropertyView()}</Section>
143143
</>
144144
)}
145145
</>

client/packages/lowcoder/src/comps/comps/buttonComp/toggleButtonComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const ToggleTmpComp = (function () {
139139
})}
140140
{children.style.getPropertyView()}
141141
</Section>
142-
<Section name={sectionNames.animationStyle}>
142+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
143143
{children.animationStyle.getPropertyView()}
144144
</Section>
145145
</>

client/packages/lowcoder/src/comps/comps/carouselComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ let CarouselBasicComp = (function () {
108108
<Section name={sectionNames.style}>
109109
{children.style.getPropertyView()}
110110
</Section>
111-
<Section name={sectionNames.animationStyle}>
111+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
112112
{children.animationStyle.getPropertyView()}
113113
</Section>
114114
</>

client/packages/lowcoder/src/comps/comps/commentComp/commentComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ let CommentBasicComp = (function () {
424424
<Section name={sectionNames.style}>
425425
{children.style.getPropertyView()}
426426
</Section>
427-
<Section name={sectionNames.animationStyle}>
427+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
428428
{children.animationStyle.getPropertyView()}
429429
</Section></>
430430
)}

client/packages/lowcoder/src/comps/comps/containerComp/cardComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ export const ContainerBaseComp = (function () {
333333
<Section name={sectionNames.bodyStyle}>
334334
{children.bodyStyle.getPropertyView()}
335335
</Section>
336-
<Section name={sectionNames.animationStyle}>
336+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
337337
{children.animationStyle.getPropertyView()}
338338
</Section>
339339
</>

client/packages/lowcoder/src/comps/comps/containerComp/pageLayoutComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export const ContainerBaseComp = (function () {
5454
<Section name={sectionNames.style}>
5555
{ children.container.stylePropertyView() }
5656
</Section>
57-
<Section name={sectionNames.animationStyle}>
57+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
5858
{children.animationStyle.getPropertyView()}
5959
</Section>
6060
{children.container.children.showHeader.getView() && (

client/packages/lowcoder/src/comps/comps/containerComp/textContainerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export const ContainerBaseComp = (function () {
9696
<Section name={"Floating Text Style"}>
9797
{children.style.getPropertyView()}
9898
</Section>
99-
<Section name={sectionNames.animationStyle}>
99+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
100100
{children.animationStyle.getPropertyView()}
101101
</Section>
102102
<Section name={"Container Style"}>

client/packages/lowcoder/src/comps/comps/customComp/customComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ const CustomCompBase = new UICompBuilder(childrenMap, (props, dispatch) => {
247247
<Section name={sectionNames.style}>
248248
{children.style.getPropertyView()}
249249
</Section>
250-
<Section name={sectionNames.animationStyle}>
250+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
251251
{children.animationStyle.getPropertyView()}
252252
</Section>
253253
</>

client/packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ export const datePickerControl = new UICompBuilder(childrenMap, (props) => {
266266
<Section name={sectionNames.inputFieldStyle}>
267267
{children.inputFieldStyle.getPropertyView()}
268268
</Section>
269-
<Section name={sectionNames.animationStyle}>
269+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
270270
{children.animationStyle.getPropertyView()}
271271
</Section>
272272
</>

client/packages/lowcoder/src/comps/comps/dividerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export const DividerComp = migrateOldData(
129129
{children.dashed.propertyView({ label: trans("divider.dashed") })}
130130
{children.style.getPropertyView()}
131131
</Section>
132-
<Section name={sectionNames.animationStyle}>
132+
<Section name={sectionNames.animationStyle}hasTooltip={true}>
133133
{children.animationStyle.getPropertyView()}
134134
</Section>
135135
</>

client/packages/lowcoder/src/comps/comps/fileComp/fileComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ let FileTmpComp = new UICompBuilder(childrenMap, (props, dispatch) => (
427427
{(useContext(EditorContext).editorModeStatus === "layout" || useContext(EditorContext).editorModeStatus === "both") && (
428428
<>
429429
<Section name={sectionNames.style}>{children.style.getPropertyView()}</Section>
430-
<Section name={sectionNames.animationStyle}>{children.animationStyle.getPropertyView()}</Section>
430+
<Section name={sectionNames.animationStyle} hasTooltip={true}>{children.animationStyle.getPropertyView()}</Section>
431431
</>
432432
)}
433433
</>

client/packages/lowcoder/src/comps/comps/fileViewerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ let FileViewerBasicComp = (function () {
108108
<Section name={sectionNames.style}>
109109
{children.style.getPropertyView()}
110110
</Section>
111-
<Section name={sectionNames.animationStyle}>
111+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
112112
{children.animationStyle.getPropertyView()}
113113
</Section>
114114
</>

client/packages/lowcoder/src/comps/comps/formComp/formComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ const FormBaseComp = (function () {
237237
<Section name={sectionNames.style}>
238238
{children.container.stylePropertyView()}
239239
</Section>
240-
<Section name={sectionNames.animationStyle}>
240+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
241241
{children.animationStyle.getPropertyView()}
242242
</Section>
243243
{children.container.children.showHeader.getView() && (

client/packages/lowcoder/src/comps/comps/iconComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ let IconBasicComp = (function () {
143143
<Section name={sectionNames.style}>
144144
{children.style.getPropertyView()}
145145
</Section>
146-
<Section name={sectionNames.animationStyle}>
146+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
147147
{children.animationStyle.getPropertyView()}
148148
</Section>
149149
</>

client/packages/lowcoder/src/comps/comps/iframeComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ let IFrameCompBase = new UICompBuilder(
8787
<Section name={sectionNames.style}>
8888
{children.style.getPropertyView()}
8989
</Section>
90-
<Section name={sectionNames.animationStyle}>
90+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
9191
{children.animationStyle.getPropertyView()}
9292
</Section>
9393
</>

client/packages/lowcoder/src/comps/comps/imageComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ let ImageBasicComp = new UICompBuilder(childrenMap, (props) => {
204204
<Section name={sectionNames.style}>
205205
{children.style.getPropertyView()}
206206
</Section>
207-
<Section name={sectionNames.animationStyle}>
207+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
208208
{children.animationStyle.getPropertyView()}
209209
</Section>
210210
</>

client/packages/lowcoder/src/comps/comps/jsonComp/jsonEditorComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ let JsonEditorTmpComp = (function () {
142142
{(useContext(EditorContext).editorModeStatus === "layout" || useContext(EditorContext).editorModeStatus === "both") && (
143143
<>
144144
<Section name={sectionNames.style}>{children.style.getPropertyView()}</Section>
145-
<Section name={sectionNames.animationStyle}>{children.animationStyle.getPropertyView()}</Section>
145+
<Section name={sectionNames.animationStyle} hasTooltip={true}>{children.animationStyle.getPropertyView()}</Section>
146146
</>
147147
)}
148148

client/packages/lowcoder/src/comps/comps/jsonComp/jsonExplorerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ let JsonExplorerTmpComp = (function () {
9999
label: trans('jsonExplorer.theme'),
100100
})}
101101
</Section>
102-
<Section name={sectionNames.animationStyle}>
102+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
103103
{children.animationStyle.getPropertyView()}
104104
</Section>
105105
</>

client/packages/lowcoder/src/comps/comps/jsonComp/jsonLottieComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ let JsonLottieTmpComp = (function () {
166166
<Section name={sectionNames.style}>
167167
{children.container.getPropertyView()}
168168
</Section>
169-
<Section name={sectionNames.animationStyle}>
169+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
170170
{children.animationStyle.getPropertyView()}
171171
</Section>
172172
</>

client/packages/lowcoder/src/comps/comps/jsonSchemaFormComp/jsonSchemaFormComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ let FormBasicComp = (function () {
328328
<Section name={sectionNames.style}>
329329
{children.style.getPropertyView()}
330330
</Section>
331-
<Section name={sectionNames.animationStyle}>
331+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
332332
{children.animationStyle.getPropertyView()}
333333
</Section>
334334
</>

client/packages/lowcoder/src/comps/comps/listViewComp/listViewPropertyView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function listPropertyView(compType: ListCompType) {
8080
<Section name={sectionNames.style}>
8181
{children.style.getPropertyView()}
8282
</Section>
83-
<Section name={sectionNames.animationStyle}>
83+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
8484
{children.animationStyle.getPropertyView()}
8585
</Section></>
8686
)}

client/packages/lowcoder/src/comps/comps/mediaComp/audioComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ let AudioBasicComp = (function () {
102102
<Section name={sectionNames.style}>
103103
{children.style.getPropertyView()}
104104
</Section>
105-
<Section name={sectionNames.animationStyle}>
105+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
106106
{children.animationStyle.getPropertyView()}
107107
</Section>
108108
</>

client/packages/lowcoder/src/comps/comps/mediaComp/videoComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ let VideoBasicComp = (function () {
173173
<Section name={sectionNames.style}>
174174
{children.style.getPropertyView()}
175175
</Section>
176-
<Section name={sectionNames.animationStyle}>
176+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
177177
{children.animationStyle.getPropertyView()}
178178
</Section>
179179
</>

client/packages/lowcoder/src/comps/comps/navComp/navComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ const NavCompBase = new UICompBuilder(childrenMap, (props) => {
265265
<Section name={sectionNames.style}>
266266
{children.style.getPropertyView()}
267267
</Section>
268-
<Section name={sectionNames.animationStyle}>
268+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
269269
{children.animationStyle.getPropertyView()}
270270
</Section>
271271
</>

client/packages/lowcoder/src/comps/comps/numberInputComp/numberInputComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ let NumberInputTmpComp = (function () {
445445
<Section name={sectionNames.inputFieldStyle}>
446446
{children.inputFieldStyle.getPropertyView()}
447447
</Section>
448-
<Section name={sectionNames.animationStyle}>
448+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
449449
{children.animationStyle.getPropertyView()}
450450
</Section>
451451
</>

client/packages/lowcoder/src/comps/comps/numberInputComp/sliderCompConstants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export const SliderPropertyView = (
110110
<Section name={sectionNames.inputFieldStyle}>
111111
{children.inputFieldStyle.getPropertyView()}
112112
</Section>
113-
<Section name={sectionNames.animationStyle}>
113+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
114114
{children.animationStyle.getPropertyView()}
115115
</Section>
116116
</>

client/packages/lowcoder/src/comps/comps/progressCircleComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ let ProgressCircleTmpComp = (function () {
103103
<Section name={sectionNames.style}>
104104
{children.style.getPropertyView()}
105105
</Section>
106-
<Section name={sectionNames.animationStyle}>
106+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
107107
{children.animationStyle.getPropertyView()}
108108
</Section>
109109
</>

client/packages/lowcoder/src/comps/comps/progressComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const ProgressBasicComp = (function () {
9090
<Section name={sectionNames.style}>
9191
{children.style.getPropertyView()}
9292
</Section>
93-
<Section name={sectionNames.animationStyle}>
93+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
9494
{children.animationStyle.getPropertyView()}
9595
</Section>
9696
</>

client/packages/lowcoder/src/comps/comps/qrCodeComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ let QRCodeBasicComp = (function () {
112112
{children.style.getPropertyView()}
113113
{children.includeMargin.propertyView({ label: trans("QRCode.includeMargin") })}
114114
</Section>
115-
<Section name={sectionNames.animationStyle}>
115+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
116116
{children.animationStyle.getPropertyView()}
117117
</Section>
118118
</>

client/packages/lowcoder/src/comps/comps/ratingComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const RatingBasicComp = (function () {
130130
<Section name={sectionNames.inputFieldStyle}>
131131
{children.inputFieldStyle.getPropertyView()}
132132
</Section>
133-
<Section name={sectionNames.animationStyle}>
133+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
134134
{children.animationStyle.getPropertyView()}
135135
</Section>
136136
</>

client/packages/lowcoder/src/comps/comps/responsiveLayout/responsiveLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ export const ResponsiveLayoutBaseComp = (function () {
252252
<Section name={trans("responsiveLayout.columnStyle")}>
253253
{children.columnStyle.getPropertyView()}
254254
</Section>
255-
<Section name={sectionNames.animationStyle}>
255+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
256256
{children.animationStyle.getPropertyView()}
257257
</Section>
258258
</>

client/packages/lowcoder/src/comps/comps/selectInputComp/cascaderContants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export const CascaderPropertyView = (
8888
<Section name={'Children Input Field Style'}>
8989
{children.childrenInputFieldStyle.getPropertyView()}
9090
</Section>
91-
<Section name={sectionNames.animationStyle}>
91+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
9292
{children.animationStyle.getPropertyView()}
9393
</Section>
9494
</>

client/packages/lowcoder/src/comps/comps/selectInputComp/radioCompConstants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export const RadioPropertyView = (
9999
<Section name={sectionNames.style}>{children.style.getPropertyView()}</Section>
100100
<Section name={sectionNames.labelStyle}>{children.labelStyle.getPropertyView()}</Section>
101101
<Section name={sectionNames.inputFieldStyle}>{children.inputFieldStyle.getPropertyView()}</Section>
102-
<Section name={sectionNames.animationStyle}>{children.animationStyle.getPropertyView()}</Section>
102+
<Section name={sectionNames.animationStyle} hasTooltip={true}>{children.animationStyle.getPropertyView()}</Section>
103103
</>
104104
)}
105105
</>

client/packages/lowcoder/src/comps/comps/selectInputComp/segmentedControl.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ let SegmentedControlBasicComp = (function () {
144144
<Section name={sectionNames.style}>
145145
{children.style.getPropertyView()}
146146
</Section>
147-
<Section name={sectionNames.animationStyle}>
147+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
148148
{children.animationStyle.getPropertyView()}
149149
</Section>
150150
</>

client/packages/lowcoder/src/comps/comps/selectInputComp/stepControl.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ let StepControlBasicComp = (function () {
251251
<Section name={sectionNames.style}>
252252
{children.style.getPropertyView()}
253253
</Section>
254-
<Section name={sectionNames.animationStyle}>
254+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
255255
{children.animationStyle.getPropertyView()}
256256
</Section>
257257
</>

client/packages/lowcoder/src/comps/comps/switchComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ let SwitchTmpComp = (function () {
154154
<Section name={sectionNames.inputFieldStyle}>
155155
{children.inputFieldStyle.getPropertyView()}
156156
</Section>
157-
<Section name={sectionNames.animationStyle}>
157+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
158158
{children.animationStyle.getPropertyView()}
159159
</Section>
160160
</>

client/packages/lowcoder/src/comps/comps/tabs/tabbedContainerComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ export const TabbedContainerBaseComp = (function () {
335335
<Section name={"Body Style"}>
336336
{ children.bodyStyle.getPropertyView() }
337337
</Section>
338-
<Section name={sectionNames.animationStyle}>
338+
<Section name={sectionNames.animationStyle} hasTooltip={true}>
339339
{ children.animationStyle.getPropertyView() }
340340
</Section>
341341
</>

0 commit comments

Comments
 (0)