From 1973ff2f0ab9d18c4521e59f6c8044549c94ea1d Mon Sep 17 00:00:00 2001 From: Faran Javed Date: Sat, 24 May 2025 16:55:54 +0500 Subject: [PATCH] move tab-index position to the Interaction Section --- .../packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx | 4 ++-- .../packages/lowcoder/src/comps/comps/dateComp/timeComp.tsx | 4 ++-- .../src/comps/comps/numberInputComp/numberInputComp.tsx | 2 +- .../src/comps/comps/numberInputComp/rangeSliderComp.tsx | 1 - .../lowcoder/src/comps/comps/numberInputComp/sliderComp.tsx | 1 - .../src/comps/comps/numberInputComp/sliderCompConstants.tsx | 1 + .../src/comps/comps/selectInputComp/checkboxComp.tsx | 2 +- .../src/comps/comps/selectInputComp/radioCompConstants.tsx | 5 ++--- .../lowcoder/src/comps/comps/textInputComp/inputComp.tsx | 1 - .../src/comps/comps/textInputComp/textInputConstants.tsx | 2 +- 10 files changed, 10 insertions(+), 13 deletions(-) diff --git a/client/packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx b/client/packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx index 96de04abe..8068829d8 100644 --- a/client/packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/dateComp/dateComp.tsx @@ -326,6 +326,7 @@ const DatePickerTmpCmp = new UICompBuilder(childrenMap, (props) => { {disabledPropertyView(children)} {hiddenPropertyView(children)} {showDataLoadingIndicatorsPropertyView(children)} + {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} )} @@ -344,7 +345,6 @@ const DatePickerTmpCmp = new UICompBuilder(childrenMap, (props) => { <>
{timeFields(children, isMobile)} {children.suffixIcon.propertyView({ label: trans("button.suffixIcon") })} - {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })}
)} {(useContext(EditorContext).editorModeStatus === "logic" || useContext(EditorContext).editorModeStatus === "both") && !isMobile && commonAdvanceSection(children)} @@ -543,6 +543,7 @@ let DateRangeTmpCmp = (function () { {disabledPropertyView(children)} {hiddenPropertyView(children)} {showDataLoadingIndicatorsPropertyView(children)} + {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} )} @@ -560,7 +561,6 @@ let DateRangeTmpCmp = (function () { <>
{timeFields(children, isMobile)} {children.suffixIcon.propertyView({ label: trans("button.suffixIcon") })} - {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })}
)} {(useContext(EditorContext).editorModeStatus === "logic" || useContext(EditorContext).editorModeStatus === "both") && commonAdvanceSection(children)} diff --git a/client/packages/lowcoder/src/comps/comps/dateComp/timeComp.tsx b/client/packages/lowcoder/src/comps/comps/dateComp/timeComp.tsx index 101299d23..098d68593 100644 --- a/client/packages/lowcoder/src/comps/comps/dateComp/timeComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/dateComp/timeComp.tsx @@ -250,6 +250,7 @@ const TimePickerTmpCmp = new UICompBuilder(childrenMap, (props) => { {disabledPropertyView(children)} {hiddenPropertyView(children)} {showDataLoadingIndicatorsPropertyView(children)} + {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} )} @@ -266,7 +267,6 @@ const TimePickerTmpCmp = new UICompBuilder(childrenMap, (props) => { {commonAdvanceSection(children)} {children.use12Hours.propertyView({ label: trans("prop.use12Hours") })} {children.suffixIcon.propertyView({ label: trans("button.suffixIcon") })} - {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} )} @@ -428,6 +428,7 @@ const TimeRangeTmpCmp = (function () { {disabledPropertyView(children)} {hiddenPropertyView(children)} {showDataLoadingIndicatorsPropertyView(children)} + {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} )} @@ -444,7 +445,6 @@ const TimeRangeTmpCmp = (function () { {commonAdvanceSection(children)} {children.use12Hours.propertyView({ label: trans("prop.use12Hours") })} {children.suffixIcon.propertyView({ label: trans("button.suffixIcon") })} - {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} )} diff --git a/client/packages/lowcoder/src/comps/comps/numberInputComp/numberInputComp.tsx b/client/packages/lowcoder/src/comps/comps/numberInputComp/numberInputComp.tsx index 8718b1dc3..7dbacf900 100644 --- a/client/packages/lowcoder/src/comps/comps/numberInputComp/numberInputComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/numberInputComp/numberInputComp.tsx @@ -438,6 +438,7 @@ let NumberInputTmpComp = (function () { {children.onEvent.getPropertyView()} {disabledPropertyView(children)} {hiddenPropertyView(children)} + {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} )} @@ -458,7 +459,6 @@ let NumberInputTmpComp = (function () { })} {children.controls.propertyView({ label: trans("numberInput.controls") })} {readOnlyPropertyView(children)} - {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} )} diff --git a/client/packages/lowcoder/src/comps/comps/numberInputComp/rangeSliderComp.tsx b/client/packages/lowcoder/src/comps/comps/numberInputComp/rangeSliderComp.tsx index b2b42ec20..74b32347d 100644 --- a/client/packages/lowcoder/src/comps/comps/numberInputComp/rangeSliderComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/numberInputComp/rangeSliderComp.tsx @@ -88,7 +88,6 @@ const RangeSliderBasicComp = (function () { tooltip: trans("rangeSlider.stepTooltip"), })} {children.vertical.propertyView({ label: trans("slider.vertical") })} - {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} diff --git a/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderComp.tsx b/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderComp.tsx index 01a7d93b4..e31117cdf 100644 --- a/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderComp.tsx @@ -68,7 +68,6 @@ const SliderBasicComp = (function () { tooltip: trans("slider.stepTooltip"), })} {children.vertical.propertyView({ label: trans("slider.vertical") })} - {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} diff --git a/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderCompConstants.tsx b/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderCompConstants.tsx index 03b3c8673..ae4c5abd8 100644 --- a/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderCompConstants.tsx +++ b/client/packages/lowcoder/src/comps/comps/numberInputComp/sliderCompConstants.tsx @@ -104,6 +104,7 @@ const InteractionSection = memo(({ children }: { children: RecordConstructorToCo {disabledPropertyView(children)} {hiddenPropertyView(children)} {showDataLoadingIndicatorsPropertyView(children as any)} + {(children as any).tabIndex?.propertyView({ label: trans("prop.tabIndex") })} ); }); diff --git a/client/packages/lowcoder/src/comps/comps/selectInputComp/checkboxComp.tsx b/client/packages/lowcoder/src/comps/comps/selectInputComp/checkboxComp.tsx index a14983cfa..fd02cb40c 100644 --- a/client/packages/lowcoder/src/comps/comps/selectInputComp/checkboxComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/selectInputComp/checkboxComp.tsx @@ -65,7 +65,7 @@ export const getStyle = (style: CheckboxStyleType) => { } } - .ant-checkbox-inner) { + .ant-checkbox-inner { background-color: ${style.uncheckedBackground}; border-radius: ${style.radius}; border-color: ${style.checkedBorder}; diff --git a/client/packages/lowcoder/src/comps/comps/selectInputComp/radioCompConstants.tsx b/client/packages/lowcoder/src/comps/comps/selectInputComp/radioCompConstants.tsx index ff2e2893f..25efd5ef7 100644 --- a/client/packages/lowcoder/src/comps/comps/selectInputComp/radioCompConstants.tsx +++ b/client/packages/lowcoder/src/comps/comps/selectInputComp/radioCompConstants.tsx @@ -74,10 +74,9 @@ export const RadioPropertyView = ( {disabledPropertyView(children)} {hiddenPropertyView(children)} {showDataLoadingIndicatorsPropertyView(children as any)} - -
{children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} -
+ + )} {["layout", "both"].includes(useContext(EditorContext).editorModeStatus) && ( diff --git a/client/packages/lowcoder/src/comps/comps/textInputComp/inputComp.tsx b/client/packages/lowcoder/src/comps/comps/textInputComp/inputComp.tsx index 28626079c..cfbdfe042 100644 --- a/client/packages/lowcoder/src/comps/comps/textInputComp/inputComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/textInputComp/inputComp.tsx @@ -103,7 +103,6 @@ let InputBasicComp = new UICompBuilder(childrenMap, (props) => { {children.prefixIcon.propertyView({ label: trans("button.prefixIcon") })} {children.suffixIcon.propertyView({ label: trans("button.suffixIcon") })} {children.showCount.propertyView({ label: trans("prop.showCount") })} - {children.tabIndex.propertyView({ label: trans("prop.tabIndex") })} {allowClearPropertyView(children)} {readOnlyPropertyView(children)} diff --git a/client/packages/lowcoder/src/comps/comps/textInputComp/textInputConstants.tsx b/client/packages/lowcoder/src/comps/comps/textInputComp/textInputConstants.tsx index bec8c359e..c2ab8801b 100644 --- a/client/packages/lowcoder/src/comps/comps/textInputComp/textInputConstants.tsx +++ b/client/packages/lowcoder/src/comps/comps/textInputComp/textInputConstants.tsx @@ -275,6 +275,7 @@ export const TextInputInteractionSection = (children: TextInputComp) => ( {children.onEvent.getPropertyView()} {disabledPropertyView(children)} {showDataLoadingIndicatorsPropertyView(children as any)} + {(children as any).tabIndex?.propertyView({ label: trans("prop.tabIndex") })} ); @@ -308,7 +309,6 @@ export function getStyle(style: InputLikeStyleType, labelStyle?: LabelStyleType) text-decoration:${style.textDecoration}; background-color: ${style.background}; border-color: ${style.border}; - // line-height: ${style.lineHeight}; &:focus, &.ant-input-affix-wrapper-focused { pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy