@react-hive/honey-layout 9.12.0 → 9.14.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 +60 -24
- 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/index.cjs +16 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.dev.cjs +484 -421
- package/dist/index.dev.cjs.map +1 -1
- package/dist/index.mjs +14 -14
- 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,56 +12106,88 @@ __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
|
/**
|
|
12112
12115
|
* A flexbox-based layout primitive built on top of {@link HoneyBox}.
|
|
12113
12116
|
*
|
|
12114
|
-
* `HoneyFlex`
|
|
12115
|
-
*
|
|
12117
|
+
* `HoneyFlex` is the canonical flex container within the Honey design system.
|
|
12118
|
+
* It provides sensible defaults, readable semantic helpers, and full access
|
|
12119
|
+
* to low-level flexbox customization when needed.
|
|
12120
|
+
*
|
|
12121
|
+
* ---
|
|
12116
12122
|
*
|
|
12117
12123
|
* ### Default behavior
|
|
12118
12124
|
* - `display: flex`
|
|
12119
12125
|
* - `flex-direction: column`
|
|
12120
12126
|
*
|
|
12127
|
+
* ---
|
|
12128
|
+
*
|
|
12121
12129
|
* ### Semantic helpers
|
|
12122
|
-
* - `row` → switches layout to
|
|
12130
|
+
* - `row` → switches layout to horizontal flow
|
|
12123
12131
|
* - `center` → centers content on both axes
|
|
12132
|
+
* - `centerX`, `centerY` → axis-aware centering helpers
|
|
12133
|
+
*
|
|
12134
|
+
* Semantic helpers exist purely for convenience and readability.
|
|
12135
|
+
* Any explicitly provided style props **always take precedence**.
|
|
12124
12136
|
*
|
|
12125
|
-
*
|
|
12126
|
-
* Any explicitly provided style props always take precedence.
|
|
12137
|
+
* ---
|
|
12127
12138
|
*
|
|
12128
12139
|
* @remarks
|
|
12129
12140
|
* This component is intended to be the primary flex layout primitive
|
|
12130
|
-
*
|
|
12131
|
-
*
|
|
12141
|
+
* in the Honey ecosystem. Prefer it over raw flexbox usage to ensure
|
|
12142
|
+
* consistent behavior, defaults, and testability.
|
|
12143
|
+
*
|
|
12144
|
+
* ---
|
|
12132
12145
|
*
|
|
12133
|
-
* @example
|
|
12146
|
+
* @example Horizontal layout
|
|
12134
12147
|
* ```tsx
|
|
12135
|
-
* <HoneyFlex $gap={2} />
|
|
12148
|
+
* <HoneyFlex $gap={2} row/>
|
|
12136
12149
|
* ```
|
|
12137
12150
|
*
|
|
12138
|
-
* @example
|
|
12151
|
+
* @example Column layout
|
|
12139
12152
|
* ```tsx
|
|
12140
|
-
* <HoneyFlex
|
|
12153
|
+
* <HoneyFlex $gap={3} />
|
|
12141
12154
|
* ```
|
|
12142
12155
|
*
|
|
12143
|
-
* @example
|
|
12156
|
+
* @example Centered fullscreen container
|
|
12144
12157
|
* ```tsx
|
|
12145
12158
|
* <HoneyFlex $minHeight="100vh" center>
|
|
12146
12159
|
* <Spinner />
|
|
12147
12160
|
* </HoneyFlex>
|
|
12148
12161
|
* ```
|
|
12149
12162
|
*/
|
|
12150
|
-
const HoneyFlex = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.styled)((0,
|
|
12151
|
-
|
|
12152
|
-
|
|
12153
|
-
|
|
12154
|
-
|
|
12155
|
-
|
|
12156
|
-
|
|
12157
|
-
|
|
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
|
+
}) ``;
|
|
12158
12191
|
/**
|
|
12159
12192
|
* @deprecated Use {@link HoneyFlex} instead.
|
|
12160
12193
|
*
|
|
@@ -12163,13 +12196,13 @@ const HoneyFlex = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.styled
|
|
|
12163
12196
|
const HoneyFlexBox = HoneyFlex;
|
|
12164
12197
|
|
|
12165
12198
|
|
|
12166
|
-
/***/ }
|
|
12199
|
+
/***/ },
|
|
12167
12200
|
|
|
12168
|
-
/***/ "./src/components/HoneyFlex/index.ts"
|
|
12201
|
+
/***/ "./src/components/HoneyFlex/index.ts"
|
|
12169
12202
|
/*!*******************************************!*\
|
|
12170
12203
|
!*** ./src/components/HoneyFlex/index.ts ***!
|
|
12171
12204
|
\*******************************************/
|
|
12172
|
-
|
|
12205
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12173
12206
|
|
|
12174
12207
|
"use strict";
|
|
12175
12208
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12181,13 +12214,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12181
12214
|
|
|
12182
12215
|
|
|
12183
12216
|
|
|
12184
|
-
/***/ }
|
|
12217
|
+
/***/ },
|
|
12185
12218
|
|
|
12186
|
-
/***/ "./src/components/HoneyGrid/HoneyGrid.tsx"
|
|
12219
|
+
/***/ "./src/components/HoneyGrid/HoneyGrid.tsx"
|
|
12187
12220
|
/*!************************************************!*\
|
|
12188
12221
|
!*** ./src/components/HoneyGrid/HoneyGrid.tsx ***!
|
|
12189
12222
|
\************************************************/
|
|
12190
|
-
|
|
12223
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12191
12224
|
|
|
12192
12225
|
"use strict";
|
|
12193
12226
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12214,13 +12247,13 @@ const HoneyGrid = ({ ref, children, columns, spacing, columnsGrowing = true, app
|
|
|
12214
12247
|
};
|
|
12215
12248
|
|
|
12216
12249
|
|
|
12217
|
-
/***/ }
|
|
12250
|
+
/***/ },
|
|
12218
12251
|
|
|
12219
|
-
/***/ "./src/components/HoneyGrid/HoneyGridContext.ts"
|
|
12252
|
+
/***/ "./src/components/HoneyGrid/HoneyGridContext.ts"
|
|
12220
12253
|
/*!******************************************************!*\
|
|
12221
12254
|
!*** ./src/components/HoneyGrid/HoneyGridContext.ts ***!
|
|
12222
12255
|
\******************************************************/
|
|
12223
|
-
|
|
12256
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12224
12257
|
|
|
12225
12258
|
"use strict";
|
|
12226
12259
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12233,13 +12266,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12233
12266
|
const HoneyGridContext = (0,react__WEBPACK_IMPORTED_MODULE_0__.createContext)(undefined);
|
|
12234
12267
|
|
|
12235
12268
|
|
|
12236
|
-
/***/ }
|
|
12269
|
+
/***/ },
|
|
12237
12270
|
|
|
12238
|
-
/***/ "./src/components/HoneyGrid/HoneyGridStyled.ts"
|
|
12271
|
+
/***/ "./src/components/HoneyGrid/HoneyGridStyled.ts"
|
|
12239
12272
|
/*!*****************************************************!*\
|
|
12240
12273
|
!*** ./src/components/HoneyGrid/HoneyGridStyled.ts ***!
|
|
12241
12274
|
\*****************************************************/
|
|
12242
|
-
|
|
12275
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12243
12276
|
|
|
12244
12277
|
"use strict";
|
|
12245
12278
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12268,13 +12301,13 @@ const HoneyGridStyled = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
12268
12301
|
`;
|
|
12269
12302
|
|
|
12270
12303
|
|
|
12271
|
-
/***/ }
|
|
12304
|
+
/***/ },
|
|
12272
12305
|
|
|
12273
|
-
/***/ "./src/components/HoneyGrid/hooks/index.ts"
|
|
12306
|
+
/***/ "./src/components/HoneyGrid/hooks/index.ts"
|
|
12274
12307
|
/*!*************************************************!*\
|
|
12275
12308
|
!*** ./src/components/HoneyGrid/hooks/index.ts ***!
|
|
12276
12309
|
\*************************************************/
|
|
12277
|
-
|
|
12310
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12278
12311
|
|
|
12279
12312
|
"use strict";
|
|
12280
12313
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12285,13 +12318,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12285
12318
|
|
|
12286
12319
|
|
|
12287
12320
|
|
|
12288
|
-
/***/ }
|
|
12321
|
+
/***/ },
|
|
12289
12322
|
|
|
12290
|
-
/***/ "./src/components/HoneyGrid/hooks/use-honey-grid-context.ts"
|
|
12323
|
+
/***/ "./src/components/HoneyGrid/hooks/use-honey-grid-context.ts"
|
|
12291
12324
|
/*!******************************************************************!*\
|
|
12292
12325
|
!*** ./src/components/HoneyGrid/hooks/use-honey-grid-context.ts ***!
|
|
12293
12326
|
\******************************************************************/
|
|
12294
|
-
|
|
12327
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12295
12328
|
|
|
12296
12329
|
"use strict";
|
|
12297
12330
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12312,13 +12345,13 @@ const useHoneyGridContext = () => {
|
|
|
12312
12345
|
};
|
|
12313
12346
|
|
|
12314
12347
|
|
|
12315
|
-
/***/ }
|
|
12348
|
+
/***/ },
|
|
12316
12349
|
|
|
12317
|
-
/***/ "./src/components/HoneyGrid/index.ts"
|
|
12350
|
+
/***/ "./src/components/HoneyGrid/index.ts"
|
|
12318
12351
|
/*!*******************************************!*\
|
|
12319
12352
|
!*** ./src/components/HoneyGrid/index.ts ***!
|
|
12320
12353
|
\*******************************************/
|
|
12321
|
-
|
|
12354
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12322
12355
|
|
|
12323
12356
|
"use strict";
|
|
12324
12357
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12332,13 +12365,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12332
12365
|
|
|
12333
12366
|
|
|
12334
12367
|
|
|
12335
|
-
/***/ }
|
|
12368
|
+
/***/ },
|
|
12336
12369
|
|
|
12337
|
-
/***/ "./src/components/HoneyGridColumn/HoneyGridColumn.tsx"
|
|
12370
|
+
/***/ "./src/components/HoneyGridColumn/HoneyGridColumn.tsx"
|
|
12338
12371
|
/*!************************************************************!*\
|
|
12339
12372
|
!*** ./src/components/HoneyGridColumn/HoneyGridColumn.tsx ***!
|
|
12340
12373
|
\************************************************************/
|
|
12341
|
-
|
|
12374
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12342
12375
|
|
|
12343
12376
|
"use strict";
|
|
12344
12377
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12357,26 +12390,26 @@ const HoneyGridColumn = ({ children, ...props }) => {
|
|
|
12357
12390
|
};
|
|
12358
12391
|
|
|
12359
12392
|
|
|
12360
|
-
/***/ }
|
|
12393
|
+
/***/ },
|
|
12361
12394
|
|
|
12362
|
-
/***/ "./src/components/HoneyGridColumn/HoneyGridColumn.types.ts"
|
|
12395
|
+
/***/ "./src/components/HoneyGridColumn/HoneyGridColumn.types.ts"
|
|
12363
12396
|
/*!*****************************************************************!*\
|
|
12364
12397
|
!*** ./src/components/HoneyGridColumn/HoneyGridColumn.types.ts ***!
|
|
12365
12398
|
\*****************************************************************/
|
|
12366
|
-
|
|
12399
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12367
12400
|
|
|
12368
12401
|
"use strict";
|
|
12369
12402
|
__webpack_require__.r(__webpack_exports__);
|
|
12370
12403
|
|
|
12371
12404
|
|
|
12372
12405
|
|
|
12373
|
-
/***/ }
|
|
12406
|
+
/***/ },
|
|
12374
12407
|
|
|
12375
|
-
/***/ "./src/components/HoneyGridColumn/HoneyGridColumnStyled.ts"
|
|
12408
|
+
/***/ "./src/components/HoneyGridColumn/HoneyGridColumnStyled.ts"
|
|
12376
12409
|
/*!*****************************************************************!*\
|
|
12377
12410
|
!*** ./src/components/HoneyGridColumn/HoneyGridColumnStyled.ts ***!
|
|
12378
12411
|
\*****************************************************************/
|
|
12379
|
-
|
|
12412
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12380
12413
|
|
|
12381
12414
|
"use strict";
|
|
12382
12415
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12416,13 +12449,13 @@ const HoneyGridColumnStyled = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODUL
|
|
|
12416
12449
|
`;
|
|
12417
12450
|
|
|
12418
12451
|
|
|
12419
|
-
/***/ }
|
|
12452
|
+
/***/ },
|
|
12420
12453
|
|
|
12421
|
-
/***/ "./src/components/HoneyGridColumn/index.ts"
|
|
12454
|
+
/***/ "./src/components/HoneyGridColumn/index.ts"
|
|
12422
12455
|
/*!*************************************************!*\
|
|
12423
12456
|
!*** ./src/components/HoneyGridColumn/index.ts ***!
|
|
12424
12457
|
\*************************************************/
|
|
12425
|
-
|
|
12458
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12426
12459
|
|
|
12427
12460
|
"use strict";
|
|
12428
12461
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12438,13 +12471,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12438
12471
|
|
|
12439
12472
|
|
|
12440
12473
|
|
|
12441
|
-
/***/ }
|
|
12474
|
+
/***/ },
|
|
12442
12475
|
|
|
12443
|
-
/***/ "./src/components/HoneyLazyContent/HoneyLazyContent.tsx"
|
|
12476
|
+
/***/ "./src/components/HoneyLazyContent/HoneyLazyContent.tsx"
|
|
12444
12477
|
/*!**************************************************************!*\
|
|
12445
12478
|
!*** ./src/components/HoneyLazyContent/HoneyLazyContent.tsx ***!
|
|
12446
12479
|
\**************************************************************/
|
|
12447
|
-
|
|
12480
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12448
12481
|
|
|
12449
12482
|
"use strict";
|
|
12450
12483
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12476,13 +12509,13 @@ const HoneyLazyContent = ({ children, mount, unmountDelay, alwaysMounted = false
|
|
|
12476
12509
|
};
|
|
12477
12510
|
|
|
12478
12511
|
|
|
12479
|
-
/***/ }
|
|
12512
|
+
/***/ },
|
|
12480
12513
|
|
|
12481
|
-
/***/ "./src/components/HoneyLazyContent/index.ts"
|
|
12514
|
+
/***/ "./src/components/HoneyLazyContent/index.ts"
|
|
12482
12515
|
/*!**************************************************!*\
|
|
12483
12516
|
!*** ./src/components/HoneyLazyContent/index.ts ***!
|
|
12484
12517
|
\**************************************************/
|
|
12485
|
-
|
|
12518
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12486
12519
|
|
|
12487
12520
|
"use strict";
|
|
12488
12521
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12493,13 +12526,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12493
12526
|
|
|
12494
12527
|
|
|
12495
12528
|
|
|
12496
|
-
/***/ }
|
|
12529
|
+
/***/ },
|
|
12497
12530
|
|
|
12498
|
-
/***/ "./src/components/HoneyList/HoneyList.helpers.ts"
|
|
12531
|
+
/***/ "./src/components/HoneyList/HoneyList.helpers.ts"
|
|
12499
12532
|
/*!*******************************************************!*\
|
|
12500
12533
|
!*** ./src/components/HoneyList/HoneyList.helpers.ts ***!
|
|
12501
12534
|
\*******************************************************/
|
|
12502
|
-
|
|
12535
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12503
12536
|
|
|
12504
12537
|
"use strict";
|
|
12505
12538
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12517,13 +12550,13 @@ const getHoneyListItemId = (item, itemKey, itemIndex) => {
|
|
|
12517
12550
|
};
|
|
12518
12551
|
|
|
12519
12552
|
|
|
12520
|
-
/***/ }
|
|
12553
|
+
/***/ },
|
|
12521
12554
|
|
|
12522
|
-
/***/ "./src/components/HoneyList/HoneyList.tsx"
|
|
12555
|
+
/***/ "./src/components/HoneyList/HoneyList.tsx"
|
|
12523
12556
|
/*!************************************************!*\
|
|
12524
12557
|
!*** ./src/components/HoneyList/HoneyList.tsx ***!
|
|
12525
12558
|
\************************************************/
|
|
12526
|
-
|
|
12559
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12527
12560
|
|
|
12528
12561
|
"use strict";
|
|
12529
12562
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12557,26 +12590,26 @@ const HoneyList = ({ children, items, itemKey, loading, loadingOverContent, load
|
|
|
12557
12590
|
};
|
|
12558
12591
|
|
|
12559
12592
|
|
|
12560
|
-
/***/ }
|
|
12593
|
+
/***/ },
|
|
12561
12594
|
|
|
12562
|
-
/***/ "./src/components/HoneyList/HoneyList.types.ts"
|
|
12595
|
+
/***/ "./src/components/HoneyList/HoneyList.types.ts"
|
|
12563
12596
|
/*!*****************************************************!*\
|
|
12564
12597
|
!*** ./src/components/HoneyList/HoneyList.types.ts ***!
|
|
12565
12598
|
\*****************************************************/
|
|
12566
|
-
|
|
12599
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12567
12600
|
|
|
12568
12601
|
"use strict";
|
|
12569
12602
|
__webpack_require__.r(__webpack_exports__);
|
|
12570
12603
|
|
|
12571
12604
|
|
|
12572
12605
|
|
|
12573
|
-
/***/ }
|
|
12606
|
+
/***/ },
|
|
12574
12607
|
|
|
12575
|
-
/***/ "./src/components/HoneyList/HoneyListStyled.ts"
|
|
12608
|
+
/***/ "./src/components/HoneyList/HoneyListStyled.ts"
|
|
12576
12609
|
/*!*****************************************************!*\
|
|
12577
12610
|
!*** ./src/components/HoneyList/HoneyListStyled.ts ***!
|
|
12578
12611
|
\*****************************************************/
|
|
12579
|
-
|
|
12612
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12580
12613
|
|
|
12581
12614
|
"use strict";
|
|
12582
12615
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12593,13 +12626,13 @@ const HoneyListStyled = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.
|
|
|
12593
12626
|
})) ``;
|
|
12594
12627
|
|
|
12595
12628
|
|
|
12596
|
-
/***/ }
|
|
12629
|
+
/***/ },
|
|
12597
12630
|
|
|
12598
|
-
/***/ "./src/components/HoneyList/index.ts"
|
|
12631
|
+
/***/ "./src/components/HoneyList/index.ts"
|
|
12599
12632
|
/*!*******************************************!*\
|
|
12600
12633
|
!*** ./src/components/HoneyList/index.ts ***!
|
|
12601
12634
|
\*******************************************/
|
|
12602
|
-
|
|
12635
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12603
12636
|
|
|
12604
12637
|
"use strict";
|
|
12605
12638
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12615,13 +12648,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12615
12648
|
|
|
12616
12649
|
|
|
12617
12650
|
|
|
12618
|
-
/***/ }
|
|
12651
|
+
/***/ },
|
|
12619
12652
|
|
|
12620
|
-
/***/ "./src/components/HoneyOverlay.tsx"
|
|
12653
|
+
/***/ "./src/components/HoneyOverlay.tsx"
|
|
12621
12654
|
/*!*****************************************!*\
|
|
12622
12655
|
!*** ./src/components/HoneyOverlay.tsx ***!
|
|
12623
12656
|
\*****************************************/
|
|
12624
|
-
|
|
12657
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12625
12658
|
|
|
12626
12659
|
"use strict";
|
|
12627
12660
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12680,13 +12713,13 @@ const HoneyOverlay = ({ ref, children, active, overlayId, onDeactivate, ...props
|
|
|
12680
12713
|
};
|
|
12681
12714
|
|
|
12682
12715
|
|
|
12683
|
-
/***/ }
|
|
12716
|
+
/***/ },
|
|
12684
12717
|
|
|
12685
|
-
/***/ "./src/components/HoneyPopup/HoneyPopup.tsx"
|
|
12718
|
+
/***/ "./src/components/HoneyPopup/HoneyPopup.tsx"
|
|
12686
12719
|
/*!**************************************************!*\
|
|
12687
12720
|
!*** ./src/components/HoneyPopup/HoneyPopup.tsx ***!
|
|
12688
12721
|
\**************************************************/
|
|
12689
|
-
|
|
12722
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12690
12723
|
|
|
12691
12724
|
"use strict";
|
|
12692
12725
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12711,26 +12744,26 @@ const HoneyPopup = ({ useTree = false, ...props }) => {
|
|
|
12711
12744
|
};
|
|
12712
12745
|
|
|
12713
12746
|
|
|
12714
|
-
/***/ }
|
|
12747
|
+
/***/ },
|
|
12715
12748
|
|
|
12716
|
-
/***/ "./src/components/HoneyPopup/HoneyPopup.types.ts"
|
|
12749
|
+
/***/ "./src/components/HoneyPopup/HoneyPopup.types.ts"
|
|
12717
12750
|
/*!*******************************************************!*\
|
|
12718
12751
|
!*** ./src/components/HoneyPopup/HoneyPopup.types.ts ***!
|
|
12719
12752
|
\*******************************************************/
|
|
12720
|
-
|
|
12753
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12721
12754
|
|
|
12722
12755
|
"use strict";
|
|
12723
12756
|
__webpack_require__.r(__webpack_exports__);
|
|
12724
12757
|
|
|
12725
12758
|
|
|
12726
12759
|
|
|
12727
|
-
/***/ }
|
|
12760
|
+
/***/ },
|
|
12728
12761
|
|
|
12729
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupContent.tsx"
|
|
12762
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupContent.tsx"
|
|
12730
12763
|
/*!*********************************************************!*\
|
|
12731
12764
|
!*** ./src/components/HoneyPopup/HoneyPopupContent.tsx ***!
|
|
12732
12765
|
\*********************************************************/
|
|
12733
|
-
|
|
12766
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12734
12767
|
|
|
12735
12768
|
"use strict";
|
|
12736
12769
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12778,13 +12811,13 @@ const HoneyPopupContent = ({ children, referenceProps, content, contentProps, fo
|
|
|
12778
12811
|
};
|
|
12779
12812
|
|
|
12780
12813
|
|
|
12781
|
-
/***/ }
|
|
12814
|
+
/***/ },
|
|
12782
12815
|
|
|
12783
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupContext.ts"
|
|
12816
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupContext.ts"
|
|
12784
12817
|
/*!********************************************************!*\
|
|
12785
12818
|
!*** ./src/components/HoneyPopup/HoneyPopupContext.ts ***!
|
|
12786
12819
|
\********************************************************/
|
|
12787
|
-
|
|
12820
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12788
12821
|
|
|
12789
12822
|
"use strict";
|
|
12790
12823
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12797,13 +12830,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12797
12830
|
const HoneyPopupContext = (0,react__WEBPACK_IMPORTED_MODULE_0__.createContext)(undefined);
|
|
12798
12831
|
|
|
12799
12832
|
|
|
12800
|
-
/***/ }
|
|
12833
|
+
/***/ },
|
|
12801
12834
|
|
|
12802
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupPortal.tsx"
|
|
12835
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupPortal.tsx"
|
|
12803
12836
|
/*!********************************************************!*\
|
|
12804
12837
|
!*** ./src/components/HoneyPopup/HoneyPopupPortal.tsx ***!
|
|
12805
12838
|
\********************************************************/
|
|
12806
|
-
|
|
12839
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12807
12840
|
|
|
12808
12841
|
"use strict";
|
|
12809
12842
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12819,13 +12852,13 @@ const HoneyPopupPortal = ({ children, enabled = true, ...props }) => {
|
|
|
12819
12852
|
};
|
|
12820
12853
|
|
|
12821
12854
|
|
|
12822
|
-
/***/ }
|
|
12855
|
+
/***/ },
|
|
12823
12856
|
|
|
12824
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupStyled.ts"
|
|
12857
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupStyled.ts"
|
|
12825
12858
|
/*!*******************************************************!*\
|
|
12826
12859
|
!*** ./src/components/HoneyPopup/HoneyPopupStyled.ts ***!
|
|
12827
12860
|
\*******************************************************/
|
|
12828
|
-
|
|
12861
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12829
12862
|
|
|
12830
12863
|
"use strict";
|
|
12831
12864
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12842,13 +12875,13 @@ const HoneyPopupStyled = (0,_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__
|
|
|
12842
12875
|
})) ``;
|
|
12843
12876
|
|
|
12844
12877
|
|
|
12845
|
-
/***/ }
|
|
12878
|
+
/***/ },
|
|
12846
12879
|
|
|
12847
|
-
/***/ "./src/components/HoneyPopup/HoneyPopupTree.tsx"
|
|
12880
|
+
/***/ "./src/components/HoneyPopup/HoneyPopupTree.tsx"
|
|
12848
12881
|
/*!******************************************************!*\
|
|
12849
12882
|
!*** ./src/components/HoneyPopup/HoneyPopupTree.tsx ***!
|
|
12850
12883
|
\******************************************************/
|
|
12851
|
-
|
|
12884
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12852
12885
|
|
|
12853
12886
|
"use strict";
|
|
12854
12887
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12873,13 +12906,13 @@ const HoneyPopupTree = ({ children, enabled = true, ...props }) => {
|
|
|
12873
12906
|
};
|
|
12874
12907
|
|
|
12875
12908
|
|
|
12876
|
-
/***/ }
|
|
12909
|
+
/***/ },
|
|
12877
12910
|
|
|
12878
|
-
/***/ "./src/components/HoneyPopup/hooks/index.ts"
|
|
12911
|
+
/***/ "./src/components/HoneyPopup/hooks/index.ts"
|
|
12879
12912
|
/*!**************************************************!*\
|
|
12880
12913
|
!*** ./src/components/HoneyPopup/hooks/index.ts ***!
|
|
12881
12914
|
\**************************************************/
|
|
12882
|
-
|
|
12915
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12883
12916
|
|
|
12884
12917
|
"use strict";
|
|
12885
12918
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12893,13 +12926,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12893
12926
|
|
|
12894
12927
|
|
|
12895
12928
|
|
|
12896
|
-
/***/ }
|
|
12929
|
+
/***/ },
|
|
12897
12930
|
|
|
12898
|
-
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup-context.ts"
|
|
12931
|
+
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup-context.ts"
|
|
12899
12932
|
/*!********************************************************************!*\
|
|
12900
12933
|
!*** ./src/components/HoneyPopup/hooks/use-honey-popup-context.ts ***!
|
|
12901
12934
|
\********************************************************************/
|
|
12902
|
-
|
|
12935
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12903
12936
|
|
|
12904
12937
|
"use strict";
|
|
12905
12938
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12920,13 +12953,13 @@ const useHoneyPopupContext = () => {
|
|
|
12920
12953
|
};
|
|
12921
12954
|
|
|
12922
12955
|
|
|
12923
|
-
/***/ }
|
|
12956
|
+
/***/ },
|
|
12924
12957
|
|
|
12925
|
-
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup-interactions.ts"
|
|
12958
|
+
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup-interactions.ts"
|
|
12926
12959
|
/*!*************************************************************************!*\
|
|
12927
12960
|
!*** ./src/components/HoneyPopup/hooks/use-honey-popup-interactions.ts ***!
|
|
12928
12961
|
\*************************************************************************/
|
|
12929
|
-
|
|
12962
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12930
12963
|
|
|
12931
12964
|
"use strict";
|
|
12932
12965
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12963,13 +12996,13 @@ const useHoneyPopupInteractions = (context, { enabled = true, event = 'click', d
|
|
|
12963
12996
|
};
|
|
12964
12997
|
|
|
12965
12998
|
|
|
12966
|
-
/***/ }
|
|
12999
|
+
/***/ },
|
|
12967
13000
|
|
|
12968
|
-
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup.ts"
|
|
13001
|
+
/***/ "./src/components/HoneyPopup/hooks/use-honey-popup.ts"
|
|
12969
13002
|
/*!************************************************************!*\
|
|
12970
13003
|
!*** ./src/components/HoneyPopup/hooks/use-honey-popup.ts ***!
|
|
12971
13004
|
\************************************************************/
|
|
12972
|
-
|
|
13005
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12973
13006
|
|
|
12974
13007
|
"use strict";
|
|
12975
13008
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -12979,8 +13012,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
12979
13012
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
|
|
12980
13013
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
12981
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");
|
|
12982
|
-
/* harmony import */ var _floating_ui_react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @floating-ui/react */ "./node_modules/@floating-ui/
|
|
12983
|
-
/* 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");
|
|
12984
13017
|
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../hooks */ "./src/hooks/index.ts");
|
|
12985
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");
|
|
12986
13019
|
|
|
@@ -13012,15 +13045,15 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13012
13045
|
});
|
|
13013
13046
|
const middlewares = [];
|
|
13014
13047
|
if (useOffset) {
|
|
13015
|
-
middlewares.push((0,
|
|
13048
|
+
middlewares.push((0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.offset)(offsetOptions ?? theme.spacings.base));
|
|
13016
13049
|
}
|
|
13017
13050
|
let flipMiddleware = null;
|
|
13018
13051
|
if (useAutoPlacement) {
|
|
13019
|
-
middlewares.push((0,
|
|
13052
|
+
middlewares.push((0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.autoPlacement)(autoPlacementOptions));
|
|
13020
13053
|
}
|
|
13021
13054
|
else if (useFlip) {
|
|
13022
13055
|
// https://floating-ui.com/docs/flip
|
|
13023
|
-
flipMiddleware = (0,
|
|
13056
|
+
flipMiddleware = (0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.flip)({
|
|
13024
13057
|
// https://floating-ui.com/docs/flip#combining-with-shift
|
|
13025
13058
|
crossAxis: false,
|
|
13026
13059
|
fallbackStrategy: 'bestFit',
|
|
@@ -13029,7 +13062,7 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13029
13062
|
}
|
|
13030
13063
|
if (useAutoSize) {
|
|
13031
13064
|
// https://floating-ui.com/docs/size
|
|
13032
|
-
const sizeMiddleware = (0,
|
|
13065
|
+
const sizeMiddleware = (0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.size)({
|
|
13033
13066
|
...sizeOptions,
|
|
13034
13067
|
apply({ elements, rects, availableWidth, availableHeight }) {
|
|
13035
13068
|
Object.assign(elements.floating.style, {
|
|
@@ -13070,7 +13103,7 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13070
13103
|
if (useShift) {
|
|
13071
13104
|
middlewares.push(
|
|
13072
13105
|
// https://floating-ui.com/docs/shift
|
|
13073
|
-
(0,
|
|
13106
|
+
(0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.shift)({
|
|
13074
13107
|
padding: theme.spacings.base,
|
|
13075
13108
|
...shiftOptions,
|
|
13076
13109
|
}));
|
|
@@ -13082,7 +13115,7 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13082
13115
|
*
|
|
13083
13116
|
* @see https://floating-ui.com/docs/arrow
|
|
13084
13117
|
*/
|
|
13085
|
-
middlewares.push((0,
|
|
13118
|
+
middlewares.push((0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_3__.arrow)({
|
|
13086
13119
|
element: arrowRef,
|
|
13087
13120
|
// https://floating-ui.com/docs/floatingarrow#arrow-does-not-avoid-rounded-corners
|
|
13088
13121
|
padding: theme.spacings.base,
|
|
@@ -13101,7 +13134,7 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13101
13134
|
},
|
|
13102
13135
|
// https://floating-ui.com/docs/usefloating#whileelementsmounted
|
|
13103
13136
|
...(useAutoUpdate && {
|
|
13104
|
-
whileElementsMounted: (reference, floating, update) => (0,
|
|
13137
|
+
whileElementsMounted: (reference, floating, update) => (0,_floating_ui_react__WEBPACK_IMPORTED_MODULE_2__.autoUpdate)(reference, floating, update, autoUpdateOptions),
|
|
13105
13138
|
}),
|
|
13106
13139
|
...floatingOptions,
|
|
13107
13140
|
});
|
|
@@ -13131,13 +13164,13 @@ const useHoneyPopup = ({ enabled = true, event, dismissOptions, clickOptions, ho
|
|
|
13131
13164
|
};
|
|
13132
13165
|
|
|
13133
13166
|
|
|
13134
|
-
/***/ }
|
|
13167
|
+
/***/ },
|
|
13135
13168
|
|
|
13136
|
-
/***/ "./src/components/HoneyPopup/index.ts"
|
|
13169
|
+
/***/ "./src/components/HoneyPopup/index.ts"
|
|
13137
13170
|
/*!********************************************!*\
|
|
13138
13171
|
!*** ./src/components/HoneyPopup/index.ts ***!
|
|
13139
13172
|
\********************************************/
|
|
13140
|
-
|
|
13173
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13141
13174
|
|
|
13142
13175
|
"use strict";
|
|
13143
13176
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13157,13 +13190,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13157
13190
|
|
|
13158
13191
|
|
|
13159
13192
|
|
|
13160
|
-
/***/ }
|
|
13193
|
+
/***/ },
|
|
13161
13194
|
|
|
13162
|
-
/***/ "./src/components/HoneyStatusContent.tsx"
|
|
13195
|
+
/***/ "./src/components/HoneyStatusContent.tsx"
|
|
13163
13196
|
/*!***********************************************!*\
|
|
13164
13197
|
!*** ./src/components/HoneyStatusContent.tsx ***!
|
|
13165
13198
|
\***********************************************/
|
|
13166
|
-
|
|
13199
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13167
13200
|
|
|
13168
13201
|
"use strict";
|
|
13169
13202
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13186,13 +13219,13 @@ const HoneyStatusContent = ({ children, loading = false, loadingOverContent = fa
|
|
|
13186
13219
|
};
|
|
13187
13220
|
|
|
13188
13221
|
|
|
13189
|
-
/***/ }
|
|
13222
|
+
/***/ },
|
|
13190
13223
|
|
|
13191
|
-
/***/ "./src/components/index.ts"
|
|
13224
|
+
/***/ "./src/components/index.ts"
|
|
13192
13225
|
/*!*********************************!*\
|
|
13193
13226
|
!*** ./src/components/index.ts ***!
|
|
13194
13227
|
\*********************************/
|
|
13195
|
-
|
|
13228
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13196
13229
|
|
|
13197
13230
|
"use strict";
|
|
13198
13231
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13237,13 +13270,34 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13237
13270
|
|
|
13238
13271
|
|
|
13239
13272
|
|
|
13240
|
-
/***/ }
|
|
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
|
+
/***/ },
|
|
13241
13295
|
|
|
13242
|
-
/***/ "./src/contexts/HoneyLayoutContext.ts"
|
|
13296
|
+
/***/ "./src/contexts/HoneyLayoutContext.ts"
|
|
13243
13297
|
/*!********************************************!*\
|
|
13244
13298
|
!*** ./src/contexts/HoneyLayoutContext.ts ***!
|
|
13245
13299
|
\********************************************/
|
|
13246
|
-
|
|
13300
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13247
13301
|
|
|
13248
13302
|
"use strict";
|
|
13249
13303
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13256,13 +13310,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13256
13310
|
const HoneyLayoutContext = (0,react__WEBPACK_IMPORTED_MODULE_0__.createContext)(undefined);
|
|
13257
13311
|
|
|
13258
13312
|
|
|
13259
|
-
/***/ }
|
|
13313
|
+
/***/ },
|
|
13260
13314
|
|
|
13261
|
-
/***/ "./src/contexts/index.ts"
|
|
13315
|
+
/***/ "./src/contexts/index.ts"
|
|
13262
13316
|
/*!*******************************!*\
|
|
13263
13317
|
!*** ./src/contexts/index.ts ***!
|
|
13264
13318
|
\*******************************/
|
|
13265
|
-
|
|
13319
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13266
13320
|
|
|
13267
13321
|
"use strict";
|
|
13268
13322
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13273,13 +13327,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13273
13327
|
|
|
13274
13328
|
|
|
13275
13329
|
|
|
13276
|
-
/***/ }
|
|
13330
|
+
/***/ },
|
|
13277
13331
|
|
|
13278
|
-
/***/ "./src/effects.ts"
|
|
13332
|
+
/***/ "./src/effects.ts"
|
|
13279
13333
|
/*!************************!*\
|
|
13280
13334
|
!*** ./src/effects.ts ***!
|
|
13281
13335
|
\************************/
|
|
13282
|
-
|
|
13336
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13283
13337
|
|
|
13284
13338
|
"use strict";
|
|
13285
13339
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13316,13 +13370,13 @@ const honeyVisibilityTransitionEffect = ({ durationMs, timingFunction = 'ease-in
|
|
|
13316
13370
|
`;
|
|
13317
13371
|
|
|
13318
13372
|
|
|
13319
|
-
/***/ }
|
|
13373
|
+
/***/ },
|
|
13320
13374
|
|
|
13321
|
-
/***/ "./src/helpers/helpers.ts"
|
|
13375
|
+
/***/ "./src/helpers/helpers.ts"
|
|
13322
13376
|
/*!********************************!*\
|
|
13323
13377
|
!*** ./src/helpers/helpers.ts ***!
|
|
13324
13378
|
\********************************/
|
|
13325
|
-
|
|
13379
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13326
13380
|
|
|
13327
13381
|
"use strict";
|
|
13328
13382
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13569,13 +13623,13 @@ const resolveScreenState = (breakpoints) => {
|
|
|
13569
13623
|
};
|
|
13570
13624
|
|
|
13571
13625
|
|
|
13572
|
-
/***/ }
|
|
13626
|
+
/***/ },
|
|
13573
13627
|
|
|
13574
|
-
/***/ "./src/helpers/index.ts"
|
|
13628
|
+
/***/ "./src/helpers/index.ts"
|
|
13575
13629
|
/*!******************************!*\
|
|
13576
13630
|
!*** ./src/helpers/index.ts ***!
|
|
13577
13631
|
\******************************/
|
|
13578
|
-
|
|
13632
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13579
13633
|
|
|
13580
13634
|
"use strict";
|
|
13581
13635
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13593,13 +13647,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13593
13647
|
|
|
13594
13648
|
|
|
13595
13649
|
|
|
13596
|
-
/***/ }
|
|
13650
|
+
/***/ },
|
|
13597
13651
|
|
|
13598
|
-
/***/ "./src/helpers/react.helpers.ts"
|
|
13652
|
+
/***/ "./src/helpers/react.helpers.ts"
|
|
13599
13653
|
/*!**************************************!*\
|
|
13600
13654
|
!*** ./src/helpers/react.helpers.ts ***!
|
|
13601
13655
|
\**************************************/
|
|
13602
|
-
|
|
13656
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13603
13657
|
|
|
13604
13658
|
"use strict";
|
|
13605
13659
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13626,13 +13680,13 @@ const mergeRefs = (...refs) => value => {
|
|
|
13626
13680
|
};
|
|
13627
13681
|
|
|
13628
13682
|
|
|
13629
|
-
/***/ }
|
|
13683
|
+
/***/ },
|
|
13630
13684
|
|
|
13631
|
-
/***/ "./src/hooks/index.ts"
|
|
13685
|
+
/***/ "./src/hooks/index.ts"
|
|
13632
13686
|
/*!****************************!*\
|
|
13633
13687
|
!*** ./src/hooks/index.ts ***!
|
|
13634
13688
|
\****************************/
|
|
13635
|
-
|
|
13689
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13636
13690
|
|
|
13637
13691
|
"use strict";
|
|
13638
13692
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13661,13 +13715,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13661
13715
|
|
|
13662
13716
|
|
|
13663
13717
|
|
|
13664
|
-
/***/ }
|
|
13718
|
+
/***/ },
|
|
13665
13719
|
|
|
13666
|
-
/***/ "./src/hooks/use-honey-document-key-up-handler.ts"
|
|
13720
|
+
/***/ "./src/hooks/use-honey-document-key-up-handler.ts"
|
|
13667
13721
|
/*!********************************************************!*\
|
|
13668
13722
|
!*** ./src/hooks/use-honey-document-key-up-handler.ts ***!
|
|
13669
13723
|
\********************************************************/
|
|
13670
|
-
|
|
13724
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13671
13725
|
|
|
13672
13726
|
"use strict";
|
|
13673
13727
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13719,13 +13773,13 @@ const useHoneyDocumentKeyUpHandler = (keyUpHandler, listenKeys, { enabled = true
|
|
|
13719
13773
|
};
|
|
13720
13774
|
|
|
13721
13775
|
|
|
13722
|
-
/***/ }
|
|
13776
|
+
/***/ },
|
|
13723
13777
|
|
|
13724
|
-
/***/ "./src/hooks/use-honey-drag.ts"
|
|
13778
|
+
/***/ "./src/hooks/use-honey-drag.ts"
|
|
13725
13779
|
/*!*************************************!*\
|
|
13726
13780
|
!*** ./src/hooks/use-honey-drag.ts ***!
|
|
13727
13781
|
\*************************************/
|
|
13728
|
-
|
|
13782
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13729
13783
|
|
|
13730
13784
|
"use strict";
|
|
13731
13785
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13871,13 +13925,13 @@ const useHoneyDrag = (draggableElementRef, { skipOnEndDragWhenStopped = false, e
|
|
|
13871
13925
|
};
|
|
13872
13926
|
|
|
13873
13927
|
|
|
13874
|
-
/***/ }
|
|
13928
|
+
/***/ },
|
|
13875
13929
|
|
|
13876
|
-
/***/ "./src/hooks/use-honey-layout.ts"
|
|
13930
|
+
/***/ "./src/hooks/use-honey-layout.ts"
|
|
13877
13931
|
/*!***************************************!*\
|
|
13878
13932
|
!*** ./src/hooks/use-honey-layout.ts ***!
|
|
13879
13933
|
\***************************************/
|
|
13880
|
-
|
|
13934
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13881
13935
|
|
|
13882
13936
|
"use strict";
|
|
13883
13937
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13905,13 +13959,13 @@ const useHoneyLayout = () => {
|
|
|
13905
13959
|
};
|
|
13906
13960
|
|
|
13907
13961
|
|
|
13908
|
-
/***/ }
|
|
13962
|
+
/***/ },
|
|
13909
13963
|
|
|
13910
|
-
/***/ "./src/hooks/use-honey-media-query.ts"
|
|
13964
|
+
/***/ "./src/hooks/use-honey-media-query.ts"
|
|
13911
13965
|
/*!********************************************!*\
|
|
13912
13966
|
!*** ./src/hooks/use-honey-media-query.ts ***!
|
|
13913
13967
|
\********************************************/
|
|
13914
|
-
|
|
13968
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13915
13969
|
|
|
13916
13970
|
"use strict";
|
|
13917
13971
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -13961,13 +14015,13 @@ const useHoneyMediaQuery = (theme, { resizeThrottle = 0, overrideScreenState } =
|
|
|
13961
14015
|
};
|
|
13962
14016
|
|
|
13963
14017
|
|
|
13964
|
-
/***/ }
|
|
14018
|
+
/***/ },
|
|
13965
14019
|
|
|
13966
|
-
/***/ "./src/hooks/use-honey-on-change.ts"
|
|
14020
|
+
/***/ "./src/hooks/use-honey-on-change.ts"
|
|
13967
14021
|
/*!******************************************!*\
|
|
13968
14022
|
!*** ./src/hooks/use-honey-on-change.ts ***!
|
|
13969
14023
|
\******************************************/
|
|
13970
|
-
|
|
14024
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13971
14025
|
|
|
13972
14026
|
"use strict";
|
|
13973
14027
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14013,13 +14067,13 @@ const useHoneyOnChange = (state, onChange) => {
|
|
|
14013
14067
|
};
|
|
14014
14068
|
|
|
14015
14069
|
|
|
14016
|
-
/***/ }
|
|
14070
|
+
/***/ },
|
|
14017
14071
|
|
|
14018
|
-
/***/ "./src/hooks/use-honey-overlay.ts"
|
|
14072
|
+
/***/ "./src/hooks/use-honey-overlay.ts"
|
|
14019
14073
|
/*!****************************************!*\
|
|
14020
14074
|
!*** ./src/hooks/use-honey-overlay.ts ***!
|
|
14021
14075
|
\****************************************/
|
|
14022
|
-
|
|
14076
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14023
14077
|
|
|
14024
14078
|
"use strict";
|
|
14025
14079
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14072,13 +14126,13 @@ const useHoneyOverlay = (targetOverlayId, { onKeyUp } = {}) => {
|
|
|
14072
14126
|
};
|
|
14073
14127
|
|
|
14074
14128
|
|
|
14075
|
-
/***/ }
|
|
14129
|
+
/***/ },
|
|
14076
14130
|
|
|
14077
|
-
/***/ "./src/hooks/use-register-honey-overlay.ts"
|
|
14131
|
+
/***/ "./src/hooks/use-register-honey-overlay.ts"
|
|
14078
14132
|
/*!*************************************************!*\
|
|
14079
14133
|
!*** ./src/hooks/use-register-honey-overlay.ts ***!
|
|
14080
14134
|
\*************************************************/
|
|
14081
|
-
|
|
14135
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14082
14136
|
|
|
14083
14137
|
"use strict";
|
|
14084
14138
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14116,13 +14170,13 @@ const useRegisterHoneyOverlay = (isRegister, overlayConfig) => {
|
|
|
14116
14170
|
};
|
|
14117
14171
|
|
|
14118
14172
|
|
|
14119
|
-
/***/ }
|
|
14173
|
+
/***/ },
|
|
14120
14174
|
|
|
14121
|
-
/***/ "./src/providers/HoneyLayoutProvider.tsx"
|
|
14175
|
+
/***/ "./src/providers/HoneyLayoutProvider.tsx"
|
|
14122
14176
|
/*!***********************************************!*\
|
|
14123
14177
|
!*** ./src/providers/HoneyLayoutProvider.tsx ***!
|
|
14124
14178
|
\***********************************************/
|
|
14125
|
-
|
|
14179
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14126
14180
|
|
|
14127
14181
|
"use strict";
|
|
14128
14182
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14157,13 +14211,13 @@ const HoneyLayoutProvider = ({ children, theme, mediaQueryOptions, ...props }) =
|
|
|
14157
14211
|
};
|
|
14158
14212
|
|
|
14159
14213
|
|
|
14160
|
-
/***/ }
|
|
14214
|
+
/***/ },
|
|
14161
14215
|
|
|
14162
|
-
/***/ "./src/providers/HoneyLayoutThemeOverride.tsx"
|
|
14216
|
+
/***/ "./src/providers/HoneyLayoutThemeOverride.tsx"
|
|
14163
14217
|
/*!****************************************************!*\
|
|
14164
14218
|
!*** ./src/providers/HoneyLayoutThemeOverride.tsx ***!
|
|
14165
14219
|
\****************************************************/
|
|
14166
|
-
|
|
14220
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14167
14221
|
|
|
14168
14222
|
"use strict";
|
|
14169
14223
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14198,13 +14252,13 @@ const HoneyLayoutThemeOverride = ({ theme, ...props }) => {
|
|
|
14198
14252
|
};
|
|
14199
14253
|
|
|
14200
14254
|
|
|
14201
|
-
/***/ }
|
|
14255
|
+
/***/ },
|
|
14202
14256
|
|
|
14203
|
-
/***/ "./src/providers/hooks/index.ts"
|
|
14257
|
+
/***/ "./src/providers/hooks/index.ts"
|
|
14204
14258
|
/*!**************************************!*\
|
|
14205
14259
|
!*** ./src/providers/hooks/index.ts ***!
|
|
14206
14260
|
\**************************************/
|
|
14207
|
-
|
|
14261
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14208
14262
|
|
|
14209
14263
|
"use strict";
|
|
14210
14264
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14215,13 +14269,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14215
14269
|
|
|
14216
14270
|
|
|
14217
14271
|
|
|
14218
|
-
/***/ }
|
|
14272
|
+
/***/ },
|
|
14219
14273
|
|
|
14220
|
-
/***/ "./src/providers/hooks/use-honey-overlays.ts"
|
|
14274
|
+
/***/ "./src/providers/hooks/use-honey-overlays.ts"
|
|
14221
14275
|
/*!***************************************************!*\
|
|
14222
14276
|
!*** ./src/providers/hooks/use-honey-overlays.ts ***!
|
|
14223
14277
|
\***************************************************/
|
|
14224
|
-
|
|
14278
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14225
14279
|
|
|
14226
14280
|
"use strict";
|
|
14227
14281
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14313,13 +14367,13 @@ const useHoneyOverlays = () => {
|
|
|
14313
14367
|
};
|
|
14314
14368
|
|
|
14315
14369
|
|
|
14316
|
-
/***/ }
|
|
14370
|
+
/***/ },
|
|
14317
14371
|
|
|
14318
|
-
/***/ "./src/providers/index.ts"
|
|
14372
|
+
/***/ "./src/providers/index.ts"
|
|
14319
14373
|
/*!********************************!*\
|
|
14320
14374
|
!*** ./src/providers/index.ts ***!
|
|
14321
14375
|
\********************************/
|
|
14322
|
-
|
|
14376
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14323
14377
|
|
|
14324
14378
|
"use strict";
|
|
14325
14379
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14333,52 +14387,52 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14333
14387
|
|
|
14334
14388
|
|
|
14335
14389
|
|
|
14336
|
-
/***/ }
|
|
14390
|
+
/***/ },
|
|
14337
14391
|
|
|
14338
|
-
/***/ "./src/types/css.types.ts"
|
|
14392
|
+
/***/ "./src/types/css.types.ts"
|
|
14339
14393
|
/*!********************************!*\
|
|
14340
14394
|
!*** ./src/types/css.types.ts ***!
|
|
14341
14395
|
\********************************/
|
|
14342
|
-
|
|
14396
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14343
14397
|
|
|
14344
14398
|
"use strict";
|
|
14345
14399
|
__webpack_require__.r(__webpack_exports__);
|
|
14346
14400
|
|
|
14347
14401
|
|
|
14348
14402
|
|
|
14349
|
-
/***/ }
|
|
14403
|
+
/***/ },
|
|
14350
14404
|
|
|
14351
|
-
/***/ "./src/types/data.types.ts"
|
|
14405
|
+
/***/ "./src/types/data.types.ts"
|
|
14352
14406
|
/*!*********************************!*\
|
|
14353
14407
|
!*** ./src/types/data.types.ts ***!
|
|
14354
14408
|
\*********************************/
|
|
14355
|
-
|
|
14409
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14356
14410
|
|
|
14357
14411
|
"use strict";
|
|
14358
14412
|
__webpack_require__.r(__webpack_exports__);
|
|
14359
14413
|
|
|
14360
14414
|
|
|
14361
14415
|
|
|
14362
|
-
/***/ }
|
|
14416
|
+
/***/ },
|
|
14363
14417
|
|
|
14364
|
-
/***/ "./src/types/dom.types.ts"
|
|
14418
|
+
/***/ "./src/types/dom.types.ts"
|
|
14365
14419
|
/*!********************************!*\
|
|
14366
14420
|
!*** ./src/types/dom.types.ts ***!
|
|
14367
14421
|
\********************************/
|
|
14368
|
-
|
|
14422
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14369
14423
|
|
|
14370
14424
|
"use strict";
|
|
14371
14425
|
__webpack_require__.r(__webpack_exports__);
|
|
14372
14426
|
|
|
14373
14427
|
|
|
14374
14428
|
|
|
14375
|
-
/***/ }
|
|
14429
|
+
/***/ },
|
|
14376
14430
|
|
|
14377
|
-
/***/ "./src/types/index.ts"
|
|
14431
|
+
/***/ "./src/types/index.ts"
|
|
14378
14432
|
/*!****************************!*\
|
|
14379
14433
|
!*** ./src/types/index.ts ***!
|
|
14380
14434
|
\****************************/
|
|
14381
|
-
|
|
14435
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14382
14436
|
|
|
14383
14437
|
"use strict";
|
|
14384
14438
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14394,13 +14448,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14394
14448
|
|
|
14395
14449
|
|
|
14396
14450
|
|
|
14397
|
-
/***/ }
|
|
14451
|
+
/***/ },
|
|
14398
14452
|
|
|
14399
|
-
/***/ "./src/types/state.types.ts"
|
|
14453
|
+
/***/ "./src/types/state.types.ts"
|
|
14400
14454
|
/*!**********************************!*\
|
|
14401
14455
|
!*** ./src/types/state.types.ts ***!
|
|
14402
14456
|
\**********************************/
|
|
14403
|
-
|
|
14457
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14404
14458
|
|
|
14405
14459
|
"use strict";
|
|
14406
14460
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14410,13 +14464,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14410
14464
|
|
|
14411
14465
|
|
|
14412
14466
|
|
|
14413
|
-
/***/ }
|
|
14467
|
+
/***/ },
|
|
14414
14468
|
|
|
14415
|
-
/***/ "./src/types/utility.types.ts"
|
|
14469
|
+
/***/ "./src/types/utility.types.ts"
|
|
14416
14470
|
/*!************************************!*\
|
|
14417
14471
|
!*** ./src/types/utility.types.ts ***!
|
|
14418
14472
|
\************************************/
|
|
14419
|
-
|
|
14473
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14420
14474
|
|
|
14421
14475
|
"use strict";
|
|
14422
14476
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14428,13 +14482,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14428
14482
|
|
|
14429
14483
|
|
|
14430
14484
|
|
|
14431
|
-
/***/ }
|
|
14485
|
+
/***/ },
|
|
14432
14486
|
|
|
14433
|
-
/***/ "./src/utils/data-utils.ts"
|
|
14487
|
+
/***/ "./src/utils/data-utils.ts"
|
|
14434
14488
|
/*!*********************************!*\
|
|
14435
14489
|
!*** ./src/utils/data-utils.ts ***!
|
|
14436
14490
|
\*********************************/
|
|
14437
|
-
|
|
14491
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14438
14492
|
|
|
14439
14493
|
"use strict";
|
|
14440
14494
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14618,13 +14672,13 @@ const searchFlattenedItems = (flattenedItems, itemIdKey, valueKey, searchQuery)
|
|
|
14618
14672
|
};
|
|
14619
14673
|
|
|
14620
14674
|
|
|
14621
|
-
/***/ }
|
|
14675
|
+
/***/ },
|
|
14622
14676
|
|
|
14623
|
-
/***/ "./src/utils/index.ts"
|
|
14677
|
+
/***/ "./src/utils/index.ts"
|
|
14624
14678
|
/*!****************************!*\
|
|
14625
14679
|
!*** ./src/utils/index.ts ***!
|
|
14626
14680
|
\****************************/
|
|
14627
|
-
|
|
14681
|
+
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14628
14682
|
|
|
14629
14683
|
"use strict";
|
|
14630
14684
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -14637,29 +14691,29 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14637
14691
|
|
|
14638
14692
|
|
|
14639
14693
|
|
|
14640
|
-
/***/ }
|
|
14694
|
+
/***/ },
|
|
14641
14695
|
|
|
14642
|
-
/***/ "@react-hive/honey-style"
|
|
14696
|
+
/***/ "@react-hive/honey-style"
|
|
14643
14697
|
/*!******************************************!*\
|
|
14644
14698
|
!*** external "@react-hive/honey-style" ***!
|
|
14645
14699
|
\******************************************/
|
|
14646
|
-
|
|
14700
|
+
(module) {
|
|
14647
14701
|
|
|
14648
14702
|
"use strict";
|
|
14649
14703
|
module.exports = require("@react-hive/honey-style");
|
|
14650
14704
|
|
|
14651
|
-
/***/ }
|
|
14705
|
+
/***/ },
|
|
14652
14706
|
|
|
14653
|
-
/***/ "react"
|
|
14707
|
+
/***/ "react"
|
|
14654
14708
|
/*!************************!*\
|
|
14655
14709
|
!*** external "react" ***!
|
|
14656
14710
|
\************************/
|
|
14657
|
-
|
|
14711
|
+
(module) {
|
|
14658
14712
|
|
|
14659
14713
|
"use strict";
|
|
14660
14714
|
module.exports = require("react");
|
|
14661
14715
|
|
|
14662
|
-
/***/ }
|
|
14716
|
+
/***/ }
|
|
14663
14717
|
|
|
14664
14718
|
/******/ });
|
|
14665
14719
|
/************************************************************************/
|
|
@@ -14673,6 +14727,12 @@ module.exports = require("react");
|
|
|
14673
14727
|
/******/ if (cachedModule !== undefined) {
|
|
14674
14728
|
/******/ return cachedModule.exports;
|
|
14675
14729
|
/******/ }
|
|
14730
|
+
/******/ // Check if module exists (development only)
|
|
14731
|
+
/******/ if (__webpack_modules__[moduleId] === undefined) {
|
|
14732
|
+
/******/ var e = new Error("Cannot find module '" + moduleId + "'");
|
|
14733
|
+
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
14734
|
+
/******/ throw e;
|
|
14735
|
+
/******/ }
|
|
14676
14736
|
/******/ // Create a new module (and put it into the cache)
|
|
14677
14737
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
14678
14738
|
/******/ id: moduleId,
|
|
@@ -14792,53 +14852,55 @@ var __webpack_exports__ = {};
|
|
|
14792
14852
|
\**********************/
|
|
14793
14853
|
__webpack_require__.r(__webpack_exports__);
|
|
14794
14854
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14795
|
-
/* harmony export */ HoneyBox: () => (/* reexport safe */
|
|
14796
|
-
/* harmony export */ HoneyContextMenu: () => (/* reexport safe */
|
|
14797
|
-
/* harmony export */ HoneyFlex: () => (/* reexport safe */
|
|
14798
|
-
/* harmony export */ HoneyFlexBox: () => (/* reexport safe */
|
|
14799
|
-
/* harmony export */ HoneyGrid: () => (/* reexport safe */
|
|
14800
|
-
/* harmony export */ HoneyGridColumn: () => (/* reexport safe */
|
|
14801
|
-
/* harmony export */ HoneyGridColumnStyled: () => (/* reexport safe */
|
|
14802
|
-
/* harmony export */ HoneyLayoutProvider: () => (/* reexport safe */
|
|
14803
|
-
/* harmony export */ HoneyLayoutThemeOverride: () => (/* reexport safe */
|
|
14804
|
-
/* harmony export */ HoneyLazyContent: () => (/* reexport safe */
|
|
14805
|
-
/* harmony export */ HoneyList: () => (/* reexport safe */
|
|
14806
|
-
/* harmony export */ HoneyOverlay: () => (/* reexport safe */
|
|
14807
|
-
/* harmony export */ HoneyPopup: () => (/* reexport safe */
|
|
14808
|
-
/* harmony export */ HoneyPopupContext: () => (/* reexport safe */
|
|
14809
|
-
/* harmony export */ HoneyStatusContent: () => (/* reexport safe */
|
|
14810
|
-
/* harmony export */
|
|
14811
|
-
/* harmony export */
|
|
14812
|
-
/* harmony export */
|
|
14813
|
-
/* harmony export */
|
|
14814
|
-
/* harmony export */
|
|
14815
|
-
/* harmony export */
|
|
14816
|
-
/* harmony export */
|
|
14817
|
-
/* harmony export */
|
|
14818
|
-
/* harmony export */
|
|
14819
|
-
/* harmony export */
|
|
14855
|
+
/* harmony export */ HoneyBox: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyBox),
|
|
14856
|
+
/* harmony export */ HoneyContextMenu: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyContextMenu),
|
|
14857
|
+
/* harmony export */ HoneyFlex: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyFlex),
|
|
14858
|
+
/* harmony export */ HoneyFlexBox: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyFlexBox),
|
|
14859
|
+
/* harmony export */ HoneyGrid: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyGrid),
|
|
14860
|
+
/* harmony export */ HoneyGridColumn: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyGridColumn),
|
|
14861
|
+
/* harmony export */ HoneyGridColumnStyled: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyGridColumnStyled),
|
|
14862
|
+
/* harmony export */ HoneyLayoutProvider: () => (/* reexport safe */ _providers__WEBPACK_IMPORTED_MODULE_4__.HoneyLayoutProvider),
|
|
14863
|
+
/* harmony export */ HoneyLayoutThemeOverride: () => (/* reexport safe */ _providers__WEBPACK_IMPORTED_MODULE_4__.HoneyLayoutThemeOverride),
|
|
14864
|
+
/* harmony export */ HoneyLazyContent: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyLazyContent),
|
|
14865
|
+
/* harmony export */ HoneyList: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyList),
|
|
14866
|
+
/* harmony export */ HoneyOverlay: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyOverlay),
|
|
14867
|
+
/* harmony export */ HoneyPopup: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyPopup),
|
|
14868
|
+
/* harmony export */ HoneyPopupContext: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyPopupContext),
|
|
14869
|
+
/* harmony export */ HoneyStatusContent: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.HoneyStatusContent),
|
|
14870
|
+
/* harmony export */ __DEV__: () => (/* reexport safe */ _constants__WEBPACK_IMPORTED_MODULE_1__.__DEV__),
|
|
14871
|
+
/* harmony export */ applyBreakpointStyles: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.applyBreakpointStyles),
|
|
14872
|
+
/* harmony export */ bpMedia: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.bpMedia),
|
|
14873
|
+
/* harmony export */ createStyles: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.createStyles),
|
|
14874
|
+
/* harmony export */ filterFlattenedItems: () => (/* reexport safe */ _utils__WEBPACK_IMPORTED_MODULE_6__.filterFlattenedItems),
|
|
14875
|
+
/* harmony export */ flattenNestedList: () => (/* reexport safe */ _utils__WEBPACK_IMPORTED_MODULE_6__.flattenNestedList),
|
|
14876
|
+
/* harmony export */ generateUniqueId: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.generateUniqueId),
|
|
14877
|
+
/* harmony export */ getHoneyListItemId: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.getHoneyListItemId),
|
|
14878
|
+
/* harmony export */ honeyVisibilityTransitionEffect: () => (/* reexport safe */ _effects__WEBPACK_IMPORTED_MODULE_8__.honeyVisibilityTransitionEffect),
|
|
14879
|
+
/* harmony export */ mergeRefs: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.mergeRefs),
|
|
14880
|
+
/* harmony export */ resolveScreenState: () => (/* reexport safe */ _helpers__WEBPACK_IMPORTED_MODULE_7__.resolveScreenState),
|
|
14820
14881
|
/* harmony export */ resolveSpacing: () => (/* binding */ resolveSpacing),
|
|
14821
|
-
/* harmony export */ searchFlattenedItems: () => (/* reexport safe */
|
|
14822
|
-
/* harmony export */ useHoneyDocumentKeyUpHandler: () => (/* reexport safe */
|
|
14823
|
-
/* harmony export */ useHoneyDrag: () => (/* reexport safe */
|
|
14824
|
-
/* harmony export */ useHoneyGridContext: () => (/* reexport safe */
|
|
14825
|
-
/* harmony export */ useHoneyLayout: () => (/* reexport safe */
|
|
14826
|
-
/* harmony export */ useHoneyMediaQuery: () => (/* reexport safe */
|
|
14827
|
-
/* harmony export */ useHoneyOnChange: () => (/* reexport safe */
|
|
14828
|
-
/* harmony export */ useHoneyOverlay: () => (/* reexport safe */
|
|
14829
|
-
/* harmony export */ useHoneyPopup: () => (/* reexport safe */
|
|
14830
|
-
/* harmony export */ useHoneyPopupContext: () => (/* reexport safe */
|
|
14831
|
-
/* harmony export */ useRegisterHoneyOverlay: () => (/* reexport safe */
|
|
14882
|
+
/* harmony export */ searchFlattenedItems: () => (/* reexport safe */ _utils__WEBPACK_IMPORTED_MODULE_6__.searchFlattenedItems),
|
|
14883
|
+
/* harmony export */ useHoneyDocumentKeyUpHandler: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyDocumentKeyUpHandler),
|
|
14884
|
+
/* harmony export */ useHoneyDrag: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyDrag),
|
|
14885
|
+
/* harmony export */ useHoneyGridContext: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.useHoneyGridContext),
|
|
14886
|
+
/* harmony export */ useHoneyLayout: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyLayout),
|
|
14887
|
+
/* harmony export */ useHoneyMediaQuery: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyMediaQuery),
|
|
14888
|
+
/* harmony export */ useHoneyOnChange: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyOnChange),
|
|
14889
|
+
/* harmony export */ useHoneyOverlay: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useHoneyOverlay),
|
|
14890
|
+
/* harmony export */ useHoneyPopup: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.useHoneyPopup),
|
|
14891
|
+
/* harmony export */ useHoneyPopupContext: () => (/* reexport safe */ _components__WEBPACK_IMPORTED_MODULE_3__.useHoneyPopupContext),
|
|
14892
|
+
/* harmony export */ useRegisterHoneyOverlay: () => (/* reexport safe */ _hooks__WEBPACK_IMPORTED_MODULE_5__.useRegisterHoneyOverlay)
|
|
14832
14893
|
/* harmony export */ });
|
|
14833
14894
|
/* harmony import */ var _react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @react-hive/honey-style */ "@react-hive/honey-style");
|
|
14834
14895
|
/* harmony import */ var _react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__);
|
|
14835
|
-
/* harmony import */ var
|
|
14836
|
-
/* harmony import */ var
|
|
14837
|
-
/* harmony import */ var
|
|
14838
|
-
/* harmony import */ var
|
|
14839
|
-
/* harmony import */ var
|
|
14840
|
-
/* harmony import */ var
|
|
14841
|
-
/* harmony import */ var
|
|
14896
|
+
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./constants */ "./src/constants.ts");
|
|
14897
|
+
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./types */ "./src/types/index.ts");
|
|
14898
|
+
/* harmony import */ var _components__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./components */ "./src/components/index.ts");
|
|
14899
|
+
/* harmony import */ var _providers__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./providers */ "./src/providers/index.ts");
|
|
14900
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./hooks */ "./src/hooks/index.ts");
|
|
14901
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./utils */ "./src/utils/index.ts");
|
|
14902
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./helpers */ "./src/helpers/index.ts");
|
|
14903
|
+
/* harmony import */ var _effects__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./effects */ "./src/effects.ts");
|
|
14842
14904
|
|
|
14843
14905
|
/**
|
|
14844
14906
|
* @deprecated Please, use import from `@react-hive/honey-style`
|
|
@@ -14853,6 +14915,7 @@ const resolveSpacing = _react_hive_honey_style__WEBPACK_IMPORTED_MODULE_0__.reso
|
|
|
14853
14915
|
|
|
14854
14916
|
|
|
14855
14917
|
|
|
14918
|
+
|
|
14856
14919
|
})();
|
|
14857
14920
|
|
|
14858
14921
|
module.exports = __webpack_exports__;
|