Skip to content

Fix/css issues #814

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Apr 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1261e67
translation key added
MenaamAfzal Apr 17, 2024
b6a4318
section names updated
MenaamAfzal Apr 17, 2024
1cd164f
component styles created
MenaamAfzal Apr 17, 2024
e42c53e
field styles added to input
MenaamAfzal Apr 17, 2024
d546b25
field styles added to autocomplae
MenaamAfzal Apr 17, 2024
e5e22a0
field styles added to radio
MenaamAfzal Apr 17, 2024
cd2470c
field styles added to checkbox
MenaamAfzal Apr 17, 2024
79aeeda
field styles added to cascader
MenaamAfzal Apr 17, 2024
32fcd8e
field style added to number input
MenaamAfzal Apr 17, 2024
347d61b
field style added to passwor
MenaamAfzal Apr 17, 2024
1e15ddd
field styles added to switch
MenaamAfzal Apr 17, 2024
c04c6fb
field style added to text area
MenaamAfzal Apr 17, 2024
2139d97
field style added to tree
MenaamAfzal Apr 17, 2024
e9b5142
field style added to tree select
MenaamAfzal Apr 17, 2024
f6222cd
field style added to date
MenaamAfzal Apr 17, 2024
c7c8ed8
field added to rating
MenaamAfzal Apr 17, 2024
756ba81
field style added to signature
MenaamAfzal Apr 17, 2024
0e4bb65
field style added to range
MenaamAfzal Apr 17, 2024
5bfc98d
field style added to slider
MenaamAfzal Apr 17, 2024
0297f46
field style added to select
MenaamAfzal Apr 18, 2024
12d5ff4
field style added to multi select
MenaamAfzal Apr 18, 2024
972c633
Merge branch 'dev' into fix/css-issues
FalkWolsky Apr 18, 2024
76a28c1
refactored variable name
MenaamAfzal Apr 19, 2024
fd38a9e
Merge branch 'dev' into fix/css-issues
FalkWolsky Apr 19, 2024
f636ffb
console removeed
MenaamAfzal Apr 19, 2024
394de1d
border improved
MenaamAfzal Apr 19, 2024
63bd4e3
bg color removed
MenaamAfzal Apr 20, 2024
70cec63
date time style updated
MenaamAfzal Apr 20, 2024
ba3cd73
local styles used
MenaamAfzal Apr 21, 2024
c3f9c34
bg color updated
MenaamAfzal Apr 21, 2024
d137a8c
Merge branch 'dev' into fix/css-issues
FalkWolsky Apr 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
field style added to passwor
  • Loading branch information
MenaamAfzal committed Apr 17, 2024
commit 347d61b51309e044f7f90d9ddffd4f8d1570a512
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
import { withMethodExposing } from "../../generators/withMethodExposing";
import { styleControl } from "comps/controls/styleControl";
import styled from "styled-components";
import { InputLikeStyle, InputLikeStyleType, LabelStyle } from "comps/controls/styleControlConstants";
import { ComponentStyle, InputLikeStyle, InputLikeStyleType, LabelStyle } from "comps/controls/styleControlConstants";
import {
hiddenPropertyView,
minLengthPropertyView,
Expand Down Expand Up @@ -58,7 +58,8 @@ let PasswordTmpComp = (function () {
visibilityToggle: BoolControl.DEFAULT_TRUE,
prefixIcon: IconControl,
style: styleControl(InputLikeStyle),
labelStyle: styleControl(LabelStyle)
labelStyle: styleControl(LabelStyle),
field: styleControl(ComponentStyle)
};
return new UICompBuilder(childrenMap, (props) => {
const [inputProps, validateState] = useTextInputProps(props);
Expand All @@ -74,7 +75,8 @@ let PasswordTmpComp = (function () {
/>
),
style: props.style,
labelStyle:props.labelStyle,
labelStyle: props.labelStyle,
field:props.field,
...validateState,
});
})
Expand Down Expand Up @@ -110,6 +112,7 @@ let PasswordTmpComp = (function () {
<>
<Section name={sectionNames.style}>{children.style.getPropertyView()}</Section>
<Section name={sectionNames.labelStyle}>{children.labelStyle.getPropertyView()}</Section>
<Section name={sectionNames.field}>{children.field.getPropertyView()}</Section>
</>
)}
</>
Expand Down