@coopdigital/react 0.51.0 → 0.52.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.
Files changed (62) hide show
  1. package/dist/components/DatePicker/datepicker-utils.js +1 -1
  2. package/dist/components/FieldMarkers/Error.js +1 -1
  3. package/dist/components/FieldMarkers/Hint.js +1 -1
  4. package/dist/components/FieldMarkers/Label.js +1 -1
  5. package/dist/components/FieldMarkers/Legend.js +1 -1
  6. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +1 -1
  7. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +1 -1
  8. package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +1 -1
  9. package/dist/node_modules/@radix-ui/react-popover/dist/index.js +1 -1
  10. package/dist/node_modules/date-fns/addDays.js +1 -1
  11. package/dist/node_modules/date-fns/addMonths.js +1 -1
  12. package/dist/node_modules/date-fns/addWeeks.js +1 -1
  13. package/dist/node_modules/date-fns/addYears.js +1 -1
  14. package/dist/node_modules/date-fns/constructFrom.js +1 -1
  15. package/dist/node_modules/date-fns/differenceInCalendarDays.js +1 -1
  16. package/dist/node_modules/date-fns/differenceInCalendarMonths.js +1 -1
  17. package/dist/node_modules/date-fns/eachMonthOfInterval.js +1 -1
  18. package/dist/node_modules/date-fns/eachYearOfInterval.js +1 -1
  19. package/dist/node_modules/date-fns/endOfISOWeek.js +1 -1
  20. package/dist/node_modules/date-fns/endOfMonth.js +1 -1
  21. package/dist/node_modules/date-fns/endOfWeek.js +1 -1
  22. package/dist/node_modules/date-fns/endOfYear.js +1 -1
  23. package/dist/node_modules/date-fns/format.js +1 -1
  24. package/dist/node_modules/date-fns/getDayOfYear.js +1 -1
  25. package/dist/node_modules/date-fns/getDaysInMonth.js +1 -1
  26. package/dist/node_modules/date-fns/getDefaultOptions.js +1 -1
  27. package/dist/node_modules/date-fns/getISODay.js +1 -1
  28. package/dist/node_modules/date-fns/getISOWeek.js +1 -1
  29. package/dist/node_modules/date-fns/getISOWeekYear.js +1 -1
  30. package/dist/node_modules/date-fns/getMonth.js +1 -1
  31. package/dist/node_modules/date-fns/getWeek.js +1 -1
  32. package/dist/node_modules/date-fns/getWeekYear.js +1 -1
  33. package/dist/node_modules/date-fns/getYear.js +1 -1
  34. package/dist/node_modules/date-fns/isAfter.js +1 -1
  35. package/dist/node_modules/date-fns/isBefore.js +1 -1
  36. package/dist/node_modules/date-fns/isDate.js +1 -1
  37. package/dist/node_modules/date-fns/isSameDay.js +1 -1
  38. package/dist/node_modules/date-fns/isSameMonth.js +1 -1
  39. package/dist/node_modules/date-fns/isSameYear.js +1 -1
  40. package/dist/node_modules/date-fns/isValid.js +1 -1
  41. package/dist/node_modules/date-fns/locale/en-US.js +1 -1
  42. package/dist/node_modules/date-fns/max.js +1 -1
  43. package/dist/node_modules/date-fns/min.js +1 -1
  44. package/dist/node_modules/date-fns/parse.js +1 -1
  45. package/dist/node_modules/date-fns/setDay.js +1 -1
  46. package/dist/node_modules/date-fns/setISODay.js +1 -1
  47. package/dist/node_modules/date-fns/setISOWeek.js +1 -1
  48. package/dist/node_modules/date-fns/setMonth.js +1 -1
  49. package/dist/node_modules/date-fns/setWeek.js +1 -1
  50. package/dist/node_modules/date-fns/setYear.js +1 -1
  51. package/dist/node_modules/date-fns/startOfDay.js +1 -1
  52. package/dist/node_modules/date-fns/startOfISOWeek.js +1 -1
  53. package/dist/node_modules/date-fns/startOfISOWeekYear.js +1 -1
  54. package/dist/node_modules/date-fns/startOfMonth.js +1 -1
  55. package/dist/node_modules/date-fns/startOfWeek.js +1 -1
  56. package/dist/node_modules/date-fns/startOfWeekYear.js +1 -1
  57. package/dist/node_modules/date-fns/startOfYear.js +1 -1
  58. package/dist/node_modules/date-fns/toDate.js +1 -1
  59. package/dist/node_modules/date-fns/transpose.js +1 -1
  60. package/dist/node_modules/react-day-picker/dist/esm/classes/DateLib.js +1 -1
  61. package/dist/node_modules/react-day-picker/dist/esm/locale/en-US.js +1 -1
  62. package/package.json +11 -11
@@ -1,7 +1,7 @@
1
1
  import { isValid } from '../../node_modules/date-fns/isValid.js';
2
2
  import { parse } from '../../node_modules/date-fns/parse.js';
3
3
  import { addYears } from '../../node_modules/date-fns/addYears.js';
4
- import { formatDate as format } from '../../node_modules/date-fns/format.js';
4
+ import { format } from '../../node_modules/date-fns/format.js';
5
5
  import { isBefore } from '../../node_modules/date-fns/isBefore.js';
6
6
 
7
7
  function isValidDate(date) {
@@ -9,4 +9,4 @@ const Error = ({ children, className, ref, ...props }) => {
9
9
  return (jsx("span", { ...componentProps, ref: ref, children: children }));
10
10
  };
11
11
 
12
- export { Error, Error as default };
12
+ export { Error };
@@ -9,4 +9,4 @@ const Hint = ({ children, className, ref, ...props }) => {
9
9
  return (jsx("div", { ...componentProps, ref: ref, children: children }));
10
10
  };
11
11
 
12
- export { Hint, Hint as default };
12
+ export { Hint };
@@ -9,4 +9,4 @@ const Label = ({ children, className, isVisible = true, ref, ...props }) => {
9
9
  return (jsx("label", { ...componentProps, ref: ref, children: jsx("span", { children: children }) }));
10
10
  };
11
11
 
12
- export { Label, Label as default };
12
+ export { Label };
@@ -10,4 +10,4 @@ const Legend = ({ children, className, isVisible = true, ref, ...props }) => {
10
10
  return (jsxs(Fragment, { children: [jsx("legend", { className: "sr-only", children: children }), isVisible && (jsx("div", { ...componentProps, ref: ref, children: children }))] }));
11
11
  };
12
12
 
13
- export { Legend, Legend as default };
13
+ export { Legend };
@@ -1,4 +1,4 @@
1
- import { evaluate, getSideAxis, getSide, clamp, getOppositePlacement, getExpandedPlacements, getOppositeAxisPlacements, getAlignmentSides, getAlignment, min, max, getPaddingObject, rectToClientRect, getOppositeAxis, getAlignmentAxis, sides, getAxisLength } from '../../utils/dist/floating-ui.utils.js';
1
+ import { evaluate, getSideAxis, getSide, clamp, getOppositePlacement, getExpandedPlacements, getOppositeAxisPlacements, getAlignmentSides, getAlignment, min, max, getAlignmentAxis, getPaddingObject, rectToClientRect, getOppositeAxis, sides, getAxisLength } from '../../utils/dist/floating-ui.utils.js';
2
2
 
3
3
  function computeCoordsFromPlacement(_ref, placement, rtl) {
4
4
  let {
@@ -1,4 +1,4 @@
1
- import { offset as offset$1, shift as shift$1, flip as flip$1, size as size$1, hide as hide$1, limitShift as limitShift$1, arrow as arrow$1, computePosition as computePosition$1 } from '../../core/dist/floating-ui.core.js';
1
+ import { computePosition as computePosition$1, offset as offset$1, shift as shift$1, flip as flip$1, size as size$1, hide as hide$1, arrow as arrow$1, limitShift as limitShift$1 } from '../../core/dist/floating-ui.core.js';
2
2
  import { createCoords, round, max, min, rectToClientRect, floor } from '../../utils/dist/floating-ui.utils.js';
3
3
  import { isElement, getDocumentElement, getOverflowAncestors, getComputedStyle as getComputedStyle$1, isHTMLElement, getWindow, isTopLayer, getParentNode, isLastTraversableNode, isTableElement, isContainingBlock, getContainingBlock, getNodeName, isOverflowElement, getNodeScroll, getFrameElement, isWebKit } from '../../utils/dist/floating-ui.utils.dom.js';
4
4
 
@@ -1,4 +1,4 @@
1
- import { offset as offset$1, shift as shift$1, flip as flip$1, size as size$1, hide as hide$1, limitShift as limitShift$1, computePosition, arrow as arrow$2 } from '../../dom/dist/floating-ui.dom.js';
1
+ import { computePosition, offset as offset$1, shift as shift$1, flip as flip$1, size as size$1, hide as hide$1, arrow as arrow$2, limitShift as limitShift$1 } from '../../dom/dist/floating-ui.dom.js';
2
2
  export { autoUpdate, platform } from '../../dom/dist/floating-ui.dom.js';
3
3
  import * as React from 'react';
4
4
  import { useLayoutEffect } from 'react';
@@ -8,7 +8,7 @@ import { DismissableLayer } from '../../react-dismissable-layer/dist/index.js';
8
8
  import { useFocusGuards } from '../../react-focus-guards/dist/index.js';
9
9
  import { FocusScope } from '../../react-focus-scope/dist/index.js';
10
10
  import { useId } from '../../react-id/dist/index.js';
11
- import { createPopperScope, Root as Root2$1, Anchor, Content, Arrow } from '../../react-popper/dist/index.js';
11
+ import { Root as Root2$1, createPopperScope, Anchor, Content, Arrow } from '../../react-popper/dist/index.js';
12
12
  import { Portal as Portal$1 } from '../../react-portal/dist/index.js';
13
13
  import { Presence } from '../../react-presence/dist/index.js';
14
14
  import { Primitive } from '../../react-primitive/dist/index.js';
@@ -38,4 +38,4 @@ function addDays(date, amount, options) {
38
38
  return _date;
39
39
  }
40
40
 
41
- export { addDays, addDays as default };
41
+ export { addDays };
@@ -72,4 +72,4 @@ function addMonths(date, amount, options) {
72
72
  }
73
73
  }
74
74
 
75
- export { addMonths, addMonths as default };
75
+ export { addMonths };
@@ -30,4 +30,4 @@ function addWeeks(date, amount, options) {
30
30
  return addDays(date, amount * 7, options);
31
31
  }
32
32
 
33
- export { addWeeks, addWeeks as default };
33
+ export { addWeeks };
@@ -30,4 +30,4 @@ function addYears(date, amount, options) {
30
30
  return addMonths(date, amount * 12, options);
31
31
  }
32
32
 
33
- export { addYears, addYears as default };
33
+ export { addYears };
@@ -46,4 +46,4 @@ function constructFrom(date, value) {
46
46
  return new Date(value);
47
47
  }
48
48
 
49
- export { constructFrom, constructFrom as default };
49
+ export { constructFrom };
@@ -59,4 +59,4 @@ function differenceInCalendarDays(laterDate, earlierDate, options) {
59
59
  return Math.round((laterTimestamp - earlierTimestamp) / millisecondsInDay);
60
60
  }
61
61
 
62
- export { differenceInCalendarDays as default, differenceInCalendarDays };
62
+ export { differenceInCalendarDays };
@@ -39,4 +39,4 @@ function differenceInCalendarMonths(laterDate, earlierDate, options) {
39
39
  return yearsDiff * 12 + monthsDiff;
40
40
  }
41
41
 
42
- export { differenceInCalendarMonths as default, differenceInCalendarMonths };
42
+ export { differenceInCalendarMonths };
@@ -62,4 +62,4 @@ function eachMonthOfInterval(interval, options) {
62
62
  return reversed ? dates.reverse() : dates;
63
63
  }
64
64
 
65
- export { eachMonthOfInterval as default, eachMonthOfInterval };
65
+ export { eachMonthOfInterval };
@@ -62,4 +62,4 @@ function eachYearOfInterval(interval, options) {
62
62
  return reversed ? dates.reverse() : dates;
63
63
  }
64
64
 
65
- export { eachYearOfInterval as default, eachYearOfInterval };
65
+ export { eachYearOfInterval };
@@ -32,4 +32,4 @@ function endOfISOWeek(date, options) {
32
32
  return endOfWeek(date, { ...options, weekStartsOn: 1 });
33
33
  }
34
34
 
35
- export { endOfISOWeek as default, endOfISOWeek };
35
+ export { endOfISOWeek };
@@ -34,4 +34,4 @@ function endOfMonth(date, options) {
34
34
  return _date;
35
35
  }
36
36
 
37
- export { endOfMonth as default, endOfMonth };
37
+ export { endOfMonth };
@@ -50,4 +50,4 @@ function endOfWeek(date, options) {
50
50
  return _date;
51
51
  }
52
52
 
53
- export { endOfWeek as default, endOfWeek };
53
+ export { endOfWeek };
@@ -34,4 +34,4 @@ function endOfYear(date, options) {
34
34
  return _date;
35
35
  }
36
36
 
37
- export { endOfYear as default, endOfYear };
37
+ export { endOfYear };
@@ -420,4 +420,4 @@ function cleanEscapedString(input) {
420
420
  return matched[1].replace(doubleQuoteRegExp, "'");
421
421
  }
422
422
 
423
- export { format as default, format, format as formatDate, formatters, longFormatters };
423
+ export { format, format as formatDate, formatters, longFormatters };
@@ -31,4 +31,4 @@ function getDayOfYear(date, options) {
31
31
  return dayOfYear;
32
32
  }
33
33
 
34
- export { getDayOfYear as default, getDayOfYear };
34
+ export { getDayOfYear };
@@ -33,4 +33,4 @@ function getDaysInMonth(date, options) {
33
33
  return lastDayOfMonth.getDate();
34
34
  }
35
35
 
36
- export { getDaysInMonth as default, getDaysInMonth };
36
+ export { getDaysInMonth };
@@ -28,4 +28,4 @@ function getDefaultOptions() {
28
28
  return Object.assign({}, getDefaultOptions$1());
29
29
  }
30
30
 
31
- export { getDefaultOptions as default, getDefaultOptions };
31
+ export { getDefaultOptions };
@@ -30,4 +30,4 @@ function getISODay(date, options) {
30
30
  return day === 0 ? 7 : day;
31
31
  }
32
32
 
33
- export { getISODay as default, getISODay };
33
+ export { getISODay };
@@ -37,4 +37,4 @@ function getISOWeek(date, options) {
37
37
  return Math.round(diff / millisecondsInWeek) + 1;
38
38
  }
39
39
 
40
- export { getISOWeek as default, getISOWeek };
40
+ export { getISOWeek };
@@ -49,4 +49,4 @@ function getISOWeekYear(date, options) {
49
49
  }
50
50
  }
51
51
 
52
- export { getISOWeekYear as default, getISOWeekYear };
52
+ export { getISOWeekYear };
@@ -26,4 +26,4 @@ function getMonth(date, options) {
26
26
  return toDate(date, options?.in).getMonth();
27
27
  }
28
28
 
29
- export { getMonth as default, getMonth };
29
+ export { getMonth };
@@ -51,4 +51,4 @@ function getWeek(date, options) {
51
51
  return Math.round(diff / millisecondsInWeek) + 1;
52
52
  }
53
53
 
54
- export { getWeek as default, getWeek };
54
+ export { getWeek };
@@ -72,4 +72,4 @@ function getWeekYear(date, options) {
72
72
  }
73
73
  }
74
74
 
75
- export { getWeekYear as default, getWeekYear };
75
+ export { getWeekYear };
@@ -26,4 +26,4 @@ function getYear(date, options) {
26
26
  return toDate(date, options?.in).getFullYear();
27
27
  }
28
28
 
29
- export { getYear as default, getYear };
29
+ export { getYear };
@@ -22,4 +22,4 @@ function isAfter(date, dateToCompare) {
22
22
  return +toDate(date) > +toDate(dateToCompare);
23
23
  }
24
24
 
25
- export { isAfter as default, isAfter };
25
+ export { isAfter };
@@ -22,4 +22,4 @@ function isBefore(date, dateToCompare) {
22
22
  return +toDate(date) < +toDate(dateToCompare);
23
23
  }
24
24
 
25
- export { isBefore as default, isBefore };
25
+ export { isBefore };
@@ -38,4 +38,4 @@ function isDate(value) {
38
38
  );
39
39
  }
40
40
 
41
- export { isDate as default, isDate };
41
+ export { isDate };
@@ -43,4 +43,4 @@ function isSameDay(laterDate, earlierDate, options) {
43
43
  return +startOfDay(dateLeft_) === +startOfDay(dateRight_);
44
44
  }
45
45
 
46
- export { isSameDay as default, isSameDay };
46
+ export { isSameDay };
@@ -40,4 +40,4 @@ function isSameMonth(laterDate, earlierDate, options) {
40
40
  );
41
41
  }
42
42
 
43
- export { isSameMonth as default, isSameMonth };
43
+ export { isSameMonth };
@@ -32,4 +32,4 @@ function isSameYear(laterDate, earlierDate, options) {
32
32
  return laterDate_.getFullYear() === earlierDate_.getFullYear();
33
33
  }
34
34
 
35
- export { isSameYear as default, isSameYear };
35
+ export { isSameYear };
@@ -36,4 +36,4 @@ function isValid(date) {
36
36
  return !((!isDate(date) && typeof date !== "number") || isNaN(+toDate(date)));
37
37
  }
38
38
 
39
- export { isValid as default, isValid };
39
+ export { isValid };
@@ -25,4 +25,4 @@ const enUS = {
25
25
  },
26
26
  };
27
27
 
28
- export { enUS as default, enUS };
28
+ export { enUS };
@@ -46,4 +46,4 @@ function max(dates, options) {
46
46
  return constructFrom(context, result || NaN);
47
47
  }
48
48
 
49
- export { max as default, max };
49
+ export { max };
@@ -46,4 +46,4 @@ function min(dates, options) {
46
46
  return constructFrom(context, result || NaN);
47
47
  }
48
48
 
49
- export { min as default, min };
49
+ export { min };
@@ -494,4 +494,4 @@ function cleanEscapedString(input) {
494
494
  return input.match(escapedStringRegExp)[1].replace(doubleQuoteRegExp, "'");
495
495
  }
496
496
 
497
- export { parse as default, longFormatters, parse, parsers };
497
+ export { longFormatters, parse, parsers };
@@ -56,4 +56,4 @@ function setDay(date, day, options) {
56
56
  return addDays(date_, diff, options);
57
57
  }
58
58
 
59
- export { setDay as default, setDay };
59
+ export { setDay };
@@ -37,4 +37,4 @@ function setISODay(date, day, options) {
37
37
  return addDays(date_, diff, options);
38
38
  }
39
39
 
40
- export { setISODay as default, setISODay };
40
+ export { setISODay };
@@ -36,4 +36,4 @@ function setISOWeek(date, week, options) {
36
36
  return _date;
37
37
  }
38
38
 
39
- export { setISOWeek as default, setISOWeek };
39
+ export { setISOWeek };
@@ -43,4 +43,4 @@ function setMonth(date, month, options) {
43
43
  return _date;
44
44
  }
45
45
 
46
- export { setMonth as default, setMonth };
46
+ export { setMonth };
@@ -50,4 +50,4 @@ function setWeek(date, week, options) {
50
50
  return toDate(date_, options?.in);
51
51
  }
52
52
 
53
- export { setWeek as default, setWeek };
53
+ export { setWeek };
@@ -37,4 +37,4 @@ function setYear(date, year, options) {
37
37
  return date_;
38
38
  }
39
39
 
40
- export { setYear as default, setYear };
40
+ export { setYear };
@@ -32,4 +32,4 @@ function startOfDay(date, options) {
32
32
  return _date;
33
33
  }
34
34
 
35
- export { startOfDay as default, startOfDay };
35
+ export { startOfDay };
@@ -32,4 +32,4 @@ function startOfISOWeek(date, options) {
32
32
  return startOfWeek(date, { ...options, weekStartsOn: 1 });
33
33
  }
34
34
 
35
- export { startOfISOWeek as default, startOfISOWeek };
35
+ export { startOfISOWeek };
@@ -39,4 +39,4 @@ function startOfISOWeekYear(date, options) {
39
39
  return startOfISOWeek(fourthOfJanuary);
40
40
  }
41
41
 
42
- export { startOfISOWeekYear as default, startOfISOWeekYear };
42
+ export { startOfISOWeekYear };
@@ -34,4 +34,4 @@ function startOfMonth(date, options) {
34
34
  return _date;
35
35
  }
36
36
 
37
- export { startOfMonth as default, startOfMonth };
37
+ export { startOfMonth };
@@ -50,4 +50,4 @@ function startOfWeek(date, options) {
50
50
  return _date;
51
51
  }
52
52
 
53
- export { startOfWeek as default, startOfWeek };
53
+ export { startOfWeek };
@@ -61,4 +61,4 @@ function startOfWeekYear(date, options) {
61
61
  return _date;
62
62
  }
63
63
 
64
- export { startOfWeekYear as default, startOfWeekYear };
64
+ export { startOfWeekYear };
@@ -33,4 +33,4 @@ function startOfYear(date, options) {
33
33
  return date_;
34
34
  }
35
35
 
36
- export { startOfYear as default, startOfYear };
36
+ export { startOfYear };
@@ -43,4 +43,4 @@ function toDate(argument, context) {
43
43
  return constructFrom(context || argument, argument);
44
44
  }
45
45
 
46
- export { toDate as default, toDate };
46
+ export { toDate };
@@ -49,4 +49,4 @@ function isConstructor(constructor) {
49
49
  );
50
50
  }
51
51
 
52
- export { transpose as default, transpose };
52
+ export { transpose };
@@ -34,7 +34,7 @@ import { startOfISOWeek } from '../../../../date-fns/startOfISOWeek.js';
34
34
  import { startOfMonth } from '../../../../date-fns/startOfMonth.js';
35
35
  import { startOfWeek } from '../../../../date-fns/startOfWeek.js';
36
36
  import { startOfYear } from '../../../../date-fns/startOfYear.js';
37
- import { formatDate as format } from '../../../../date-fns/format.js';
37
+ import { format } from '../../../../date-fns/format.js';
38
38
 
39
39
  /**
40
40
  * A wrapper class around [date-fns](http://date-fns.org) that provides utility
@@ -1,5 +1,5 @@
1
1
  import { enUS as enUS$1 } from '../../../../date-fns/locale/en-US.js';
2
- import { formatDate as format } from '../../../../date-fns/format.js';
2
+ import { format } from '../../../../date-fns/format.js';
3
3
 
4
4
  /** English (United States) locale extended with DayPicker-specific translations. */
5
5
  const enUS = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coopdigital/react",
3
3
  "type": "module",
4
- "version": "0.51.0",
4
+ "version": "0.52.0",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -56,20 +56,20 @@
56
56
  "description": "React components for the Experience Library design system",
57
57
  "devDependencies": {
58
58
  "@axe-core/playwright": "^4.11.0",
59
- "@playwright/test": "^1.57.0",
60
- "@storybook/addon-a11y": "^10.1.11",
61
- "@storybook/addon-docs": "^10.1.11",
62
- "@storybook/addon-onboarding": "^10.1.11",
63
- "@storybook/react-vite": "^10.1.11",
59
+ "@playwright/test": "^1.58.0",
60
+ "@storybook/addon-a11y": "^10.2.0",
61
+ "@storybook/addon-docs": "^10.2.0",
62
+ "@storybook/addon-onboarding": "^10.2.0",
63
+ "@storybook/react-vite": "^10.2.0",
64
64
  "@testing-library/jest-dom": "^6.9.1",
65
- "@testing-library/react": "^16.3.1",
66
- "@types/react": "^19.2.8",
65
+ "@testing-library/react": "^16.3.2",
66
+ "@types/react": "^19.2.9",
67
67
  "@types/react-dom": "^19.2.3",
68
68
  "react": "^19.2.3",
69
69
  "react-dom": "^19.2.3",
70
70
  "resize-observer-polyfill": "^1.5.1",
71
71
  "serve": "^14.2.5",
72
- "storybook": "^10.1.11",
72
+ "storybook": "^10.2.0",
73
73
  "storybook-addon-tag-badges": "^3.0.4"
74
74
  },
75
75
  "peerDependencies": {
@@ -80,10 +80,10 @@
80
80
  "storybook": "$storybook"
81
81
  },
82
82
  "dependencies": {
83
- "@coopdigital/styles": "^0.43.0",
83
+ "@coopdigital/styles": "^0.44.0",
84
84
  "@radix-ui/react-popover": "^1.1.15",
85
85
  "clsx": "^2.1.1",
86
86
  "react-day-picker": "^9.12.0"
87
87
  },
88
- "gitHead": "852062f66857a8245d7fadcb942853b28dbbcab2"
88
+ "gitHead": "7c4237c85692fb84fcd5929486a47f669097fa1a"
89
89
  }