catchup-library-web 2.6.16 → 2.6.17
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 +6 -1
- package/dist/index.mjs +6 -1
- package/package.json +1 -1
- package/src/components/groups/InputGroup.tsx +6 -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",
|
|
@@ -4197,8 +4198,12 @@ var InputGroup = ({
|
|
|
4197
4198
|
"&:hover": {
|
|
4198
4199
|
color: state.isFocused ? "#57c2d3" : "#55777f"
|
|
4199
4200
|
}
|
|
4201
|
+
}),
|
|
4202
|
+
menuPortal: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
4203
|
+
zIndex: 1e6
|
|
4200
4204
|
})
|
|
4201
4205
|
},
|
|
4206
|
+
menuPortalTarget: document.body,
|
|
4202
4207
|
components: {
|
|
4203
4208
|
IndicatorSeparator: () => null
|
|
4204
4209
|
},
|
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",
|
|
@@ -3959,8 +3960,12 @@ var InputGroup = ({
|
|
|
3959
3960
|
"&:hover": {
|
|
3960
3961
|
color: state.isFocused ? "#57c2d3" : "#55777f"
|
|
3961
3962
|
}
|
|
3963
|
+
}),
|
|
3964
|
+
menuPortal: (baseStyles) => __spreadProps(__spreadValues({}, baseStyles), {
|
|
3965
|
+
zIndex: 1e6
|
|
3962
3966
|
})
|
|
3963
3967
|
},
|
|
3968
|
+
menuPortalTarget: document.body,
|
|
3964
3969
|
components: {
|
|
3965
3970
|
IndicatorSeparator: () => null
|
|
3966
3971
|
},
|
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,
|
|
@@ -376,7 +377,12 @@ const InputGroup = ({
|
|
|
376
377
|
color: state.isFocused ? "#57c2d3" : "#55777f",
|
|
377
378
|
},
|
|
378
379
|
}),
|
|
380
|
+
menuPortal: (baseStyles: any) => ({
|
|
381
|
+
...baseStyles,
|
|
382
|
+
zIndex: 1000000,
|
|
383
|
+
}),
|
|
379
384
|
}}
|
|
385
|
+
menuPortalTarget={document.body}
|
|
380
386
|
components={{
|
|
381
387
|
IndicatorSeparator: () => null,
|
|
382
388
|
}}
|