/******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ "./node_modules/@hello-pangea/dnd/dist/dnd.esm.js": /*!********************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/dist/dnd.esm.js ***! \********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ DragDropContext: () => (/* binding */ DragDropContext), /* harmony export */ Draggable: () => (/* binding */ PublicDraggable), /* harmony export */ Droppable: () => (/* binding */ ConnectedDroppable$1), /* harmony export */ resetServerContext: () => (/* binding */ resetServerContext), /* harmony export */ useKeyboardSensor: () => (/* binding */ useKeyboardSensor), /* harmony export */ useMouseSensor: () => (/* binding */ useMouseSensor), /* harmony export */ useTouchSensor: () => (/* binding */ useTouchSensor) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react-dom */ "./node_modules/react-dom/index.js"); /* harmony import */ var redux__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! redux */ "./node_modules/redux/es/redux.js"); /* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react-redux */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/index.js"); /* harmony import */ var use_memo_one__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! use-memo-one */ "./node_modules/use-memo-one/dist/use-memo-one.esm.js"); /* harmony import */ var css_box_model__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! css-box-model */ "./node_modules/css-box-model/dist/css-box-model.esm.js"); /* harmony import */ var memoize_one__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! memoize-one */ "./node_modules/@hello-pangea/dnd/node_modules/memoize-one/dist/memoize-one.esm.js"); /* harmony import */ var raf_schd__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! raf-schd */ "./node_modules/raf-schd/dist/raf-schd.esm.js"); /* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ "./node_modules/@babel/runtime/helpers/esm/extends.js"); const isProduction$1 = "development" === 'production'; const spacesAndTabs = /[ \t]{2,}/g; const lineStartWithSpaces = /^[ \t]*/gm; const clean$2 = value => value.replace(spacesAndTabs, ' ').replace(lineStartWithSpaces, '').trim(); const getDevMessage = message => clean$2(` %c@hello-pangea/dnd %c${clean$2(message)} %c👷‍ This is a development only message. It will be removed in production builds. `); const getFormattedMessage = message => [getDevMessage(message), 'color: #00C584; font-size: 1.2em; font-weight: bold;', 'line-height: 1.5', 'color: #723874;']; const isDisabledFlag = '__@hello-pangea/dnd-disable-dev-warnings'; function log(type, message) { if (isProduction$1) { return; } if (typeof window !== 'undefined' && window[isDisabledFlag]) { return; } console[type](...getFormattedMessage(message)); } const warning = log.bind(null, 'warn'); const error = log.bind(null, 'error'); function noop$2() {} function getOptions(shared, fromBinding) { return { ...shared, ...fromBinding }; } function bindEvents(el, bindings, sharedOptions) { const unbindings = bindings.map(binding => { const options = getOptions(sharedOptions, binding.options); el.addEventListener(binding.eventName, binding.fn, options); return function unbind() { el.removeEventListener(binding.eventName, binding.fn, options); }; }); return function unbindAll() { unbindings.forEach(unbind => { unbind(); }); }; } const isProduction = "development" === 'production'; const prefix$1 = 'Invariant failed'; class RbdInvariant extends Error {} RbdInvariant.prototype.toString = function toString() { return this.message; }; function invariant(condition, message) { if (condition) { return; } if (isProduction) { throw new RbdInvariant(prefix$1); } else { throw new RbdInvariant(`${prefix$1}: ${message || ''}`); } } class ErrorBoundary extends (react__WEBPACK_IMPORTED_MODULE_0___default().Component) { constructor(...args) { super(...args); this.callbacks = null; this.unbind = noop$2; this.onWindowError = event => { const callbacks = this.getCallbacks(); if (callbacks.isDragging()) { callbacks.tryAbort(); true ? warning(` An error was caught by our window 'error' event listener while a drag was occurring. The active drag has been aborted. `) : 0; } const err = event.error; if (err instanceof RbdInvariant) { event.preventDefault(); if (true) { error(err.message); } } }; this.getCallbacks = () => { if (!this.callbacks) { throw new Error('Unable to find AppCallbacks in '); } return this.callbacks; }; this.setCallbacks = callbacks => { this.callbacks = callbacks; }; } componentDidMount() { this.unbind = bindEvents(window, [{ eventName: 'error', fn: this.onWindowError }]); } componentDidCatch(err) { if (err instanceof RbdInvariant) { if (true) { error(err.message); } this.setState({}); return; } throw err; } componentWillUnmount() { this.unbind(); } render() { return this.props.children(this.setCallbacks); } } const dragHandleUsageInstructions = ` Press space bar to start a drag. When dragging you can use the arrow keys to move the item around and escape to cancel. Some screen readers may require you to be in focus mode or to use your pass through key `; const position = index => index + 1; const onDragStart = start => ` You have lifted an item in position ${position(start.source.index)} `; const withLocation = (source, destination) => { const isInHomeList = source.droppableId === destination.droppableId; const startPosition = position(source.index); const endPosition = position(destination.index); if (isInHomeList) { return ` You have moved the item from position ${startPosition} to position ${endPosition} `; } return ` You have moved the item from position ${startPosition} in list ${source.droppableId} to list ${destination.droppableId} in position ${endPosition} `; }; const withCombine = (id, source, combine) => { const inHomeList = source.droppableId === combine.droppableId; if (inHomeList) { return ` The item ${id} has been combined with ${combine.draggableId}`; } return ` The item ${id} in list ${source.droppableId} has been combined with ${combine.draggableId} in list ${combine.droppableId} `; }; const onDragUpdate = update => { const location = update.destination; if (location) { return withLocation(update.source, location); } const combine = update.combine; if (combine) { return withCombine(update.draggableId, update.source, combine); } return 'You are over an area that cannot be dropped on'; }; const returnedToStart = source => ` The item has returned to its starting position of ${position(source.index)} `; const onDragEnd = result => { if (result.reason === 'CANCEL') { return ` Movement cancelled. ${returnedToStart(result.source)} `; } const location = result.destination; const combine = result.combine; if (location) { return ` You have dropped the item. ${withLocation(result.source, location)} `; } if (combine) { return ` You have dropped the item. ${withCombine(result.draggableId, result.source, combine)} `; } return ` The item has been dropped while not over a drop area. ${returnedToStart(result.source)} `; }; const preset = { dragHandleUsageInstructions, onDragStart, onDragUpdate, onDragEnd }; var preset$1 = preset; const origin = { x: 0, y: 0 }; const add = (point1, point2) => ({ x: point1.x + point2.x, y: point1.y + point2.y }); const subtract = (point1, point2) => ({ x: point1.x - point2.x, y: point1.y - point2.y }); const isEqual$1 = (point1, point2) => point1.x === point2.x && point1.y === point2.y; const negate = point => ({ x: point.x !== 0 ? -point.x : 0, y: point.y !== 0 ? -point.y : 0 }); const patch = (line, value, otherValue = 0) => { if (line === 'x') { return { x: value, y: otherValue }; } return { x: otherValue, y: value }; }; const distance = (point1, point2) => Math.sqrt((point2.x - point1.x) ** 2 + (point2.y - point1.y) ** 2); const closest$1 = (target, points) => Math.min(...points.map(point => distance(target, point))); const apply = fn => point => ({ x: fn(point.x), y: fn(point.y) }); var executeClip = ((frame, subject) => { const result = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.getRect)({ top: Math.max(subject.top, frame.top), right: Math.min(subject.right, frame.right), bottom: Math.min(subject.bottom, frame.bottom), left: Math.max(subject.left, frame.left) }); if (result.width <= 0 || result.height <= 0) { return null; } return result; }); const offsetByPosition = (spacing, point) => ({ top: spacing.top + point.y, left: spacing.left + point.x, bottom: spacing.bottom + point.y, right: spacing.right + point.x }); const getCorners = spacing => [{ x: spacing.left, y: spacing.top }, { x: spacing.right, y: spacing.top }, { x: spacing.left, y: spacing.bottom }, { x: spacing.right, y: spacing.bottom }]; const noSpacing = { top: 0, right: 0, bottom: 0, left: 0 }; const scroll$1 = (target, frame) => { if (!frame) { return target; } return offsetByPosition(target, frame.scroll.diff.displacement); }; const increase = (target, axis, withPlaceholder) => { if (withPlaceholder && withPlaceholder.increasedBy) { return { ...target, [axis.end]: target[axis.end] + withPlaceholder.increasedBy[axis.line] }; } return target; }; const clip = (target, frame) => { if (frame && frame.shouldClipSubject) { return executeClip(frame.pageMarginBox, target); } return (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.getRect)(target); }; var getSubject = (({ page, withPlaceholder, axis, frame }) => { const scrolled = scroll$1(page.marginBox, frame); const increased = increase(scrolled, axis, withPlaceholder); const clipped = clip(increased, frame); return { page, withPlaceholder, active: clipped }; }); var scrollDroppable = ((droppable, newScroll) => { !droppable.frame ? true ? invariant(false) : 0 : void 0; const scrollable = droppable.frame; const scrollDiff = subtract(newScroll, scrollable.scroll.initial); const scrollDisplacement = negate(scrollDiff); const frame = { ...scrollable, scroll: { initial: scrollable.scroll.initial, current: newScroll, diff: { value: scrollDiff, displacement: scrollDisplacement }, max: scrollable.scroll.max } }; const subject = getSubject({ page: droppable.subject.page, withPlaceholder: droppable.subject.withPlaceholder, axis: droppable.axis, frame }); const result = { ...droppable, frame, subject }; return result; }); const toDroppableMap = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])(droppables => droppables.reduce((previous, current) => { previous[current.descriptor.id] = current; return previous; }, {})); const toDraggableMap = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])(draggables => draggables.reduce((previous, current) => { previous[current.descriptor.id] = current; return previous; }, {})); const toDroppableList = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])(droppables => Object.values(droppables)); const toDraggableList = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])(draggables => Object.values(draggables)); var getDraggablesInsideDroppable = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])((droppableId, draggables) => { const result = toDraggableList(draggables).filter(draggable => droppableId === draggable.descriptor.droppableId).sort((a, b) => a.descriptor.index - b.descriptor.index); return result; }); function tryGetDestination(impact) { if (impact.at && impact.at.type === 'REORDER') { return impact.at.destination; } return null; } function tryGetCombine(impact) { if (impact.at && impact.at.type === 'COMBINE') { return impact.at.combine; } return null; } var removeDraggableFromList = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])((remove, list) => list.filter(item => item.descriptor.id !== remove.descriptor.id)); var moveToNextCombine = (({ isMovingForward, draggable, destination, insideDestination, previousImpact }) => { if (!destination.isCombineEnabled) { return null; } const location = tryGetDestination(previousImpact); if (!location) { return null; } function getImpact(target) { const at = { type: 'COMBINE', combine: { draggableId: target, droppableId: destination.descriptor.id } }; return { ...previousImpact, at }; } const all = previousImpact.displaced.all; const closestId = all.length ? all[0] : null; if (isMovingForward) { return closestId ? getImpact(closestId) : null; } const withoutDraggable = removeDraggableFromList(draggable, insideDestination); if (!closestId) { if (!withoutDraggable.length) { return null; } const last = withoutDraggable[withoutDraggable.length - 1]; return getImpact(last.descriptor.id); } const indexOfClosest = withoutDraggable.findIndex(d => d.descriptor.id === closestId); !(indexOfClosest !== -1) ? true ? invariant(false, 'Could not find displaced item in set') : 0 : void 0; const proposedIndex = indexOfClosest - 1; if (proposedIndex < 0) { return null; } const before = withoutDraggable[proposedIndex]; return getImpact(before.descriptor.id); }); var isHomeOf = ((draggable, destination) => draggable.descriptor.droppableId === destination.descriptor.id); const noDisplacedBy = { point: origin, value: 0 }; const emptyGroups = { invisible: {}, visible: {}, all: [] }; const noImpact = { displaced: emptyGroups, displacedBy: noDisplacedBy, at: null }; var noImpact$1 = noImpact; var isWithin = ((lowerBound, upperBound) => value => lowerBound <= value && value <= upperBound); var isPartiallyVisibleThroughFrame = (frame => { const isWithinVertical = isWithin(frame.top, frame.bottom); const isWithinHorizontal = isWithin(frame.left, frame.right); return subject => { const isContained = isWithinVertical(subject.top) && isWithinVertical(subject.bottom) && isWithinHorizontal(subject.left) && isWithinHorizontal(subject.right); if (isContained) { return true; } const isPartiallyVisibleVertically = isWithinVertical(subject.top) || isWithinVertical(subject.bottom); const isPartiallyVisibleHorizontally = isWithinHorizontal(subject.left) || isWithinHorizontal(subject.right); const isPartiallyContained = isPartiallyVisibleVertically && isPartiallyVisibleHorizontally; if (isPartiallyContained) { return true; } const isBiggerVertically = subject.top < frame.top && subject.bottom > frame.bottom; const isBiggerHorizontally = subject.left < frame.left && subject.right > frame.right; const isTargetBiggerThanFrame = isBiggerVertically && isBiggerHorizontally; if (isTargetBiggerThanFrame) { return true; } const isTargetBiggerOnOneAxis = isBiggerVertically && isPartiallyVisibleHorizontally || isBiggerHorizontally && isPartiallyVisibleVertically; return isTargetBiggerOnOneAxis; }; }); var isTotallyVisibleThroughFrame = (frame => { const isWithinVertical = isWithin(frame.top, frame.bottom); const isWithinHorizontal = isWithin(frame.left, frame.right); return subject => { const isContained = isWithinVertical(subject.top) && isWithinVertical(subject.bottom) && isWithinHorizontal(subject.left) && isWithinHorizontal(subject.right); return isContained; }; }); const vertical = { direction: 'vertical', line: 'y', crossAxisLine: 'x', start: 'top', end: 'bottom', size: 'height', crossAxisStart: 'left', crossAxisEnd: 'right', crossAxisSize: 'width' }; const horizontal = { direction: 'horizontal', line: 'x', crossAxisLine: 'y', start: 'left', end: 'right', size: 'width', crossAxisStart: 'top', crossAxisEnd: 'bottom', crossAxisSize: 'height' }; var isTotallyVisibleThroughFrameOnAxis = (axis => frame => { const isWithinVertical = isWithin(frame.top, frame.bottom); const isWithinHorizontal = isWithin(frame.left, frame.right); return subject => { if (axis === vertical) { return isWithinVertical(subject.top) && isWithinVertical(subject.bottom); } return isWithinHorizontal(subject.left) && isWithinHorizontal(subject.right); }; }); const getDroppableDisplaced = (target, destination) => { const displacement = destination.frame ? destination.frame.scroll.diff.displacement : origin; return offsetByPosition(target, displacement); }; const isVisibleInDroppable = (target, destination, isVisibleThroughFrameFn) => { if (!destination.subject.active) { return false; } return isVisibleThroughFrameFn(destination.subject.active)(target); }; const isVisibleInViewport = (target, viewport, isVisibleThroughFrameFn) => isVisibleThroughFrameFn(viewport)(target); const isVisible$1 = ({ target: toBeDisplaced, destination, viewport, withDroppableDisplacement, isVisibleThroughFrameFn }) => { const displacedTarget = withDroppableDisplacement ? getDroppableDisplaced(toBeDisplaced, destination) : toBeDisplaced; return isVisibleInDroppable(displacedTarget, destination, isVisibleThroughFrameFn) && isVisibleInViewport(displacedTarget, viewport, isVisibleThroughFrameFn); }; const isPartiallyVisible = args => isVisible$1({ ...args, isVisibleThroughFrameFn: isPartiallyVisibleThroughFrame }); const isTotallyVisible = args => isVisible$1({ ...args, isVisibleThroughFrameFn: isTotallyVisibleThroughFrame }); const isTotallyVisibleOnAxis = args => isVisible$1({ ...args, isVisibleThroughFrameFn: isTotallyVisibleThroughFrameOnAxis(args.destination.axis) }); const getShouldAnimate = (id, last, forceShouldAnimate) => { if (typeof forceShouldAnimate === 'boolean') { return forceShouldAnimate; } if (!last) { return true; } const { invisible, visible } = last; if (invisible[id]) { return false; } const previous = visible[id]; return previous ? previous.shouldAnimate : true; }; function getTarget(draggable, displacedBy) { const marginBox = draggable.page.marginBox; const expandBy = { top: displacedBy.point.y, right: 0, bottom: 0, left: displacedBy.point.x }; return (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.getRect)((0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.expand)(marginBox, expandBy)); } function getDisplacementGroups({ afterDragging, destination, displacedBy, viewport, forceShouldAnimate, last }) { return afterDragging.reduce(function process(groups, draggable) { const target = getTarget(draggable, displacedBy); const id = draggable.descriptor.id; groups.all.push(id); const isVisible = isPartiallyVisible({ target, destination, viewport, withDroppableDisplacement: true }); if (!isVisible) { groups.invisible[draggable.descriptor.id] = true; return groups; } const shouldAnimate = getShouldAnimate(id, last, forceShouldAnimate); const displacement = { draggableId: id, shouldAnimate }; groups.visible[id] = displacement; return groups; }, { all: [], visible: {}, invisible: {} }); } function getIndexOfLastItem(draggables, options) { if (!draggables.length) { return 0; } const indexOfLastItem = draggables[draggables.length - 1].descriptor.index; return options.inHomeList ? indexOfLastItem : indexOfLastItem + 1; } function goAtEnd({ insideDestination, inHomeList, displacedBy, destination }) { const newIndex = getIndexOfLastItem(insideDestination, { inHomeList }); return { displaced: emptyGroups, displacedBy, at: { type: 'REORDER', destination: { droppableId: destination.descriptor.id, index: newIndex } } }; } function calculateReorderImpact({ draggable, insideDestination, destination, viewport, displacedBy, last, index, forceShouldAnimate }) { const inHomeList = isHomeOf(draggable, destination); if (index == null) { return goAtEnd({ insideDestination, inHomeList, displacedBy, destination }); } const match = insideDestination.find(item => item.descriptor.index === index); if (!match) { return goAtEnd({ insideDestination, inHomeList, displacedBy, destination }); } const withoutDragging = removeDraggableFromList(draggable, insideDestination); const sliceFrom = insideDestination.indexOf(match); const impacted = withoutDragging.slice(sliceFrom); const displaced = getDisplacementGroups({ afterDragging: impacted, destination, displacedBy, last, viewport: viewport.frame, forceShouldAnimate }); return { displaced, displacedBy, at: { type: 'REORDER', destination: { droppableId: destination.descriptor.id, index } } }; } function didStartAfterCritical(draggableId, afterCritical) { return Boolean(afterCritical.effected[draggableId]); } var fromCombine = (({ isMovingForward, destination, draggables, combine, afterCritical }) => { if (!destination.isCombineEnabled) { return null; } const combineId = combine.draggableId; const combineWith = draggables[combineId]; const combineWithIndex = combineWith.descriptor.index; const didCombineWithStartAfterCritical = didStartAfterCritical(combineId, afterCritical); if (didCombineWithStartAfterCritical) { if (isMovingForward) { return combineWithIndex; } return combineWithIndex - 1; } if (isMovingForward) { return combineWithIndex + 1; } return combineWithIndex; }); var fromReorder = (({ isMovingForward, isInHomeList, insideDestination, location }) => { if (!insideDestination.length) { return null; } const currentIndex = location.index; const proposedIndex = isMovingForward ? currentIndex + 1 : currentIndex - 1; const firstIndex = insideDestination[0].descriptor.index; const lastIndex = insideDestination[insideDestination.length - 1].descriptor.index; const upperBound = isInHomeList ? lastIndex : lastIndex + 1; if (proposedIndex < firstIndex) { return null; } if (proposedIndex > upperBound) { return null; } return proposedIndex; }); var moveToNextIndex = (({ isMovingForward, isInHomeList, draggable, draggables, destination, insideDestination, previousImpact, viewport, afterCritical }) => { const wasAt = previousImpact.at; !wasAt ? true ? invariant(false, 'Cannot move in direction without previous impact location') : 0 : void 0; if (wasAt.type === 'REORDER') { const newIndex = fromReorder({ isMovingForward, isInHomeList, location: wasAt.destination, insideDestination }); if (newIndex == null) { return null; } return calculateReorderImpact({ draggable, insideDestination, destination, viewport, last: previousImpact.displaced, displacedBy: previousImpact.displacedBy, index: newIndex }); } const newIndex = fromCombine({ isMovingForward, destination, displaced: previousImpact.displaced, draggables, combine: wasAt.combine, afterCritical }); if (newIndex == null) { return null; } return calculateReorderImpact({ draggable, insideDestination, destination, viewport, last: previousImpact.displaced, displacedBy: previousImpact.displacedBy, index: newIndex }); }); var getCombinedItemDisplacement = (({ displaced, afterCritical, combineWith, displacedBy }) => { const isDisplaced = Boolean(displaced.visible[combineWith] || displaced.invisible[combineWith]); if (didStartAfterCritical(combineWith, afterCritical)) { return isDisplaced ? origin : negate(displacedBy.point); } return isDisplaced ? displacedBy.point : origin; }); var whenCombining = (({ afterCritical, impact, draggables }) => { const combine = tryGetCombine(impact); !combine ? true ? invariant(false) : 0 : void 0; const combineWith = combine.draggableId; const center = draggables[combineWith].page.borderBox.center; const displaceBy = getCombinedItemDisplacement({ displaced: impact.displaced, afterCritical, combineWith, displacedBy: impact.displacedBy }); return add(center, displaceBy); }); const distanceFromStartToBorderBoxCenter = (axis, box) => box.margin[axis.start] + box.borderBox[axis.size] / 2; const distanceFromEndToBorderBoxCenter = (axis, box) => box.margin[axis.end] + box.borderBox[axis.size] / 2; const getCrossAxisBorderBoxCenter = (axis, target, isMoving) => target[axis.crossAxisStart] + isMoving.margin[axis.crossAxisStart] + isMoving.borderBox[axis.crossAxisSize] / 2; const goAfter = ({ axis, moveRelativeTo, isMoving }) => patch(axis.line, moveRelativeTo.marginBox[axis.end] + distanceFromStartToBorderBoxCenter(axis, isMoving), getCrossAxisBorderBoxCenter(axis, moveRelativeTo.marginBox, isMoving)); const goBefore = ({ axis, moveRelativeTo, isMoving }) => patch(axis.line, moveRelativeTo.marginBox[axis.start] - distanceFromEndToBorderBoxCenter(axis, isMoving), getCrossAxisBorderBoxCenter(axis, moveRelativeTo.marginBox, isMoving)); const goIntoStart = ({ axis, moveInto, isMoving }) => patch(axis.line, moveInto.contentBox[axis.start] + distanceFromStartToBorderBoxCenter(axis, isMoving), getCrossAxisBorderBoxCenter(axis, moveInto.contentBox, isMoving)); var whenReordering = (({ impact, draggable, draggables, droppable, afterCritical }) => { const insideDestination = getDraggablesInsideDroppable(droppable.descriptor.id, draggables); const draggablePage = draggable.page; const axis = droppable.axis; if (!insideDestination.length) { return goIntoStart({ axis, moveInto: droppable.page, isMoving: draggablePage }); } const { displaced, displacedBy } = impact; const closestAfter = displaced.all[0]; if (closestAfter) { const closest = draggables[closestAfter]; if (didStartAfterCritical(closestAfter, afterCritical)) { return goBefore({ axis, moveRelativeTo: closest.page, isMoving: draggablePage }); } const withDisplacement = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.offset)(closest.page, displacedBy.point); return goBefore({ axis, moveRelativeTo: withDisplacement, isMoving: draggablePage }); } const last = insideDestination[insideDestination.length - 1]; if (last.descriptor.id === draggable.descriptor.id) { return draggablePage.borderBox.center; } if (didStartAfterCritical(last.descriptor.id, afterCritical)) { const page = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.offset)(last.page, negate(afterCritical.displacedBy.point)); return goAfter({ axis, moveRelativeTo: page, isMoving: draggablePage }); } return goAfter({ axis, moveRelativeTo: last.page, isMoving: draggablePage }); }); var withDroppableDisplacement = ((droppable, point) => { const frame = droppable.frame; if (!frame) { return point; } return add(point, frame.scroll.diff.displacement); }); const getResultWithoutDroppableDisplacement = ({ impact, draggable, droppable, draggables, afterCritical }) => { const original = draggable.page.borderBox.center; const at = impact.at; if (!droppable) { return original; } if (!at) { return original; } if (at.type === 'REORDER') { return whenReordering({ impact, draggable, draggables, droppable, afterCritical }); } return whenCombining({ impact, draggables, afterCritical }); }; var getPageBorderBoxCenterFromImpact = (args => { const withoutDisplacement = getResultWithoutDroppableDisplacement(args); const droppable = args.droppable; const withDisplacement = droppable ? withDroppableDisplacement(droppable, withoutDisplacement) : withoutDisplacement; return withDisplacement; }); var scrollViewport = ((viewport, newScroll) => { const diff = subtract(newScroll, viewport.scroll.initial); const displacement = negate(diff); const frame = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.getRect)({ top: newScroll.y, bottom: newScroll.y + viewport.frame.height, left: newScroll.x, right: newScroll.x + viewport.frame.width }); const updated = { frame, scroll: { initial: viewport.scroll.initial, max: viewport.scroll.max, current: newScroll, diff: { value: diff, displacement } } }; return updated; }); function getDraggables$1(ids, draggables) { return ids.map(id => draggables[id]); } function tryGetVisible(id, groups) { for (let i = 0; i < groups.length; i++) { const displacement = groups[i].visible[id]; if (displacement) { return displacement; } } return null; } var speculativelyIncrease = (({ impact, viewport, destination, draggables, maxScrollChange }) => { const scrolledViewport = scrollViewport(viewport, add(viewport.scroll.current, maxScrollChange)); const scrolledDroppable = destination.frame ? scrollDroppable(destination, add(destination.frame.scroll.current, maxScrollChange)) : destination; const last = impact.displaced; const withViewportScroll = getDisplacementGroups({ afterDragging: getDraggables$1(last.all, draggables), destination, displacedBy: impact.displacedBy, viewport: scrolledViewport.frame, last, forceShouldAnimate: false }); const withDroppableScroll = getDisplacementGroups({ afterDragging: getDraggables$1(last.all, draggables), destination: scrolledDroppable, displacedBy: impact.displacedBy, viewport: viewport.frame, last, forceShouldAnimate: false }); const invisible = {}; const visible = {}; const groups = [last, withViewportScroll, withDroppableScroll]; last.all.forEach(id => { const displacement = tryGetVisible(id, groups); if (displacement) { visible[id] = displacement; return; } invisible[id] = true; }); const newImpact = { ...impact, displaced: { all: last.all, invisible, visible } }; return newImpact; }); var withViewportDisplacement = ((viewport, point) => add(viewport.scroll.diff.displacement, point)); var getClientFromPageBorderBoxCenter = (({ pageBorderBoxCenter, draggable, viewport }) => { const withoutPageScrollChange = withViewportDisplacement(viewport, pageBorderBoxCenter); const offset = subtract(withoutPageScrollChange, draggable.page.borderBox.center); return add(draggable.client.borderBox.center, offset); }); var isTotallyVisibleInNewLocation = (({ draggable, destination, newPageBorderBoxCenter, viewport, withDroppableDisplacement, onlyOnMainAxis = false }) => { const changeNeeded = subtract(newPageBorderBoxCenter, draggable.page.borderBox.center); const shifted = offsetByPosition(draggable.page.borderBox, changeNeeded); const args = { target: shifted, destination, withDroppableDisplacement, viewport }; return onlyOnMainAxis ? isTotallyVisibleOnAxis(args) : isTotallyVisible(args); }); var moveToNextPlace = (({ isMovingForward, draggable, destination, draggables, previousImpact, viewport, previousPageBorderBoxCenter, previousClientSelection, afterCritical }) => { if (!destination.isEnabled) { return null; } const insideDestination = getDraggablesInsideDroppable(destination.descriptor.id, draggables); const isInHomeList = isHomeOf(draggable, destination); const impact = moveToNextCombine({ isMovingForward, draggable, destination, insideDestination, previousImpact }) || moveToNextIndex({ isMovingForward, isInHomeList, draggable, draggables, destination, insideDestination, previousImpact, viewport, afterCritical }); if (!impact) { return null; } const pageBorderBoxCenter = getPageBorderBoxCenterFromImpact({ impact, draggable, droppable: destination, draggables, afterCritical }); const isVisibleInNewLocation = isTotallyVisibleInNewLocation({ draggable, destination, newPageBorderBoxCenter: pageBorderBoxCenter, viewport: viewport.frame, withDroppableDisplacement: false, onlyOnMainAxis: true }); if (isVisibleInNewLocation) { const clientSelection = getClientFromPageBorderBoxCenter({ pageBorderBoxCenter, draggable, viewport }); return { clientSelection, impact, scrollJumpRequest: null }; } const distance = subtract(pageBorderBoxCenter, previousPageBorderBoxCenter); const cautious = speculativelyIncrease({ impact, viewport, destination, draggables, maxScrollChange: distance }); return { clientSelection: previousClientSelection, impact: cautious, scrollJumpRequest: distance }; }); const getKnownActive = droppable => { const rect = droppable.subject.active; !rect ? true ? invariant(false, 'Cannot get clipped area from droppable') : 0 : void 0; return rect; }; var getBestCrossAxisDroppable = (({ isMovingForward, pageBorderBoxCenter, source, droppables, viewport }) => { const active = source.subject.active; if (!active) { return null; } const axis = source.axis; const isBetweenSourceClipped = isWithin(active[axis.start], active[axis.end]); const candidates = toDroppableList(droppables).filter(droppable => droppable !== source).filter(droppable => droppable.isEnabled).filter(droppable => Boolean(droppable.subject.active)).filter(droppable => isPartiallyVisibleThroughFrame(viewport.frame)(getKnownActive(droppable))).filter(droppable => { const activeOfTarget = getKnownActive(droppable); if (isMovingForward) { return active[axis.crossAxisEnd] < activeOfTarget[axis.crossAxisEnd]; } return activeOfTarget[axis.crossAxisStart] < active[axis.crossAxisStart]; }).filter(droppable => { const activeOfTarget = getKnownActive(droppable); const isBetweenDestinationClipped = isWithin(activeOfTarget[axis.start], activeOfTarget[axis.end]); return isBetweenSourceClipped(activeOfTarget[axis.start]) || isBetweenSourceClipped(activeOfTarget[axis.end]) || isBetweenDestinationClipped(active[axis.start]) || isBetweenDestinationClipped(active[axis.end]); }).sort((a, b) => { const first = getKnownActive(a)[axis.crossAxisStart]; const second = getKnownActive(b)[axis.crossAxisStart]; if (isMovingForward) { return first - second; } return second - first; }).filter((droppable, index, array) => getKnownActive(droppable)[axis.crossAxisStart] === getKnownActive(array[0])[axis.crossAxisStart]); if (!candidates.length) { return null; } if (candidates.length === 1) { return candidates[0]; } const contains = candidates.filter(droppable => { const isWithinDroppable = isWithin(getKnownActive(droppable)[axis.start], getKnownActive(droppable)[axis.end]); return isWithinDroppable(pageBorderBoxCenter[axis.line]); }); if (contains.length === 1) { return contains[0]; } if (contains.length > 1) { return contains.sort((a, b) => getKnownActive(a)[axis.start] - getKnownActive(b)[axis.start])[0]; } return candidates.sort((a, b) => { const first = closest$1(pageBorderBoxCenter, getCorners(getKnownActive(a))); const second = closest$1(pageBorderBoxCenter, getCorners(getKnownActive(b))); if (first !== second) { return first - second; } return getKnownActive(a)[axis.start] - getKnownActive(b)[axis.start]; })[0]; }); const getCurrentPageBorderBoxCenter = (draggable, afterCritical) => { const original = draggable.page.borderBox.center; return didStartAfterCritical(draggable.descriptor.id, afterCritical) ? subtract(original, afterCritical.displacedBy.point) : original; }; const getCurrentPageBorderBox = (draggable, afterCritical) => { const original = draggable.page.borderBox; return didStartAfterCritical(draggable.descriptor.id, afterCritical) ? offsetByPosition(original, negate(afterCritical.displacedBy.point)) : original; }; var getClosestDraggable = (({ pageBorderBoxCenter, viewport, destination, insideDestination, afterCritical }) => { const sorted = insideDestination.filter(draggable => isTotallyVisible({ target: getCurrentPageBorderBox(draggable, afterCritical), destination, viewport: viewport.frame, withDroppableDisplacement: true })).sort((a, b) => { const distanceToA = distance(pageBorderBoxCenter, withDroppableDisplacement(destination, getCurrentPageBorderBoxCenter(a, afterCritical))); const distanceToB = distance(pageBorderBoxCenter, withDroppableDisplacement(destination, getCurrentPageBorderBoxCenter(b, afterCritical))); if (distanceToA < distanceToB) { return -1; } if (distanceToB < distanceToA) { return 1; } return a.descriptor.index - b.descriptor.index; }); return sorted[0] || null; }); var getDisplacedBy = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])(function getDisplacedBy(axis, displaceBy) { const displacement = displaceBy[axis.line]; return { value: displacement, point: patch(axis.line, displacement) }; }); const getRequiredGrowthForPlaceholder = (droppable, placeholderSize, draggables) => { const axis = droppable.axis; if (droppable.descriptor.mode === 'virtual') { return patch(axis.line, placeholderSize[axis.line]); } const availableSpace = droppable.subject.page.contentBox[axis.size]; const insideDroppable = getDraggablesInsideDroppable(droppable.descriptor.id, draggables); const spaceUsed = insideDroppable.reduce((sum, dimension) => sum + dimension.client.marginBox[axis.size], 0); const requiredSpace = spaceUsed + placeholderSize[axis.line]; const needsToGrowBy = requiredSpace - availableSpace; if (needsToGrowBy <= 0) { return null; } return patch(axis.line, needsToGrowBy); }; const withMaxScroll = (frame, max) => ({ ...frame, scroll: { ...frame.scroll, max } }); const addPlaceholder = (droppable, draggable, draggables) => { const frame = droppable.frame; !!isHomeOf(draggable, droppable) ? true ? invariant(false, 'Should not add placeholder space to home list') : 0 : void 0; !!droppable.subject.withPlaceholder ? true ? invariant(false, 'Cannot add placeholder size to a subject when it already has one') : 0 : void 0; const placeholderSize = getDisplacedBy(droppable.axis, draggable.displaceBy).point; const requiredGrowth = getRequiredGrowthForPlaceholder(droppable, placeholderSize, draggables); const added = { placeholderSize, increasedBy: requiredGrowth, oldFrameMaxScroll: droppable.frame ? droppable.frame.scroll.max : null }; if (!frame) { const subject = getSubject({ page: droppable.subject.page, withPlaceholder: added, axis: droppable.axis, frame: droppable.frame }); return { ...droppable, subject }; } const maxScroll = requiredGrowth ? add(frame.scroll.max, requiredGrowth) : frame.scroll.max; const newFrame = withMaxScroll(frame, maxScroll); const subject = getSubject({ page: droppable.subject.page, withPlaceholder: added, axis: droppable.axis, frame: newFrame }); return { ...droppable, subject, frame: newFrame }; }; const removePlaceholder = droppable => { const added = droppable.subject.withPlaceholder; !added ? true ? invariant(false, 'Cannot remove placeholder form subject when there was none') : 0 : void 0; const frame = droppable.frame; if (!frame) { const subject = getSubject({ page: droppable.subject.page, axis: droppable.axis, frame: null, withPlaceholder: null }); return { ...droppable, subject }; } const oldMaxScroll = added.oldFrameMaxScroll; !oldMaxScroll ? true ? invariant(false, 'Expected droppable with frame to have old max frame scroll when removing placeholder') : 0 : void 0; const newFrame = withMaxScroll(frame, oldMaxScroll); const subject = getSubject({ page: droppable.subject.page, axis: droppable.axis, frame: newFrame, withPlaceholder: null }); return { ...droppable, subject, frame: newFrame }; }; var moveToNewDroppable = (({ previousPageBorderBoxCenter, moveRelativeTo, insideDestination, draggable, draggables, destination, viewport, afterCritical }) => { if (!moveRelativeTo) { if (insideDestination.length) { return null; } const proposed = { displaced: emptyGroups, displacedBy: noDisplacedBy, at: { type: 'REORDER', destination: { droppableId: destination.descriptor.id, index: 0 } } }; const proposedPageBorderBoxCenter = getPageBorderBoxCenterFromImpact({ impact: proposed, draggable, droppable: destination, draggables, afterCritical }); const withPlaceholder = isHomeOf(draggable, destination) ? destination : addPlaceholder(destination, draggable, draggables); const isVisibleInNewLocation = isTotallyVisibleInNewLocation({ draggable, destination: withPlaceholder, newPageBorderBoxCenter: proposedPageBorderBoxCenter, viewport: viewport.frame, withDroppableDisplacement: false, onlyOnMainAxis: true }); return isVisibleInNewLocation ? proposed : null; } const isGoingBeforeTarget = Boolean(previousPageBorderBoxCenter[destination.axis.line] <= moveRelativeTo.page.borderBox.center[destination.axis.line]); const proposedIndex = (() => { const relativeTo = moveRelativeTo.descriptor.index; if (moveRelativeTo.descriptor.id === draggable.descriptor.id) { return relativeTo; } if (isGoingBeforeTarget) { return relativeTo; } return relativeTo + 1; })(); const displacedBy = getDisplacedBy(destination.axis, draggable.displaceBy); return calculateReorderImpact({ draggable, insideDestination, destination, viewport, displacedBy, last: emptyGroups, index: proposedIndex }); }); var moveCrossAxis = (({ isMovingForward, previousPageBorderBoxCenter, draggable, isOver, draggables, droppables, viewport, afterCritical }) => { const destination = getBestCrossAxisDroppable({ isMovingForward, pageBorderBoxCenter: previousPageBorderBoxCenter, source: isOver, droppables, viewport }); if (!destination) { return null; } const insideDestination = getDraggablesInsideDroppable(destination.descriptor.id, draggables); const moveRelativeTo = getClosestDraggable({ pageBorderBoxCenter: previousPageBorderBoxCenter, viewport, destination, insideDestination, afterCritical }); const impact = moveToNewDroppable({ previousPageBorderBoxCenter, destination, draggable, draggables, moveRelativeTo, insideDestination, viewport, afterCritical }); if (!impact) { return null; } const pageBorderBoxCenter = getPageBorderBoxCenterFromImpact({ impact, draggable, droppable: destination, draggables, afterCritical }); const clientSelection = getClientFromPageBorderBoxCenter({ pageBorderBoxCenter, draggable, viewport }); return { clientSelection, impact, scrollJumpRequest: null }; }); var whatIsDraggedOver = (impact => { const at = impact.at; if (!at) { return null; } if (at.type === 'REORDER') { return at.destination.droppableId; } return at.combine.droppableId; }); const getDroppableOver$1 = (impact, droppables) => { const id = whatIsDraggedOver(impact); return id ? droppables[id] : null; }; var moveInDirection = (({ state, type }) => { const isActuallyOver = getDroppableOver$1(state.impact, state.dimensions.droppables); const isMainAxisMovementAllowed = Boolean(isActuallyOver); const home = state.dimensions.droppables[state.critical.droppable.id]; const isOver = isActuallyOver || home; const direction = isOver.axis.direction; const isMovingOnMainAxis = direction === 'vertical' && (type === 'MOVE_UP' || type === 'MOVE_DOWN') || direction === 'horizontal' && (type === 'MOVE_LEFT' || type === 'MOVE_RIGHT'); if (isMovingOnMainAxis && !isMainAxisMovementAllowed) { return null; } const isMovingForward = type === 'MOVE_DOWN' || type === 'MOVE_RIGHT'; const draggable = state.dimensions.draggables[state.critical.draggable.id]; const previousPageBorderBoxCenter = state.current.page.borderBoxCenter; const { draggables, droppables } = state.dimensions; return isMovingOnMainAxis ? moveToNextPlace({ isMovingForward, previousPageBorderBoxCenter, draggable, destination: isOver, draggables, viewport: state.viewport, previousClientSelection: state.current.client.selection, previousImpact: state.impact, afterCritical: state.afterCritical }) : moveCrossAxis({ isMovingForward, previousPageBorderBoxCenter, draggable, isOver, draggables, droppables, viewport: state.viewport, afterCritical: state.afterCritical }); }); function isMovementAllowed(state) { return state.phase === 'DRAGGING' || state.phase === 'COLLECTING'; } function isPositionInFrame(frame) { const isWithinVertical = isWithin(frame.top, frame.bottom); const isWithinHorizontal = isWithin(frame.left, frame.right); return function run(point) { return isWithinVertical(point.y) && isWithinHorizontal(point.x); }; } function getHasOverlap(first, second) { return first.left < second.right && first.right > second.left && first.top < second.bottom && first.bottom > second.top; } function getFurthestAway({ pageBorderBox, draggable, candidates }) { const startCenter = draggable.page.borderBox.center; const sorted = candidates.map(candidate => { const axis = candidate.axis; const target = patch(candidate.axis.line, pageBorderBox.center[axis.line], candidate.page.borderBox.center[axis.crossAxisLine]); return { id: candidate.descriptor.id, distance: distance(startCenter, target) }; }).sort((a, b) => b.distance - a.distance); return sorted[0] ? sorted[0].id : null; } function getDroppableOver({ pageBorderBox, draggable, droppables }) { const candidates = toDroppableList(droppables).filter(item => { if (!item.isEnabled) { return false; } const active = item.subject.active; if (!active) { return false; } if (!getHasOverlap(pageBorderBox, active)) { return false; } if (isPositionInFrame(active)(pageBorderBox.center)) { return true; } const axis = item.axis; const childCenter = active.center[axis.crossAxisLine]; const crossAxisStart = pageBorderBox[axis.crossAxisStart]; const crossAxisEnd = pageBorderBox[axis.crossAxisEnd]; const isContained = isWithin(active[axis.crossAxisStart], active[axis.crossAxisEnd]); const isStartContained = isContained(crossAxisStart); const isEndContained = isContained(crossAxisEnd); if (!isStartContained && !isEndContained) { return true; } if (isStartContained) { return crossAxisStart < childCenter; } return crossAxisEnd > childCenter; }); if (!candidates.length) { return null; } if (candidates.length === 1) { return candidates[0].descriptor.id; } return getFurthestAway({ pageBorderBox, draggable, candidates }); } const offsetRectByPosition = (rect, point) => (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.getRect)(offsetByPosition(rect, point)); var withDroppableScroll = ((droppable, area) => { const frame = droppable.frame; if (!frame) { return area; } return offsetRectByPosition(area, frame.scroll.diff.value); }); function getIsDisplaced({ displaced, id }) { return Boolean(displaced.visible[id] || displaced.invisible[id]); } function atIndex({ draggable, closest, inHomeList }) { if (!closest) { return null; } if (!inHomeList) { return closest.descriptor.index; } if (closest.descriptor.index > draggable.descriptor.index) { return closest.descriptor.index - 1; } return closest.descriptor.index; } var getReorderImpact = (({ pageBorderBoxWithDroppableScroll: targetRect, draggable, destination, insideDestination, last, viewport, afterCritical }) => { const axis = destination.axis; const displacedBy = getDisplacedBy(destination.axis, draggable.displaceBy); const displacement = displacedBy.value; const targetStart = targetRect[axis.start]; const targetEnd = targetRect[axis.end]; const withoutDragging = removeDraggableFromList(draggable, insideDestination); const closest = withoutDragging.find(child => { const id = child.descriptor.id; const childCenter = child.page.borderBox.center[axis.line]; const didStartAfterCritical$1 = didStartAfterCritical(id, afterCritical); const isDisplaced = getIsDisplaced({ displaced: last, id }); if (didStartAfterCritical$1) { if (isDisplaced) { return targetEnd <= childCenter; } return targetStart < childCenter - displacement; } if (isDisplaced) { return targetEnd <= childCenter + displacement; } return targetStart < childCenter; }) || null; const newIndex = atIndex({ draggable, closest, inHomeList: isHomeOf(draggable, destination) }); return calculateReorderImpact({ draggable, insideDestination, destination, viewport, last, displacedBy, index: newIndex }); }); const combineThresholdDivisor = 4; var getCombineImpact = (({ draggable, pageBorderBoxWithDroppableScroll: targetRect, previousImpact, destination, insideDestination, afterCritical }) => { if (!destination.isCombineEnabled) { return null; } const axis = destination.axis; const displacedBy = getDisplacedBy(destination.axis, draggable.displaceBy); const displacement = displacedBy.value; const targetStart = targetRect[axis.start]; const targetEnd = targetRect[axis.end]; const withoutDragging = removeDraggableFromList(draggable, insideDestination); const combineWith = withoutDragging.find(child => { const id = child.descriptor.id; const childRect = child.page.borderBox; const childSize = childRect[axis.size]; const threshold = childSize / combineThresholdDivisor; const didStartAfterCritical$1 = didStartAfterCritical(id, afterCritical); const isDisplaced = getIsDisplaced({ displaced: previousImpact.displaced, id }); if (didStartAfterCritical$1) { if (isDisplaced) { return targetEnd > childRect[axis.start] + threshold && targetEnd < childRect[axis.end] - threshold; } return targetStart > childRect[axis.start] - displacement + threshold && targetStart < childRect[axis.end] - displacement - threshold; } if (isDisplaced) { return targetEnd > childRect[axis.start] + displacement + threshold && targetEnd < childRect[axis.end] + displacement - threshold; } return targetStart > childRect[axis.start] + threshold && targetStart < childRect[axis.end] - threshold; }); if (!combineWith) { return null; } const impact = { displacedBy, displaced: previousImpact.displaced, at: { type: 'COMBINE', combine: { draggableId: combineWith.descriptor.id, droppableId: destination.descriptor.id } } }; return impact; }); var getDragImpact = (({ pageOffset, draggable, draggables, droppables, previousImpact, viewport, afterCritical }) => { const pageBorderBox = offsetRectByPosition(draggable.page.borderBox, pageOffset); const destinationId = getDroppableOver({ pageBorderBox, draggable, droppables }); if (!destinationId) { return noImpact$1; } const destination = droppables[destinationId]; const insideDestination = getDraggablesInsideDroppable(destination.descriptor.id, draggables); const pageBorderBoxWithDroppableScroll = withDroppableScroll(destination, pageBorderBox); return getCombineImpact({ pageBorderBoxWithDroppableScroll, draggable, previousImpact, destination, insideDestination, afterCritical }) || getReorderImpact({ pageBorderBoxWithDroppableScroll, draggable, destination, insideDestination, last: previousImpact.displaced, viewport, afterCritical }); }); var patchDroppableMap = ((droppables, updated) => ({ ...droppables, [updated.descriptor.id]: updated })); const clearUnusedPlaceholder = ({ previousImpact, impact, droppables }) => { const last = whatIsDraggedOver(previousImpact); const now = whatIsDraggedOver(impact); if (!last) { return droppables; } if (last === now) { return droppables; } const lastDroppable = droppables[last]; if (!lastDroppable.subject.withPlaceholder) { return droppables; } const updated = removePlaceholder(lastDroppable); return patchDroppableMap(droppables, updated); }; var recomputePlaceholders = (({ draggable, draggables, droppables, previousImpact, impact }) => { const cleaned = clearUnusedPlaceholder({ previousImpact, impact, droppables }); const isOver = whatIsDraggedOver(impact); if (!isOver) { return cleaned; } const droppable = droppables[isOver]; if (isHomeOf(draggable, droppable)) { return cleaned; } if (droppable.subject.withPlaceholder) { return cleaned; } const patched = addPlaceholder(droppable, draggable, draggables); return patchDroppableMap(cleaned, patched); }); var update = (({ state, clientSelection: forcedClientSelection, dimensions: forcedDimensions, viewport: forcedViewport, impact: forcedImpact, scrollJumpRequest }) => { const viewport = forcedViewport || state.viewport; const dimensions = forcedDimensions || state.dimensions; const clientSelection = forcedClientSelection || state.current.client.selection; const offset = subtract(clientSelection, state.initial.client.selection); const client = { offset, selection: clientSelection, borderBoxCenter: add(state.initial.client.borderBoxCenter, offset) }; const page = { selection: add(client.selection, viewport.scroll.current), borderBoxCenter: add(client.borderBoxCenter, viewport.scroll.current), offset: add(client.offset, viewport.scroll.diff.value) }; const current = { client, page }; if (state.phase === 'COLLECTING') { return { ...state, dimensions, viewport, current }; } const draggable = dimensions.draggables[state.critical.draggable.id]; const newImpact = forcedImpact || getDragImpact({ pageOffset: page.offset, draggable, draggables: dimensions.draggables, droppables: dimensions.droppables, previousImpact: state.impact, viewport, afterCritical: state.afterCritical }); const withUpdatedPlaceholders = recomputePlaceholders({ draggable, impact: newImpact, previousImpact: state.impact, draggables: dimensions.draggables, droppables: dimensions.droppables }); const result = { ...state, current, dimensions: { draggables: dimensions.draggables, droppables: withUpdatedPlaceholders }, impact: newImpact, viewport, scrollJumpRequest: scrollJumpRequest || null, forceShouldAnimate: scrollJumpRequest ? false : null }; return result; }); function getDraggables(ids, draggables) { return ids.map(id => draggables[id]); } var recompute = (({ impact, viewport, draggables, destination, forceShouldAnimate }) => { const last = impact.displaced; const afterDragging = getDraggables(last.all, draggables); const displaced = getDisplacementGroups({ afterDragging, destination, displacedBy: impact.displacedBy, viewport: viewport.frame, forceShouldAnimate, last }); return { ...impact, displaced }; }); var getClientBorderBoxCenter = (({ impact, draggable, droppable, draggables, viewport, afterCritical }) => { const pageBorderBoxCenter = getPageBorderBoxCenterFromImpact({ impact, draggable, draggables, droppable, afterCritical }); return getClientFromPageBorderBoxCenter({ pageBorderBoxCenter, draggable, viewport }); }); var refreshSnap = (({ state, dimensions: forcedDimensions, viewport: forcedViewport }) => { !(state.movementMode === 'SNAP') ? true ? invariant(false) : 0 : void 0; const needsVisibilityCheck = state.impact; const viewport = forcedViewport || state.viewport; const dimensions = forcedDimensions || state.dimensions; const { draggables, droppables } = dimensions; const draggable = draggables[state.critical.draggable.id]; const isOver = whatIsDraggedOver(needsVisibilityCheck); !isOver ? true ? invariant(false, 'Must be over a destination in SNAP movement mode') : 0 : void 0; const destination = droppables[isOver]; const impact = recompute({ impact: needsVisibilityCheck, viewport, destination, draggables }); const clientSelection = getClientBorderBoxCenter({ impact, draggable, droppable: destination, draggables, viewport, afterCritical: state.afterCritical }); return update({ impact, clientSelection, state, dimensions, viewport }); }); var getHomeLocation = (descriptor => ({ index: descriptor.index, droppableId: descriptor.droppableId })); var getLiftEffect = (({ draggable, home, draggables, viewport }) => { const displacedBy = getDisplacedBy(home.axis, draggable.displaceBy); const insideHome = getDraggablesInsideDroppable(home.descriptor.id, draggables); const rawIndex = insideHome.indexOf(draggable); !(rawIndex !== -1) ? true ? invariant(false, 'Expected draggable to be inside home list') : 0 : void 0; const afterDragging = insideHome.slice(rawIndex + 1); const effected = afterDragging.reduce((previous, item) => { previous[item.descriptor.id] = true; return previous; }, {}); const afterCritical = { inVirtualList: home.descriptor.mode === 'virtual', displacedBy, effected }; const displaced = getDisplacementGroups({ afterDragging, destination: home, displacedBy, last: null, viewport: viewport.frame, forceShouldAnimate: false }); const impact = { displaced, displacedBy, at: { type: 'REORDER', destination: getHomeLocation(draggable.descriptor) } }; return { impact, afterCritical }; }); var patchDimensionMap = ((dimensions, updated) => ({ draggables: dimensions.draggables, droppables: patchDroppableMap(dimensions.droppables, updated) })); const start = key => { if (true) { { return; } } }; const finish = key => { if (true) { { return; } } }; var offsetDraggable = (({ draggable, offset: offset$1, initialWindowScroll }) => { const client = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.offset)(draggable.client, offset$1); const page = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.withScroll)(client, initialWindowScroll); const moved = { ...draggable, placeholder: { ...draggable.placeholder, client }, client, page }; return moved; }); var getFrame = (droppable => { const frame = droppable.frame; !frame ? true ? invariant(false, 'Expected Droppable to have a frame') : 0 : void 0; return frame; }); var adjustAdditionsForScrollChanges = (({ additions, updatedDroppables, viewport }) => { const windowScrollChange = viewport.scroll.diff.value; return additions.map(draggable => { const droppableId = draggable.descriptor.droppableId; const modified = updatedDroppables[droppableId]; const frame = getFrame(modified); const droppableScrollChange = frame.scroll.diff.value; const totalChange = add(windowScrollChange, droppableScrollChange); const moved = offsetDraggable({ draggable, offset: totalChange, initialWindowScroll: viewport.scroll.initial }); return moved; }); }); const timingsKey = 'Processing dynamic changes'; var publishWhileDraggingInVirtual = (({ state, published }) => { start(timingsKey); const withScrollChange = published.modified.map(update => { const existing = state.dimensions.droppables[update.droppableId]; const scrolled = scrollDroppable(existing, update.scroll); return scrolled; }); const droppables = { ...state.dimensions.droppables, ...toDroppableMap(withScrollChange) }; const updatedAdditions = toDraggableMap(adjustAdditionsForScrollChanges({ additions: published.additions, updatedDroppables: droppables, viewport: state.viewport })); const draggables = { ...state.dimensions.draggables, ...updatedAdditions }; published.removals.forEach(id => { delete draggables[id]; }); const dimensions = { droppables, draggables }; const wasOverId = whatIsDraggedOver(state.impact); const wasOver = wasOverId ? dimensions.droppables[wasOverId] : null; const draggable = dimensions.draggables[state.critical.draggable.id]; const home = dimensions.droppables[state.critical.droppable.id]; const { impact: onLiftImpact, afterCritical } = getLiftEffect({ draggable, home, draggables, viewport: state.viewport }); const previousImpact = wasOver && wasOver.isCombineEnabled ? state.impact : onLiftImpact; const impact = getDragImpact({ pageOffset: state.current.page.offset, draggable: dimensions.draggables[state.critical.draggable.id], draggables: dimensions.draggables, droppables: dimensions.droppables, previousImpact, viewport: state.viewport, afterCritical }); finish(timingsKey); const draggingState = { ...state, phase: 'DRAGGING', impact, onLiftImpact, dimensions, afterCritical, forceShouldAnimate: false }; if (state.phase === 'COLLECTING') { return draggingState; } const dropPending = { ...draggingState, phase: 'DROP_PENDING', reason: state.reason, isWaiting: false }; return dropPending; }); const isSnapping = state => state.movementMode === 'SNAP'; const postDroppableChange = (state, updated, isEnabledChanging) => { const dimensions = patchDimensionMap(state.dimensions, updated); if (!isSnapping(state) || isEnabledChanging) { return update({ state, dimensions }); } return refreshSnap({ state, dimensions }); }; function removeScrollJumpRequest(state) { if (state.isDragging && state.movementMode === 'SNAP') { return { ...state, scrollJumpRequest: null }; } return state; } const idle$2 = { phase: 'IDLE', completed: null, shouldFlush: false }; var reducer = ((state = idle$2, action) => { if (action.type === 'FLUSH') { return { ...idle$2, shouldFlush: true }; } if (action.type === 'INITIAL_PUBLISH') { !(state.phase === 'IDLE') ? true ? invariant(false, 'INITIAL_PUBLISH must come after a IDLE phase') : 0 : void 0; const { critical, clientSelection, viewport, dimensions, movementMode } = action.payload; const draggable = dimensions.draggables[critical.draggable.id]; const home = dimensions.droppables[critical.droppable.id]; const client = { selection: clientSelection, borderBoxCenter: draggable.client.borderBox.center, offset: origin }; const initial = { client, page: { selection: add(client.selection, viewport.scroll.initial), borderBoxCenter: add(client.selection, viewport.scroll.initial), offset: add(client.selection, viewport.scroll.diff.value) } }; const isWindowScrollAllowed = toDroppableList(dimensions.droppables).every(item => !item.isFixedOnPage); const { impact, afterCritical } = getLiftEffect({ draggable, home, draggables: dimensions.draggables, viewport }); const result = { phase: 'DRAGGING', isDragging: true, critical, movementMode, dimensions, initial, current: initial, isWindowScrollAllowed, impact, afterCritical, onLiftImpact: impact, viewport, scrollJumpRequest: null, forceShouldAnimate: null }; return result; } if (action.type === 'COLLECTION_STARTING') { if (state.phase === 'COLLECTING' || state.phase === 'DROP_PENDING') { return state; } !(state.phase === 'DRAGGING') ? true ? invariant(false, `Collection cannot start from phase ${state.phase}`) : 0 : void 0; const result = { ...state, phase: 'COLLECTING' }; return result; } if (action.type === 'PUBLISH_WHILE_DRAGGING') { !(state.phase === 'COLLECTING' || state.phase === 'DROP_PENDING') ? true ? invariant(false, `Unexpected ${action.type} received in phase ${state.phase}`) : 0 : void 0; return publishWhileDraggingInVirtual({ state, published: action.payload }); } if (action.type === 'MOVE') { if (state.phase === 'DROP_PENDING') { return state; } !isMovementAllowed(state) ? true ? invariant(false, `${action.type} not permitted in phase ${state.phase}`) : 0 : void 0; const { client: clientSelection } = action.payload; if (isEqual$1(clientSelection, state.current.client.selection)) { return state; } return update({ state, clientSelection, impact: isSnapping(state) ? state.impact : null }); } if (action.type === 'UPDATE_DROPPABLE_SCROLL') { if (state.phase === 'DROP_PENDING') { return removeScrollJumpRequest(state); } if (state.phase === 'COLLECTING') { return removeScrollJumpRequest(state); } !isMovementAllowed(state) ? true ? invariant(false, `${action.type} not permitted in phase ${state.phase}`) : 0 : void 0; const { id, newScroll } = action.payload; const target = state.dimensions.droppables[id]; if (!target) { return state; } const scrolled = scrollDroppable(target, newScroll); return postDroppableChange(state, scrolled, false); } if (action.type === 'UPDATE_DROPPABLE_IS_ENABLED') { if (state.phase === 'DROP_PENDING') { return state; } !isMovementAllowed(state) ? true ? invariant(false, `Attempting to move in an unsupported phase ${state.phase}`) : 0 : void 0; const { id, isEnabled } = action.payload; const target = state.dimensions.droppables[id]; !target ? true ? invariant(false, `Cannot find Droppable[id: ${id}] to toggle its enabled state`) : 0 : void 0; !(target.isEnabled !== isEnabled) ? true ? invariant(false, `Trying to set droppable isEnabled to ${String(isEnabled)} but it is already ${String(target.isEnabled)}`) : 0 : void 0; const updated = { ...target, isEnabled }; return postDroppableChange(state, updated, true); } if (action.type === 'UPDATE_DROPPABLE_IS_COMBINE_ENABLED') { if (state.phase === 'DROP_PENDING') { return state; } !isMovementAllowed(state) ? true ? invariant(false, `Attempting to move in an unsupported phase ${state.phase}`) : 0 : void 0; const { id, isCombineEnabled } = action.payload; const target = state.dimensions.droppables[id]; !target ? true ? invariant(false, `Cannot find Droppable[id: ${id}] to toggle its isCombineEnabled state`) : 0 : void 0; !(target.isCombineEnabled !== isCombineEnabled) ? true ? invariant(false, `Trying to set droppable isCombineEnabled to ${String(isCombineEnabled)} but it is already ${String(target.isCombineEnabled)}`) : 0 : void 0; const updated = { ...target, isCombineEnabled }; return postDroppableChange(state, updated, true); } if (action.type === 'MOVE_BY_WINDOW_SCROLL') { if (state.phase === 'DROP_PENDING' || state.phase === 'DROP_ANIMATING') { return state; } !isMovementAllowed(state) ? true ? invariant(false, `Cannot move by window in phase ${state.phase}`) : 0 : void 0; !state.isWindowScrollAllowed ? true ? invariant(false, 'Window scrolling is currently not supported for fixed lists') : 0 : void 0; const newScroll = action.payload.newScroll; if (isEqual$1(state.viewport.scroll.current, newScroll)) { return removeScrollJumpRequest(state); } const viewport = scrollViewport(state.viewport, newScroll); if (isSnapping(state)) { return refreshSnap({ state, viewport }); } return update({ state, viewport }); } if (action.type === 'UPDATE_VIEWPORT_MAX_SCROLL') { if (!isMovementAllowed(state)) { return state; } const maxScroll = action.payload.maxScroll; if (isEqual$1(maxScroll, state.viewport.scroll.max)) { return state; } const withMaxScroll = { ...state.viewport, scroll: { ...state.viewport.scroll, max: maxScroll } }; return { ...state, viewport: withMaxScroll }; } if (action.type === 'MOVE_UP' || action.type === 'MOVE_DOWN' || action.type === 'MOVE_LEFT' || action.type === 'MOVE_RIGHT') { if (state.phase === 'COLLECTING' || state.phase === 'DROP_PENDING') { return state; } !(state.phase === 'DRAGGING') ? true ? invariant(false, `${action.type} received while not in DRAGGING phase`) : 0 : void 0; const result = moveInDirection({ state, type: action.type }); if (!result) { return state; } return update({ state, impact: result.impact, clientSelection: result.clientSelection, scrollJumpRequest: result.scrollJumpRequest }); } if (action.type === 'DROP_PENDING') { const reason = action.payload.reason; !(state.phase === 'COLLECTING') ? true ? invariant(false, 'Can only move into the DROP_PENDING phase from the COLLECTING phase') : 0 : void 0; const newState = { ...state, phase: 'DROP_PENDING', isWaiting: true, reason }; return newState; } if (action.type === 'DROP_ANIMATE') { const { completed, dropDuration, newHomeClientOffset } = action.payload; !(state.phase === 'DRAGGING' || state.phase === 'DROP_PENDING') ? true ? invariant(false, `Cannot animate drop from phase ${state.phase}`) : 0 : void 0; const result = { phase: 'DROP_ANIMATING', completed, dropDuration, newHomeClientOffset, dimensions: state.dimensions }; return result; } if (action.type === 'DROP_COMPLETE') { const { completed } = action.payload; return { phase: 'IDLE', completed, shouldFlush: false }; } return state; }); const beforeInitialCapture = args => ({ type: 'BEFORE_INITIAL_CAPTURE', payload: args }); const lift$1 = args => ({ type: 'LIFT', payload: args }); const initialPublish = args => ({ type: 'INITIAL_PUBLISH', payload: args }); const publishWhileDragging = args => ({ type: 'PUBLISH_WHILE_DRAGGING', payload: args }); const collectionStarting = () => ({ type: 'COLLECTION_STARTING', payload: null }); const updateDroppableScroll = args => ({ type: 'UPDATE_DROPPABLE_SCROLL', payload: args }); const updateDroppableIsEnabled = args => ({ type: 'UPDATE_DROPPABLE_IS_ENABLED', payload: args }); const updateDroppableIsCombineEnabled = args => ({ type: 'UPDATE_DROPPABLE_IS_COMBINE_ENABLED', payload: args }); const move = args => ({ type: 'MOVE', payload: args }); const moveByWindowScroll = args => ({ type: 'MOVE_BY_WINDOW_SCROLL', payload: args }); const updateViewportMaxScroll = args => ({ type: 'UPDATE_VIEWPORT_MAX_SCROLL', payload: args }); const moveUp = () => ({ type: 'MOVE_UP', payload: null }); const moveDown = () => ({ type: 'MOVE_DOWN', payload: null }); const moveRight = () => ({ type: 'MOVE_RIGHT', payload: null }); const moveLeft = () => ({ type: 'MOVE_LEFT', payload: null }); const flush = () => ({ type: 'FLUSH', payload: null }); const animateDrop = args => ({ type: 'DROP_ANIMATE', payload: args }); const completeDrop = args => ({ type: 'DROP_COMPLETE', payload: args }); const drop$1 = args => ({ type: 'DROP', payload: args }); const dropPending = args => ({ type: 'DROP_PENDING', payload: args }); const dropAnimationFinished = () => ({ type: 'DROP_ANIMATION_FINISHED', payload: null }); function checkIndexes(insideDestination) { if (insideDestination.length <= 1) { return; } const indexes = insideDestination.map(d => d.descriptor.index); const errors = {}; for (let i = 1; i < indexes.length; i++) { const current = indexes[i]; const previous = indexes[i - 1]; if (current !== previous + 1) { errors[current] = true; } } if (!Object.keys(errors).length) { return; } const formatted = indexes.map(index => { const hasError = Boolean(errors[index]); return hasError ? `[🔥${index}]` : `${index}`; }).join(', '); true ? warning(` Detected non-consecutive indexes. (This can cause unexpected bugs) ${formatted} `) : 0; } function validateDimensions(critical, dimensions) { if (true) { const insideDestination = getDraggablesInsideDroppable(critical.droppable.id, dimensions.draggables); checkIndexes(insideDestination); } } var lift = (marshal => ({ getState, dispatch }) => next => action => { if (action.type !== 'LIFT') { next(action); return; } const { id, clientSelection, movementMode } = action.payload; const initial = getState(); if (initial.phase === 'DROP_ANIMATING') { dispatch(completeDrop({ completed: initial.completed })); } !(getState().phase === 'IDLE') ? true ? invariant(false, 'Unexpected phase to start a drag') : 0 : void 0; dispatch(flush()); dispatch(beforeInitialCapture({ draggableId: id, movementMode })); const scrollOptions = { shouldPublishImmediately: movementMode === 'SNAP' }; const request = { draggableId: id, scrollOptions }; const { critical, dimensions, viewport } = marshal.startPublishing(request); validateDimensions(critical, dimensions); dispatch(initialPublish({ critical, dimensions, clientSelection, movementMode, viewport })); }); var style = (marshal => () => next => action => { if (action.type === 'INITIAL_PUBLISH') { marshal.dragging(); } if (action.type === 'DROP_ANIMATE') { marshal.dropping(action.payload.completed.result.reason); } if (action.type === 'FLUSH' || action.type === 'DROP_COMPLETE') { marshal.resting(); } next(action); }); const curves = { outOfTheWay: 'cubic-bezier(0.2, 0, 0, 1)', drop: 'cubic-bezier(.2,1,.1,1)' }; const combine = { opacity: { drop: 0, combining: 0.7 }, scale: { drop: 0.75 } }; const timings = { outOfTheWay: 0.2, minDropTime: 0.33, maxDropTime: 0.55 }; const outOfTheWayTiming = `${timings.outOfTheWay}s ${curves.outOfTheWay}`; const transitions = { fluid: `opacity ${outOfTheWayTiming}`, snap: `transform ${outOfTheWayTiming}, opacity ${outOfTheWayTiming}`, drop: duration => { const timing = `${duration}s ${curves.drop}`; return `transform ${timing}, opacity ${timing}`; }, outOfTheWay: `transform ${outOfTheWayTiming}`, placeholder: `height ${outOfTheWayTiming}, width ${outOfTheWayTiming}, margin ${outOfTheWayTiming}` }; const moveTo = offset => isEqual$1(offset, origin) ? undefined : `translate(${offset.x}px, ${offset.y}px)`; const transforms = { moveTo, drop: (offset, isCombining) => { const translate = moveTo(offset); if (!translate) { return undefined; } if (!isCombining) { return translate; } return `${translate} scale(${combine.scale.drop})`; } }; const { minDropTime, maxDropTime } = timings; const dropTimeRange = maxDropTime - minDropTime; const maxDropTimeAtDistance = 1500; const cancelDropModifier = 0.6; var getDropDuration = (({ current, destination, reason }) => { const distance$1 = distance(current, destination); if (distance$1 <= 0) { return minDropTime; } if (distance$1 >= maxDropTimeAtDistance) { return maxDropTime; } const percentage = distance$1 / maxDropTimeAtDistance; const duration = minDropTime + dropTimeRange * percentage; const withDuration = reason === 'CANCEL' ? duration * cancelDropModifier : duration; return Number(withDuration.toFixed(2)); }); var getNewHomeClientOffset = (({ impact, draggable, dimensions, viewport, afterCritical }) => { const { draggables, droppables } = dimensions; const droppableId = whatIsDraggedOver(impact); const destination = droppableId ? droppables[droppableId] : null; const home = droppables[draggable.descriptor.droppableId]; const newClientCenter = getClientBorderBoxCenter({ impact, draggable, draggables, afterCritical, droppable: destination || home, viewport }); const offset = subtract(newClientCenter, draggable.client.borderBox.center); return offset; }); var getDropImpact = (({ draggables, reason, lastImpact, home, viewport, onLiftImpact }) => { if (!lastImpact.at || reason !== 'DROP') { const recomputedHomeImpact = recompute({ draggables, impact: onLiftImpact, destination: home, viewport, forceShouldAnimate: true }); return { impact: recomputedHomeImpact, didDropInsideDroppable: false }; } if (lastImpact.at.type === 'REORDER') { return { impact: lastImpact, didDropInsideDroppable: true }; } const withoutMovement = { ...lastImpact, displaced: emptyGroups }; return { impact: withoutMovement, didDropInsideDroppable: true }; }); const dropMiddleware = ({ getState, dispatch }) => next => action => { if (action.type !== 'DROP') { next(action); return; } const state = getState(); const reason = action.payload.reason; if (state.phase === 'COLLECTING') { dispatch(dropPending({ reason })); return; } if (state.phase === 'IDLE') { return; } const isWaitingForDrop = state.phase === 'DROP_PENDING' && state.isWaiting; !!isWaitingForDrop ? true ? invariant(false, 'A DROP action occurred while DROP_PENDING and still waiting') : 0 : void 0; !(state.phase === 'DRAGGING' || state.phase === 'DROP_PENDING') ? true ? invariant(false, `Cannot drop in phase: ${state.phase}`) : 0 : void 0; const critical = state.critical; const dimensions = state.dimensions; const draggable = dimensions.draggables[state.critical.draggable.id]; const { impact, didDropInsideDroppable } = getDropImpact({ reason, lastImpact: state.impact, afterCritical: state.afterCritical, onLiftImpact: state.onLiftImpact, home: state.dimensions.droppables[state.critical.droppable.id], viewport: state.viewport, draggables: state.dimensions.draggables }); const destination = didDropInsideDroppable ? tryGetDestination(impact) : null; const combine = didDropInsideDroppable ? tryGetCombine(impact) : null; const source = { index: critical.draggable.index, droppableId: critical.droppable.id }; const result = { draggableId: draggable.descriptor.id, type: draggable.descriptor.type, source, reason, mode: state.movementMode, destination, combine }; const newHomeClientOffset = getNewHomeClientOffset({ impact, draggable, dimensions, viewport: state.viewport, afterCritical: state.afterCritical }); const completed = { critical: state.critical, afterCritical: state.afterCritical, result, impact }; const isAnimationRequired = !isEqual$1(state.current.client.offset, newHomeClientOffset) || Boolean(result.combine); if (!isAnimationRequired) { dispatch(completeDrop({ completed })); return; } const dropDuration = getDropDuration({ current: state.current.client.offset, destination: newHomeClientOffset, reason }); const args = { newHomeClientOffset, dropDuration, completed }; dispatch(animateDrop(args)); }; var drop = dropMiddleware; var getWindowScroll = (() => ({ x: window.pageXOffset, y: window.pageYOffset })); function getWindowScrollBinding(update) { return { eventName: 'scroll', options: { passive: true, capture: false }, fn: event => { if (event.target !== window && event.target !== window.document) { return; } update(); } }; } function getScrollListener({ onWindowScroll }) { function updateScroll() { onWindowScroll(getWindowScroll()); } const scheduled = (0,raf_schd__WEBPACK_IMPORTED_MODULE_6__["default"])(updateScroll); const binding = getWindowScrollBinding(scheduled); let unbind = noop$2; function isActive() { return unbind !== noop$2; } function start() { !!isActive() ? true ? invariant(false, 'Cannot start scroll listener when already active') : 0 : void 0; unbind = bindEvents(window, [binding]); } function stop() { !isActive() ? true ? invariant(false, 'Cannot stop scroll listener when not active') : 0 : void 0; scheduled.cancel(); unbind(); unbind = noop$2; } return { start, stop, isActive }; } const shouldEnd = action => action.type === 'DROP_COMPLETE' || action.type === 'DROP_ANIMATE' || action.type === 'FLUSH'; const scrollListener = store => { const listener = getScrollListener({ onWindowScroll: newScroll => { store.dispatch(moveByWindowScroll({ newScroll })); } }); return next => action => { if (!listener.isActive() && action.type === 'INITIAL_PUBLISH') { listener.start(); } if (listener.isActive() && shouldEnd(action)) { listener.stop(); } next(action); }; }; var scrollListener$1 = scrollListener; var getExpiringAnnounce = (announce => { let wasCalled = false; let isExpired = false; const timeoutId = setTimeout(() => { isExpired = true; }); const result = message => { if (wasCalled) { true ? warning('Announcement already made. Not making a second announcement') : 0; return; } if (isExpired) { true ? warning(` Announcements cannot be made asynchronously. Default message has already been announced. `) : 0; return; } wasCalled = true; announce(message); clearTimeout(timeoutId); }; result.wasCalled = () => wasCalled; return result; }); var getAsyncMarshal = (() => { const entries = []; const execute = timerId => { const index = entries.findIndex(item => item.timerId === timerId); !(index !== -1) ? true ? invariant(false, 'Could not find timer') : 0 : void 0; const [entry] = entries.splice(index, 1); entry.callback(); }; const add = fn => { const timerId = setTimeout(() => execute(timerId)); const entry = { timerId, callback: fn }; entries.push(entry); }; const flush = () => { if (!entries.length) { return; } const shallow = [...entries]; entries.length = 0; shallow.forEach(entry => { clearTimeout(entry.timerId); entry.callback(); }); }; return { add, flush }; }); const areLocationsEqual = (first, second) => { if (first == null && second == null) { return true; } if (first == null || second == null) { return false; } return first.droppableId === second.droppableId && first.index === second.index; }; const isCombineEqual = (first, second) => { if (first == null && second == null) { return true; } if (first == null || second == null) { return false; } return first.draggableId === second.draggableId && first.droppableId === second.droppableId; }; const isCriticalEqual = (first, second) => { if (first === second) { return true; } const isDraggableEqual = first.draggable.id === second.draggable.id && first.draggable.droppableId === second.draggable.droppableId && first.draggable.type === second.draggable.type && first.draggable.index === second.draggable.index; const isDroppableEqual = first.droppable.id === second.droppable.id && first.droppable.type === second.droppable.type; return isDraggableEqual && isDroppableEqual; }; const withTimings = (key, fn) => { start(); fn(); finish(); }; const getDragStart = (critical, mode) => ({ draggableId: critical.draggable.id, type: critical.droppable.type, source: { droppableId: critical.droppable.id, index: critical.draggable.index }, mode }); function execute(responder, data, announce, getDefaultMessage) { if (!responder) { announce(getDefaultMessage(data)); return; } const willExpire = getExpiringAnnounce(announce); const provided = { announce: willExpire }; responder(data, provided); if (!willExpire.wasCalled()) { announce(getDefaultMessage(data)); } } var getPublisher = ((getResponders, announce) => { const asyncMarshal = getAsyncMarshal(); let dragging = null; const beforeCapture = (draggableId, mode) => { !!dragging ? true ? invariant(false, 'Cannot fire onBeforeCapture as a drag start has already been published') : 0 : void 0; withTimings('onBeforeCapture', () => { const fn = getResponders().onBeforeCapture; if (fn) { const before = { draggableId, mode }; fn(before); } }); }; const beforeStart = (critical, mode) => { !!dragging ? true ? invariant(false, 'Cannot fire onBeforeDragStart as a drag start has already been published') : 0 : void 0; withTimings('onBeforeDragStart', () => { const fn = getResponders().onBeforeDragStart; if (fn) { fn(getDragStart(critical, mode)); } }); }; const start = (critical, mode) => { !!dragging ? true ? invariant(false, 'Cannot fire onBeforeDragStart as a drag start has already been published') : 0 : void 0; const data = getDragStart(critical, mode); dragging = { mode, lastCritical: critical, lastLocation: data.source, lastCombine: null }; asyncMarshal.add(() => { withTimings('onDragStart', () => execute(getResponders().onDragStart, data, announce, preset$1.onDragStart)); }); }; const update = (critical, impact) => { const location = tryGetDestination(impact); const combine = tryGetCombine(impact); !dragging ? true ? invariant(false, 'Cannot fire onDragMove when onDragStart has not been called') : 0 : void 0; const hasCriticalChanged = !isCriticalEqual(critical, dragging.lastCritical); if (hasCriticalChanged) { dragging.lastCritical = critical; } const hasLocationChanged = !areLocationsEqual(dragging.lastLocation, location); if (hasLocationChanged) { dragging.lastLocation = location; } const hasGroupingChanged = !isCombineEqual(dragging.lastCombine, combine); if (hasGroupingChanged) { dragging.lastCombine = combine; } if (!hasCriticalChanged && !hasLocationChanged && !hasGroupingChanged) { return; } const data = { ...getDragStart(critical, dragging.mode), combine, destination: location }; asyncMarshal.add(() => { withTimings('onDragUpdate', () => execute(getResponders().onDragUpdate, data, announce, preset$1.onDragUpdate)); }); }; const flush = () => { !dragging ? true ? invariant(false, 'Can only flush responders while dragging') : 0 : void 0; asyncMarshal.flush(); }; const drop = result => { !dragging ? true ? invariant(false, 'Cannot fire onDragEnd when there is no matching onDragStart') : 0 : void 0; dragging = null; withTimings('onDragEnd', () => execute(getResponders().onDragEnd, result, announce, preset$1.onDragEnd)); }; const abort = () => { if (!dragging) { return; } const result = { ...getDragStart(dragging.lastCritical, dragging.mode), combine: null, destination: null, reason: 'CANCEL' }; drop(result); }; return { beforeCapture, beforeStart, start, update, flush, drop, abort }; }); var responders = ((getResponders, announce) => { const publisher = getPublisher(getResponders, announce); return store => next => action => { if (action.type === 'BEFORE_INITIAL_CAPTURE') { publisher.beforeCapture(action.payload.draggableId, action.payload.movementMode); return; } if (action.type === 'INITIAL_PUBLISH') { const critical = action.payload.critical; publisher.beforeStart(critical, action.payload.movementMode); next(action); publisher.start(critical, action.payload.movementMode); return; } if (action.type === 'DROP_COMPLETE') { const result = action.payload.completed.result; publisher.flush(); next(action); publisher.drop(result); return; } next(action); if (action.type === 'FLUSH') { publisher.abort(); return; } const state = store.getState(); if (state.phase === 'DRAGGING') { publisher.update(state.critical, state.impact); } }; }); const dropAnimationFinishMiddleware = store => next => action => { if (action.type !== 'DROP_ANIMATION_FINISHED') { next(action); return; } const state = store.getState(); !(state.phase === 'DROP_ANIMATING') ? true ? invariant(false, 'Cannot finish a drop animating when no drop is occurring') : 0 : void 0; store.dispatch(completeDrop({ completed: state.completed })); }; var dropAnimationFinish = dropAnimationFinishMiddleware; const dropAnimationFlushOnScrollMiddleware = store => { let unbind = null; let frameId = null; function clear() { if (frameId) { cancelAnimationFrame(frameId); frameId = null; } if (unbind) { unbind(); unbind = null; } } return next => action => { if (action.type === 'FLUSH' || action.type === 'DROP_COMPLETE' || action.type === 'DROP_ANIMATION_FINISHED') { clear(); } next(action); if (action.type !== 'DROP_ANIMATE') { return; } const binding = { eventName: 'scroll', options: { capture: true, passive: false, once: true }, fn: function flushDropAnimation() { const state = store.getState(); if (state.phase === 'DROP_ANIMATING') { store.dispatch(dropAnimationFinished()); } } }; frameId = requestAnimationFrame(() => { frameId = null; unbind = bindEvents(window, [binding]); }); }; }; var dropAnimationFlushOnScroll = dropAnimationFlushOnScrollMiddleware; var dimensionMarshalStopper = (marshal => () => next => action => { if (action.type === 'DROP_COMPLETE' || action.type === 'FLUSH' || action.type === 'DROP_ANIMATE') { marshal.stopPublishing(); } next(action); }); var focus = (marshal => { let isWatching = false; return () => next => action => { if (action.type === 'INITIAL_PUBLISH') { isWatching = true; marshal.tryRecordFocus(action.payload.critical.draggable.id); next(action); marshal.tryRestoreFocusRecorded(); return; } next(action); if (!isWatching) { return; } if (action.type === 'FLUSH') { isWatching = false; marshal.tryRestoreFocusRecorded(); return; } if (action.type === 'DROP_COMPLETE') { isWatching = false; const result = action.payload.completed.result; if (result.combine) { marshal.tryShiftRecord(result.draggableId, result.combine.draggableId); } marshal.tryRestoreFocusRecorded(); } }; }); const shouldStop = action => action.type === 'DROP_COMPLETE' || action.type === 'DROP_ANIMATE' || action.type === 'FLUSH'; var autoScroll = (autoScroller => store => next => action => { if (shouldStop(action)) { autoScroller.stop(); next(action); return; } if (action.type === 'INITIAL_PUBLISH') { next(action); const state = store.getState(); !(state.phase === 'DRAGGING') ? true ? invariant(false, 'Expected phase to be DRAGGING after INITIAL_PUBLISH') : 0 : void 0; autoScroller.start(state); return; } next(action); autoScroller.scroll(store.getState()); }); const pendingDrop = store => next => action => { next(action); if (action.type !== 'PUBLISH_WHILE_DRAGGING') { return; } const postActionState = store.getState(); if (postActionState.phase !== 'DROP_PENDING') { return; } if (postActionState.isWaiting) { return; } store.dispatch(drop$1({ reason: postActionState.reason })); }; var pendingDrop$1 = pendingDrop; const composeEnhancers = true && typeof window !== 'undefined' && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({ name: '@hello-pangea/dnd' }) : redux__WEBPACK_IMPORTED_MODULE_7__.compose; var createStore = (({ dimensionMarshal, focusMarshal, styleMarshal, getResponders, announce, autoScroller }) => (0,redux__WEBPACK_IMPORTED_MODULE_7__.createStore)(reducer, composeEnhancers((0,redux__WEBPACK_IMPORTED_MODULE_7__.applyMiddleware)(style(styleMarshal), dimensionMarshalStopper(dimensionMarshal), lift(dimensionMarshal), drop, dropAnimationFinish, dropAnimationFlushOnScroll, pendingDrop$1, autoScroll(autoScroller), scrollListener$1, focus(focusMarshal), responders(getResponders, announce))))); const clean$1 = () => ({ additions: {}, removals: {}, modified: {} }); function createPublisher({ registry, callbacks }) { let staging = clean$1(); let frameId = null; const collect = () => { if (frameId) { return; } callbacks.collectionStarting(); frameId = requestAnimationFrame(() => { frameId = null; start(); const { additions, removals, modified } = staging; const added = Object.keys(additions).map(id => registry.draggable.getById(id).getDimension(origin)).sort((a, b) => a.descriptor.index - b.descriptor.index); const updated = Object.keys(modified).map(id => { const entry = registry.droppable.getById(id); const scroll = entry.callbacks.getScrollWhileDragging(); return { droppableId: id, scroll }; }); const result = { additions: added, removals: Object.keys(removals), modified: updated }; staging = clean$1(); finish(); callbacks.publish(result); }); }; const add = entry => { const id = entry.descriptor.id; staging.additions[id] = entry; staging.modified[entry.descriptor.droppableId] = true; if (staging.removals[id]) { delete staging.removals[id]; } collect(); }; const remove = entry => { const descriptor = entry.descriptor; staging.removals[descriptor.id] = true; staging.modified[descriptor.droppableId] = true; if (staging.additions[descriptor.id]) { delete staging.additions[descriptor.id]; } collect(); }; const stop = () => { if (!frameId) { return; } cancelAnimationFrame(frameId); frameId = null; staging = clean$1(); }; return { add, remove, stop }; } var getMaxScroll = (({ scrollHeight, scrollWidth, height, width }) => { const maxScroll = subtract({ x: scrollWidth, y: scrollHeight }, { x: width, y: height }); const adjustedMaxScroll = { x: Math.max(0, maxScroll.x), y: Math.max(0, maxScroll.y) }; return adjustedMaxScroll; }); var getDocumentElement = (() => { const doc = document.documentElement; !doc ? true ? invariant(false, 'Cannot find document.documentElement') : 0 : void 0; return doc; }); var getMaxWindowScroll = (() => { const doc = getDocumentElement(); const maxScroll = getMaxScroll({ scrollHeight: doc.scrollHeight, scrollWidth: doc.scrollWidth, width: doc.clientWidth, height: doc.clientHeight }); return maxScroll; }); var getViewport = (() => { const scroll = getWindowScroll(); const maxScroll = getMaxWindowScroll(); const top = scroll.y; const left = scroll.x; const doc = getDocumentElement(); const width = doc.clientWidth; const height = doc.clientHeight; const right = left + width; const bottom = top + height; const frame = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.getRect)({ top, left, right, bottom }); const viewport = { frame, scroll: { initial: scroll, current: scroll, max: maxScroll, diff: { value: origin, displacement: origin } } }; return viewport; }); var getInitialPublish = (({ critical, scrollOptions, registry }) => { start(); const viewport = getViewport(); const windowScroll = viewport.scroll.current; const home = critical.droppable; const droppables = registry.droppable.getAllByType(home.type).map(entry => entry.callbacks.getDimensionAndWatchScroll(windowScroll, scrollOptions)); const draggables = registry.draggable.getAllByType(critical.draggable.type).map(entry => entry.getDimension(windowScroll)); const dimensions = { draggables: toDraggableMap(draggables), droppables: toDroppableMap(droppables) }; finish(); const result = { dimensions, critical, viewport }; return result; }); function shouldPublishUpdate(registry, dragging, entry) { if (entry.descriptor.id === dragging.id) { return false; } if (entry.descriptor.type !== dragging.type) { return false; } const home = registry.droppable.getById(entry.descriptor.droppableId); if (home.descriptor.mode !== 'virtual') { true ? warning(` You are attempting to add or remove a Draggable [id: ${entry.descriptor.id}] while a drag is occurring. This is only supported for virtual lists. See https://github.com/hello-pangea/dnd/blob/main/docs/patterns/virtual-lists.md `) : 0; return false; } return true; } var createDimensionMarshal = ((registry, callbacks) => { let collection = null; const publisher = createPublisher({ callbacks: { publish: callbacks.publishWhileDragging, collectionStarting: callbacks.collectionStarting }, registry }); const updateDroppableIsEnabled = (id, isEnabled) => { !registry.droppable.exists(id) ? true ? invariant(false, `Cannot update is enabled flag of Droppable ${id} as it is not registered`) : 0 : void 0; if (!collection) { return; } callbacks.updateDroppableIsEnabled({ id, isEnabled }); }; const updateDroppableIsCombineEnabled = (id, isCombineEnabled) => { if (!collection) { return; } !registry.droppable.exists(id) ? true ? invariant(false, `Cannot update isCombineEnabled flag of Droppable ${id} as it is not registered`) : 0 : void 0; callbacks.updateDroppableIsCombineEnabled({ id, isCombineEnabled }); }; const updateDroppableScroll = (id, newScroll) => { if (!collection) { return; } !registry.droppable.exists(id) ? true ? invariant(false, `Cannot update the scroll on Droppable ${id} as it is not registered`) : 0 : void 0; callbacks.updateDroppableScroll({ id, newScroll }); }; const scrollDroppable = (id, change) => { if (!collection) { return; } registry.droppable.getById(id).callbacks.scroll(change); }; const stopPublishing = () => { if (!collection) { return; } publisher.stop(); const home = collection.critical.droppable; registry.droppable.getAllByType(home.type).forEach(entry => entry.callbacks.dragStopped()); collection.unsubscribe(); collection = null; }; const subscriber = event => { !collection ? true ? invariant(false, 'Should only be subscribed when a collection is occurring') : 0 : void 0; const dragging = collection.critical.draggable; if (event.type === 'ADDITION') { if (shouldPublishUpdate(registry, dragging, event.value)) { publisher.add(event.value); } } if (event.type === 'REMOVAL') { if (shouldPublishUpdate(registry, dragging, event.value)) { publisher.remove(event.value); } } }; const startPublishing = request => { !!collection ? true ? invariant(false, 'Cannot start capturing critical dimensions as there is already a collection') : 0 : void 0; const entry = registry.draggable.getById(request.draggableId); const home = registry.droppable.getById(entry.descriptor.droppableId); const critical = { draggable: entry.descriptor, droppable: home.descriptor }; const unsubscribe = registry.subscribe(subscriber); collection = { critical, unsubscribe }; return getInitialPublish({ critical, registry, scrollOptions: request.scrollOptions }); }; const marshal = { updateDroppableIsEnabled, updateDroppableIsCombineEnabled, scrollDroppable, updateDroppableScroll, startPublishing, stopPublishing }; return marshal; }); var canStartDrag = ((state, id) => { if (state.phase === 'IDLE') { return true; } if (state.phase !== 'DROP_ANIMATING') { return false; } if (state.completed.result.draggableId === id) { return false; } return state.completed.result.reason === 'DROP'; }); var scrollWindow = (change => { window.scrollBy(change.x, change.y); }); const getScrollableDroppables = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])(droppables => toDroppableList(droppables).filter(droppable => { if (!droppable.isEnabled) { return false; } if (!droppable.frame) { return false; } return true; })); const getScrollableDroppableOver = (target, droppables) => { const maybe = getScrollableDroppables(droppables).find(droppable => { !droppable.frame ? true ? invariant(false, 'Invalid result') : 0 : void 0; return isPositionInFrame(droppable.frame.pageMarginBox)(target); }) || null; return maybe; }; var getBestScrollableDroppable = (({ center, destination, droppables }) => { if (destination) { const dimension = droppables[destination]; if (!dimension.frame) { return null; } return dimension; } const dimension = getScrollableDroppableOver(center, droppables); return dimension; }); const defaultAutoScrollerOptions = { startFromPercentage: 0.25, maxScrollAtPercentage: 0.05, maxPixelScroll: 28, ease: percentage => percentage ** 2, durationDampening: { stopDampeningAt: 1200, accelerateAt: 360 }, disabled: false }; var getDistanceThresholds = ((container, axis, getAutoScrollerOptions = () => defaultAutoScrollerOptions) => { const autoScrollerOptions = getAutoScrollerOptions(); const startScrollingFrom = container[axis.size] * autoScrollerOptions.startFromPercentage; const maxScrollValueAt = container[axis.size] * autoScrollerOptions.maxScrollAtPercentage; const thresholds = { startScrollingFrom, maxScrollValueAt }; return thresholds; }); var getPercentage = (({ startOfRange, endOfRange, current }) => { const range = endOfRange - startOfRange; if (range === 0) { true ? warning(` Detected distance range of 0 in the fluid auto scroller This is unexpected and would cause a divide by 0 issue. Not allowing an auto scroll `) : 0; return 0; } const currentInRange = current - startOfRange; const percentage = currentInRange / range; return percentage; }); var minScroll = 1; var getValueFromDistance = ((distanceToEdge, thresholds, getAutoScrollerOptions = () => defaultAutoScrollerOptions) => { const autoScrollerOptions = getAutoScrollerOptions(); if (distanceToEdge > thresholds.startScrollingFrom) { return 0; } if (distanceToEdge <= thresholds.maxScrollValueAt) { return autoScrollerOptions.maxPixelScroll; } if (distanceToEdge === thresholds.startScrollingFrom) { return minScroll; } const percentageFromMaxScrollValueAt = getPercentage({ startOfRange: thresholds.maxScrollValueAt, endOfRange: thresholds.startScrollingFrom, current: distanceToEdge }); const percentageFromStartScrollingFrom = 1 - percentageFromMaxScrollValueAt; const scroll = autoScrollerOptions.maxPixelScroll * autoScrollerOptions.ease(percentageFromStartScrollingFrom); return Math.ceil(scroll); }); var dampenValueByTime = ((proposedScroll, dragStartTime, getAutoScrollerOptions) => { const autoScrollerOptions = getAutoScrollerOptions(); const accelerateAt = autoScrollerOptions.durationDampening.accelerateAt; const stopAt = autoScrollerOptions.durationDampening.stopDampeningAt; const startOfRange = dragStartTime; const endOfRange = stopAt; const now = Date.now(); const runTime = now - startOfRange; if (runTime >= stopAt) { return proposedScroll; } if (runTime < accelerateAt) { return minScroll; } const betweenAccelerateAtAndStopAtPercentage = getPercentage({ startOfRange: accelerateAt, endOfRange, current: runTime }); const scroll = proposedScroll * autoScrollerOptions.ease(betweenAccelerateAtAndStopAtPercentage); return Math.ceil(scroll); }); var getValue = (({ distanceToEdge, thresholds, dragStartTime, shouldUseTimeDampening, getAutoScrollerOptions }) => { const scroll = getValueFromDistance(distanceToEdge, thresholds, getAutoScrollerOptions); if (scroll === 0) { return 0; } if (!shouldUseTimeDampening) { return scroll; } return Math.max(dampenValueByTime(scroll, dragStartTime, getAutoScrollerOptions), minScroll); }); var getScrollOnAxis = (({ container, distanceToEdges, dragStartTime, axis, shouldUseTimeDampening, getAutoScrollerOptions }) => { const thresholds = getDistanceThresholds(container, axis, getAutoScrollerOptions); const isCloserToEnd = distanceToEdges[axis.end] < distanceToEdges[axis.start]; if (isCloserToEnd) { return getValue({ distanceToEdge: distanceToEdges[axis.end], thresholds, dragStartTime, shouldUseTimeDampening, getAutoScrollerOptions }); } return -1 * getValue({ distanceToEdge: distanceToEdges[axis.start], thresholds, dragStartTime, shouldUseTimeDampening, getAutoScrollerOptions }); }); var adjustForSizeLimits = (({ container, subject, proposedScroll }) => { const isTooBigVertically = subject.height > container.height; const isTooBigHorizontally = subject.width > container.width; if (!isTooBigHorizontally && !isTooBigVertically) { return proposedScroll; } if (isTooBigHorizontally && isTooBigVertically) { return null; } return { x: isTooBigHorizontally ? 0 : proposedScroll.x, y: isTooBigVertically ? 0 : proposedScroll.y }; }); const clean = apply(value => value === 0 ? 0 : value); var getScroll$1 = (({ dragStartTime, container, subject, center, shouldUseTimeDampening, getAutoScrollerOptions }) => { const distanceToEdges = { top: center.y - container.top, right: container.right - center.x, bottom: container.bottom - center.y, left: center.x - container.left }; const y = getScrollOnAxis({ container, distanceToEdges, dragStartTime, axis: vertical, shouldUseTimeDampening, getAutoScrollerOptions }); const x = getScrollOnAxis({ container, distanceToEdges, dragStartTime, axis: horizontal, shouldUseTimeDampening, getAutoScrollerOptions }); const required = clean({ x, y }); if (isEqual$1(required, origin)) { return null; } const limited = adjustForSizeLimits({ container, subject, proposedScroll: required }); if (!limited) { return null; } return isEqual$1(limited, origin) ? null : limited; }); const smallestSigned = apply(value => { if (value === 0) { return 0; } return value > 0 ? 1 : -1; }); const getOverlap = (() => { const getRemainder = (target, max) => { if (target < 0) { return target; } if (target > max) { return target - max; } return 0; }; return ({ current, max, change }) => { const targetScroll = add(current, change); const overlap = { x: getRemainder(targetScroll.x, max.x), y: getRemainder(targetScroll.y, max.y) }; if (isEqual$1(overlap, origin)) { return null; } return overlap; }; })(); const canPartiallyScroll = ({ max: rawMax, current, change }) => { const max = { x: Math.max(current.x, rawMax.x), y: Math.max(current.y, rawMax.y) }; const smallestChange = smallestSigned(change); const overlap = getOverlap({ max, current, change: smallestChange }); if (!overlap) { return true; } if (smallestChange.x !== 0 && overlap.x === 0) { return true; } if (smallestChange.y !== 0 && overlap.y === 0) { return true; } return false; }; const canScrollWindow = (viewport, change) => canPartiallyScroll({ current: viewport.scroll.current, max: viewport.scroll.max, change }); const getWindowOverlap = (viewport, change) => { if (!canScrollWindow(viewport, change)) { return null; } const max = viewport.scroll.max; const current = viewport.scroll.current; return getOverlap({ current, max, change }); }; const canScrollDroppable = (droppable, change) => { const frame = droppable.frame; if (!frame) { return false; } return canPartiallyScroll({ current: frame.scroll.current, max: frame.scroll.max, change }); }; const getDroppableOverlap = (droppable, change) => { const frame = droppable.frame; if (!frame) { return null; } if (!canScrollDroppable(droppable, change)) { return null; } return getOverlap({ current: frame.scroll.current, max: frame.scroll.max, change }); }; var getWindowScrollChange = (({ viewport, subject, center, dragStartTime, shouldUseTimeDampening, getAutoScrollerOptions }) => { const scroll = getScroll$1({ dragStartTime, container: viewport.frame, subject, center, shouldUseTimeDampening, getAutoScrollerOptions }); return scroll && canScrollWindow(viewport, scroll) ? scroll : null; }); var getDroppableScrollChange = (({ droppable, subject, center, dragStartTime, shouldUseTimeDampening, getAutoScrollerOptions }) => { const frame = droppable.frame; if (!frame) { return null; } const scroll = getScroll$1({ dragStartTime, container: frame.pageMarginBox, subject, center, shouldUseTimeDampening, getAutoScrollerOptions }); return scroll && canScrollDroppable(droppable, scroll) ? scroll : null; }); var scroll = (({ state, dragStartTime, shouldUseTimeDampening, scrollWindow, scrollDroppable, getAutoScrollerOptions }) => { const center = state.current.page.borderBoxCenter; const draggable = state.dimensions.draggables[state.critical.draggable.id]; const subject = draggable.page.marginBox; if (state.isWindowScrollAllowed) { const viewport = state.viewport; const change = getWindowScrollChange({ dragStartTime, viewport, subject, center, shouldUseTimeDampening, getAutoScrollerOptions }); if (change) { scrollWindow(change); return; } } const droppable = getBestScrollableDroppable({ center, destination: whatIsDraggedOver(state.impact), droppables: state.dimensions.droppables }); if (!droppable) { return; } const change = getDroppableScrollChange({ dragStartTime, droppable, subject, center, shouldUseTimeDampening, getAutoScrollerOptions }); if (change) { scrollDroppable(droppable.descriptor.id, change); } }); var createFluidScroller = (({ scrollWindow, scrollDroppable, getAutoScrollerOptions = () => defaultAutoScrollerOptions }) => { const scheduleWindowScroll = (0,raf_schd__WEBPACK_IMPORTED_MODULE_6__["default"])(scrollWindow); const scheduleDroppableScroll = (0,raf_schd__WEBPACK_IMPORTED_MODULE_6__["default"])(scrollDroppable); let dragging = null; const tryScroll = state => { !dragging ? true ? invariant(false, 'Cannot fluid scroll if not dragging') : 0 : void 0; const { shouldUseTimeDampening, dragStartTime } = dragging; scroll({ state, scrollWindow: scheduleWindowScroll, scrollDroppable: scheduleDroppableScroll, dragStartTime, shouldUseTimeDampening, getAutoScrollerOptions }); }; const start$1 = state => { start(); !!dragging ? true ? invariant(false, 'Cannot start auto scrolling when already started') : 0 : void 0; const dragStartTime = Date.now(); let wasScrollNeeded = false; const fakeScrollCallback = () => { wasScrollNeeded = true; }; scroll({ state, dragStartTime: 0, shouldUseTimeDampening: false, scrollWindow: fakeScrollCallback, scrollDroppable: fakeScrollCallback, getAutoScrollerOptions }); dragging = { dragStartTime, shouldUseTimeDampening: wasScrollNeeded }; finish(); if (wasScrollNeeded) { tryScroll(state); } }; const stop = () => { if (!dragging) { return; } scheduleWindowScroll.cancel(); scheduleDroppableScroll.cancel(); dragging = null; }; return { start: start$1, stop, scroll: tryScroll }; }); var createJumpScroller = (({ move, scrollDroppable, scrollWindow }) => { const moveByOffset = (state, offset) => { const client = add(state.current.client.selection, offset); move({ client }); }; const scrollDroppableAsMuchAsItCan = (droppable, change) => { if (!canScrollDroppable(droppable, change)) { return change; } const overlap = getDroppableOverlap(droppable, change); if (!overlap) { scrollDroppable(droppable.descriptor.id, change); return null; } const whatTheDroppableCanScroll = subtract(change, overlap); scrollDroppable(droppable.descriptor.id, whatTheDroppableCanScroll); const remainder = subtract(change, whatTheDroppableCanScroll); return remainder; }; const scrollWindowAsMuchAsItCan = (isWindowScrollAllowed, viewport, change) => { if (!isWindowScrollAllowed) { return change; } if (!canScrollWindow(viewport, change)) { return change; } const overlap = getWindowOverlap(viewport, change); if (!overlap) { scrollWindow(change); return null; } const whatTheWindowCanScroll = subtract(change, overlap); scrollWindow(whatTheWindowCanScroll); const remainder = subtract(change, whatTheWindowCanScroll); return remainder; }; const jumpScroller = state => { const request = state.scrollJumpRequest; if (!request) { return; } const destination = whatIsDraggedOver(state.impact); !destination ? true ? invariant(false, 'Cannot perform a jump scroll when there is no destination') : 0 : void 0; const droppableRemainder = scrollDroppableAsMuchAsItCan(state.dimensions.droppables[destination], request); if (!droppableRemainder) { return; } const viewport = state.viewport; const windowRemainder = scrollWindowAsMuchAsItCan(state.isWindowScrollAllowed, viewport, droppableRemainder); if (!windowRemainder) { return; } moveByOffset(state, windowRemainder); }; return jumpScroller; }); var createAutoScroller = (({ scrollDroppable, scrollWindow, move, getAutoScrollerOptions }) => { const fluidScroller = createFluidScroller({ scrollWindow, scrollDroppable, getAutoScrollerOptions }); const jumpScroll = createJumpScroller({ move, scrollWindow, scrollDroppable }); const scroll = state => { const autoScrollerOptions = getAutoScrollerOptions(); if (autoScrollerOptions.disabled || state.phase !== 'DRAGGING') { return; } if (state.movementMode === 'FLUID') { fluidScroller.scroll(state); return; } if (!state.scrollJumpRequest) { return; } jumpScroll(state); }; const scroller = { scroll, start: fluidScroller.start, stop: fluidScroller.stop }; return scroller; }); const prefix = 'data-rfd'; const dragHandle = (() => { const base = `${prefix}-drag-handle`; return { base, draggableId: `${base}-draggable-id`, contextId: `${base}-context-id` }; })(); const draggable = (() => { const base = `${prefix}-draggable`; return { base, contextId: `${base}-context-id`, id: `${base}-id` }; })(); const droppable = (() => { const base = `${prefix}-droppable`; return { base, contextId: `${base}-context-id`, id: `${base}-id` }; })(); const scrollContainer = { contextId: `${prefix}-scroll-container-context-id` }; const makeGetSelector = context => attribute => `[${attribute}="${context}"]`; const getStyles = (rules, property) => rules.map(rule => { const value = rule.styles[property]; if (!value) { return ''; } return `${rule.selector} { ${value} }`; }).join(' '); const noPointerEvents = 'pointer-events: none;'; var getStyles$1 = (contextId => { const getSelector = makeGetSelector(contextId); const dragHandle$1 = (() => { const grabCursor = ` cursor: -webkit-grab; cursor: grab; `; return { selector: getSelector(dragHandle.contextId), styles: { always: ` -webkit-touch-callout: none; -webkit-tap-highlight-color: rgba(0,0,0,0); touch-action: manipulation; `, resting: grabCursor, dragging: noPointerEvents, dropAnimating: grabCursor } }; })(); const draggable$1 = (() => { const transition = ` transition: ${transitions.outOfTheWay}; `; return { selector: getSelector(draggable.contextId), styles: { dragging: transition, dropAnimating: transition, userCancel: transition } }; })(); const droppable$1 = { selector: getSelector(droppable.contextId), styles: { always: `overflow-anchor: none;` } }; const body = { selector: 'body', styles: { dragging: ` cursor: grabbing; cursor: -webkit-grabbing; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; overflow-anchor: none; ` } }; const rules = [draggable$1, dragHandle$1, droppable$1, body]; return { always: getStyles(rules, 'always'), resting: getStyles(rules, 'resting'), dragging: getStyles(rules, 'dragging'), dropAnimating: getStyles(rules, 'dropAnimating'), userCancel: getStyles(rules, 'userCancel') }; }); const useIsomorphicLayoutEffect = typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.document.createElement !== 'undefined' ? react__WEBPACK_IMPORTED_MODULE_0__.useLayoutEffect : react__WEBPACK_IMPORTED_MODULE_0__.useEffect; var useLayoutEffect = useIsomorphicLayoutEffect; const getHead = () => { const head = document.querySelector('head'); !head ? true ? invariant(false, 'Cannot find the head to append a style to') : 0 : void 0; return head; }; const createStyleEl = nonce => { const el = document.createElement('style'); if (nonce) { el.setAttribute('nonce', nonce); } el.type = 'text/css'; return el; }; function useStyleMarshal(contextId, nonce) { const styles = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => getStyles$1(contextId), [contextId]); const alwaysRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); const dynamicRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); const setDynamicStyle = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)((0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])(proposed => { const el = dynamicRef.current; !el ? true ? invariant(false, 'Cannot set dynamic style element if it is not set') : 0 : void 0; el.textContent = proposed; }), []); const setAlwaysStyle = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(proposed => { const el = alwaysRef.current; !el ? true ? invariant(false, 'Cannot set dynamic style element if it is not set') : 0 : void 0; el.textContent = proposed; }, []); useLayoutEffect(() => { !(!alwaysRef.current && !dynamicRef.current) ? true ? invariant(false, 'style elements already mounted') : 0 : void 0; const always = createStyleEl(nonce); const dynamic = createStyleEl(nonce); alwaysRef.current = always; dynamicRef.current = dynamic; always.setAttribute(`${prefix}-always`, contextId); dynamic.setAttribute(`${prefix}-dynamic`, contextId); getHead().appendChild(always); getHead().appendChild(dynamic); setAlwaysStyle(styles.always); setDynamicStyle(styles.resting); return () => { const remove = ref => { const current = ref.current; !current ? true ? invariant(false, 'Cannot unmount ref as it is not set') : 0 : void 0; getHead().removeChild(current); ref.current = null; }; remove(alwaysRef); remove(dynamicRef); }; }, [nonce, setAlwaysStyle, setDynamicStyle, styles.always, styles.resting, contextId]); const dragging = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => setDynamicStyle(styles.dragging), [setDynamicStyle, styles.dragging]); const dropping = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(reason => { if (reason === 'DROP') { setDynamicStyle(styles.dropAnimating); return; } setDynamicStyle(styles.userCancel); }, [setDynamicStyle, styles.dropAnimating, styles.userCancel]); const resting = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { if (!dynamicRef.current) { return; } setDynamicStyle(styles.resting); }, [setDynamicStyle, styles.resting]); const marshal = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ dragging, dropping, resting }), [dragging, dropping, resting]); return marshal; } function querySelectorAll(parentNode, selector) { return Array.from(parentNode.querySelectorAll(selector)); } var getWindowFromEl = (el => { if (el && el.ownerDocument && el.ownerDocument.defaultView) { return el.ownerDocument.defaultView; } return window; }); function isHtmlElement(el) { return el instanceof getWindowFromEl(el).HTMLElement; } function findDragHandle(contextId, draggableId) { const selector = `[${dragHandle.contextId}="${contextId}"]`; const possible = querySelectorAll(document, selector); if (!possible.length) { true ? warning(`Unable to find any drag handles in the context "${contextId}"`) : 0; return null; } const handle = possible.find(el => { return el.getAttribute(dragHandle.draggableId) === draggableId; }); if (!handle) { true ? warning(`Unable to find drag handle with id "${draggableId}" as no handle with a matching id was found`) : 0; return null; } if (!isHtmlElement(handle)) { true ? warning('drag handle needs to be a HTMLElement') : 0; return null; } return handle; } function useFocusMarshal(contextId) { const entriesRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)({}); const recordRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); const restoreFocusFrameRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); const isMountedRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(false); const register = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function register(id, focus) { const entry = { id, focus }; entriesRef.current[id] = entry; return function unregister() { const entries = entriesRef.current; const current = entries[id]; if (current !== entry) { delete entries[id]; } }; }, []); const tryGiveFocus = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function tryGiveFocus(tryGiveFocusTo) { const handle = findDragHandle(contextId, tryGiveFocusTo); if (handle && handle !== document.activeElement) { handle.focus(); } }, [contextId]); const tryShiftRecord = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function tryShiftRecord(previous, redirectTo) { if (recordRef.current === previous) { recordRef.current = redirectTo; } }, []); const tryRestoreFocusRecorded = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function tryRestoreFocusRecorded() { if (restoreFocusFrameRef.current) { return; } if (!isMountedRef.current) { return; } restoreFocusFrameRef.current = requestAnimationFrame(() => { restoreFocusFrameRef.current = null; const record = recordRef.current; if (record) { tryGiveFocus(record); } }); }, [tryGiveFocus]); const tryRecordFocus = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function tryRecordFocus(id) { recordRef.current = null; const focused = document.activeElement; if (!focused) { return; } if (focused.getAttribute(dragHandle.draggableId) !== id) { return; } recordRef.current = id; }, []); useLayoutEffect(() => { isMountedRef.current = true; return function clearFrameOnUnmount() { isMountedRef.current = false; const frameId = restoreFocusFrameRef.current; if (frameId) { cancelAnimationFrame(frameId); } }; }, []); const marshal = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ register, tryRecordFocus, tryRestoreFocusRecorded, tryShiftRecord }), [register, tryRecordFocus, tryRestoreFocusRecorded, tryShiftRecord]); return marshal; } function createRegistry() { const entries = { draggables: {}, droppables: {} }; const subscribers = []; function subscribe(cb) { subscribers.push(cb); return function unsubscribe() { const index = subscribers.indexOf(cb); if (index === -1) { return; } subscribers.splice(index, 1); }; } function notify(event) { if (subscribers.length) { subscribers.forEach(cb => cb(event)); } } function findDraggableById(id) { return entries.draggables[id] || null; } function getDraggableById(id) { const entry = findDraggableById(id); !entry ? true ? invariant(false, `Cannot find draggable entry with id [${id}]`) : 0 : void 0; return entry; } const draggableAPI = { register: entry => { entries.draggables[entry.descriptor.id] = entry; notify({ type: 'ADDITION', value: entry }); }, update: (entry, last) => { const current = entries.draggables[last.descriptor.id]; if (!current) { return; } if (current.uniqueId !== entry.uniqueId) { return; } delete entries.draggables[last.descriptor.id]; entries.draggables[entry.descriptor.id] = entry; }, unregister: entry => { const draggableId = entry.descriptor.id; const current = findDraggableById(draggableId); if (!current) { return; } if (entry.uniqueId !== current.uniqueId) { return; } delete entries.draggables[draggableId]; if (entries.droppables[entry.descriptor.droppableId]) { notify({ type: 'REMOVAL', value: entry }); } }, getById: getDraggableById, findById: findDraggableById, exists: id => Boolean(findDraggableById(id)), getAllByType: type => Object.values(entries.draggables).filter(entry => entry.descriptor.type === type) }; function findDroppableById(id) { return entries.droppables[id] || null; } function getDroppableById(id) { const entry = findDroppableById(id); !entry ? true ? invariant(false, `Cannot find droppable entry with id [${id}]`) : 0 : void 0; return entry; } const droppableAPI = { register: entry => { entries.droppables[entry.descriptor.id] = entry; }, unregister: entry => { const current = findDroppableById(entry.descriptor.id); if (!current) { return; } if (entry.uniqueId !== current.uniqueId) { return; } delete entries.droppables[entry.descriptor.id]; }, getById: getDroppableById, findById: findDroppableById, exists: id => Boolean(findDroppableById(id)), getAllByType: type => Object.values(entries.droppables).filter(entry => entry.descriptor.type === type) }; function clean() { entries.draggables = {}; entries.droppables = {}; subscribers.length = 0; } return { draggable: draggableAPI, droppable: droppableAPI, subscribe, clean }; } function useRegistry() { const registry = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(createRegistry, []); (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { return function unmount() { if (react__WEBPACK_IMPORTED_MODULE_0___default().version.startsWith('16') || react__WEBPACK_IMPORTED_MODULE_0___default().version.startsWith('17')) { requestAnimationFrame(registry.clean); } else { registry.clean(); } }; }, [registry]); return registry; } var StoreContext = react__WEBPACK_IMPORTED_MODULE_0___default().createContext(null); var getBodyElement = (() => { const body = document.body; !body ? true ? invariant(false, 'Cannot find document.body') : 0 : void 0; return body; }); const visuallyHidden = { position: 'absolute', width: '1px', height: '1px', margin: '-1px', border: '0', padding: '0', overflow: 'hidden', clip: 'rect(0 0 0 0)', 'clip-path': 'inset(100%)' }; var visuallyHidden$1 = visuallyHidden; const getId = contextId => `rfd-announcement-${contextId}`; function useAnnouncer(contextId) { const id = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => getId(contextId), [contextId]); const ref = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(function setup() { const el = document.createElement('div'); ref.current = el; el.id = id; el.setAttribute('aria-live', 'assertive'); el.setAttribute('aria-atomic', 'true'); (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_3__["default"])(el.style, visuallyHidden$1); getBodyElement().appendChild(el); return function cleanup() { setTimeout(function remove() { const body = getBodyElement(); if (body.contains(el)) { body.removeChild(el); } if (el === ref.current) { ref.current = null; } }); }; }, [id]); const announce = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(message => { const el = ref.current; if (el) { el.textContent = message; return; } true ? warning(` A screen reader message was trying to be announced but it was unable to do so. This can occur if you unmount your in your onDragEnd. Consider calling provided.announce() before the unmount so that the instruction will not be lost for users relying on a screen reader. Message not passed to screen reader: "${message}" `) : 0; }, []); return announce; } let count$1 = 0; const defaults = { separator: '::' }; function resetDeprecatedUniqueId() { count$1 = 0; } function useDeprecatedUniqueId(prefix, options = defaults) { return (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => `${prefix}${options.separator}${count$1++}`, [options.separator, prefix]); } function useUniqueId(prefix, options = defaults) { const id = react__WEBPACK_IMPORTED_MODULE_0___default().useId(); return (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => `${prefix}${options.separator}${id}`, [options.separator, prefix, id]); } var useUniqueId$1 = "useId" in (react__WEBPACK_IMPORTED_MODULE_0___default()) ? useUniqueId : useDeprecatedUniqueId; function getElementId({ contextId, uniqueId }) { return `rfd-hidden-text-${contextId}-${uniqueId}`; } function useHiddenTextElement({ contextId, text }) { const uniqueId = useUniqueId$1('hidden-text', { separator: '-' }); const id = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => getElementId({ contextId, uniqueId }), [uniqueId, contextId]); (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(function mount() { const el = document.createElement('div'); el.id = id; el.textContent = text; el.style.display = 'none'; getBodyElement().appendChild(el); return function unmount() { const body = getBodyElement(); if (body.contains(el)) { body.removeChild(el); } }; }, [id, text]); return id; } var AppContext = react__WEBPACK_IMPORTED_MODULE_0___default().createContext(null); var peerDependencies = { react: "^16.8.5 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0" }; const semver = /(\d+)\.(\d+)\.(\d+)/; const getVersion = value => { const result = semver.exec(value); !(result != null) ? true ? invariant(false, `Unable to parse React version ${value}`) : 0 : void 0; const major = Number(result[1]); const minor = Number(result[2]); const patch = Number(result[3]); return { major, minor, patch, raw: value }; }; const isSatisfied = (expected, actual) => { if (actual.major > expected.major) { return true; } if (actual.major < expected.major) { return false; } if (actual.minor > expected.minor) { return true; } if (actual.minor < expected.minor) { return false; } return actual.patch >= expected.patch; }; var checkReactVersion = ((peerDepValue, actualValue) => { const peerDep = getVersion(peerDepValue); const actual = getVersion(actualValue); if (isSatisfied(peerDep, actual)) { return; } true ? warning(` React version: [${actual.raw}] does not satisfy expected peer dependency version: [${peerDep.raw}] This can result in run time bugs, and even fatal crashes `) : 0; }); const suffix = ` We expect a html5 doctype: This is to ensure consistent browser layout and measurement More information: https://github.com/hello-pangea/dnd/blob/main/docs/guides/doctype.md `; var checkDoctype = (doc => { const doctype = doc.doctype; if (!doctype) { true ? warning(` No found. ${suffix} `) : 0; return; } if (doctype.name.toLowerCase() !== 'html') { true ? warning(` Unexpected found: (${doctype.name}) ${suffix} `) : 0; } if (doctype.publicId !== '') { true ? warning(` Unexpected publicId found: (${doctype.publicId}) A html5 doctype does not have a publicId ${suffix} `) : 0; } }); function useDev(useHook) { if (true) { useHook(); } } function useDevSetupWarning(fn, inputs) { useDev(() => { (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { try { fn(); } catch (e) { error(` A setup problem was encountered. > ${e.message} `); } }, inputs); }); } function useStartupValidation() { useDevSetupWarning(() => { checkReactVersion(peerDependencies.react, (react__WEBPACK_IMPORTED_MODULE_0___default().version)); checkDoctype(document); }, []); } function usePrevious(current) { const ref = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(current); (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { ref.current = current; }); return ref; } function create() { let lock = null; function isClaimed() { return Boolean(lock); } function isActive(value) { return value === lock; } function claim(abandon) { !!lock ? true ? invariant(false, 'Cannot claim lock as it is already claimed') : 0 : void 0; const newLock = { abandon }; lock = newLock; return newLock; } function release() { !lock ? true ? invariant(false, 'Cannot release lock when there is no lock') : 0 : void 0; lock = null; } function tryAbandon() { if (lock) { lock.abandon(); release(); } } return { isClaimed, isActive, claim, release, tryAbandon }; } function isDragging(state) { if (state.phase === 'IDLE' || state.phase === 'DROP_ANIMATING') { return false; } return state.isDragging; } const tab = 9; const enter = 13; const escape = 27; const space = 32; const pageUp = 33; const pageDown = 34; const end = 35; const home = 36; const arrowLeft = 37; const arrowUp = 38; const arrowRight = 39; const arrowDown = 40; const preventedKeys = { [enter]: true, [tab]: true }; var preventStandardKeyEvents = (event => { if (preventedKeys[event.keyCode]) { event.preventDefault(); } }); const supportedEventName = (() => { const base = 'visibilitychange'; if (typeof document === 'undefined') { return base; } const candidates = [base, `ms${base}`, `webkit${base}`, `moz${base}`, `o${base}`]; const supported = candidates.find(eventName => `on${eventName}` in document); return supported || base; })(); var supportedPageVisibilityEventName = supportedEventName; const primaryButton = 0; const sloppyClickThreshold = 5; function isSloppyClickThresholdExceeded(original, current) { return Math.abs(current.x - original.x) >= sloppyClickThreshold || Math.abs(current.y - original.y) >= sloppyClickThreshold; } const idle$1 = { type: 'IDLE' }; function getCaptureBindings({ cancel, completed, getPhase, setPhase }) { return [{ eventName: 'mousemove', fn: event => { const { button, clientX, clientY } = event; if (button !== primaryButton) { return; } const point = { x: clientX, y: clientY }; const phase = getPhase(); if (phase.type === 'DRAGGING') { event.preventDefault(); phase.actions.move(point); return; } !(phase.type === 'PENDING') ? true ? invariant(false, 'Cannot be IDLE') : 0 : void 0; const pending = phase.point; if (!isSloppyClickThresholdExceeded(pending, point)) { return; } event.preventDefault(); const actions = phase.actions.fluidLift(point); setPhase({ type: 'DRAGGING', actions }); } }, { eventName: 'mouseup', fn: event => { const phase = getPhase(); if (phase.type !== 'DRAGGING') { cancel(); return; } event.preventDefault(); phase.actions.drop({ shouldBlockNextClick: true }); completed(); } }, { eventName: 'mousedown', fn: event => { if (getPhase().type === 'DRAGGING') { event.preventDefault(); } cancel(); } }, { eventName: 'keydown', fn: event => { const phase = getPhase(); if (phase.type === 'PENDING') { cancel(); return; } if (event.keyCode === escape) { event.preventDefault(); cancel(); return; } preventStandardKeyEvents(event); } }, { eventName: 'resize', fn: cancel }, { eventName: 'scroll', options: { passive: true, capture: false }, fn: () => { if (getPhase().type === 'PENDING') { cancel(); } } }, { eventName: 'webkitmouseforcedown', fn: event => { const phase = getPhase(); !(phase.type !== 'IDLE') ? true ? invariant(false, 'Unexpected phase') : 0 : void 0; if (phase.actions.shouldRespectForcePress()) { cancel(); return; } event.preventDefault(); } }, { eventName: supportedPageVisibilityEventName, fn: cancel }]; } function useMouseSensor(api) { const phaseRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(idle$1); const unbindEventsRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(noop$2); const startCaptureBinding = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ eventName: 'mousedown', fn: function onMouseDown(event) { if (event.defaultPrevented) { return; } if (event.button !== primaryButton) { return; } if (event.ctrlKey || event.metaKey || event.shiftKey || event.altKey) { return; } const draggableId = api.findClosestDraggableId(event); if (!draggableId) { return; } const actions = api.tryGetLock(draggableId, stop, { sourceEvent: event }); if (!actions) { return; } event.preventDefault(); const point = { x: event.clientX, y: event.clientY }; unbindEventsRef.current(); startPendingDrag(actions, point); } }), [api]); const preventForcePressBinding = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ eventName: 'webkitmouseforcewillbegin', fn: event => { if (event.defaultPrevented) { return; } const id = api.findClosestDraggableId(event); if (!id) { return; } const options = api.findOptionsForDraggable(id); if (!options) { return; } if (options.shouldRespectForcePress) { return; } if (!api.canGetLock(id)) { return; } event.preventDefault(); } }), [api]); const listenForCapture = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function listenForCapture() { const options = { passive: false, capture: true }; unbindEventsRef.current = bindEvents(window, [preventForcePressBinding, startCaptureBinding], options); }, [preventForcePressBinding, startCaptureBinding]); const stop = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const current = phaseRef.current; if (current.type === 'IDLE') { return; } phaseRef.current = idle$1; unbindEventsRef.current(); listenForCapture(); }, [listenForCapture]); const cancel = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const phase = phaseRef.current; stop(); if (phase.type === 'DRAGGING') { phase.actions.cancel({ shouldBlockNextClick: true }); } if (phase.type === 'PENDING') { phase.actions.abort(); } }, [stop]); const bindCapturingEvents = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function bindCapturingEvents() { const options = { capture: true, passive: false }; const bindings = getCaptureBindings({ cancel, completed: stop, getPhase: () => phaseRef.current, setPhase: phase => { phaseRef.current = phase; } }); unbindEventsRef.current = bindEvents(window, bindings, options); }, [cancel, stop]); const startPendingDrag = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function startPendingDrag(actions, point) { !(phaseRef.current.type === 'IDLE') ? true ? invariant(false, 'Expected to move from IDLE to PENDING drag') : 0 : void 0; phaseRef.current = { type: 'PENDING', point, actions }; bindCapturingEvents(); }, [bindCapturingEvents]); useLayoutEffect(function mount() { listenForCapture(); return function unmount() { unbindEventsRef.current(); }; }, [listenForCapture]); } function noop$1() {} const scrollJumpKeys = { [pageDown]: true, [pageUp]: true, [home]: true, [end]: true }; function getDraggingBindings(actions, stop) { function cancel() { stop(); actions.cancel(); } function drop() { stop(); actions.drop(); } return [{ eventName: 'keydown', fn: event => { if (event.keyCode === escape) { event.preventDefault(); cancel(); return; } if (event.keyCode === space) { event.preventDefault(); drop(); return; } if (event.keyCode === arrowDown) { event.preventDefault(); actions.moveDown(); return; } if (event.keyCode === arrowUp) { event.preventDefault(); actions.moveUp(); return; } if (event.keyCode === arrowRight) { event.preventDefault(); actions.moveRight(); return; } if (event.keyCode === arrowLeft) { event.preventDefault(); actions.moveLeft(); return; } if (scrollJumpKeys[event.keyCode]) { event.preventDefault(); return; } preventStandardKeyEvents(event); } }, { eventName: 'mousedown', fn: cancel }, { eventName: 'mouseup', fn: cancel }, { eventName: 'click', fn: cancel }, { eventName: 'touchstart', fn: cancel }, { eventName: 'resize', fn: cancel }, { eventName: 'wheel', fn: cancel, options: { passive: true } }, { eventName: supportedPageVisibilityEventName, fn: cancel }]; } function useKeyboardSensor(api) { const unbindEventsRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(noop$1); const startCaptureBinding = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ eventName: 'keydown', fn: function onKeyDown(event) { if (event.defaultPrevented) { return; } if (event.keyCode !== space) { return; } const draggableId = api.findClosestDraggableId(event); if (!draggableId) { return; } const preDrag = api.tryGetLock(draggableId, stop, { sourceEvent: event }); if (!preDrag) { return; } event.preventDefault(); let isCapturing = true; const actions = preDrag.snapLift(); unbindEventsRef.current(); function stop() { !isCapturing ? true ? invariant(false, 'Cannot stop capturing a keyboard drag when not capturing') : 0 : void 0; isCapturing = false; unbindEventsRef.current(); listenForCapture(); } unbindEventsRef.current = bindEvents(window, getDraggingBindings(actions, stop), { capture: true, passive: false }); } }), [api]); const listenForCapture = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function tryStartCapture() { const options = { passive: false, capture: true }; unbindEventsRef.current = bindEvents(window, [startCaptureBinding], options); }, [startCaptureBinding]); useLayoutEffect(function mount() { listenForCapture(); return function unmount() { unbindEventsRef.current(); }; }, [listenForCapture]); } const idle = { type: 'IDLE' }; const timeForLongPress = 120; const forcePressThreshold = 0.15; function getWindowBindings({ cancel, getPhase }) { return [{ eventName: 'orientationchange', fn: cancel }, { eventName: 'resize', fn: cancel }, { eventName: 'contextmenu', fn: event => { event.preventDefault(); } }, { eventName: 'keydown', fn: event => { if (getPhase().type !== 'DRAGGING') { cancel(); return; } if (event.keyCode === escape) { event.preventDefault(); } cancel(); } }, { eventName: supportedPageVisibilityEventName, fn: cancel }]; } function getHandleBindings({ cancel, completed, getPhase }) { return [{ eventName: 'touchmove', options: { capture: false }, fn: event => { const phase = getPhase(); if (phase.type !== 'DRAGGING') { cancel(); return; } phase.hasMoved = true; const { clientX, clientY } = event.touches[0]; const point = { x: clientX, y: clientY }; event.preventDefault(); phase.actions.move(point); } }, { eventName: 'touchend', fn: event => { const phase = getPhase(); if (phase.type !== 'DRAGGING') { cancel(); return; } event.preventDefault(); phase.actions.drop({ shouldBlockNextClick: true }); completed(); } }, { eventName: 'touchcancel', fn: event => { if (getPhase().type !== 'DRAGGING') { cancel(); return; } event.preventDefault(); cancel(); } }, { eventName: 'touchforcechange', fn: event => { const phase = getPhase(); !(phase.type !== 'IDLE') ? true ? invariant(false) : 0 : void 0; const touch = event.touches[0]; if (!touch) { return; } const isForcePress = touch.force >= forcePressThreshold; if (!isForcePress) { return; } const shouldRespect = phase.actions.shouldRespectForcePress(); if (phase.type === 'PENDING') { if (shouldRespect) { cancel(); } return; } if (shouldRespect) { if (phase.hasMoved) { event.preventDefault(); return; } cancel(); return; } event.preventDefault(); } }, { eventName: supportedPageVisibilityEventName, fn: cancel }]; } function useTouchSensor(api) { const phaseRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(idle); const unbindEventsRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(noop$2); const getPhase = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function getPhase() { return phaseRef.current; }, []); const setPhase = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function setPhase(phase) { phaseRef.current = phase; }, []); const startCaptureBinding = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ eventName: 'touchstart', fn: function onTouchStart(event) { if (event.defaultPrevented) { return; } const draggableId = api.findClosestDraggableId(event); if (!draggableId) { return; } const actions = api.tryGetLock(draggableId, stop, { sourceEvent: event }); if (!actions) { return; } const touch = event.touches[0]; const { clientX, clientY } = touch; const point = { x: clientX, y: clientY }; unbindEventsRef.current(); startPendingDrag(actions, point); } }), [api]); const listenForCapture = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function listenForCapture() { const options = { capture: true, passive: false }; unbindEventsRef.current = bindEvents(window, [startCaptureBinding], options); }, [startCaptureBinding]); const stop = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const current = phaseRef.current; if (current.type === 'IDLE') { return; } if (current.type === 'PENDING') { clearTimeout(current.longPressTimerId); } setPhase(idle); unbindEventsRef.current(); listenForCapture(); }, [listenForCapture, setPhase]); const cancel = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const phase = phaseRef.current; stop(); if (phase.type === 'DRAGGING') { phase.actions.cancel({ shouldBlockNextClick: true }); } if (phase.type === 'PENDING') { phase.actions.abort(); } }, [stop]); const bindCapturingEvents = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function bindCapturingEvents() { const options = { capture: true, passive: false }; const args = { cancel, completed: stop, getPhase }; const unbindTarget = bindEvents(window, getHandleBindings(args), options); const unbindWindow = bindEvents(window, getWindowBindings(args), options); unbindEventsRef.current = function unbindAll() { unbindTarget(); unbindWindow(); }; }, [cancel, getPhase, stop]); const startDragging = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function startDragging() { const phase = getPhase(); !(phase.type === 'PENDING') ? true ? invariant(false, `Cannot start dragging from phase ${phase.type}`) : 0 : void 0; const actions = phase.actions.fluidLift(phase.point); setPhase({ type: 'DRAGGING', actions, hasMoved: false }); }, [getPhase, setPhase]); const startPendingDrag = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function startPendingDrag(actions, point) { !(getPhase().type === 'IDLE') ? true ? invariant(false, 'Expected to move from IDLE to PENDING drag') : 0 : void 0; const longPressTimerId = setTimeout(startDragging, timeForLongPress); setPhase({ type: 'PENDING', point, actions, longPressTimerId }); bindCapturingEvents(); }, [bindCapturingEvents, getPhase, setPhase, startDragging]); useLayoutEffect(function mount() { listenForCapture(); return function unmount() { unbindEventsRef.current(); const phase = getPhase(); if (phase.type === 'PENDING') { clearTimeout(phase.longPressTimerId); setPhase(idle); } }; }, [getPhase, listenForCapture, setPhase]); useLayoutEffect(function webkitHack() { const unbind = bindEvents(window, [{ eventName: 'touchmove', fn: () => {}, options: { capture: false, passive: false } }]); return unbind; }, []); } function useValidateSensorHooks(sensorHooks) { useDev(() => { const previousRef = usePrevious(sensorHooks); useDevSetupWarning(() => { !(previousRef.current.length === sensorHooks.length) ? true ? invariant(false, 'Cannot change the amount of sensor hooks after mounting') : 0 : void 0; }); }); } const interactiveTagNames = ['input', 'button', 'textarea', 'select', 'option', 'optgroup', 'video', 'audio']; function isAnInteractiveElement(parent, current) { if (current == null) { return false; } const hasAnInteractiveTag = interactiveTagNames.includes(current.tagName.toLowerCase()); if (hasAnInteractiveTag) { return true; } const attribute = current.getAttribute('contenteditable'); if (attribute === 'true' || attribute === '') { return true; } if (current === parent) { return false; } return isAnInteractiveElement(parent, current.parentElement); } function isEventInInteractiveElement(draggable, event) { const target = event.target; if (!isHtmlElement(target)) { return false; } return isAnInteractiveElement(draggable, target); } var getBorderBoxCenterPosition = (el => (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.getRect)(el.getBoundingClientRect()).center); function isElement(el) { return el instanceof getWindowFromEl(el).Element; } const supportedMatchesName = (() => { const base = 'matches'; if (typeof document === 'undefined') { return base; } const candidates = [base, 'msMatchesSelector', 'webkitMatchesSelector']; const value = candidates.find(name => name in Element.prototype); return value || base; })(); function closestPonyfill(el, selector) { if (el == null) { return null; } if (el[supportedMatchesName](selector)) { return el; } return closestPonyfill(el.parentElement, selector); } function closest(el, selector) { if (el.closest) { return el.closest(selector); } return closestPonyfill(el, selector); } function getSelector(contextId) { return `[${dragHandle.contextId}="${contextId}"]`; } function findClosestDragHandleFromEvent(contextId, event) { const target = event.target; if (!isElement(target)) { true ? warning('event.target must be a Element') : 0; return null; } const selector = getSelector(contextId); const handle = closest(target, selector); if (!handle) { return null; } if (!isHtmlElement(handle)) { true ? warning('drag handle must be a HTMLElement') : 0; return null; } return handle; } function tryGetClosestDraggableIdFromEvent(contextId, event) { const handle = findClosestDragHandleFromEvent(contextId, event); if (!handle) { return null; } return handle.getAttribute(dragHandle.draggableId); } function findDraggable(contextId, draggableId) { const selector = `[${draggable.contextId}="${contextId}"]`; const possible = querySelectorAll(document, selector); const draggable$1 = possible.find(el => { return el.getAttribute(draggable.id) === draggableId; }); if (!draggable$1) { return null; } if (!isHtmlElement(draggable$1)) { true ? warning('Draggable element is not a HTMLElement') : 0; return null; } return draggable$1; } function preventDefault(event) { event.preventDefault(); } function isActive({ expected, phase, isLockActive, shouldWarn }) { if (!isLockActive()) { if (shouldWarn) { true ? warning(` Cannot perform action. The sensor no longer has an action lock. Tips: - Throw away your action handlers when forceStop() is called - Check actions.isActive() if you really need to `) : 0; } return false; } if (expected !== phase) { if (shouldWarn) { true ? warning(` Cannot perform action. The actions you used belong to an outdated phase Current phase: ${expected} You called an action from outdated phase: ${phase} Tips: - Do not use preDragActions actions after calling preDragActions.lift() `) : 0; } return false; } return true; } function canStart({ lockAPI, store, registry, draggableId }) { if (lockAPI.isClaimed()) { return false; } const entry = registry.draggable.findById(draggableId); if (!entry) { true ? warning(`Unable to find draggable with id: ${draggableId}`) : 0; return false; } if (!entry.options.isEnabled) { return false; } if (!canStartDrag(store.getState(), draggableId)) { return false; } return true; } function tryStart({ lockAPI, contextId, store, registry, draggableId, forceSensorStop, sourceEvent }) { const shouldStart = canStart({ lockAPI, store, registry, draggableId }); if (!shouldStart) { return null; } const entry = registry.draggable.getById(draggableId); const el = findDraggable(contextId, entry.descriptor.id); if (!el) { true ? warning(`Unable to find draggable element with id: ${draggableId}`) : 0; return null; } if (sourceEvent && !entry.options.canDragInteractiveElements && isEventInInteractiveElement(el, sourceEvent)) { return null; } const lock = lockAPI.claim(forceSensorStop || noop$2); let phase = 'PRE_DRAG'; function getShouldRespectForcePress() { return entry.options.shouldRespectForcePress; } function isLockActive() { return lockAPI.isActive(lock); } function tryDispatch(expected, getAction) { if (isActive({ expected, phase, isLockActive, shouldWarn: true })) { store.dispatch(getAction()); } } const tryDispatchWhenDragging = tryDispatch.bind(null, 'DRAGGING'); function lift(args) { function completed() { lockAPI.release(); phase = 'COMPLETED'; } if (phase !== 'PRE_DRAG') { completed(); true ? invariant(false, `Cannot lift in phase ${phase}`) : 0 ; } store.dispatch(lift$1(args.liftActionArgs)); phase = 'DRAGGING'; function finish(reason, options = { shouldBlockNextClick: false }) { args.cleanup(); if (options.shouldBlockNextClick) { const unbind = bindEvents(window, [{ eventName: 'click', fn: preventDefault, options: { once: true, passive: false, capture: true } }]); setTimeout(unbind); } completed(); store.dispatch(drop$1({ reason })); } return { isActive: () => isActive({ expected: 'DRAGGING', phase, isLockActive, shouldWarn: false }), shouldRespectForcePress: getShouldRespectForcePress, drop: options => finish('DROP', options), cancel: options => finish('CANCEL', options), ...args.actions }; } function fluidLift(clientSelection) { const move$1 = (0,raf_schd__WEBPACK_IMPORTED_MODULE_6__["default"])(client => { tryDispatchWhenDragging(() => move({ client })); }); const api = lift({ liftActionArgs: { id: draggableId, clientSelection, movementMode: 'FLUID' }, cleanup: () => move$1.cancel(), actions: { move: move$1 } }); return { ...api, move: move$1 }; } function snapLift() { const actions = { moveUp: () => tryDispatchWhenDragging(moveUp), moveRight: () => tryDispatchWhenDragging(moveRight), moveDown: () => tryDispatchWhenDragging(moveDown), moveLeft: () => tryDispatchWhenDragging(moveLeft) }; return lift({ liftActionArgs: { id: draggableId, clientSelection: getBorderBoxCenterPosition(el), movementMode: 'SNAP' }, cleanup: noop$2, actions }); } function abortPreDrag() { const shouldRelease = isActive({ expected: 'PRE_DRAG', phase, isLockActive, shouldWarn: true }); if (shouldRelease) { lockAPI.release(); } } const preDrag = { isActive: () => isActive({ expected: 'PRE_DRAG', phase, isLockActive, shouldWarn: false }), shouldRespectForcePress: getShouldRespectForcePress, fluidLift, snapLift, abort: abortPreDrag }; return preDrag; } const defaultSensors = [useMouseSensor, useKeyboardSensor, useTouchSensor]; function useSensorMarshal({ contextId, store, registry, customSensors, enableDefaultSensors }) { const useSensors = [...(enableDefaultSensors ? defaultSensors : []), ...(customSensors || [])]; const lockAPI = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(() => create())[0]; const tryAbandonLock = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function tryAbandonLock(previous, current) { if (isDragging(previous) && !isDragging(current)) { lockAPI.tryAbandon(); } }, [lockAPI]); useLayoutEffect(function listenToStore() { let previous = store.getState(); const unsubscribe = store.subscribe(() => { const current = store.getState(); tryAbandonLock(previous, current); previous = current; }); return unsubscribe; }, [lockAPI, store, tryAbandonLock]); useLayoutEffect(() => { return lockAPI.tryAbandon; }, [lockAPI.tryAbandon]); const canGetLock = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(draggableId => { return canStart({ lockAPI, registry, store, draggableId }); }, [lockAPI, registry, store]); const tryGetLock = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)((draggableId, forceStop, options) => tryStart({ lockAPI, registry, contextId, store, draggableId, forceSensorStop: forceStop || null, sourceEvent: options && options.sourceEvent ? options.sourceEvent : null }), [contextId, lockAPI, registry, store]); const findClosestDraggableId = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(event => tryGetClosestDraggableIdFromEvent(contextId, event), [contextId]); const findOptionsForDraggable = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(id => { const entry = registry.draggable.findById(id); return entry ? entry.options : null; }, [registry.draggable]); const tryReleaseLock = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(function tryReleaseLock() { if (!lockAPI.isClaimed()) { return; } lockAPI.tryAbandon(); if (store.getState().phase !== 'IDLE') { store.dispatch(flush()); } }, [lockAPI, store]); const isLockClaimed = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => lockAPI.isClaimed(), [lockAPI]); const api = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ canGetLock, tryGetLock, findClosestDraggableId, findOptionsForDraggable, tryReleaseLock, isLockClaimed }), [canGetLock, tryGetLock, findClosestDraggableId, findOptionsForDraggable, tryReleaseLock, isLockClaimed]); useValidateSensorHooks(useSensors); for (let i = 0; i < useSensors.length; i++) { useSensors[i](api); } } const createResponders = props => ({ onBeforeCapture: t => { const onBeforeCapureCallback = () => { if (props.onBeforeCapture) { props.onBeforeCapture(t); } }; if (react__WEBPACK_IMPORTED_MODULE_0___default().version.startsWith('16') || react__WEBPACK_IMPORTED_MODULE_0___default().version.startsWith('17')) { onBeforeCapureCallback(); } else { (0,react_dom__WEBPACK_IMPORTED_MODULE_1__.flushSync)(onBeforeCapureCallback); } }, onBeforeDragStart: props.onBeforeDragStart, onDragStart: props.onDragStart, onDragEnd: props.onDragEnd, onDragUpdate: props.onDragUpdate }); const createAutoScrollerOptions = props => ({ ...defaultAutoScrollerOptions, ...props.autoScrollerOptions, durationDampening: { ...defaultAutoScrollerOptions.durationDampening, ...props.autoScrollerOptions } }); function getStore(lazyRef) { !lazyRef.current ? true ? invariant(false, 'Could not find store from lazy ref') : 0 : void 0; return lazyRef.current; } function App(props) { const { contextId, setCallbacks, sensors, nonce, dragHandleUsageInstructions } = props; const lazyStoreRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); useStartupValidation(); const lastPropsRef = usePrevious(props); const getResponders = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { return createResponders(lastPropsRef.current); }, [lastPropsRef]); const getAutoScrollerOptions = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { return createAutoScrollerOptions(lastPropsRef.current); }, [lastPropsRef]); const announce = useAnnouncer(contextId); const dragHandleUsageInstructionsId = useHiddenTextElement({ contextId, text: dragHandleUsageInstructions }); const styleMarshal = useStyleMarshal(contextId, nonce); const lazyDispatch = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(action => { getStore(lazyStoreRef).dispatch(action); }, []); const marshalCallbacks = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => (0,redux__WEBPACK_IMPORTED_MODULE_7__.bindActionCreators)({ publishWhileDragging, updateDroppableScroll, updateDroppableIsEnabled, updateDroppableIsCombineEnabled, collectionStarting }, lazyDispatch), [lazyDispatch]); const registry = useRegistry(); const dimensionMarshal = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => { return createDimensionMarshal(registry, marshalCallbacks); }, [registry, marshalCallbacks]); const autoScroller = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => createAutoScroller({ scrollWindow, scrollDroppable: dimensionMarshal.scrollDroppable, getAutoScrollerOptions, ...(0,redux__WEBPACK_IMPORTED_MODULE_7__.bindActionCreators)({ move }, lazyDispatch) }), [dimensionMarshal.scrollDroppable, lazyDispatch, getAutoScrollerOptions]); const focusMarshal = useFocusMarshal(contextId); const store = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => createStore({ announce, autoScroller, dimensionMarshal, focusMarshal, getResponders, styleMarshal }), [announce, autoScroller, dimensionMarshal, focusMarshal, getResponders, styleMarshal]); if (true) { if (lazyStoreRef.current && lazyStoreRef.current !== store) { true ? warning('unexpected store change') : 0; } } lazyStoreRef.current = store; const tryResetStore = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const current = getStore(lazyStoreRef); const state = current.getState(); if (state.phase !== 'IDLE') { current.dispatch(flush()); } }, []); const isDragging = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const state = getStore(lazyStoreRef).getState(); if (state.phase === 'DROP_ANIMATING') { return true; } if (state.phase === 'IDLE') { return false; } return state.isDragging; }, []); const appCallbacks = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ isDragging, tryAbort: tryResetStore }), [isDragging, tryResetStore]); setCallbacks(appCallbacks); const getCanLift = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(id => canStartDrag(getStore(lazyStoreRef).getState(), id), []); const getIsMovementAllowed = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => isMovementAllowed(getStore(lazyStoreRef).getState()), []); const appContext = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ marshal: dimensionMarshal, focus: focusMarshal, contextId, canLift: getCanLift, isMovementAllowed: getIsMovementAllowed, dragHandleUsageInstructionsId, registry }), [contextId, dimensionMarshal, dragHandleUsageInstructionsId, focusMarshal, getCanLift, getIsMovementAllowed, registry]); useSensorMarshal({ contextId, store, registry, customSensors: sensors || null, enableDefaultSensors: props.enableDefaultSensors !== false }); (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { return tryResetStore; }, [tryResetStore]); return react__WEBPACK_IMPORTED_MODULE_0___default().createElement(AppContext.Provider, { value: appContext }, react__WEBPACK_IMPORTED_MODULE_0___default().createElement(react_redux__WEBPACK_IMPORTED_MODULE_2__.Provider, { context: StoreContext, store: store }, props.children)); } let count = 0; function resetDeprecatedUniqueContextId() { count = 0; } function useDeprecatedUniqueContextId() { return (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => `${count++}`, []); } function useUniqueContextId() { return react__WEBPACK_IMPORTED_MODULE_0___default().useId(); } var useUniqueContextId$1 = "useId" in (react__WEBPACK_IMPORTED_MODULE_0___default()) ? useUniqueContextId : useDeprecatedUniqueContextId; function resetServerContext() { if ("useId" in (react__WEBPACK_IMPORTED_MODULE_0___default())) { true ? warning(`It is not necessary to call resetServerContext when using React 18+`) : 0; return; } resetDeprecatedUniqueContextId(); resetDeprecatedUniqueId(); } function DragDropContext(props) { const contextId = useUniqueContextId$1(); const dragHandleUsageInstructions = props.dragHandleUsageInstructions || preset$1.dragHandleUsageInstructions; return react__WEBPACK_IMPORTED_MODULE_0___default().createElement(ErrorBoundary, null, setCallbacks => react__WEBPACK_IMPORTED_MODULE_0___default().createElement(App, { nonce: props.nonce, contextId: contextId, setCallbacks: setCallbacks, dragHandleUsageInstructions: dragHandleUsageInstructions, enableDefaultSensors: props.enableDefaultSensors, sensors: props.sensors, onBeforeCapture: props.onBeforeCapture, onBeforeDragStart: props.onBeforeDragStart, onDragStart: props.onDragStart, onDragUpdate: props.onDragUpdate, onDragEnd: props.onDragEnd, autoScrollerOptions: props.autoScrollerOptions }, props.children)); } const zIndexOptions = { dragging: 5000, dropAnimating: 4500 }; const getDraggingTransition = (shouldAnimateDragMovement, dropping) => { if (dropping) { return transitions.drop(dropping.duration); } if (shouldAnimateDragMovement) { return transitions.snap; } return transitions.fluid; }; const getDraggingOpacity = (isCombining, isDropAnimating) => { if (!isCombining) { return undefined; } return isDropAnimating ? combine.opacity.drop : combine.opacity.combining; }; const getShouldDraggingAnimate = dragging => { if (dragging.forceShouldAnimate != null) { return dragging.forceShouldAnimate; } return dragging.mode === 'SNAP'; }; function getDraggingStyle(dragging) { const dimension = dragging.dimension; const box = dimension.client; const { offset, combineWith, dropping } = dragging; const isCombining = Boolean(combineWith); const shouldAnimate = getShouldDraggingAnimate(dragging); const isDropAnimating = Boolean(dropping); const transform = isDropAnimating ? transforms.drop(offset, isCombining) : transforms.moveTo(offset); const style = { position: 'fixed', top: box.marginBox.top, left: box.marginBox.left, boxSizing: 'border-box', width: box.borderBox.width, height: box.borderBox.height, transition: getDraggingTransition(shouldAnimate, dropping), transform, opacity: getDraggingOpacity(isCombining, isDropAnimating), zIndex: isDropAnimating ? zIndexOptions.dropAnimating : zIndexOptions.dragging, pointerEvents: 'none' }; return style; } function getSecondaryStyle(secondary) { return { transform: transforms.moveTo(secondary.offset), transition: secondary.shouldAnimateDisplacement ? undefined : 'none' }; } function getStyle$1(mapped) { return mapped.type === 'DRAGGING' ? getDraggingStyle(mapped) : getSecondaryStyle(mapped); } function getDimension$1(descriptor, el, windowScroll = origin) { const computedStyles = window.getComputedStyle(el); const borderBox = el.getBoundingClientRect(); const client = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.calculateBox)(borderBox, computedStyles); const page = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.withScroll)(client, windowScroll); const placeholder = { client, tagName: el.tagName.toLowerCase(), display: computedStyles.display }; const displaceBy = { x: client.marginBox.width, y: client.marginBox.height }; const dimension = { descriptor, placeholder, displaceBy, client, page }; return dimension; } function useDraggablePublisher(args) { const uniqueId = useUniqueId$1('draggable'); const { descriptor, registry, getDraggableRef, canDragInteractiveElements, shouldRespectForcePress, isEnabled } = args; const options = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ canDragInteractiveElements, shouldRespectForcePress, isEnabled }), [canDragInteractiveElements, isEnabled, shouldRespectForcePress]); const getDimension = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(windowScroll => { const el = getDraggableRef(); !el ? true ? invariant(false, 'Cannot get dimension when no ref is set') : 0 : void 0; return getDimension$1(descriptor, el, windowScroll); }, [descriptor, getDraggableRef]); const entry = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ uniqueId, descriptor, options, getDimension }), [descriptor, getDimension, options, uniqueId]); const publishedRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(entry); const isFirstPublishRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(true); useLayoutEffect(() => { registry.draggable.register(publishedRef.current); return () => registry.draggable.unregister(publishedRef.current); }, [registry.draggable]); useLayoutEffect(() => { if (isFirstPublishRef.current) { isFirstPublishRef.current = false; return; } const last = publishedRef.current; publishedRef.current = entry; registry.draggable.update(entry, last); }, [entry, registry.draggable]); } var DroppableContext = react__WEBPACK_IMPORTED_MODULE_0___default().createContext(null); function checkIsValidInnerRef(el) { !(el && isHtmlElement(el)) ? true ? invariant(false, ` provided.innerRef has not been provided with a HTMLElement. You can find a guide on using the innerRef callback functions at: https://github.com/hello-pangea/dnd/blob/main/docs/guides/using-inner-ref.md `) : 0 : void 0; } function useValidation$1(props, contextId, getRef) { useDevSetupWarning(() => { function prefix(id) { return `Draggable[id: ${id}]: `; } const id = props.draggableId; !id ? true ? invariant(false, 'Draggable requires a draggableId') : 0 : void 0; !(typeof id === 'string') ? true ? invariant(false, `Draggable requires a [string] draggableId. Provided: [type: ${typeof id}] (value: ${id})`) : 0 : void 0; !Number.isInteger(props.index) ? true ? invariant(false, `${prefix(id)} requires an integer index prop`) : 0 : void 0; if (props.mapped.type === 'DRAGGING') { return; } checkIsValidInnerRef(getRef()); if (props.isEnabled) { !findDragHandle(contextId, id) ? true ? invariant(false, `${prefix(id)} Unable to find drag handle`) : 0 : void 0; } }); } function useClonePropValidation(isClone) { useDev(() => { const initialRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(isClone); useDevSetupWarning(() => { !(isClone === initialRef.current) ? true ? invariant(false, 'Draggable isClone prop value changed during component life') : 0 : void 0; }, [isClone]); }); } function useRequiredContext(Context) { const result = (0,react__WEBPACK_IMPORTED_MODULE_0__.useContext)(Context); !result ? true ? invariant(false, 'Could not find required context') : 0 : void 0; return result; } function preventHtml5Dnd(event) { event.preventDefault(); } const Draggable = props => { const ref = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); const setRef = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)((el = null) => { ref.current = el; }, []); const getRef = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => ref.current, []); const { contextId, dragHandleUsageInstructionsId, registry } = useRequiredContext(AppContext); const { type, droppableId } = useRequiredContext(DroppableContext); const descriptor = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ id: props.draggableId, index: props.index, type, droppableId }), [props.draggableId, props.index, type, droppableId]); const { children, draggableId, isEnabled, shouldRespectForcePress, canDragInteractiveElements, isClone, mapped, dropAnimationFinished: dropAnimationFinishedAction } = props; useValidation$1(props, contextId, getRef); useClonePropValidation(isClone); if (!isClone) { const forPublisher = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ descriptor, registry, getDraggableRef: getRef, canDragInteractiveElements, shouldRespectForcePress, isEnabled }), [descriptor, registry, getRef, canDragInteractiveElements, shouldRespectForcePress, isEnabled]); useDraggablePublisher(forPublisher); } const dragHandleProps = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => isEnabled ? { tabIndex: 0, role: 'button', 'aria-describedby': dragHandleUsageInstructionsId, 'data-rfd-drag-handle-draggable-id': draggableId, 'data-rfd-drag-handle-context-id': contextId, draggable: false, onDragStart: preventHtml5Dnd } : null, [contextId, dragHandleUsageInstructionsId, draggableId, isEnabled]); const onMoveEnd = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(event => { if (mapped.type !== 'DRAGGING') { return; } if (!mapped.dropping) { return; } if (event.propertyName !== 'transform') { return; } if (react__WEBPACK_IMPORTED_MODULE_0___default().version.startsWith('16') || react__WEBPACK_IMPORTED_MODULE_0___default().version.startsWith('17')) { dropAnimationFinishedAction(); } else { (0,react_dom__WEBPACK_IMPORTED_MODULE_1__.flushSync)(dropAnimationFinishedAction); } }, [dropAnimationFinishedAction, mapped]); const provided = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => { const style = getStyle$1(mapped); const onTransitionEnd = mapped.type === 'DRAGGING' && mapped.dropping ? onMoveEnd : undefined; const result = { innerRef: setRef, draggableProps: { 'data-rfd-draggable-context-id': contextId, 'data-rfd-draggable-id': draggableId, style, onTransitionEnd }, dragHandleProps }; return result; }, [contextId, dragHandleProps, draggableId, mapped, onMoveEnd, setRef]); const rubric = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ draggableId: descriptor.id, type: descriptor.type, source: { index: descriptor.index, droppableId: descriptor.droppableId } }), [descriptor.droppableId, descriptor.id, descriptor.index, descriptor.type]); return react__WEBPACK_IMPORTED_MODULE_0___default().createElement((react__WEBPACK_IMPORTED_MODULE_0___default().Fragment), null, children(provided, mapped.snapshot, rubric)); }; var Draggable$1 = Draggable; var isStrictEqual = ((a, b) => a === b); var whatIsDraggedOverFromResult = (result => { const { combine, destination } = result; if (destination) { return destination.droppableId; } if (combine) { return combine.droppableId; } return null; }); const getCombineWithFromResult = result => { return result.combine ? result.combine.draggableId : null; }; const getCombineWithFromImpact = impact => { return impact.at && impact.at.type === 'COMBINE' ? impact.at.combine.draggableId : null; }; function getDraggableSelector() { const memoizedOffset = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])((x, y) => ({ x, y })); const getMemoizedSnapshot = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])((mode, isClone, draggingOver = null, combineWith = null, dropping = null) => ({ isDragging: true, isClone, isDropAnimating: Boolean(dropping), dropAnimation: dropping, mode, draggingOver, combineWith, combineTargetFor: null })); const getMemoizedProps = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])((offset, mode, dimension, isClone, draggingOver = null, combineWith = null, forceShouldAnimate = null) => ({ mapped: { type: 'DRAGGING', dropping: null, draggingOver, combineWith, mode, offset, dimension, forceShouldAnimate, snapshot: getMemoizedSnapshot(mode, isClone, draggingOver, combineWith, null) } })); const selector = (state, ownProps) => { if (isDragging(state)) { if (state.critical.draggable.id !== ownProps.draggableId) { return null; } const offset = state.current.client.offset; const dimension = state.dimensions.draggables[ownProps.draggableId]; const draggingOver = whatIsDraggedOver(state.impact); const combineWith = getCombineWithFromImpact(state.impact); const forceShouldAnimate = state.forceShouldAnimate; return getMemoizedProps(memoizedOffset(offset.x, offset.y), state.movementMode, dimension, ownProps.isClone, draggingOver, combineWith, forceShouldAnimate); } if (state.phase === 'DROP_ANIMATING') { const completed = state.completed; if (completed.result.draggableId !== ownProps.draggableId) { return null; } const isClone = ownProps.isClone; const dimension = state.dimensions.draggables[ownProps.draggableId]; const result = completed.result; const mode = result.mode; const draggingOver = whatIsDraggedOverFromResult(result); const combineWith = getCombineWithFromResult(result); const duration = state.dropDuration; const dropping = { duration, curve: curves.drop, moveTo: state.newHomeClientOffset, opacity: combineWith ? combine.opacity.drop : null, scale: combineWith ? combine.scale.drop : null }; return { mapped: { type: 'DRAGGING', offset: state.newHomeClientOffset, dimension, dropping, draggingOver, combineWith, mode, forceShouldAnimate: null, snapshot: getMemoizedSnapshot(mode, isClone, draggingOver, combineWith, dropping) } }; } return null; }; return selector; } function getSecondarySnapshot(combineTargetFor = null) { return { isDragging: false, isDropAnimating: false, isClone: false, dropAnimation: null, mode: null, draggingOver: null, combineTargetFor, combineWith: null }; } const atRest = { mapped: { type: 'SECONDARY', offset: origin, combineTargetFor: null, shouldAnimateDisplacement: true, snapshot: getSecondarySnapshot(null) } }; function getSecondarySelector() { const memoizedOffset = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])((x, y) => ({ x, y })); const getMemoizedSnapshot = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])(getSecondarySnapshot); const getMemoizedProps = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])((offset, combineTargetFor = null, shouldAnimateDisplacement) => ({ mapped: { type: 'SECONDARY', offset, combineTargetFor, shouldAnimateDisplacement, snapshot: getMemoizedSnapshot(combineTargetFor) } })); const getFallback = combineTargetFor => { return combineTargetFor ? getMemoizedProps(origin, combineTargetFor, true) : null; }; const getProps = (ownId, draggingId, impact, afterCritical) => { const visualDisplacement = impact.displaced.visible[ownId]; const isAfterCriticalInVirtualList = Boolean(afterCritical.inVirtualList && afterCritical.effected[ownId]); const combine = tryGetCombine(impact); const combineTargetFor = combine && combine.draggableId === ownId ? draggingId : null; if (!visualDisplacement) { if (!isAfterCriticalInVirtualList) { return getFallback(combineTargetFor); } if (impact.displaced.invisible[ownId]) { return null; } const change = negate(afterCritical.displacedBy.point); const offset = memoizedOffset(change.x, change.y); return getMemoizedProps(offset, combineTargetFor, true); } if (isAfterCriticalInVirtualList) { return getFallback(combineTargetFor); } const displaceBy = impact.displacedBy.point; const offset = memoizedOffset(displaceBy.x, displaceBy.y); return getMemoizedProps(offset, combineTargetFor, visualDisplacement.shouldAnimate); }; const selector = (state, ownProps) => { if (isDragging(state)) { if (state.critical.draggable.id === ownProps.draggableId) { return null; } return getProps(ownProps.draggableId, state.critical.draggable.id, state.impact, state.afterCritical); } if (state.phase === 'DROP_ANIMATING') { const completed = state.completed; if (completed.result.draggableId === ownProps.draggableId) { return null; } return getProps(ownProps.draggableId, completed.result.draggableId, completed.impact, completed.afterCritical); } return null; }; return selector; } const makeMapStateToProps$1 = () => { const draggingSelector = getDraggableSelector(); const secondarySelector = getSecondarySelector(); const selector = (state, ownProps) => draggingSelector(state, ownProps) || secondarySelector(state, ownProps) || atRest; return selector; }; const mapDispatchToProps$1 = { dropAnimationFinished: dropAnimationFinished }; const ConnectedDraggable = (0,react_redux__WEBPACK_IMPORTED_MODULE_2__.connect)(makeMapStateToProps$1, mapDispatchToProps$1, null, { context: StoreContext, areStatePropsEqual: isStrictEqual })(Draggable$1); var ConnectedDraggable$1 = ConnectedDraggable; function PrivateDraggable(props) { const droppableContext = useRequiredContext(DroppableContext); const isUsingCloneFor = droppableContext.isUsingCloneFor; if (isUsingCloneFor === props.draggableId && !props.isClone) { return null; } return react__WEBPACK_IMPORTED_MODULE_0___default().createElement(ConnectedDraggable$1, props); } function PublicDraggable(props) { const isEnabled = typeof props.isDragDisabled === 'boolean' ? !props.isDragDisabled : true; const canDragInteractiveElements = Boolean(props.disableInteractiveElementBlocking); const shouldRespectForcePress = Boolean(props.shouldRespectForcePress); return react__WEBPACK_IMPORTED_MODULE_0___default().createElement(PrivateDraggable, (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_3__["default"])({}, props, { isClone: false, isEnabled: isEnabled, canDragInteractiveElements: canDragInteractiveElements, shouldRespectForcePress: shouldRespectForcePress })); } const isEqual = base => value => base === value; const isScroll = isEqual('scroll'); const isAuto = isEqual('auto'); const isVisible = isEqual('visible'); const isEither = (overflow, fn) => fn(overflow.overflowX) || fn(overflow.overflowY); const isBoth = (overflow, fn) => fn(overflow.overflowX) && fn(overflow.overflowY); const isElementScrollable = el => { const style = window.getComputedStyle(el); const overflow = { overflowX: style.overflowX, overflowY: style.overflowY }; return isEither(overflow, isScroll) || isEither(overflow, isAuto); }; const isBodyScrollable = () => { if (false) {} const body = getBodyElement(); const html = document.documentElement; !html ? true ? invariant(false) : 0 : void 0; if (!isElementScrollable(body)) { return false; } const htmlStyle = window.getComputedStyle(html); const htmlOverflow = { overflowX: htmlStyle.overflowX, overflowY: htmlStyle.overflowY }; if (isBoth(htmlOverflow, isVisible)) { return false; } true ? warning(` We have detected that your element might be a scroll container. We have found no reliable way of detecting whether the element is a scroll container. Under most circumstances a scroll bar will be on the element (document.documentElement) Because we cannot determine if the is a scroll container, and generally it is not one, we will be treating the as *not* a scroll container More information: https://github.com/hello-pangea/dnd/blob/main/docs/guides/how-we-detect-scroll-containers.md `) : 0; return false; }; const getClosestScrollable = el => { if (el == null) { return null; } if (el === document.body) { return isBodyScrollable() ? el : null; } if (el === document.documentElement) { return null; } if (!isElementScrollable(el)) { return getClosestScrollable(el.parentElement); } return el; }; var getClosestScrollable$1 = getClosestScrollable; var checkForNestedScrollContainers = (scrollable => { if (!scrollable) { return; } const anotherScrollParent = getClosestScrollable$1(scrollable.parentElement); if (!anotherScrollParent) { return; } true ? warning(` Droppable: unsupported nested scroll container detected. A Droppable can only have one scroll parent (which can be itself) Nested scroll containers are currently not supported. We hope to support nested scroll containers soon: https://github.com/atlassian/react-beautiful-dnd/issues/131 `) : 0; }); var getScroll = (el => ({ x: el.scrollLeft, y: el.scrollTop })); const getIsFixed = el => { if (!el) { return false; } const style = window.getComputedStyle(el); if (style.position === 'fixed') { return true; } return getIsFixed(el.parentElement); }; var getEnv = (start => { const closestScrollable = getClosestScrollable$1(start); const isFixedOnPage = getIsFixed(start); return { closestScrollable, isFixedOnPage }; }); var getDroppableDimension = (({ descriptor, isEnabled, isCombineEnabled, isFixedOnPage, direction, client, page, closest }) => { const frame = (() => { if (!closest) { return null; } const { scrollSize, client: frameClient } = closest; const maxScroll = getMaxScroll({ scrollHeight: scrollSize.scrollHeight, scrollWidth: scrollSize.scrollWidth, height: frameClient.paddingBox.height, width: frameClient.paddingBox.width }); return { pageMarginBox: closest.page.marginBox, frameClient, scrollSize, shouldClipSubject: closest.shouldClipSubject, scroll: { initial: closest.scroll, current: closest.scroll, max: maxScroll, diff: { value: origin, displacement: origin } } }; })(); const axis = direction === 'vertical' ? vertical : horizontal; const subject = getSubject({ page, withPlaceholder: null, axis, frame }); const dimension = { descriptor, isCombineEnabled, isFixedOnPage, axis, isEnabled, client, page, frame, subject }; return dimension; }); const getClient = (targetRef, closestScrollable) => { const base = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.getBox)(targetRef); if (!closestScrollable) { return base; } if (targetRef !== closestScrollable) { return base; } const top = base.paddingBox.top - closestScrollable.scrollTop; const left = base.paddingBox.left - closestScrollable.scrollLeft; const bottom = top + closestScrollable.scrollHeight; const right = left + closestScrollable.scrollWidth; const paddingBox = { top, right, bottom, left }; const borderBox = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.expand)(paddingBox, base.border); const client = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.createBox)({ borderBox, margin: base.margin, border: base.border, padding: base.padding }); return client; }; var getDimension = (({ ref, descriptor, env, windowScroll, direction, isDropDisabled, isCombineEnabled, shouldClipSubject }) => { const closestScrollable = env.closestScrollable; const client = getClient(ref, closestScrollable); const page = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.withScroll)(client, windowScroll); const closest = (() => { if (!closestScrollable) { return null; } const frameClient = (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.getBox)(closestScrollable); const scrollSize = { scrollHeight: closestScrollable.scrollHeight, scrollWidth: closestScrollable.scrollWidth }; return { client: frameClient, page: (0,css_box_model__WEBPACK_IMPORTED_MODULE_4__.withScroll)(frameClient, windowScroll), scroll: getScroll(closestScrollable), scrollSize, shouldClipSubject }; })(); const dimension = getDroppableDimension({ descriptor, isEnabled: !isDropDisabled, isCombineEnabled, isFixedOnPage: env.isFixedOnPage, direction, client, page, closest }); return dimension; }); const immediate = { passive: false }; const delayed = { passive: true }; var getListenerOptions = (options => options.shouldPublishImmediately ? immediate : delayed); const getClosestScrollableFromDrag = dragging => dragging && dragging.env.closestScrollable || null; function useDroppablePublisher(args) { const whileDraggingRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); const appContext = useRequiredContext(AppContext); const uniqueId = useUniqueId$1('droppable'); const { registry, marshal } = appContext; const previousRef = usePrevious(args); const descriptor = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ id: args.droppableId, type: args.type, mode: args.mode }), [args.droppableId, args.mode, args.type]); const publishedDescriptorRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(descriptor); const memoizedUpdateScroll = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])((x, y) => { !whileDraggingRef.current ? true ? invariant(false, 'Can only update scroll when dragging') : 0 : void 0; const scroll = { x, y }; marshal.updateDroppableScroll(descriptor.id, scroll); }), [descriptor.id, marshal]); const getClosestScroll = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const dragging = whileDraggingRef.current; if (!dragging || !dragging.env.closestScrollable) { return origin; } return getScroll(dragging.env.closestScrollable); }, []); const updateScroll = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const scroll = getClosestScroll(); memoizedUpdateScroll(scroll.x, scroll.y); }, [getClosestScroll, memoizedUpdateScroll]); const scheduleScrollUpdate = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => (0,raf_schd__WEBPACK_IMPORTED_MODULE_6__["default"])(updateScroll), [updateScroll]); const onClosestScroll = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const dragging = whileDraggingRef.current; const closest = getClosestScrollableFromDrag(dragging); !(dragging && closest) ? true ? invariant(false, 'Could not find scroll options while scrolling') : 0 : void 0; const options = dragging.scrollOptions; if (options.shouldPublishImmediately) { updateScroll(); return; } scheduleScrollUpdate(); }, [scheduleScrollUpdate, updateScroll]); const getDimensionAndWatchScroll = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)((windowScroll, options) => { !!whileDraggingRef.current ? true ? invariant(false, 'Cannot collect a droppable while a drag is occurring') : 0 : void 0; const previous = previousRef.current; const ref = previous.getDroppableRef(); !ref ? true ? invariant(false, 'Cannot collect without a droppable ref') : 0 : void 0; const env = getEnv(ref); const dragging = { ref, descriptor, env, scrollOptions: options }; whileDraggingRef.current = dragging; const dimension = getDimension({ ref, descriptor, env, windowScroll, direction: previous.direction, isDropDisabled: previous.isDropDisabled, isCombineEnabled: previous.isCombineEnabled, shouldClipSubject: !previous.ignoreContainerClipping }); const scrollable = env.closestScrollable; if (scrollable) { scrollable.setAttribute(scrollContainer.contextId, appContext.contextId); scrollable.addEventListener('scroll', onClosestScroll, getListenerOptions(dragging.scrollOptions)); if (true) { checkForNestedScrollContainers(scrollable); } } return dimension; }, [appContext.contextId, descriptor, onClosestScroll, previousRef]); const getScrollWhileDragging = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const dragging = whileDraggingRef.current; const closest = getClosestScrollableFromDrag(dragging); !(dragging && closest) ? true ? invariant(false, 'Can only recollect Droppable client for Droppables that have a scroll container') : 0 : void 0; return getScroll(closest); }, []); const dragStopped = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { const dragging = whileDraggingRef.current; !dragging ? true ? invariant(false, 'Cannot stop drag when no active drag') : 0 : void 0; const closest = getClosestScrollableFromDrag(dragging); whileDraggingRef.current = null; if (!closest) { return; } scheduleScrollUpdate.cancel(); closest.removeAttribute(scrollContainer.contextId); closest.removeEventListener('scroll', onClosestScroll, getListenerOptions(dragging.scrollOptions)); }, [onClosestScroll, scheduleScrollUpdate]); const scroll = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(change => { const dragging = whileDraggingRef.current; !dragging ? true ? invariant(false, 'Cannot scroll when there is no drag') : 0 : void 0; const closest = getClosestScrollableFromDrag(dragging); !closest ? true ? invariant(false, 'Cannot scroll a droppable with no closest scrollable') : 0 : void 0; closest.scrollTop += change.y; closest.scrollLeft += change.x; }, []); const callbacks = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => { return { getDimensionAndWatchScroll, getScrollWhileDragging, dragStopped, scroll }; }, [dragStopped, getDimensionAndWatchScroll, getScrollWhileDragging, scroll]); const entry = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ uniqueId, descriptor, callbacks }), [callbacks, descriptor, uniqueId]); useLayoutEffect(() => { publishedDescriptorRef.current = entry.descriptor; registry.droppable.register(entry); return () => { if (whileDraggingRef.current) { true ? warning('Unsupported: changing the droppableId or type of a Droppable during a drag') : 0; dragStopped(); } registry.droppable.unregister(entry); }; }, [callbacks, descriptor, dragStopped, entry, marshal, registry.droppable]); useLayoutEffect(() => { if (!whileDraggingRef.current) { return; } marshal.updateDroppableIsEnabled(publishedDescriptorRef.current.id, !args.isDropDisabled); }, [args.isDropDisabled, marshal]); useLayoutEffect(() => { if (!whileDraggingRef.current) { return; } marshal.updateDroppableIsCombineEnabled(publishedDescriptorRef.current.id, args.isCombineEnabled); }, [args.isCombineEnabled, marshal]); } function noop() {} const empty = { width: 0, height: 0, margin: noSpacing }; const getSize = ({ isAnimatingOpenOnMount, placeholder, animate }) => { if (isAnimatingOpenOnMount) { return empty; } if (animate === 'close') { return empty; } return { height: placeholder.client.borderBox.height, width: placeholder.client.borderBox.width, margin: placeholder.client.margin }; }; const getStyle = ({ isAnimatingOpenOnMount, placeholder, animate }) => { const size = getSize({ isAnimatingOpenOnMount, placeholder, animate }); return { display: placeholder.display, boxSizing: 'border-box', width: size.width, height: size.height, marginTop: size.margin.top, marginRight: size.margin.right, marginBottom: size.margin.bottom, marginLeft: size.margin.left, flexShrink: '0', flexGrow: '0', pointerEvents: 'none', transition: animate !== 'none' ? transitions.placeholder : null }; }; const Placeholder = props => { const animateOpenTimerRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); const tryClearAnimateOpenTimer = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { if (!animateOpenTimerRef.current) { return; } clearTimeout(animateOpenTimerRef.current); animateOpenTimerRef.current = null; }, []); const { animate, onTransitionEnd, onClose, contextId } = props; const [isAnimatingOpenOnMount, setIsAnimatingOpenOnMount] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(props.animate === 'open'); (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { if (!isAnimatingOpenOnMount) { return noop; } if (animate !== 'open') { tryClearAnimateOpenTimer(); setIsAnimatingOpenOnMount(false); return noop; } if (animateOpenTimerRef.current) { return noop; } animateOpenTimerRef.current = setTimeout(() => { animateOpenTimerRef.current = null; setIsAnimatingOpenOnMount(false); }); return tryClearAnimateOpenTimer; }, [animate, isAnimatingOpenOnMount, tryClearAnimateOpenTimer]); const onSizeChangeEnd = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(event => { if (event.propertyName !== 'height') { return; } onTransitionEnd(); if (animate === 'close') { onClose(); } }, [animate, onClose, onTransitionEnd]); const style = getStyle({ isAnimatingOpenOnMount, animate: props.animate, placeholder: props.placeholder }); return react__WEBPACK_IMPORTED_MODULE_0___default().createElement(props.placeholder.tagName, { style, 'data-rfd-placeholder-context-id': contextId, onTransitionEnd: onSizeChangeEnd, ref: props.innerRef }); }; var Placeholder$1 = react__WEBPACK_IMPORTED_MODULE_0___default().memo(Placeholder); function isBoolean(value) { return typeof value === 'boolean'; } function runChecks(args, checks) { checks.forEach(check => check(args)); } const shared = [function required({ props }) { !props.droppableId ? true ? invariant(false, 'A Droppable requires a droppableId prop') : 0 : void 0; !(typeof props.droppableId === 'string') ? true ? invariant(false, `A Droppable requires a [string] droppableId. Provided: [${typeof props.droppableId}]`) : 0 : void 0; }, function boolean({ props }) { !isBoolean(props.isDropDisabled) ? true ? invariant(false, 'isDropDisabled must be a boolean') : 0 : void 0; !isBoolean(props.isCombineEnabled) ? true ? invariant(false, 'isCombineEnabled must be a boolean') : 0 : void 0; !isBoolean(props.ignoreContainerClipping) ? true ? invariant(false, 'ignoreContainerClipping must be a boolean') : 0 : void 0; }, function ref({ getDroppableRef }) { checkIsValidInnerRef(getDroppableRef()); }]; const standard = [function placeholder({ props, getPlaceholderRef }) { if (!props.placeholder) { return; } const ref = getPlaceholderRef(); if (ref) { return; } true ? warning(` Droppable setup issue [droppableId: "${props.droppableId}"]: DroppableProvided > placeholder could not be found. Please be sure to add the {provided.placeholder} React Node as a child of your Droppable. More information: https://github.com/hello-pangea/dnd/blob/main/docs/api/droppable.md `) : 0; }]; const virtual = [function hasClone({ props }) { !props.renderClone ? true ? invariant(false, 'Must provide a clone render function (renderClone) for virtual lists') : 0 : void 0; }, function hasNoPlaceholder({ getPlaceholderRef }) { !!getPlaceholderRef() ? true ? invariant(false, 'Expected virtual list to not have a placeholder') : 0 : void 0; }]; function useValidation(args) { useDevSetupWarning(() => { runChecks(args, shared); if (args.props.mode === 'standard') { runChecks(args, standard); } if (args.props.mode === 'virtual') { runChecks(args, virtual); } }); } class AnimateInOut extends (react__WEBPACK_IMPORTED_MODULE_0___default().PureComponent) { constructor(...args) { super(...args); this.state = { isVisible: Boolean(this.props.on), data: this.props.on, animate: this.props.shouldAnimate && this.props.on ? 'open' : 'none' }; this.onClose = () => { if (this.state.animate !== 'close') { return; } this.setState({ isVisible: false }); }; } static getDerivedStateFromProps(props, state) { if (!props.shouldAnimate) { return { isVisible: Boolean(props.on), data: props.on, animate: 'none' }; } if (props.on) { return { isVisible: true, data: props.on, animate: 'open' }; } if (state.isVisible) { return { isVisible: true, data: state.data, animate: 'close' }; } return { isVisible: false, animate: 'close', data: null }; } render() { if (!this.state.isVisible) { return null; } const provided = { onClose: this.onClose, data: this.state.data, animate: this.state.animate }; return this.props.children(provided); } } const Droppable = props => { const appContext = (0,react__WEBPACK_IMPORTED_MODULE_0__.useContext)(AppContext); !appContext ? true ? invariant(false, 'Could not find app context') : 0 : void 0; const { contextId, isMovementAllowed } = appContext; const droppableRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); const placeholderRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null); const { children, droppableId, type, mode, direction, ignoreContainerClipping, isDropDisabled, isCombineEnabled, snapshot, useClone, updateViewportMaxScroll, getContainerForClone } = props; const getDroppableRef = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => droppableRef.current, []); const setDroppableRef = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)((value = null) => { droppableRef.current = value; }, []); const getPlaceholderRef = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => placeholderRef.current, []); const setPlaceholderRef = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)((value = null) => { placeholderRef.current = value; }, []); useValidation({ props, getDroppableRef, getPlaceholderRef }); const onPlaceholderTransitionEnd = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useCallback)(() => { if (isMovementAllowed()) { updateViewportMaxScroll({ maxScroll: getMaxWindowScroll() }); } }, [isMovementAllowed, updateViewportMaxScroll]); useDroppablePublisher({ droppableId, type, mode, direction, isDropDisabled, isCombineEnabled, ignoreContainerClipping, getDroppableRef }); const placeholder = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => react__WEBPACK_IMPORTED_MODULE_0___default().createElement(AnimateInOut, { on: props.placeholder, shouldAnimate: props.shouldAnimatePlaceholder }, ({ onClose, data, animate }) => react__WEBPACK_IMPORTED_MODULE_0___default().createElement(Placeholder$1, { placeholder: data, onClose: onClose, innerRef: setPlaceholderRef, animate: animate, contextId: contextId, onTransitionEnd: onPlaceholderTransitionEnd })), [contextId, onPlaceholderTransitionEnd, props.placeholder, props.shouldAnimatePlaceholder, setPlaceholderRef]); const provided = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ innerRef: setDroppableRef, placeholder, droppableProps: { 'data-rfd-droppable-id': droppableId, 'data-rfd-droppable-context-id': contextId } }), [contextId, droppableId, placeholder, setDroppableRef]); const isUsingCloneFor = useClone ? useClone.dragging.draggableId : null; const droppableContext = (0,use_memo_one__WEBPACK_IMPORTED_MODULE_8__.useMemo)(() => ({ droppableId, type, isUsingCloneFor }), [droppableId, isUsingCloneFor, type]); function getClone() { if (!useClone) { return null; } const { dragging, render } = useClone; const node = react__WEBPACK_IMPORTED_MODULE_0___default().createElement(PrivateDraggable, { draggableId: dragging.draggableId, index: dragging.source.index, isClone: true, isEnabled: true, shouldRespectForcePress: false, canDragInteractiveElements: true }, (draggableProvided, draggableSnapshot) => render(draggableProvided, draggableSnapshot, dragging)); return react_dom__WEBPACK_IMPORTED_MODULE_1__.createPortal(node, getContainerForClone()); } return react__WEBPACK_IMPORTED_MODULE_0___default().createElement(DroppableContext.Provider, { value: droppableContext }, children(provided, snapshot), getClone()); }; var Droppable$1 = Droppable; function getBody() { !document.body ? true ? invariant(false, 'document.body is not ready') : 0 : void 0; return document.body; } const defaultProps = { mode: 'standard', type: 'DEFAULT', direction: 'vertical', isDropDisabled: false, isCombineEnabled: false, ignoreContainerClipping: false, renderClone: null, getContainerForClone: getBody }; const attachDefaultPropsToOwnProps = ownProps => { let mergedProps = { ...ownProps }; let defaultPropKey; for (defaultPropKey in defaultProps) { if (ownProps[defaultPropKey] === undefined) { mergedProps = { ...mergedProps, [defaultPropKey]: defaultProps[defaultPropKey] }; } } return mergedProps; }; const isMatchingType = (type, critical) => type === critical.droppable.type; const getDraggable = (critical, dimensions) => dimensions.draggables[critical.draggable.id]; const makeMapStateToProps = () => { const idleWithAnimation = { placeholder: null, shouldAnimatePlaceholder: true, snapshot: { isDraggingOver: false, draggingOverWith: null, draggingFromThisWith: null, isUsingPlaceholder: false }, useClone: null }; const idleWithoutAnimation = { ...idleWithAnimation, shouldAnimatePlaceholder: false }; const getDraggableRubric = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])(descriptor => ({ draggableId: descriptor.id, type: descriptor.type, source: { index: descriptor.index, droppableId: descriptor.droppableId } })); const getMapProps = (0,memoize_one__WEBPACK_IMPORTED_MODULE_5__["default"])((id, isEnabled, isDraggingOverForConsumer, isDraggingOverForImpact, dragging, renderClone) => { const draggableId = dragging.descriptor.id; const isHome = dragging.descriptor.droppableId === id; if (isHome) { const useClone = renderClone ? { render: renderClone, dragging: getDraggableRubric(dragging.descriptor) } : null; const snapshot = { isDraggingOver: isDraggingOverForConsumer, draggingOverWith: isDraggingOverForConsumer ? draggableId : null, draggingFromThisWith: draggableId, isUsingPlaceholder: true }; return { placeholder: dragging.placeholder, shouldAnimatePlaceholder: false, snapshot, useClone }; } if (!isEnabled) { return idleWithoutAnimation; } if (!isDraggingOverForImpact) { return idleWithAnimation; } const snapshot = { isDraggingOver: isDraggingOverForConsumer, draggingOverWith: draggableId, draggingFromThisWith: null, isUsingPlaceholder: true }; return { placeholder: dragging.placeholder, shouldAnimatePlaceholder: true, snapshot, useClone: null }; }); const selector = (state, ownProps) => { const ownPropsWithDefaultProps = attachDefaultPropsToOwnProps(ownProps); const id = ownPropsWithDefaultProps.droppableId; const type = ownPropsWithDefaultProps.type; const isEnabled = !ownPropsWithDefaultProps.isDropDisabled; const renderClone = ownPropsWithDefaultProps.renderClone; if (isDragging(state)) { const critical = state.critical; if (!isMatchingType(type, critical)) { return idleWithoutAnimation; } const dragging = getDraggable(critical, state.dimensions); const isDraggingOver = whatIsDraggedOver(state.impact) === id; return getMapProps(id, isEnabled, isDraggingOver, isDraggingOver, dragging, renderClone); } if (state.phase === 'DROP_ANIMATING') { const completed = state.completed; if (!isMatchingType(type, completed.critical)) { return idleWithoutAnimation; } const dragging = getDraggable(completed.critical, state.dimensions); return getMapProps(id, isEnabled, whatIsDraggedOverFromResult(completed.result) === id, whatIsDraggedOver(completed.impact) === id, dragging, renderClone); } if (state.phase === 'IDLE' && state.completed && !state.shouldFlush) { const completed = state.completed; if (!isMatchingType(type, completed.critical)) { return idleWithoutAnimation; } const wasOver = whatIsDraggedOver(completed.impact) === id; const wasCombining = Boolean(completed.impact.at && completed.impact.at.type === 'COMBINE'); const isHome = completed.critical.droppable.id === id; if (wasOver) { return wasCombining ? idleWithAnimation : idleWithoutAnimation; } if (isHome) { return idleWithAnimation; } return idleWithoutAnimation; } return idleWithoutAnimation; }; return selector; }; const mapDispatchToProps = { updateViewportMaxScroll: updateViewportMaxScroll }; const ConnectedDroppable = (0,react_redux__WEBPACK_IMPORTED_MODULE_2__.connect)(makeMapStateToProps, mapDispatchToProps, (stateProps, dispatchProps, ownProps) => { return { ...attachDefaultPropsToOwnProps(ownProps), ...stateProps, ...dispatchProps }; }, { context: StoreContext, areStatePropsEqual: isStrictEqual })(Droppable$1); var ConnectedDroppable$1 = ConnectedDroppable; /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/memoize-one/dist/memoize-one.esm.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/memoize-one/dist/memoize-one.esm.js ***! \*****************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ memoizeOne) /* harmony export */ }); var safeIsNaN = Number.isNaN || function ponyfill(value) { return typeof value === 'number' && value !== value; }; function isEqual(first, second) { if (first === second) { return true; } if (safeIsNaN(first) && safeIsNaN(second)) { return true; } return false; } function areInputsEqual(newInputs, lastInputs) { if (newInputs.length !== lastInputs.length) { return false; } for (var i = 0; i < newInputs.length; i++) { if (!isEqual(newInputs[i], lastInputs[i])) { return false; } } return true; } function memoizeOne(resultFn, isEqual) { if (isEqual === void 0) { isEqual = areInputsEqual; } var cache = null; function memoized() { var newArgs = []; for (var _i = 0; _i < arguments.length; _i++) { newArgs[_i] = arguments[_i]; } if (cache && cache.lastThis === this && isEqual(newArgs, cache.lastArgs)) { return cache.lastResult; } var lastResult = resultFn.apply(this, newArgs); cache = { lastResult: lastResult, lastArgs: newArgs, lastThis: this, }; return lastResult; } memoized.clear = function clear() { cache = null; }; return memoized; } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-is/cjs/react-is.development.js": /*!******************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-is/cjs/react-is.development.js ***! \******************************************************************************************/ /***/ ((__unused_webpack_module, exports) => { "use strict"; /** * @license React * react-is.development.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ if (true) { (function() { 'use strict'; // ATTENTION // When adding new symbols to this file, // Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols' // The Symbol used to tag the ReactElement-like types. var REACT_ELEMENT_TYPE = Symbol.for('react.element'); var REACT_PORTAL_TYPE = Symbol.for('react.portal'); var REACT_FRAGMENT_TYPE = Symbol.for('react.fragment'); var REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode'); var REACT_PROFILER_TYPE = Symbol.for('react.profiler'); var REACT_PROVIDER_TYPE = Symbol.for('react.provider'); var REACT_CONTEXT_TYPE = Symbol.for('react.context'); var REACT_SERVER_CONTEXT_TYPE = Symbol.for('react.server_context'); var REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref'); var REACT_SUSPENSE_TYPE = Symbol.for('react.suspense'); var REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list'); var REACT_MEMO_TYPE = Symbol.for('react.memo'); var REACT_LAZY_TYPE = Symbol.for('react.lazy'); var REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen'); // ----------------------------------------------------------------------------- var enableScopeAPI = false; // Experimental Create Event Handle API. var enableCacheElement = false; var enableTransitionTracing = false; // No known bugs, but needs performance testing var enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber // stuff. Intended to enable React core members to more easily debug scheduling // issues in DEV builds. var enableDebugTracing = false; // Track which Fiber(s) schedule render work. var REACT_MODULE_REFERENCE; { REACT_MODULE_REFERENCE = Symbol.for('react.module.reference'); } function isValidElementType(type) { if (typeof type === 'string' || typeof type === 'function') { return true; } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill). if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing ) { return true; } if (typeof type === 'object' && type !== null) { if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object // types supported by any Flight configuration anywhere since // we don't know which Flight build this will end up being used // with. type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) { return true; } } return false; } function typeOf(object) { if (typeof object === 'object' && object !== null) { var $$typeof = object.$$typeof; switch ($$typeof) { case REACT_ELEMENT_TYPE: var type = object.type; switch (type) { case REACT_FRAGMENT_TYPE: case REACT_PROFILER_TYPE: case REACT_STRICT_MODE_TYPE: case REACT_SUSPENSE_TYPE: case REACT_SUSPENSE_LIST_TYPE: return type; default: var $$typeofType = type && type.$$typeof; switch ($$typeofType) { case REACT_SERVER_CONTEXT_TYPE: case REACT_CONTEXT_TYPE: case REACT_FORWARD_REF_TYPE: case REACT_LAZY_TYPE: case REACT_MEMO_TYPE: case REACT_PROVIDER_TYPE: return $$typeofType; default: return $$typeof; } } case REACT_PORTAL_TYPE: return $$typeof; } } return undefined; } var ContextConsumer = REACT_CONTEXT_TYPE; var ContextProvider = REACT_PROVIDER_TYPE; var Element = REACT_ELEMENT_TYPE; var ForwardRef = REACT_FORWARD_REF_TYPE; var Fragment = REACT_FRAGMENT_TYPE; var Lazy = REACT_LAZY_TYPE; var Memo = REACT_MEMO_TYPE; var Portal = REACT_PORTAL_TYPE; var Profiler = REACT_PROFILER_TYPE; var StrictMode = REACT_STRICT_MODE_TYPE; var Suspense = REACT_SUSPENSE_TYPE; var SuspenseList = REACT_SUSPENSE_LIST_TYPE; var hasWarnedAboutDeprecatedIsAsyncMode = false; var hasWarnedAboutDeprecatedIsConcurrentMode = false; // AsyncMode should be deprecated function isAsyncMode(object) { { if (!hasWarnedAboutDeprecatedIsAsyncMode) { hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 18+.'); } } return false; } function isConcurrentMode(object) { { if (!hasWarnedAboutDeprecatedIsConcurrentMode) { hasWarnedAboutDeprecatedIsConcurrentMode = true; // Using console['warn'] to evade Babel and ESLint console['warn']('The ReactIs.isConcurrentMode() alias has been deprecated, ' + 'and will be removed in React 18+.'); } } return false; } function isContextConsumer(object) { return typeOf(object) === REACT_CONTEXT_TYPE; } function isContextProvider(object) { return typeOf(object) === REACT_PROVIDER_TYPE; } function isElement(object) { return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; } function isForwardRef(object) { return typeOf(object) === REACT_FORWARD_REF_TYPE; } function isFragment(object) { return typeOf(object) === REACT_FRAGMENT_TYPE; } function isLazy(object) { return typeOf(object) === REACT_LAZY_TYPE; } function isMemo(object) { return typeOf(object) === REACT_MEMO_TYPE; } function isPortal(object) { return typeOf(object) === REACT_PORTAL_TYPE; } function isProfiler(object) { return typeOf(object) === REACT_PROFILER_TYPE; } function isStrictMode(object) { return typeOf(object) === REACT_STRICT_MODE_TYPE; } function isSuspense(object) { return typeOf(object) === REACT_SUSPENSE_TYPE; } function isSuspenseList(object) { return typeOf(object) === REACT_SUSPENSE_LIST_TYPE; } exports.ContextConsumer = ContextConsumer; exports.ContextProvider = ContextProvider; exports.Element = Element; exports.ForwardRef = ForwardRef; exports.Fragment = Fragment; exports.Lazy = Lazy; exports.Memo = Memo; exports.Portal = Portal; exports.Profiler = Profiler; exports.StrictMode = StrictMode; exports.Suspense = Suspense; exports.SuspenseList = SuspenseList; exports.isAsyncMode = isAsyncMode; exports.isConcurrentMode = isConcurrentMode; exports.isContextConsumer = isContextConsumer; exports.isContextProvider = isContextProvider; exports.isElement = isElement; exports.isForwardRef = isForwardRef; exports.isFragment = isFragment; exports.isLazy = isLazy; exports.isMemo = isMemo; exports.isPortal = isPortal; exports.isProfiler = isProfiler; exports.isStrictMode = isStrictMode; exports.isSuspense = isSuspense; exports.isSuspenseList = isSuspenseList; exports.isValidElementType = isValidElementType; exports.typeOf = typeOf; })(); } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-is/index.js": /*!***********************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-is/index.js ***! \***********************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { "use strict"; if (false) {} else { module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */ "./node_modules/@hello-pangea/dnd/node_modules/react-is/cjs/react-is.development.js"); } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Context.js": /*!******************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Context.js ***! \******************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ReactReduxContext: () => (/* binding */ ReactReduxContext), /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); const ContextKey = Symbol.for(`react-redux-context`); const gT = typeof globalThis !== "undefined" ? globalThis : /* fall back to a per-module scope (pre-8.1 behaviour) if `globalThis` is not available */ {}; function getContext() { var _gT$ContextKey; if (!react__WEBPACK_IMPORTED_MODULE_0__.createContext) return {}; const contextMap = (_gT$ContextKey = gT[ContextKey]) != null ? _gT$ContextKey : gT[ContextKey] = new Map(); let realContext = contextMap.get(react__WEBPACK_IMPORTED_MODULE_0__.createContext); if (!realContext) { realContext = react__WEBPACK_IMPORTED_MODULE_0__.createContext(null); if (true) { realContext.displayName = 'ReactRedux'; } contextMap.set(react__WEBPACK_IMPORTED_MODULE_0__.createContext, realContext); } return realContext; } const ReactReduxContext = /*#__PURE__*/getContext(); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ReactReduxContext); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Provider.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Provider.js ***! \*******************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _Context__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Context */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Context.js"); /* harmony import */ var _utils_Subscription__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/Subscription */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/Subscription.js"); /* harmony import */ var _utils_useIsomorphicLayoutEffect__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils/useIsomorphicLayoutEffect */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/useIsomorphicLayoutEffect.js"); function Provider({ store, context, children, serverState, stabilityCheck = 'once', noopCheck = 'once' }) { const contextValue = react__WEBPACK_IMPORTED_MODULE_0__.useMemo(() => { const subscription = (0,_utils_Subscription__WEBPACK_IMPORTED_MODULE_2__.createSubscription)(store); return { store, subscription, getServerState: serverState ? () => serverState : undefined, stabilityCheck, noopCheck }; }, [store, serverState, stabilityCheck, noopCheck]); const previousState = react__WEBPACK_IMPORTED_MODULE_0__.useMemo(() => store.getState(), [store]); (0,_utils_useIsomorphicLayoutEffect__WEBPACK_IMPORTED_MODULE_3__.useIsomorphicLayoutEffect)(() => { const { subscription } = contextValue; subscription.onStateChange = subscription.notifyNestedSubs; subscription.trySubscribe(); if (previousState !== store.getState()) { subscription.notifyNestedSubs(); } return () => { subscription.tryUnsubscribe(); subscription.onStateChange = undefined; }; }, [contextValue, previousState]); const Context = context || _Context__WEBPACK_IMPORTED_MODULE_1__.ReactReduxContext; // @ts-ignore 'AnyAction' is assignable to the constraint of type 'A', but 'A' could be instantiated with a different subtype return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(Context.Provider, { value: contextValue }, children); } /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Provider); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/connect.js": /*!******************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/connect.js ***! \******************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__), /* harmony export */ initializeConnect: () => (/* binding */ initializeConnect) /* harmony export */ }); /* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ "./node_modules/@babel/runtime/helpers/esm/extends.js"); /* harmony import */ var _babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutPropertiesLoose */ "./node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js"); /* harmony import */ var hoist_non_react_statics__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! hoist-non-react-statics */ "./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js"); /* harmony import */ var hoist_non_react_statics__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(hoist_non_react_statics__WEBPACK_IMPORTED_MODULE_2__); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_3__); /* harmony import */ var react_is__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! react-is */ "./node_modules/@hello-pangea/dnd/node_modules/react-is/index.js"); /* harmony import */ var _connect_selectorFactory__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../connect/selectorFactory */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/selectorFactory.js"); /* harmony import */ var _connect_mapDispatchToProps__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../connect/mapDispatchToProps */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/mapDispatchToProps.js"); /* harmony import */ var _connect_mapStateToProps__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../connect/mapStateToProps */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/mapStateToProps.js"); /* harmony import */ var _connect_mergeProps__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../connect/mergeProps */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/mergeProps.js"); /* harmony import */ var _utils_Subscription__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../utils/Subscription */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/Subscription.js"); /* harmony import */ var _utils_useIsomorphicLayoutEffect__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../utils/useIsomorphicLayoutEffect */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/useIsomorphicLayoutEffect.js"); /* harmony import */ var _utils_shallowEqual__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../utils/shallowEqual */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/shallowEqual.js"); /* harmony import */ var _utils_warning__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../utils/warning */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/warning.js"); /* harmony import */ var _Context__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./Context */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Context.js"); /* harmony import */ var _utils_useSyncExternalStore__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../utils/useSyncExternalStore */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/useSyncExternalStore.js"); const _excluded = ["reactReduxForwardedRef"]; /* eslint-disable valid-jsdoc, @typescript-eslint/no-unused-vars */ let useSyncExternalStore = _utils_useSyncExternalStore__WEBPACK_IMPORTED_MODULE_14__.notInitialized; const initializeConnect = fn => { useSyncExternalStore = fn; }; // Define some constant arrays just to avoid re-creating these const EMPTY_ARRAY = [null, 0]; const NO_SUBSCRIPTION_ARRAY = [null, null]; // Attempts to stringify whatever not-really-a-component value we were given // for logging in an error message const stringifyComponent = Comp => { try { return JSON.stringify(Comp); } catch (err) { return String(Comp); } }; // This is "just" a `useLayoutEffect`, but with two modifications: // - we need to fall back to `useEffect` in SSR to avoid annoying warnings // - we extract this to a separate function to avoid closing over values // and causing memory leaks function useIsomorphicLayoutEffectWithArgs(effectFunc, effectArgs, dependencies) { (0,_utils_useIsomorphicLayoutEffect__WEBPACK_IMPORTED_MODULE_10__.useIsomorphicLayoutEffect)(() => effectFunc(...effectArgs), dependencies); } // Effect callback, extracted: assign the latest props values to refs for later usage function captureWrapperProps(lastWrapperProps, lastChildProps, renderIsScheduled, wrapperProps, // actualChildProps: unknown, childPropsFromStoreUpdate, notifyNestedSubs) { // We want to capture the wrapper props and child props we used for later comparisons lastWrapperProps.current = wrapperProps; renderIsScheduled.current = false; // If the render was from a store update, clear out that reference and cascade the subscriber update if (childPropsFromStoreUpdate.current) { childPropsFromStoreUpdate.current = null; notifyNestedSubs(); } } // Effect callback, extracted: subscribe to the Redux store or nearest connected ancestor, // check for updates after dispatched actions, and trigger re-renders. function subscribeUpdates(shouldHandleStateChanges, store, subscription, childPropsSelector, lastWrapperProps, lastChildProps, renderIsScheduled, isMounted, childPropsFromStoreUpdate, notifyNestedSubs, // forceComponentUpdateDispatch: React.Dispatch, additionalSubscribeListener) { // If we're not subscribed to the store, nothing to do here if (!shouldHandleStateChanges) return () => {}; // Capture values for checking if and when this component unmounts let didUnsubscribe = false; let lastThrownError = null; // We'll run this callback every time a store subscription update propagates to this component const checkForUpdates = () => { if (didUnsubscribe || !isMounted.current) { // Don't run stale listeners. // Redux doesn't guarantee unsubscriptions happen until next dispatch. return; } // TODO We're currently calling getState ourselves here, rather than letting `uSES` do it const latestStoreState = store.getState(); let newChildProps, error; try { // Actually run the selector with the most recent store state and wrapper props // to determine what the child props should be newChildProps = childPropsSelector(latestStoreState, lastWrapperProps.current); } catch (e) { error = e; lastThrownError = e; } if (!error) { lastThrownError = null; } // If the child props haven't changed, nothing to do here - cascade the subscription update if (newChildProps === lastChildProps.current) { if (!renderIsScheduled.current) { notifyNestedSubs(); } } else { // Save references to the new child props. Note that we track the "child props from store update" // as a ref instead of a useState/useReducer because we need a way to determine if that value has // been processed. If this went into useState/useReducer, we couldn't clear out the value without // forcing another re-render, which we don't want. lastChildProps.current = newChildProps; childPropsFromStoreUpdate.current = newChildProps; renderIsScheduled.current = true; // TODO This is hacky and not how `uSES` is meant to be used // Trigger the React `useSyncExternalStore` subscriber additionalSubscribeListener(); } }; // Actually subscribe to the nearest connected ancestor (or store) subscription.onStateChange = checkForUpdates; subscription.trySubscribe(); // Pull data from the store after first render in case the store has // changed since we began. checkForUpdates(); const unsubscribeWrapper = () => { didUnsubscribe = true; subscription.tryUnsubscribe(); subscription.onStateChange = null; if (lastThrownError) { // It's possible that we caught an error due to a bad mapState function, but the // parent re-rendered without this component and we're about to unmount. // This shouldn't happen as long as we do top-down subscriptions correctly, but // if we ever do those wrong, this throw will surface the error in our tests. // In that case, throw the error from here so it doesn't get lost. throw lastThrownError; } }; return unsubscribeWrapper; } // Reducer initial state creation for our update reducer const initStateUpdates = () => EMPTY_ARRAY; function strictEqual(a, b) { return a === b; } /** * Infers the type of props that a connector will inject into a component. */ let hasWarnedAboutDeprecatedPureOption = false; /** * Connects a React component to a Redux store. * * - Without arguments, just wraps the component, without changing the behavior / props * * - If 2 params are passed (3rd param, mergeProps, is skipped), default behavior * is to override ownProps (as stated in the docs), so what remains is everything that's * not a state or dispatch prop * * - When 3rd param is passed, we don't know if ownProps propagate and whether they * should be valid component props, because it depends on mergeProps implementation. * As such, it is the user's responsibility to extend ownProps interface from state or * dispatch props or both when applicable * * @param mapStateToProps A function that extracts values from state * @param mapDispatchToProps Setup for dispatching actions * @param mergeProps Optional callback to merge state and dispatch props together * @param options Options for configuring the connection * */ function connect(mapStateToProps, mapDispatchToProps, mergeProps, { // The `pure` option has been removed, so TS doesn't like us destructuring this to check its existence. // @ts-ignore pure, areStatesEqual = strictEqual, areOwnPropsEqual = _utils_shallowEqual__WEBPACK_IMPORTED_MODULE_11__["default"], areStatePropsEqual = _utils_shallowEqual__WEBPACK_IMPORTED_MODULE_11__["default"], areMergedPropsEqual = _utils_shallowEqual__WEBPACK_IMPORTED_MODULE_11__["default"], // use React's forwardRef to expose a ref of the wrapped component forwardRef = false, // the context consumer to use context = _Context__WEBPACK_IMPORTED_MODULE_13__.ReactReduxContext } = {}) { if (true) { if (pure !== undefined && !hasWarnedAboutDeprecatedPureOption) { hasWarnedAboutDeprecatedPureOption = true; (0,_utils_warning__WEBPACK_IMPORTED_MODULE_12__["default"])('The `pure` option has been removed. `connect` is now always a "pure/memoized" component'); } } const Context = context; const initMapStateToProps = (0,_connect_mapStateToProps__WEBPACK_IMPORTED_MODULE_7__.mapStateToPropsFactory)(mapStateToProps); const initMapDispatchToProps = (0,_connect_mapDispatchToProps__WEBPACK_IMPORTED_MODULE_6__.mapDispatchToPropsFactory)(mapDispatchToProps); const initMergeProps = (0,_connect_mergeProps__WEBPACK_IMPORTED_MODULE_8__.mergePropsFactory)(mergeProps); const shouldHandleStateChanges = Boolean(mapStateToProps); const wrapWithConnect = WrappedComponent => { if ( true && !(0,react_is__WEBPACK_IMPORTED_MODULE_4__.isValidElementType)(WrappedComponent)) { throw new Error(`You must pass a component to the function returned by connect. Instead received ${stringifyComponent(WrappedComponent)}`); } const wrappedComponentName = WrappedComponent.displayName || WrappedComponent.name || 'Component'; const displayName = `Connect(${wrappedComponentName})`; const selectorFactoryOptions = { shouldHandleStateChanges, displayName, wrappedComponentName, WrappedComponent, // @ts-ignore initMapStateToProps, // @ts-ignore initMapDispatchToProps, initMergeProps, areStatesEqual, areStatePropsEqual, areOwnPropsEqual, areMergedPropsEqual }; function ConnectFunction(props) { const [propsContext, reactReduxForwardedRef, wrapperProps] = react__WEBPACK_IMPORTED_MODULE_3__.useMemo(() => { // Distinguish between actual "data" props that were passed to the wrapper component, // and values needed to control behavior (forwarded refs, alternate context instances). // To maintain the wrapperProps object reference, memoize this destructuring. const { reactReduxForwardedRef } = props, wrapperProps = (0,_babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_1__["default"])(props, _excluded); return [props.context, reactReduxForwardedRef, wrapperProps]; }, [props]); const ContextToUse = react__WEBPACK_IMPORTED_MODULE_3__.useMemo(() => { // Users may optionally pass in a custom context instance to use instead of our ReactReduxContext. // Memoize the check that determines which context instance we should use. return propsContext && propsContext.Consumer && // @ts-ignore (0,react_is__WEBPACK_IMPORTED_MODULE_4__.isContextConsumer)( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(propsContext.Consumer, null)) ? propsContext : Context; }, [propsContext, Context]); // Retrieve the store and ancestor subscription via context, if available const contextValue = react__WEBPACK_IMPORTED_MODULE_3__.useContext(ContextToUse); // The store _must_ exist as either a prop or in context. // We'll check to see if it _looks_ like a Redux store first. // This allows us to pass through a `store` prop that is just a plain value. const didStoreComeFromProps = Boolean(props.store) && Boolean(props.store.getState) && Boolean(props.store.dispatch); const didStoreComeFromContext = Boolean(contextValue) && Boolean(contextValue.store); if ( true && !didStoreComeFromProps && !didStoreComeFromContext) { throw new Error(`Could not find "store" in the context of ` + `"${displayName}". Either wrap the root component in a , ` + `or pass a custom React context provider to and the corresponding ` + `React context consumer to ${displayName} in connect options.`); } // Based on the previous check, one of these must be true const store = didStoreComeFromProps ? props.store : contextValue.store; const getServerState = didStoreComeFromContext ? contextValue.getServerState : store.getState; const childPropsSelector = react__WEBPACK_IMPORTED_MODULE_3__.useMemo(() => { // The child props selector needs the store reference as an input. // Re-create this selector whenever the store changes. return (0,_connect_selectorFactory__WEBPACK_IMPORTED_MODULE_5__["default"])(store.dispatch, selectorFactoryOptions); }, [store]); const [subscription, notifyNestedSubs] = react__WEBPACK_IMPORTED_MODULE_3__.useMemo(() => { if (!shouldHandleStateChanges) return NO_SUBSCRIPTION_ARRAY; // This Subscription's source should match where store came from: props vs. context. A component // connected to the store via props shouldn't use subscription from context, or vice versa. const subscription = (0,_utils_Subscription__WEBPACK_IMPORTED_MODULE_9__.createSubscription)(store, didStoreComeFromProps ? undefined : contextValue.subscription); // `notifyNestedSubs` is duplicated to handle the case where the component is unmounted in // the middle of the notification loop, where `subscription` will then be null. This can // probably be avoided if Subscription's listeners logic is changed to not call listeners // that have been unsubscribed in the middle of the notification loop. const notifyNestedSubs = subscription.notifyNestedSubs.bind(subscription); return [subscription, notifyNestedSubs]; }, [store, didStoreComeFromProps, contextValue]); // Determine what {store, subscription} value should be put into nested context, if necessary, // and memoize that value to avoid unnecessary context updates. const overriddenContextValue = react__WEBPACK_IMPORTED_MODULE_3__.useMemo(() => { if (didStoreComeFromProps) { // This component is directly subscribed to a store from props. // We don't want descendants reading from this store - pass down whatever // the existing context value is from the nearest connected ancestor. return contextValue; } // Otherwise, put this component's subscription instance into context, so that // connected descendants won't update until after this component is done return (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, contextValue, { subscription }); }, [didStoreComeFromProps, contextValue, subscription]); // Set up refs to coordinate values between the subscription effect and the render logic const lastChildProps = react__WEBPACK_IMPORTED_MODULE_3__.useRef(); const lastWrapperProps = react__WEBPACK_IMPORTED_MODULE_3__.useRef(wrapperProps); const childPropsFromStoreUpdate = react__WEBPACK_IMPORTED_MODULE_3__.useRef(); const renderIsScheduled = react__WEBPACK_IMPORTED_MODULE_3__.useRef(false); const isProcessingDispatch = react__WEBPACK_IMPORTED_MODULE_3__.useRef(false); const isMounted = react__WEBPACK_IMPORTED_MODULE_3__.useRef(false); const latestSubscriptionCallbackError = react__WEBPACK_IMPORTED_MODULE_3__.useRef(); (0,_utils_useIsomorphicLayoutEffect__WEBPACK_IMPORTED_MODULE_10__.useIsomorphicLayoutEffect)(() => { isMounted.current = true; return () => { isMounted.current = false; }; }, []); const actualChildPropsSelector = react__WEBPACK_IMPORTED_MODULE_3__.useMemo(() => { const selector = () => { // Tricky logic here: // - This render may have been triggered by a Redux store update that produced new child props // - However, we may have gotten new wrapper props after that // If we have new child props, and the same wrapper props, we know we should use the new child props as-is. // But, if we have new wrapper props, those might change the child props, so we have to recalculate things. // So, we'll use the child props from store update only if the wrapper props are the same as last time. if (childPropsFromStoreUpdate.current && wrapperProps === lastWrapperProps.current) { return childPropsFromStoreUpdate.current; } // TODO We're reading the store directly in render() here. Bad idea? // This will likely cause Bad Things (TM) to happen in Concurrent Mode. // Note that we do this because on renders _not_ caused by store updates, we need the latest store state // to determine what the child props should be. return childPropsSelector(store.getState(), wrapperProps); }; return selector; }, [store, wrapperProps]); // We need this to execute synchronously every time we re-render. However, React warns // about useLayoutEffect in SSR, so we try to detect environment and fall back to // just useEffect instead to avoid the warning, since neither will run anyway. const subscribeForReact = react__WEBPACK_IMPORTED_MODULE_3__.useMemo(() => { const subscribe = reactListener => { if (!subscription) { return () => {}; } return subscribeUpdates(shouldHandleStateChanges, store, subscription, // @ts-ignore childPropsSelector, lastWrapperProps, lastChildProps, renderIsScheduled, isMounted, childPropsFromStoreUpdate, notifyNestedSubs, reactListener); }; return subscribe; }, [subscription]); useIsomorphicLayoutEffectWithArgs(captureWrapperProps, [lastWrapperProps, lastChildProps, renderIsScheduled, wrapperProps, childPropsFromStoreUpdate, notifyNestedSubs]); let actualChildProps; try { actualChildProps = useSyncExternalStore( // TODO We're passing through a big wrapper that does a bunch of extra side effects besides subscribing subscribeForReact, // TODO This is incredibly hacky. We've already processed the store update and calculated new child props, // TODO and we're just passing that through so it triggers a re-render for us rather than relying on `uSES`. actualChildPropsSelector, getServerState ? () => childPropsSelector(getServerState(), wrapperProps) : actualChildPropsSelector); } catch (err) { if (latestSubscriptionCallbackError.current) { ; err.message += `\nThe error may be correlated with this previous error:\n${latestSubscriptionCallbackError.current.stack}\n\n`; } throw err; } (0,_utils_useIsomorphicLayoutEffect__WEBPACK_IMPORTED_MODULE_10__.useIsomorphicLayoutEffect)(() => { latestSubscriptionCallbackError.current = undefined; childPropsFromStoreUpdate.current = undefined; lastChildProps.current = actualChildProps; }); // Now that all that's done, we can finally try to actually render the child component. // We memoize the elements for the rendered child component as an optimization. const renderedWrappedComponent = react__WEBPACK_IMPORTED_MODULE_3__.useMemo(() => { return ( /*#__PURE__*/ // @ts-ignore react__WEBPACK_IMPORTED_MODULE_3__.createElement(WrappedComponent, (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, actualChildProps, { ref: reactReduxForwardedRef })) ); }, [reactReduxForwardedRef, WrappedComponent, actualChildProps]); // If React sees the exact same element reference as last time, it bails out of re-rendering // that child, same as if it was wrapped in React.memo() or returned false from shouldComponentUpdate. const renderedChild = react__WEBPACK_IMPORTED_MODULE_3__.useMemo(() => { if (shouldHandleStateChanges) { // If this component is subscribed to store updates, we need to pass its own // subscription instance down to our descendants. That means rendering the same // Context instance, and putting a different value into the context. return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(ContextToUse.Provider, { value: overriddenContextValue }, renderedWrappedComponent); } return renderedWrappedComponent; }, [ContextToUse, renderedWrappedComponent, overriddenContextValue]); return renderedChild; } const _Connect = react__WEBPACK_IMPORTED_MODULE_3__.memo(ConnectFunction); // Add a hacky cast to get the right output type const Connect = _Connect; Connect.WrappedComponent = WrappedComponent; Connect.displayName = ConnectFunction.displayName = displayName; if (forwardRef) { const _forwarded = react__WEBPACK_IMPORTED_MODULE_3__.forwardRef(function forwardConnectRef(props, ref) { // @ts-ignore return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(Connect, (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, props, { reactReduxForwardedRef: ref })); }); const forwarded = _forwarded; forwarded.displayName = displayName; forwarded.WrappedComponent = WrappedComponent; return hoist_non_react_statics__WEBPACK_IMPORTED_MODULE_2___default()(forwarded, WrappedComponent); } return hoist_non_react_statics__WEBPACK_IMPORTED_MODULE_2___default()(Connect, WrappedComponent); }; return wrapWithConnect; } /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (connect); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/invalidArgFactory.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/invalidArgFactory.js ***! \*************************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ createInvalidArgFactory: () => (/* binding */ createInvalidArgFactory) /* harmony export */ }); function createInvalidArgFactory(arg, name) { return (dispatch, options) => { throw new Error(`Invalid value of type ${typeof arg} for ${name} argument when connecting component ${options.wrappedComponentName}.`); }; } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/mapDispatchToProps.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/mapDispatchToProps.js ***! \**************************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ mapDispatchToPropsFactory: () => (/* binding */ mapDispatchToPropsFactory) /* harmony export */ }); /* harmony import */ var _utils_bindActionCreators__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/bindActionCreators */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/bindActionCreators.js"); /* harmony import */ var _wrapMapToProps__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./wrapMapToProps */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/wrapMapToProps.js"); /* harmony import */ var _invalidArgFactory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./invalidArgFactory */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/invalidArgFactory.js"); function mapDispatchToPropsFactory(mapDispatchToProps) { return mapDispatchToProps && typeof mapDispatchToProps === 'object' ? (0,_wrapMapToProps__WEBPACK_IMPORTED_MODULE_1__.wrapMapToPropsConstant)(dispatch => // @ts-ignore (0,_utils_bindActionCreators__WEBPACK_IMPORTED_MODULE_0__["default"])(mapDispatchToProps, dispatch)) : !mapDispatchToProps ? (0,_wrapMapToProps__WEBPACK_IMPORTED_MODULE_1__.wrapMapToPropsConstant)(dispatch => ({ dispatch })) : typeof mapDispatchToProps === 'function' ? // @ts-ignore (0,_wrapMapToProps__WEBPACK_IMPORTED_MODULE_1__.wrapMapToPropsFunc)(mapDispatchToProps, 'mapDispatchToProps') : (0,_invalidArgFactory__WEBPACK_IMPORTED_MODULE_2__.createInvalidArgFactory)(mapDispatchToProps, 'mapDispatchToProps'); } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/mapStateToProps.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/mapStateToProps.js ***! \***********************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ mapStateToPropsFactory: () => (/* binding */ mapStateToPropsFactory) /* harmony export */ }); /* harmony import */ var _wrapMapToProps__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./wrapMapToProps */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/wrapMapToProps.js"); /* harmony import */ var _invalidArgFactory__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./invalidArgFactory */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/invalidArgFactory.js"); function mapStateToPropsFactory(mapStateToProps) { return !mapStateToProps ? (0,_wrapMapToProps__WEBPACK_IMPORTED_MODULE_0__.wrapMapToPropsConstant)(() => ({})) : typeof mapStateToProps === 'function' ? // @ts-ignore (0,_wrapMapToProps__WEBPACK_IMPORTED_MODULE_0__.wrapMapToPropsFunc)(mapStateToProps, 'mapStateToProps') : (0,_invalidArgFactory__WEBPACK_IMPORTED_MODULE_1__.createInvalidArgFactory)(mapStateToProps, 'mapStateToProps'); } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/mergeProps.js": /*!******************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/mergeProps.js ***! \******************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ defaultMergeProps: () => (/* binding */ defaultMergeProps), /* harmony export */ mergePropsFactory: () => (/* binding */ mergePropsFactory), /* harmony export */ wrapMergePropsFunc: () => (/* binding */ wrapMergePropsFunc) /* harmony export */ }); /* harmony import */ var _babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ "./node_modules/@babel/runtime/helpers/esm/extends.js"); /* harmony import */ var _utils_verifyPlainObject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/verifyPlainObject */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/verifyPlainObject.js"); /* harmony import */ var _invalidArgFactory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./invalidArgFactory */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/invalidArgFactory.js"); function defaultMergeProps(stateProps, dispatchProps, ownProps) { // @ts-ignore return (0,_babel_runtime_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_0__["default"])({}, ownProps, stateProps, dispatchProps); } function wrapMergePropsFunc(mergeProps) { return function initMergePropsProxy(dispatch, { displayName, areMergedPropsEqual }) { let hasRunOnce = false; let mergedProps; return function mergePropsProxy(stateProps, dispatchProps, ownProps) { const nextMergedProps = mergeProps(stateProps, dispatchProps, ownProps); if (hasRunOnce) { if (!areMergedPropsEqual(nextMergedProps, mergedProps)) mergedProps = nextMergedProps; } else { hasRunOnce = true; mergedProps = nextMergedProps; if (true) (0,_utils_verifyPlainObject__WEBPACK_IMPORTED_MODULE_1__["default"])(mergedProps, displayName, 'mergeProps'); } return mergedProps; }; }; } function mergePropsFactory(mergeProps) { return !mergeProps ? () => defaultMergeProps : typeof mergeProps === 'function' ? wrapMergePropsFunc(mergeProps) : (0,_invalidArgFactory__WEBPACK_IMPORTED_MODULE_2__.createInvalidArgFactory)(mergeProps, 'mergeProps'); } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/selectorFactory.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/selectorFactory.js ***! \***********************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ finalPropsSelectorFactory), /* harmony export */ pureFinalPropsSelectorFactory: () => (/* binding */ pureFinalPropsSelectorFactory) /* harmony export */ }); /* harmony import */ var _babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutPropertiesLoose */ "./node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js"); /* harmony import */ var _verifySubselectors__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./verifySubselectors */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/verifySubselectors.js"); const _excluded = ["initMapStateToProps", "initMapDispatchToProps", "initMergeProps"]; function pureFinalPropsSelectorFactory(mapStateToProps, mapDispatchToProps, mergeProps, dispatch, { areStatesEqual, areOwnPropsEqual, areStatePropsEqual }) { let hasRunAtLeastOnce = false; let state; let ownProps; let stateProps; let dispatchProps; let mergedProps; function handleFirstCall(firstState, firstOwnProps) { state = firstState; ownProps = firstOwnProps; stateProps = mapStateToProps(state, ownProps); dispatchProps = mapDispatchToProps(dispatch, ownProps); mergedProps = mergeProps(stateProps, dispatchProps, ownProps); hasRunAtLeastOnce = true; return mergedProps; } function handleNewPropsAndNewState() { stateProps = mapStateToProps(state, ownProps); if (mapDispatchToProps.dependsOnOwnProps) dispatchProps = mapDispatchToProps(dispatch, ownProps); mergedProps = mergeProps(stateProps, dispatchProps, ownProps); return mergedProps; } function handleNewProps() { if (mapStateToProps.dependsOnOwnProps) stateProps = mapStateToProps(state, ownProps); if (mapDispatchToProps.dependsOnOwnProps) dispatchProps = mapDispatchToProps(dispatch, ownProps); mergedProps = mergeProps(stateProps, dispatchProps, ownProps); return mergedProps; } function handleNewState() { const nextStateProps = mapStateToProps(state, ownProps); const statePropsChanged = !areStatePropsEqual(nextStateProps, stateProps); stateProps = nextStateProps; if (statePropsChanged) mergedProps = mergeProps(stateProps, dispatchProps, ownProps); return mergedProps; } function handleSubsequentCalls(nextState, nextOwnProps) { const propsChanged = !areOwnPropsEqual(nextOwnProps, ownProps); const stateChanged = !areStatesEqual(nextState, state, nextOwnProps, ownProps); state = nextState; ownProps = nextOwnProps; if (propsChanged && stateChanged) return handleNewPropsAndNewState(); if (propsChanged) return handleNewProps(); if (stateChanged) return handleNewState(); return mergedProps; } return function pureFinalPropsSelector(nextState, nextOwnProps) { return hasRunAtLeastOnce ? handleSubsequentCalls(nextState, nextOwnProps) : handleFirstCall(nextState, nextOwnProps); }; } // TODO: Add more comments // The selector returned by selectorFactory will memoize its results, // allowing connect's shouldComponentUpdate to return false if final // props have not changed. function finalPropsSelectorFactory(dispatch, _ref) { let { initMapStateToProps, initMapDispatchToProps, initMergeProps } = _ref, options = (0,_babel_runtime_helpers_esm_objectWithoutPropertiesLoose__WEBPACK_IMPORTED_MODULE_0__["default"])(_ref, _excluded); const mapStateToProps = initMapStateToProps(dispatch, options); const mapDispatchToProps = initMapDispatchToProps(dispatch, options); const mergeProps = initMergeProps(dispatch, options); if (true) { (0,_verifySubselectors__WEBPACK_IMPORTED_MODULE_1__["default"])(mapStateToProps, mapDispatchToProps, mergeProps); } return pureFinalPropsSelectorFactory(mapStateToProps, mapDispatchToProps, mergeProps, dispatch, options); } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/verifySubselectors.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/verifySubselectors.js ***! \**************************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ verifySubselectors) /* harmony export */ }); /* harmony import */ var _utils_warning__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/warning */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/warning.js"); function verify(selector, methodName) { if (!selector) { throw new Error(`Unexpected value for ${methodName} in connect.`); } else if (methodName === 'mapStateToProps' || methodName === 'mapDispatchToProps') { if (!Object.prototype.hasOwnProperty.call(selector, 'dependsOnOwnProps')) { (0,_utils_warning__WEBPACK_IMPORTED_MODULE_0__["default"])(`The selector for ${methodName} of connect did not specify a value for dependsOnOwnProps.`); } } } function verifySubselectors(mapStateToProps, mapDispatchToProps, mergeProps) { verify(mapStateToProps, 'mapStateToProps'); verify(mapDispatchToProps, 'mapDispatchToProps'); verify(mergeProps, 'mergeProps'); } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/wrapMapToProps.js": /*!**********************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/connect/wrapMapToProps.js ***! \**********************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ getDependsOnOwnProps: () => (/* binding */ getDependsOnOwnProps), /* harmony export */ wrapMapToPropsConstant: () => (/* binding */ wrapMapToPropsConstant), /* harmony export */ wrapMapToPropsFunc: () => (/* binding */ wrapMapToPropsFunc) /* harmony export */ }); /* harmony import */ var _utils_verifyPlainObject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/verifyPlainObject */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/verifyPlainObject.js"); function wrapMapToPropsConstant( // * Note: // It seems that the dispatch argument // could be a dispatch function in some cases (ex: whenMapDispatchToPropsIsMissing) // and a state object in some others (ex: whenMapStateToPropsIsMissing) // eslint-disable-next-line no-unused-vars getConstant) { return function initConstantSelector(dispatch) { const constant = getConstant(dispatch); function constantSelector() { return constant; } constantSelector.dependsOnOwnProps = false; return constantSelector; }; } // dependsOnOwnProps is used by createMapToPropsProxy to determine whether to pass props as args // to the mapToProps function being wrapped. It is also used by makePurePropsSelector to determine // whether mapToProps needs to be invoked when props have changed. // // A length of one signals that mapToProps does not depend on props from the parent component. // A length of zero is assumed to mean mapToProps is getting args via arguments or ...args and // therefore not reporting its length accurately.. // TODO Can this get pulled out so that we can subscribe directly to the store if we don't need ownProps? function getDependsOnOwnProps(mapToProps) { return mapToProps.dependsOnOwnProps ? Boolean(mapToProps.dependsOnOwnProps) : mapToProps.length !== 1; } // Used by whenMapStateToPropsIsFunction and whenMapDispatchToPropsIsFunction, // this function wraps mapToProps in a proxy function which does several things: // // * Detects whether the mapToProps function being called depends on props, which // is used by selectorFactory to decide if it should reinvoke on props changes. // // * On first call, handles mapToProps if returns another function, and treats that // new function as the true mapToProps for subsequent calls. // // * On first call, verifies the first result is a plain object, in order to warn // the developer that their mapToProps function is not returning a valid result. // function wrapMapToPropsFunc(mapToProps, methodName) { return function initProxySelector(dispatch, { displayName }) { const proxy = function mapToPropsProxy(stateOrDispatch, ownProps) { return proxy.dependsOnOwnProps ? proxy.mapToProps(stateOrDispatch, ownProps) : proxy.mapToProps(stateOrDispatch, undefined); }; // allow detectFactoryAndVerify to get ownProps proxy.dependsOnOwnProps = true; proxy.mapToProps = function detectFactoryAndVerify(stateOrDispatch, ownProps) { proxy.mapToProps = mapToProps; proxy.dependsOnOwnProps = getDependsOnOwnProps(mapToProps); let props = proxy(stateOrDispatch, ownProps); if (typeof props === 'function') { proxy.mapToProps = props; proxy.dependsOnOwnProps = getDependsOnOwnProps(props); props = proxy(stateOrDispatch, ownProps); } if (true) (0,_utils_verifyPlainObject__WEBPACK_IMPORTED_MODULE_0__["default"])(props, displayName, methodName); return props; }; return proxy; }; } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/exports.js": /*!*******************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/exports.js ***! \*******************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ Provider: () => (/* reexport safe */ _components_Provider__WEBPACK_IMPORTED_MODULE_0__["default"]), /* harmony export */ ReactReduxContext: () => (/* reexport safe */ _components_Context__WEBPACK_IMPORTED_MODULE_2__.ReactReduxContext), /* harmony export */ connect: () => (/* reexport safe */ _components_connect__WEBPACK_IMPORTED_MODULE_1__["default"]), /* harmony export */ createDispatchHook: () => (/* reexport safe */ _hooks_useDispatch__WEBPACK_IMPORTED_MODULE_3__.createDispatchHook), /* harmony export */ createSelectorHook: () => (/* reexport safe */ _hooks_useSelector__WEBPACK_IMPORTED_MODULE_4__.createSelectorHook), /* harmony export */ createStoreHook: () => (/* reexport safe */ _hooks_useStore__WEBPACK_IMPORTED_MODULE_5__.createStoreHook), /* harmony export */ shallowEqual: () => (/* reexport safe */ _utils_shallowEqual__WEBPACK_IMPORTED_MODULE_6__["default"]), /* harmony export */ useDispatch: () => (/* reexport safe */ _hooks_useDispatch__WEBPACK_IMPORTED_MODULE_3__.useDispatch), /* harmony export */ useSelector: () => (/* reexport safe */ _hooks_useSelector__WEBPACK_IMPORTED_MODULE_4__.useSelector), /* harmony export */ useStore: () => (/* reexport safe */ _hooks_useStore__WEBPACK_IMPORTED_MODULE_5__.useStore) /* harmony export */ }); /* harmony import */ var _components_Provider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Provider */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Provider.js"); /* harmony import */ var _components_connect__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./components/connect */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/connect.js"); /* harmony import */ var _components_Context__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./components/Context */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Context.js"); /* harmony import */ var _hooks_useDispatch__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./hooks/useDispatch */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useDispatch.js"); /* harmony import */ var _hooks_useSelector__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./hooks/useSelector */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useSelector.js"); /* harmony import */ var _hooks_useStore__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./hooks/useStore */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useStore.js"); /* harmony import */ var _utils_shallowEqual__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./utils/shallowEqual */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/shallowEqual.js"); /* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./types */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/types.js"); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useDispatch.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useDispatch.js ***! \*****************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ createDispatchHook: () => (/* binding */ createDispatchHook), /* harmony export */ useDispatch: () => (/* binding */ useDispatch) /* harmony export */ }); /* harmony import */ var _components_Context__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../components/Context */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Context.js"); /* harmony import */ var _useStore__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./useStore */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useStore.js"); /** * Hook factory, which creates a `useDispatch` hook bound to a given context. * * @param {React.Context} [context=ReactReduxContext] Context passed to your ``. * @returns {Function} A `useDispatch` hook bound to the specified context. */ function createDispatchHook(context = _components_Context__WEBPACK_IMPORTED_MODULE_0__.ReactReduxContext) { const useStore = // @ts-ignore context === _components_Context__WEBPACK_IMPORTED_MODULE_0__.ReactReduxContext ? _useStore__WEBPACK_IMPORTED_MODULE_1__.useStore : (0,_useStore__WEBPACK_IMPORTED_MODULE_1__.createStoreHook)(context); return function useDispatch() { const store = useStore(); // @ts-ignore return store.dispatch; }; } /** * A hook to access the redux `dispatch` function. * * @returns {any|function} redux store's `dispatch` function * * @example * * import React, { useCallback } from 'react' * import { useDispatch } from 'react-redux' * * export const CounterComponent = ({ value }) => { * const dispatch = useDispatch() * const increaseCounter = useCallback(() => dispatch({ type: 'increase-counter' }), []) * return ( *
* {value} * *
* ) * } */ const useDispatch = /*#__PURE__*/createDispatchHook(); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useReduxContext.js": /*!*********************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useReduxContext.js ***! \*********************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ createReduxContextHook: () => (/* binding */ createReduxContextHook), /* harmony export */ useReduxContext: () => (/* binding */ useReduxContext) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _components_Context__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../components/Context */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Context.js"); /** * Hook factory, which creates a `useReduxContext` hook bound to a given context. This is a low-level * hook that you should usually not need to call directly. * * @param {React.Context} [context=ReactReduxContext] Context passed to your ``. * @returns {Function} A `useReduxContext` hook bound to the specified context. */ function createReduxContextHook(context = _components_Context__WEBPACK_IMPORTED_MODULE_1__.ReactReduxContext) { return function useReduxContext() { const contextValue = (0,react__WEBPACK_IMPORTED_MODULE_0__.useContext)(context); if ( true && !contextValue) { throw new Error('could not find react-redux context value; please ensure the component is wrapped in a '); } return contextValue; }; } /** * A hook to access the value of the `ReactReduxContext`. This is a low-level * hook that you should usually not need to call directly. * * @returns {any} the value of the `ReactReduxContext` * * @example * * import React from 'react' * import { useReduxContext } from 'react-redux' * * export const CounterComponent = () => { * const { store } = useReduxContext() * return
{store.getState()}
* } */ const useReduxContext = /*#__PURE__*/createReduxContextHook(); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useSelector.js": /*!*****************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useSelector.js ***! \*****************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ createSelectorHook: () => (/* binding */ createSelectorHook), /* harmony export */ initializeUseSelector: () => (/* binding */ initializeUseSelector), /* harmony export */ useSelector: () => (/* binding */ useSelector) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _useReduxContext__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./useReduxContext */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useReduxContext.js"); /* harmony import */ var _components_Context__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../components/Context */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Context.js"); /* harmony import */ var _utils_useSyncExternalStore__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils/useSyncExternalStore */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/useSyncExternalStore.js"); let useSyncExternalStoreWithSelector = _utils_useSyncExternalStore__WEBPACK_IMPORTED_MODULE_3__.notInitialized; const initializeUseSelector = fn => { useSyncExternalStoreWithSelector = fn; }; const refEquality = (a, b) => a === b; /** * Hook factory, which creates a `useSelector` hook bound to a given context. * * @param {React.Context} [context=ReactReduxContext] Context passed to your ``. * @returns {Function} A `useSelector` hook bound to the specified context. */ function createSelectorHook(context = _components_Context__WEBPACK_IMPORTED_MODULE_2__.ReactReduxContext) { const useReduxContext = context === _components_Context__WEBPACK_IMPORTED_MODULE_2__.ReactReduxContext ? _useReduxContext__WEBPACK_IMPORTED_MODULE_1__.useReduxContext : (0,_useReduxContext__WEBPACK_IMPORTED_MODULE_1__.createReduxContextHook)(context); return function useSelector(selector, equalityFnOrOptions = {}) { const { equalityFn = refEquality, stabilityCheck = undefined, noopCheck = undefined } = typeof equalityFnOrOptions === 'function' ? { equalityFn: equalityFnOrOptions } : equalityFnOrOptions; if (true) { if (!selector) { throw new Error(`You must pass a selector to useSelector`); } if (typeof selector !== 'function') { throw new Error(`You must pass a function as a selector to useSelector`); } if (typeof equalityFn !== 'function') { throw new Error(`You must pass a function as an equality function to useSelector`); } } const { store, subscription, getServerState, stabilityCheck: globalStabilityCheck, noopCheck: globalNoopCheck } = useReduxContext(); const firstRun = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(true); const wrappedSelector = (0,react__WEBPACK_IMPORTED_MODULE_0__.useCallback)({ [selector.name](state) { const selected = selector(state); if (true) { const finalStabilityCheck = typeof stabilityCheck === 'undefined' ? globalStabilityCheck : stabilityCheck; if (finalStabilityCheck === 'always' || finalStabilityCheck === 'once' && firstRun.current) { const toCompare = selector(state); if (!equalityFn(selected, toCompare)) { let stack = undefined; try { throw new Error(); } catch (e) { ; ({ stack } = e); } console.warn('Selector ' + (selector.name || 'unknown') + ' returned a different result when called with the same parameters. This can lead to unnecessary rerenders.' + '\nSelectors that return a new reference (such as an object or an array) should be memoized: https://redux.js.org/usage/deriving-data-selectors#optimizing-selectors-with-memoization', { state, selected, selected2: toCompare, stack }); } } const finalNoopCheck = typeof noopCheck === 'undefined' ? globalNoopCheck : noopCheck; if (finalNoopCheck === 'always' || finalNoopCheck === 'once' && firstRun.current) { // @ts-ignore if (selected === state) { let stack = undefined; try { throw new Error(); } catch (e) { ; ({ stack } = e); } console.warn('Selector ' + (selector.name || 'unknown') + ' returned the root state when called. This can lead to unnecessary rerenders.' + '\nSelectors that return the entire state are almost certainly a mistake, as they will cause a rerender whenever *anything* in state changes.', { stack }); } } if (firstRun.current) firstRun.current = false; } return selected; } }[selector.name], [selector, globalStabilityCheck, stabilityCheck]); const selectedState = useSyncExternalStoreWithSelector(subscription.addNestedSub, store.getState, getServerState || store.getState, wrappedSelector, equalityFn); (0,react__WEBPACK_IMPORTED_MODULE_0__.useDebugValue)(selectedState); return selectedState; }; } /** * A hook to access the redux store's state. This hook takes a selector function * as an argument. The selector is called with the store state. * * This hook takes an optional equality comparison function as the second parameter * that allows you to customize the way the selected state is compared to determine * whether the component needs to be re-rendered. * * @param {Function} selector the selector function * @param {Function=} equalityFn the function that will be used to determine equality * * @returns {any} the selected state * * @example * * import React from 'react' * import { useSelector } from 'react-redux' * * export const CounterComponent = () => { * const counter = useSelector(state => state.counter) * return
{counter}
* } */ const useSelector = /*#__PURE__*/createSelectorHook(); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useStore.js": /*!**************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useStore.js ***! \**************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ createStoreHook: () => (/* binding */ createStoreHook), /* harmony export */ useStore: () => (/* binding */ useStore) /* harmony export */ }); /* harmony import */ var _components_Context__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../components/Context */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/Context.js"); /* harmony import */ var _useReduxContext__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./useReduxContext */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useReduxContext.js"); /** * Hook factory, which creates a `useStore` hook bound to a given context. * * @param {React.Context} [context=ReactReduxContext] Context passed to your ``. * @returns {Function} A `useStore` hook bound to the specified context. */ function createStoreHook(context = _components_Context__WEBPACK_IMPORTED_MODULE_0__.ReactReduxContext) { const useReduxContext = // @ts-ignore context === _components_Context__WEBPACK_IMPORTED_MODULE_0__.ReactReduxContext ? _useReduxContext__WEBPACK_IMPORTED_MODULE_1__.useReduxContext : // @ts-ignore (0,_useReduxContext__WEBPACK_IMPORTED_MODULE_1__.createReduxContextHook)(context); return function useStore() { const { store } = useReduxContext(); // @ts-ignore return store; }; } /** * A hook to access the redux store. * * @returns {any} the redux store * * @example * * import React from 'react' * import { useStore } from 'react-redux' * * export const ExampleComponent = () => { * const store = useStore() * return
{store.getState()}
* } */ const useStore = /*#__PURE__*/createStoreHook(); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/index.js": /*!*****************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/index.js ***! \*****************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ Provider: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.Provider), /* harmony export */ ReactReduxContext: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.ReactReduxContext), /* harmony export */ batch: () => (/* reexport safe */ _utils_reactBatchedUpdates__WEBPACK_IMPORTED_MODULE_2__.unstable_batchedUpdates), /* harmony export */ connect: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.connect), /* harmony export */ createDispatchHook: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.createDispatchHook), /* harmony export */ createSelectorHook: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.createSelectorHook), /* harmony export */ createStoreHook: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.createStoreHook), /* harmony export */ shallowEqual: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.shallowEqual), /* harmony export */ useDispatch: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.useDispatch), /* harmony export */ useSelector: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.useSelector), /* harmony export */ useStore: () => (/* reexport safe */ _exports__WEBPACK_IMPORTED_MODULE_6__.useStore) /* harmony export */ }); /* harmony import */ var use_sync_external_store_shim__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! use-sync-external-store/shim */ "./node_modules/use-sync-external-store/shim/index.js"); /* harmony import */ var use_sync_external_store_shim_with_selector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! use-sync-external-store/shim/with-selector */ "./node_modules/use-sync-external-store/shim/with-selector.js"); /* harmony import */ var _utils_reactBatchedUpdates__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/reactBatchedUpdates */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/reactBatchedUpdates.js"); /* harmony import */ var _utils_batch__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/batch */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/batch.js"); /* harmony import */ var _hooks_useSelector__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./hooks/useSelector */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/hooks/useSelector.js"); /* harmony import */ var _components_connect__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./components/connect */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/components/connect.js"); /* harmony import */ var _exports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./exports */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/exports.js"); // The primary entry point assumes we're working with standard ReactDOM/RN, but // older versions that do not include `useSyncExternalStore` (React 16.9 - 17.x). // Because of that, the useSyncExternalStore compat shim is needed. (0,_hooks_useSelector__WEBPACK_IMPORTED_MODULE_4__.initializeUseSelector)(use_sync_external_store_shim_with_selector__WEBPACK_IMPORTED_MODULE_1__.useSyncExternalStoreWithSelector); (0,_components_connect__WEBPACK_IMPORTED_MODULE_5__.initializeConnect)(use_sync_external_store_shim__WEBPACK_IMPORTED_MODULE_0__.useSyncExternalStore); // Enable batched updates in our subscriptions for use // with standard React renderers (ReactDOM, React Native) (0,_utils_batch__WEBPACK_IMPORTED_MODULE_3__.setBatch)(_utils_reactBatchedUpdates__WEBPACK_IMPORTED_MODULE_2__.unstable_batchedUpdates); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/types.js": /*!*****************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/types.js ***! \*****************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/Subscription.js": /*!******************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/Subscription.js ***! \******************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ createSubscription: () => (/* binding */ createSubscription) /* harmony export */ }); /* harmony import */ var _batch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./batch */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/batch.js"); // encapsulates the subscription logic for connecting a component to the redux store, as // well as nesting subscriptions of descendant components, so that we can ensure the // ancestor components re-render before descendants function createListenerCollection() { const batch = (0,_batch__WEBPACK_IMPORTED_MODULE_0__.getBatch)(); let first = null; let last = null; return { clear() { first = null; last = null; }, notify() { batch(() => { let listener = first; while (listener) { listener.callback(); listener = listener.next; } }); }, get() { let listeners = []; let listener = first; while (listener) { listeners.push(listener); listener = listener.next; } return listeners; }, subscribe(callback) { let isSubscribed = true; let listener = last = { callback, next: null, prev: last }; if (listener.prev) { listener.prev.next = listener; } else { first = listener; } return function unsubscribe() { if (!isSubscribed || first === null) return; isSubscribed = false; if (listener.next) { listener.next.prev = listener.prev; } else { last = listener.prev; } if (listener.prev) { listener.prev.next = listener.next; } else { first = listener.next; } }; } }; } const nullListeners = { notify() {}, get: () => [] }; function createSubscription(store, parentSub) { let unsubscribe; let listeners = nullListeners; // Reasons to keep the subscription active let subscriptionsAmount = 0; // Is this specific subscription subscribed (or only nested ones?) let selfSubscribed = false; function addNestedSub(listener) { trySubscribe(); const cleanupListener = listeners.subscribe(listener); // cleanup nested sub let removed = false; return () => { if (!removed) { removed = true; cleanupListener(); tryUnsubscribe(); } }; } function notifyNestedSubs() { listeners.notify(); } function handleChangeWrapper() { if (subscription.onStateChange) { subscription.onStateChange(); } } function isSubscribed() { return selfSubscribed; } function trySubscribe() { subscriptionsAmount++; if (!unsubscribe) { unsubscribe = parentSub ? parentSub.addNestedSub(handleChangeWrapper) : store.subscribe(handleChangeWrapper); listeners = createListenerCollection(); } } function tryUnsubscribe() { subscriptionsAmount--; if (unsubscribe && subscriptionsAmount === 0) { unsubscribe(); unsubscribe = undefined; listeners.clear(); listeners = nullListeners; } } function trySubscribeSelf() { if (!selfSubscribed) { selfSubscribed = true; trySubscribe(); } } function tryUnsubscribeSelf() { if (selfSubscribed) { selfSubscribed = false; tryUnsubscribe(); } } const subscription = { addNestedSub, notifyNestedSubs, handleChangeWrapper, isSubscribed, trySubscribe: trySubscribeSelf, tryUnsubscribe: tryUnsubscribeSelf, getListeners: () => listeners }; return subscription; } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/batch.js": /*!***********************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/batch.js ***! \***********************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ getBatch: () => (/* binding */ getBatch), /* harmony export */ setBatch: () => (/* binding */ setBatch) /* harmony export */ }); // Default to a dummy "batch" implementation that just runs the callback function defaultNoopBatch(callback) { callback(); } let batch = defaultNoopBatch; // Allow injecting another batching function later const setBatch = newBatch => batch = newBatch; // Supply a getter just to skip dealing with ESM bindings const getBatch = () => batch; /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/bindActionCreators.js": /*!************************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/bindActionCreators.js ***! \************************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ bindActionCreators) /* harmony export */ }); function bindActionCreators(actionCreators, dispatch) { const boundActionCreators = {}; for (const key in actionCreators) { const actionCreator = actionCreators[key]; if (typeof actionCreator === 'function') { boundActionCreators[key] = (...args) => dispatch(actionCreator(...args)); } } return boundActionCreators; } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/isPlainObject.js": /*!*******************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/isPlainObject.js ***! \*******************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ isPlainObject) /* harmony export */ }); /** * @param {any} obj The object to inspect. * @returns {boolean} True if the argument appears to be a plain object. */ function isPlainObject(obj) { if (typeof obj !== 'object' || obj === null) return false; let proto = Object.getPrototypeOf(obj); if (proto === null) return true; let baseProto = proto; while (Object.getPrototypeOf(baseProto) !== null) { baseProto = Object.getPrototypeOf(baseProto); } return proto === baseProto; } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/reactBatchedUpdates.js": /*!*************************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/reactBatchedUpdates.js ***! \*************************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ unstable_batchedUpdates: () => (/* reexport safe */ react_dom__WEBPACK_IMPORTED_MODULE_0__.unstable_batchedUpdates) /* harmony export */ }); /* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-dom */ "./node_modules/react-dom/index.js"); /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/shallowEqual.js": /*!******************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/shallowEqual.js ***! \******************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ shallowEqual) /* harmony export */ }); function is(x, y) { if (x === y) { return x !== 0 || y !== 0 || 1 / x === 1 / y; } else { return x !== x && y !== y; } } function shallowEqual(objA, objB) { if (is(objA, objB)) return true; if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) { return false; } const keysA = Object.keys(objA); const keysB = Object.keys(objB); if (keysA.length !== keysB.length) return false; for (let i = 0; i < keysA.length; i++) { if (!Object.prototype.hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) { return false; } } return true; } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/useIsomorphicLayoutEffect.js": /*!*******************************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/useIsomorphicLayoutEffect.js ***! \*******************************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ canUseDOM: () => (/* binding */ canUseDOM), /* harmony export */ useIsomorphicLayoutEffect: () => (/* binding */ useIsomorphicLayoutEffect) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); // React currently throws a warning when using useLayoutEffect on the server. // To get around it, we can conditionally useEffect on the server (no-op) and // useLayoutEffect in the browser. We need useLayoutEffect to ensure the store // subscription callback always has the selector from the latest render commit // available, otherwise a store update may happen between render and the effect, // which may cause missed updates; we also must ensure the store subscription // is created synchronously, otherwise a store update may occur before the // subscription is created and an inconsistent state may be observed // Matches logic in React's `shared/ExecutionEnvironment` file const canUseDOM = !!(typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.document.createElement !== 'undefined'); const useIsomorphicLayoutEffect = canUseDOM ? react__WEBPACK_IMPORTED_MODULE_0__.useLayoutEffect : react__WEBPACK_IMPORTED_MODULE_0__.useEffect; /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/useSyncExternalStore.js": /*!**************************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/useSyncExternalStore.js ***! \**************************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ notInitialized: () => (/* binding */ notInitialized) /* harmony export */ }); const notInitialized = () => { throw new Error('uSES not initialized!'); }; /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/verifyPlainObject.js": /*!***********************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/verifyPlainObject.js ***! \***********************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ verifyPlainObject) /* harmony export */ }); /* harmony import */ var _isPlainObject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isPlainObject */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/isPlainObject.js"); /* harmony import */ var _warning__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./warning */ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/warning.js"); function verifyPlainObject(value, displayName, methodName) { if (!(0,_isPlainObject__WEBPACK_IMPORTED_MODULE_0__["default"])(value)) { (0,_warning__WEBPACK_IMPORTED_MODULE_1__["default"])(`${methodName}() in ${displayName} must return a plain object. Instead received ${value}.`); } } /***/ }), /***/ "./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/warning.js": /*!*************************************************************************************!*\ !*** ./node_modules/@hello-pangea/dnd/node_modules/react-redux/es/utils/warning.js ***! \*************************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ warning) /* harmony export */ }); /** * Prints a warning in the console if it exists. * * @param {String} message The warning message. * @returns {void} */ function warning(message) { /* eslint-disable no-console */ if (typeof console !== 'undefined' && typeof console.error === 'function') { console.error(message); } /* eslint-enable no-console */ try { // This error was thrown as a convenience so that if you enable // "break on all exceptions" in your console, // it would pause the execution at this line. throw new Error(message); /* eslint-disable no-empty */ } catch (e) {} /* eslint-enable no-empty */ } /***/ }), /***/ "./node_modules/@popperjs/core/lib/createPopper.js": /*!*********************************************************!*\ !*** ./node_modules/@popperjs/core/lib/createPopper.js ***! \*********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ createPopper: () => (/* binding */ createPopper), /* harmony export */ detectOverflow: () => (/* reexport safe */ _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_8__["default"]), /* harmony export */ popperGenerator: () => (/* binding */ popperGenerator) /* harmony export */ }); /* harmony import */ var _dom_utils_getCompositeRect_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./dom-utils/getCompositeRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js"); /* harmony import */ var _dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./dom-utils/getLayoutRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js"); /* harmony import */ var _dom_utils_listScrollParents_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./dom-utils/listScrollParents.js */ "./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js"); /* harmony import */ var _dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./dom-utils/getOffsetParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js"); /* harmony import */ var _utils_orderModifiers_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/orderModifiers.js */ "./node_modules/@popperjs/core/lib/utils/orderModifiers.js"); /* harmony import */ var _utils_debounce_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./utils/debounce.js */ "./node_modules/@popperjs/core/lib/utils/debounce.js"); /* harmony import */ var _utils_mergeByName_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/mergeByName.js */ "./node_modules/@popperjs/core/lib/utils/mergeByName.js"); /* harmony import */ var _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./utils/detectOverflow.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js"); /* harmony import */ var _dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dom-utils/instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); var DEFAULT_OPTIONS = { placement: 'bottom', modifiers: [], strategy: 'absolute' }; function areValidElements() { for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return !args.some(function (element) { return !(element && typeof element.getBoundingClientRect === 'function'); }); } function popperGenerator(generatorOptions) { if (generatorOptions === void 0) { generatorOptions = {}; } var _generatorOptions = generatorOptions, _generatorOptions$def = _generatorOptions.defaultModifiers, defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def, _generatorOptions$def2 = _generatorOptions.defaultOptions, defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2; return function createPopper(reference, popper, options) { if (options === void 0) { options = defaultOptions; } var state = { placement: 'bottom', orderedModifiers: [], options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions), modifiersData: {}, elements: { reference: reference, popper: popper }, attributes: {}, styles: {} }; var effectCleanupFns = []; var isDestroyed = false; var instance = { state: state, setOptions: function setOptions(setOptionsAction) { var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction; cleanupModifierEffects(); state.options = Object.assign({}, defaultOptions, state.options, options); state.scrollParents = { reference: (0,_dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isElement)(reference) ? (0,_dom_utils_listScrollParents_js__WEBPACK_IMPORTED_MODULE_1__["default"])(reference) : reference.contextElement ? (0,_dom_utils_listScrollParents_js__WEBPACK_IMPORTED_MODULE_1__["default"])(reference.contextElement) : [], popper: (0,_dom_utils_listScrollParents_js__WEBPACK_IMPORTED_MODULE_1__["default"])(popper) }; // Orders the modifiers based on their dependencies and `phase` // properties var orderedModifiers = (0,_utils_orderModifiers_js__WEBPACK_IMPORTED_MODULE_2__["default"])((0,_utils_mergeByName_js__WEBPACK_IMPORTED_MODULE_3__["default"])([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers state.orderedModifiers = orderedModifiers.filter(function (m) { return m.enabled; }); runModifierEffects(); return instance.update(); }, // Sync update – it will always be executed, even if not necessary. This // is useful for low frequency updates where sync behavior simplifies the // logic. // For high frequency updates (e.g. `resize` and `scroll` events), always // prefer the async Popper#update method forceUpdate: function forceUpdate() { if (isDestroyed) { return; } var _state$elements = state.elements, reference = _state$elements.reference, popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements // anymore if (!areValidElements(reference, popper)) { return; } // Store the reference and popper rects to be read by modifiers state.rects = { reference: (0,_dom_utils_getCompositeRect_js__WEBPACK_IMPORTED_MODULE_4__["default"])(reference, (0,_dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_5__["default"])(popper), state.options.strategy === 'fixed'), popper: (0,_dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_6__["default"])(popper) }; // Modifiers have the ability to reset the current update cycle. The // most common use case for this is the `flip` modifier changing the // placement, which then needs to re-run all the modifiers, because the // logic was previously ran for the previous placement and is therefore // stale/incorrect state.reset = false; state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier // is filled with the initial data specified by the modifier. This means // it doesn't persist and is fresh on each update. // To ensure persistent data, use `${name}#persistent` state.orderedModifiers.forEach(function (modifier) { return state.modifiersData[modifier.name] = Object.assign({}, modifier.data); }); for (var index = 0; index < state.orderedModifiers.length; index++) { if (state.reset === true) { state.reset = false; index = -1; continue; } var _state$orderedModifie = state.orderedModifiers[index], fn = _state$orderedModifie.fn, _state$orderedModifie2 = _state$orderedModifie.options, _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2, name = _state$orderedModifie.name; if (typeof fn === 'function') { state = fn({ state: state, options: _options, name: name, instance: instance }) || state; } } }, // Async and optimistically optimized update – it will not be executed if // not necessary (debounced to run at most once-per-tick) update: (0,_utils_debounce_js__WEBPACK_IMPORTED_MODULE_7__["default"])(function () { return new Promise(function (resolve) { instance.forceUpdate(); resolve(state); }); }), destroy: function destroy() { cleanupModifierEffects(); isDestroyed = true; } }; if (!areValidElements(reference, popper)) { return instance; } instance.setOptions(options).then(function (state) { if (!isDestroyed && options.onFirstUpdate) { options.onFirstUpdate(state); } }); // Modifiers have the ability to execute arbitrary code before the first // update cycle runs. They will be executed in the same order as the update // cycle. This is useful when a modifier adds some persistent data that // other modifiers need to use, but the modifier is run after the dependent // one. function runModifierEffects() { state.orderedModifiers.forEach(function (_ref) { var name = _ref.name, _ref$options = _ref.options, options = _ref$options === void 0 ? {} : _ref$options, effect = _ref.effect; if (typeof effect === 'function') { var cleanupFn = effect({ state: state, name: name, instance: instance, options: options }); var noopFn = function noopFn() {}; effectCleanupFns.push(cleanupFn || noopFn); } }); } function cleanupModifierEffects() { effectCleanupFns.forEach(function (fn) { return fn(); }); effectCleanupFns = []; } return instance; }; } var createPopper = /*#__PURE__*/popperGenerator(); // eslint-disable-next-line import/no-unused-modules /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/contains.js": /*!***************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/contains.js ***! \***************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ contains) /* harmony export */ }); /* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); function contains(parent, child) { var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method if (parent.contains(child)) { return true; } // then fallback to custom implementation with Shadow DOM support else if (rootNode && (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isShadowRoot)(rootNode)) { var next = child; do { if (next && parent.isSameNode(next)) { return true; } // $FlowFixMe[prop-missing]: need a better way to handle this... next = next.parentNode || next.host; } while (next); } // Give up, the result is false return false; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js": /*!****************************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js ***! \****************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getBoundingClientRect) /* harmony export */ }); /* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); /* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js"); /* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); /* harmony import */ var _isLayoutViewport_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isLayoutViewport.js */ "./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js"); function getBoundingClientRect(element, includeScale, isFixedStrategy) { if (includeScale === void 0) { includeScale = false; } if (isFixedStrategy === void 0) { isFixedStrategy = false; } var clientRect = element.getBoundingClientRect(); var scaleX = 1; var scaleY = 1; if (includeScale && (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(element)) { scaleX = element.offsetWidth > 0 ? (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_1__.round)(clientRect.width) / element.offsetWidth || 1 : 1; scaleY = element.offsetHeight > 0 ? (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_1__.round)(clientRect.height) / element.offsetHeight || 1 : 1; } var _ref = (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isElement)(element) ? (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_2__["default"])(element) : window, visualViewport = _ref.visualViewport; var addVisualOffsets = !(0,_isLayoutViewport_js__WEBPACK_IMPORTED_MODULE_3__["default"])() && isFixedStrategy; var x = (clientRect.left + (addVisualOffsets && visualViewport ? visualViewport.offsetLeft : 0)) / scaleX; var y = (clientRect.top + (addVisualOffsets && visualViewport ? visualViewport.offsetTop : 0)) / scaleY; var width = clientRect.width / scaleX; var height = clientRect.height / scaleY; return { width: width, height: height, top: y, right: x + width, bottom: y + height, left: x, x: x, y: y }; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js": /*!**********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getClippingRect) /* harmony export */ }); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); /* harmony import */ var _getViewportRect_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getViewportRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js"); /* harmony import */ var _getDocumentRect_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./getDocumentRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js"); /* harmony import */ var _listScrollParents_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./listScrollParents.js */ "./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js"); /* harmony import */ var _getOffsetParent_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./getOffsetParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js"); /* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js"); /* harmony import */ var _getComputedStyle_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./getComputedStyle.js */ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js"); /* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); /* harmony import */ var _getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js"); /* harmony import */ var _getParentNode_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./getParentNode.js */ "./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js"); /* harmony import */ var _contains_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./contains.js */ "./node_modules/@popperjs/core/lib/dom-utils/contains.js"); /* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js"); /* harmony import */ var _utils_rectToClientRect_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/rectToClientRect.js */ "./node_modules/@popperjs/core/lib/utils/rectToClientRect.js"); /* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js"); function getInnerBoundingClientRect(element, strategy) { var rect = (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element, false, strategy === 'fixed'); rect.top = rect.top + element.clientTop; rect.left = rect.left + element.clientLeft; rect.bottom = rect.top + element.clientHeight; rect.right = rect.left + element.clientWidth; rect.width = element.clientWidth; rect.height = element.clientHeight; rect.x = rect.left; rect.y = rect.top; return rect; } function getClientRectFromMixedType(element, clippingParent, strategy) { return clippingParent === _enums_js__WEBPACK_IMPORTED_MODULE_1__.viewport ? (0,_utils_rectToClientRect_js__WEBPACK_IMPORTED_MODULE_2__["default"])((0,_getViewportRect_js__WEBPACK_IMPORTED_MODULE_3__["default"])(element, strategy)) : (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isElement)(clippingParent) ? getInnerBoundingClientRect(clippingParent, strategy) : (0,_utils_rectToClientRect_js__WEBPACK_IMPORTED_MODULE_2__["default"])((0,_getDocumentRect_js__WEBPACK_IMPORTED_MODULE_5__["default"])((0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_6__["default"])(element))); } // A "clipping parent" is an overflowable container with the characteristic of // clipping (or hiding) overflowing elements with a position different from // `initial` function getClippingParents(element) { var clippingParents = (0,_listScrollParents_js__WEBPACK_IMPORTED_MODULE_7__["default"])((0,_getParentNode_js__WEBPACK_IMPORTED_MODULE_8__["default"])(element)); var canEscapeClipping = ['absolute', 'fixed'].indexOf((0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_9__["default"])(element).position) >= 0; var clipperElement = canEscapeClipping && (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isHTMLElement)(element) ? (0,_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_10__["default"])(element) : element; if (!(0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isElement)(clipperElement)) { return []; } // $FlowFixMe[incompatible-return]: https://github.com/facebook/flow/issues/1414 return clippingParents.filter(function (clippingParent) { return (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isElement)(clippingParent) && (0,_contains_js__WEBPACK_IMPORTED_MODULE_11__["default"])(clippingParent, clipperElement) && (0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_12__["default"])(clippingParent) !== 'body'; }); } // Gets the maximum area that the element is visible in due to any number of // clipping parents function getClippingRect(element, boundary, rootBoundary, strategy) { var mainClippingParents = boundary === 'clippingParents' ? getClippingParents(element) : [].concat(boundary); var clippingParents = [].concat(mainClippingParents, [rootBoundary]); var firstClippingParent = clippingParents[0]; var clippingRect = clippingParents.reduce(function (accRect, clippingParent) { var rect = getClientRectFromMixedType(element, clippingParent, strategy); accRect.top = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_13__.max)(rect.top, accRect.top); accRect.right = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_13__.min)(rect.right, accRect.right); accRect.bottom = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_13__.min)(rect.bottom, accRect.bottom); accRect.left = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_13__.max)(rect.left, accRect.left); return accRect; }, getClientRectFromMixedType(element, firstClippingParent, strategy)); clippingRect.width = clippingRect.right - clippingRect.left; clippingRect.height = clippingRect.bottom - clippingRect.top; clippingRect.x = clippingRect.left; clippingRect.y = clippingRect.top; return clippingRect; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js": /*!***********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js ***! \***********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getCompositeRect) /* harmony export */ }); /* harmony import */ var _getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js"); /* harmony import */ var _getNodeScroll_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./getNodeScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js"); /* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js"); /* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); /* harmony import */ var _getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./getWindowScrollBarX.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js"); /* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js"); /* harmony import */ var _isScrollParent_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isScrollParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js"); /* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js"); function isElementScaled(element) { var rect = element.getBoundingClientRect(); var scaleX = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_0__.round)(rect.width) / element.offsetWidth || 1; var scaleY = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_0__.round)(rect.height) / element.offsetHeight || 1; return scaleX !== 1 || scaleY !== 1; } // Returns the composite rect of an element relative to its offsetParent. // Composite means it takes into account transforms as well as layout. function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) { if (isFixed === void 0) { isFixed = false; } var isOffsetParentAnElement = (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(offsetParent); var offsetParentIsScaled = (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(offsetParent) && isElementScaled(offsetParent); var documentElement = (0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(offsetParent); var rect = (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_3__["default"])(elementOrVirtualElement, offsetParentIsScaled, isFixed); var scroll = { scrollLeft: 0, scrollTop: 0 }; var offsets = { x: 0, y: 0 }; if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) { if ((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_4__["default"])(offsetParent) !== 'body' || // https://github.com/popperjs/popper-core/issues/1078 (0,_isScrollParent_js__WEBPACK_IMPORTED_MODULE_5__["default"])(documentElement)) { scroll = (0,_getNodeScroll_js__WEBPACK_IMPORTED_MODULE_6__["default"])(offsetParent); } if ((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(offsetParent)) { offsets = (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_3__["default"])(offsetParent, true); offsets.x += offsetParent.clientLeft; offsets.y += offsetParent.clientTop; } else if (documentElement) { offsets.x = (0,_getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_7__["default"])(documentElement); } } return { x: rect.left + scroll.scrollLeft - offsets.x, y: rect.top + scroll.scrollTop - offsets.y, width: rect.width, height: rect.height }; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js": /*!***********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js ***! \***********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getComputedStyle) /* harmony export */ }); /* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); function getComputedStyle(element) { return (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element).getComputedStyle(element); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js": /*!*************************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js ***! \*************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getDocumentElement) /* harmony export */ }); /* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); function getDocumentElement(element) { // $FlowFixMe[incompatible-return]: assume body is always available return (((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isElement)(element) ? element.ownerDocument : // $FlowFixMe[prop-missing] element.document) || window.document).documentElement; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js": /*!**********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getDocumentRect) /* harmony export */ }); /* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js"); /* harmony import */ var _getComputedStyle_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getComputedStyle.js */ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js"); /* harmony import */ var _getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getWindowScrollBarX.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js"); /* harmony import */ var _getWindowScroll_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getWindowScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js"); /* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js"); // Gets the entire size of the scrollable document area, even extending outside // of the `` and `` rect bounds if horizontally scrollable function getDocumentRect(element) { var _element$ownerDocumen; var html = (0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element); var winScroll = (0,_getWindowScroll_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element); var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body; var width = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_2__.max)(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0); var height = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_2__.max)(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0); var x = -winScroll.scrollLeft + (0,_getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_3__["default"])(element); var y = -winScroll.scrollTop; if ((0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_4__["default"])(body || html).direction === 'rtl') { x += (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_2__.max)(html.clientWidth, body ? body.clientWidth : 0) - width; } return { width: width, height: height, x: x, y: y }; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js": /*!***************************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js ***! \***************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getHTMLElementScroll) /* harmony export */ }); function getHTMLElementScroll(element) { return { scrollLeft: element.scrollLeft, scrollTop: element.scrollTop }; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js": /*!********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js ***! \********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getLayoutRect) /* harmony export */ }); /* harmony import */ var _getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js"); // Returns the layout rect of an element relative to its offsetParent. Layout // means it doesn't take into account transforms. function getLayoutRect(element) { var clientRect = (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element); // Use the clientRect sizes if it's not been transformed. // Fixes https://github.com/popperjs/popper-core/issues/1223 var width = element.offsetWidth; var height = element.offsetHeight; if (Math.abs(clientRect.width - width) <= 1) { width = clientRect.width; } if (Math.abs(clientRect.height - height) <= 1) { height = clientRect.height; } return { x: element.offsetLeft, y: element.offsetTop, width: width, height: height }; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js": /*!******************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js ***! \******************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getNodeName) /* harmony export */ }); function getNodeName(element) { return element ? (element.nodeName || '').toLowerCase() : null; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js": /*!********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js ***! \********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getNodeScroll) /* harmony export */ }); /* harmony import */ var _getWindowScroll_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getWindowScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js"); /* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); /* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); /* harmony import */ var _getHTMLElementScroll_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getHTMLElementScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js"); function getNodeScroll(node) { if (node === (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node) || !(0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(node)) { return (0,_getWindowScroll_js__WEBPACK_IMPORTED_MODULE_2__["default"])(node); } else { return (0,_getHTMLElementScroll_js__WEBPACK_IMPORTED_MODULE_3__["default"])(node); } } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js": /*!**********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getOffsetParent) /* harmony export */ }); /* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); /* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js"); /* harmony import */ var _getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getComputedStyle.js */ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js"); /* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); /* harmony import */ var _isTableElement_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./isTableElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js"); /* harmony import */ var _getParentNode_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getParentNode.js */ "./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js"); /* harmony import */ var _utils_userAgent_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/userAgent.js */ "./node_modules/@popperjs/core/lib/utils/userAgent.js"); function getTrueOffsetParent(element) { if (!(0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(element) || // https://github.com/popperjs/popper-core/issues/837 (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element).position === 'fixed') { return null; } return element.offsetParent; } // `.offsetParent` reports `null` for fixed elements, while absolute elements // return the containing block function getContainingBlock(element) { var isFirefox = /firefox/i.test((0,_utils_userAgent_js__WEBPACK_IMPORTED_MODULE_2__["default"])()); var isIE = /Trident/i.test((0,_utils_userAgent_js__WEBPACK_IMPORTED_MODULE_2__["default"])()); if (isIE && (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(element)) { // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport var elementCss = (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element); if (elementCss.position === 'fixed') { return null; } } var currentNode = (0,_getParentNode_js__WEBPACK_IMPORTED_MODULE_3__["default"])(element); if ((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isShadowRoot)(currentNode)) { currentNode = currentNode.host; } while ((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(currentNode) && ['html', 'body'].indexOf((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_4__["default"])(currentNode)) < 0) { var css = (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(currentNode); // This is non-exhaustive but covers the most common CSS properties that // create a containing block. // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') { return currentNode; } else { currentNode = currentNode.parentNode; } } return null; } // Gets the closest ancestor positioned element. Handles some edge cases, // such as table ancestors and cross browser bugs. function getOffsetParent(element) { var window = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_5__["default"])(element); var offsetParent = getTrueOffsetParent(element); while (offsetParent && (0,_isTableElement_js__WEBPACK_IMPORTED_MODULE_6__["default"])(offsetParent) && (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(offsetParent).position === 'static') { offsetParent = getTrueOffsetParent(offsetParent); } if (offsetParent && ((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_4__["default"])(offsetParent) === 'html' || (0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_4__["default"])(offsetParent) === 'body' && (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(offsetParent).position === 'static')) { return window; } return offsetParent || getContainingBlock(element) || window; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js": /*!********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js ***! \********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getParentNode) /* harmony export */ }); /* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js"); /* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js"); /* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); function getParentNode(element) { if ((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element) === 'html') { return element; } return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle // $FlowFixMe[incompatible-return] // $FlowFixMe[prop-missing] element.assignedSlot || // step into the shadow DOM of the parent of a slotted node element.parentNode || ( // DOM Element detected (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isShadowRoot)(element) ? element.host : null) || // ShadowRoot detected // $FlowFixMe[incompatible-call]: HTMLElement is a Node (0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(element) // fallback ); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js": /*!**********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getScrollParent) /* harmony export */ }); /* harmony import */ var _getParentNode_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getParentNode.js */ "./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js"); /* harmony import */ var _isScrollParent_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isScrollParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js"); /* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js"); /* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); function getScrollParent(node) { if (['html', 'body', '#document'].indexOf((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node)) >= 0) { // $FlowFixMe[incompatible-return]: assume body is always available return node.ownerDocument.body; } if ((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(node) && (0,_isScrollParent_js__WEBPACK_IMPORTED_MODULE_2__["default"])(node)) { return node; } return getScrollParent((0,_getParentNode_js__WEBPACK_IMPORTED_MODULE_3__["default"])(node)); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js": /*!**********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getViewportRect) /* harmony export */ }); /* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); /* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js"); /* harmony import */ var _getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getWindowScrollBarX.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js"); /* harmony import */ var _isLayoutViewport_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isLayoutViewport.js */ "./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js"); function getViewportRect(element, strategy) { var win = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element); var html = (0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element); var visualViewport = win.visualViewport; var width = html.clientWidth; var height = html.clientHeight; var x = 0; var y = 0; if (visualViewport) { width = visualViewport.width; height = visualViewport.height; var layoutViewport = (0,_isLayoutViewport_js__WEBPACK_IMPORTED_MODULE_2__["default"])(); if (layoutViewport || !layoutViewport && strategy === 'fixed') { x = visualViewport.offsetLeft; y = visualViewport.offsetTop; } } return { width: width, height: height, x: x + (0,_getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_3__["default"])(element), y: y }; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js": /*!****************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getWindow.js ***! \****************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getWindow) /* harmony export */ }); function getWindow(node) { if (node == null) { return window; } if (node.toString() !== '[object Window]') { var ownerDocument = node.ownerDocument; return ownerDocument ? ownerDocument.defaultView || window : window; } return node; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js": /*!**********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getWindowScroll) /* harmony export */ }); /* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); function getWindowScroll(node) { var win = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node); var scrollLeft = win.pageXOffset; var scrollTop = win.pageYOffset; return { scrollLeft: scrollLeft, scrollTop: scrollTop }; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js": /*!**************************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js ***! \**************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getWindowScrollBarX) /* harmony export */ }); /* harmony import */ var _getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js"); /* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js"); /* harmony import */ var _getWindowScroll_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getWindowScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js"); function getWindowScrollBarX(element) { // If has a CSS width greater than the viewport, then this will be // incorrect for RTL. // Popper 1 is broken in this case and never had a bug report so let's assume // it's not an issue. I don't think anyone ever specifies width on // anyway. // Browsers where the left scrollbar doesn't cause an issue report `0` for // this (e.g. Edge 2019, IE11, Safari) return (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__["default"])((0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element)).left + (0,_getWindowScroll_js__WEBPACK_IMPORTED_MODULE_2__["default"])(element).scrollLeft; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js": /*!*****************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js ***! \*****************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ isElement: () => (/* binding */ isElement), /* harmony export */ isHTMLElement: () => (/* binding */ isHTMLElement), /* harmony export */ isShadowRoot: () => (/* binding */ isShadowRoot) /* harmony export */ }); /* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); function isElement(node) { var OwnElement = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node).Element; return node instanceof OwnElement || node instanceof Element; } function isHTMLElement(node) { var OwnElement = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node).HTMLElement; return node instanceof OwnElement || node instanceof HTMLElement; } function isShadowRoot(node) { // IE 11 has no ShadowRoot if (typeof ShadowRoot === 'undefined') { return false; } var OwnElement = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node).ShadowRoot; return node instanceof OwnElement || node instanceof ShadowRoot; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js": /*!***********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js ***! \***********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ isLayoutViewport) /* harmony export */ }); /* harmony import */ var _utils_userAgent_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/userAgent.js */ "./node_modules/@popperjs/core/lib/utils/userAgent.js"); function isLayoutViewport() { return !/^((?!chrome|android).)*safari/i.test((0,_utils_userAgent_js__WEBPACK_IMPORTED_MODULE_0__["default"])()); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js": /*!*********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ isScrollParent) /* harmony export */ }); /* harmony import */ var _getComputedStyle_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getComputedStyle.js */ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js"); function isScrollParent(element) { // Firefox wants us to check `-x` and `-y` variations as well var _getComputedStyle = (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element), overflow = _getComputedStyle.overflow, overflowX = _getComputedStyle.overflowX, overflowY = _getComputedStyle.overflowY; return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js": /*!*********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ isTableElement) /* harmony export */ }); /* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js"); function isTableElement(element) { return ['table', 'td', 'th'].indexOf((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element)) >= 0; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js": /*!************************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js ***! \************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ listScrollParents) /* harmony export */ }); /* harmony import */ var _getScrollParent_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getScrollParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js"); /* harmony import */ var _getParentNode_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getParentNode.js */ "./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js"); /* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); /* harmony import */ var _isScrollParent_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isScrollParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js"); /* given a DOM element, return the list of all scroll parents, up the list of ancesors until we get to the top window object. This list is what we attach scroll listeners to, because if any of these parent elements scroll, we'll need to re-calculate the reference element's position. */ function listScrollParents(element, list) { var _element$ownerDocumen; if (list === void 0) { list = []; } var scrollParent = (0,_getScrollParent_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element); var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body); var win = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_1__["default"])(scrollParent); var target = isBody ? [win].concat(win.visualViewport || [], (0,_isScrollParent_js__WEBPACK_IMPORTED_MODULE_2__["default"])(scrollParent) ? scrollParent : []) : scrollParent; var updatedList = list.concat(target); return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here updatedList.concat(listScrollParents((0,_getParentNode_js__WEBPACK_IMPORTED_MODULE_3__["default"])(target))); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/enums.js": /*!**************************************************!*\ !*** ./node_modules/@popperjs/core/lib/enums.js ***! \**************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ afterMain: () => (/* binding */ afterMain), /* harmony export */ afterRead: () => (/* binding */ afterRead), /* harmony export */ afterWrite: () => (/* binding */ afterWrite), /* harmony export */ auto: () => (/* binding */ auto), /* harmony export */ basePlacements: () => (/* binding */ basePlacements), /* harmony export */ beforeMain: () => (/* binding */ beforeMain), /* harmony export */ beforeRead: () => (/* binding */ beforeRead), /* harmony export */ beforeWrite: () => (/* binding */ beforeWrite), /* harmony export */ bottom: () => (/* binding */ bottom), /* harmony export */ clippingParents: () => (/* binding */ clippingParents), /* harmony export */ end: () => (/* binding */ end), /* harmony export */ left: () => (/* binding */ left), /* harmony export */ main: () => (/* binding */ main), /* harmony export */ modifierPhases: () => (/* binding */ modifierPhases), /* harmony export */ placements: () => (/* binding */ placements), /* harmony export */ popper: () => (/* binding */ popper), /* harmony export */ read: () => (/* binding */ read), /* harmony export */ reference: () => (/* binding */ reference), /* harmony export */ right: () => (/* binding */ right), /* harmony export */ start: () => (/* binding */ start), /* harmony export */ top: () => (/* binding */ top), /* harmony export */ variationPlacements: () => (/* binding */ variationPlacements), /* harmony export */ viewport: () => (/* binding */ viewport), /* harmony export */ write: () => (/* binding */ write) /* harmony export */ }); var top = 'top'; var bottom = 'bottom'; var right = 'right'; var left = 'left'; var auto = 'auto'; var basePlacements = [top, bottom, right, left]; var start = 'start'; var end = 'end'; var clippingParents = 'clippingParents'; var viewport = 'viewport'; var popper = 'popper'; var reference = 'reference'; var variationPlacements = /*#__PURE__*/basePlacements.reduce(function (acc, placement) { return acc.concat([placement + "-" + start, placement + "-" + end]); }, []); var placements = /*#__PURE__*/[].concat(basePlacements, [auto]).reduce(function (acc, placement) { return acc.concat([placement, placement + "-" + start, placement + "-" + end]); }, []); // modifiers that need to read the DOM var beforeRead = 'beforeRead'; var read = 'read'; var afterRead = 'afterRead'; // pure-logic modifiers var beforeMain = 'beforeMain'; var main = 'main'; var afterMain = 'afterMain'; // modifier with the purpose to write to the DOM (or write into a framework state) var beforeWrite = 'beforeWrite'; var write = 'write'; var afterWrite = 'afterWrite'; var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite]; /***/ }), /***/ "./node_modules/@popperjs/core/lib/modifiers/arrow.js": /*!************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/modifiers/arrow.js ***! \************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js"); /* harmony import */ var _dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../dom-utils/getLayoutRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js"); /* harmony import */ var _dom_utils_contains_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../dom-utils/contains.js */ "./node_modules/@popperjs/core/lib/dom-utils/contains.js"); /* harmony import */ var _dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../dom-utils/getOffsetParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js"); /* harmony import */ var _utils_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils/getMainAxisFromPlacement.js */ "./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js"); /* harmony import */ var _utils_within_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utils/within.js */ "./node_modules/@popperjs/core/lib/utils/within.js"); /* harmony import */ var _utils_mergePaddingObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/mergePaddingObject.js */ "./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js"); /* harmony import */ var _utils_expandToHashMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/expandToHashMap.js */ "./node_modules/@popperjs/core/lib/utils/expandToHashMap.js"); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); // eslint-disable-next-line import/no-unused-modules var toPaddingObject = function toPaddingObject(padding, state) { padding = typeof padding === 'function' ? padding(Object.assign({}, state.rects, { placement: state.placement })) : padding; return (0,_utils_mergePaddingObject_js__WEBPACK_IMPORTED_MODULE_0__["default"])(typeof padding !== 'number' ? padding : (0,_utils_expandToHashMap_js__WEBPACK_IMPORTED_MODULE_1__["default"])(padding, _enums_js__WEBPACK_IMPORTED_MODULE_2__.basePlacements)); }; function arrow(_ref) { var _state$modifiersData$; var state = _ref.state, name = _ref.name, options = _ref.options; var arrowElement = state.elements.arrow; var popperOffsets = state.modifiersData.popperOffsets; var basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(state.placement); var axis = (0,_utils_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_4__["default"])(basePlacement); var isVertical = [_enums_js__WEBPACK_IMPORTED_MODULE_2__.left, _enums_js__WEBPACK_IMPORTED_MODULE_2__.right].indexOf(basePlacement) >= 0; var len = isVertical ? 'height' : 'width'; if (!arrowElement || !popperOffsets) { return; } var paddingObject = toPaddingObject(options.padding, state); var arrowRect = (0,_dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_5__["default"])(arrowElement); var minProp = axis === 'y' ? _enums_js__WEBPACK_IMPORTED_MODULE_2__.top : _enums_js__WEBPACK_IMPORTED_MODULE_2__.left; var maxProp = axis === 'y' ? _enums_js__WEBPACK_IMPORTED_MODULE_2__.bottom : _enums_js__WEBPACK_IMPORTED_MODULE_2__.right; var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets[axis] - state.rects.popper[len]; var startDiff = popperOffsets[axis] - state.rects.reference[axis]; var arrowOffsetParent = (0,_dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_6__["default"])(arrowElement); var clientSize = arrowOffsetParent ? axis === 'y' ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0; var centerToReference = endDiff / 2 - startDiff / 2; // Make sure the arrow doesn't overflow the popper if the center point is // outside of the popper bounds var min = paddingObject[minProp]; var max = clientSize - arrowRect[len] - paddingObject[maxProp]; var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference; var offset = (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_7__.within)(min, center, max); // Prevents breaking syntax highlighting... var axisProp = axis; state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset, _state$modifiersData$.centerOffset = offset - center, _state$modifiersData$); } function effect(_ref2) { var state = _ref2.state, options = _ref2.options; var _options$element = options.element, arrowElement = _options$element === void 0 ? '[data-popper-arrow]' : _options$element; if (arrowElement == null) { return; } // CSS selector if (typeof arrowElement === 'string') { arrowElement = state.elements.popper.querySelector(arrowElement); if (!arrowElement) { return; } } if (!(0,_dom_utils_contains_js__WEBPACK_IMPORTED_MODULE_8__["default"])(state.elements.popper, arrowElement)) { return; } state.elements.arrow = arrowElement; } // eslint-disable-next-line import/no-unused-modules /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'arrow', enabled: true, phase: 'main', fn: arrow, effect: effect, requires: ['popperOffsets'], requiresIfExists: ['preventOverflow'] }); /***/ }), /***/ "./node_modules/@popperjs/core/lib/modifiers/computeStyles.js": /*!********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/modifiers/computeStyles.js ***! \********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__), /* harmony export */ mapToStyles: () => (/* binding */ mapToStyles) /* harmony export */ }); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); /* harmony import */ var _dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../dom-utils/getOffsetParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js"); /* harmony import */ var _dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../dom-utils/getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); /* harmony import */ var _dom_utils_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../dom-utils/getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js"); /* harmony import */ var _dom_utils_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../dom-utils/getComputedStyle.js */ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js"); /* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js"); /* harmony import */ var _utils_getVariation_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utils/getVariation.js */ "./node_modules/@popperjs/core/lib/utils/getVariation.js"); /* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js"); // eslint-disable-next-line import/no-unused-modules var unsetSides = { top: 'auto', right: 'auto', bottom: 'auto', left: 'auto' }; // Round the offsets to the nearest suitable subpixel based on the DPR. // Zooming can change the DPR, but it seems to report a value that will // cleanly divide the values into the appropriate subpixels. function roundOffsetsByDPR(_ref, win) { var x = _ref.x, y = _ref.y; var dpr = win.devicePixelRatio || 1; return { x: (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_0__.round)(x * dpr) / dpr || 0, y: (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_0__.round)(y * dpr) / dpr || 0 }; } function mapToStyles(_ref2) { var _Object$assign2; var popper = _ref2.popper, popperRect = _ref2.popperRect, placement = _ref2.placement, variation = _ref2.variation, offsets = _ref2.offsets, position = _ref2.position, gpuAcceleration = _ref2.gpuAcceleration, adaptive = _ref2.adaptive, roundOffsets = _ref2.roundOffsets, isFixed = _ref2.isFixed; var _offsets$x = offsets.x, x = _offsets$x === void 0 ? 0 : _offsets$x, _offsets$y = offsets.y, y = _offsets$y === void 0 ? 0 : _offsets$y; var _ref3 = typeof roundOffsets === 'function' ? roundOffsets({ x: x, y: y }) : { x: x, y: y }; x = _ref3.x; y = _ref3.y; var hasX = offsets.hasOwnProperty('x'); var hasY = offsets.hasOwnProperty('y'); var sideX = _enums_js__WEBPACK_IMPORTED_MODULE_1__.left; var sideY = _enums_js__WEBPACK_IMPORTED_MODULE_1__.top; var win = window; if (adaptive) { var offsetParent = (0,_dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_2__["default"])(popper); var heightProp = 'clientHeight'; var widthProp = 'clientWidth'; if (offsetParent === (0,_dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_3__["default"])(popper)) { offsetParent = (0,_dom_utils_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_4__["default"])(popper); if ((0,_dom_utils_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_5__["default"])(offsetParent).position !== 'static' && position === 'absolute') { heightProp = 'scrollHeight'; widthProp = 'scrollWidth'; } } // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it offsetParent = offsetParent; if (placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.top || (placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.left || placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.right) && variation === _enums_js__WEBPACK_IMPORTED_MODULE_1__.end) { sideY = _enums_js__WEBPACK_IMPORTED_MODULE_1__.bottom; var offsetY = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.height : // $FlowFixMe[prop-missing] offsetParent[heightProp]; y -= offsetY - popperRect.height; y *= gpuAcceleration ? 1 : -1; } if (placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.left || (placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.top || placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.bottom) && variation === _enums_js__WEBPACK_IMPORTED_MODULE_1__.end) { sideX = _enums_js__WEBPACK_IMPORTED_MODULE_1__.right; var offsetX = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.width : // $FlowFixMe[prop-missing] offsetParent[widthProp]; x -= offsetX - popperRect.width; x *= gpuAcceleration ? 1 : -1; } } var commonStyles = Object.assign({ position: position }, adaptive && unsetSides); var _ref4 = roundOffsets === true ? roundOffsetsByDPR({ x: x, y: y }, (0,_dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_3__["default"])(popper)) : { x: x, y: y }; x = _ref4.x; y = _ref4.y; if (gpuAcceleration) { var _Object$assign; return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? '0' : '', _Object$assign[sideX] = hasX ? '0' : '', _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? "translate(" + x + "px, " + y + "px)" : "translate3d(" + x + "px, " + y + "px, 0)", _Object$assign)); } return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + "px" : '', _Object$assign2[sideX] = hasX ? x + "px" : '', _Object$assign2.transform = '', _Object$assign2)); } function computeStyles(_ref5) { var state = _ref5.state, options = _ref5.options; var _options$gpuAccelerat = options.gpuAcceleration, gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat, _options$adaptive = options.adaptive, adaptive = _options$adaptive === void 0 ? true : _options$adaptive, _options$roundOffsets = options.roundOffsets, roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets; var commonStyles = { placement: (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_6__["default"])(state.placement), variation: (0,_utils_getVariation_js__WEBPACK_IMPORTED_MODULE_7__["default"])(state.placement), popper: state.elements.popper, popperRect: state.rects.popper, gpuAcceleration: gpuAcceleration, isFixed: state.options.strategy === 'fixed' }; if (state.modifiersData.popperOffsets != null) { state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, { offsets: state.modifiersData.popperOffsets, position: state.options.strategy, adaptive: adaptive, roundOffsets: roundOffsets }))); } if (state.modifiersData.arrow != null) { state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, { offsets: state.modifiersData.arrow, position: 'absolute', adaptive: false, roundOffsets: roundOffsets }))); } state.attributes.popper = Object.assign({}, state.attributes.popper, { 'data-popper-placement': state.placement }); } // eslint-disable-next-line import/no-unused-modules /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'computeStyles', enabled: true, phase: 'beforeWrite', fn: computeStyles, data: {} }); /***/ }), /***/ "./node_modules/@popperjs/core/lib/modifiers/eventListeners.js": /*!*********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/modifiers/eventListeners.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../dom-utils/getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js"); // eslint-disable-next-line import/no-unused-modules var passive = { passive: true }; function effect(_ref) { var state = _ref.state, instance = _ref.instance, options = _ref.options; var _options$scroll = options.scroll, scroll = _options$scroll === void 0 ? true : _options$scroll, _options$resize = options.resize, resize = _options$resize === void 0 ? true : _options$resize; var window = (0,_dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(state.elements.popper); var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper); if (scroll) { scrollParents.forEach(function (scrollParent) { scrollParent.addEventListener('scroll', instance.update, passive); }); } if (resize) { window.addEventListener('resize', instance.update, passive); } return function () { if (scroll) { scrollParents.forEach(function (scrollParent) { scrollParent.removeEventListener('scroll', instance.update, passive); }); } if (resize) { window.removeEventListener('resize', instance.update, passive); } }; } // eslint-disable-next-line import/no-unused-modules /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'eventListeners', enabled: true, phase: 'write', fn: function fn() {}, effect: effect, data: {} }); /***/ }), /***/ "./node_modules/@popperjs/core/lib/modifiers/flip.js": /*!***********************************************************!*\ !*** ./node_modules/@popperjs/core/lib/modifiers/flip.js ***! \***********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/getOppositePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js"); /* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js"); /* harmony import */ var _utils_getOppositeVariationPlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils/getOppositeVariationPlacement.js */ "./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js"); /* harmony import */ var _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../utils/detectOverflow.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js"); /* harmony import */ var _utils_computeAutoPlacement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils/computeAutoPlacement.js */ "./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js"); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); /* harmony import */ var _utils_getVariation_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utils/getVariation.js */ "./node_modules/@popperjs/core/lib/utils/getVariation.js"); // eslint-disable-next-line import/no-unused-modules function getExpandedFallbackPlacements(placement) { if ((0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(placement) === _enums_js__WEBPACK_IMPORTED_MODULE_1__.auto) { return []; } var oppositePlacement = (0,_utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(placement); return [(0,_utils_getOppositeVariationPlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(placement), oppositePlacement, (0,_utils_getOppositeVariationPlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(oppositePlacement)]; } function flip(_ref) { var state = _ref.state, options = _ref.options, name = _ref.name; if (state.modifiersData[name]._skip) { return; } var _options$mainAxis = options.mainAxis, checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, _options$altAxis = options.altAxis, checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis, specifiedFallbackPlacements = options.fallbackPlacements, padding = options.padding, boundary = options.boundary, rootBoundary = options.rootBoundary, altBoundary = options.altBoundary, _options$flipVariatio = options.flipVariations, flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio, allowedAutoPlacements = options.allowedAutoPlacements; var preferredPlacement = state.options.placement; var basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(preferredPlacement); var isBasePlacement = basePlacement === preferredPlacement; var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [(0,_utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement)); var placements = [preferredPlacement].concat(fallbackPlacements).reduce(function (acc, placement) { return acc.concat((0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(placement) === _enums_js__WEBPACK_IMPORTED_MODULE_1__.auto ? (0,_utils_computeAutoPlacement_js__WEBPACK_IMPORTED_MODULE_4__["default"])(state, { placement: placement, boundary: boundary, rootBoundary: rootBoundary, padding: padding, flipVariations: flipVariations, allowedAutoPlacements: allowedAutoPlacements }) : placement); }, []); var referenceRect = state.rects.reference; var popperRect = state.rects.popper; var checksMap = new Map(); var makeFallbackChecks = true; var firstFittingPlacement = placements[0]; for (var i = 0; i < placements.length; i++) { var placement = placements[i]; var _basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(placement); var isStartVariation = (0,_utils_getVariation_js__WEBPACK_IMPORTED_MODULE_5__["default"])(placement) === _enums_js__WEBPACK_IMPORTED_MODULE_1__.start; var isVertical = [_enums_js__WEBPACK_IMPORTED_MODULE_1__.top, _enums_js__WEBPACK_IMPORTED_MODULE_1__.bottom].indexOf(_basePlacement) >= 0; var len = isVertical ? 'width' : 'height'; var overflow = (0,_utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_6__["default"])(state, { placement: placement, boundary: boundary, rootBoundary: rootBoundary, altBoundary: altBoundary, padding: padding }); var mainVariationSide = isVertical ? isStartVariation ? _enums_js__WEBPACK_IMPORTED_MODULE_1__.right : _enums_js__WEBPACK_IMPORTED_MODULE_1__.left : isStartVariation ? _enums_js__WEBPACK_IMPORTED_MODULE_1__.bottom : _enums_js__WEBPACK_IMPORTED_MODULE_1__.top; if (referenceRect[len] > popperRect[len]) { mainVariationSide = (0,_utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(mainVariationSide); } var altVariationSide = (0,_utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(mainVariationSide); var checks = []; if (checkMainAxis) { checks.push(overflow[_basePlacement] <= 0); } if (checkAltAxis) { checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0); } if (checks.every(function (check) { return check; })) { firstFittingPlacement = placement; makeFallbackChecks = false; break; } checksMap.set(placement, checks); } if (makeFallbackChecks) { // `2` may be desired in some cases – research later var numberOfChecks = flipVariations ? 3 : 1; var _loop = function _loop(_i) { var fittingPlacement = placements.find(function (placement) { var checks = checksMap.get(placement); if (checks) { return checks.slice(0, _i).every(function (check) { return check; }); } }); if (fittingPlacement) { firstFittingPlacement = fittingPlacement; return "break"; } }; for (var _i = numberOfChecks; _i > 0; _i--) { var _ret = _loop(_i); if (_ret === "break") break; } } if (state.placement !== firstFittingPlacement) { state.modifiersData[name]._skip = true; state.placement = firstFittingPlacement; state.reset = true; } } // eslint-disable-next-line import/no-unused-modules /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'flip', enabled: true, phase: 'main', fn: flip, requiresIfExists: ['offset'], data: { _skip: false } }); /***/ }), /***/ "./node_modules/@popperjs/core/lib/modifiers/hide.js": /*!***********************************************************!*\ !*** ./node_modules/@popperjs/core/lib/modifiers/hide.js ***! \***********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); /* harmony import */ var _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/detectOverflow.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js"); function getSideOffsets(overflow, rect, preventedOffsets) { if (preventedOffsets === void 0) { preventedOffsets = { x: 0, y: 0 }; } return { top: overflow.top - rect.height - preventedOffsets.y, right: overflow.right - rect.width + preventedOffsets.x, bottom: overflow.bottom - rect.height + preventedOffsets.y, left: overflow.left - rect.width - preventedOffsets.x }; } function isAnySideFullyClipped(overflow) { return [_enums_js__WEBPACK_IMPORTED_MODULE_0__.top, _enums_js__WEBPACK_IMPORTED_MODULE_0__.right, _enums_js__WEBPACK_IMPORTED_MODULE_0__.bottom, _enums_js__WEBPACK_IMPORTED_MODULE_0__.left].some(function (side) { return overflow[side] >= 0; }); } function hide(_ref) { var state = _ref.state, name = _ref.name; var referenceRect = state.rects.reference; var popperRect = state.rects.popper; var preventedOffsets = state.modifiersData.preventOverflow; var referenceOverflow = (0,_utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_1__["default"])(state, { elementContext: 'reference' }); var popperAltOverflow = (0,_utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_1__["default"])(state, { altBoundary: true }); var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect); var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets); var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets); var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets); state.modifiersData[name] = { referenceClippingOffsets: referenceClippingOffsets, popperEscapeOffsets: popperEscapeOffsets, isReferenceHidden: isReferenceHidden, hasPopperEscaped: hasPopperEscaped }; state.attributes.popper = Object.assign({}, state.attributes.popper, { 'data-popper-reference-hidden': isReferenceHidden, 'data-popper-escaped': hasPopperEscaped }); } // eslint-disable-next-line import/no-unused-modules /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'hide', enabled: true, phase: 'main', requiresIfExists: ['preventOverflow'], fn: hide }); /***/ }), /***/ "./node_modules/@popperjs/core/lib/modifiers/offset.js": /*!*************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/modifiers/offset.js ***! \*************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__), /* harmony export */ distanceAndSkiddingToXY: () => (/* binding */ distanceAndSkiddingToXY) /* harmony export */ }); /* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js"); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); // eslint-disable-next-line import/no-unused-modules function distanceAndSkiddingToXY(placement, rects, offset) { var basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(placement); var invertDistance = [_enums_js__WEBPACK_IMPORTED_MODULE_1__.left, _enums_js__WEBPACK_IMPORTED_MODULE_1__.top].indexOf(basePlacement) >= 0 ? -1 : 1; var _ref = typeof offset === 'function' ? offset(Object.assign({}, rects, { placement: placement })) : offset, skidding = _ref[0], distance = _ref[1]; skidding = skidding || 0; distance = (distance || 0) * invertDistance; return [_enums_js__WEBPACK_IMPORTED_MODULE_1__.left, _enums_js__WEBPACK_IMPORTED_MODULE_1__.right].indexOf(basePlacement) >= 0 ? { x: distance, y: skidding } : { x: skidding, y: distance }; } function offset(_ref2) { var state = _ref2.state, options = _ref2.options, name = _ref2.name; var _options$offset = options.offset, offset = _options$offset === void 0 ? [0, 0] : _options$offset; var data = _enums_js__WEBPACK_IMPORTED_MODULE_1__.placements.reduce(function (acc, placement) { acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset); return acc; }, {}); var _data$state$placement = data[state.placement], x = _data$state$placement.x, y = _data$state$placement.y; if (state.modifiersData.popperOffsets != null) { state.modifiersData.popperOffsets.x += x; state.modifiersData.popperOffsets.y += y; } state.modifiersData[name] = data; } // eslint-disable-next-line import/no-unused-modules /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'offset', enabled: true, phase: 'main', requires: ['popperOffsets'], fn: offset }); /***/ }), /***/ "./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js": /*!********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js ***! \********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _utils_computeOffsets_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/computeOffsets.js */ "./node_modules/@popperjs/core/lib/utils/computeOffsets.js"); function popperOffsets(_ref) { var state = _ref.state, name = _ref.name; // Offsets are the actual position the popper needs to have to be // properly positioned near its reference element // This is the most basic placement, and will be adjusted by // the modifiers in the next step state.modifiersData[name] = (0,_utils_computeOffsets_js__WEBPACK_IMPORTED_MODULE_0__["default"])({ reference: state.rects.reference, element: state.rects.popper, strategy: 'absolute', placement: state.placement }); } // eslint-disable-next-line import/no-unused-modules /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'popperOffsets', enabled: true, phase: 'read', fn: popperOffsets, data: {} }); /***/ }), /***/ "./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js": /*!**********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); /* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js"); /* harmony import */ var _utils_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils/getMainAxisFromPlacement.js */ "./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js"); /* harmony import */ var _utils_getAltAxis_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils/getAltAxis.js */ "./node_modules/@popperjs/core/lib/utils/getAltAxis.js"); /* harmony import */ var _utils_within_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../utils/within.js */ "./node_modules/@popperjs/core/lib/utils/within.js"); /* harmony import */ var _dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../dom-utils/getLayoutRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js"); /* harmony import */ var _dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../dom-utils/getOffsetParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js"); /* harmony import */ var _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/detectOverflow.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js"); /* harmony import */ var _utils_getVariation_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/getVariation.js */ "./node_modules/@popperjs/core/lib/utils/getVariation.js"); /* harmony import */ var _utils_getFreshSideObject_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utils/getFreshSideObject.js */ "./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js"); /* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js"); function preventOverflow(_ref) { var state = _ref.state, options = _ref.options, name = _ref.name; var _options$mainAxis = options.mainAxis, checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, _options$altAxis = options.altAxis, checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis, boundary = options.boundary, rootBoundary = options.rootBoundary, altBoundary = options.altBoundary, padding = options.padding, _options$tether = options.tether, tether = _options$tether === void 0 ? true : _options$tether, _options$tetherOffset = options.tetherOffset, tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset; var overflow = (0,_utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(state, { boundary: boundary, rootBoundary: rootBoundary, padding: padding, altBoundary: altBoundary }); var basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_1__["default"])(state.placement); var variation = (0,_utils_getVariation_js__WEBPACK_IMPORTED_MODULE_2__["default"])(state.placement); var isBasePlacement = !variation; var mainAxis = (0,_utils_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(basePlacement); var altAxis = (0,_utils_getAltAxis_js__WEBPACK_IMPORTED_MODULE_4__["default"])(mainAxis); var popperOffsets = state.modifiersData.popperOffsets; var referenceRect = state.rects.reference; var popperRect = state.rects.popper; var tetherOffsetValue = typeof tetherOffset === 'function' ? tetherOffset(Object.assign({}, state.rects, { placement: state.placement })) : tetherOffset; var normalizedTetherOffsetValue = typeof tetherOffsetValue === 'number' ? { mainAxis: tetherOffsetValue, altAxis: tetherOffsetValue } : Object.assign({ mainAxis: 0, altAxis: 0 }, tetherOffsetValue); var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null; var data = { x: 0, y: 0 }; if (!popperOffsets) { return; } if (checkMainAxis) { var _offsetModifierState$; var mainSide = mainAxis === 'y' ? _enums_js__WEBPACK_IMPORTED_MODULE_5__.top : _enums_js__WEBPACK_IMPORTED_MODULE_5__.left; var altSide = mainAxis === 'y' ? _enums_js__WEBPACK_IMPORTED_MODULE_5__.bottom : _enums_js__WEBPACK_IMPORTED_MODULE_5__.right; var len = mainAxis === 'y' ? 'height' : 'width'; var offset = popperOffsets[mainAxis]; var min = offset + overflow[mainSide]; var max = offset - overflow[altSide]; var additive = tether ? -popperRect[len] / 2 : 0; var minLen = variation === _enums_js__WEBPACK_IMPORTED_MODULE_5__.start ? referenceRect[len] : popperRect[len]; var maxLen = variation === _enums_js__WEBPACK_IMPORTED_MODULE_5__.start ? -popperRect[len] : -referenceRect[len]; // We need to include the arrow in the calculation so the arrow doesn't go // outside the reference bounds var arrowElement = state.elements.arrow; var arrowRect = tether && arrowElement ? (0,_dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_6__["default"])(arrowElement) : { width: 0, height: 0 }; var arrowPaddingObject = state.modifiersData['arrow#persistent'] ? state.modifiersData['arrow#persistent'].padding : (0,_utils_getFreshSideObject_js__WEBPACK_IMPORTED_MODULE_7__["default"])(); var arrowPaddingMin = arrowPaddingObject[mainSide]; var arrowPaddingMax = arrowPaddingObject[altSide]; // If the reference length is smaller than the arrow length, we don't want // to include its full size in the calculation. If the reference is small // and near the edge of a boundary, the popper can overflow even if the // reference is not overflowing as well (e.g. virtual elements with no // width or height) var arrowLen = (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_8__.within)(0, referenceRect[len], arrowRect[len]); var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis; var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis; var arrowOffsetParent = state.elements.arrow && (0,_dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_9__["default"])(state.elements.arrow); var clientOffset = arrowOffsetParent ? mainAxis === 'y' ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0; var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0; var tetherMin = offset + minOffset - offsetModifierValue - clientOffset; var tetherMax = offset + maxOffset - offsetModifierValue; var preventedOffset = (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_8__.within)(tether ? (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_10__.min)(min, tetherMin) : min, offset, tether ? (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_10__.max)(max, tetherMax) : max); popperOffsets[mainAxis] = preventedOffset; data[mainAxis] = preventedOffset - offset; } if (checkAltAxis) { var _offsetModifierState$2; var _mainSide = mainAxis === 'x' ? _enums_js__WEBPACK_IMPORTED_MODULE_5__.top : _enums_js__WEBPACK_IMPORTED_MODULE_5__.left; var _altSide = mainAxis === 'x' ? _enums_js__WEBPACK_IMPORTED_MODULE_5__.bottom : _enums_js__WEBPACK_IMPORTED_MODULE_5__.right; var _offset = popperOffsets[altAxis]; var _len = altAxis === 'y' ? 'height' : 'width'; var _min = _offset + overflow[_mainSide]; var _max = _offset - overflow[_altSide]; var isOriginSide = [_enums_js__WEBPACK_IMPORTED_MODULE_5__.top, _enums_js__WEBPACK_IMPORTED_MODULE_5__.left].indexOf(basePlacement) !== -1; var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0; var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis; var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max; var _preventedOffset = tether && isOriginSide ? (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_8__.withinMaxClamp)(_tetherMin, _offset, _tetherMax) : (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_8__.within)(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max); popperOffsets[altAxis] = _preventedOffset; data[altAxis] = _preventedOffset - _offset; } state.modifiersData[name] = data; } // eslint-disable-next-line import/no-unused-modules /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'preventOverflow', enabled: true, phase: 'main', fn: preventOverflow, requiresIfExists: ['offset'] }); /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js": /*!***********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js ***! \***********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ computeAutoPlacement) /* harmony export */ }); /* harmony import */ var _getVariation_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getVariation.js */ "./node_modules/@popperjs/core/lib/utils/getVariation.js"); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); /* harmony import */ var _detectOverflow_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./detectOverflow.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js"); /* harmony import */ var _getBasePlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js"); function computeAutoPlacement(state, options) { if (options === void 0) { options = {}; } var _options = options, placement = _options.placement, boundary = _options.boundary, rootBoundary = _options.rootBoundary, padding = _options.padding, flipVariations = _options.flipVariations, _options$allowedAutoP = _options.allowedAutoPlacements, allowedAutoPlacements = _options$allowedAutoP === void 0 ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.placements : _options$allowedAutoP; var variation = (0,_getVariation_js__WEBPACK_IMPORTED_MODULE_1__["default"])(placement); var placements = variation ? flipVariations ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.variationPlacements : _enums_js__WEBPACK_IMPORTED_MODULE_0__.variationPlacements.filter(function (placement) { return (0,_getVariation_js__WEBPACK_IMPORTED_MODULE_1__["default"])(placement) === variation; }) : _enums_js__WEBPACK_IMPORTED_MODULE_0__.basePlacements; var allowedPlacements = placements.filter(function (placement) { return allowedAutoPlacements.indexOf(placement) >= 0; }); if (allowedPlacements.length === 0) { allowedPlacements = placements; } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions... var overflows = allowedPlacements.reduce(function (acc, placement) { acc[placement] = (0,_detectOverflow_js__WEBPACK_IMPORTED_MODULE_2__["default"])(state, { placement: placement, boundary: boundary, rootBoundary: rootBoundary, padding: padding })[(0,_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(placement)]; return acc; }, {}); return Object.keys(overflows).sort(function (a, b) { return overflows[a] - overflows[b]; }); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/computeOffsets.js": /*!*****************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/computeOffsets.js ***! \*****************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ computeOffsets) /* harmony export */ }); /* harmony import */ var _getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js"); /* harmony import */ var _getVariation_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getVariation.js */ "./node_modules/@popperjs/core/lib/utils/getVariation.js"); /* harmony import */ var _getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getMainAxisFromPlacement.js */ "./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js"); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); function computeOffsets(_ref) { var reference = _ref.reference, element = _ref.element, placement = _ref.placement; var basePlacement = placement ? (0,_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(placement) : null; var variation = placement ? (0,_getVariation_js__WEBPACK_IMPORTED_MODULE_1__["default"])(placement) : null; var commonX = reference.x + reference.width / 2 - element.width / 2; var commonY = reference.y + reference.height / 2 - element.height / 2; var offsets; switch (basePlacement) { case _enums_js__WEBPACK_IMPORTED_MODULE_2__.top: offsets = { x: commonX, y: reference.y - element.height }; break; case _enums_js__WEBPACK_IMPORTED_MODULE_2__.bottom: offsets = { x: commonX, y: reference.y + reference.height }; break; case _enums_js__WEBPACK_IMPORTED_MODULE_2__.right: offsets = { x: reference.x + reference.width, y: commonY }; break; case _enums_js__WEBPACK_IMPORTED_MODULE_2__.left: offsets = { x: reference.x - element.width, y: commonY }; break; default: offsets = { x: reference.x, y: reference.y }; } var mainAxis = basePlacement ? (0,_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(basePlacement) : null; if (mainAxis != null) { var len = mainAxis === 'y' ? 'height' : 'width'; switch (variation) { case _enums_js__WEBPACK_IMPORTED_MODULE_2__.start: offsets[mainAxis] = offsets[mainAxis] - (reference[len] / 2 - element[len] / 2); break; case _enums_js__WEBPACK_IMPORTED_MODULE_2__.end: offsets[mainAxis] = offsets[mainAxis] + (reference[len] / 2 - element[len] / 2); break; default: } } return offsets; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/debounce.js": /*!***********************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/debounce.js ***! \***********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ debounce) /* harmony export */ }); function debounce(fn) { var pending; return function () { if (!pending) { pending = new Promise(function (resolve) { Promise.resolve().then(function () { pending = undefined; resolve(fn()); }); }); } return pending; }; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js": /*!*****************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/detectOverflow.js ***! \*****************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ detectOverflow) /* harmony export */ }); /* harmony import */ var _dom_utils_getClippingRect_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../dom-utils/getClippingRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js"); /* harmony import */ var _dom_utils_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../dom-utils/getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js"); /* harmony import */ var _dom_utils_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../dom-utils/getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js"); /* harmony import */ var _computeOffsets_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./computeOffsets.js */ "./node_modules/@popperjs/core/lib/utils/computeOffsets.js"); /* harmony import */ var _rectToClientRect_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./rectToClientRect.js */ "./node_modules/@popperjs/core/lib/utils/rectToClientRect.js"); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); /* harmony import */ var _dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../dom-utils/instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js"); /* harmony import */ var _mergePaddingObject_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./mergePaddingObject.js */ "./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js"); /* harmony import */ var _expandToHashMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./expandToHashMap.js */ "./node_modules/@popperjs/core/lib/utils/expandToHashMap.js"); // eslint-disable-next-line import/no-unused-modules function detectOverflow(state, options) { if (options === void 0) { options = {}; } var _options = options, _options$placement = _options.placement, placement = _options$placement === void 0 ? state.placement : _options$placement, _options$strategy = _options.strategy, strategy = _options$strategy === void 0 ? state.strategy : _options$strategy, _options$boundary = _options.boundary, boundary = _options$boundary === void 0 ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.clippingParents : _options$boundary, _options$rootBoundary = _options.rootBoundary, rootBoundary = _options$rootBoundary === void 0 ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.viewport : _options$rootBoundary, _options$elementConte = _options.elementContext, elementContext = _options$elementConte === void 0 ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper : _options$elementConte, _options$altBoundary = _options.altBoundary, altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary, _options$padding = _options.padding, padding = _options$padding === void 0 ? 0 : _options$padding; var paddingObject = (0,_mergePaddingObject_js__WEBPACK_IMPORTED_MODULE_1__["default"])(typeof padding !== 'number' ? padding : (0,_expandToHashMap_js__WEBPACK_IMPORTED_MODULE_2__["default"])(padding, _enums_js__WEBPACK_IMPORTED_MODULE_0__.basePlacements)); var altContext = elementContext === _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.reference : _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper; var popperRect = state.rects.popper; var element = state.elements[altBoundary ? altContext : elementContext]; var clippingClientRect = (0,_dom_utils_getClippingRect_js__WEBPACK_IMPORTED_MODULE_3__["default"])((0,_dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isElement)(element) ? element : element.contextElement || (0,_dom_utils_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_5__["default"])(state.elements.popper), boundary, rootBoundary, strategy); var referenceClientRect = (0,_dom_utils_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_6__["default"])(state.elements.reference); var popperOffsets = (0,_computeOffsets_js__WEBPACK_IMPORTED_MODULE_7__["default"])({ reference: referenceClientRect, element: popperRect, strategy: 'absolute', placement: placement }); var popperClientRect = (0,_rectToClientRect_js__WEBPACK_IMPORTED_MODULE_8__["default"])(Object.assign({}, popperRect, popperOffsets)); var elementClientRect = elementContext === _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect // 0 or negative = within the clipping rect var overflowOffsets = { top: clippingClientRect.top - elementClientRect.top + paddingObject.top, bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom, left: clippingClientRect.left - elementClientRect.left + paddingObject.left, right: elementClientRect.right - clippingClientRect.right + paddingObject.right }; var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element if (elementContext === _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper && offsetData) { var offset = offsetData[placement]; Object.keys(overflowOffsets).forEach(function (key) { var multiply = [_enums_js__WEBPACK_IMPORTED_MODULE_0__.right, _enums_js__WEBPACK_IMPORTED_MODULE_0__.bottom].indexOf(key) >= 0 ? 1 : -1; var axis = [_enums_js__WEBPACK_IMPORTED_MODULE_0__.top, _enums_js__WEBPACK_IMPORTED_MODULE_0__.bottom].indexOf(key) >= 0 ? 'y' : 'x'; overflowOffsets[key] += offset[axis] * multiply; }); } return overflowOffsets; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/expandToHashMap.js": /*!******************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/expandToHashMap.js ***! \******************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ expandToHashMap) /* harmony export */ }); function expandToHashMap(value, keys) { return keys.reduce(function (hashMap, key) { hashMap[key] = value; return hashMap; }, {}); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/getAltAxis.js": /*!*************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/getAltAxis.js ***! \*************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getAltAxis) /* harmony export */ }); function getAltAxis(axis) { return axis === 'x' ? 'y' : 'x'; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js": /*!*******************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/getBasePlacement.js ***! \*******************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getBasePlacement) /* harmony export */ }); function getBasePlacement(placement) { return placement.split('-')[0]; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js": /*!*********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getFreshSideObject) /* harmony export */ }); function getFreshSideObject() { return { top: 0, right: 0, bottom: 0, left: 0 }; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js": /*!***************************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js ***! \***************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getMainAxisFromPlacement) /* harmony export */ }); function getMainAxisFromPlacement(placement) { return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y'; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js": /*!***********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js ***! \***********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getOppositePlacement) /* harmony export */ }); var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' }; function getOppositePlacement(placement) { return placement.replace(/left|right|bottom|top/g, function (matched) { return hash[matched]; }); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js": /*!********************************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js ***! \********************************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getOppositeVariationPlacement) /* harmony export */ }); var hash = { start: 'end', end: 'start' }; function getOppositeVariationPlacement(placement) { return placement.replace(/start|end/g, function (matched) { return hash[matched]; }); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/getVariation.js": /*!***************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/getVariation.js ***! \***************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getVariation) /* harmony export */ }); function getVariation(placement) { return placement.split('-')[1]; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/math.js": /*!*******************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/math.js ***! \*******************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ max: () => (/* binding */ max), /* harmony export */ min: () => (/* binding */ min), /* harmony export */ round: () => (/* binding */ round) /* harmony export */ }); var max = Math.max; var min = Math.min; var round = Math.round; /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/mergeByName.js": /*!**************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/mergeByName.js ***! \**************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ mergeByName) /* harmony export */ }); function mergeByName(modifiers) { var merged = modifiers.reduce(function (merged, current) { var existing = merged[current.name]; merged[current.name] = existing ? Object.assign({}, existing, current, { options: Object.assign({}, existing.options, current.options), data: Object.assign({}, existing.data, current.data) }) : current; return merged; }, {}); // IE11 does not support Object.values return Object.keys(merged).map(function (key) { return merged[key]; }); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js": /*!*********************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ mergePaddingObject) /* harmony export */ }); /* harmony import */ var _getFreshSideObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getFreshSideObject.js */ "./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js"); function mergePaddingObject(paddingObject) { return Object.assign({}, (0,_getFreshSideObject_js__WEBPACK_IMPORTED_MODULE_0__["default"])(), paddingObject); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/orderModifiers.js": /*!*****************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/orderModifiers.js ***! \*****************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ orderModifiers) /* harmony export */ }); /* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js"); // source: https://stackoverflow.com/questions/49875255 function order(modifiers) { var map = new Map(); var visited = new Set(); var result = []; modifiers.forEach(function (modifier) { map.set(modifier.name, modifier); }); // On visiting object, check for its dependencies and visit them recursively function sort(modifier) { visited.add(modifier.name); var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []); requires.forEach(function (dep) { if (!visited.has(dep)) { var depModifier = map.get(dep); if (depModifier) { sort(depModifier); } } }); result.push(modifier); } modifiers.forEach(function (modifier) { if (!visited.has(modifier.name)) { // check for visited object sort(modifier); } }); return result; } function orderModifiers(modifiers) { // order based on dependencies var orderedModifiers = order(modifiers); // order based on phase return _enums_js__WEBPACK_IMPORTED_MODULE_0__.modifierPhases.reduce(function (acc, phase) { return acc.concat(orderedModifiers.filter(function (modifier) { return modifier.phase === phase; })); }, []); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/rectToClientRect.js": /*!*******************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/rectToClientRect.js ***! \*******************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ rectToClientRect) /* harmony export */ }); function rectToClientRect(rect) { return Object.assign({}, rect, { left: rect.x, top: rect.y, right: rect.x + rect.width, bottom: rect.y + rect.height }); } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/userAgent.js": /*!************************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/userAgent.js ***! \************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ getUAString) /* harmony export */ }); function getUAString() { var uaData = navigator.userAgentData; if (uaData != null && uaData.brands && Array.isArray(uaData.brands)) { return uaData.brands.map(function (item) { return item.brand + "/" + item.version; }).join(' '); } return navigator.userAgent; } /***/ }), /***/ "./node_modules/@popperjs/core/lib/utils/within.js": /*!*********************************************************!*\ !*** ./node_modules/@popperjs/core/lib/utils/within.js ***! \*********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ within: () => (/* binding */ within), /* harmony export */ withinMaxClamp: () => (/* binding */ withinMaxClamp) /* harmony export */ }); /* harmony import */ var _math_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./math.js */ "./node_modules/@popperjs/core/lib/utils/math.js"); function within(min, value, max) { return (0,_math_js__WEBPACK_IMPORTED_MODULE_0__.max)(min, (0,_math_js__WEBPACK_IMPORTED_MODULE_0__.min)(value, max)); } function withinMaxClamp(min, value, max) { var v = within(min, value, max); return v > max ? max : v; } /***/ }), /***/ "./node_modules/@restart/hooks/esm/useCallbackRef.js": /*!***********************************************************!*\ !*** ./node_modules/@restart/hooks/esm/useCallbackRef.js ***! \***********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ useCallbackRef) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /** * A convenience hook around `useState` designed to be paired with * the component [callback ref](https://reactjs.org/docs/refs-and-the-dom.html#callback-refs) api. * Callback refs are useful over `useRef()` when you need to respond to the ref being set * instead of lazily accessing it in an effect. * * ```ts * const [element, attachRef] = useCallbackRef() * * useEffect(() => { * if (!element) return * * const calendar = new FullCalendar.Calendar(element) * * return () => { * calendar.destroy() * } * }, [element]) * * return
* ``` * * @category refs */ function useCallbackRef() { return (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(null); } /***/ }), /***/ "./node_modules/@restart/hooks/esm/useCommittedRef.js": /*!************************************************************!*\ !*** ./node_modules/@restart/hooks/esm/useCommittedRef.js ***! \************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /** * Creates a `Ref` whose value is updated in an effect, ensuring the most recent * value is the one rendered with. Generally only required for Concurrent mode usage * where previous work in `render()` may be discarded before being used. * * This is safe to access in an event handler. * * @param value The `Ref` value */ function useCommittedRef(value) { const ref = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(value); (0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { ref.current = value; }, [value]); return ref; } /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (useCommittedRef); /***/ }), /***/ "./node_modules/@restart/hooks/esm/useEventCallback.js": /*!*************************************************************!*\ !*** ./node_modules/@restart/hooks/esm/useEventCallback.js ***! \*************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ useEventCallback) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _useCommittedRef__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./useCommittedRef */ "./node_modules/@restart/hooks/esm/useCommittedRef.js"); function useEventCallback(fn) { const ref = (0,_useCommittedRef__WEBPACK_IMPORTED_MODULE_1__["default"])(fn); return (0,react__WEBPACK_IMPORTED_MODULE_0__.useCallback)(function (...args) { return ref.current && ref.current(...args); }, [ref]); } /***/ }), /***/ "./node_modules/@restart/hooks/esm/useIsomorphicEffect.js": /*!****************************************************************!*\ !*** ./node_modules/@restart/hooks/esm/useIsomorphicEffect.js ***! \****************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); const isReactNative = typeof __webpack_require__.g !== 'undefined' && // @ts-ignore __webpack_require__.g.navigator && // @ts-ignore __webpack_require__.g.navigator.product === 'ReactNative'; const isDOM = typeof document !== 'undefined'; /** * Is `useLayoutEffect` in a DOM or React Native environment, otherwise resolves to useEffect * Only useful to avoid the console warning. * * PREFER `useEffect` UNLESS YOU KNOW WHAT YOU ARE DOING. * * @category effects */ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (isDOM || isReactNative ? react__WEBPACK_IMPORTED_MODULE_0__.useLayoutEffect : react__WEBPACK_IMPORTED_MODULE_0__.useEffect); /***/ }), /***/ "./node_modules/@restart/hooks/esm/useMergedRefs.js": /*!**********************************************************!*\ !*** ./node_modules/@restart/hooks/esm/useMergedRefs.js ***! \**********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__), /* harmony export */ mergeRefs: () => (/* binding */ mergeRefs) /* harmony export */ }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "./node_modules/react/index.js"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); const toFnRef = ref => !ref || typeof ref === 'function' ? ref : value => { ref.current = value; }; function mergeRefs(refA, refB) { const a = toFnRef(refA); const b = toFnRef(refB); return value => { if (a) a(value); if (b) b(value); }; } /** * Create and returns a single callback ref composed from two other Refs. * * ```tsx * const Button = React.forwardRef((props, ref) => { * const [element, attachRef] = useCallbackRef(); * const mergedRef = useMergedRefs(ref, attachRef); * * return