@ctlyst.id/internal-ui 3.1.13 → 3.1.15
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 +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -3240,6 +3240,10 @@ var PaginationButton = forwardRef9(({ className, style, isActive, children, ...r
|
|
3240
3240
|
background: btnNotActiveBg,
|
3241
3241
|
color: btnNotActiveColor
|
3242
3242
|
} : {},
|
3243
|
+
_active: {
|
3244
|
+
background: "primary.500",
|
3245
|
+
color: "neutral.300"
|
3246
|
+
},
|
3243
3247
|
_disabled: {
|
3244
3248
|
background: useColorModeValue4("neutral.300", "mirage.900"),
|
3245
3249
|
color: "neutral.600",
|
@@ -4745,7 +4749,8 @@ var useToast = () => {
|
|
4745
4749
|
...restOptions,
|
4746
4750
|
style: { backgroundColor: style == null ? void 0 : style.backgroundColor, color: style == null ? void 0 : style.color }
|
4747
4751
|
});
|
4748
|
-
}
|
4752
|
+
},
|
4753
|
+
dismiss: (id) => toast.dismiss(id)
|
4749
4754
|
};
|
4750
4755
|
};
|
4751
4756
|
|