@react-hive/honey-layout 9.13.0 → 9.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/HoneyBox/HoneyBox.d.ts +1 -1
- package/dist/components/HoneyFlex/HoneyFlex.d.ts +4 -4
- package/dist/components/HoneyGrid/HoneyGridStyled.d.ts +1 -1
- package/dist/components/HoneyGridColumn/HoneyGridColumnStyled.d.ts +1 -1
- package/dist/components/HoneyList/HoneyListStyled.d.ts +1 -1
- package/dist/components/HoneyPopup/HoneyPopupStyled.d.ts +1 -1
- package/dist/constants.d.ts +1 -0
- package/dist/hooks/index.d.ts +4 -0
- package/dist/hooks/use-honey-on-change.d.ts +1 -1
- package/dist/hooks/use-honey-resize.d.ts +45 -0
- package/dist/hooks/use-honey-synthetic-scroll-x.d.ts +2 -0
- package/dist/hooks/use-honey-synthetic-scroll-y.d.ts +2 -0
- package/dist/hooks/use-honey-synthetic-scroll.d.ts +60 -0
- package/dist/index.cjs +16 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.dev.cjs +691 -412
- package/dist/index.dev.cjs.map +1 -1
- package/dist/index.mjs +19 -19
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
package/dist/index.dev.cjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/******/ (() => { // webpackBootstrap
|
|
2
2
|
/******/ var __webpack_modules__ = ({
|
|
3
3
|
|
|
4
|
-
/***/ "./node_modules/@floating-ui/core/dist/floating-ui.core.mjs"
|
|
4
|
+
/***/ "./node_modules/@floating-ui/core/dist/floating-ui.core.mjs"
|
|
5
5
|
/*!******************************************************************!*\
|
|
6
6
|
!*** ./node_modules/@floating-ui/core/dist/floating-ui.core.mjs ***!
|
|
7
7
|
\******************************************************************/
|
|
8
|
-
|
|
8
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
9
9
|
|
|
10
10
|
"use strict";
|
|
11
11
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -1075,13 +1075,13 @@ const size = function (options) {
|
|
|
1075
1075
|
|
|
1076
1076
|
|
|
1077
1077
|
|
|
1078
|
-
/***/ }
|
|
1078
|
+
/***/ },
|
|
1079
1079
|
|
|
1080
|
-
/***/ "./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"
|
|
1080
|
+
/***/ "./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs"
|
|
1081
1081
|
/*!****************************************************************!*\
|
|
1082
1082
|
!*** ./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs ***!
|
|
1083
1083
|
\****************************************************************/
|
|
1084
|
-
|
|
1084
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
1085
1085
|
|
|
1086
1086
|
"use strict";
|
|
1087
1087
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -1101,8 +1101,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1101
1101
|
/* harmony export */ shift: () => (/* binding */ shift),
|
|
1102
1102
|
/* harmony export */ size: () => (/* binding */ size)
|
|
1103
1103
|
/* harmony export */ });
|
|
1104
|
-
/* harmony import */ var _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @floating-ui/
|
|
1105
|
-
/* harmony import */ var _floating_ui_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @floating-ui/
|
|
1104
|
+
/* harmony import */ var _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @floating-ui/core */ "./node_modules/@floating-ui/core/dist/floating-ui.core.mjs");
|
|
1105
|
+
/* harmony import */ var _floating_ui_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @floating-ui/utils */ "./node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs");
|
|
1106
1106
|
/* harmony import */ var _floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @floating-ui/utils/dom */ "./node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs");
|
|
1107
1107
|
|
|
1108
1108
|
|
|
@@ -1118,7 +1118,7 @@ function getCssDimensions(element) {
|
|
|
1118
1118
|
const hasOffset = (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.isHTMLElement)(element);
|
|
1119
1119
|
const offsetWidth = hasOffset ? element.offsetWidth : width;
|
|
1120
1120
|
const offsetHeight = hasOffset ? element.offsetHeight : height;
|
|
1121
|
-
const shouldFallback = (0,
|
|
1121
|
+
const shouldFallback = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.round)(width) !== offsetWidth || (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.round)(height) !== offsetHeight;
|
|
1122
1122
|
if (shouldFallback) {
|
|
1123
1123
|
width = offsetWidth;
|
|
1124
1124
|
height = offsetHeight;
|
|
@@ -1137,7 +1137,7 @@ function unwrapElement(element) {
|
|
|
1137
1137
|
function getScale(element) {
|
|
1138
1138
|
const domElement = unwrapElement(element);
|
|
1139
1139
|
if (!(0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.isHTMLElement)(domElement)) {
|
|
1140
|
-
return (0,
|
|
1140
|
+
return (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(1);
|
|
1141
1141
|
}
|
|
1142
1142
|
const rect = domElement.getBoundingClientRect();
|
|
1143
1143
|
const {
|
|
@@ -1145,8 +1145,8 @@ function getScale(element) {
|
|
|
1145
1145
|
height,
|
|
1146
1146
|
$
|
|
1147
1147
|
} = getCssDimensions(domElement);
|
|
1148
|
-
let x = ($ ? (0,
|
|
1149
|
-
let y = ($ ? (0,
|
|
1148
|
+
let x = ($ ? (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.round)(rect.width) : rect.width) / width;
|
|
1149
|
+
let y = ($ ? (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.round)(rect.height) : rect.height) / height;
|
|
1150
1150
|
|
|
1151
1151
|
// 0, NaN, or Infinity should always fallback to 1.
|
|
1152
1152
|
|
|
@@ -1162,7 +1162,7 @@ function getScale(element) {
|
|
|
1162
1162
|
};
|
|
1163
1163
|
}
|
|
1164
1164
|
|
|
1165
|
-
const noOffsets = /*#__PURE__*/(0,
|
|
1165
|
+
const noOffsets = /*#__PURE__*/(0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(0);
|
|
1166
1166
|
function getVisualOffsets(element) {
|
|
1167
1167
|
const win = (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.getWindow)(element);
|
|
1168
1168
|
if (!(0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.isWebKit)() || !win.visualViewport) {
|
|
@@ -1192,7 +1192,7 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetPar
|
|
|
1192
1192
|
}
|
|
1193
1193
|
const clientRect = element.getBoundingClientRect();
|
|
1194
1194
|
const domElement = unwrapElement(element);
|
|
1195
|
-
let scale = (0,
|
|
1195
|
+
let scale = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(1);
|
|
1196
1196
|
if (includeScale) {
|
|
1197
1197
|
if (offsetParent) {
|
|
1198
1198
|
if ((0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.isElement)(offsetParent)) {
|
|
@@ -1202,7 +1202,7 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetPar
|
|
|
1202
1202
|
scale = getScale(element);
|
|
1203
1203
|
}
|
|
1204
1204
|
}
|
|
1205
|
-
const visualOffsets = shouldAddVisualOffsets(domElement, isFixedStrategy, offsetParent) ? getVisualOffsets(domElement) : (0,
|
|
1205
|
+
const visualOffsets = shouldAddVisualOffsets(domElement, isFixedStrategy, offsetParent) ? getVisualOffsets(domElement) : (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(0);
|
|
1206
1206
|
let x = (clientRect.left + visualOffsets.x) / scale.x;
|
|
1207
1207
|
let y = (clientRect.top + visualOffsets.y) / scale.y;
|
|
1208
1208
|
let width = clientRect.width / scale.x;
|
|
@@ -1228,7 +1228,7 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy, offsetPar
|
|
|
1228
1228
|
currentIFrame = (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.getFrameElement)(currentWin);
|
|
1229
1229
|
}
|
|
1230
1230
|
}
|
|
1231
|
-
return (0,
|
|
1231
|
+
return (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.rectToClientRect)({
|
|
1232
1232
|
width,
|
|
1233
1233
|
height,
|
|
1234
1234
|
x,
|
|
@@ -1273,8 +1273,8 @@ function convertOffsetParentRelativeRectToViewportRelativeRect(_ref) {
|
|
|
1273
1273
|
scrollLeft: 0,
|
|
1274
1274
|
scrollTop: 0
|
|
1275
1275
|
};
|
|
1276
|
-
let scale = (0,
|
|
1277
|
-
const offsets = (0,
|
|
1276
|
+
let scale = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(1);
|
|
1277
|
+
const offsets = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(0);
|
|
1278
1278
|
const isOffsetParentAnElement = (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.isHTMLElement)(offsetParent);
|
|
1279
1279
|
if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {
|
|
1280
1280
|
if ((0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.getNodeName)(offsetParent) !== 'body' || (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.isOverflowElement)(documentElement)) {
|
|
@@ -1287,7 +1287,7 @@ function convertOffsetParentRelativeRectToViewportRelativeRect(_ref) {
|
|
|
1287
1287
|
offsets.y = offsetRect.y + offsetParent.clientTop;
|
|
1288
1288
|
}
|
|
1289
1289
|
}
|
|
1290
|
-
const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : (0,
|
|
1290
|
+
const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(0);
|
|
1291
1291
|
return {
|
|
1292
1292
|
width: rect.width * scale.x,
|
|
1293
1293
|
height: rect.height * scale.y,
|
|
@@ -1306,12 +1306,12 @@ function getDocumentRect(element) {
|
|
|
1306
1306
|
const html = (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.getDocumentElement)(element);
|
|
1307
1307
|
const scroll = (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.getNodeScroll)(element);
|
|
1308
1308
|
const body = element.ownerDocument.body;
|
|
1309
|
-
const width = (0,
|
|
1310
|
-
const height = (0,
|
|
1309
|
+
const width = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.max)(html.scrollWidth, html.clientWidth, body.scrollWidth, body.clientWidth);
|
|
1310
|
+
const height = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.max)(html.scrollHeight, html.clientHeight, body.scrollHeight, body.clientHeight);
|
|
1311
1311
|
let x = -scroll.scrollLeft + getWindowScrollBarX(element);
|
|
1312
1312
|
const y = -scroll.scrollTop;
|
|
1313
1313
|
if ((0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.getComputedStyle)(body).direction === 'rtl') {
|
|
1314
|
-
x += (0,
|
|
1314
|
+
x += (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.max)(html.clientWidth, body.clientWidth) - width;
|
|
1315
1315
|
}
|
|
1316
1316
|
return {
|
|
1317
1317
|
width,
|
|
@@ -1374,7 +1374,7 @@ function getInnerBoundingClientRect(element, strategy) {
|
|
|
1374
1374
|
const clientRect = getBoundingClientRect(element, true, strategy === 'fixed');
|
|
1375
1375
|
const top = clientRect.top + element.clientTop;
|
|
1376
1376
|
const left = clientRect.left + element.clientLeft;
|
|
1377
|
-
const scale = (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.isHTMLElement)(element) ? getScale(element) : (0,
|
|
1377
|
+
const scale = (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.isHTMLElement)(element) ? getScale(element) : (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(1);
|
|
1378
1378
|
const width = element.clientWidth * scale.x;
|
|
1379
1379
|
const height = element.clientHeight * scale.y;
|
|
1380
1380
|
const x = left * scale.x;
|
|
@@ -1403,7 +1403,7 @@ function getClientRectFromClippingAncestor(element, clippingAncestor, strategy)
|
|
|
1403
1403
|
height: clippingAncestor.height
|
|
1404
1404
|
};
|
|
1405
1405
|
}
|
|
1406
|
-
return (0,
|
|
1406
|
+
return (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.rectToClientRect)(rect);
|
|
1407
1407
|
}
|
|
1408
1408
|
function hasFixedPositionAncestor(element, stopNode) {
|
|
1409
1409
|
const parentNode = (0,_floating_ui_utils_dom__WEBPACK_IMPORTED_MODULE_2__.getParentNode)(element);
|
|
@@ -1461,10 +1461,10 @@ function getClippingRect(_ref) {
|
|
|
1461
1461
|
const firstClippingAncestor = clippingAncestors[0];
|
|
1462
1462
|
const clippingRect = clippingAncestors.reduce((accRect, clippingAncestor) => {
|
|
1463
1463
|
const rect = getClientRectFromClippingAncestor(element, clippingAncestor, strategy);
|
|
1464
|
-
accRect.top = (0,
|
|
1465
|
-
accRect.right = (0,
|
|
1466
|
-
accRect.bottom = (0,
|
|
1467
|
-
accRect.left = (0,
|
|
1464
|
+
accRect.top = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.max)(rect.top, accRect.top);
|
|
1465
|
+
accRect.right = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.min)(rect.right, accRect.right);
|
|
1466
|
+
accRect.bottom = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.min)(rect.bottom, accRect.bottom);
|
|
1467
|
+
accRect.left = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.max)(rect.left, accRect.left);
|
|
1468
1468
|
return accRect;
|
|
1469
1469
|
}, getClientRectFromClippingAncestor(element, firstClippingAncestor, strategy));
|
|
1470
1470
|
return {
|
|
@@ -1495,7 +1495,7 @@ function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
|
|
|
1495
1495
|
scrollLeft: 0,
|
|
1496
1496
|
scrollTop: 0
|
|
1497
1497
|
};
|
|
1498
|
-
const offsets = (0,
|
|
1498
|
+
const offsets = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(0);
|
|
1499
1499
|
|
|
1500
1500
|
// If the <body> scrollbar appears on the left (e.g. RTL systems). Use
|
|
1501
1501
|
// Firefox with layout.scrollbar.side = 3 in about:config to test this.
|
|
@@ -1517,7 +1517,7 @@ function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
|
|
|
1517
1517
|
if (isFixed && !isOffsetParentAnElement && documentElement) {
|
|
1518
1518
|
setLeftRTLScrollbarOffset();
|
|
1519
1519
|
}
|
|
1520
|
-
const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : (0,
|
|
1520
|
+
const htmlOffset = documentElement && !isOffsetParentAnElement && !isFixed ? getHTMLOffset(documentElement, scroll) : (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.createCoords)(0);
|
|
1521
1521
|
const x = rect.left + scroll.scrollLeft - offsets.x - htmlOffset.x;
|
|
1522
1522
|
const y = rect.top + scroll.scrollTop - offsets.y - htmlOffset.y;
|
|
1523
1523
|
return {
|
|
@@ -1646,14 +1646,14 @@ function observeMove(element, onMove) {
|
|
|
1646
1646
|
if (!width || !height) {
|
|
1647
1647
|
return;
|
|
1648
1648
|
}
|
|
1649
|
-
const insetTop = (0,
|
|
1650
|
-
const insetRight = (0,
|
|
1651
|
-
const insetBottom = (0,
|
|
1652
|
-
const insetLeft = (0,
|
|
1649
|
+
const insetTop = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.floor)(top);
|
|
1650
|
+
const insetRight = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.floor)(root.clientWidth - (left + width));
|
|
1651
|
+
const insetBottom = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.floor)(root.clientHeight - (top + height));
|
|
1652
|
+
const insetLeft = (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.floor)(left);
|
|
1653
1653
|
const rootMargin = -insetTop + "px " + -insetRight + "px " + -insetBottom + "px " + -insetLeft + "px";
|
|
1654
1654
|
const options = {
|
|
1655
1655
|
rootMargin,
|
|
1656
|
-
threshold: (0,
|
|
1656
|
+
threshold: (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.max)(0, (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.min)(1, threshold)) || 1
|
|
1657
1657
|
};
|
|
1658
1658
|
let isFirstUpdate = true;
|
|
1659
1659
|
function handleObserve(entries) {
|
|
@@ -1789,7 +1789,7 @@ function autoUpdate(reference, floating, update, options) {
|
|
|
1789
1789
|
* - 0 = lies flush with the boundary
|
|
1790
1790
|
* @see https://floating-ui.com/docs/detectOverflow
|
|
1791
1791
|
*/
|
|
1792
|
-
const detectOverflow =
|
|
1792
|
+
const detectOverflow = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.detectOverflow;
|
|
1793
1793
|
|
|
1794
1794
|
/**
|
|
1795
1795
|
* Modifies the placement by translating the floating element along the
|
|
@@ -1798,7 +1798,7 @@ const detectOverflow = _floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.detectOver
|
|
|
1798
1798
|
* object may be passed.
|
|
1799
1799
|
* @see https://floating-ui.com/docs/offset
|
|
1800
1800
|
*/
|
|
1801
|
-
const offset =
|
|
1801
|
+
const offset = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.offset;
|
|
1802
1802
|
|
|
1803
1803
|
/**
|
|
1804
1804
|
* Optimizes the visibility of the floating element by choosing the placement
|
|
@@ -1806,14 +1806,14 @@ const offset = _floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.offset;
|
|
|
1806
1806
|
* preferred placement. Alternative to `flip`.
|
|
1807
1807
|
* @see https://floating-ui.com/docs/autoPlacement
|
|
1808
1808
|
*/
|
|
1809
|
-
const autoPlacement =
|
|
1809
|
+
const autoPlacement = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.autoPlacement;
|
|
1810
1810
|
|
|
1811
1811
|
/**
|
|
1812
1812
|
* Optimizes the visibility of the floating element by shifting it in order to
|
|
1813
1813
|
* keep it in view when it will overflow the clipping boundary.
|
|
1814
1814
|
* @see https://floating-ui.com/docs/shift
|
|
1815
1815
|
*/
|
|
1816
|
-
const shift =
|
|
1816
|
+
const shift = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.shift;
|
|
1817
1817
|
|
|
1818
1818
|
/**
|
|
1819
1819
|
* Optimizes the visibility of the floating element by flipping the `placement`
|
|
@@ -1821,7 +1821,7 @@ const shift = _floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.shift;
|
|
|
1821
1821
|
* clipping boundary. Alternative to `autoPlacement`.
|
|
1822
1822
|
* @see https://floating-ui.com/docs/flip
|
|
1823
1823
|
*/
|
|
1824
|
-
const flip =
|
|
1824
|
+
const flip = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.flip;
|
|
1825
1825
|
|
|
1826
1826
|
/**
|
|
1827
1827
|
* Provides data that allows you to change the size of the floating element —
|
|
@@ -1829,33 +1829,33 @@ const flip = _floating_ui_core__WEBPACK_IMPORTED_MODULE_1__.flip;
|
|
|
1829
1829
|
* width of the reference element.
|
|
1830
1830
|
* @see https://floating-ui.com/docs/size
|
|
1831
1831
|
*/
|
|
1832
|
-
const size =
|
|
1832
|
+
const size = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.size;
|
|
1833
1833
|
|
|
1834
1834
|
/**
|
|
1835
1835
|
* Provides data to hide the floating element in applicable situations, such as
|
|
1836
1836
|
* when it is not in the same clipping context as the reference element.
|
|
1837
1837
|
* @see https://floating-ui.com/docs/hide
|
|
1838
1838
|
*/
|
|
1839
|
-
const hide =
|
|
1839
|
+
const hide = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.hide;
|
|
1840
1840
|
|
|
1841
1841
|
/**
|
|
1842
1842
|
* Provides data to position an inner element of the floating element so that it
|
|
1843
1843
|
* appears centered to the reference element.
|
|
1844
1844
|
* @see https://floating-ui.com/docs/arrow
|
|
1845
1845
|
*/
|
|
1846
|
-
const arrow =
|
|
1846
|
+
const arrow = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.arrow;
|
|
1847
1847
|
|
|
1848
1848
|
/**
|
|
1849
1849
|
* Provides improved positioning for inline reference elements that can span
|
|
1850
1850
|
* over multiple lines, such as hyperlinks or range selections.
|
|
1851
1851
|
* @see https://floating-ui.com/docs/inline
|
|
1852
1852
|
*/
|
|
1853
|
-
const inline =
|
|
1853
|
+
const inline = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.inline;
|
|
1854
1854
|
|
|
1855
1855
|
/**
|
|
1856
1856
|
* Built-in `limiter` that will stop `shift()` at a certain point.
|
|
1857
1857
|
*/
|
|
1858
|
-
const limitShift =
|
|
1858
|
+
const limitShift = _floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.limitShift;
|
|
1859
1859
|
|
|
1860
1860
|
/**
|
|
1861
1861
|
* Computes the `x` and `y` coordinates that will place the floating element
|
|
@@ -1874,7 +1874,7 @@ const computePosition = (reference, floating, options) => {
|
|
|
1874
1874
|
...mergedOptions.platform,
|
|
1875
1875
|
_c: cache
|
|
1876
1876
|
};
|
|
1877
|
-
return (0,
|
|
1877
|
+
return (0,_floating_ui_core__WEBPACK_IMPORTED_MODULE_0__.computePosition)(reference, floating, {
|
|
1878
1878
|
...mergedOptions,
|
|
1879
1879
|
platform: platformWithCache
|
|
1880
1880
|
});
|
|
@@ -1883,13 +1883,13 @@ const computePosition = (reference, floating, options) => {
|
|
|
1883
1883
|
|
|
1884
1884
|
|
|
1885
1885
|
|
|
1886
|
-
/***/ }
|
|
1886
|
+
/***/ },
|
|
1887
1887
|
|
|
1888
|
-
/***/ "./node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs"
|
|
1888
|
+
/***/ "./node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs"
|
|
1889
1889
|
/*!****************************************************************************!*\
|
|
1890
1890
|
!*** ./node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs ***!
|
|
1891
1891
|
\****************************************************************************/
|
|
1892
|
-
|
|
1892
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
1893
1893
|
|
|
1894
1894
|
"use strict";
|
|
1895
1895
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -2287,13 +2287,13 @@ const arrow = (options, deps) => ({
|
|
|
2287
2287
|
|
|
2288
2288
|
|
|
2289
2289
|
|
|
2290
|
-
/***/ }
|
|
2290
|
+
/***/ },
|
|
2291
2291
|
|
|
2292
|
-
/***/ "./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"
|
|
2292
|
+
/***/ "./node_modules/@floating-ui/react/dist/floating-ui.react.mjs"
|
|
2293
2293
|
/*!********************************************************************!*\
|
|
2294
2294
|
!*** ./node_modules/@floating-ui/react/dist/floating-ui.react.mjs ***!
|
|
2295
2295
|
\********************************************************************/
|
|
2296
|
-
|
|
2296
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
2297
2297
|
|
|
2298
2298
|
"use strict";
|
|
2299
2299
|
var react__WEBPACK_IMPORTED_MODULE_0___namespace_cache;
|
|
@@ -6950,13 +6950,13 @@ function safePolygon(options) {
|
|
|
6950
6950
|
|
|
6951
6951
|
|
|
6952
6952
|
|
|
6953
|
-
/***/ }
|
|
6953
|
+
/***/ },
|
|
6954
6954
|
|
|
6955
|
-
/***/ "./node_modules/@floating-ui/react/dist/floating-ui.react.utils.mjs"
|
|
6955
|
+
/***/ "./node_modules/@floating-ui/react/dist/floating-ui.react.utils.mjs"
|
|
6956
6956
|
/*!**************************************************************************!*\
|
|
6957
6957
|
!*** ./node_modules/@floating-ui/react/dist/floating-ui.react.utils.mjs ***!
|
|
6958
6958
|
\**************************************************************************/
|
|
6959
|
-
|
|
6959
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
6960
6960
|
|
|
6961
6961
|
"use strict";
|
|
6962
6962
|
var react__WEBPACK_IMPORTED_MODULE_1___namespace_cache;
|
|
@@ -7549,13 +7549,13 @@ function enableFocusInside(container) {
|
|
|
7549
7549
|
|
|
7550
7550
|
|
|
7551
7551
|
|
|
7552
|
-
/***/ }
|
|
7552
|
+
/***/ },
|
|
7553
7553
|
|
|
7554
|
-
/***/ "./node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs"
|
|
7554
|
+
/***/ "./node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs"
|
|
7555
7555
|
/*!************************************************************************!*\
|
|
7556
7556
|
!*** ./node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs ***!
|
|
7557
7557
|
\************************************************************************/
|
|
7558
|
-
|
|
7558
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
7559
7559
|
|
|
7560
7560
|
"use strict";
|
|
7561
7561
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7744,13 +7744,13 @@ function getFrameElement(win) {
|
|
|
7744
7744
|
|
|
7745
7745
|
|
|
7746
7746
|
|
|
7747
|
-
/***/ }
|
|
7747
|
+
/***/ },
|
|
7748
7748
|
|
|
7749
|
-
/***/ "./node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs"
|
|
7749
|
+
/***/ "./node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs"
|
|
7750
7750
|
/*!********************************************************************!*\
|
|
7751
7751
|
!*** ./node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs ***!
|
|
7752
7752
|
\********************************************************************/
|
|
7753
|
-
|
|
7753
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
7754
7754
|
|
|
7755
7755
|
"use strict";
|
|
7756
7756
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -7921,101 +7921,102 @@ function rectToClientRect(rect) {
|
|
|
7921
7921
|
|
|
7922
7922
|
|
|
7923
7923
|
|
|
7924
|
-
/***/ }
|
|
7924
|
+
/***/ },
|
|
7925
7925
|
|
|
7926
|
-
/***/ "./node_modules/@react-hive/honey-utils/dist/index.mjs"
|
|
7926
|
+
/***/ "./node_modules/@react-hive/honey-utils/dist/index.mjs"
|
|
7927
7927
|
/*!*************************************************************!*\
|
|
7928
7928
|
!*** ./node_modules/@react-hive/honey-utils/dist/index.mjs ***!
|
|
7929
7929
|
\*************************************************************/
|
|
7930
|
-
|
|
7930
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
7931
7931
|
|
|
7932
7932
|
"use strict";
|
|
7933
7933
|
__webpack_require__.r(__webpack_exports__);
|
|
7934
7934
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
7935
|
-
/* harmony export */ FOCUSABLE_HTML_TAGS: () => (/* binding */
|
|
7935
|
+
/* harmony export */ FOCUSABLE_HTML_TAGS: () => (/* binding */ ne),
|
|
7936
7936
|
/* harmony export */ assert: () => (/* binding */ t),
|
|
7937
|
-
/* harmony export */ blobToFile: () => (/* binding */
|
|
7938
|
-
/* harmony export */ calculateEuclideanDistance: () => (/* binding */
|
|
7939
|
-
/* harmony export */ calculateMovingSpeed: () => (/* binding */
|
|
7940
|
-
/* harmony export */ calculatePercentage: () => (/* binding */
|
|
7941
|
-
/* harmony export */ camelToDashCase: () => (/* binding */
|
|
7942
|
-
/* harmony export */ camelToWords: () => (/* binding */
|
|
7943
|
-
/* harmony export */ chunk: () => (/* binding */
|
|
7944
|
-
/* harmony export */ cloneBlob: () => (/* binding */
|
|
7945
|
-
/* harmony export */ compact: () => (/* binding */
|
|
7946
|
-
/* harmony export */ compose: () => (/* binding */
|
|
7947
|
-
/* harmony export */ definedProps: () => (/* binding */
|
|
7937
|
+
/* harmony export */ blobToFile: () => (/* binding */ me),
|
|
7938
|
+
/* harmony export */ calculateEuclideanDistance: () => (/* binding */ ee),
|
|
7939
|
+
/* harmony export */ calculateMovingSpeed: () => (/* binding */ te),
|
|
7940
|
+
/* harmony export */ calculatePercentage: () => (/* binding */ re),
|
|
7941
|
+
/* harmony export */ camelToDashCase: () => (/* binding */ W),
|
|
7942
|
+
/* harmony export */ camelToWords: () => (/* binding */ J),
|
|
7943
|
+
/* harmony export */ chunk: () => (/* binding */ P),
|
|
7944
|
+
/* harmony export */ cloneBlob: () => (/* binding */ ie),
|
|
7945
|
+
/* harmony export */ compact: () => (/* binding */ k),
|
|
7946
|
+
/* harmony export */ compose: () => (/* binding */ C),
|
|
7947
|
+
/* harmony export */ definedProps: () => (/* binding */ Ae),
|
|
7948
7948
|
/* harmony export */ delay: () => (/* binding */ X),
|
|
7949
|
-
/* harmony export */ difference: () => (/* binding */
|
|
7950
|
-
/* harmony export */ everyAsync: () => (/* binding */
|
|
7951
|
-
/* harmony export */ fileListToFiles: () => (/* binding */
|
|
7952
|
-
/* harmony export */ filterParallel: () => (/* binding */
|
|
7953
|
-
/* harmony export */ filterSequential: () => (/* binding */
|
|
7954
|
-
/* harmony export */ findAsync: () => (/* binding */
|
|
7955
|
-
/* harmony export */ getDOMRectIntersectionRatio: () => (/* binding */
|
|
7956
|
-
/* harmony export */ getElementOffsetRect: () => (/* binding */
|
|
7957
|
-
/* harmony export */ getFocusableHtmlElements: () => (/* binding */
|
|
7958
|
-
/* harmony export */ getLocalStorageCapabilities: () => (/* binding */
|
|
7959
|
-
/* harmony export */ hashString: () => (/* binding */
|
|
7960
|
-
/* harmony export */ intersection: () => (/* binding */
|
|
7961
|
-
/* harmony export */ invokeIfFunction: () => (/* binding */
|
|
7962
|
-
/* harmony export */ isAnchorHtmlElement: () => (/* binding */
|
|
7963
|
-
/* harmony export */ isArray: () => (/* binding */
|
|
7949
|
+
/* harmony export */ difference: () => (/* binding */ E),
|
|
7950
|
+
/* harmony export */ everyAsync: () => (/* binding */ Z),
|
|
7951
|
+
/* harmony export */ fileListToFiles: () => (/* binding */ ge),
|
|
7952
|
+
/* harmony export */ filterParallel: () => (/* binding */ D),
|
|
7953
|
+
/* harmony export */ filterSequential: () => (/* binding */ B),
|
|
7954
|
+
/* harmony export */ findAsync: () => (/* binding */ U),
|
|
7955
|
+
/* harmony export */ getDOMRectIntersectionRatio: () => (/* binding */ oe),
|
|
7956
|
+
/* harmony export */ getElementOffsetRect: () => (/* binding */ se),
|
|
7957
|
+
/* harmony export */ getFocusableHtmlElements: () => (/* binding */ fe),
|
|
7958
|
+
/* harmony export */ getLocalStorageCapabilities: () => (/* binding */ ye),
|
|
7959
|
+
/* harmony export */ hashString: () => (/* binding */ Q),
|
|
7960
|
+
/* harmony export */ intersection: () => (/* binding */ x),
|
|
7961
|
+
/* harmony export */ invokeIfFunction: () => (/* binding */ N),
|
|
7962
|
+
/* harmony export */ isAnchorHtmlElement: () => (/* binding */ le),
|
|
7963
|
+
/* harmony export */ isArray: () => (/* binding */ S),
|
|
7964
7964
|
/* harmony export */ isBlob: () => (/* binding */ f),
|
|
7965
7965
|
/* harmony export */ isBool: () => (/* binding */ s),
|
|
7966
|
-
/* harmony export */ isContentEditableHtmlElement: () => (/* binding */
|
|
7966
|
+
/* harmony export */ isContentEditableHtmlElement: () => (/* binding */ ce),
|
|
7967
7967
|
/* harmony export */ isDate: () => (/* binding */ u),
|
|
7968
|
+
/* harmony export */ isDecimal: () => (/* binding */ A),
|
|
7968
7969
|
/* harmony export */ isDefined: () => (/* binding */ a),
|
|
7969
|
-
/* harmony export */ isEmptyArray: () => (/* binding */
|
|
7970
|
+
/* harmony export */ isEmptyArray: () => (/* binding */ _),
|
|
7970
7971
|
/* harmony export */ isEmptyObject: () => (/* binding */ c),
|
|
7971
7972
|
/* harmony export */ isError: () => (/* binding */ h),
|
|
7972
|
-
/* harmony export */ isFile: () => (/* binding */
|
|
7973
|
+
/* harmony export */ isFile: () => (/* binding */ we),
|
|
7973
7974
|
/* harmony export */ isFiniteNumber: () => (/* binding */ d),
|
|
7974
|
-
/* harmony export */ isFunction: () => (/* binding */
|
|
7975
|
-
/* harmony export */ isHtmlElementFocusable: () => (/* binding */
|
|
7975
|
+
/* harmony export */ isFunction: () => (/* binding */ v),
|
|
7976
|
+
/* harmony export */ isHtmlElementFocusable: () => (/* binding */ ue),
|
|
7976
7977
|
/* harmony export */ isInteger: () => (/* binding */ b),
|
|
7977
|
-
/* harmony export */ isLocalStorageReadable: () => (/* binding */
|
|
7978
|
+
/* harmony export */ isLocalStorageReadable: () => (/* binding */ he),
|
|
7978
7979
|
/* harmony export */ isMap: () => (/* binding */ p),
|
|
7979
7980
|
/* harmony export */ isNil: () => (/* binding */ n),
|
|
7980
|
-
/* harmony export */ isNilOrEmptyString: () => (/* binding */
|
|
7981
|
+
/* harmony export */ isNilOrEmptyString: () => (/* binding */ q),
|
|
7981
7982
|
/* harmony export */ isNull: () => (/* binding */ r),
|
|
7982
7983
|
/* harmony export */ isNumber: () => (/* binding */ o),
|
|
7983
7984
|
/* harmony export */ isObject: () => (/* binding */ l),
|
|
7984
|
-
/* harmony export */ isPromise: () => (/* binding */
|
|
7985
|
+
/* harmony export */ isPromise: () => (/* binding */ R),
|
|
7985
7986
|
/* harmony export */ isRegExp: () => (/* binding */ w),
|
|
7986
7987
|
/* harmony export */ isSet: () => (/* binding */ g),
|
|
7987
|
-
/* harmony export */ isString: () => (/* binding */
|
|
7988
|
+
/* harmony export */ isString: () => (/* binding */ V),
|
|
7988
7989
|
/* harmony export */ isSymbol: () => (/* binding */ m),
|
|
7989
7990
|
/* harmony export */ isUndefined: () => (/* binding */ i),
|
|
7990
7991
|
/* harmony export */ isValidDate: () => (/* binding */ y),
|
|
7991
|
-
/* harmony export */ noop: () => (/* binding */
|
|
7992
|
-
/* harmony export */ not: () => (/* binding */
|
|
7993
|
-
/* harmony export */ once: () => (/* binding */
|
|
7994
|
-
/* harmony export */ parse2DMatrix: () => (/* binding */
|
|
7995
|
-
/* harmony export */ parseFileName: () => (/* binding */
|
|
7996
|
-
/* harmony export */ pipe: () => (/* binding */
|
|
7997
|
-
/* harmony export */ readFilesFromDataTransfer: () => (/* binding */
|
|
7998
|
-
/* harmony export */ reduceAsync: () => (/* binding */
|
|
7992
|
+
/* harmony export */ noop: () => (/* binding */ O),
|
|
7993
|
+
/* harmony export */ not: () => (/* binding */ F),
|
|
7994
|
+
/* harmony export */ once: () => (/* binding */ L),
|
|
7995
|
+
/* harmony export */ parse2DMatrix: () => (/* binding */ ae),
|
|
7996
|
+
/* harmony export */ parseFileName: () => (/* binding */ pe),
|
|
7997
|
+
/* harmony export */ pipe: () => (/* binding */ T),
|
|
7998
|
+
/* harmony export */ readFilesFromDataTransfer: () => (/* binding */ be),
|
|
7999
|
+
/* harmony export */ reduceAsync: () => (/* binding */ G),
|
|
7999
8000
|
/* harmony export */ retry: () => (/* binding */ j),
|
|
8000
|
-
/* harmony export */ runParallel: () => (/* binding */
|
|
8001
|
-
/* harmony export */ runSequential: () => (/* binding */
|
|
8002
|
-
/* harmony export */ someAsync: () => (/* binding */
|
|
8003
|
-
/* harmony export */ splitStringIntoWords: () => (/* binding */
|
|
8004
|
-
/* harmony export */ timeout: () => (/* binding */
|
|
8005
|
-
/* harmony export */ toKebabCase: () => (/* binding */
|
|
8006
|
-
/* harmony export */ traverseFileSystemDirectory: () => (/* binding */
|
|
8007
|
-
/* harmony export */ unique: () => (/* binding */
|
|
8001
|
+
/* harmony export */ runParallel: () => (/* binding */ $),
|
|
8002
|
+
/* harmony export */ runSequential: () => (/* binding */ Y),
|
|
8003
|
+
/* harmony export */ someAsync: () => (/* binding */ z),
|
|
8004
|
+
/* harmony export */ splitStringIntoWords: () => (/* binding */ K),
|
|
8005
|
+
/* harmony export */ timeout: () => (/* binding */ I),
|
|
8006
|
+
/* harmony export */ toKebabCase: () => (/* binding */ H),
|
|
8007
|
+
/* harmony export */ traverseFileSystemDirectory: () => (/* binding */ de),
|
|
8008
|
+
/* harmony export */ unique: () => (/* binding */ M)
|
|
8008
8009
|
/* harmony export */ });
|
|
8009
|
-
var e={};function t(e,t){if(!e)throw new Error(t)}e.d=(t,r)=>{for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);const r=e=>null===e,n=e=>null==e,a=e=>null!=e,i=e=>void 0===e,o=e=>"number"==typeof e,s=e=>"boolean"==typeof e,l=e=>"object"==typeof e,c=e=>l(e)&&!r(e)&&0===Object.keys(e).length,u=e=>e instanceof Date,f=e=>e instanceof Blob,h=e=>e instanceof Error,y=e=>u(e)&&!isNaN(e.getTime()),w=e=>e instanceof RegExp,p=e=>e instanceof Map,g=e=>e instanceof Set,m=e=>"symbol"==typeof e,d=e=>o(e)&&isFinite(e),b=e=>o(e)&&Number.isInteger(e),A=e=>Array.isArray(e),
|
|
8010
|
+
var e={};function t(e,t){if(!e)throw new Error(t)}e.d=(t,r)=>{for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);const r=e=>null===e,n=e=>null==e,a=e=>null!=e,i=e=>void 0===e,o=e=>"number"==typeof e,s=e=>"boolean"==typeof e,l=e=>"object"==typeof e,c=e=>l(e)&&!r(e)&&0===Object.keys(e).length,u=e=>e instanceof Date,f=e=>e instanceof Blob,h=e=>e instanceof Error,y=e=>u(e)&&!isNaN(e.getTime()),w=e=>e instanceof RegExp,p=e=>e instanceof Map,g=e=>e instanceof Set,m=e=>"symbol"==typeof e,d=e=>o(e)&&isFinite(e),b=e=>o(e)&&Number.isInteger(e),A=e=>d(e)&&!Number.isInteger(e),S=e=>Array.isArray(e),_=e=>S(e)&&0===e.length,k=e=>e.filter(Boolean),M=e=>[...new Set(e)],P=(e,r)=>(t(r>0,"Chunk size must be greater than 0"),Array.from({length:Math.ceil(e.length/r)},(t,n)=>e.slice(n*r,(n+1)*r))),x=(...e)=>{if(0===e.length)return[];if(1===e.length)return[...e[0]];const[t,...r]=e;return M(t).filter(e=>r.every(t=>t.includes(e)))},E=(e,t)=>e.filter(e=>!t.includes(e)),T=(...e)=>t=>e.reduce((e,t)=>t(e),t),C=(...e)=>t=>e.reduceRight((e,t)=>t(e),t),O=()=>{},v=e=>"function"==typeof e,F=e=>(...t)=>!e(...t),N=(e,...t)=>"function"==typeof e?e(...t):e,X=e=>new Promise(t=>setTimeout(t,e)),I=async(e,t,r="Operation timed out")=>{try{return await Promise.race([e,X(t).then(()=>Promise.reject(new Error(r)))])}finally{}},j=(e,{maxAttempts:t=3,delayMs:r=300,backoff:n=!0,onRetry:a}={})=>async(...i)=>{let o;for(let s=1;s<=t;s++)try{return await e(...i)}catch(e){if(o=e,s<t){a?.(s,e);const t=n?r*2**(s-1):r;await X(t)}}throw o},L=e=>{let t,r=!1;return function(...n){return r||(r=!0,t=e.apply(this,n)),t}},R=e=>v(e?.then),Y=async(e,t)=>{const r=[];for(let n=0;n<e.length;n++)r.push(await t(e[n],n,e));return r},$=async(e,t)=>Promise.all(e.map(t)),B=async(e,t)=>{const r=[];for(let n=0;n<e.length;n++){const a=e[n];await t(a,n,e)&&r.push(a)}return r},D=async(e,t)=>{const r=await $(e,async(e,r,n)=>!!await t(e,r,n)&&e);return k(r)},z=async(e,t)=>{for(let r=0;r<e.length;r++)if(await t(e[r],r,e))return!0;return!1},Z=async(e,t)=>{for(let r=0;r<e.length;r++)if(!await t(e[r],r,e))return!1;return!0},G=async(e,t,r)=>{let n=r;for(let r=0;r<e.length;r++)n=await t(n,e[r],r,e);return n},U=async(e,t)=>{for(let r=0;r<e.length;r++)if(await t(e[r],r,e))return e[r];return null},V=e=>"string"==typeof e,q=e=>""===e||n(e),H=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),W=e=>{const t=e.charAt(0),r=e.slice(1);return t.toLowerCase()+r.replace(/[A-Z]/g,e=>`-${e.toLowerCase()}`)},J=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1 $2"),K=e=>e.split(" ").filter(Boolean),Q=e=>{let t=5381;for(let r=0;r<e.length;r++)t=33*t^e.charCodeAt(r);return(t>>>0).toString(36)},ee=(e,t,r,n)=>{const a=r-e,i=n-t;return Math.hypot(a,i)},te=(e,t)=>Math.abs(e/t),re=(e,t)=>e*t/100,ne=["INPUT","SELECT","TEXTAREA","BUTTON","A"],ae=e=>{const t=window.getComputedStyle(e).getPropertyValue("transform").match(/^matrix\((.+)\)$/);if(!t)return{translateX:0,translateY:0,scaleX:1,scaleY:1,skewX:0,skewY:0};const[r,n,a,i,o,s]=t[1].split(", ").map(parseFloat);return{translateX:o,translateY:s,scaleX:r,scaleY:i,skewX:a,skewY:n}},ie=e=>new Blob([e],{type:e.type}),oe=(e,t)=>Math.max(0,Math.min(e.right,t.right)-Math.max(e.left,t.left))*Math.max(0,Math.min(e.bottom,t.bottom)-Math.max(e.top,t.top))/(t.width*t.height),se=e=>new DOMRect(e.offsetLeft,e.offsetTop,e.clientWidth,e.clientHeight),le=e=>"A"===e.tagName,ce=e=>"true"===e.getAttribute("contenteditable"),ue=e=>{if(!e)return!1;const t=window.getComputedStyle(e);if("hidden"===t.visibility||"none"===t.display)return!1;if("disabled"in e&&e.disabled)return!1;const r=e.getAttribute("tabindex");return"-1"!==r&&(ne.includes(e.tagName)?!le(e)||""!==e.href:!!ce(e)||null!==r)},fe=e=>Array.from(e.querySelectorAll("*")).filter(ue),he=()=>{if("undefined"==typeof window||!window.localStorage)return!1;try{return window.localStorage.getItem("__non_existing_key__"),!0}catch{return!1}},ye=()=>{if(!he())return{readable:!1,writable:!1};try{const e="__test_write__";return window.localStorage.setItem(e,"1"),window.localStorage.removeItem(e),{readable:!0,writable:!0}}catch{}return{readable:!0,writable:!1}},we=e=>e instanceof File,pe=e=>{const t=e.lastIndexOf(".");return t<=0||t===e.length-1?[e,""]:[e.slice(0,t),e.slice(t+1).toLowerCase()]},ge=e=>{if(!e)return[];const t=[];for(let r=0;r<e.length;r++)t.push(e[r]);return t},me=(e,t)=>new File([e],t,{type:e.type}),de=async(e,{skipFiles:t=[".DS_Store","Thumbs.db","desktop.ini","ehthumbs.db",".Spotlight-V100",".Trashes",".fseventsd","__MACOSX"]}={})=>{const r=new Set(t),n=await(async e=>{const t=e.createReader(),r=async()=>new Promise((e,n)=>{t.readEntries(async t=>{if(t.length)try{const n=await r();e([...t,...n])}catch(e){n(e)}else e([])},n)});return r()})(e);return(await $(n,async e=>e.isDirectory?de(e,{skipFiles:t}):r.has(e.name)?[]:[await new Promise((t,r)=>{e.file(t,r)})])).flat()},be=async(e,t={})=>{const r=e?.items;if(!r)return[];const n=[];for(let e=0;e<r.length;e++){const a=r[e];if("webkitGetAsEntry"in a){const e=a.webkitGetAsEntry?.();if(e?.isDirectory){n.push(de(e,t));continue}if(e?.isFile){n.push(new Promise((t,r)=>e.file(e=>t([e]),r)));continue}}const i=a.getAsFile();i&&n.push(Promise.resolve([i]))}return(await Promise.all(n)).flat()},Ae=e=>Object.entries(e).reduce((e,[t,r])=>(void 0!==r&&(e[t]=r),e),{});
|
|
8010
8011
|
//# sourceMappingURL=index.mjs.map
|
|
8011
8012
|
|
|
8012
|
-
/***/ }
|
|
8013
|
+
/***/ },
|
|
8013
8014
|
|
|
8014
|
-
/***/ "./node_modules/lodash.merge/index.js"
|
|
8015
|
+
/***/ "./node_modules/lodash.merge/index.js"
|
|
8015
8016
|
/*!********************************************!*\
|
|
8016
8017
|
!*** ./node_modules/lodash.merge/index.js ***!
|
|
8017
8018
|
\********************************************/
|
|
8018
|
-
|
|
8019
|
+
(module, exports, __webpack_require__) {
|
|
8019
8020
|
|
|
8020
8021
|
/* module decorator */ module = __webpack_require__.nmd(module);
|
|
8021
8022
|
/**
|
|
@@ -9997,13 +9998,13 @@ function stubFalse() {
|
|
|
9997
9998
|
module.exports = merge;
|
|
9998
9999
|
|
|
9999
10000
|
|
|
10000
|
-
/***/ }
|
|
10001
|
+
/***/ },
|
|
10001
10002
|
|
|
10002
|
-
/***/ "./node_modules/lodash.throttle/index.js"
|
|
10003
|
+
/***/ "./node_modules/lodash.throttle/index.js"
|
|
10003
10004
|
/*!***********************************************!*\
|
|
10004
10005
|
!*** ./node_modules/lodash.throttle/index.js ***!
|
|
10005
10006
|
\***********************************************/
|
|
10006
|
-
|
|
10007
|
+
(module, __unused_webpack_exports, __webpack_require__) {
|
|
10007
10008
|
|
|
10008
10009
|
/**
|
|
10009
10010
|
* lodash (Custom Build) <https://lodash.com/>
|
|
@@ -10446,13 +10447,13 @@ function toNumber(value) {
|
|
|
10446
10447
|
module.exports = throttle;
|
|
10447
10448
|
|
|
10448
10449
|
|
|
10449
|
-
/***/ }
|
|
10450
|
+
/***/ },
|
|
10450
10451
|
|
|
10451
|
-
/***/ "./node_modules/react-dom/cjs/react-dom.development.js"
|
|
10452
|
+
/***/ "./node_modules/react-dom/cjs/react-dom.development.js"
|
|
10452
10453
|
/*!*************************************************************!*\
|
|
10453
10454
|
!*** ./node_modules/react-dom/cjs/react-dom.development.js ***!
|
|
10454
10455
|
\*************************************************************/
|
|
10455
|
-
|
|
10456
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
10456
10457
|
|
|
10457
10458
|
"use strict";
|
|
10458
10459
|
/**
|
|
@@ -10881,13 +10882,13 @@ module.exports = throttle;
|
|
|
10881
10882
|
})();
|
|
10882
10883
|
|
|
10883
10884
|
|
|
10884
|
-
/***/ }
|
|
10885
|
+
/***/ },
|
|
10885
10886
|
|
|
10886
|
-
/***/ "./node_modules/react-dom/index.js"
|
|
10887
|
+
/***/ "./node_modules/react-dom/index.js"
|
|
10887
10888
|
/*!*****************************************!*\
|
|
10888
10889
|
!*** ./node_modules/react-dom/index.js ***!
|
|
10889
10890
|
\*****************************************/
|
|
10890
|
-
|
|
10891
|
+
(module, __unused_webpack_exports, __webpack_require__) {
|
|
10891
10892
|
|
|
10892
10893
|
"use strict";
|
|
10893
10894
|
|
|
@@ -10920,13 +10921,13 @@ if (false) // removed by dead control flow
|
|
|
10920
10921
|
}
|
|
10921
10922
|
|
|
10922
10923
|
|
|
10923
|
-
/***/ }
|
|
10924
|
+
/***/ },
|
|
10924
10925
|
|
|
10925
|
-
/***/ "./node_modules/react/cjs/react-jsx-runtime.development.js"
|
|
10926
|
+
/***/ "./node_modules/react/cjs/react-jsx-runtime.development.js"
|
|
10926
10927
|
/*!*****************************************************************!*\
|
|
10927
10928
|
!*** ./node_modules/react/cjs/react-jsx-runtime.development.js ***!
|
|
10928
10929
|
\*****************************************************************/
|
|
10929
|
-
|
|
10930
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
10930
10931
|
|
|
10931
10932
|
"use strict";
|
|
10932
10933
|
/**
|
|
@@ -11283,13 +11284,13 @@ if (false) // removed by dead control flow
|
|
|
11283
11284
|
})();
|
|
11284
11285
|
|
|
11285
11286
|
|
|
11286
|
-
/***/ }
|
|
11287
|
+
/***/ },
|
|
11287
11288
|
|
|
11288
|
-
/***/ "./node_modules/react/jsx-runtime.js"
|
|
11289
|
+
/***/ "./node_modules/react/jsx-runtime.js"
|
|
11289
11290
|
/*!*******************************************!*\
|
|
11290
11291
|
!*** ./node_modules/react/jsx-runtime.js ***!
|
|
11291
11292
|
\*******************************************/
|
|
11292
|
-
|
|
11293
|
+
(module, __unused_webpack_exports, __webpack_require__) {
|
|
11293
11294
|
|
|
11294
11295
|
"use strict";
|
|
11295
11296
|
|
|
@@ -11300,13 +11301,13 @@ if (false) // removed by dead control flow
|
|
|
11300
11301
|
}
|
|
11301
11302
|
|
|
11302
11303
|
|
|
11303
|
-
/***/ }
|
|
11304
|
+
/***/ },
|
|
11304
11305
|
|
|
11305
|
-
/***/ "./node_modules/tabbable/dist/index.esm.js"
|
|
11306
|
+
/***/ "./node_modules/tabbable/dist/index.esm.js"
|
|
11306
11307
|
/*!*************************************************!*\
|
|
11307
11308
|
!*** ./node_modules/tabbable/dist/index.esm.js ***!
|
|
11308
11309
|
\*************************************************/
|
|
11309
|
-
|
|
11310
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
11310
11311
|
|
|
11311
11312
|
"use strict";
|
|
11312
11313
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11915,13 +11916,13 @@ var isFocusable = function isFocusable(node, options) {
|
|
|
11915
11916
|
//# sourceMappingURL=index.esm.js.map
|
|
11916
11917
|
|
|
11917
11918
|
|
|
11918
|
-
/***/ }
|
|
11919
|
+
/***/ },
|
|
11919
11920
|
|
|
11920
|
-
/***/ "./src/components/HoneyBox/HoneyBox.ts"
|
|
11921
|
+
/***/ "./src/components/HoneyBox/HoneyBox.ts"
|
|
11921
11922
|
/*!*********************************************!*\
|
|
11922
11923
|
!*** ./src/components/HoneyBox/HoneyBox.ts ***!
|
|
11923
11924
|
\*********************************************/
|
|
11924
|
-
|
|
11925
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
11925
11926
|
|
|
11926
11927
|
"use strict";
|
|
11927
11928
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11945,13 +11946,13 @@ const HoneyBox = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.styled)
|
|
|
11945
11946
|
`;
|
|
11946
11947
|
|
|
11947
11948
|
|
|
11948
|
-
/***/ }
|
|
11949
|
+
/***/ },
|
|
11949
11950
|
|
|
11950
|
-
/***/ "./src/components/HoneyBox/index.ts"
|
|
11951
|
+
/***/ "./src/components/HoneyBox/index.ts"
|
|
11951
11952
|
/*!******************************************!*\
|
|
11952
11953
|
!*** ./src/components/HoneyBox/index.ts ***!
|
|
11953
11954
|
\******************************************/
|
|
11954
|
-
|
|
11955
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
11955
11956
|
|
|
11956
11957
|
"use strict";
|
|
11957
11958
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11962,13 +11963,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11962
11963
|
|
|
11963
11964
|
|
|
11964
11965
|
|
|
11965
|
-
/***/ }
|
|
11966
|
+
/***/ },
|
|
11966
11967
|
|
|
11967
|
-
/***/ "./src/components/HoneyContextMenu/HoneyContextMenu.tsx"
|
|
11968
|
+
/***/ "./src/components/HoneyContextMenu/HoneyContextMenu.tsx"
|
|
11968
11969
|
/*!**************************************************************!*\
|
|
11969
11970
|
!*** ./src/components/HoneyContextMenu/HoneyContextMenu.tsx ***!
|
|
11970
11971
|
\**************************************************************/
|
|
11971
|
-
|
|
11972
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
11972
11973
|
|
|
11973
11974
|
"use strict";
|
|
11974
11975
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -11990,26 +11991,26 @@ const HoneyContextMenu = ({ children, subProps, options, optionProps, clickOptio
|
|
|
11990
11991
|
};
|
|
11991
11992
|
|
|
11992
11993
|
|
|
11993
|
-
/***/ }
|
|
11994
|
+
/***/ },
|
|
11994
11995
|
|
|
11995
|
-
/***/ "./src/components/HoneyContextMenu/HoneyContextMenu.types.ts"
|
|
11996
|
+
/***/ "./src/components/HoneyContextMenu/HoneyContextMenu.types.ts"
|
|
11996
11997
|
/*!*******************************************************************!*\
|
|
11997
11998
|
!*** ./src/components/HoneyContextMenu/HoneyContextMenu.types.ts ***!
|
|
11998
11999
|
\*******************************************************************/
|
|
11999
|
-
|
|
12000
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12000
12001
|
|
|
12001
12002
|
"use strict";
|
|
12002
12003
|
__webpack_require__.r(__webpack_exports__);
|
|
12003
12004
|
|
|
12004
12005
|
|
|
12005
12006
|
|
|
12006
|
-
/***/ }
|
|
12007
|
+
/***/ },
|
|
12007
12008
|
|
|
12008
|
-
/***/ "./src/components/HoneyContextMenu/HoneyContextMenuContent.tsx"
|
|
12009
|
+
/***/ "./src/components/HoneyContextMenu/HoneyContextMenuContent.tsx"
|
|
12009
12010
|
/*!*********************************************************************!*\
|
|
12010
12011
|
!*** ./src/components/HoneyContextMenu/HoneyContextMenuContent.tsx ***!
|
|
12011
12012
|
\*********************************************************************/
|
|
12012
|
-
|
|
12013
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12013
12014
|
|
|
12014
12015
|
"use strict";
|
|
12015
12016
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12042,13 +12043,13 @@ const HoneyContextMenuContent = ({ options, optionProps, floatingOptions, ...pop
|
|
|
12042
12043
|
};
|
|
12043
12044
|
|
|
12044
12045
|
|
|
12045
|
-
/***/ }
|
|
12046
|
+
/***/ },
|
|
12046
12047
|
|
|
12047
|
-
/***/ "./src/components/HoneyContextMenu/HoneyContextMenuContentOption.tsx"
|
|
12048
|
+
/***/ "./src/components/HoneyContextMenu/HoneyContextMenuContentOption.tsx"
|
|
12048
12049
|
/*!***************************************************************************!*\
|
|
12049
12050
|
!*** ./src/components/HoneyContextMenu/HoneyContextMenuContentOption.tsx ***!
|
|
12050
12051
|
\***************************************************************************/
|
|
12051
|
-
|
|
12052
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12052
12053
|
|
|
12053
12054
|
"use strict";
|
|
12054
12055
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12070,13 +12071,13 @@ const HoneyContextMenuContentOption = ({ option, ...props }) => {
|
|
|
12070
12071
|
};
|
|
12071
12072
|
|
|
12072
12073
|
|
|
12073
|
-
/***/ }
|
|
12074
|
+
/***/ },
|
|
12074
12075
|
|
|
12075
|
-
/***/ "./src/components/HoneyContextMenu/index.ts"
|
|
12076
|
+
/***/ "./src/components/HoneyContextMenu/index.ts"
|
|
12076
12077
|
/*!**************************************************!*\
|
|
12077
12078
|
!*** ./src/components/HoneyContextMenu/index.ts ***!
|
|
12078
12079
|
\**************************************************/
|
|
12079
|
-
|
|
12080
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12080
12081
|
|
|
12081
12082
|
"use strict";
|
|
12082
12083
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12089,13 +12090,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12089
12090
|
|
|
12090
12091
|
|
|
12091
12092
|
|
|
12092
|
-
/***/ }
|
|
12093
|
+
/***/ },
|
|
12093
12094
|
|
|
12094
|
-
/***/ "./src/components/HoneyFlex/HoneyFlex.ts"
|
|
12095
|
+
/***/ "./src/components/HoneyFlex/HoneyFlex.ts"
|
|
12095
12096
|
/*!***********************************************!*\
|
|
12096
12097
|
!*** ./src/components/HoneyFlex/HoneyFlex.ts ***!
|
|
12097
12098
|
\***********************************************/
|
|
12098
|
-
|
|
12099
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12099
12100
|
|
|
12100
12101
|
"use strict";
|
|
12101
12102
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12105,7 +12106,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12105
12106
|
/* harmony export */ });
|
|
12106
12107
|
/* harmony import */ var _react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @react-hive/honey-style */ "@react-hive/honey-style");
|
|
12107
12108
|
/* harmony import */ var _react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__);
|
|
12108
|
-
/* harmony import */ var
|
|
12109
|
+
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../constants */ "./src/constants.ts");
|
|
12110
|
+
/* harmony import */ var _HoneyBox__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../HoneyBox */ "./src/components/HoneyBox/index.ts");
|
|
12111
|
+
|
|
12109
12112
|
|
|
12110
12113
|
|
|
12111
12114
|
/**
|
|
@@ -12140,12 +12143,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12140
12143
|
*
|
|
12141
12144
|
* ---
|
|
12142
12145
|
*
|
|
12143
|
-
* @example
|
|
12146
|
+
* @example Horizontal layout
|
|
12144
12147
|
* ```tsx
|
|
12145
12148
|
* <HoneyFlex $gap={2} row/>
|
|
12146
12149
|
* ```
|
|
12147
12150
|
*
|
|
12148
|
-
* @example
|
|
12151
|
+
* @example Column layout
|
|
12149
12152
|
* ```tsx
|
|
12150
12153
|
* <HoneyFlex $gap={3} />
|
|
12151
12154
|
* ```
|
|
@@ -12157,14 +12160,34 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12157
12160
|
* </HoneyFlex>
|
|
12158
12161
|
* ```
|
|
12159
12162
|
*/
|
|
12160
|
-
const HoneyFlex = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.styled)((0,
|
|
12161
|
-
|
|
12162
|
-
|
|
12163
|
-
|
|
12164
|
-
|
|
12165
|
-
|
|
12166
|
-
|
|
12167
|
-
|
|
12163
|
+
const HoneyFlex = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.styled)((0,_HoneyBox__WEBPACK_IMPORTED_MODULE_2__.HoneyBox), ({ row = false, center = false, centerX = false, centerY = false, $display = 'flex', $flexDirection = row ? 'row' : 'column', $alignItems, $justifyContent, ...props }) => {
|
|
12164
|
+
const affectsAlignItems = center || (row ? centerY : centerX);
|
|
12165
|
+
const affectsJustifyContent = center || (row ? centerX : centerY);
|
|
12166
|
+
if (_constants__WEBPACK_IMPORTED_MODULE_1__.__DEV__) {
|
|
12167
|
+
const hasAlignConflict = affectsAlignItems && $alignItems !== undefined;
|
|
12168
|
+
const hasJustifyConflict = affectsJustifyContent && $justifyContent !== undefined;
|
|
12169
|
+
if (hasAlignConflict || hasJustifyConflict) {
|
|
12170
|
+
console.warn([
|
|
12171
|
+
'[@react-hive/honey-layout]: HoneyFlex.',
|
|
12172
|
+
'Semantic centering props conflict with explicit flex alignment styles:',
|
|
12173
|
+
hasAlignConflict && ` - align-items is controlled by both semantics and $alignItems`,
|
|
12174
|
+
hasJustifyConflict &&
|
|
12175
|
+
` - justify-content is controlled by both semantics and $justifyContent`,
|
|
12176
|
+
'Explicit styles always win. Remove one side to silence this warning.',
|
|
12177
|
+
]
|
|
12178
|
+
.filter(Boolean)
|
|
12179
|
+
.join('\n'));
|
|
12180
|
+
}
|
|
12181
|
+
}
|
|
12182
|
+
return {
|
|
12183
|
+
$display,
|
|
12184
|
+
$flexDirection,
|
|
12185
|
+
$alignItems: $alignItems ?? (affectsAlignItems ? 'center' : undefined),
|
|
12186
|
+
$justifyContent: $justifyContent ?? (affectsJustifyContent ? 'center' : undefined),
|
|
12187
|
+
// Data
|
|
12188
|
+
'data-testid': props['data-testid'] ?? 'honey-flex',
|
|
12189
|
+
};
|
|
12190
|
+
}) ``;
|
|
12168
12191
|
/**
|
|
12169
12192
|
* @deprecated Use {@link HoneyFlex} instead.
|
|
12170
12193
|
*
|
|
@@ -12173,13 +12196,13 @@ const HoneyFlex = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.styled
|
|
|
12173
12196
|
const HoneyFlexBox = HoneyFlex;
|
|
12174
12197
|
|
|
12175
12198
|
|
|
12176
|
-
/***/ }
|
|
12199
|
+
/***/ },
|
|
12177
12200
|
|
|
12178
|
-
/***/ "./src/components/HoneyFlex/index.ts"
|
|
12201
|
+
/***/ "./src/components/HoneyFlex/index.ts"
|
|
12179
12202
|
/*!*******************************************!*\
|
|
12180
12203
|
!*** ./src/components/HoneyFlex/index.ts ***!
|
|
12181
12204
|
\*******************************************/
|
|
12182
|
-
|
|
12205
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12183
12206
|
|
|
12184
12207
|
"use strict";
|
|
12185
12208
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12191,13 +12214,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12191
12214
|
|
|
12192
12215
|
|
|
12193
12216
|
|
|
12194
|
-
/***/ }
|
|
12217
|
+
/***/ },
|
|
12195
12218
|
|
|
12196
|
-
/***/ "./src/components/HoneyGrid/HoneyGrid.tsx"
|
|
12219
|
+
/***/ "./src/components/HoneyGrid/HoneyGrid.tsx"
|
|
12197
12220
|
/*!************************************************!*\
|
|
12198
12221
|
!*** ./src/components/HoneyGrid/HoneyGrid.tsx ***!
|
|
12199
12222
|
\************************************************/
|
|
12200
|
-
|
|
12223
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12201
12224
|
|
|
12202
12225
|
"use strict";
|
|
12203
12226
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12224,13 +12247,13 @@ const HoneyGrid = ({ ref, children, columns, spacing, columnsGrowing = true, app
|
|
|
12224
12247
|
};
|
|
12225
12248
|
|
|
12226
12249
|
|
|
12227
|
-
/***/ }
|
|
12250
|
+
/***/ },
|
|
12228
12251
|
|
|
12229
|
-
/***/ "./src/components/HoneyGrid/HoneyGridContext.ts"
|
|
12252
|
+
/***/ "./src/components/HoneyGrid/HoneyGridContext.ts"
|
|
12230
12253
|
/*!******************************************************!*\
|
|
12231
12254
|
!*** ./src/components/HoneyGrid/HoneyGridContext.ts ***!
|
|
12232
12255
|
\******************************************************/
|
|
12233
|
-
|
|
12256
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12234
12257
|
|
|
12235
12258
|
"use strict";
|
|
12236
12259
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12243,13 +12266,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12243
12266
|
const HoneyGridContext = (0,react__WEBPACK_IMPORTED_MODULE_0__.createContext)(undefined);
|
|
12244
12267
|
|
|
12245
12268
|
|
|
12246
|
-
/***/ }
|
|
12269
|
+
/***/ },
|
|
12247
12270
|
|
|
12248
|
-
/***/ "./src/components/HoneyGrid/HoneyGridStyled.ts"
|
|
12271
|
+
/***/ "./src/components/HoneyGrid/HoneyGridStyled.ts"
|
|
12249
12272
|
/*!*****************************************************!*\
|
|
12250
12273
|
!*** ./src/components/HoneyGrid/HoneyGridStyled.ts ***!
|
|
12251
12274
|
\*****************************************************/
|
|
12252
|
-
|
|
12275
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12253
12276
|
|
|
12254
12277
|
"use strict";
|
|
12255
12278
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12278,13 +12301,13 @@ const HoneyGridStyled = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
12278
12301
|
`;
|
|
12279
12302
|
|
|
12280
12303
|
|
|
12281
|
-
/***/ }
|
|
12304
|
+
/***/ },
|
|
12282
12305
|
|
|
12283
|
-
/***/ "./src/components/HoneyGrid/hooks/index.ts"
|
|
12306
|
+
/***/ "./src/components/HoneyGrid/hooks/index.ts"
|
|
12284
12307
|
/*!*************************************************!*\
|
|
12285
12308
|
!*** ./src/components/HoneyGrid/hooks/index.ts ***!
|
|
12286
12309
|
\*************************************************/
|
|
12287
|
-
|
|
12310
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12288
12311
|
|
|
12289
12312
|
"use strict";
|
|
12290
12313
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12295,13 +12318,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12295
12318
|
|
|
12296
12319
|
|
|
12297
12320
|
|
|
12298
|
-
/***/ }
|
|
12321
|
+
/***/ },
|
|
12299
12322
|
|
|
12300
|
-
/***/ "./src/components/HoneyGrid/hooks/use-honey-grid-context.ts"
|
|
12323
|
+
/***/ "./src/components/HoneyGrid/hooks/use-honey-grid-context.ts"
|
|
12301
12324
|
/*!******************************************************************!*\
|
|
12302
12325
|
!*** ./src/components/HoneyGrid/hooks/use-honey-grid-context.ts ***!
|
|
12303
12326
|
\******************************************************************/
|
|
12304
|
-
|
|
12327
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12305
12328
|
|
|
12306
12329
|
"use strict";
|
|
12307
12330
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12322,13 +12345,13 @@ const useHoneyGridContext = () => {
|
|
|
12322
12345
|
};
|
|
12323
12346
|
|
|
12324
12347
|
|
|
12325
|
-
/***/ }
|
|
12348
|
+
/***/ },
|
|
12326
12349
|
|
|
12327
|
-
/***/ "./src/components/HoneyGrid/index.ts"
|
|
12350
|
+
/***/ "./src/components/HoneyGrid/index.ts"
|
|
12328
12351
|
/*!*******************************************!*\
|
|
12329
12352
|
!*** ./src/components/HoneyGrid/index.ts ***!
|
|
12330
12353
|
\*******************************************/
|
|
12331
|
-
|
|
12354
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12332
12355
|
|
|
12333
12356
|
"use strict";
|
|
12334
12357
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12342,13 +12365,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12342
12365
|
|
|
12343
12366
|
|
|
12344
12367
|
|
|
12345
|
-
/***/ }
|
|
12368
|
+
/***/ },
|
|
12346
12369
|
|
|
12347
|
-
/***/ "./src/components/HoneyGridColumn/HoneyGridColumn.tsx"
|
|
12370
|
+
/***/ "./src/components/HoneyGridColumn/HoneyGridColumn.tsx"
|
|
12348
12371
|
/*!************************************************************!*\
|
|
12349
12372
|
!*** ./src/components/HoneyGridColumn/HoneyGridColumn.tsx ***!
|
|
12350
12373
|
\************************************************************/
|
|
12351
|
-
|
|
12374
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12352
12375
|
|
|
12353
12376
|
"use strict";
|
|
12354
12377
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12367,26 +12390,26 @@ const HoneyGridColumn = ({ children, ...props }) => {
|
|
|
12367
12390
|
};
|
|
12368
12391
|
|
|
12369
12392
|
|
|
12370
|
-
/***/ }
|
|
12393
|
+
/***/ },
|
|
12371
12394
|
|
|
12372
|
-
/***/ "./src/components/HoneyGridColumn/HoneyGridColumn.types.ts"
|
|
12395
|
+
/***/ "./src/components/HoneyGridColumn/HoneyGridColumn.types.ts"
|
|
12373
12396
|
/*!*****************************************************************!*\
|
|
12374
12397
|
!*** ./src/components/HoneyGridColumn/HoneyGridColumn.types.ts ***!
|
|
12375
12398
|
\*****************************************************************/
|
|
12376
|
-
|
|
12399
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12377
12400
|
|
|
12378
12401
|
"use strict";
|
|
12379
12402
|
__webpack_require__.r(__webpack_exports__);
|
|
12380
12403
|
|
|
12381
12404
|
|
|
12382
12405
|
|
|
12383
|
-
/***/ }
|
|
12406
|
+
/***/ },
|
|
12384
12407
|
|
|
12385
|
-
/***/ "./src/components/HoneyGridColumn/HoneyGridColumnStyled.ts"
|
|
12408
|
+
/***/ "./src/components/HoneyGridColumn/HoneyGridColumnStyled.ts"
|
|
12386
12409
|
/*!*****************************************************************!*\
|
|
12387
12410
|
!*** ./src/components/HoneyGridColumn/HoneyGridColumnStyled.ts ***!
|
|
12388
12411
|
\*****************************************************************/
|
|
12389
|
-
|
|
12412
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12390
12413
|
|
|
12391
12414
|
"use strict";
|
|
12392
12415
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12426,13 +12449,13 @@ const HoneyGridColumnStyled = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODUL
|
|
|
12426
12449
|
`;
|
|
12427
12450
|
|
|
12428
12451
|
|
|
12429
|
-
/***/ }
|
|
12452
|
+
/***/ },
|
|
12430
12453
|
|
|
12431
|
-
/***/ "./src/components/HoneyGridColumn/index.ts"
|
|
12454
|
+
/***/ "./src/components/HoneyGridColumn/index.ts"
|
|
12432
12455
|
/*!*************************************************!*\
|
|
12433
12456
|
!*** ./src/components/HoneyGridColumn/index.ts ***!
|
|
12434
12457
|
\*************************************************/
|
|
12435
|
-
|
|
12458
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12436
12459
|
|
|
12437
12460
|
"use strict";
|
|
12438
12461
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12448,13 +12471,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12448
12471
|
|
|
12449
12472
|
|
|
12450
12473
|
|
|
12451
|
-
/***/ }
|
|
12474
|
+
/***/ },
|
|
12452
12475
|
|
|
12453
|
-
/***/ "./src/components/HoneyLazyContent/HoneyLazyContent.tsx"
|
|
12476
|
+
/***/ "./src/components/HoneyLazyContent/HoneyLazyContent.tsx"
|
|
12454
12477
|
/*!**************************************************************!*\
|
|
12455
12478
|
!*** ./src/components/HoneyLazyContent/HoneyLazyContent.tsx ***!
|
|
12456
12479
|
\**************************************************************/
|
|
12457
|
-
|
|
12480
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12458
12481
|
|
|
12459
12482
|
"use strict";
|
|
12460
12483
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12486,13 +12509,13 @@ const HoneyLazyContent = ({ children, mount, unmountDelay, alwaysMounted = false
|
|
|
12486
12509
|
};
|
|
12487
12510
|
|
|
12488
12511
|
|
|
12489
|
-
/***/ }
|
|
12512
|
+
/***/ },
|
|
12490
12513
|
|
|
12491
|
-
/***/ "./src/components/HoneyLazyContent/index.ts"
|
|
12514
|
+
/***/ "./src/components/HoneyLazyContent/index.ts"
|
|
12492
12515
|
/*!**************************************************!*\
|
|
12493
12516
|
!*** ./src/components/HoneyLazyContent/index.ts ***!
|
|
12494
12517
|
\**************************************************/
|
|
12495
|
-
|
|
12518
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12496
12519
|
|
|
12497
12520
|
"use strict";
|
|
12498
12521
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12503,13 +12526,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12503
12526
|
|
|
12504
12527
|
|
|
12505
12528
|
|
|
12506
|
-
/***/ }
|
|
12529
|
+
/***/ },
|
|
12507
12530
|
|
|
12508
|
-
/***/ "./src/components/HoneyList/HoneyList.helpers.ts"
|
|
12531
|
+
/***/ "./src/components/HoneyList/HoneyList.helpers.ts"
|
|
12509
12532
|
/*!*******************************************************!*\
|
|
12510
12533
|
!*** ./src/components/HoneyList/HoneyList.helpers.ts ***!
|
|
12511
12534
|
\*******************************************************/
|
|
12512
|
-
|
|
12535
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12513
12536
|
|
|
12514
12537
|
"use strict";
|
|
12515
12538
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12527,13 +12550,13 @@ const getHoneyListItemId = (item, itemKey, itemIndex) => {
|
|
|
12527
12550
|
};
|
|
12528
12551
|
|
|
12529
12552
|
|
|
12530
|
-
/***/ }
|
|
12553
|
+
/***/ },
|
|
12531
12554
|
|
|
12532
|
-
/***/ "./src/components/HoneyList/HoneyList.tsx"
|
|
12555
|
+
/***/ "./src/components/HoneyList/HoneyList.tsx"
|
|
12533
12556
|
/*!************************************************!*\
|
|
12534
12557
|
!*** ./src/components/HoneyList/HoneyList.tsx ***!
|
|
12535
12558
|
\************************************************/
|
|
12536
|
-
|
|
12559
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12537
12560
|
|
|
12538
12561
|
"use strict";
|
|
12539
12562
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12567,26 +12590,26 @@ const HoneyList = ({ children, items, itemKey, loading, loadingOverContent, load
|
|
|
12567
12590
|
};
|
|
12568
12591
|
|
|
12569
12592
|
|
|
12570
|
-
/***/ }
|
|
12593
|
+
/***/ },
|
|
12571
12594
|
|
|
12572
|
-
/***/ "./src/components/HoneyList/HoneyList.types.ts"
|
|
12595
|
+
/***/ "./src/components/HoneyList/HoneyList.types.ts"
|
|
12573
12596
|
/*!*****************************************************!*\
|
|
12574
12597
|
!*** ./src/components/HoneyList/HoneyList.types.ts ***!
|
|
12575
12598
|
\*****************************************************/
|
|
12576
|
-
|
|
12599
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12577
12600
|
|
|
12578
12601
|
"use strict";
|
|
12579
12602
|
__webpack_require__.r(__webpack_exports__);
|
|
12580
12603
|
|
|
12581
12604
|
|
|
12582
12605
|
|
|
12583
|
-
/***/ }
|
|
12606
|
+
/***/ },
|
|
12584
12607
|
|
|
12585
|
-
/***/ "./src/components/HoneyList/HoneyListStyled.ts"
|
|
12608
|
+
/***/ "./src/components/HoneyList/HoneyListStyled.ts"
|
|
12586
12609
|
/*!*****************************************************!*\
|
|
12587
12610
|
!*** ./src/components/HoneyList/HoneyListStyled.ts ***!
|
|
12588
12611
|
\*****************************************************/
|
|
12589
|
-
|
|
12612
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12590
12613
|
|
|
12591
12614
|
"use strict";
|
|
12592
12615
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12603,13 +12626,13 @@ const HoneyListStyled = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
12603
12626
|
})) ``;
|
|
12604
12627
|
|
|
12605
12628
|
|
|
12606
|
-
/***/ }
|
|
12629
|
+
/***/ },
|
|
12607
12630
|
|
|
12608
|
-
/***/ "./src/components/HoneyList/index.ts"
|
|
12631
|
+
/***/ "./src/components/HoneyList/index.ts"
|
|
12609
12632
|
/*!*******************************************!*\
|
|
12610
12633
|
!*** ./src/components/HoneyList/index.ts ***!
|
|
12611
12634
|
\*******************************************/
|
|
12612
|
-
|
|
12635
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12613
12636
|
|
|
12614
12637
|
"use strict";
|
|
12615
12638
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12625,13 +12648,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12625
12648
|
|
|
12626
12649
|
|
|
12627
12650
|
|
|
12628
|
-
/***/ }
|
|
12651
|
+
/***/ },
|
|
12629
12652
|
|
|
12630
|
-
/***/ "./src/components/HoneyOverlay.tsx"
|
|
12653
|
+
/***/ "./src/components/HoneyOverlay.tsx"
|
|
12631
12654
|
/*!*****************************************!*\
|
|
12632
12655
|
!*** ./src/components/HoneyOverlay.tsx ***!
|
|
12633
12656
|
\*****************************************/
|
|
12634
|
-
|
|
12657
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12635
12658
|
|
|
12636
12659
|
"use strict";
|
|
12637
12660
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12690,13 +12713,13 @@ const HoneyOverlay = ({ ref, children, active, overlayId, onDeactivate, ...props
|
|
|
12690
12713
|
};
|
|
12691
12714
|
|
|
12692
12715
|
|
|
12693
|
-
/***/ }
|
|
12716
|
+
/***/ },
|
|
12694
12717
|
|
|
12695
|
-
/***/ "./src/components/HoneyPopup/HoneyPopup.tsx"
|
|
12718
|
+
/***/ "./src/components/HoneyPopup/HoneyPopup.tsx"
|
|
12696
12719
|
/*!**************************************************!*\
|
|
12697
12720
|
!*** ./src/components/HoneyPopup/HoneyPopup.tsx ***!
|
|
12698
12721
|
\**************************************************/
|
|
12699
|
-
|
|
12722
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12700
12723
|
|
|
12701
12724
|
"use strict";
|
|
12702
12725
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12721,26 +12744,26 @@ const HoneyPopup = ({ useTree = false, ...props }) => {
|
|
|
12721
12744
|
};
|
|
12722
12745
|
|
|
12723
12746
|
|
|
12724
|
-
/***/ }
|
|
12747
|
+
/***/ },
|
|
12725
12748
|
|
|
12726
|
-
/***/ "./src/components/HoneyPopup/HoneyPopup.types.ts"
|
|
12749
|
+
/***/ "./src/components/HoneyPopup/HoneyPopup.types.ts"
|
|
12727
12750
|
/*!*******************************************************!*\
|
|
12728
12751
|
!*** ./src/components/HoneyPopup/HoneyPopup.types.ts ***!
|
|
12729
12752
|
\*******************************************************/
|
|
12730
|
-
|
|
12753
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12731
12754
|
|
|
12732
12755
|
"use strict";
|
|
12733
12756
|
__webpack_require__.r(__webpack_exports__);
|
|
12734
12757
|
|
|
12735
12758
|
|
|
12736
12759
|
|
|
12737
|
-
/***/ }
|
|
12760
|
+
/***/ },
|
|
12738
12761
|
|
|
12739
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupContent.tsx"
|
|
12762
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupContent.tsx"
|
|
12740
12763
|
/*!*********************************************************!*\
|
|
12741
12764
|
!*** ./src/components/HoneyPopup/HoneyPopupContent.tsx ***!
|
|
12742
12765
|
\*********************************************************/
|
|
12743
|
-
|
|
12766
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12744
12767
|
|
|
12745
12768
|
"use strict";
|
|
12746
12769
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12788,13 +12811,13 @@ const HoneyPopupContent = ({ children, referenceProps, content, contentProps, fo
|
|
|
12788
12811
|
};
|
|
12789
12812
|
|
|
12790
12813
|
|
|
12791
|
-
/***/ }
|
|
12814
|
+
/***/ },
|
|
12792
12815
|
|
|
12793
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupContext.ts"
|
|
12816
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupContext.ts"
|
|
12794
12817
|
/*!********************************************************!*\
|
|
12795
12818
|
!*** ./src/components/HoneyPopup/HoneyPopupContext.ts ***!
|
|
12796
12819
|
\********************************************************/
|
|
12797
|
-
|
|
12820
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12798
12821
|
|
|
12799
12822
|
"use strict";
|
|
12800
12823
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12807,13 +12830,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12807
12830
|
const HoneyPopupContext = (0,react__WEBPACK_IMPORTED_MODULE_0__.createContext)(undefined);
|
|
12808
12831
|
|
|
12809
12832
|
|
|
12810
|
-
/***/ }
|
|
12833
|
+
/***/ },
|
|
12811
12834
|
|
|
12812
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupPortal.tsx"
|
|
12835
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupPortal.tsx"
|
|
12813
12836
|
/*!********************************************************!*\
|
|
12814
12837
|
!*** ./src/components/HoneyPopup/HoneyPopupPortal.tsx ***!
|
|
12815
12838
|
\********************************************************/
|
|
12816
|
-
|
|
12839
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12817
12840
|
|
|
12818
12841
|
"use strict";
|
|
12819
12842
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12829,13 +12852,13 @@ const HoneyPopupPortal = ({ children, enabled = true, ...props }) => {
|
|
|
12829
12852
|
};
|
|
12830
12853
|
|
|
12831
12854
|
|
|
12832
|
-
/***/ }
|
|
12855
|
+
/***/ },
|
|
12833
12856
|
|
|
12834
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupStyled.ts"
|
|
12857
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupStyled.ts"
|
|
12835
12858
|
/*!*******************************************************!*\
|
|
12836
12859
|
!*** ./src/components/HoneyPopup/HoneyPopupStyled.ts ***!
|
|
12837
12860
|
\*******************************************************/
|
|
12838
|
-
|
|
12861
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12839
12862
|
|
|
12840
12863
|
"use strict";
|
|
12841
12864
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12852,13 +12875,13 @@ const HoneyPopupStyled = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__
|
|
|
12852
12875
|
})) ``;
|
|
12853
12876
|
|
|
12854
12877
|
|
|
12855
|
-
/***/ }
|
|
12878
|
+
/***/ },
|
|
12856
12879
|
|
|
12857
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupTree.tsx"
|
|
12880
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupTree.tsx"
|
|
12858
12881
|
/*!******************************************************!*\
|
|
12859
12882
|
!*** ./src/components/HoneyPopup/HoneyPopupTree.tsx ***!
|
|
12860
12883
|
\******************************************************/
|
|
12861
|
-
|
|
12884
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12862
12885
|
|
|
12863
12886
|
"use strict";
|
|
12864
12887
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12883,13 +12906,13 @@ const HoneyPopupTree = ({ children, enabled = true, ...props }) => {
|
|
|
12883
12906
|
};
|
|
12884
12907
|
|
|
12885
12908
|
|
|
12886
|
-
/***/ }
|
|
12909
|
+
/***/ },
|
|
12887
12910
|
|
|
12888
|
-
/***/ "./src/components/HoneyPopup/hooks/index.ts"
|
|
12911
|
+
/***/ "./src/components/HoneyPopup/hooks/index.ts"
|
|
12889
12912
|
/*!**************************************************!*\
|
|
12890
12913
|
!*** ./src/components/HoneyPopup/hooks/index.ts ***!
|
|
12891
12914
|
\**************************************************/
|
|
12892
|
-
|
|
12915
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12893
12916
|
|
|
12894
12917
|
"use strict";
|
|
12895
12918
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12903,13 +12926,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12903
12926
|
|
|
12904
12927
|
|
|
12905
12928
|
|
|
12906
|
-
/***/ }
|
|
12929
|
+
/***/ },
|
|
12907
12930
|
|
|
12908
|
-
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup-context.ts"
|
|
12931
|
+
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup-context.ts"
|
|
12909
12932
|
/*!********************************************************************!*\
|
|
12910
12933
|
!*** ./src/components/HoneyPopup/hooks/use-honey-popup-context.ts ***!
|
|
12911
12934
|
\********************************************************************/
|
|
12912
|
-
|
|
12935
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12913
12936
|
|
|
12914
12937
|
"use strict";
|
|
12915
12938
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12930,13 +12953,13 @@ const useHoneyPopupContext = () => {
|
|
|
12930
12953
|
};
|
|
12931
12954
|
|
|
12932
12955
|
|
|
12933
|
-
/***/ }
|
|
12956
|
+
/***/ },
|
|
12934
12957
|
|
|
12935
|
-
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup-interactions.ts"
|
|
12958
|
+
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup-interactions.ts"
|
|
12936
12959
|
/*!*************************************************************************!*\
|
|
12937
12960
|
!*** ./src/components/HoneyPopup/hooks/use-honey-popup-interactions.ts ***!
|
|
12938
12961
|
\*************************************************************************/
|
|
12939
|
-
|
|
12962
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12940
12963
|
|
|
12941
12964
|
"use strict";
|
|
12942
12965
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12973,13 +12996,13 @@ const useHoneyPopupInteractions = (context, { enabled = true, event = 'click', d
|
|
|
12973
12996
|
};
|
|
12974
12997
|
|
|
12975
12998
|
|
|
12976
|
-
/***/ }
|
|
12999
|
+
/***/ },
|
|
12977
13000
|
|
|
12978
|
-
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup.ts"
|
|
13001
|
+
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup.ts"
|
|
12979
13002
|
/*!************************************************************!*\
|
|
12980
13003
|
!*** ./src/components/HoneyPopup/hooks/use-honey-popup.ts ***!
|
|
12981
13004
|
\************************************************************/
|
|
12982
|
-
|
|
13005
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12983
13006
|
|
|
12984
13007
|
"use strict";
|
|
12985
13008
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12989,8 +13012,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12989
13012
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
|
|
12990
13013
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
12991
13014
|
/* harmony import */ var _floating_ui_react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @floating-ui/react */ "./node_modules/@floating-ui/react/dist/floating-ui.react.mjs");
|
|
12992
|
-
/* harmony import */ var _floating_ui_react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @floating-ui/react */ "./node_modules/@floating-ui/
|
|
12993
|
-
/* harmony import */ var _floating_ui_react__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @floating-ui/react */ "./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs");
|
|
13015
|
+
/* harmony import */ var _floating_ui_react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @floating-ui/react */ "./node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs");
|
|
13016
|
+
/* harmony import */ var _floating_ui_react__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @floating-ui/react */ "./node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs");
|
|
12994
13017
|
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../hooks */ "./src/hooks/index.ts");
|
|
12995
13018
|
/* harmony import */ var _use_honey_popup_interactions__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./use-honey-popup-interactions */ "./src/components/HoneyPopup/hooks/use-honey-popup-interactions.ts");
|
|
12996
13019
|
|
|
@@ -13022,15 +13045,15 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13022
13045
|
});
|
|
13023
13046
|
const middlewares = [];
|
|
13024
13047
|
if (useOffset) {
|
|
13025
|
-
middlewares.push((0,
|
|
13048
|
+
middlewares.push((0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.offset)(offsetOptions ?? theme.spacings.base));
|
|
13026
13049
|
}
|
|
13027
13050
|
let flipMiddleware = null;
|
|
13028
13051
|
if (useAutoPlacement) {
|
|
13029
|
-
middlewares.push((0,
|
|
13052
|
+
middlewares.push((0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.autoPlacement)(autoPlacementOptions));
|
|
13030
13053
|
}
|
|
13031
13054
|
else if (useFlip) {
|
|
13032
13055
|
// https://floating-ui.com/docs/flip
|
|
13033
|
-
flipMiddleware = (0,
|
|
13056
|
+
flipMiddleware = (0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.flip)({
|
|
13034
13057
|
// https://floating-ui.com/docs/flip#combining-with-shift
|
|
13035
13058
|
crossAxis: false,
|
|
13036
13059
|
fallbackStrategy: 'bestFit',
|
|
@@ -13039,7 +13062,7 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13039
13062
|
}
|
|
13040
13063
|
if (useAutoSize) {
|
|
13041
13064
|
// https://floating-ui.com/docs/size
|
|
13042
|
-
const sizeMiddleware = (0,
|
|
13065
|
+
const sizeMiddleware = (0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.size)({
|
|
13043
13066
|
...sizeOptions,
|
|
13044
13067
|
apply({ elements, rects, availableWidth, availableHeight }) {
|
|
13045
13068
|
Object.assign(elements.floating.style, {
|
|
@@ -13080,7 +13103,7 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13080
13103
|
if (useShift) {
|
|
13081
13104
|
middlewares.push(
|
|
13082
13105
|
// https://floating-ui.com/docs/shift
|
|
13083
|
-
(0,
|
|
13106
|
+
(0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.shift)({
|
|
13084
13107
|
padding: theme.spacings.base,
|
|
13085
13108
|
...shiftOptions,
|
|
13086
13109
|
}));
|
|
@@ -13092,7 +13115,7 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13092
13115
|
*
|
|
13093
13116
|
* @see https://floating-ui.com/docs/arrow
|
|
13094
13117
|
*/
|
|
13095
|
-
middlewares.push((0,
|
|
13118
|
+
middlewares.push((0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.arrow)({
|
|
13096
13119
|
element: arrowRef,
|
|
13097
13120
|
// https://floating-ui.com/docs/floatingarrow#arrow-does-not-avoid-rounded-corners
|
|
13098
13121
|
padding: theme.spacings.base,
|
|
@@ -13111,7 +13134,7 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13111
13134
|
},
|
|
13112
13135
|
// https://floating-ui.com/docs/usefloating#whileelementsmounted
|
|
13113
13136
|
...(useAutoUpdate && {
|
|
13114
|
-
whileElementsMounted: (reference, floating, update) => (0,
|
|
13137
|
+
whileElementsMounted: (reference, floating, update) => (0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_2__.autoUpdate)(reference, floating, update, autoUpdateOptions),
|
|
13115
13138
|
}),
|
|
13116
13139
|
...floatingOptions,
|
|
13117
13140
|
});
|
|
@@ -13141,13 +13164,13 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13141
13164
|
};
|
|
13142
13165
|
|
|
13143
13166
|
|
|
13144
|
-
/***/ }
|
|
13167
|
+
/***/ },
|
|
13145
13168
|
|
|
13146
|
-
/***/ "./src/components/HoneyPopup/index.ts"
|
|
13169
|
+
/***/ "./src/components/HoneyPopup/index.ts"
|
|
13147
13170
|
/*!********************************************!*\
|
|
13148
13171
|
!*** ./src/components/HoneyPopup/index.ts ***!
|
|
13149
13172
|
\********************************************/
|
|
13150
|
-
|
|
13173
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13151
13174
|
|
|
13152
13175
|
"use strict";
|
|
13153
13176
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13167,13 +13190,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13167
13190
|
|
|
13168
13191
|
|
|
13169
13192
|
|
|
13170
|
-
/***/ }
|
|
13193
|
+
/***/ },
|
|
13171
13194
|
|
|
13172
|
-
/***/ "./src/components/HoneyStatusContent.tsx"
|
|
13195
|
+
/***/ "./src/components/HoneyStatusContent.tsx"
|
|
13173
13196
|
/*!***********************************************!*\
|
|
13174
13197
|
!*** ./src/components/HoneyStatusContent.tsx ***!
|
|
13175
13198
|
\***********************************************/
|
|
13176
|
-
|
|
13199
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13177
13200
|
|
|
13178
13201
|
"use strict";
|
|
13179
13202
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13196,13 +13219,13 @@ const HoneyStatusContent = ({ children, loading = false, loadingOverContent = fa
|
|
|
13196
13219
|
};
|
|
13197
13220
|
|
|
13198
13221
|
|
|
13199
|
-
/***/ }
|
|
13222
|
+
/***/ },
|
|
13200
13223
|
|
|
13201
|
-
/***/ "./src/components/index.ts"
|
|
13224
|
+
/***/ "./src/components/index.ts"
|
|
13202
13225
|
/*!*********************************!*\
|
|
13203
13226
|
!*** ./src/components/index.ts ***!
|
|
13204
13227
|
\*********************************/
|
|
13205
|
-
|
|
13228
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13206
13229
|
|
|
13207
13230
|
"use strict";
|
|
13208
13231
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13247,13 +13270,34 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13247
13270
|
|
|
13248
13271
|
|
|
13249
13272
|
|
|
13250
|
-
/***/ }
|
|
13273
|
+
/***/ },
|
|
13274
|
+
|
|
13275
|
+
/***/ "./src/constants.ts"
|
|
13276
|
+
/*!**************************!*\
|
|
13277
|
+
!*** ./src/constants.ts ***!
|
|
13278
|
+
\**************************/
|
|
13279
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13280
|
+
|
|
13281
|
+
"use strict";
|
|
13282
|
+
__webpack_require__.r(__webpack_exports__);
|
|
13283
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13284
|
+
/* harmony export */ __DEV__: () => (/* binding */ __DEV__)
|
|
13285
|
+
/* harmony export */ });
|
|
13286
|
+
const ENV = "development" || 0;
|
|
13287
|
+
const __DEV__ = ENV !== 'production';
|
|
13288
|
+
if (__DEV__ && typeof window !== 'undefined' && !process.env.JEST_WORKER_ID) {
|
|
13289
|
+
console.info('[@react-hive/honey-layout]: You are running in development mode. ' +
|
|
13290
|
+
'This build is not optimized for production and may include extra checks or logs.');
|
|
13291
|
+
}
|
|
13292
|
+
|
|
13293
|
+
|
|
13294
|
+
/***/ },
|
|
13251
13295
|
|
|
13252
|
-
/***/ "./src/contexts/HoneyLayoutContext.ts"
|
|
13296
|
+
/***/ "./src/contexts/HoneyLayoutContext.ts"
|
|
13253
13297
|
/*!********************************************!*\
|
|
13254
13298
|
!*** ./src/contexts/HoneyLayoutContext.ts ***!
|
|
13255
13299
|
\********************************************/
|
|
13256
|
-
|
|
13300
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13257
13301
|
|
|
13258
13302
|
"use strict";
|
|
13259
13303
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13266,13 +13310,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13266
13310
|
const HoneyLayoutContext = (0,react__WEBPACK_IMPORTED_MODULE_0__.createContext)(undefined);
|
|
13267
13311
|
|
|
13268
13312
|
|
|
13269
|
-
/***/ }
|
|
13313
|
+
/***/ },
|
|
13270
13314
|
|
|
13271
|
-
/***/ "./src/contexts/index.ts"
|
|
13315
|
+
/***/ "./src/contexts/index.ts"
|
|
13272
13316
|
/*!*******************************!*\
|
|
13273
13317
|
!*** ./src/contexts/index.ts ***!
|
|
13274
13318
|
\*******************************/
|
|
13275
|
-
|
|
13319
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13276
13320
|
|
|
13277
13321
|
"use strict";
|
|
13278
13322
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13283,13 +13327,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13283
13327
|
|
|
13284
13328
|
|
|
13285
13329
|
|
|
13286
|
-
/***/ }
|
|
13330
|
+
/***/ },
|
|
13287
13331
|
|
|
13288
|
-
/***/ "./src/effects.ts"
|
|
13332
|
+
/***/ "./src/effects.ts"
|
|
13289
13333
|
/*!************************!*\
|
|
13290
13334
|
!*** ./src/effects.ts ***!
|
|
13291
13335
|
\************************/
|
|
13292
|
-
|
|
13336
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13293
13337
|
|
|
13294
13338
|
"use strict";
|
|
13295
13339
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13326,13 +13370,13 @@ const honeyVisibilityTransitionEffect = ({ durationMs, timingFunction = 'ease-in
|
|
|
13326
13370
|
`;
|
|
13327
13371
|
|
|
13328
13372
|
|
|
13329
|
-
/***/ }
|
|
13373
|
+
/***/ },
|
|
13330
13374
|
|
|
13331
|
-
/***/ "./src/helpers/helpers.ts"
|
|
13375
|
+
/***/ "./src/helpers/helpers.ts"
|
|
13332
13376
|
/*!********************************!*\
|
|
13333
13377
|
!*** ./src/helpers/helpers.ts ***!
|
|
13334
13378
|
\********************************/
|
|
13335
|
-
|
|
13379
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13336
13380
|
|
|
13337
13381
|
"use strict";
|
|
13338
13382
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13579,13 +13623,13 @@ const resolveScreenState = (breakpoints) => {
|
|
|
13579
13623
|
};
|
|
13580
13624
|
|
|
13581
13625
|
|
|
13582
|
-
/***/ }
|
|
13626
|
+
/***/ },
|
|
13583
13627
|
|
|
13584
|
-
/***/ "./src/helpers/index.ts"
|
|
13628
|
+
/***/ "./src/helpers/index.ts"
|
|
13585
13629
|
/*!******************************!*\
|
|
13586
13630
|
!*** ./src/helpers/index.ts ***!
|
|
13587
13631
|
\******************************/
|
|
13588
|
-
|
|
13632
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13589
13633
|
|
|
13590
13634
|
"use strict";
|
|
13591
13635
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13603,13 +13647,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13603
13647
|
|
|
13604
13648
|
|
|
13605
13649
|
|
|
13606
|
-
/***/ }
|
|
13650
|
+
/***/ },
|
|
13607
13651
|
|
|
13608
|
-
/***/ "./src/helpers/react.helpers.ts"
|
|
13652
|
+
/***/ "./src/helpers/react.helpers.ts"
|
|
13609
13653
|
/*!**************************************!*\
|
|
13610
13654
|
!*** ./src/helpers/react.helpers.ts ***!
|
|
13611
13655
|
\**************************************/
|
|
13612
|
-
|
|
13656
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13613
13657
|
|
|
13614
13658
|
"use strict";
|
|
13615
13659
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13636,13 +13680,13 @@ const mergeRefs = (...refs) => value => {
|
|
|
13636
13680
|
};
|
|
13637
13681
|
|
|
13638
13682
|
|
|
13639
|
-
/***/ }
|
|
13683
|
+
/***/ },
|
|
13640
13684
|
|
|
13641
|
-
/***/ "./src/hooks/index.ts"
|
|
13685
|
+
/***/ "./src/hooks/index.ts"
|
|
13642
13686
|
/*!****************************!*\
|
|
13643
13687
|
!*** ./src/hooks/index.ts ***!
|
|
13644
13688
|
\****************************/
|
|
13645
|
-
|
|
13689
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13646
13690
|
|
|
13647
13691
|
"use strict";
|
|
13648
13692
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13653,6 +13697,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13653
13697
|
/* harmony export */ useHoneyMediaQuery: () => (/* reexport safe */ _use_honey_media_query__WEBPACK_IMPORTED_MODULE_1__.useHoneyMediaQuery),
|
|
13654
13698
|
/* harmony export */ useHoneyOnChange: () => (/* reexport safe */ _use_honey_on_change__WEBPACK_IMPORTED_MODULE_0__.useHoneyOnChange),
|
|
13655
13699
|
/* harmony export */ useHoneyOverlay: () => (/* reexport safe */ _use_honey_overlay__WEBPACK_IMPORTED_MODULE_6__.useHoneyOverlay),
|
|
13700
|
+
/* harmony export */ useHoneyResize: () => (/* reexport safe */ _use_honey_resize__WEBPACK_IMPORTED_MODULE_7__.useHoneyResize),
|
|
13701
|
+
/* harmony export */ useHoneySyntheticScroll: () => (/* reexport safe */ _use_honey_synthetic_scroll__WEBPACK_IMPORTED_MODULE_8__.useHoneySyntheticScroll),
|
|
13702
|
+
/* harmony export */ useHoneySyntheticScrollX: () => (/* reexport safe */ _use_honey_synthetic_scroll_x__WEBPACK_IMPORTED_MODULE_9__.useHoneySyntheticScrollX),
|
|
13703
|
+
/* harmony export */ useHoneySyntheticScrollY: () => (/* reexport safe */ _use_honey_synthetic_scroll_y__WEBPACK_IMPORTED_MODULE_10__.useHoneySyntheticScrollY),
|
|
13656
13704
|
/* harmony export */ useRegisterHoneyOverlay: () => (/* reexport safe */ _use_register_honey_overlay__WEBPACK_IMPORTED_MODULE_5__.useRegisterHoneyOverlay)
|
|
13657
13705
|
/* harmony export */ });
|
|
13658
13706
|
/* harmony import */ var _use_honey_on_change__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./use-honey-on-change */ "./src/hooks/use-honey-on-change.ts");
|
|
@@ -13662,6 +13710,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13662
13710
|
/* harmony import */ var _use_honey_layout__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./use-honey-layout */ "./src/hooks/use-honey-layout.ts");
|
|
13663
13711
|
/* harmony import */ var _use_register_honey_overlay__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./use-register-honey-overlay */ "./src/hooks/use-register-honey-overlay.ts");
|
|
13664
13712
|
/* harmony import */ var _use_honey_overlay__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./use-honey-overlay */ "./src/hooks/use-honey-overlay.ts");
|
|
13713
|
+
/* harmony import */ var _use_honey_resize__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./use-honey-resize */ "./src/hooks/use-honey-resize.ts");
|
|
13714
|
+
/* harmony import */ var _use_honey_synthetic_scroll__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./use-honey-synthetic-scroll */ "./src/hooks/use-honey-synthetic-scroll.ts");
|
|
13715
|
+
/* harmony import */ var _use_honey_synthetic_scroll_x__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./use-honey-synthetic-scroll-x */ "./src/hooks/use-honey-synthetic-scroll-x.ts");
|
|
13716
|
+
/* harmony import */ var _use_honey_synthetic_scroll_y__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./use-honey-synthetic-scroll-y */ "./src/hooks/use-honey-synthetic-scroll-y.ts");
|
|
13665
13717
|
|
|
13666
13718
|
|
|
13667
13719
|
|
|
@@ -13671,13 +13723,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13671
13723
|
|
|
13672
13724
|
|
|
13673
13725
|
|
|
13674
|
-
/***/ }),
|
|
13675
13726
|
|
|
13676
|
-
|
|
13727
|
+
|
|
13728
|
+
|
|
13729
|
+
|
|
13730
|
+
/***/ },
|
|
13731
|
+
|
|
13732
|
+
/***/ "./src/hooks/use-honey-document-key-up-handler.ts"
|
|
13677
13733
|
/*!********************************************************!*\
|
|
13678
13734
|
!*** ./src/hooks/use-honey-document-key-up-handler.ts ***!
|
|
13679
13735
|
\********************************************************/
|
|
13680
|
-
|
|
13736
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13681
13737
|
|
|
13682
13738
|
"use strict";
|
|
13683
13739
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13729,13 +13785,13 @@ const useHoneyDocumentKeyUpHandler = (keyUpHandler, listenKeys, { enabled = true
|
|
|
13729
13785
|
};
|
|
13730
13786
|
|
|
13731
13787
|
|
|
13732
|
-
/***/ }
|
|
13788
|
+
/***/ },
|
|
13733
13789
|
|
|
13734
|
-
/***/ "./src/hooks/use-honey-drag.ts"
|
|
13790
|
+
/***/ "./src/hooks/use-honey-drag.ts"
|
|
13735
13791
|
/*!*************************************!*\
|
|
13736
13792
|
!*** ./src/hooks/use-honey-drag.ts ***!
|
|
13737
13793
|
\*************************************/
|
|
13738
|
-
|
|
13794
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13739
13795
|
|
|
13740
13796
|
"use strict";
|
|
13741
13797
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13881,13 +13937,13 @@ const useHoneyDrag = (draggableElementRef, { skipOnEndDragWhenStopped = false, e
|
|
|
13881
13937
|
};
|
|
13882
13938
|
|
|
13883
13939
|
|
|
13884
|
-
/***/ }
|
|
13940
|
+
/***/ },
|
|
13885
13941
|
|
|
13886
|
-
/***/ "./src/hooks/use-honey-layout.ts"
|
|
13942
|
+
/***/ "./src/hooks/use-honey-layout.ts"
|
|
13887
13943
|
/*!***************************************!*\
|
|
13888
13944
|
!*** ./src/hooks/use-honey-layout.ts ***!
|
|
13889
13945
|
\***************************************/
|
|
13890
|
-
|
|
13946
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13891
13947
|
|
|
13892
13948
|
"use strict";
|
|
13893
13949
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13915,13 +13971,13 @@ const useHoneyLayout = () => {
|
|
|
13915
13971
|
};
|
|
13916
13972
|
|
|
13917
13973
|
|
|
13918
|
-
/***/ }
|
|
13974
|
+
/***/ },
|
|
13919
13975
|
|
|
13920
|
-
/***/ "./src/hooks/use-honey-media-query.ts"
|
|
13976
|
+
/***/ "./src/hooks/use-honey-media-query.ts"
|
|
13921
13977
|
/*!********************************************!*\
|
|
13922
13978
|
!*** ./src/hooks/use-honey-media-query.ts ***!
|
|
13923
13979
|
\********************************************/
|
|
13924
|
-
|
|
13980
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13925
13981
|
|
|
13926
13982
|
"use strict";
|
|
13927
13983
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13971,13 +14027,13 @@ const useHoneyMediaQuery = (theme, { resizeThrottle = 0, overrideScreenState } =
|
|
|
13971
14027
|
};
|
|
13972
14028
|
|
|
13973
14029
|
|
|
13974
|
-
/***/ }
|
|
14030
|
+
/***/ },
|
|
13975
14031
|
|
|
13976
|
-
/***/ "./src/hooks/use-honey-on-change.ts"
|
|
14032
|
+
/***/ "./src/hooks/use-honey-on-change.ts"
|
|
13977
14033
|
/*!******************************************!*\
|
|
13978
14034
|
!*** ./src/hooks/use-honey-on-change.ts ***!
|
|
13979
14035
|
\******************************************/
|
|
13980
|
-
|
|
14036
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13981
14037
|
|
|
13982
14038
|
"use strict";
|
|
13983
14039
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14002,7 +14058,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14002
14058
|
* @returns void
|
|
14003
14059
|
*
|
|
14004
14060
|
* @example
|
|
14005
|
-
* ```
|
|
14061
|
+
* ```ts
|
|
14006
14062
|
* useHoneyOnChange(someValue, (newValue) => {
|
|
14007
14063
|
* console.log('Value changed to:', newValue);
|
|
14008
14064
|
*
|
|
@@ -14023,13 +14079,13 @@ const useHoneyOnChange = (state, onChange) => {
|
|
|
14023
14079
|
};
|
|
14024
14080
|
|
|
14025
14081
|
|
|
14026
|
-
/***/ }
|
|
14082
|
+
/***/ },
|
|
14027
14083
|
|
|
14028
|
-
/***/ "./src/hooks/use-honey-overlay.ts"
|
|
14084
|
+
/***/ "./src/hooks/use-honey-overlay.ts"
|
|
14029
14085
|
/*!****************************************!*\
|
|
14030
14086
|
!*** ./src/hooks/use-honey-overlay.ts ***!
|
|
14031
14087
|
\****************************************/
|
|
14032
|
-
|
|
14088
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14033
14089
|
|
|
14034
14090
|
"use strict";
|
|
14035
14091
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14082,13 +14138,223 @@ const useHoneyOverlay = (targetOverlayId, { onKeyUp } = {}) => {
|
|
|
14082
14138
|
};
|
|
14083
14139
|
|
|
14084
14140
|
|
|
14085
|
-
/***/ }
|
|
14141
|
+
/***/ },
|
|
14142
|
+
|
|
14143
|
+
/***/ "./src/hooks/use-honey-resize.ts"
|
|
14144
|
+
/*!***************************************!*\
|
|
14145
|
+
!*** ./src/hooks/use-honey-resize.ts ***!
|
|
14146
|
+
\***************************************/
|
|
14147
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14148
|
+
|
|
14149
|
+
"use strict";
|
|
14150
|
+
__webpack_require__.r(__webpack_exports__);
|
|
14151
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14152
|
+
/* harmony export */ useHoneyResize: () => (/* binding */ useHoneyResize)
|
|
14153
|
+
/* harmony export */ });
|
|
14154
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
|
|
14155
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
14156
|
+
/* harmony import */ var _react_hive_honey_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @react-hive/honey-utils */ "./node_modules/@react-hive/honey-utils/dist/index.mjs");
|
|
14157
|
+
/* harmony import */ var lodash_throttle__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash.throttle */ "./node_modules/lodash.throttle/index.js");
|
|
14158
|
+
/* harmony import */ var lodash_throttle__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(lodash_throttle__WEBPACK_IMPORTED_MODULE_2__);
|
|
14159
|
+
|
|
14160
|
+
|
|
14161
|
+
|
|
14162
|
+
/**
|
|
14163
|
+
* A hook that subscribes to the window `resize` event and invokes a handler function in response.
|
|
14164
|
+
*
|
|
14165
|
+
* The handler can be optionally throttled to limit execution frequency, which is useful
|
|
14166
|
+
* for expensive layout calculations or DOM measurements.
|
|
14167
|
+
*
|
|
14168
|
+
* @example
|
|
14169
|
+
* ```ts
|
|
14170
|
+
* useHoneyResize(() => {
|
|
14171
|
+
* console.log('Window resized');
|
|
14172
|
+
* }, { throttleTime: 200 });
|
|
14173
|
+
* ```
|
|
14174
|
+
*
|
|
14175
|
+
* @param handler - Callback invoked when the window is resized.
|
|
14176
|
+
* @param options - Configuration options controlling invocation timing and performance.
|
|
14177
|
+
*/
|
|
14178
|
+
const useHoneyResize = (handler, { invokeOnMount = false, throttleTime = 0, enabled = true } = {}) => {
|
|
14179
|
+
(0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
|
|
14180
|
+
if (!enabled) {
|
|
14181
|
+
return;
|
|
14182
|
+
}
|
|
14183
|
+
const handleResize = throttleTime
|
|
14184
|
+
? lodash_throttle__WEBPACK_IMPORTED_MODULE_2___default()(handler, throttleTime)
|
|
14185
|
+
: handler;
|
|
14186
|
+
window.addEventListener('resize', handleResize);
|
|
14187
|
+
if (invokeOnMount) {
|
|
14188
|
+
handler();
|
|
14189
|
+
}
|
|
14190
|
+
return () => {
|
|
14191
|
+
if ('cancel' in handleResize && (0,_react_hive_honey_utils__WEBPACK_IMPORTED_MODULE_1__.isFunction)(handleResize.cancel)) {
|
|
14192
|
+
handleResize.cancel();
|
|
14193
|
+
}
|
|
14194
|
+
window.removeEventListener('resize', handleResize);
|
|
14195
|
+
};
|
|
14196
|
+
}, [enabled, invokeOnMount, handler]);
|
|
14197
|
+
};
|
|
14198
|
+
|
|
14199
|
+
|
|
14200
|
+
/***/ },
|
|
14201
|
+
|
|
14202
|
+
/***/ "./src/hooks/use-honey-synthetic-scroll-x.ts"
|
|
14203
|
+
/*!***************************************************!*\
|
|
14204
|
+
!*** ./src/hooks/use-honey-synthetic-scroll-x.ts ***!
|
|
14205
|
+
\***************************************************/
|
|
14206
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14207
|
+
|
|
14208
|
+
"use strict";
|
|
14209
|
+
__webpack_require__.r(__webpack_exports__);
|
|
14210
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14211
|
+
/* harmony export */ useHoneySyntheticScrollX: () => (/* binding */ useHoneySyntheticScrollX)
|
|
14212
|
+
/* harmony export */ });
|
|
14213
|
+
/* harmony import */ var _use_honey_synthetic_scroll__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./use-honey-synthetic-scroll */ "./src/hooks/use-honey-synthetic-scroll.ts");
|
|
14214
|
+
|
|
14215
|
+
const useHoneySyntheticScrollX = (options) => (0,_use_honey_synthetic_scroll__WEBPACK_IMPORTED_MODULE_0__.useHoneySyntheticScroll)({
|
|
14216
|
+
...options,
|
|
14217
|
+
axis: 'x',
|
|
14218
|
+
});
|
|
14219
|
+
|
|
14220
|
+
|
|
14221
|
+
/***/ },
|
|
14222
|
+
|
|
14223
|
+
/***/ "./src/hooks/use-honey-synthetic-scroll-y.ts"
|
|
14224
|
+
/*!***************************************************!*\
|
|
14225
|
+
!*** ./src/hooks/use-honey-synthetic-scroll-y.ts ***!
|
|
14226
|
+
\***************************************************/
|
|
14227
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14228
|
+
|
|
14229
|
+
"use strict";
|
|
14230
|
+
__webpack_require__.r(__webpack_exports__);
|
|
14231
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14232
|
+
/* harmony export */ useHoneySyntheticScrollY: () => (/* binding */ useHoneySyntheticScrollY)
|
|
14233
|
+
/* harmony export */ });
|
|
14234
|
+
/* harmony import */ var _use_honey_synthetic_scroll__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./use-honey-synthetic-scroll */ "./src/hooks/use-honey-synthetic-scroll.ts");
|
|
14235
|
+
|
|
14236
|
+
const useHoneySyntheticScrollY = (options) => (0,_use_honey_synthetic_scroll__WEBPACK_IMPORTED_MODULE_0__.useHoneySyntheticScroll)({
|
|
14237
|
+
...options,
|
|
14238
|
+
axis: 'y',
|
|
14239
|
+
});
|
|
14240
|
+
|
|
14241
|
+
|
|
14242
|
+
/***/ },
|
|
14243
|
+
|
|
14244
|
+
/***/ "./src/hooks/use-honey-synthetic-scroll.ts"
|
|
14245
|
+
/*!*************************************************!*\
|
|
14246
|
+
!*** ./src/hooks/use-honey-synthetic-scroll.ts ***!
|
|
14247
|
+
\*************************************************/
|
|
14248
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14249
|
+
|
|
14250
|
+
"use strict";
|
|
14251
|
+
__webpack_require__.r(__webpack_exports__);
|
|
14252
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14253
|
+
/* harmony export */ useHoneySyntheticScroll: () => (/* binding */ useHoneySyntheticScroll)
|
|
14254
|
+
/* harmony export */ });
|
|
14255
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
|
|
14256
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
14257
|
+
/* harmony import */ var _react_hive_honey_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @react-hive/honey-utils */ "./node_modules/@react-hive/honey-utils/dist/index.mjs");
|
|
14258
|
+
/* harmony import */ var _use_honey_drag__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./use-honey-drag */ "./src/hooks/use-honey-drag.ts");
|
|
14259
|
+
/* harmony import */ var _use_honey_resize__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./use-honey-resize */ "./src/hooks/use-honey-resize.ts");
|
|
14260
|
+
|
|
14261
|
+
|
|
14262
|
+
|
|
14263
|
+
|
|
14264
|
+
/**
|
|
14265
|
+
* Enables synthetic scrolling for a container using pointer-based drag gestures.
|
|
14266
|
+
*
|
|
14267
|
+
* Instead of relying on native scrollbars, this hook translates the container
|
|
14268
|
+
* using CSS transforms in response to drag input.
|
|
14269
|
+
*
|
|
14270
|
+
* ### Key characteristics
|
|
14271
|
+
* - Dragging is only applied when content overflows the container on a given axis.
|
|
14272
|
+
* - Movement is clamped within calculated bounds, with optional overscroll allowance.
|
|
14273
|
+
* - Scroll position is stored purely in `transform: translate(...)`.
|
|
14274
|
+
* - Active transforms can be automatically cleared on window resize.
|
|
14275
|
+
*
|
|
14276
|
+
* ### Internals
|
|
14277
|
+
* - Uses {@link useHoneyDrag} to track mouse / touch movement.
|
|
14278
|
+
* - Uses {@link useHoneyResize} to optionally reset scroll state on resize.
|
|
14279
|
+
*
|
|
14280
|
+
* @template Element - The HTML element type of the scrollable container.
|
|
14281
|
+
*
|
|
14282
|
+
* @param options - Configuration controlling axes, boundaries, and lifecycle behavior.
|
|
14283
|
+
*
|
|
14284
|
+
* @returns A ref that must be attached to the scrollable container element.
|
|
14285
|
+
*/
|
|
14286
|
+
const useHoneySyntheticScroll = ({ axis = 'both', availableWindowPct = 0, onStartDrag, onEndDrag, resetOnResize = true, } = {}) => {
|
|
14287
|
+
const scrollableContainerRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null);
|
|
14288
|
+
/**
|
|
14289
|
+
* Handles drag movement and applies clamped translation along the enabled axis or axes.
|
|
14290
|
+
*
|
|
14291
|
+
* For each axis:
|
|
14292
|
+
* - Skip processing if there is no overflow.
|
|
14293
|
+
* - Compute the candidate translate value from the drag delta.
|
|
14294
|
+
* - Clamp movement within calculated min / max bounds.
|
|
14295
|
+
*/
|
|
14296
|
+
const onMoveDrag = (0,react__WEBPACK_IMPORTED_MODULE_0__.useCallback)(scrollableContainer => async ({ deltaX, deltaY }) => {
|
|
14297
|
+
const { translateX, translateY } = (0,_react_hive_honey_utils__WEBPACK_IMPORTED_MODULE_1__.parse2DMatrix)(scrollableContainer);
|
|
14298
|
+
let nextX = translateX;
|
|
14299
|
+
let nextY = translateY;
|
|
14300
|
+
let handled = false;
|
|
14301
|
+
if (axis === 'x' || axis === 'both') {
|
|
14302
|
+
const overflowX = scrollableContainer.scrollWidth - scrollableContainer.clientWidth;
|
|
14303
|
+
if (overflowX > 0) {
|
|
14304
|
+
const thresholdX = scrollableContainer.clientWidth * (availableWindowPct / 100);
|
|
14305
|
+
const candidateX = translateX + deltaX;
|
|
14306
|
+
const minX = -(overflowX + thresholdX);
|
|
14307
|
+
const maxX = thresholdX;
|
|
14308
|
+
if ((deltaX < 0 && candidateX >= minX) || (deltaX > 0 && candidateX <= maxX)) {
|
|
14309
|
+
nextX = candidateX;
|
|
14310
|
+
handled = true;
|
|
14311
|
+
}
|
|
14312
|
+
}
|
|
14313
|
+
}
|
|
14314
|
+
if (axis === 'y' || axis === 'both') {
|
|
14315
|
+
const overflowY = scrollableContainer.scrollHeight - scrollableContainer.clientHeight;
|
|
14316
|
+
if (overflowY > 0) {
|
|
14317
|
+
const thresholdY = scrollableContainer.clientHeight * (availableWindowPct / 100);
|
|
14318
|
+
const candidateY = translateY + deltaY;
|
|
14319
|
+
const minY = -(overflowY + thresholdY);
|
|
14320
|
+
const maxY = thresholdY;
|
|
14321
|
+
if ((deltaY < 0 && candidateY >= minY) || (deltaY > 0 && candidateY <= maxY)) {
|
|
14322
|
+
nextY = candidateY;
|
|
14323
|
+
handled = true;
|
|
14324
|
+
}
|
|
14325
|
+
}
|
|
14326
|
+
}
|
|
14327
|
+
// Apply transform only when at least one axis was updated
|
|
14328
|
+
if (handled) {
|
|
14329
|
+
scrollableContainer.style.transform = `translate(${nextX}px, ${nextY}px)`;
|
|
14330
|
+
}
|
|
14331
|
+
return handled;
|
|
14332
|
+
}, [availableWindowPct]);
|
|
14333
|
+
(0,_use_honey_drag__WEBPACK_IMPORTED_MODULE_2__.useHoneyDrag)(scrollableContainerRef, {
|
|
14334
|
+
onStartDrag,
|
|
14335
|
+
onMoveDrag,
|
|
14336
|
+
onEndDrag,
|
|
14337
|
+
});
|
|
14338
|
+
const resizeHandler = (0,react__WEBPACK_IMPORTED_MODULE_0__.useCallback)(() => {
|
|
14339
|
+
const scrollableContainer = scrollableContainerRef.current;
|
|
14340
|
+
if (scrollableContainer) {
|
|
14341
|
+
scrollableContainer.style.removeProperty('transform');
|
|
14342
|
+
}
|
|
14343
|
+
}, []);
|
|
14344
|
+
(0,_use_honey_resize__WEBPACK_IMPORTED_MODULE_3__.useHoneyResize)(resizeHandler, {
|
|
14345
|
+
enabled: resetOnResize,
|
|
14346
|
+
});
|
|
14347
|
+
return scrollableContainerRef;
|
|
14348
|
+
};
|
|
14349
|
+
|
|
14350
|
+
|
|
14351
|
+
/***/ },
|
|
14086
14352
|
|
|
14087
|
-
/***/ "./src/hooks/use-register-honey-overlay.ts"
|
|
14353
|
+
/***/ "./src/hooks/use-register-honey-overlay.ts"
|
|
14088
14354
|
/*!*************************************************!*\
|
|
14089
14355
|
!*** ./src/hooks/use-register-honey-overlay.ts ***!
|
|
14090
14356
|
\*************************************************/
|
|
14091
|
-
|
|
14357
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14092
14358
|
|
|
14093
14359
|
"use strict";
|
|
14094
14360
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14126,13 +14392,13 @@ const useRegisterHoneyOverlay = (isRegister, overlayConfig) => {
|
|
|
14126
14392
|
};
|
|
14127
14393
|
|
|
14128
14394
|
|
|
14129
|
-
/***/ }
|
|
14395
|
+
/***/ },
|
|
14130
14396
|
|
|
14131
|
-
/***/ "./src/providers/HoneyLayoutProvider.tsx"
|
|
14397
|
+
/***/ "./src/providers/HoneyLayoutProvider.tsx"
|
|
14132
14398
|
/*!***********************************************!*\
|
|
14133
14399
|
!*** ./src/providers/HoneyLayoutProvider.tsx ***!
|
|
14134
14400
|
\***********************************************/
|
|
14135
|
-
|
|
14401
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14136
14402
|
|
|
14137
14403
|
"use strict";
|
|
14138
14404
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14167,13 +14433,13 @@ const HoneyLayoutProvider = ({ children, theme, mediaQueryOptions, ...props }) =
|
|
|
14167
14433
|
};
|
|
14168
14434
|
|
|
14169
14435
|
|
|
14170
|
-
/***/ }
|
|
14436
|
+
/***/ },
|
|
14171
14437
|
|
|
14172
|
-
/***/ "./src/providers/HoneyLayoutThemeOverride.tsx"
|
|
14438
|
+
/***/ "./src/providers/HoneyLayoutThemeOverride.tsx"
|
|
14173
14439
|
/*!****************************************************!*\
|
|
14174
14440
|
!*** ./src/providers/HoneyLayoutThemeOverride.tsx ***!
|
|
14175
14441
|
\****************************************************/
|
|
14176
|
-
|
|
14442
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14177
14443
|
|
|
14178
14444
|
"use strict";
|
|
14179
14445
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14208,13 +14474,13 @@ const HoneyLayoutThemeOverride = ({ theme, ...props }) => {
|
|
|
14208
14474
|
};
|
|
14209
14475
|
|
|
14210
14476
|
|
|
14211
|
-
/***/ }
|
|
14477
|
+
/***/ },
|
|
14212
14478
|
|
|
14213
|
-
/***/ "./src/providers/hooks/index.ts"
|
|
14479
|
+
/***/ "./src/providers/hooks/index.ts"
|
|
14214
14480
|
/*!**************************************!*\
|
|
14215
14481
|
!*** ./src/providers/hooks/index.ts ***!
|
|
14216
14482
|
\**************************************/
|
|
14217
|
-
|
|
14483
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14218
14484
|
|
|
14219
14485
|
"use strict";
|
|
14220
14486
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14225,13 +14491,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14225
14491
|
|
|
14226
14492
|
|
|
14227
14493
|
|
|
14228
|
-
/***/ }
|
|
14494
|
+
/***/ },
|
|
14229
14495
|
|
|
14230
|
-
/***/ "./src/providers/hooks/use-honey-overlays.ts"
|
|
14496
|
+
/***/ "./src/providers/hooks/use-honey-overlays.ts"
|
|
14231
14497
|
/*!***************************************************!*\
|
|
14232
14498
|
!*** ./src/providers/hooks/use-honey-overlays.ts ***!
|
|
14233
14499
|
\***************************************************/
|
|
14234
|
-
|
|
14500
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14235
14501
|
|
|
14236
14502
|
"use strict";
|
|
14237
14503
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14323,13 +14589,13 @@ const useHoneyOverlays = () => {
|
|
|
14323
14589
|
};
|
|
14324
14590
|
|
|
14325
14591
|
|
|
14326
|
-
/***/ }
|
|
14592
|
+
/***/ },
|
|
14327
14593
|
|
|
14328
|
-
/***/ "./src/providers/index.ts"
|
|
14594
|
+
/***/ "./src/providers/index.ts"
|
|
14329
14595
|
/*!********************************!*\
|
|
14330
14596
|
!*** ./src/providers/index.ts ***!
|
|
14331
14597
|
\********************************/
|
|
14332
|
-
|
|
14598
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14333
14599
|
|
|
14334
14600
|
"use strict";
|
|
14335
14601
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14343,52 +14609,52 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14343
14609
|
|
|
14344
14610
|
|
|
14345
14611
|
|
|
14346
|
-
/***/ }
|
|
14612
|
+
/***/ },
|
|
14347
14613
|
|
|
14348
|
-
/***/ "./src/types/css.types.ts"
|
|
14614
|
+
/***/ "./src/types/css.types.ts"
|
|
14349
14615
|
/*!********************************!*\
|
|
14350
14616
|
!*** ./src/types/css.types.ts ***!
|
|
14351
14617
|
\********************************/
|
|
14352
|
-
|
|
14618
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14353
14619
|
|
|
14354
14620
|
"use strict";
|
|
14355
14621
|
__webpack_require__.r(__webpack_exports__);
|
|
14356
14622
|
|
|
14357
14623
|
|
|
14358
14624
|
|
|
14359
|
-
/***/ }
|
|
14625
|
+
/***/ },
|
|
14360
14626
|
|
|
14361
|
-
/***/ "./src/types/data.types.ts"
|
|
14627
|
+
/***/ "./src/types/data.types.ts"
|
|
14362
14628
|
/*!*********************************!*\
|
|
14363
14629
|
!*** ./src/types/data.types.ts ***!
|
|
14364
14630
|
\*********************************/
|
|
14365
|
-
|
|
14631
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14366
14632
|
|
|
14367
14633
|
"use strict";
|
|
14368
14634
|
__webpack_require__.r(__webpack_exports__);
|
|
14369
14635
|
|
|
14370
14636
|
|
|
14371
14637
|
|
|
14372
|
-
/***/ }
|
|
14638
|
+
/***/ },
|
|
14373
14639
|
|
|
14374
|
-
/***/ "./src/types/dom.types.ts"
|
|
14640
|
+
/***/ "./src/types/dom.types.ts"
|
|
14375
14641
|
/*!********************************!*\
|
|
14376
14642
|
!*** ./src/types/dom.types.ts ***!
|
|
14377
14643
|
\********************************/
|
|
14378
|
-
|
|
14644
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14379
14645
|
|
|
14380
14646
|
"use strict";
|
|
14381
14647
|
__webpack_require__.r(__webpack_exports__);
|
|
14382
14648
|
|
|
14383
14649
|
|
|
14384
14650
|
|
|
14385
|
-
/***/ }
|
|
14651
|
+
/***/ },
|
|
14386
14652
|
|
|
14387
|
-
/***/ "./src/types/index.ts"
|
|
14653
|
+
/***/ "./src/types/index.ts"
|
|
14388
14654
|
/*!****************************!*\
|
|
14389
14655
|
!*** ./src/types/index.ts ***!
|
|
14390
14656
|
\****************************/
|
|
14391
|
-
|
|
14657
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14392
14658
|
|
|
14393
14659
|
"use strict";
|
|
14394
14660
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14404,13 +14670,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14404
14670
|
|
|
14405
14671
|
|
|
14406
14672
|
|
|
14407
|
-
/***/ }
|
|
14673
|
+
/***/ },
|
|
14408
14674
|
|
|
14409
|
-
/***/ "./src/types/state.types.ts"
|
|
14675
|
+
/***/ "./src/types/state.types.ts"
|
|
14410
14676
|
/*!**********************************!*\
|
|
14411
14677
|
!*** ./src/types/state.types.ts ***!
|
|
14412
14678
|
\**********************************/
|
|
14413
|
-
|
|
14679
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14414
14680
|
|
|
14415
14681
|
"use strict";
|
|
14416
14682
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14420,13 +14686,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14420
14686
|
|
|
14421
14687
|
|
|
14422
14688
|
|
|
14423
|
-
/***/ }
|
|
14689
|
+
/***/ },
|
|
14424
14690
|
|
|
14425
|
-
/***/ "./src/types/utility.types.ts"
|
|
14691
|
+
/***/ "./src/types/utility.types.ts"
|
|
14426
14692
|
/*!************************************!*\
|
|
14427
14693
|
!*** ./src/types/utility.types.ts ***!
|
|
14428
14694
|
\************************************/
|
|
14429
|
-
|
|
14695
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14430
14696
|
|
|
14431
14697
|
"use strict";
|
|
14432
14698
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14438,13 +14704,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14438
14704
|
|
|
14439
14705
|
|
|
14440
14706
|
|
|
14441
|
-
/***/ }
|
|
14707
|
+
/***/ },
|
|
14442
14708
|
|
|
14443
|
-
/***/ "./src/utils/data-utils.ts"
|
|
14709
|
+
/***/ "./src/utils/data-utils.ts"
|
|
14444
14710
|
/*!*********************************!*\
|
|
14445
14711
|
!*** ./src/utils/data-utils.ts ***!
|
|
14446
14712
|
\*********************************/
|
|
14447
|
-
|
|
14713
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14448
14714
|
|
|
14449
14715
|
"use strict";
|
|
14450
14716
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14628,13 +14894,13 @@ const searchFlattenedItems = (flattenedItems, itemIdKey, valueKey, searchQuery)
|
|
|
14628
14894
|
};
|
|
14629
14895
|
|
|
14630
14896
|
|
|
14631
|
-
/***/ }
|
|
14897
|
+
/***/ },
|
|
14632
14898
|
|
|
14633
|
-
/***/ "./src/utils/index.ts"
|
|
14899
|
+
/***/ "./src/utils/index.ts"
|
|
14634
14900
|
/*!****************************!*\
|
|
14635
14901
|
!*** ./src/utils/index.ts ***!
|
|
14636
14902
|
\****************************/
|
|
14637
|
-
|
|
14903
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14638
14904
|
|
|
14639
14905
|
"use strict";
|
|
14640
14906
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14647,29 +14913,29 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14647
14913
|
|
|
14648
14914
|
|
|
14649
14915
|
|
|
14650
|
-
/***/ }
|
|
14916
|
+
/***/ },
|
|
14651
14917
|
|
|
14652
|
-
/***/ "@react-hive/honey-style"
|
|
14918
|
+
/***/ "@react-hive/honey-style"
|
|
14653
14919
|
/*!******************************************!*\
|
|
14654
14920
|
!*** external "@react-hive/honey-style" ***!
|
|
14655
14921
|
\******************************************/
|
|
14656
|
-
|
|
14922
|
+
(module) {
|
|
14657
14923
|
|
|
14658
14924
|
"use strict";
|
|
14659
14925
|
module.exports = require("@react-hive/honey-style");
|
|
14660
14926
|
|
|
14661
|
-
/***/ }
|
|
14927
|
+
/***/ },
|
|
14662
14928
|
|
|
14663
|
-
/***/ "react"
|
|
14929
|
+
/***/ "react"
|
|
14664
14930
|
/*!************************!*\
|
|
14665
14931
|
!*** external "react" ***!
|
|
14666
14932
|
\************************/
|
|
14667
|
-
|
|
14933
|
+
(module) {
|
|
14668
14934
|
|
|
14669
14935
|
"use strict";
|
|
14670
14936
|
module.exports = require("react");
|
|
14671
14937
|
|
|
14672
|
-
/***/ }
|
|
14938
|
+
/***/ }
|
|
14673
14939
|
|
|
14674
14940
|
/******/ });
|
|
14675
14941
|
/************************************************************************/
|
|
@@ -14683,6 +14949,12 @@ module.exports = require("react");
|
|
|
14683
14949
|
/******/ if (cachedModule !== undefined) {
|
|
14684
14950
|
/******/ return cachedModule.exports;
|
|
14685
14951
|
/******/ }
|
|
14952
|
+
/******/ // Check if module exists (development only)
|
|
14953
|
+
/******/ if (__webpack_modules__[moduleId] === undefined) {
|
|
14954
|
+
/******/ var e = new Error("Cannot find module '" + moduleId + "'");
|
|
14955
|
+
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
14956
|
+
/******/ throw e;
|
|
14957
|
+
/******/ }
|
|
14686
14958
|
/******/ // Create a new module (and put it into the cache)
|
|
14687
14959
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
14688
14960
|
/******/ id: moduleId,
|
|
@@ -14802,53 +15074,59 @@ var __webpack_exports__ = {};
|
|
|
14802
15074
|
\**********************/
|
|
14803
15075
|
__webpack_require__.r(__webpack_exports__);
|
|
14804
15076
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14805
|
-
/* harmony export */ HoneyBox: () => (/* reexport safe */
|
|
14806
|
-
/* harmony export */ HoneyContextMenu: () => (/* reexport safe */
|
|
14807
|
-
/* harmony export */ HoneyFlex: () => (/* reexport safe */
|
|
14808
|
-
/* harmony export */ HoneyFlexBox: () => (/* reexport safe */
|
|
14809
|
-
/* harmony export */ HoneyGrid: () => (/* reexport safe */
|
|
14810
|
-
/* harmony export */ HoneyGridColumn: () => (/* reexport safe */
|
|
14811
|
-
/* harmony export */ HoneyGridColumnStyled: () => (/* reexport safe */
|
|
14812
|
-
/* harmony export */ HoneyLayoutProvider: () => (/* reexport safe */
|
|
14813
|
-
/* harmony export */ HoneyLayoutThemeOverride: () => (/* reexport safe */
|
|
14814
|
-
/* harmony export */ HoneyLazyContent: () => (/* reexport safe */
|
|
14815
|
-
/* harmony export */ HoneyList: () => (/* reexport safe */
|
|
14816
|
-
/* harmony export */ HoneyOverlay: () => (/* reexport safe */
|
|
14817
|
-
/* harmony export */ HoneyPopup: () => (/* reexport safe */
|
|
14818
|
-
/* harmony export */ HoneyPopupContext: () => (/* reexport safe */
|
|
14819
|
-
/* harmony export */ HoneyStatusContent: () => (/* reexport safe */
|
|
14820
|
-
/* harmony export */
|
|
14821
|
-
/* harmony export */
|
|
14822
|
-
/* harmony export */
|
|
14823
|
-
/* harmony export */
|
|
14824
|
-
/* harmony export */
|
|
14825
|
-
/* harmony export */
|
|
14826
|
-
/* harmony export */
|
|
14827
|
-
/* harmony export */
|
|
14828
|
-
/* harmony export */
|
|
14829
|
-
/* harmony export */
|
|
15077
|
+
/* harmony export */ HoneyBox: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyBox),
|
|
15078
|
+
/* harmony export */ HoneyContextMenu: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyContextMenu),
|
|
15079
|
+
/* harmony export */ HoneyFlex: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyFlex),
|
|
15080
|
+
/* harmony export */ HoneyFlexBox: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyFlexBox),
|
|
15081
|
+
/* harmony export */ HoneyGrid: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyGrid),
|
|
15082
|
+
/* harmony export */ HoneyGridColumn: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyGridColumn),
|
|
15083
|
+
/* harmony export */ HoneyGridColumnStyled: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyGridColumnStyled),
|
|
15084
|
+
/* harmony export */ HoneyLayoutProvider: () => (/* reexport safe */ _providers__WEBPACK_IMPORTED_MODULE_4__.HoneyLayoutProvider),
|
|
15085
|
+
/* harmony export */ HoneyLayoutThemeOverride: () => (/* reexport safe */ _providers__WEBPACK_IMPORTED_MODULE_4__.HoneyLayoutThemeOverride),
|
|
15086
|
+
/* harmony export */ HoneyLazyContent: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyLazyContent),
|
|
15087
|
+
/* harmony export */ HoneyList: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyList),
|
|
15088
|
+
/* harmony export */ HoneyOverlay: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyOverlay),
|
|
15089
|
+
/* harmony export */ HoneyPopup: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyPopup),
|
|
15090
|
+
/* harmony export */ HoneyPopupContext: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyPopupContext),
|
|
15091
|
+
/* harmony export */ HoneyStatusContent: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyStatusContent),
|
|
15092
|
+
/* harmony export */ __DEV__: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_1__.__DEV__),
|
|
15093
|
+
/* harmony export */ applyBreakpointStyles: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.applyBreakpointStyles),
|
|
15094
|
+
/* harmony export */ bpMedia: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.bpMedia),
|
|
15095
|
+
/* harmony export */ createStyles: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.createStyles),
|
|
15096
|
+
/* harmony export */ filterFlattenedItems: () => (/* reexport safe */ _utils__WEBPACK_IMPORTED_MODULE_6__.filterFlattenedItems),
|
|
15097
|
+
/* harmony export */ flattenNestedList: () => (/* reexport safe */ _utils__WEBPACK_IMPORTED_MODULE_6__.flattenNestedList),
|
|
15098
|
+
/* harmony export */ generateUniqueId: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.generateUniqueId),
|
|
15099
|
+
/* harmony export */ getHoneyListItemId: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.getHoneyListItemId),
|
|
15100
|
+
/* harmony export */ honeyVisibilityTransitionEffect: () => (/* reexport safe */ _effects__WEBPACK_IMPORTED_MODULE_8__.honeyVisibilityTransitionEffect),
|
|
15101
|
+
/* harmony export */ mergeRefs: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.mergeRefs),
|
|
15102
|
+
/* harmony export */ resolveScreenState: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.resolveScreenState),
|
|
14830
15103
|
/* harmony export */ resolveSpacing: () => (/* binding */ resolveSpacing),
|
|
14831
|
-
/* harmony export */ searchFlattenedItems: () => (/* reexport safe */
|
|
14832
|
-
/* harmony export */ useHoneyDocumentKeyUpHandler: () => (/* reexport safe */
|
|
14833
|
-
/* harmony export */ useHoneyDrag: () => (/* reexport safe */
|
|
14834
|
-
/* harmony export */ useHoneyGridContext: () => (/* reexport safe */
|
|
14835
|
-
/* harmony export */ useHoneyLayout: () => (/* reexport safe */
|
|
14836
|
-
/* harmony export */ useHoneyMediaQuery: () => (/* reexport safe */
|
|
14837
|
-
/* harmony export */ useHoneyOnChange: () => (/* reexport safe */
|
|
14838
|
-
/* harmony export */ useHoneyOverlay: () => (/* reexport safe */
|
|
14839
|
-
/* harmony export */ useHoneyPopup: () => (/* reexport safe */
|
|
14840
|
-
/* harmony export */ useHoneyPopupContext: () => (/* reexport safe */
|
|
14841
|
-
/* harmony export */
|
|
15104
|
+
/* harmony export */ searchFlattenedItems: () => (/* reexport safe */ _utils__WEBPACK_IMPORTED_MODULE_6__.searchFlattenedItems),
|
|
15105
|
+
/* harmony export */ useHoneyDocumentKeyUpHandler: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyDocumentKeyUpHandler),
|
|
15106
|
+
/* harmony export */ useHoneyDrag: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyDrag),
|
|
15107
|
+
/* harmony export */ useHoneyGridContext: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.useHoneyGridContext),
|
|
15108
|
+
/* harmony export */ useHoneyLayout: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyLayout),
|
|
15109
|
+
/* harmony export */ useHoneyMediaQuery: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyMediaQuery),
|
|
15110
|
+
/* harmony export */ useHoneyOnChange: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyOnChange),
|
|
15111
|
+
/* harmony export */ useHoneyOverlay: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyOverlay),
|
|
15112
|
+
/* harmony export */ useHoneyPopup: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.useHoneyPopup),
|
|
15113
|
+
/* harmony export */ useHoneyPopupContext: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.useHoneyPopupContext),
|
|
15114
|
+
/* harmony export */ useHoneyResize: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyResize),
|
|
15115
|
+
/* harmony export */ useHoneySyntheticScroll: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneySyntheticScroll),
|
|
15116
|
+
/* harmony export */ useHoneySyntheticScrollX: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneySyntheticScrollX),
|
|
15117
|
+
/* harmony export */ useHoneySyntheticScrollY: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneySyntheticScrollY),
|
|
15118
|
+
/* harmony export */ useRegisterHoneyOverlay: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useRegisterHoneyOverlay)
|
|
14842
15119
|
/* harmony export */ });
|
|
14843
15120
|
/* harmony import */ var _react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @react-hive/honey-style */ "@react-hive/honey-style");
|
|
14844
15121
|
/* harmony import */ var _react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__);
|
|
14845
|
-
/* harmony import */ var
|
|
14846
|
-
/* harmony import */ var
|
|
14847
|
-
/* harmony import */ var
|
|
14848
|
-
/* harmony import */ var
|
|
14849
|
-
/* harmony import */ var
|
|
14850
|
-
/* harmony import */ var
|
|
14851
|
-
/* harmony import */ var
|
|
15122
|
+
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./constants */ "./src/constants.ts");
|
|
15123
|
+
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./types */ "./src/types/index.ts");
|
|
15124
|
+
/* harmony import */ var _components__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./components */ "./src/components/index.ts");
|
|
15125
|
+
/* harmony import */ var _providers__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./providers */ "./src/providers/index.ts");
|
|
15126
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./hooks */ "./src/hooks/index.ts");
|
|
15127
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./utils */ "./src/utils/index.ts");
|
|
15128
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./helpers */ "./src/helpers/index.ts");
|
|
15129
|
+
/* harmony import */ var _effects__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./effects */ "./src/effects.ts");
|
|
14852
15130
|
|
|
14853
15131
|
/**
|
|
14854
15132
|
* @deprecated Please, use import from `@react-hive/honey-style`
|
|
@@ -14863,6 +15141,7 @@ const resolveSpacing = _react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.reso
|
|
|
14863
15141
|
|
|
14864
15142
|
|
|
14865
15143
|
|
|
15144
|
+
|
|
14866
15145
|
})();
|
|
14867
15146
|
|
|
14868
15147
|
module.exports = __webpack_exports__;
|