@next-core/brick-utils 2.35.3 → 2.36.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/CHANGELOG.md +11 -0
- package/dist/index.bundle.js +24 -0
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +24 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/types/debounceByAnimationFrame.d.ts +2 -0
- package/dist/types/debounceByAnimationFrame.spec.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -22138,5 +22138,28 @@ function track(raw, trackText, variableName) {
|
|
|
22138
22138
|
return false;
|
|
22139
22139
|
}
|
|
22140
22140
|
|
|
22141
|
-
|
|
22141
|
+
// The debounce function receives our function as a parameter
|
|
22142
|
+
function debounceByAnimationFrame(fn) {
|
|
22143
|
+
// This holds the requestAnimationFrame reference, so we can cancel it if we wish
|
|
22144
|
+
var frame; // The debounce function returns a new function that can receive a variable number of arguments
|
|
22145
|
+
|
|
22146
|
+
return function () {
|
|
22147
|
+
for (var _len = arguments.length, params = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
22148
|
+
params[_key] = arguments[_key];
|
|
22149
|
+
}
|
|
22150
|
+
|
|
22151
|
+
// If the frame variable has been defined, clear it now, and queue for next frame
|
|
22152
|
+
if (frame) {
|
|
22153
|
+
cancelAnimationFrame(frame);
|
|
22154
|
+
} // Queue our function call for the next frame
|
|
22155
|
+
|
|
22156
|
+
|
|
22157
|
+
frame = requestAnimationFrame(() => {
|
|
22158
|
+
// Call our function and pass any params we received
|
|
22159
|
+
fn(...params);
|
|
22160
|
+
});
|
|
22161
|
+
};
|
|
22162
|
+
}
|
|
22163
|
+
|
|
22164
|
+
export { JsonStorage, PrecookFunctionVisitor, PrecookVisitor, asyncProcessBrick, asyncProcessStoryboard, computeRealRoutePath, convertValueByPrecision, cook, createProviderClass, debounceByAnimationFrame, deepFreeze, formatValue, getDependencyMapOfContext, getDepsOfTemplates, getDllAndDepsByResource, getDllAndDepsOfBricks, getDllAndDepsOfStoryboard, getTemplateDepsOfStoryboard, hasOwnProperty$1 as hasOwnProperty, inject, isBrickNode, isCustomTemplateNode, isEvaluable, isObject, isRouteNode, isSnippetNode, lint, loadScript, mapCustomApisToNameAndNamespace, matchPath, normalizeBuilderNode, normalizeMenu, parseForAnalysis, precook, precookFunction, preevaluate, prefetchScript, resolveContextConcurrently, restoreDynamicTemplates, scanBricksInBrickConf, scanBricksInStoryboard, scanCustomApisInStoryboard, scanI18NInAny, scanI18NInStoryboard, scanPermissionActionsInAny, scanPermissionActionsInStoryboard, scanProcessorsInAny, scanProcessorsInStoryboard, scanRouteAliasInStoryboard, scanStoryboard, scanTemplatesInBrick, scanTemplatesInStoryboard, shouldAllowRecursiveEvaluations, smartDisplayForEvaluableString, syncResolveContextConcurrently, toPath, tokTypes_1 as tokTypes, trackContext, trackState, transform, transformAndInject, visitStoryboardExpressions, visitStoryboardFunctions };
|
|
22142
22165
|
//# sourceMappingURL=index.esm.js.map
|