@northlight/ui 2.39.0 → 2.39.1

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.
@@ -7980,7 +7980,8 @@ const DateRangePicker = (props) => {
7980
7980
  defaultDateRange,
7981
7981
  CustomResetButton,
7982
7982
  onCancelChanges,
7983
- "data-testid": dataTestId
7983
+ "data-testid": dataTestId,
7984
+ defaultOpen = false
7984
7985
  } = props;
7985
7986
  const ref = useRef();
7986
7987
  const { group } = useMultiStyleConfig("DatePicker");
@@ -8006,7 +8007,8 @@ const DateRangePicker = (props) => {
8006
8007
  isDateUnavailable: props.isDateUnavailable,
8007
8008
  allowsNonContiguousRanges: props.allowsNonContiguousRanges,
8008
8009
  shouldCloseOnSelect: false,
8009
- hideTimeZone: true
8010
+ hideTimeZone: true,
8011
+ defaultOpen
8010
8012
  });
8011
8013
  const {
8012
8014
  groupProps,
@@ -8132,7 +8134,7 @@ const DateRangePicker = (props) => {
8132
8134
  RangeCalendar,
8133
8135
  __spreadProps$g(__spreadValues$1q({}, calendarProps), {
8134
8136
  resetDate: cancelOrResetDateChange,
8135
- handleClose,
8137
+ handleClose: handleModalClose,
8136
8138
  fiscalStartMonth: fiscalStartMonth || 0,
8137
8139
  fiscalStartDay: fiscalStartDay || 0,
8138
8140
  isClearable,