@ctlyst.id/internal-ui 3.1.13 → 3.1.15

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.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