@react-hive/honey-utils 3.19.0 → 3.21.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/geometry/apply-inertia-step.spec.d.ts +1 -0
- package/dist/geometry/resolve-bounded-delta.spec.d.ts +1 -0
- package/dist/id/generate-ephemeral-id.d.ts +18 -0
- package/dist/id/generate-ephemeral-id.spec.d.ts +1 -0
- package/dist/id/index.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +9 -8
- package/dist/index.dev.cjs +158 -102
- package/dist/index.dev.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -3
package/dist/index.dev.cjs
CHANGED
|
@@ -1673,10 +1673,8 @@ const applyInertiaStep = ({ value, min, max, velocityPxMs, deltaTimeMs, friction
|
|
|
1673
1673
|
if (Math.abs(velocityPxMs) < minVelocityPxMs) {
|
|
1674
1674
|
return null;
|
|
1675
1675
|
}
|
|
1676
|
-
// Distance we want to move this frame
|
|
1677
|
-
const delta = velocityPxMs * deltaTimeMs;
|
|
1678
1676
|
const nextValue = (0,_geometry__WEBPACK_IMPORTED_MODULE_0__.resolveBoundedDelta)({
|
|
1679
|
-
delta,
|
|
1677
|
+
delta: velocityPxMs * deltaTimeMs,
|
|
1680
1678
|
value,
|
|
1681
1679
|
min,
|
|
1682
1680
|
max,
|
|
@@ -1685,7 +1683,10 @@ const applyInertiaStep = ({ value, min, max, velocityPxMs, deltaTimeMs, friction
|
|
|
1685
1683
|
if (nextValue === null) {
|
|
1686
1684
|
return null;
|
|
1687
1685
|
}
|
|
1688
|
-
|
|
1686
|
+
/**
|
|
1687
|
+
* Apply exponential friction.
|
|
1688
|
+
* The exponent is **negative** because friction must continuously *reduce* velocity over time.
|
|
1689
|
+
*/
|
|
1689
1690
|
const decay = Math.exp(-friction * deltaTimeMs);
|
|
1690
1691
|
const pureVelocityPxMs = velocityPxMs * decay;
|
|
1691
1692
|
const nextVelocityPxMs = emaAlpha > 0 ? velocityPxMs * (1 - emaAlpha) + pureVelocityPxMs * emaAlpha : pureVelocityPxMs;
|
|
@@ -2090,6 +2091,58 @@ const isInteger = (value) => isNumber(value) && Number.isInteger(value);
|
|
|
2090
2091
|
const isDecimal = (value) => isFiniteNumber(value) && !Number.isInteger(value);
|
|
2091
2092
|
|
|
2092
2093
|
|
|
2094
|
+
/***/ }),
|
|
2095
|
+
|
|
2096
|
+
/***/ "./src/id/generate-ephemeral-id.ts":
|
|
2097
|
+
/*!*****************************************!*\
|
|
2098
|
+
!*** ./src/id/generate-ephemeral-id.ts ***!
|
|
2099
|
+
\*****************************************/
|
|
2100
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2101
|
+
|
|
2102
|
+
__webpack_require__.r(__webpack_exports__);
|
|
2103
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2104
|
+
/* harmony export */ generateEphemeralId: () => (/* binding */ generateEphemeralId)
|
|
2105
|
+
/* harmony export */ });
|
|
2106
|
+
/**
|
|
2107
|
+
* Generates a lightweight, ephemeral identifier for short-lived, client-side use.
|
|
2108
|
+
*
|
|
2109
|
+
* The identifier combines a high-resolution timestamp with a
|
|
2110
|
+
* pseudo-random suffix to reduce collision probability.
|
|
2111
|
+
*
|
|
2112
|
+
* ⚠️ Uniqueness is **best-effort only**:
|
|
2113
|
+
* - No guarantee of global uniqueness
|
|
2114
|
+
* - Not suitable for persistence or cross-session usage
|
|
2115
|
+
* - Not safe for security-sensitive or externally visible identifiers
|
|
2116
|
+
*
|
|
2117
|
+
* Intended use cases:
|
|
2118
|
+
* - Temporary UI keys (e.g. React lists, animations)
|
|
2119
|
+
* - In-memory references scoped to a single runtime
|
|
2120
|
+
*
|
|
2121
|
+
* @returns An ephemeral identifier string.
|
|
2122
|
+
*/
|
|
2123
|
+
const generateEphemeralId = () => {
|
|
2124
|
+
const timestampPart = Math.floor(performance.now() * 1000).toString(36);
|
|
2125
|
+
const randomPart = Math.random().toString(36).slice(2, 10);
|
|
2126
|
+
return `${timestampPart}${randomPart}`;
|
|
2127
|
+
};
|
|
2128
|
+
|
|
2129
|
+
|
|
2130
|
+
/***/ }),
|
|
2131
|
+
|
|
2132
|
+
/***/ "./src/id/index.ts":
|
|
2133
|
+
/*!*************************!*\
|
|
2134
|
+
!*** ./src/id/index.ts ***!
|
|
2135
|
+
\*************************/
|
|
2136
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2137
|
+
|
|
2138
|
+
__webpack_require__.r(__webpack_exports__);
|
|
2139
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2140
|
+
/* harmony export */ generateEphemeralId: () => (/* reexport safe */ _generate_ephemeral_id__WEBPACK_IMPORTED_MODULE_0__.generateEphemeralId)
|
|
2141
|
+
/* harmony export */ });
|
|
2142
|
+
/* harmony import */ var _generate_ephemeral_id__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./generate-ephemeral-id */ "./src/id/generate-ephemeral-id.ts");
|
|
2143
|
+
|
|
2144
|
+
|
|
2145
|
+
|
|
2093
2146
|
/***/ }),
|
|
2094
2147
|
|
|
2095
2148
|
/***/ "./src/intersection/get-dom-rect-intersection-ratio.ts":
|
|
@@ -2806,108 +2859,111 @@ var __webpack_exports__ = {};
|
|
|
2806
2859
|
\**********************/
|
|
2807
2860
|
__webpack_require__.r(__webpack_exports__);
|
|
2808
2861
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2809
|
-
/* harmony export */ FOCUSABLE_HTML_TAGS: () => (/* reexport safe */
|
|
2810
|
-
/* harmony export */ applyInertiaStep: () => (/* reexport safe */
|
|
2811
|
-
/* harmony export */ assert: () => (/* reexport safe */
|
|
2812
|
-
/* harmony export */ blobToFile: () => (/* reexport safe */
|
|
2813
|
-
/* harmony export */ calculateCenterOffset: () => (/* reexport safe */
|
|
2814
|
-
/* harmony export */ calculateEuclideanDistance: () => (/* reexport safe */
|
|
2815
|
-
/* harmony export */ calculateMovingSpeed: () => (/* reexport safe */
|
|
2816
|
-
/* harmony export */ calculatePercentage: () => (/* reexport safe */
|
|
2817
|
-
/* harmony export */ camelToDashCase: () => (/* reexport safe */
|
|
2818
|
-
/* harmony export */ camelToWords: () => (/* reexport safe */
|
|
2819
|
-
/* harmony export */ centerElementInContainer: () => (/* reexport safe */
|
|
2820
|
-
/* harmony export */ chunk: () => (/* reexport safe */
|
|
2821
|
-
/* harmony export */ cloneBlob: () => (/* reexport safe */
|
|
2822
|
-
/* harmony export */ compact: () => (/* reexport safe */
|
|
2823
|
-
/* harmony export */ compose: () => (/* reexport safe */
|
|
2824
|
-
/* harmony export */ definedProps: () => (/* reexport safe */
|
|
2825
|
-
/* harmony export */ delay: () => (/* reexport safe */
|
|
2826
|
-
/* harmony export */ difference: () => (/* reexport safe */
|
|
2827
|
-
/* harmony export */ downloadFile: () => (/* reexport safe */
|
|
2828
|
-
/* harmony export */ everyAsync: () => (/* reexport safe */
|
|
2829
|
-
/* harmony export */ fileListToFiles: () => (/* reexport safe */
|
|
2830
|
-
/* harmony export */ filterParallel: () => (/* reexport safe */
|
|
2831
|
-
/* harmony export */ filterSequential: () => (/* reexport safe */
|
|
2832
|
-
/* harmony export */ findAsync: () => (/* reexport safe */
|
|
2833
|
-
/* harmony export */ findCharIndices: () => (/* reexport safe */
|
|
2834
|
-
/* harmony export */ forEachChar: () => (/* reexport safe */
|
|
2862
|
+
/* harmony export */ FOCUSABLE_HTML_TAGS: () => (/* reexport safe */ _a11y__WEBPACK_IMPORTED_MODULE_0__.FOCUSABLE_HTML_TAGS),
|
|
2863
|
+
/* harmony export */ applyInertiaStep: () => (/* reexport safe */ _geometry__WEBPACK_IMPORTED_MODULE_7__.applyInertiaStep),
|
|
2864
|
+
/* harmony export */ assert: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.assert),
|
|
2865
|
+
/* harmony export */ blobToFile: () => (/* reexport safe */ _file__WEBPACK_IMPORTED_MODULE_5__.blobToFile),
|
|
2866
|
+
/* harmony export */ calculateCenterOffset: () => (/* reexport safe */ _geometry__WEBPACK_IMPORTED_MODULE_7__.calculateCenterOffset),
|
|
2867
|
+
/* harmony export */ calculateEuclideanDistance: () => (/* reexport safe */ _math__WEBPACK_IMPORTED_MODULE_11__.calculateEuclideanDistance),
|
|
2868
|
+
/* harmony export */ calculateMovingSpeed: () => (/* reexport safe */ _math__WEBPACK_IMPORTED_MODULE_11__.calculateMovingSpeed),
|
|
2869
|
+
/* harmony export */ calculatePercentage: () => (/* reexport safe */ _math__WEBPACK_IMPORTED_MODULE_11__.calculatePercentage),
|
|
2870
|
+
/* harmony export */ camelToDashCase: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.camelToDashCase),
|
|
2871
|
+
/* harmony export */ camelToWords: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.camelToWords),
|
|
2872
|
+
/* harmony export */ centerElementInContainer: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.centerElementInContainer),
|
|
2873
|
+
/* harmony export */ chunk: () => (/* reexport safe */ _array__WEBPACK_IMPORTED_MODULE_1__.chunk),
|
|
2874
|
+
/* harmony export */ cloneBlob: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.cloneBlob),
|
|
2875
|
+
/* harmony export */ compact: () => (/* reexport safe */ _array__WEBPACK_IMPORTED_MODULE_1__.compact),
|
|
2876
|
+
/* harmony export */ compose: () => (/* reexport safe */ _array__WEBPACK_IMPORTED_MODULE_1__.compose),
|
|
2877
|
+
/* harmony export */ definedProps: () => (/* reexport safe */ _object__WEBPACK_IMPORTED_MODULE_12__.definedProps),
|
|
2878
|
+
/* harmony export */ delay: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.delay),
|
|
2879
|
+
/* harmony export */ difference: () => (/* reexport safe */ _array__WEBPACK_IMPORTED_MODULE_1__.difference),
|
|
2880
|
+
/* harmony export */ downloadFile: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.downloadFile),
|
|
2881
|
+
/* harmony export */ everyAsync: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.everyAsync),
|
|
2882
|
+
/* harmony export */ fileListToFiles: () => (/* reexport safe */ _file__WEBPACK_IMPORTED_MODULE_5__.fileListToFiles),
|
|
2883
|
+
/* harmony export */ filterParallel: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.filterParallel),
|
|
2884
|
+
/* harmony export */ filterSequential: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.filterSequential),
|
|
2885
|
+
/* harmony export */ findAsync: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.findAsync),
|
|
2886
|
+
/* harmony export */ findCharIndices: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.findCharIndices),
|
|
2887
|
+
/* harmony export */ forEachChar: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.forEachChar),
|
|
2888
|
+
/* harmony export */ generateEphemeralId: () => (/* reexport safe */ _id__WEBPACK_IMPORTED_MODULE_9__.generateEphemeralId),
|
|
2835
2889
|
/* harmony export */ getDOMRectIntersectionRatio: () => (/* reexport safe */ _intersection__WEBPACK_IMPORTED_MODULE_10__.getDOMRectIntersectionRatio),
|
|
2836
|
-
/* harmony export */ getElementOffsetRect: () => (/* reexport safe */
|
|
2837
|
-
/* harmony export */ getFocusableHtmlElements: () => (/* reexport safe */
|
|
2838
|
-
/* harmony export */ getLocalStorageCapabilities: () => (/* reexport safe */
|
|
2839
|
-
/* harmony export */ getWordsInitials: () => (/* reexport safe */
|
|
2840
|
-
/* harmony export */ getXOverflowWidth: () => (/* reexport safe */
|
|
2841
|
-
/* harmony export */ getYOverflowHeight: () => (/* reexport safe */
|
|
2842
|
-
/* harmony export */ hasXOverflow: () => (/* reexport safe */
|
|
2843
|
-
/* harmony export */ hasYOverflow: () => (/* reexport safe */
|
|
2844
|
-
/* harmony export */ hashString: () => (/* reexport safe */
|
|
2845
|
-
/* harmony export */ intersection: () => (/* reexport safe */
|
|
2846
|
-
/* harmony export */ invokeIfFunction: () => (/* reexport safe */
|
|
2847
|
-
/* harmony export */ isAnchorHtmlElement: () => (/* reexport safe */
|
|
2848
|
-
/* harmony export */ isArray: () => (/* reexport safe */
|
|
2849
|
-
/* harmony export */ isBlob: () => (/* reexport safe */
|
|
2850
|
-
/* harmony export */ isBool: () => (/* reexport safe */
|
|
2851
|
-
/* harmony export */ isContentEditableHtmlElement: () => (/* reexport safe */
|
|
2852
|
-
/* harmony export */ isDate: () => (/* reexport safe */
|
|
2853
|
-
/* harmony export */ isDecimal: () => (/* reexport safe */
|
|
2854
|
-
/* harmony export */ isDefined: () => (/* reexport safe */
|
|
2855
|
-
/* harmony export */ isEmptyArray: () => (/* reexport safe */
|
|
2856
|
-
/* harmony export */ isEmptyObject: () => (/* reexport safe */
|
|
2857
|
-
/* harmony export */ isError: () => (/* reexport safe */
|
|
2858
|
-
/* harmony export */ isFile: () => (/* reexport safe */
|
|
2859
|
-
/* harmony export */ isFiniteNumber: () => (/* reexport safe */
|
|
2860
|
-
/* harmony export */ isFunction: () => (/* reexport safe */
|
|
2861
|
-
/* harmony export */ isHtmlElementFocusable: () => (/* reexport safe */
|
|
2862
|
-
/* harmony export */ isInteger: () => (/* reexport safe */
|
|
2863
|
-
/* harmony export */ isLocalStorageReadable: () => (/* reexport safe */
|
|
2864
|
-
/* harmony export */ isMap: () => (/* reexport safe */
|
|
2865
|
-
/* harmony export */ isNil: () => (/* reexport safe */
|
|
2866
|
-
/* harmony export */ isNilOrEmptyString: () => (/* reexport safe */
|
|
2867
|
-
/* harmony export */ isNull: () => (/* reexport safe */
|
|
2868
|
-
/* harmony export */ isNumber: () => (/* reexport safe */
|
|
2869
|
-
/* harmony export */ isObject: () => (/* reexport safe */
|
|
2870
|
-
/* harmony export */ isPromise: () => (/* reexport safe */
|
|
2871
|
-
/* harmony export */ isRegExp: () => (/* reexport safe */
|
|
2872
|
-
/* harmony export */ isSet: () => (/* reexport safe */
|
|
2873
|
-
/* harmony export */ isString: () => (/* reexport safe */
|
|
2874
|
-
/* harmony export */ isSymbol: () => (/* reexport safe */
|
|
2875
|
-
/* harmony export */ isUndefined: () => (/* reexport safe */
|
|
2876
|
-
/* harmony export */ isValidDate: () => (/* reexport safe */
|
|
2877
|
-
/* harmony export */ moveFocusWithinContainer: () => (/* reexport safe */
|
|
2878
|
-
/* harmony export */ noop: () => (/* reexport safe */
|
|
2879
|
-
/* harmony export */ not: () => (/* reexport safe */
|
|
2880
|
-
/* harmony export */ once: () => (/* reexport safe */
|
|
2881
|
-
/* harmony export */ parse2DMatrix: () => (/* reexport safe */
|
|
2882
|
-
/* harmony export */ parseFileName: () => (/* reexport safe */
|
|
2883
|
-
/* harmony export */ pipe: () => (/* reexport safe */
|
|
2884
|
-
/* harmony export */ readFilesFromDataTransfer: () => (/* reexport safe */
|
|
2885
|
-
/* harmony export */ reduceAsync: () => (/* reexport safe */
|
|
2890
|
+
/* harmony export */ getElementOffsetRect: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.getElementOffsetRect),
|
|
2891
|
+
/* harmony export */ getFocusableHtmlElements: () => (/* reexport safe */ _a11y__WEBPACK_IMPORTED_MODULE_0__.getFocusableHtmlElements),
|
|
2892
|
+
/* harmony export */ getLocalStorageCapabilities: () => (/* reexport safe */ _env__WEBPACK_IMPORTED_MODULE_4__.getLocalStorageCapabilities),
|
|
2893
|
+
/* harmony export */ getWordsInitials: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.getWordsInitials),
|
|
2894
|
+
/* harmony export */ getXOverflowWidth: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.getXOverflowWidth),
|
|
2895
|
+
/* harmony export */ getYOverflowHeight: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.getYOverflowHeight),
|
|
2896
|
+
/* harmony export */ hasXOverflow: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.hasXOverflow),
|
|
2897
|
+
/* harmony export */ hasYOverflow: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.hasYOverflow),
|
|
2898
|
+
/* harmony export */ hashString: () => (/* reexport safe */ _math__WEBPACK_IMPORTED_MODULE_11__.hashString),
|
|
2899
|
+
/* harmony export */ intersection: () => (/* reexport safe */ _array__WEBPACK_IMPORTED_MODULE_1__.intersection),
|
|
2900
|
+
/* harmony export */ invokeIfFunction: () => (/* reexport safe */ _function__WEBPACK_IMPORTED_MODULE_6__.invokeIfFunction),
|
|
2901
|
+
/* harmony export */ isAnchorHtmlElement: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.isAnchorHtmlElement),
|
|
2902
|
+
/* harmony export */ isArray: () => (/* reexport safe */ _array__WEBPACK_IMPORTED_MODULE_1__.isArray),
|
|
2903
|
+
/* harmony export */ isBlob: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isBlob),
|
|
2904
|
+
/* harmony export */ isBool: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isBool),
|
|
2905
|
+
/* harmony export */ isContentEditableHtmlElement: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.isContentEditableHtmlElement),
|
|
2906
|
+
/* harmony export */ isDate: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isDate),
|
|
2907
|
+
/* harmony export */ isDecimal: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isDecimal),
|
|
2908
|
+
/* harmony export */ isDefined: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isDefined),
|
|
2909
|
+
/* harmony export */ isEmptyArray: () => (/* reexport safe */ _array__WEBPACK_IMPORTED_MODULE_1__.isEmptyArray),
|
|
2910
|
+
/* harmony export */ isEmptyObject: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isEmptyObject),
|
|
2911
|
+
/* harmony export */ isError: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isError),
|
|
2912
|
+
/* harmony export */ isFile: () => (/* reexport safe */ _file__WEBPACK_IMPORTED_MODULE_5__.isFile),
|
|
2913
|
+
/* harmony export */ isFiniteNumber: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isFiniteNumber),
|
|
2914
|
+
/* harmony export */ isFunction: () => (/* reexport safe */ _function__WEBPACK_IMPORTED_MODULE_6__.isFunction),
|
|
2915
|
+
/* harmony export */ isHtmlElementFocusable: () => (/* reexport safe */ _a11y__WEBPACK_IMPORTED_MODULE_0__.isHtmlElementFocusable),
|
|
2916
|
+
/* harmony export */ isInteger: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isInteger),
|
|
2917
|
+
/* harmony export */ isLocalStorageReadable: () => (/* reexport safe */ _env__WEBPACK_IMPORTED_MODULE_4__.isLocalStorageReadable),
|
|
2918
|
+
/* harmony export */ isMap: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isMap),
|
|
2919
|
+
/* harmony export */ isNil: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isNil),
|
|
2920
|
+
/* harmony export */ isNilOrEmptyString: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.isNilOrEmptyString),
|
|
2921
|
+
/* harmony export */ isNull: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isNull),
|
|
2922
|
+
/* harmony export */ isNumber: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isNumber),
|
|
2923
|
+
/* harmony export */ isObject: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isObject),
|
|
2924
|
+
/* harmony export */ isPromise: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.isPromise),
|
|
2925
|
+
/* harmony export */ isRegExp: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isRegExp),
|
|
2926
|
+
/* harmony export */ isSet: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isSet),
|
|
2927
|
+
/* harmony export */ isString: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.isString),
|
|
2928
|
+
/* harmony export */ isSymbol: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isSymbol),
|
|
2929
|
+
/* harmony export */ isUndefined: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isUndefined),
|
|
2930
|
+
/* harmony export */ isValidDate: () => (/* reexport safe */ _guards__WEBPACK_IMPORTED_MODULE_8__.isValidDate),
|
|
2931
|
+
/* harmony export */ moveFocusWithinContainer: () => (/* reexport safe */ _a11y__WEBPACK_IMPORTED_MODULE_0__.moveFocusWithinContainer),
|
|
2932
|
+
/* harmony export */ noop: () => (/* reexport safe */ _function__WEBPACK_IMPORTED_MODULE_6__.noop),
|
|
2933
|
+
/* harmony export */ not: () => (/* reexport safe */ _function__WEBPACK_IMPORTED_MODULE_6__.not),
|
|
2934
|
+
/* harmony export */ once: () => (/* reexport safe */ _function__WEBPACK_IMPORTED_MODULE_6__.once),
|
|
2935
|
+
/* harmony export */ parse2DMatrix: () => (/* reexport safe */ _dom__WEBPACK_IMPORTED_MODULE_3__.parse2DMatrix),
|
|
2936
|
+
/* harmony export */ parseFileName: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.parseFileName),
|
|
2937
|
+
/* harmony export */ pipe: () => (/* reexport safe */ _array__WEBPACK_IMPORTED_MODULE_1__.pipe),
|
|
2938
|
+
/* harmony export */ readFilesFromDataTransfer: () => (/* reexport safe */ _file__WEBPACK_IMPORTED_MODULE_5__.readFilesFromDataTransfer),
|
|
2939
|
+
/* harmony export */ reduceAsync: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.reduceAsync),
|
|
2886
2940
|
/* harmony export */ resolveAxisDelta: () => (/* reexport safe */ _intersection__WEBPACK_IMPORTED_MODULE_10__.resolveAxisDelta),
|
|
2887
|
-
/* harmony export */ resolveBoundedDelta: () => (/* reexport safe */
|
|
2888
|
-
/* harmony export */ retry: () => (/* reexport safe */
|
|
2889
|
-
/* harmony export */ runParallel: () => (/* reexport safe */
|
|
2890
|
-
/* harmony export */ runSequential: () => (/* reexport safe */
|
|
2891
|
-
/* harmony export */ someAsync: () => (/* reexport safe */
|
|
2892
|
-
/* harmony export */ splitStringIntoWords: () => (/* reexport safe */
|
|
2893
|
-
/* harmony export */ timeout: () => (/* reexport safe */
|
|
2894
|
-
/* harmony export */ toKebabCase: () => (/* reexport safe */
|
|
2895
|
-
/* harmony export */ traverseFileSystemDirectory: () => (/* reexport safe */
|
|
2896
|
-
/* harmony export */ unique: () => (/* reexport safe */
|
|
2941
|
+
/* harmony export */ resolveBoundedDelta: () => (/* reexport safe */ _geometry__WEBPACK_IMPORTED_MODULE_7__.resolveBoundedDelta),
|
|
2942
|
+
/* harmony export */ retry: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.retry),
|
|
2943
|
+
/* harmony export */ runParallel: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.runParallel),
|
|
2944
|
+
/* harmony export */ runSequential: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.runSequential),
|
|
2945
|
+
/* harmony export */ someAsync: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.someAsync),
|
|
2946
|
+
/* harmony export */ splitStringIntoWords: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.splitStringIntoWords),
|
|
2947
|
+
/* harmony export */ timeout: () => (/* reexport safe */ _async__WEBPACK_IMPORTED_MODULE_2__.timeout),
|
|
2948
|
+
/* harmony export */ toKebabCase: () => (/* reexport safe */ _string__WEBPACK_IMPORTED_MODULE_13__.toKebabCase),
|
|
2949
|
+
/* harmony export */ traverseFileSystemDirectory: () => (/* reexport safe */ _file__WEBPACK_IMPORTED_MODULE_5__.traverseFileSystemDirectory),
|
|
2950
|
+
/* harmony export */ unique: () => (/* reexport safe */ _array__WEBPACK_IMPORTED_MODULE_1__.unique)
|
|
2897
2951
|
/* harmony export */ });
|
|
2898
|
-
/* harmony import */ var
|
|
2899
|
-
/* harmony import */ var
|
|
2900
|
-
/* harmony import */ var
|
|
2901
|
-
/* harmony import */ var
|
|
2902
|
-
/* harmony import */ var
|
|
2903
|
-
/* harmony import */ var
|
|
2904
|
-
/* harmony import */ var
|
|
2905
|
-
/* harmony import */ var
|
|
2906
|
-
/* harmony import */ var
|
|
2907
|
-
/* harmony import */ var
|
|
2952
|
+
/* harmony import */ var _a11y__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./a11y */ "./src/a11y/index.ts");
|
|
2953
|
+
/* harmony import */ var _array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./array */ "./src/array.ts");
|
|
2954
|
+
/* harmony import */ var _async__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./async */ "./src/async/index.ts");
|
|
2955
|
+
/* harmony import */ var _dom__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./dom */ "./src/dom/index.ts");
|
|
2956
|
+
/* harmony import */ var _env__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./env */ "./src/env/index.ts");
|
|
2957
|
+
/* harmony import */ var _file__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./file */ "./src/file.ts");
|
|
2958
|
+
/* harmony import */ var _function__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./function */ "./src/function/index.ts");
|
|
2959
|
+
/* harmony import */ var _geometry__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./geometry */ "./src/geometry/index.ts");
|
|
2960
|
+
/* harmony import */ var _guards__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./guards */ "./src/guards.ts");
|
|
2961
|
+
/* harmony import */ var _id__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./id */ "./src/id/index.ts");
|
|
2908
2962
|
/* harmony import */ var _intersection__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./intersection */ "./src/intersection/index.ts");
|
|
2909
|
-
/* harmony import */ var
|
|
2910
|
-
/* harmony import */ var
|
|
2963
|
+
/* harmony import */ var _math__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./math */ "./src/math/index.ts");
|
|
2964
|
+
/* harmony import */ var _object__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./object */ "./src/object.ts");
|
|
2965
|
+
/* harmony import */ var _string__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./string */ "./src/string/index.ts");
|
|
2966
|
+
|
|
2911
2967
|
|
|
2912
2968
|
|
|
2913
2969
|
|