@ctlyst.id/internal-ui 3.1.12 → 3.1.14
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -3839,7 +3839,9 @@ function selectStyles(colorMode, _isError) {
|
|
3839
3839
|
option: (base) => ({
|
3840
3840
|
...base,
|
3841
3841
|
...selectStyle,
|
3842
|
-
color: "var(--chakra-colors-neutral-900)"
|
3842
|
+
color: "var(--chakra-colors-neutral-900)",
|
3843
|
+
padding: 12,
|
3844
|
+
height: 42
|
3843
3845
|
}),
|
3844
3846
|
menu: (base) => {
|
3845
3847
|
return {
|
@@ -4082,7 +4084,6 @@ var InputOption = ({
|
|
4082
4084
|
{
|
4083
4085
|
alignItems: "center",
|
4084
4086
|
width: "100%",
|
4085
|
-
mb: "3px",
|
4086
4087
|
gap: 2,
|
4087
4088
|
"data-test-id": "CT_component_select-checkbox_options",
|
4088
4089
|
cursor: isDisabled ? "not-allowed" : "default",
|
@@ -4744,7 +4745,8 @@ var useToast = () => {
|
|
4744
4745
|
...restOptions,
|
4745
4746
|
style: { backgroundColor: style == null ? void 0 : style.backgroundColor, color: style == null ? void 0 : style.color }
|
4746
4747
|
});
|
4747
|
-
}
|
4748
|
+
},
|
4749
|
+
dismiss: (id) => toast.dismiss(id)
|
4748
4750
|
};
|
4749
4751
|
};
|
4750
4752
|
|