@hyphen/hyphen-components 7.5.0 → 7.7.0

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.
@@ -917,8 +917,8 @@ import classNames7 from "classnames";
917
917
  import {
918
918
  DayPicker,
919
919
  getDefaultClassNames
920
- } from "react-day-picker";
921
- import "react-day-picker/style.css";
920
+ } from "@daypicker/react";
921
+ import "@daypicker/react/style.css";
922
922
  function Calendar({
923
923
  captionLayout = "label",
924
924
  className,
@@ -978,11 +978,10 @@ function Calendar({
978
978
  selected: classNames7(
979
979
  "font-color-inverse background-color-inverse hover:font-color-inverse"
980
980
  ),
981
- month_grid: classNames7(defaultClassNames.month_grid, "m-top-lg"),
981
+ month_grid: classNames7(defaultClassNames.month_grid, "m-top-lg w-100"),
982
982
  day: classNames7(defaultClassNames.day, "hover:font-color-base"),
983
983
  day_button: classNames7(defaultClassNames.day_button),
984
984
  range_middle: classNames7(defaultClassNames.range_middle),
985
- table: classNames7("w-100"),
986
985
  dropdowns: classNames7(defaultClassNames.dropdowns, "h-100"),
987
986
  caption_label: classNames7(defaultClassNames.caption_label, "g-2xs")
988
987
  },