@cerebruminc/cerebellum 16.0.0-beta.dangerous.a3d7575 → 16.0.0-beta.dangerous.aae8e29

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.
@@ -7521,40 +7521,34 @@ function isShadowRoot(value) {
7521
7521
  }
7522
7522
  return value instanceof ShadowRoot || value instanceof getWindow(value).ShadowRoot;
7523
7523
  }
7524
- const invalidOverflowDisplayValues = /*#__PURE__*/new Set(['inline', 'contents']);
7525
7524
  function isOverflowElement(element) {
7526
7525
  const {
7527
7526
  overflow,
7528
7527
  overflowX,
7529
7528
  overflowY,
7530
7529
  display
7531
- } = getComputedStyle$1(element);
7532
- return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !invalidOverflowDisplayValues.has(display);
7530
+ } = getComputedStyle(element);
7531
+ return /auto|scroll|overlay|hidden|clip/.test(overflow + overflowY + overflowX) && !['inline', 'contents'].includes(display);
7533
7532
  }
7534
- const tableElements = /*#__PURE__*/new Set(['table', 'td', 'th']);
7535
7533
  function isTableElement(element) {
7536
- return tableElements.has(getNodeName(element));
7534
+ return ['table', 'td', 'th'].includes(getNodeName(element));
7537
7535
  }
7538
- const topLayerSelectors = [':popover-open', ':modal'];
7539
7536
  function isTopLayer(element) {
7540
- return topLayerSelectors.some(selector => {
7537
+ return [':popover-open', ':modal'].some(selector => {
7541
7538
  try {
7542
7539
  return element.matches(selector);
7543
- } catch (_e) {
7540
+ } catch (e) {
7544
7541
  return false;
7545
7542
  }
7546
7543
  });
7547
7544
  }
7548
- const transformProperties = ['transform', 'translate', 'scale', 'rotate', 'perspective'];
7549
- const willChangeValues = ['transform', 'translate', 'scale', 'rotate', 'perspective', 'filter'];
7550
- const containValues = ['paint', 'layout', 'strict', 'content'];
7551
7545
  function isContainingBlock(elementOrCss) {
7552
7546
  const webkit = isWebKit();
7553
- const css = isElement(elementOrCss) ? getComputedStyle$1(elementOrCss) : elementOrCss;
7547
+ const css = isElement(elementOrCss) ? getComputedStyle(elementOrCss) : elementOrCss;
7554
7548
 
7555
7549
  // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block
7556
7550
  // https://drafts.csswg.org/css-transforms-2/#individual-transforms
7557
- return transformProperties.some(value => css[value] ? css[value] !== 'none' : false) || (css.containerType ? css.containerType !== 'normal' : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== 'none' : false) || !webkit && (css.filter ? css.filter !== 'none' : false) || willChangeValues.some(value => (css.willChange || '').includes(value)) || containValues.some(value => (css.contain || '').includes(value));
7551
+ return ['transform', 'translate', 'scale', 'rotate', 'perspective'].some(value => css[value] ? css[value] !== 'none' : false) || (css.containerType ? css.containerType !== 'normal' : false) || !webkit && (css.backdropFilter ? css.backdropFilter !== 'none' : false) || !webkit && (css.filter ? css.filter !== 'none' : false) || ['transform', 'translate', 'scale', 'rotate', 'perspective', 'filter'].some(value => (css.willChange || '').includes(value)) || ['paint', 'layout', 'strict', 'content'].some(value => (css.contain || '').includes(value));
7558
7552
  }
7559
7553
  function getContainingBlock(element) {
7560
7554
  let currentNode = getParentNode(element);
@@ -7572,11 +7566,10 @@ function isWebKit() {
7572
7566
  if (typeof CSS === 'undefined' || !CSS.supports) return false;
7573
7567
  return CSS.supports('-webkit-backdrop-filter', 'none');
7574
7568
  }
7575
- const lastTraversableNodeNames = /*#__PURE__*/new Set(['html', 'body', '#document']);
7576
7569
  function isLastTraversableNode(node) {
7577
- return lastTraversableNodeNames.has(getNodeName(node));
7570
+ return ['html', 'body', '#document'].includes(getNodeName(node));
7578
7571
  }
7579
- function getComputedStyle$1(element) {
7572
+ function getComputedStyle(element) {
7580
7573
  return getWindow(element).getComputedStyle(element);
7581
7574
  }
7582
7575
  function getNodeScroll(element) {
@@ -7678,9 +7671,8 @@ function getOppositeAxis(axis) {
7678
7671
  function getAxisLength(axis) {
7679
7672
  return axis === 'y' ? 'height' : 'width';
7680
7673
  }
7681
- const yAxisSides = /*#__PURE__*/new Set(['top', 'bottom']);
7682
7674
  function getSideAxis(placement) {
7683
- return yAxisSides.has(getSide(placement)) ? 'y' : 'x';
7675
+ return ['top', 'bottom'].includes(getSide(placement)) ? 'y' : 'x';
7684
7676
  }
7685
7677
  function getAlignmentAxis(placement) {
7686
7678
  return getOppositeAxis(getSideAxis(placement));
@@ -7705,19 +7697,19 @@ function getExpandedPlacements(placement) {
7705
7697
  function getOppositeAlignmentPlacement(placement) {
7706
7698
  return placement.replace(/start|end/g, alignment => oppositeAlignmentMap[alignment]);
7707
7699
  }
7708
- const lrPlacement = ['left', 'right'];
7709
- const rlPlacement = ['right', 'left'];
7710
- const tbPlacement = ['top', 'bottom'];
7711
- const btPlacement = ['bottom', 'top'];
7712
7700
  function getSideList(side, isStart, rtl) {
7701
+ const lr = ['left', 'right'];
7702
+ const rl = ['right', 'left'];
7703
+ const tb = ['top', 'bottom'];
7704
+ const bt = ['bottom', 'top'];
7713
7705
  switch (side) {
7714
7706
  case 'top':
7715
7707
  case 'bottom':
7716
- if (rtl) return isStart ? rlPlacement : lrPlacement;
7717
- return isStart ? lrPlacement : rlPlacement;
7708
+ if (rtl) return isStart ? rl : lr;
7709
+ return isStart ? lr : rl;
7718
7710
  case 'left':
7719
7711
  case 'right':
7720
- return isStart ? tbPlacement : btPlacement;
7712
+ return isStart ? tb : bt;
7721
7713
  default:
7722
7714
  return [];
7723
7715
  }
@@ -8169,7 +8161,7 @@ const flip$2 = function (options) {
8169
8161
  if (!ignoreCrossAxisOverflow ||
8170
8162
  // We leave the current main axis only if every placement on that axis
8171
8163
  // overflows the main axis.
8172
- overflowsData.every(d => getSideAxis(d.placement) === initialSideAxis ? d.overflows[0] > 0 : true)) {
8164
+ overflowsData.every(d => d.overflows[0] > 0 && getSideAxis(d.placement) === initialSideAxis)) {
8173
8165
  // Try next placement and re-run the lifecycle.
8174
8166
  return {
8175
8167
  data: {
@@ -8226,8 +8218,6 @@ const flip$2 = function (options) {
8226
8218
  };
8227
8219
  };
8228
8220
 
8229
- const originSides = /*#__PURE__*/new Set(['left', 'top']);
8230
-
8231
8221
  // For type backwards-compatibility, the `OffsetOptions` type was also
8232
8222
  // Derivable.
8233
8223
 
@@ -8241,7 +8231,7 @@ async function convertValueToCoords(state, options) {
8241
8231
  const side = getSide(placement);
8242
8232
  const alignment = getAlignment(placement);
8243
8233
  const isVertical = getSideAxis(placement) === 'y';
8244
- const mainAxisMulti = originSides.has(side) ? -1 : 1;
8234
+ const mainAxisMulti = ['left', 'top'].includes(side) ? -1 : 1;
8245
8235
  const crossAxisMulti = rtl && isVertical ? -1 : 1;
8246
8236
  const rawValue = evaluate(options, state);
8247
8237
 
@@ -8313,7 +8303,7 @@ const offset$2 = function (options) {
8313
8303
  };
8314
8304
 
8315
8305
  function getCssDimensions(element) {
8316
- const css = getComputedStyle$1(element);
8306
+ const css = getComputedStyle(element);
8317
8307
  // In testing environments, the `width` and `height` properties are empty
8318
8308
  // strings for SVG elements, returning NaN. Fallback to `0` in this case.
8319
8309
  let width = parseFloat(css.width) || 0;
@@ -8418,7 +8408,7 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetPar
8418
8408
  while (currentIFrame && offsetParent && offsetWin !== currentWin) {
8419
8409
  const iframeScale = getScale(currentIFrame);
8420
8410
  const iframeRect = currentIFrame.getBoundingClientRect();
8421
- const css = getComputedStyle$1(currentIFrame);
8411
+ const css = getComputedStyle(currentIFrame);
8422
8412
  const left = iframeRect.left + (currentIFrame.clientLeft + parseFloat(css.paddingLeft)) * iframeScale.x;
8423
8413
  const top = iframeRect.top + (currentIFrame.clientTop + parseFloat(css.paddingTop)) * iframeScale.y;
8424
8414
  x *= iframeScale.x;
@@ -8449,9 +8439,14 @@ function getWindowScrollBarX(element, rect) {
8449
8439
  return rect.left + leftScroll;
8450
8440
  }
8451
8441
 
8452
- function getHTMLOffset(documentElement, scroll) {
8442
+ function getHTMLOffset(documentElement, scroll, ignoreScrollbarX) {
8443
+ if (ignoreScrollbarX === void 0) {
8444
+ ignoreScrollbarX = false;
8445
+ }
8453
8446
  const htmlRect = documentElement.getBoundingClientRect();
8454
- const x = htmlRect.left + scroll.scrollLeft - getWindowScrollBarX(documentElement, htmlRect);
8447
+ const x = htmlRect.left + scroll.scrollLeft - (ignoreScrollbarX ? 0 :
8448
+ // RTL <body> scrollbar.
8449
+ getWindowScrollBarX(documentElement, htmlRect));
8455
8450
  const y = htmlRect.top + scroll.scrollTop;
8456
8451
  return {
8457
8452
  x,
@@ -8490,7 +8485,7 @@ function convertOffsetParentRelativeRectToViewportRelativeRect(_ref) {
8490
8485
  offsets.y = offsetRect.y + offsetParent.clientTop;
8491
8486
  }
8492
8487
  }
8493
- const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : createCoords(0);
8488
+ const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll, true) : createCoords(0);
8494
8489
  return {
8495
8490
  width: rect.width * scale.x,
8496
8491
  height: rect.height * scale.y,
@@ -8513,7 +8508,7 @@ function getDocumentRect(element) {
8513
8508
  const height = max(html.scrollHeight, html.clientHeight, body.scrollHeight, body.clientHeight);
8514
8509
  let x = -scroll.scrollLeft + getWindowScrollBarX(element);
8515
8510
  const y = -scroll.scrollTop;
8516
- if (getComputedStyle$1(body).direction === 'rtl') {
8511
+ if (getComputedStyle(body).direction === 'rtl') {
8517
8512
  x += max(html.clientWidth, body.clientWidth) - width;
8518
8513
  }
8519
8514
  return {
@@ -8524,10 +8519,6 @@ function getDocumentRect(element) {
8524
8519
  };
8525
8520
  }
8526
8521
 
8527
- // Safety check: ensure the scrollbar space is reasonable in case this
8528
- // calculation is affected by unusual styles.
8529
- // Most scrollbars leave 15-18px of space.
8530
- const SCROLLBAR_MAX = 25;
8531
8522
  function getViewportRect(element, strategy) {
8532
8523
  const win = getWindow(element);
8533
8524
  const html = getDocumentElement(element);
@@ -8545,24 +8536,6 @@ function getViewportRect(element, strategy) {
8545
8536
  y = visualViewport.offsetTop;
8546
8537
  }
8547
8538
  }
8548
- const windowScrollbarX = getWindowScrollBarX(html);
8549
- // <html> `overflow: hidden` + `scrollbar-gutter: stable` reduces the
8550
- // visual width of the <html> but this is not considered in the size
8551
- // of `html.clientWidth`.
8552
- if (windowScrollbarX <= 0) {
8553
- const doc = html.ownerDocument;
8554
- const body = doc.body;
8555
- const bodyStyles = getComputedStyle(body);
8556
- const bodyMarginInline = doc.compatMode === 'CSS1Compat' ? parseFloat(bodyStyles.marginLeft) + parseFloat(bodyStyles.marginRight) || 0 : 0;
8557
- const clippingStableScrollbarWidth = Math.abs(html.clientWidth - body.clientWidth - bodyMarginInline);
8558
- if (clippingStableScrollbarWidth <= SCROLLBAR_MAX) {
8559
- width -= clippingStableScrollbarWidth;
8560
- }
8561
- } else if (windowScrollbarX <= SCROLLBAR_MAX) {
8562
- // If the <body> scrollbar is on the left, the width needs to be extended
8563
- // by the scrollbar amount so there isn't extra space on the right.
8564
- width += windowScrollbarX;
8565
- }
8566
8539
  return {
8567
8540
  width,
8568
8541
  height,
@@ -8571,7 +8544,6 @@ function getViewportRect(element, strategy) {
8571
8544
  };
8572
8545
  }
8573
8546
 
8574
- const absoluteOrFixed = /*#__PURE__*/new Set(['absolute', 'fixed']);
8575
8547
  // Returns the inner client rect, subtracting scrollbars if present.
8576
8548
  function getInnerBoundingClientRect(element, strategy) {
8577
8549
  const clientRect = getBoundingClientRect(element, true, strategy === 'fixed');
@@ -8613,7 +8585,7 @@ function hasFixedPositionAncestor(element, stopNode) {
8613
8585
  if (parentNode === stopNode || !isElement(parentNode) || isLastTraversableNode(parentNode)) {
8614
8586
  return false;
8615
8587
  }
8616
- return getComputedStyle$1(parentNode).position === 'fixed' || hasFixedPositionAncestor(parentNode, stopNode);
8588
+ return getComputedStyle(parentNode).position === 'fixed' || hasFixedPositionAncestor(parentNode, stopNode);
8617
8589
  }
8618
8590
 
8619
8591
  // A "clipping ancestor" is an `overflow` element with the characteristic of
@@ -8626,17 +8598,17 @@ function getClippingElementAncestors(element, cache) {
8626
8598
  }
8627
8599
  let result = getOverflowAncestors(element, [], false).filter(el => isElement(el) && getNodeName(el) !== 'body');
8628
8600
  let currentContainingBlockComputedStyle = null;
8629
- const elementIsFixed = getComputedStyle$1(element).position === 'fixed';
8601
+ const elementIsFixed = getComputedStyle(element).position === 'fixed';
8630
8602
  let currentNode = elementIsFixed ? getParentNode(element) : element;
8631
8603
 
8632
8604
  // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block
8633
8605
  while (isElement(currentNode) && !isLastTraversableNode(currentNode)) {
8634
- const computedStyle = getComputedStyle$1(currentNode);
8606
+ const computedStyle = getComputedStyle(currentNode);
8635
8607
  const currentNodeIsContaining = isContainingBlock(currentNode);
8636
8608
  if (!currentNodeIsContaining && computedStyle.position === 'fixed') {
8637
8609
  currentContainingBlockComputedStyle = null;
8638
8610
  }
8639
- const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && absoluteOrFixed.has(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);
8611
+ const shouldDropCurrentNode = elementIsFixed ? !currentNodeIsContaining && !currentContainingBlockComputedStyle : !currentNodeIsContaining && computedStyle.position === 'static' && !!currentContainingBlockComputedStyle && ['absolute', 'fixed'].includes(currentContainingBlockComputedStyle.position) || isOverflowElement(currentNode) && !currentNodeIsContaining && hasFixedPositionAncestor(element, currentNode);
8640
8612
  if (shouldDropCurrentNode) {
8641
8613
  // Drop non-containing blocks.
8642
8614
  result = result.filter(ancestor => ancestor !== currentNode);
@@ -8732,11 +8704,11 @@ function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
8732
8704
  }
8733
8705
 
8734
8706
  function isStaticPositioned(element) {
8735
- return getComputedStyle$1(element).position === 'static';
8707
+ return getComputedStyle(element).position === 'static';
8736
8708
  }
8737
8709
 
8738
8710
  function getTrueOffsetParent(element, polyfill) {
8739
- if (!isHTMLElement(element) || getComputedStyle$1(element).position === 'fixed') {
8711
+ if (!isHTMLElement(element) || getComputedStyle(element).position === 'fixed') {
8740
8712
  return null;
8741
8713
  }
8742
8714
  if (polyfill) {
@@ -8797,7 +8769,7 @@ const getElementRects = async function (data) {
8797
8769
  };
8798
8770
 
8799
8771
  function isRTL(element) {
8800
- return getComputedStyle$1(element).direction === 'rtl';
8772
+ return getComputedStyle(element).direction === 'rtl';
8801
8773
  }
8802
8774
 
8803
8775
  const platform = {
@@ -9437,7 +9409,7 @@ const FloatingArrow = /*#__PURE__*/React__namespace.forwardRef(function Floating
9437
9409
  // https://github.com/floating-ui/floating-ui/issues/2932
9438
9410
  index$1(() => {
9439
9411
  if (!floating) return;
9440
- const isRTL = getComputedStyle$1(floating).direction === 'rtl';
9412
+ const isRTL = getComputedStyle(floating).direction === 'rtl';
9441
9413
  if (isRTL) {
9442
9414
  setIsRTL(true);
9443
9415
  }
@@ -9696,7 +9668,7 @@ function useFloating(options) {
9696
9668
  }
9697
9669
 
9698
9670
  /*!
9699
- react-datepicker v8.6.0
9671
+ react-datepicker v8.4.0
9700
9672
  https://github.com/Hacker0x01/react-datepicker
9701
9673
  Released under the MIT License.
9702
9674
  */
@@ -9931,13 +9903,12 @@ var DATE_RANGE_SEPARATOR = " - ";
9931
9903
  * @returns - The formatted date range or an empty string.
9932
9904
  */
9933
9905
  function safeDateRangeFormat(startDate, endDate, props) {
9934
- if (!startDate && !endDate) {
9906
+ if (!startDate) {
9935
9907
  return "";
9936
9908
  }
9937
- var formattedStartDate = startDate ? safeDateFormat(startDate, props) : "";
9909
+ var formattedStartDate = safeDateFormat(startDate, props);
9938
9910
  var formattedEndDate = endDate ? safeDateFormat(endDate, props) : "";
9939
- var dateRangeSeparator = props.rangeSeparator || DATE_RANGE_SEPARATOR;
9940
- return "".concat(formattedStartDate).concat(dateRangeSeparator).concat(formattedEndDate);
9911
+ return "".concat(formattedStartDate).concat(DATE_RANGE_SEPARATOR).concat(formattedEndDate);
9941
9912
  }
9942
9913
  /**
9943
9914
  * Safely formats multiple dates.
@@ -11039,7 +11010,7 @@ var Day = /** @class */ (function (_super) {
11039
11010
  };
11040
11011
  _this.isInSelectingRange = function () {
11041
11012
  var _a;
11042
- var _b = _this.props, day = _b.day, selectsStart = _b.selectsStart, selectsEnd = _b.selectsEnd, selectsRange = _b.selectsRange, selectsDisabledDaysInRange = _b.selectsDisabledDaysInRange, startDate = _b.startDate, swapRange = _b.swapRange, endDate = _b.endDate;
11013
+ var _b = _this.props, day = _b.day, selectsStart = _b.selectsStart, selectsEnd = _b.selectsEnd, selectsRange = _b.selectsRange, selectsDisabledDaysInRange = _b.selectsDisabledDaysInRange, startDate = _b.startDate, endDate = _b.endDate;
11043
11014
  var selectingDate = (_a = _this.props.selectingDate) !== null && _a !== void 0 ? _a : _this.props.preSelection;
11044
11015
  if (!(selectsStart || selectsEnd || selectsRange) ||
11045
11016
  !selectingDate ||
@@ -11056,16 +11027,11 @@ var Day = /** @class */ (function (_super) {
11056
11027
  (isAfter(selectingDate, startDate) || isEqual(selectingDate, startDate))) {
11057
11028
  return isDayInRange(day, startDate, selectingDate);
11058
11029
  }
11059
- if (selectsRange && startDate && !endDate) {
11060
- if (isEqual(selectingDate, startDate)) {
11061
- return isDayInRange(day, startDate, selectingDate);
11062
- }
11063
- if (isAfter(selectingDate, startDate)) {
11064
- return isDayInRange(day, startDate, selectingDate);
11065
- }
11066
- if (swapRange && isBefore(selectingDate, startDate)) {
11067
- return isDayInRange(day, selectingDate, startDate);
11068
- }
11030
+ if (selectsRange &&
11031
+ startDate &&
11032
+ !endDate &&
11033
+ (isAfter(selectingDate, startDate) || isEqual(selectingDate, startDate))) {
11034
+ return isDayInRange(day, startDate, selectingDate);
11069
11035
  }
11070
11036
  return false;
11071
11037
  };
@@ -11074,33 +11040,28 @@ var Day = /** @class */ (function (_super) {
11074
11040
  if (!_this.isInSelectingRange()) {
11075
11041
  return false;
11076
11042
  }
11077
- var _b = _this.props, day = _b.day, startDate = _b.startDate, selectsStart = _b.selectsStart, swapRange = _b.swapRange, selectsRange = _b.selectsRange;
11043
+ var _b = _this.props, day = _b.day, startDate = _b.startDate, selectsStart = _b.selectsStart;
11078
11044
  var selectingDate = (_a = _this.props.selectingDate) !== null && _a !== void 0 ? _a : _this.props.preSelection;
11079
11045
  if (selectsStart) {
11080
11046
  return isSameDay(day, selectingDate);
11081
11047
  }
11082
- if (selectsRange && swapRange && startDate && selectingDate) {
11083
- return isSameDay(day, isBefore(selectingDate, startDate) ? selectingDate : startDate);
11048
+ else {
11049
+ return isSameDay(day, startDate);
11084
11050
  }
11085
- return isSameDay(day, startDate);
11086
11051
  };
11087
11052
  _this.isSelectingRangeEnd = function () {
11088
11053
  var _a;
11089
11054
  if (!_this.isInSelectingRange()) {
11090
11055
  return false;
11091
11056
  }
11092
- var _b = _this.props, day = _b.day, endDate = _b.endDate, selectsEnd = _b.selectsEnd, selectsRange = _b.selectsRange, swapRange = _b.swapRange, startDate = _b.startDate;
11057
+ var _b = _this.props, day = _b.day, endDate = _b.endDate, selectsEnd = _b.selectsEnd, selectsRange = _b.selectsRange;
11093
11058
  var selectingDate = (_a = _this.props.selectingDate) !== null && _a !== void 0 ? _a : _this.props.preSelection;
11094
- if (selectsEnd) {
11059
+ if (selectsEnd || selectsRange) {
11095
11060
  return isSameDay(day, selectingDate);
11096
11061
  }
11097
- if (selectsRange && swapRange && startDate && selectingDate) {
11098
- return isSameDay(day, isBefore(selectingDate, startDate) ? startDate : selectingDate);
11099
- }
11100
- if (selectsRange) {
11101
- return isSameDay(day, selectingDate);
11062
+ else {
11063
+ return isSameDay(day, endDate);
11102
11064
  }
11103
- return isSameDay(day, endDate);
11104
11065
  };
11105
11066
  _this.isRangeStart = function () {
11106
11067
  var _a = _this.props, day = _a.day, startDate = _a.startDate, endDate = _a.endDate;
@@ -11468,10 +11429,7 @@ var Week = /** @class */ (function (_super) {
11468
11429
  "react-datepicker__week--selected": isSameDay(this.startOfWeek(), this.props.selected),
11469
11430
  "react-datepicker__week--keyboard-selected": this.isKeyboardSelected(),
11470
11431
  };
11471
- var customWeekClassName = this.props.weekClassName
11472
- ? this.props.weekClassName(this.startOfWeek())
11473
- : undefined;
11474
- return (React__namespace.default.createElement("div", { className: clsx(weekNumberClasses, customWeekClassName) }, this.renderDays()));
11432
+ return React__namespace.default.createElement("div", { className: clsx(weekNumberClasses) }, this.renderDays());
11475
11433
  };
11476
11434
  return Week;
11477
11435
  }(React.Component));
@@ -12174,40 +12132,11 @@ var MonthDropdownOptions = /** @class */ (function (_super) {
12174
12132
  __extends(MonthDropdownOptions, _super);
12175
12133
  function MonthDropdownOptions() {
12176
12134
  var _this = _super !== null && _super.apply(this, arguments) || this;
12177
- _this.monthOptionButtonsRef = {};
12178
12135
  _this.isSelectedMonth = function (i) { return _this.props.month === i; };
12179
- _this.handleOptionKeyDown = function (i, e) {
12180
- var _a;
12181
- switch (e.key) {
12182
- case "Enter":
12183
- e.preventDefault();
12184
- _this.onChange(i);
12185
- break;
12186
- case "Escape":
12187
- e.preventDefault();
12188
- _this.props.onCancel();
12189
- break;
12190
- case "ArrowUp":
12191
- case "ArrowDown": {
12192
- e.preventDefault();
12193
- var newMonth = (i + (e.key === "ArrowUp" ? -1 : 1) + _this.props.monthNames.length) %
12194
- _this.props.monthNames.length;
12195
- (_a = _this.monthOptionButtonsRef[newMonth]) === null || _a === void 0 ? void 0 : _a.focus();
12196
- break;
12197
- }
12198
- }
12199
- };
12200
12136
  _this.renderOptions = function () {
12201
- // Clear refs to prevent memory leaks on re-render
12202
- _this.monthOptionButtonsRef = {};
12203
- return _this.props.monthNames.map(function (month, i) { return (React__namespace.default.createElement("div", { ref: function (el) {
12204
- _this.monthOptionButtonsRef[i] = el;
12205
- if (_this.isSelectedMonth(i)) {
12206
- el === null || el === void 0 ? void 0 : el.focus();
12207
- }
12208
- }, role: "button", tabIndex: 0, className: _this.isSelectedMonth(i)
12137
+ return _this.props.monthNames.map(function (month, i) { return (React__namespace.default.createElement("div", { className: _this.isSelectedMonth(i)
12209
12138
  ? "react-datepicker__month-option react-datepicker__month-option--selected_month"
12210
- : "react-datepicker__month-option", key: month, onClick: _this.onChange.bind(_this, i), onKeyDown: _this.handleOptionKeyDown.bind(_this, i), "aria-selected": _this.isSelectedMonth(i) ? "true" : undefined },
12139
+ : "react-datepicker__month-option", key: month, onClick: _this.onChange.bind(_this, i), "aria-selected": _this.isSelectedMonth(i) ? "true" : undefined },
12211
12140
  _this.isSelectedMonth(i) ? (React__namespace.default.createElement("span", { className: "react-datepicker__month-option--selected" }, "\u2713")) : (""),
12212
12141
  month)); });
12213
12142
  };
@@ -12232,7 +12161,7 @@ var MonthDropdown = /** @class */ (function (_super) {
12232
12161
  return monthNames.map(function (m, i) { return (React__namespace.default.createElement("option", { key: m, value: i }, m)); });
12233
12162
  };
12234
12163
  _this.renderSelectMode = function (monthNames) { return (React__namespace.default.createElement("select", { value: _this.props.month, className: "react-datepicker__month-select", onChange: function (e) { return _this.onChange(parseInt(e.target.value)); } }, _this.renderSelectOptions(monthNames))); };
12235
- _this.renderReadView = function (visible, monthNames) { return (React__namespace.default.createElement("button", { key: "read", type: "button", style: { visibility: visible ? "visible" : "hidden" }, className: "react-datepicker__month-read-view", onClick: _this.toggleDropdown },
12164
+ _this.renderReadView = function (visible, monthNames) { return (React__namespace.default.createElement("div", { key: "read", style: { visibility: visible ? "visible" : "hidden" }, className: "react-datepicker__month-read-view", onClick: _this.toggleDropdown },
12236
12165
  React__namespace.default.createElement("span", { className: "react-datepicker__month-read-view--down-arrow" }),
12237
12166
  React__namespace.default.createElement("span", { className: "react-datepicker__month-read-view--selected-month" }, monthNames[_this.props.month]))); };
12238
12167
  _this.renderDropdown = function (monthNames) { return (React__namespace.default.createElement(MonthDropdownOptions, _assign({ key: "dropdown" }, _this.props, { monthNames: monthNames, onChange: _this.onChange, onCancel: _this.toggleDropdown }))); };
@@ -12720,20 +12649,19 @@ var Year$1 = /** @class */ (function (_super) {
12720
12649
  return isSameYear(_year, endDate !== null && endDate !== void 0 ? endDate : null);
12721
12650
  };
12722
12651
  _this.isKeyboardSelected = function (y) {
12723
- if (_this.props.disabledKeyboardNavigation ||
12724
- _this.props.date === undefined ||
12652
+ if (_this.props.date === undefined ||
12653
+ _this.props.selected == null ||
12725
12654
  _this.props.preSelection == null) {
12726
12655
  return;
12727
12656
  }
12728
- var _a = _this.props, minDate = _a.minDate, maxDate = _a.maxDate, excludeDates = _a.excludeDates, includeDates = _a.includeDates, filterDate = _a.filterDate, selected = _a.selected;
12657
+ var _a = _this.props, minDate = _a.minDate, maxDate = _a.maxDate, excludeDates = _a.excludeDates, includeDates = _a.includeDates, filterDate = _a.filterDate;
12729
12658
  var date = getStartOfYear(setYear(_this.props.date, y));
12730
12659
  var isDisabled = (minDate || maxDate || excludeDates || includeDates || filterDate) &&
12731
12660
  isYearDisabled(y, _this.props);
12732
- var isSelectedDay = !!selected && isSameDay(date, getStartOfYear(selected));
12733
- var isKeyboardSelectedDay = isSameDay(date, getStartOfYear(_this.props.preSelection));
12734
- return (!_this.props.inline &&
12735
- !isSelectedDay &&
12736
- isKeyboardSelectedDay &&
12661
+ return (!_this.props.disabledKeyboardNavigation &&
12662
+ !_this.props.inline &&
12663
+ !isSameDay(date, getStartOfYear(_this.props.selected)) &&
12664
+ isSameDay(date, getStartOfYear(_this.props.preSelection)) &&
12737
12665
  !isDisabled);
12738
12666
  };
12739
12667
  _this.isSelectedYear = function (year) {
@@ -12919,42 +12847,11 @@ var YearDropdownOptions = /** @class */ (function (_super) {
12919
12847
  __extends(YearDropdownOptions, _super);
12920
12848
  function YearDropdownOptions(props) {
12921
12849
  var _this = _super.call(this, props) || this;
12922
- _this.yearOptionButtonsRef = {};
12923
- _this.handleOptionKeyDown = function (year, e) {
12924
- var _a;
12925
- switch (e.key) {
12926
- case "Enter":
12927
- e.preventDefault();
12928
- _this.onChange(year);
12929
- break;
12930
- case "Escape":
12931
- e.preventDefault();
12932
- _this.props.onCancel();
12933
- break;
12934
- case "ArrowUp":
12935
- case "ArrowDown": {
12936
- e.preventDefault();
12937
- var newYear = year + (e.key === "ArrowUp" ? 1 : -1);
12938
- // Add bounds checking to ensure the year exists in our refs
12939
- if (_this.yearOptionButtonsRef[newYear]) {
12940
- (_a = _this.yearOptionButtonsRef[newYear]) === null || _a === void 0 ? void 0 : _a.focus();
12941
- }
12942
- break;
12943
- }
12944
- }
12945
- };
12946
12850
  _this.renderOptions = function () {
12947
- // Clear refs to prevent memory leaks on re-render
12948
- _this.yearOptionButtonsRef = {};
12949
12851
  var selectedYear = _this.props.year;
12950
- var options = _this.state.yearsList.map(function (year) { return (React__namespace.default.createElement("div", { ref: function (el) {
12951
- _this.yearOptionButtonsRef[year] = el;
12952
- if (year === selectedYear) {
12953
- el === null || el === void 0 ? void 0 : el.focus();
12954
- }
12955
- }, role: "button", tabIndex: 0, className: selectedYear === year
12852
+ var options = _this.state.yearsList.map(function (year) { return (React__namespace.default.createElement("div", { className: selectedYear === year
12956
12853
  ? "react-datepicker__year-option react-datepicker__year-option--selected_year"
12957
- : "react-datepicker__year-option", key: year, onClick: _this.onChange.bind(_this, year), onKeyDown: _this.handleOptionKeyDown.bind(_this, year), "aria-selected": selectedYear === year ? "true" : undefined },
12854
+ : "react-datepicker__year-option", key: year, onClick: _this.onChange.bind(_this, year), "aria-selected": selectedYear === year ? "true" : undefined },
12958
12855
  selectedYear === year ? (React__namespace.default.createElement("span", { className: "react-datepicker__year-option--selected" }, "\u2713")) : (""),
12959
12856
  year)); });
12960
12857
  var minYear = _this.props.minDate ? getYear(_this.props.minDate) : null;
@@ -13049,7 +12946,9 @@ var YearDropdown = /** @class */ (function (_super) {
13049
12946
  _this.onChange(parseInt(event.target.value));
13050
12947
  };
13051
12948
  _this.renderSelectMode = function () { return (React__namespace.default.createElement("select", { value: _this.props.year, className: "react-datepicker__year-select", onChange: _this.onSelectChange }, _this.renderSelectOptions())); };
13052
- _this.renderReadView = function (visible) { return (React__namespace.default.createElement("button", { key: "read", type: "button", style: { visibility: visible ? "visible" : "hidden" }, className: "react-datepicker__year-read-view", onClick: _this.toggleDropdown },
12949
+ _this.renderReadView = function (visible) { return (React__namespace.default.createElement("div", { key: "read", style: { visibility: visible ? "visible" : "hidden" }, className: "react-datepicker__year-read-view", onClick: function (event) {
12950
+ return _this.toggleDropdown(event);
12951
+ } },
13053
12952
  React__namespace.default.createElement("span", { className: "react-datepicker__year-read-view--down-arrow" }),
13054
12953
  React__namespace.default.createElement("span", { className: "react-datepicker__year-read-view--selected-year" }, _this.props.year))); };
13055
12954
  _this.renderDropdown = function () { return (React__namespace.default.createElement(YearDropdownOptions, _assign({ key: "dropdown" }, _this.props, { onChange: _this.onChange, onCancel: _this.toggleDropdown }))); };
@@ -13111,7 +13010,6 @@ var DROPDOWN_FOCUS_CLASSNAMES = [
13111
13010
  "react-datepicker__month-select",
13112
13011
  "react-datepicker__month-year-select",
13113
13012
  ];
13114
- var OUTSIDE_CLICK_IGNORE_CLASS = "react-datepicker-ignore-onclickoutside";
13115
13013
  var isDropdownSelect = function (element) {
13116
13014
  var classNames = (element.className || "").split(/\s+/);
13117
13015
  return DROPDOWN_FOCUS_CLASSNAMES.some(function (testClassname) { return classNames.indexOf(testClassname) >= 0; });
@@ -13263,9 +13161,7 @@ var Calendar = /** @class */ (function (_super) {
13263
13161
  var startOfWeek = getStartOfWeek(date, _this.props.locale, _this.props.calendarStartDay);
13264
13162
  var dayNames = [];
13265
13163
  if (_this.props.showWeekNumbers) {
13266
- dayNames.push(React__namespace.default.createElement("div", { key: "W", className: "react-datepicker__day-name", role: "columnheader" },
13267
- React__namespace.default.createElement("span", { className: "sr-only" }, "Week number"),
13268
- React__namespace.default.createElement("span", { "aria-hidden": "true" }, _this.props.weekLabel || "#")));
13164
+ dayNames.push(React__namespace.default.createElement("div", { key: "W", className: "react-datepicker__day-name" }, _this.props.weekLabel || "#"));
13269
13165
  }
13270
13166
  return dayNames.concat([0, 1, 2, 3, 4, 5, 6].map(function (offset) {
13271
13167
  var day = addDays(startOfWeek, offset);
@@ -13273,9 +13169,7 @@ var Calendar = /** @class */ (function (_super) {
13273
13169
  var weekDayClassName = _this.props.weekDayClassName
13274
13170
  ? _this.props.weekDayClassName(day)
13275
13171
  : undefined;
13276
- return (React__namespace.default.createElement("div", { key: offset, role: "columnheader", className: clsx("react-datepicker__day-name", weekDayClassName) },
13277
- React__namespace.default.createElement("span", { className: "sr-only" }, formatDate(day, "EEEE", _this.props.locale)),
13278
- React__namespace.default.createElement("span", { "aria-hidden": "true" }, weekDayName)));
13172
+ return (React__namespace.default.createElement("div", { key: offset, "aria-label": formatDate(day, "EEEE", _this.props.locale), className: clsx("react-datepicker__day-name", weekDayClassName) }, weekDayName));
13279
13173
  }));
13280
13174
  };
13281
13175
  _this.formatWeekday = function (day, locale) {
@@ -13490,7 +13384,7 @@ var Calendar = /** @class */ (function (_super) {
13490
13384
  _this.renderMonthDropdown(i !== 0),
13491
13385
  _this.renderMonthYearDropdown(i !== 0),
13492
13386
  _this.renderYearDropdown(i !== 0)),
13493
- React__namespace.default.createElement("div", { className: "react-datepicker__day-names", role: "row" }, _this.header(monthDate))));
13387
+ React__namespace.default.createElement("div", { className: "react-datepicker__day-names" }, _this.header(monthDate))));
13494
13388
  };
13495
13389
  _this.renderCustomHeader = function (headerArgs) {
13496
13390
  var _a, _b;
@@ -13499,15 +13393,6 @@ var Calendar = /** @class */ (function (_super) {
13499
13393
  _this.props.showTimeSelectOnly) {
13500
13394
  return null;
13501
13395
  }
13502
- var _c = _this.props, showYearPicker = _c.showYearPicker, yearItemNumber = _c.yearItemNumber;
13503
- var visibleYearsRange;
13504
- if (showYearPicker) {
13505
- var _d = getYearsPeriod(monthDate, yearItemNumber), startYear = _d.startPeriod, endYear = _d.endPeriod;
13506
- visibleYearsRange = {
13507
- startYear: startYear,
13508
- endYear: endYear,
13509
- };
13510
- }
13511
13396
  var prevMonthButtonDisabled = monthDisabledBefore(_this.state.date, _this.props);
13512
13397
  var nextMonthButtonDisabled = monthDisabledAfter(_this.state.date, _this.props);
13513
13398
  var prevYearButtonDisabled = yearDisabledBefore(_this.state.date, _this.props);
@@ -13516,7 +13401,7 @@ var Calendar = /** @class */ (function (_super) {
13516
13401
  !_this.props.showQuarterYearPicker &&
13517
13402
  !_this.props.showYearPicker;
13518
13403
  return (React__namespace.default.createElement("div", { className: "react-datepicker__header react-datepicker__header--custom", onFocus: _this.props.onDropdownFocus }, (_b = (_a = _this.props).renderCustomHeader) === null || _b === void 0 ? void 0 :
13519
- _b.call(_a, _assign(_assign(_assign({}, _this.state), (showYearPicker && { visibleYearsRange: visibleYearsRange })), { customHeaderCount: i, monthDate: monthDate, changeMonth: _this.changeMonth, changeYear: _this.changeYear, decreaseMonth: _this.decreaseMonth, increaseMonth: _this.increaseMonth, decreaseYear: _this.decreaseYear, increaseYear: _this.increaseYear, prevMonthButtonDisabled: prevMonthButtonDisabled, nextMonthButtonDisabled: nextMonthButtonDisabled, prevYearButtonDisabled: prevYearButtonDisabled, nextYearButtonDisabled: nextYearButtonDisabled })),
13404
+ _b.call(_a, _assign(_assign({}, _this.state), { customHeaderCount: i, monthDate: monthDate, changeMonth: _this.changeMonth, changeYear: _this.changeYear, decreaseMonth: _this.decreaseMonth, increaseMonth: _this.increaseMonth, decreaseYear: _this.decreaseYear, increaseYear: _this.increaseYear, prevMonthButtonDisabled: prevMonthButtonDisabled, nextMonthButtonDisabled: nextMonthButtonDisabled, prevYearButtonDisabled: prevYearButtonDisabled, nextYearButtonDisabled: nextYearButtonDisabled })),
13520
13405
  showDayNames && (React__namespace.default.createElement("div", { className: "react-datepicker__day-names" }, _this.header(monthDate)))));
13521
13406
  };
13522
13407
  _this.renderYearHeader = function (_a) {
@@ -13636,7 +13521,6 @@ var Calendar = /** @class */ (function (_super) {
13636
13521
  return {
13637
13522
  monthsShown: 1,
13638
13523
  forceShowMonthNavigation: false,
13639
- outsideClickIgnoreClass: OUTSIDE_CLICK_IGNORE_CLASS,
13640
13524
  timeCaption: "Time",
13641
13525
  previousYearButtonLabel: "Previous Year",
13642
13526
  nextYearButtonLabel: "Next Year",
@@ -13870,7 +13754,7 @@ var TabLoop = /** @class */ (function (_super) {
13870
13754
  * @returns A new component with floating behavior.
13871
13755
  */
13872
13756
  function withFloating(Component) {
13873
- function WithFloating(props) {
13757
+ var WithFloating = function (props) {
13874
13758
  var _a;
13875
13759
  var hidePopper = typeof props.hidePopper === "boolean" ? props.hidePopper : true;
13876
13760
  var arrowRef = React.useRef(null);
@@ -13881,35 +13765,51 @@ function withFloating(Component) {
13881
13765
  ], ((_a = props.popperModifiers) !== null && _a !== void 0 ? _a : []), true) }, props.popperProps));
13882
13766
  var componentProps = _assign(_assign({}, props), { hidePopper: hidePopper, popperProps: _assign(_assign({}, floatingProps), { arrowRef: arrowRef }) });
13883
13767
  return React__namespace.default.createElement(Component, _assign({}, componentProps));
13884
- }
13885
- WithFloating.displayName = "withFloating(".concat(Component.displayName || Component.name || "Component", ")");
13768
+ };
13886
13769
  return WithFloating;
13887
13770
  }
13888
13771
 
13889
13772
  // Exported for testing purposes
13890
- var PopperComponent = function (props) {
13891
- var className = props.className, wrapperClassName = props.wrapperClassName, _a = props.hidePopper, hidePopper = _a === void 0 ? true : _a, popperComponent = props.popperComponent, targetComponent = props.targetComponent, enableTabLoop = props.enableTabLoop, popperOnKeyDown = props.popperOnKeyDown, portalId = props.portalId, portalHost = props.portalHost, popperProps = props.popperProps, showArrow = props.showArrow;
13892
- var popper = undefined;
13893
- if (!hidePopper) {
13894
- var classes = clsx("react-datepicker-popper", className);
13895
- popper = (React__namespace.default.createElement(TabLoop, { enableTabLoop: enableTabLoop },
13896
- React__namespace.default.createElement("div", { ref: popperProps.refs.setFloating, style: popperProps.floatingStyles, className: classes, "data-placement": popperProps.placement, onKeyDown: popperOnKeyDown },
13897
- popperComponent,
13898
- showArrow && (React__namespace.default.createElement(FloatingArrow, { ref: popperProps.arrowRef, context: popperProps.context, fill: "currentColor", strokeWidth: 1, height: 8, width: 16, style: { transform: "translateY(-1px)" }, className: "react-datepicker__triangle" })))));
13899
- }
13900
- if (props.popperContainer) {
13901
- popper = React.createElement(props.popperContainer, {}, popper);
13902
- }
13903
- if (portalId && !hidePopper) {
13904
- popper = (React__namespace.default.createElement(Portal, { portalId: portalId, portalHost: portalHost }, popper));
13905
- }
13906
- var wrapperClasses = clsx("react-datepicker-wrapper", wrapperClassName);
13907
- return (React__namespace.default.createElement(React__namespace.default.Fragment, null,
13908
- React__namespace.default.createElement("div", { ref: popperProps.refs.setReference, className: wrapperClasses }, targetComponent),
13909
- popper));
13910
- };
13773
+ var PopperComponent = /** @class */ (function (_super) {
13774
+ __extends(PopperComponent, _super);
13775
+ function PopperComponent() {
13776
+ return _super !== null && _super.apply(this, arguments) || this;
13777
+ }
13778
+ Object.defineProperty(PopperComponent, "defaultProps", {
13779
+ get: function () {
13780
+ return {
13781
+ hidePopper: true,
13782
+ };
13783
+ },
13784
+ enumerable: false,
13785
+ configurable: true
13786
+ });
13787
+ PopperComponent.prototype.render = function () {
13788
+ var _a = this.props, className = _a.className, wrapperClassName = _a.wrapperClassName, _b = _a.hidePopper, hidePopper = _b === void 0 ? PopperComponent.defaultProps.hidePopper : _b, popperComponent = _a.popperComponent, targetComponent = _a.targetComponent, enableTabLoop = _a.enableTabLoop, popperOnKeyDown = _a.popperOnKeyDown, portalId = _a.portalId, portalHost = _a.portalHost, popperProps = _a.popperProps, showArrow = _a.showArrow;
13789
+ var popper = undefined;
13790
+ if (!hidePopper) {
13791
+ var classes = clsx("react-datepicker-popper", className);
13792
+ popper = (React__namespace.default.createElement(TabLoop, { enableTabLoop: enableTabLoop },
13793
+ React__namespace.default.createElement("div", { ref: popperProps.refs.setFloating, style: popperProps.floatingStyles, className: classes, "data-placement": popperProps.placement, onKeyDown: popperOnKeyDown },
13794
+ popperComponent,
13795
+ showArrow && (React__namespace.default.createElement(FloatingArrow, { ref: popperProps.arrowRef, context: popperProps.context, fill: "currentColor", strokeWidth: 1, height: 8, width: 16, style: { transform: "translateY(-1px)" }, className: "react-datepicker__triangle" })))));
13796
+ }
13797
+ if (this.props.popperContainer) {
13798
+ popper = React.createElement(this.props.popperContainer, {}, popper);
13799
+ }
13800
+ if (portalId && !hidePopper) {
13801
+ popper = (React__namespace.default.createElement(Portal, { portalId: portalId, portalHost: portalHost }, popper));
13802
+ }
13803
+ var wrapperClasses = clsx("react-datepicker-wrapper", wrapperClassName);
13804
+ return (React__namespace.default.createElement(React__namespace.default.Fragment, null,
13805
+ React__namespace.default.createElement("div", { ref: popperProps.refs.setReference, className: wrapperClasses }, targetComponent),
13806
+ popper));
13807
+ };
13808
+ return PopperComponent;
13809
+ }(React.Component));
13911
13810
  var PopperComponent$1 = withFloating(PopperComponent);
13912
13811
 
13812
+ var outsideClickIgnoreClass = "react-datepicker-ignore-onclickoutside";
13913
13813
  // Compares dates year+month combinations
13914
13814
  function hasPreSelectionChanged(date1, date2) {
13915
13815
  if (date1 && date2) {
@@ -13975,35 +13875,6 @@ var DatePicker = /** @class */ (function (_super) {
13975
13875
  wasHidden: false,
13976
13876
  };
13977
13877
  };
13978
- _this.getInputValue = function () {
13979
- var _a;
13980
- var _b = _this.props, locale = _b.locale, startDate = _b.startDate, endDate = _b.endDate, rangeSeparator = _b.rangeSeparator, selected = _b.selected, selectedDates = _b.selectedDates, selectsMultiple = _b.selectsMultiple, selectsRange = _b.selectsRange, value = _b.value;
13981
- var dateFormat = (_a = _this.props.dateFormat) !== null && _a !== void 0 ? _a : DatePicker.defaultProps.dateFormat;
13982
- var inputValue = _this.state.inputValue;
13983
- if (typeof value === "string") {
13984
- return value;
13985
- }
13986
- else if (typeof inputValue === "string") {
13987
- return inputValue;
13988
- }
13989
- else if (selectsRange) {
13990
- return safeDateRangeFormat(startDate, endDate, {
13991
- dateFormat: dateFormat,
13992
- locale: locale,
13993
- rangeSeparator: rangeSeparator,
13994
- });
13995
- }
13996
- else if (selectsMultiple) {
13997
- return safeMultipleDatesFormat(selectedDates !== null && selectedDates !== void 0 ? selectedDates : [], {
13998
- dateFormat: dateFormat,
13999
- locale: locale,
14000
- });
14001
- }
14002
- return safeDateFormat(selected, {
14003
- dateFormat: dateFormat,
14004
- locale: locale,
14005
- });
14006
- };
14007
13878
  _this.resetHiddenStatus = function () {
14008
13879
  _this.setState(_assign(_assign({}, _this.state), { wasHidden: false }));
14009
13880
  };
@@ -14103,15 +13974,11 @@ var DatePicker = /** @class */ (function (_super) {
14103
13974
  _this.handleDropdownFocus = function () {
14104
13975
  _this.cancelFocusInput();
14105
13976
  };
14106
- _this.resetInputValue = function () {
14107
- _this.setState(_assign(_assign({}, _this.state), { inputValue: null }));
14108
- };
14109
13977
  _this.handleBlur = function (event) {
14110
13978
  var _a, _b;
14111
13979
  if (!_this.state.open || _this.props.withPortal || _this.props.showTimeInput) {
14112
13980
  (_b = (_a = _this.props).onBlur) === null || _b === void 0 ? void 0 : _b.call(_a, event);
14113
13981
  }
14114
- _this.resetInputValue();
14115
13982
  if (_this.state.open && _this.props.open === false) {
14116
13983
  _this.setOpen(false);
14117
13984
  }
@@ -14152,17 +14019,11 @@ var DatePicker = /** @class */ (function (_super) {
14152
14019
  var strictParsing = (_b = _this.props.strictParsing) !== null && _b !== void 0 ? _b : DatePicker.defaultProps.strictParsing;
14153
14020
  var value = (event === null || event === void 0 ? void 0 : event.target) instanceof HTMLInputElement ? event.target.value : "";
14154
14021
  if (selectsRange) {
14155
- var rangeSeparator = _this.props.rangeSeparator;
14156
- var trimmedRangeSeparator = rangeSeparator.trim();
14157
14022
  var _g = value
14158
- .split(dateFormat.includes(trimmedRangeSeparator)
14159
- ? rangeSeparator
14160
- : trimmedRangeSeparator, 2)
14023
+ .split(dateFormat.includes("-") ? DATE_RANGE_SEPARATOR : "-", 2)
14161
14024
  .map(function (val) { return val.trim(); }), valueStart = _g[0], valueEnd = _g[1];
14162
14025
  var startDateNew = parseDate(valueStart !== null && valueStart !== void 0 ? valueStart : "", dateFormat, _this.props.locale, strictParsing);
14163
- var endDateNew = startDateNew
14164
- ? parseDate(valueEnd !== null && valueEnd !== void 0 ? valueEnd : "", dateFormat, _this.props.locale, strictParsing)
14165
- : null;
14026
+ var endDateNew = parseDate(valueEnd !== null && valueEnd !== void 0 ? valueEnd : "", dateFormat, _this.props.locale, strictParsing);
14166
14027
  var startChanged = (startDate === null || startDate === void 0 ? void 0 : startDate.getTime()) !== (startDateNew === null || startDateNew === void 0 ? void 0 : startDateNew.getTime());
14167
14028
  var endChanged = (endDate === null || endDate === void 0 ? void 0 : endDate.getTime()) !== (endDateNew === null || endDateNew === void 0 ? void 0 : endDateNew.getTime());
14168
14029
  if (!startChanged && !endChanged) {
@@ -14188,12 +14049,7 @@ var DatePicker = /** @class */ (function (_super) {
14188
14049
  _this.handleSelect = function (date, event, monthSelectedIn) {
14189
14050
  if (_this.props.readOnly)
14190
14051
  return;
14191
- var _a = _this.props, selectsRange = _a.selectsRange, startDate = _a.startDate, endDate = _a.endDate, swapRange = _a.swapRange;
14192
- var isDateSelectionComplete = !selectsRange ||
14193
- (startDate && !endDate && (swapRange || !isDateBefore(date, startDate)));
14194
- if (_this.props.shouldCloseOnSelect &&
14195
- !_this.props.showTimeSelect &&
14196
- isDateSelectionComplete) {
14052
+ if (_this.props.shouldCloseOnSelect && !_this.props.showTimeSelect) {
14197
14053
  // Preventing onFocus event to fix issue
14198
14054
  // https://github.com/Hacker0x01/react-datepicker/issues/628
14199
14055
  _this.sendFocusBackToInput();
@@ -14208,8 +14064,16 @@ var DatePicker = /** @class */ (function (_super) {
14208
14064
  if (!_this.props.shouldCloseOnSelect || _this.props.showTimeSelect) {
14209
14065
  _this.setPreSelection(date);
14210
14066
  }
14211
- else if (isDateSelectionComplete) {
14212
- _this.setOpen(false);
14067
+ else if (!_this.props.inline) {
14068
+ if (!_this.props.selectsRange) {
14069
+ _this.setOpen(false);
14070
+ }
14071
+ var _a = _this.props, startDate = _a.startDate, endDate = _a.endDate;
14072
+ if (startDate &&
14073
+ !endDate &&
14074
+ (_this.props.swapRange || !isDateBefore(date, startDate))) {
14075
+ _this.setOpen(false);
14076
+ }
14213
14077
  }
14214
14078
  };
14215
14079
  // setSelected is called either from handleChange (user typed date into textbox and it was parsed) or handleSelect (user selected date from calendar using mouse or keyboard)
@@ -14274,7 +14138,6 @@ var DatePicker = /** @class */ (function (_super) {
14274
14138
  if (selectsRange) {
14275
14139
  var noRanges = !startDate && !endDate;
14276
14140
  var hasStartRange = startDate && !endDate;
14277
- var hasOnlyEndRange = !startDate && !!endDate;
14278
14141
  var isRangeFilled = startDate && endDate;
14279
14142
  if (noRanges) {
14280
14143
  onChange === null || onChange === void 0 ? void 0 : onChange([changedDate, null], event);
@@ -14295,14 +14158,6 @@ var DatePicker = /** @class */ (function (_super) {
14295
14158
  onChange === null || onChange === void 0 ? void 0 : onChange([startDate, changedDate], event);
14296
14159
  }
14297
14160
  }
14298
- else if (hasOnlyEndRange) {
14299
- if (changedDate && isDateBefore(changedDate, endDate)) {
14300
- onChange === null || onChange === void 0 ? void 0 : onChange([changedDate, endDate], event);
14301
- }
14302
- else {
14303
- onChange === null || onChange === void 0 ? void 0 : onChange([changedDate, null], event);
14304
- }
14305
- }
14306
14161
  if (isRangeFilled) {
14307
14162
  onChange === null || onChange === void 0 ? void 0 : onChange([changedDate, null], event);
14308
14163
  }
@@ -14676,12 +14531,10 @@ var DatePicker = /** @class */ (function (_super) {
14676
14531
  }
14677
14532
  return (React__namespace.default.createElement(Calendar, _assign({ showMonthYearDropdown: undefined, ref: function (elem) {
14678
14533
  _this.calendar = elem;
14679
- } }, _this.props, _this.state, { setOpen: _this.setOpen, dateFormat: (_a = _this.props.dateFormatCalendar) !== null && _a !== void 0 ? _a : DatePicker.defaultProps.dateFormatCalendar, onSelect: _this.handleSelect, onClickOutside: _this.handleCalendarClickOutside, holidays: getHolidaysMap(_this.modifyHolidays()), outsideClickIgnoreClass: _this.props.outsideClickIgnoreClass, onDropdownFocus: _this.handleDropdownFocus, onTimeChange: _this.handleTimeChange, className: _this.props.calendarClassName, container: _this.props.calendarContainer, handleOnKeyDown: _this.props.onKeyDown, handleOnDayKeyDown: _this.onDayKeyDown, setPreSelection: _this.setPreSelection, dropdownMode: (_b = _this.props.dropdownMode) !== null && _b !== void 0 ? _b : DatePicker.defaultProps.dropdownMode }), _this.props.children));
14534
+ } }, _this.props, _this.state, { setOpen: _this.setOpen, dateFormat: (_a = _this.props.dateFormatCalendar) !== null && _a !== void 0 ? _a : DatePicker.defaultProps.dateFormatCalendar, onSelect: _this.handleSelect, onClickOutside: _this.handleCalendarClickOutside, holidays: getHolidaysMap(_this.modifyHolidays()), outsideClickIgnoreClass: outsideClickIgnoreClass, onDropdownFocus: _this.handleDropdownFocus, onTimeChange: _this.handleTimeChange, className: _this.props.calendarClassName, container: _this.props.calendarContainer, handleOnKeyDown: _this.props.onKeyDown, handleOnDayKeyDown: _this.onDayKeyDown, setPreSelection: _this.setPreSelection, dropdownMode: (_b = _this.props.dropdownMode) !== null && _b !== void 0 ? _b : DatePicker.defaultProps.dropdownMode }), _this.props.children));
14680
14535
  };
14681
14536
  _this.renderAriaLiveRegion = function () {
14682
- var _a;
14683
- var locale = _this.props.locale;
14684
- var dateFormat = (_a = _this.props.dateFormat) !== null && _a !== void 0 ? _a : DatePicker.defaultProps.dateFormat;
14537
+ var _a = _this.props, _b = _a.dateFormat, dateFormat = _b === void 0 ? DatePicker.defaultProps.dateFormat : _b, locale = _a.locale;
14685
14538
  var isContainsTime = _this.props.showTimeInput || _this.props.showTimeSelect;
14686
14539
  var longDateFormat = isContainsTime ? "PPPPp" : "PPPP";
14687
14540
  var ariaLiveMessage;
@@ -14724,17 +14577,36 @@ var DatePicker = /** @class */ (function (_super) {
14724
14577
  };
14725
14578
  _this.renderDateInput = function () {
14726
14579
  var _a, _b;
14580
+ var _c;
14727
14581
  var className = clsx(_this.props.className, (_a = {},
14728
- _a[_this.props.outsideClickIgnoreClass ||
14729
- DatePicker.defaultProps.outsideClickIgnoreClass] = _this.state.open,
14582
+ _a[outsideClickIgnoreClass] = _this.state.open,
14730
14583
  _a));
14731
14584
  var customInput = _this.props.customInput || React__namespace.default.createElement("input", { type: "text" });
14732
14585
  var customInputRef = _this.props.customInputRef || "ref";
14586
+ var _d = _this.props, _e = _d.dateFormat, dateFormat = _e === void 0 ? DatePicker.defaultProps.dateFormat : _e, locale = _d.locale;
14587
+ var inputValue = typeof _this.props.value === "string"
14588
+ ? _this.props.value
14589
+ : typeof _this.state.inputValue === "string"
14590
+ ? _this.state.inputValue
14591
+ : _this.props.selectsRange
14592
+ ? safeDateRangeFormat(_this.props.startDate, _this.props.endDate, {
14593
+ dateFormat: dateFormat,
14594
+ locale: locale,
14595
+ })
14596
+ : _this.props.selectsMultiple
14597
+ ? safeMultipleDatesFormat((_c = _this.props.selectedDates) !== null && _c !== void 0 ? _c : [], {
14598
+ dateFormat: dateFormat,
14599
+ locale: locale,
14600
+ })
14601
+ : safeDateFormat(_this.props.selected, {
14602
+ dateFormat: dateFormat,
14603
+ locale: locale,
14604
+ });
14733
14605
  return React.cloneElement(customInput, (_b = {},
14734
14606
  _b[customInputRef] = function (input) {
14735
14607
  _this.input = input;
14736
14608
  },
14737
- _b.value = _this.getInputValue(),
14609
+ _b.value = inputValue,
14738
14610
  _b.onBlur = _this.handleBlur,
14739
14611
  _b.onChange = _this.handleChange,
14740
14612
  _b.onClick = _this.onInputClick,
@@ -14787,9 +14659,7 @@ var DatePicker = /** @class */ (function (_super) {
14787
14659
  dropdownMode: "scroll",
14788
14660
  preventOpenOnFocus: false,
14789
14661
  monthsShown: 1,
14790
- outsideClickIgnoreClass: OUTSIDE_CLICK_IGNORE_CLASS,
14791
14662
  readOnly: false,
14792
- rangeSeparator: DATE_RANGE_SEPARATOR,
14793
14663
  withPortal: false,
14794
14664
  selectsDisabledDaysInRange: false,
14795
14665
  shouldCloseOnSelect: true,
@@ -15305,4 +15175,4 @@ exports.DatePickerGroup = DatePickerGroup;
15305
15175
  exports.HelperText = HelperText;
15306
15176
  exports.InlineDatePicker = InlineDatePicker;
15307
15177
  exports.ValidationText = ValidationText;
15308
- //# sourceMappingURL=InlineDatePicker-CmPTTPFs.js.map
15178
+ //# sourceMappingURL=InlineDatePicker-DFv_uHo9.js.map