@rkmodules/rules 0.0.88 → 0.0.89
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/index.esm.js
CHANGED
|
@@ -5561,7 +5561,15 @@ var useVariable = function (scope, name, initial, persist) {
|
|
|
5561
5561
|
var setValue = function (value) { return setVar(scope, name, value, persist); };
|
|
5562
5562
|
return [value, setValue];
|
|
5563
5563
|
};
|
|
5564
|
+
var getVariable = function (scope, name, persist) {
|
|
5565
|
+
if (persist === void 0) { persist = true; }
|
|
5566
|
+
var value = variableStore.getState().getVar(scope, name, persist);
|
|
5567
|
+
return value;
|
|
5568
|
+
};
|
|
5564
5569
|
|
|
5570
|
+
function getPositions(fn) {
|
|
5571
|
+
return getVariable("rules", "".concat(fn.name, ".positions"), true);
|
|
5572
|
+
}
|
|
5565
5573
|
function usePositions(fn) {
|
|
5566
5574
|
return useVariable("rules", "".concat(fn.name, ".positions"), {});
|
|
5567
5575
|
}
|
|
@@ -6954,5 +6962,5 @@ function DDContext(_a) {
|
|
|
6954
6962
|
return React.createElement(DndProvider, { backend: HTML5Backend }, children);
|
|
6955
6963
|
}
|
|
6956
6964
|
|
|
6957
|
-
export { DDContext, DISCARD, Engine, Flow, Lib, binaryOnTree, binaryOnTreeBranch, broadCast, expandTree, getBranch, getPaths, getReferences, getValue$1 as getValue, graftTree, hasReference, interpolate, isReference, isSingleTon, isTree, mapTree, mapTreeBranch, nAryOnTree, nAryOnTreeBranch, normalizeVarDef, parseReference, primitives, sameShape, simplifyTree$1 as simplifyTree, toArray, topSort, treeSize, trimTree, uid$1 as uid, useDraggableNode, useFlow, useFunction, usePositions, useUpdatePositions, useVariable };
|
|
6965
|
+
export { DDContext, DISCARD, Engine, Flow, Lib, binaryOnTree, binaryOnTreeBranch, broadCast, expandTree, getBranch, getPaths, getPositions, getReferences, getValue$1 as getValue, getVariable, graftTree, hasReference, interpolate, isReference, isSingleTon, isTree, mapTree, mapTreeBranch, nAryOnTree, nAryOnTreeBranch, normalizeVarDef, parseReference, primitives, sameShape, simplifyTree$1 as simplifyTree, toArray, topSort, treeSize, trimTree, uid$1 as uid, useDraggableNode, useFlow, useFunction, usePositions, useUpdatePositions, useVariable, variableStore };
|
|
6958
6966
|
//# sourceMappingURL=index.esm.js.map
|