@pingux/astro 2.181.6 → 2.181.7-alpha.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.
|
@@ -35,7 +35,7 @@ var Calendar = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
35
35
|
calendarWrapperProps = props.calendarWrapperProps;
|
|
36
36
|
var _useLocale = useLocale(),
|
|
37
37
|
locale = _useLocale.locale;
|
|
38
|
-
var
|
|
38
|
+
var calendarRef = useLocalOrForwardRef(ref);
|
|
39
39
|
var parsedDates = {
|
|
40
40
|
value: typeof value === 'string' && parseDate(value) || value,
|
|
41
41
|
defaultValue: typeof defaultValue === 'string' && parseDate(defaultValue) || defaultValue,
|
|
@@ -109,7 +109,7 @@ var Calendar = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
109
109
|
flex: 1
|
|
110
110
|
}, title);
|
|
111
111
|
return ___EmotionJSX(Box, _extends({}, calendarProps, calendarWrapperProps, {
|
|
112
|
-
ref:
|
|
112
|
+
ref: calendarRef,
|
|
113
113
|
variant: "calendar.calendarContainer",
|
|
114
114
|
role: "group"
|
|
115
115
|
}), ___EmotionJSX(VisuallyHidden, {
|