catchup-library-web 2.6.16 → 2.6.18
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/dist/index.js +23 -2
- package/dist/index.mjs +23 -2
- package/package.json +1 -1
- package/src/components/groups/InputGroup.tsx +25 -0
package/dist/index.js
CHANGED
|
@@ -4181,7 +4181,8 @@ var InputGroup = ({
|
|
|
4181
4181
|
borderRadius: 16,
|
|
4182
4182
|
paddingTop: 10,
|
|
4183
4183
|
paddingBottom: 10,
|
|
4184
|
-
boxShadow: "0px 0px 6px 0px rgba(0, 0, 0, 0.25)"
|
|
4184
|
+
boxShadow: "0px 0px 6px 0px rgba(0, 0, 0, 0.25)",
|
|
4185
|
+
zIndex: 1e6
|
|
4185
4186
|
}),
|
|
4186
4187
|
option: (baseStyles, state) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
4187
4188
|
color: state.isSelected ? "#2b3a41" : "#2b3a41",
|
|
@@ -4190,15 +4191,35 @@ var InputGroup = ({
|
|
|
4190
4191
|
backgroundColor: "#eaecf1"
|
|
4191
4192
|
},
|
|
4192
4193
|
paddingLeft: 20,
|
|
4193
|
-
paddingRight: 20
|
|
4194
|
+
paddingRight: 20,
|
|
4195
|
+
fontSize: 14,
|
|
4196
|
+
fontFamily: "'Quicksand', sans-serif"
|
|
4197
|
+
}),
|
|
4198
|
+
singleValue: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
4199
|
+
fontSize: 14,
|
|
4200
|
+
fontFamily: "'Quicksand', sans-serif",
|
|
4201
|
+
color: "#2b3a41"
|
|
4202
|
+
}),
|
|
4203
|
+
placeholder: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
4204
|
+
fontSize: 14,
|
|
4205
|
+
fontFamily: "'Quicksand', sans-serif",
|
|
4206
|
+
color: "#A7BFC4"
|
|
4207
|
+
}),
|
|
4208
|
+
input: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
4209
|
+
fontSize: 14,
|
|
4210
|
+
fontFamily: "'Quicksand', sans-serif"
|
|
4194
4211
|
}),
|
|
4195
4212
|
dropdownIndicator: (baseStyles, state) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
4196
4213
|
color: state.isFocused ? "#57c2d3" : "#55777f",
|
|
4197
4214
|
"&:hover": {
|
|
4198
4215
|
color: state.isFocused ? "#57c2d3" : "#55777f"
|
|
4199
4216
|
}
|
|
4217
|
+
}),
|
|
4218
|
+
menuPortal: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
4219
|
+
zIndex: 1e6
|
|
4200
4220
|
})
|
|
4201
4221
|
},
|
|
4222
|
+
menuPortalTarget: document.body,
|
|
4202
4223
|
components: {
|
|
4203
4224
|
IndicatorSeparator: () => null
|
|
4204
4225
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -3943,7 +3943,8 @@ var InputGroup = ({
|
|
|
3943
3943
|
borderRadius: 16,
|
|
3944
3944
|
paddingTop: 10,
|
|
3945
3945
|
paddingBottom: 10,
|
|
3946
|
-
boxShadow: "0px 0px 6px 0px rgba(0, 0, 0, 0.25)"
|
|
3946
|
+
boxShadow: "0px 0px 6px 0px rgba(0, 0, 0, 0.25)",
|
|
3947
|
+
zIndex: 1e6
|
|
3947
3948
|
}),
|
|
3948
3949
|
option: (baseStyles, state) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
3949
3950
|
color: state.isSelected ? "#2b3a41" : "#2b3a41",
|
|
@@ -3952,15 +3953,35 @@ var InputGroup = ({
|
|
|
3952
3953
|
backgroundColor: "#eaecf1"
|
|
3953
3954
|
},
|
|
3954
3955
|
paddingLeft: 20,
|
|
3955
|
-
paddingRight: 20
|
|
3956
|
+
paddingRight: 20,
|
|
3957
|
+
fontSize: 14,
|
|
3958
|
+
fontFamily: "'Quicksand', sans-serif"
|
|
3959
|
+
}),
|
|
3960
|
+
singleValue: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
3961
|
+
fontSize: 14,
|
|
3962
|
+
fontFamily: "'Quicksand', sans-serif",
|
|
3963
|
+
color: "#2b3a41"
|
|
3964
|
+
}),
|
|
3965
|
+
placeholder: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
3966
|
+
fontSize: 14,
|
|
3967
|
+
fontFamily: "'Quicksand', sans-serif",
|
|
3968
|
+
color: "#A7BFC4"
|
|
3969
|
+
}),
|
|
3970
|
+
input: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
3971
|
+
fontSize: 14,
|
|
3972
|
+
fontFamily: "'Quicksand', sans-serif"
|
|
3956
3973
|
}),
|
|
3957
3974
|
dropdownIndicator: (baseStyles, state) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
3958
3975
|
color: state.isFocused ? "#57c2d3" : "#55777f",
|
|
3959
3976
|
"&:hover": {
|
|
3960
3977
|
color: state.isFocused ? "#57c2d3" : "#55777f"
|
|
3961
3978
|
}
|
|
3979
|
+
}),
|
|
3980
|
+
menuPortal: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
3981
|
+
zIndex: 1e6
|
|
3962
3982
|
})
|
|
3963
3983
|
},
|
|
3984
|
+
menuPortalTarget: document.body,
|
|
3964
3985
|
components: {
|
|
3965
3986
|
IndicatorSeparator: () => null
|
|
3966
3987
|
},
|
package/package.json
CHANGED
|
@@ -358,6 +358,7 @@ const InputGroup = ({
|
|
|
358
358
|
paddingTop: 10,
|
|
359
359
|
paddingBottom: 10,
|
|
360
360
|
boxShadow: "0px 0px 6px 0px rgba(0, 0, 0, 0.25)",
|
|
361
|
+
zIndex: 1000000,
|
|
361
362
|
}),
|
|
362
363
|
option: (baseStyles: any, state: any) => ({
|
|
363
364
|
...baseStyles,
|
|
@@ -368,6 +369,25 @@ const InputGroup = ({
|
|
|
368
369
|
},
|
|
369
370
|
paddingLeft: 20,
|
|
370
371
|
paddingRight: 20,
|
|
372
|
+
fontSize: 14,
|
|
373
|
+
fontFamily: "'Quicksand', sans-serif",
|
|
374
|
+
}),
|
|
375
|
+
singleValue: (baseStyles: any) => ({
|
|
376
|
+
...baseStyles,
|
|
377
|
+
fontSize: 14,
|
|
378
|
+
fontFamily: "'Quicksand', sans-serif",
|
|
379
|
+
color: "#2b3a41",
|
|
380
|
+
}),
|
|
381
|
+
placeholder: (baseStyles: any) => ({
|
|
382
|
+
...baseStyles,
|
|
383
|
+
fontSize: 14,
|
|
384
|
+
fontFamily: "'Quicksand', sans-serif",
|
|
385
|
+
color: "#A7BFC4",
|
|
386
|
+
}),
|
|
387
|
+
input: (baseStyles: any) => ({
|
|
388
|
+
...baseStyles,
|
|
389
|
+
fontSize: 14,
|
|
390
|
+
fontFamily: "'Quicksand', sans-serif",
|
|
371
391
|
}),
|
|
372
392
|
dropdownIndicator: (baseStyles: any, state: any) => ({
|
|
373
393
|
...baseStyles,
|
|
@@ -376,7 +396,12 @@ const InputGroup = ({
|
|
|
376
396
|
color: state.isFocused ? "#57c2d3" : "#55777f",
|
|
377
397
|
},
|
|
378
398
|
}),
|
|
399
|
+
menuPortal: (baseStyles: any) => ({
|
|
400
|
+
...baseStyles,
|
|
401
|
+
zIndex: 1000000,
|
|
402
|
+
}),
|
|
379
403
|
}}
|
|
404
|
+
menuPortalTarget={document.body}
|
|
380
405
|
components={{
|
|
381
406
|
IndicatorSeparator: () => null,
|
|
382
407
|
}}
|