Skip to content

Commit 1f3c28e

Browse files
authored
Jia/_/fix update and fix ui (#799)
* fix: update and fix ui * chore: update custom dropdown
1 parent e087b98 commit 1f3c28e

File tree

7 files changed

+51
-63
lines changed

7 files changed

+51
-63
lines changed

package-lock.json

+42-62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"@binary-com/binary-document-uploader": "^2.4.4",
106106
"@binary-com/binary-style": "^0.2.26",
107107
"@binary-com/webtrader-charts": "^0.6.1",
108-
"@deriv-com/quill-ui": "^1.13.44",
108+
"@deriv-com/quill-ui": "^1.13.46",
109109
"@deriv/deriv-api": "^1.0.15",
110110
"@deriv/quill-icons": "^1.23.1",
111111
"@livechat/customer-sdk": "4.0.2",

src/javascript/app/pages/form/currency-dropdown.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export const CurrencyDropdown = ({ currency_list, currency, onUpdate, elementId
3737
<CustomDropdown
3838
value={currency}
3939
fullHeightOnOpen={false}
40+
containerClassName='input-wrapper-container'
4041
>
4142
<CurrencyContent
4243
currency_list={currency_list}

src/javascript/app/pages/form/dropdown-component.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export const DropdownComponent = ({ label = '', options, value, onUpdate, elemen
3535
value={value}
3636
label={label}
3737
fullHeightOnOpen={false}
38+
containerClassName='input-wrapper-container'
3839
>
3940
<DropdownContent
4041
options={options}

src/javascript/app/pages/form/numbers-dropdown.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export const NumbersDropdown = ({ value, label, start, end, elementId, onUpdate
2828
value={value}
2929
label={label}
3030
fullHeightOnOpen={false}
31+
containerClassName='input-wrapper-container'
3132
>
3233
<Content
3334
value={value}

src/javascript/app/pages/form/time-selection.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ export const TimePickerDropdown = ({
9090
value={time}
9191
onClickDropdown={() => handleOpen(elementId)}
9292
fullHeightOnOpen={false}
93+
containerClassName='input-wrapper-container'
9394
>
9495
<TimeContent
9596
time={time}

src/sass/_common/reskin.scss

+4
Original file line numberDiff line numberDiff line change
@@ -1098,4 +1098,8 @@ html.test {
10981098
position: absolute;
10991099
top: -9999px;
11001100
}
1101+
}
1102+
1103+
.input-wrapper-container {
1104+
width: 100%;
11011105
}

0 commit comments

Comments
 (0)