rbro-tat-uds 2.2.11 → 2.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/components/CityPicker/CityPicker.cjs +1 -0
- package/build/cjs/components/ContentDropdown/ContentDropdown.cjs +4 -0
- package/build/cjs/components/InvestmentFundItem/InvestmentFundItem.cjs +1 -0
- package/build/cjs/components/RatesCalculator/RatesCalculator.cjs +1 -0
- package/build/cjs/components/Switch/Switch.cjs +1 -0
- package/build/cjs/index.cjs +8 -0
- package/build/esm/components/CityPicker/CityPicker.js +1 -0
- package/build/esm/components/ContentDropdown/ContentDropdown.js +4 -0
- package/build/esm/components/InvestmentFundItem/InvestmentFundItem.js +1 -0
- package/build/esm/components/RatesCalculator/RatesCalculator.js +1 -0
- package/build/esm/components/Switch/Switch.js +1 -0
- package/build/esm/index.js +8 -0
- package/package.json +1 -1
@@ -94,6 +94,10 @@ const ContentDropdownStyled = styled.div`
|
|
94
94
|
display: ${typeof $placeholder === "string" && !$value ? "flex" : "block"};
|
95
95
|
align-items: ${typeof $placeholder === "string" && !$value ? "center" : "stretch"};
|
96
96
|
padding-left: ${typeof $placeholder === "string" && !$value ? "16px" : "0px"};
|
97
|
+
|
98
|
+
& > div {
|
99
|
+
height: 100%;
|
100
|
+
}
|
97
101
|
}
|
98
102
|
`}
|
99
103
|
|
@@ -14,6 +14,7 @@ var utils = require('../../utils');
|
|
14
14
|
const InvestmentFundItemStyled = styled.div`
|
15
15
|
width: 100%;
|
16
16
|
cursor: pointer;
|
17
|
+
box-sizing: border-box;
|
17
18
|
padding: 12px 16px;
|
18
19
|
min-height: ${({ $line1Text }) => $line1Text && $line1Text.length ? "79px" : "60px"};
|
19
20
|
display: flex;
|
package/build/cjs/index.cjs
CHANGED
@@ -5134,6 +5134,7 @@ const CityPickerStyled = styled__default.default.div`
|
|
5134
5134
|
}
|
5135
5135
|
|
5136
5136
|
& > input {
|
5137
|
+
box-sizing: border-box;
|
5137
5138
|
border-radius: 8px;
|
5138
5139
|
border: none;
|
5139
5140
|
outline: none;
|
@@ -6064,6 +6065,10 @@ const ContentDropdownStyled = styled__default.default.div`
|
|
6064
6065
|
display: ${typeof $placeholder === "string" && !$value ? "flex" : "block"};
|
6065
6066
|
align-items: ${typeof $placeholder === "string" && !$value ? "center" : "stretch"};
|
6066
6067
|
padding-left: ${typeof $placeholder === "string" && !$value ? "16px" : "0px"};
|
6068
|
+
|
6069
|
+
& > div {
|
6070
|
+
height: 100%;
|
6071
|
+
}
|
6067
6072
|
}
|
6068
6073
|
`}
|
6069
6074
|
|
@@ -6224,6 +6229,7 @@ const StepsBar = ({
|
|
6224
6229
|
const InvestmentFundItemStyled = styled__default.default.div`
|
6225
6230
|
width: 100%;
|
6226
6231
|
cursor: pointer;
|
6232
|
+
box-sizing: border-box;
|
6227
6233
|
padding: 12px 16px;
|
6228
6234
|
min-height: ${({ $line1Text }) => $line1Text && $line1Text.length ? "79px" : "60px"};
|
6229
6235
|
display: flex;
|
@@ -23343,6 +23349,7 @@ const RatesCalculatorStyled = styled__default.default.div`
|
|
23343
23349
|
flex: 1;
|
23344
23350
|
|
23345
23351
|
& > input {
|
23352
|
+
box-sizing: border-box;
|
23346
23353
|
border-radius: 8px;
|
23347
23354
|
border: none;
|
23348
23355
|
outline: none;
|
@@ -24899,6 +24906,7 @@ const sizeStyles = {
|
|
24899
24906
|
}
|
24900
24907
|
};
|
24901
24908
|
const SwitchStyled = styled__default.default.label`
|
24909
|
+
box-sizing: border-box;
|
24902
24910
|
cursor: pointer;
|
24903
24911
|
background-color: ${utils.colors.gray_100};
|
24904
24912
|
border-radius: 100px;
|
@@ -90,6 +90,10 @@ const ContentDropdownStyled = styled.div`
|
|
90
90
|
display: ${typeof $placeholder === "string" && !$value ? "flex" : "block"};
|
91
91
|
align-items: ${typeof $placeholder === "string" && !$value ? "center" : "stretch"};
|
92
92
|
padding-left: ${typeof $placeholder === "string" && !$value ? "16px" : "0px"};
|
93
|
+
|
94
|
+
& > div {
|
95
|
+
height: 100%;
|
96
|
+
}
|
93
97
|
}
|
94
98
|
`}
|
95
99
|
|
@@ -10,6 +10,7 @@ import { colors } from '../../utils';
|
|
10
10
|
const InvestmentFundItemStyled = styled.div`
|
11
11
|
width: 100%;
|
12
12
|
cursor: pointer;
|
13
|
+
box-sizing: border-box;
|
13
14
|
padding: 12px 16px;
|
14
15
|
min-height: ${({ $line1Text }) => $line1Text && $line1Text.length ? "79px" : "60px"};
|
15
16
|
display: flex;
|
package/build/esm/index.js
CHANGED
@@ -5111,6 +5111,7 @@ const CityPickerStyled = styled.div`
|
|
5111
5111
|
}
|
5112
5112
|
|
5113
5113
|
& > input {
|
5114
|
+
box-sizing: border-box;
|
5114
5115
|
border-radius: 8px;
|
5115
5116
|
border: none;
|
5116
5117
|
outline: none;
|
@@ -6041,6 +6042,10 @@ const ContentDropdownStyled = styled.div`
|
|
6041
6042
|
display: ${typeof $placeholder === "string" && !$value ? "flex" : "block"};
|
6042
6043
|
align-items: ${typeof $placeholder === "string" && !$value ? "center" : "stretch"};
|
6043
6044
|
padding-left: ${typeof $placeholder === "string" && !$value ? "16px" : "0px"};
|
6045
|
+
|
6046
|
+
& > div {
|
6047
|
+
height: 100%;
|
6048
|
+
}
|
6044
6049
|
}
|
6045
6050
|
`}
|
6046
6051
|
|
@@ -6201,6 +6206,7 @@ const StepsBar = ({
|
|
6201
6206
|
const InvestmentFundItemStyled = styled.div`
|
6202
6207
|
width: 100%;
|
6203
6208
|
cursor: pointer;
|
6209
|
+
box-sizing: border-box;
|
6204
6210
|
padding: 12px 16px;
|
6205
6211
|
min-height: ${({ $line1Text }) => $line1Text && $line1Text.length ? "79px" : "60px"};
|
6206
6212
|
display: flex;
|
@@ -23320,6 +23326,7 @@ const RatesCalculatorStyled = styled.div`
|
|
23320
23326
|
flex: 1;
|
23321
23327
|
|
23322
23328
|
& > input {
|
23329
|
+
box-sizing: border-box;
|
23323
23330
|
border-radius: 8px;
|
23324
23331
|
border: none;
|
23325
23332
|
outline: none;
|
@@ -24876,6 +24883,7 @@ const sizeStyles = {
|
|
24876
24883
|
}
|
24877
24884
|
};
|
24878
24885
|
const SwitchStyled = styled.label`
|
24886
|
+
box-sizing: border-box;
|
24879
24887
|
cursor: pointer;
|
24880
24888
|
background-color: ${colors.gray_100};
|
24881
24889
|
border-radius: 100px;
|