@baleada/logic 0.24.4 → 0.24.6

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/lib/index.cjs CHANGED
@@ -2345,6 +2345,24 @@ function createDeepMerge(override) {
2345
2345
  return merge.merge(merged, override || {});
2346
2346
  };
2347
2347
  }
2348
+ function createOmit(keys) {
2349
+ return (object) => {
2350
+ const omitted = { ...object };
2351
+ for (const key of keys) {
2352
+ delete omitted[key];
2353
+ }
2354
+ return omitted;
2355
+ };
2356
+ }
2357
+ function createPick(keys) {
2358
+ return (object) => {
2359
+ const picked = {};
2360
+ for (const key of keys) {
2361
+ picked[key] = object[key];
2362
+ }
2363
+ return picked;
2364
+ };
2365
+ }
2348
2366
 
2349
2367
  let totalGraphNodes = -1;
2350
2368
  const defaultOptions$b = {
@@ -2735,21 +2753,24 @@ function storeKeyboardTimeMetadata({
2735
2753
  timeMetadata.times = createClone()(initialMetadata$3.times);
2736
2754
  timeMetadata.times.start = Math.round(event.timeStamp);
2737
2755
  timeMetadata.times.end = Math.round(event.timeStamp);
2738
- const storeDuration = () => {
2756
+ const frameEffect = (timestamp) => {
2757
+ timeMetadata.times.end = Math.round(timestamp);
2758
+ timeMetadata.duration = Math.max(0, timeMetadata.times.end - timeMetadata.times.start);
2759
+ if (recognize) {
2760
+ recognize(event, api);
2761
+ if (getStatus() === "recognized")
2762
+ effect(event);
2763
+ }
2764
+ }, storeDuration = () => {
2739
2765
  const request = requestAnimationFrame((timestamp) => {
2740
2766
  if (!getShouldStore())
2741
2767
  return;
2742
- timeMetadata.times.end = Math.round(timestamp);
2743
- timeMetadata.duration = Math.max(0, timeMetadata.times.end - timeMetadata.times.start);
2744
- if (recognize) {
2745
- recognize(event, api);
2746
- if (getStatus() === "recognized")
2747
- effect(event);
2748
- }
2768
+ frameEffect(timestamp);
2749
2769
  storeDuration();
2750
2770
  });
2751
2771
  setRequest(request);
2752
2772
  };
2773
+ frameEffect(performance.now());
2753
2774
  storeDuration();
2754
2775
  }
2755
2776
 
@@ -2849,23 +2870,26 @@ function storePointerTimeMetadata(event, api, getShouldStore, setRequest, recogn
2849
2870
  metadata.times.start = Math.round(event.timeStamp);
2850
2871
  metadata.times.end = Math.round(event.timeStamp);
2851
2872
  let previousTime = metadata.times.start;
2852
- const storeDuration = () => {
2873
+ const frameEffect = (timestamp) => {
2874
+ previousTime = metadata.times.end;
2875
+ metadata.times.end = Math.round(timestamp);
2876
+ metadata.duration = Math.max(0, metadata.times.end - metadata.times.start);
2877
+ const durationFromPrevious = Math.max(0, metadata.times.end - previousTime);
2878
+ metadata.velocity = metadata.distance.straight.fromPrevious / durationFromPrevious || 0;
2879
+ const event2 = getSequence().at(-1);
2880
+ recognize?.(event2, api);
2881
+ if (getStatus() === "recognized")
2882
+ effect(event2);
2883
+ }, storeDuration = () => {
2853
2884
  const request = requestAnimationFrame((timestamp) => {
2854
- if (getShouldStore()) {
2855
- previousTime = metadata.times.end;
2856
- metadata.times.end = Math.round(timestamp);
2857
- metadata.duration = Math.max(0, metadata.times.end - metadata.times.start);
2858
- const durationFromPrevious = Math.max(0, metadata.times.end - previousTime);
2859
- metadata.velocity = metadata.distance.straight.fromPrevious / durationFromPrevious;
2860
- const event2 = getSequence().at(-1);
2861
- recognize?.(event2, api);
2862
- if (getStatus() === "recognized")
2863
- effect(event2);
2864
- storeDuration();
2865
- }
2885
+ if (!getShouldStore())
2886
+ return;
2887
+ frameEffect(timestamp);
2888
+ storeDuration();
2866
2889
  });
2867
2890
  setRequest(request);
2868
2891
  };
2892
+ frameEffect(performance.now());
2869
2893
  storeDuration();
2870
2894
  }
2871
2895
 
@@ -5410,9 +5434,11 @@ exports.createMix = createMix;
5410
5434
  exports.createMousepress = createMousepress;
5411
5435
  exports.createMouserelease = createMouserelease;
5412
5436
  exports.createNumber = createNumber;
5437
+ exports.createOmit = createOmit;
5413
5438
  exports.createOnlyChild = createOnlyChild;
5414
5439
  exports.createOutdegree = createOutdegree;
5415
5440
  exports.createOutgoing = createOutgoing;
5441
+ exports.createPick = createPick;
5416
5442
  exports.createReduce = createReduce;
5417
5443
  exports.createReduceAsync = createReduceAsync;
5418
5444
  exports.createRemove = createRemove;
package/lib/index.d.ts CHANGED
@@ -707,6 +707,14 @@ declare function createSome<Type extends Record<any, any>>(predicate: (key: keyo
707
707
  * [Docs](https://baleada.dev/docs/logic/pipes/deep-merge)
708
708
  */
709
709
  declare function createDeepMerge<Type extends Record<any, any>>(override?: Type): ObjectTransform<Type, Type>;
710
+ /**
711
+ * [Docs](https://baleada.dev/docs/logic/pipes/omit)
712
+ */
713
+ declare function createOmit<Type extends Record<any, any>, Omitted extends keyof Type>(keys: Omitted[]): ObjectTransform<Type, Omit<Type, Omitted>>;
714
+ /**
715
+ * [Docs](https://baleada.dev/docs/logic/pipes/pick)
716
+ */
717
+ declare function createPick<Type extends Record<any, any>, Picked extends keyof Type>(keys: Picked[]): ObjectTransform<Type, Pick<Type, Picked>>;
710
718
 
711
719
  type StringTransform<Transformed> = (string: string) => Transformed;
712
720
  /**
@@ -1598,4 +1606,4 @@ declare class Touchrelease extends Listenable<TouchreleaseType, TouchreleaseMeta
1598
1606
  get metadata(): TouchreleaseMetadata;
1599
1607
  }
1600
1608
 
1601
- export { AnimateFrame, AnimateFrameEffect, AnimateOptions, Animateable, AnimateableKeyframe, AnimateableOptions, AnimateableStatus, Broadcastable, BroadcastableOptions, BroadcastableStatus, ColorInterpolationMethod, Compareable, CompareableOptions, CompareableStatus, CompleteOptions, Completeable, CompleteableOptions, CompleteableStatus, Copyable, CopyableOptions, CopyableStatus, CreateStepsOptions$1 as CreateDirectedAcyclicStepsOptions, CreateFocusableOptions, CreateGraphOptions, CreateKeycomboMatchOptions, CreateMixOptions, CreatePathConfig, CreateResultsOptions, Delayable, DelayableEffect, DelayableOptions, DelayableStatus, Drawable, DrawableOptions, DrawableStatus, DrawableStroke, Fetchable, FetchableOptions, FetchableStatus, Fullscreenable, FullscreenableGetElement, FullscreenableOptions, FullscreenableStatus, Grantable, GrantableOptions, GrantableStatus, Keychord, KeychordHook, KeychordHookApi, KeychordMetadata, KeychordOptions, KeychordType, Keypress, KeypressHook, KeypressHookApi, KeypressMetadata, KeypressOptions, KeypressType, Keyrelease, KeyreleaseHook, KeyreleaseHookApi, KeyreleaseMetadata, KeyreleaseOptions, KeyreleaseType, Konami, KonamiHook, KonamiHookApi, KonamiMetadata, KonamiOptions, KonamiType, ListenEffect, ListenEffectParam, ListenOptions, Listenable, ListenableActive, ListenableKeycombo, ListenableMousecombo, ListenableOptions, ListenablePointercombo, ListenableStatus, ListenableSupportedEventType, ListenableSupportedType, MixColor, Mousepress, MousepressHook, MousepressHookApi, MousepressMetadata, MousepressOptions, MousepressType, Mouserelease, MousereleaseHook, MousereleaseHookApi, MousereleaseMetadata, MousereleaseOptions, MousereleaseType, Navigateable, NavigateableOptions, NavigateableStatus, Pickable, PickableOptions, PickableStatus, Potentiality, RecognizeOptions, Recognizeable, RecognizeableEffect, RecognizeableOptions, RecognizeableStatus, Resolveable, ResolveableOptions, ResolveableStatus, Shareable, ShareableOptions, ShareableStatus, Storeable, StoreableOptions, StoreableStatus, ToGraphYielded, Touchpress, TouchpressHook, TouchpressHookApi, TouchpressMetadata, TouchpressOptions, TouchpressType, Touchrelease, TouchreleaseHook, TouchreleaseHookApi, TouchreleaseMetadata, TouchreleaseOptions, TouchreleaseType, createClear$1 as createAssociativeArrayClear, createDelete$1 as createAssociativeArrayDelete, createHas$1 as createAssociativeArrayHas, createKeys$1 as createAssociativeArrayKeys, createSet$1 as createAssociativeArraySet, createValue$1 as createAssociativeArrayValue, createValues as createAssociativeArrayValues, createBreadthPathConfig, createChildren, createClamp, createClear, createClip, createClone, createComputedStyle, createConcat, createAncestor$1 as createDecisionTreeAncestor, createCommonAncestors$1 as createDecisionTreeCommonAncestors, createNodeDepthFirstSteps$1 as createDecisionTreeNodeDepthFirstSteps, createPath$1 as createDecisionTreePath, createDepthFirstSteps$1 as createDecisionTreeSteps, createTree$1 as createDecisionTreeTree, createDeepEqual, createDeepMerge, createDelete, createDepthPathConfig, createDetermine, createAncestor$2 as createDirectedAcyclicAncestor, createAncestor as createDirectedAcyclicAsyncAncestor, createCommonAncestors as createDirectedAcyclicAsyncCommonAncestors, createDepthFirstSteps as createDirectedAcyclicAsyncDepthFirstSteps, createLayers as createDirectedAcyclicAsyncLayers, createNodeDepthFirstSteps as createDirectedAcyclicAsyncNodeDepthFirstSteps, createPath as createDirectedAcyclicAsyncPath, createTree as createDirectedAcyclicAsyncTree, createCommonAncestors$2 as createDirectedAcyclicCommonAncestors, createDepthFirstSteps$2 as createDirectedAcyclicDepthFirstSteps, createLayers$1 as createDirectedAcyclicLayers, createNodeDepthFirstSteps$2 as createDirectedAcyclicNodeDepthFirstSteps, createPath$2 as createDirectedAcyclicPath, createRoots as createDirectedAcyclicRoots, createTree$2 as createDirectedAcyclicTree, createEntries, createEqual, createEvery, createFilter, createFilterAsync, createFindAsync, createFindIndexAsync, createFocusable, createForEachAsync, createGraph, createGreater, createGreaterOrEqual, createHas, createIncoming, createIndegree, createInsert, createKeychord, createKeycomboMatch, createKeypress, createKeyrelease, createKeys, createKonami, createLess, createLessOrEqual, createList, createMap, createMapAsync, createMix, createMousepress, createMouserelease, createNumber, createOnlyChild, createOutdegree, createOutgoing, createReduce, createReduceAsync, createRemove, createReorder, createReplace, createResults, createReverse, createRoot, createSanitize, createSet, createShuffle, createSiblings, createSlice, createSlug, createSome, createSort, createSwap, createTerminal, createTotalSiblings, createTouchpress, createTouchrelease, createFind as createTreeFind, createUnique, createValue, easingsNetInBack, easingsNetInCirc, easingsNetInCubic, easingsNetInExpo, easingsNetInOutBack, easingsNetInOutCirc, easingsNetInOutCubic, easingsNetInOutExpo, easingsNetInOutQuad, easingsNetInOutQuint, easingsNetInOutSine, easingsNetInQuad, easingsNetInQuart, easingsNetInQuint, easingsNetInSine, easingsNetOutBack, easingsNetOutCirc, easingsNetOutCubic, easingsNetOutExpo, easingsNetOutQuad, easingsNetOutQuint, easingsNetOutSine, linear, materialAccelerated, materialDecelerated, materialStandard, toD, toFlattenedD, toMessageListenParams, verouEase, verouEaseIn, verouEaseInOut, verouEaseOut };
1609
+ export { AnimateFrame, AnimateFrameEffect, AnimateOptions, Animateable, AnimateableKeyframe, AnimateableOptions, AnimateableStatus, Broadcastable, BroadcastableOptions, BroadcastableStatus, ColorInterpolationMethod, Compareable, CompareableOptions, CompareableStatus, CompleteOptions, Completeable, CompleteableOptions, CompleteableStatus, Copyable, CopyableOptions, CopyableStatus, CreateStepsOptions$1 as CreateDirectedAcyclicStepsOptions, CreateFocusableOptions, CreateGraphOptions, CreateKeycomboMatchOptions, CreateMixOptions, CreatePathConfig, CreateResultsOptions, Delayable, DelayableEffect, DelayableOptions, DelayableStatus, Drawable, DrawableOptions, DrawableStatus, DrawableStroke, Fetchable, FetchableOptions, FetchableStatus, Fullscreenable, FullscreenableGetElement, FullscreenableOptions, FullscreenableStatus, Grantable, GrantableOptions, GrantableStatus, Keychord, KeychordHook, KeychordHookApi, KeychordMetadata, KeychordOptions, KeychordType, Keypress, KeypressHook, KeypressHookApi, KeypressMetadata, KeypressOptions, KeypressType, Keyrelease, KeyreleaseHook, KeyreleaseHookApi, KeyreleaseMetadata, KeyreleaseOptions, KeyreleaseType, Konami, KonamiHook, KonamiHookApi, KonamiMetadata, KonamiOptions, KonamiType, ListenEffect, ListenEffectParam, ListenOptions, Listenable, ListenableActive, ListenableKeycombo, ListenableMousecombo, ListenableOptions, ListenablePointercombo, ListenableStatus, ListenableSupportedEventType, ListenableSupportedType, MixColor, Mousepress, MousepressHook, MousepressHookApi, MousepressMetadata, MousepressOptions, MousepressType, Mouserelease, MousereleaseHook, MousereleaseHookApi, MousereleaseMetadata, MousereleaseOptions, MousereleaseType, Navigateable, NavigateableOptions, NavigateableStatus, Pickable, PickableOptions, PickableStatus, Potentiality, RecognizeOptions, Recognizeable, RecognizeableEffect, RecognizeableOptions, RecognizeableStatus, Resolveable, ResolveableOptions, ResolveableStatus, Shareable, ShareableOptions, ShareableStatus, Storeable, StoreableOptions, StoreableStatus, ToGraphYielded, Touchpress, TouchpressHook, TouchpressHookApi, TouchpressMetadata, TouchpressOptions, TouchpressType, Touchrelease, TouchreleaseHook, TouchreleaseHookApi, TouchreleaseMetadata, TouchreleaseOptions, TouchreleaseType, createClear$1 as createAssociativeArrayClear, createDelete$1 as createAssociativeArrayDelete, createHas$1 as createAssociativeArrayHas, createKeys$1 as createAssociativeArrayKeys, createSet$1 as createAssociativeArraySet, createValue$1 as createAssociativeArrayValue, createValues as createAssociativeArrayValues, createBreadthPathConfig, createChildren, createClamp, createClear, createClip, createClone, createComputedStyle, createConcat, createAncestor$1 as createDecisionTreeAncestor, createCommonAncestors$1 as createDecisionTreeCommonAncestors, createNodeDepthFirstSteps$1 as createDecisionTreeNodeDepthFirstSteps, createPath$1 as createDecisionTreePath, createDepthFirstSteps$1 as createDecisionTreeSteps, createTree$1 as createDecisionTreeTree, createDeepEqual, createDeepMerge, createDelete, createDepthPathConfig, createDetermine, createAncestor$2 as createDirectedAcyclicAncestor, createAncestor as createDirectedAcyclicAsyncAncestor, createCommonAncestors as createDirectedAcyclicAsyncCommonAncestors, createDepthFirstSteps as createDirectedAcyclicAsyncDepthFirstSteps, createLayers as createDirectedAcyclicAsyncLayers, createNodeDepthFirstSteps as createDirectedAcyclicAsyncNodeDepthFirstSteps, createPath as createDirectedAcyclicAsyncPath, createTree as createDirectedAcyclicAsyncTree, createCommonAncestors$2 as createDirectedAcyclicCommonAncestors, createDepthFirstSteps$2 as createDirectedAcyclicDepthFirstSteps, createLayers$1 as createDirectedAcyclicLayers, createNodeDepthFirstSteps$2 as createDirectedAcyclicNodeDepthFirstSteps, createPath$2 as createDirectedAcyclicPath, createRoots as createDirectedAcyclicRoots, createTree$2 as createDirectedAcyclicTree, createEntries, createEqual, createEvery, createFilter, createFilterAsync, createFindAsync, createFindIndexAsync, createFocusable, createForEachAsync, createGraph, createGreater, createGreaterOrEqual, createHas, createIncoming, createIndegree, createInsert, createKeychord, createKeycomboMatch, createKeypress, createKeyrelease, createKeys, createKonami, createLess, createLessOrEqual, createList, createMap, createMapAsync, createMix, createMousepress, createMouserelease, createNumber, createOmit, createOnlyChild, createOutdegree, createOutgoing, createPick, createReduce, createReduceAsync, createRemove, createReorder, createReplace, createResults, createReverse, createRoot, createSanitize, createSet, createShuffle, createSiblings, createSlice, createSlug, createSome, createSort, createSwap, createTerminal, createTotalSiblings, createTouchpress, createTouchrelease, createFind as createTreeFind, createUnique, createValue, easingsNetInBack, easingsNetInCirc, easingsNetInCubic, easingsNetInExpo, easingsNetInOutBack, easingsNetInOutCirc, easingsNetInOutCubic, easingsNetInOutExpo, easingsNetInOutQuad, easingsNetInOutQuint, easingsNetInOutSine, easingsNetInQuad, easingsNetInQuart, easingsNetInQuint, easingsNetInSine, easingsNetOutBack, easingsNetOutCirc, easingsNetOutCubic, easingsNetOutExpo, easingsNetOutQuad, easingsNetOutQuint, easingsNetOutSine, linear, materialAccelerated, materialDecelerated, materialStandard, toD, toFlattenedD, toMessageListenParams, verouEase, verouEaseIn, verouEaseInOut, verouEaseOut };
package/lib/index.js CHANGED
@@ -2343,6 +2343,24 @@ function createDeepMerge(override) {
2343
2343
  return merge(merged, override || {});
2344
2344
  };
2345
2345
  }
2346
+ function createOmit(keys) {
2347
+ return (object) => {
2348
+ const omitted = { ...object };
2349
+ for (const key of keys) {
2350
+ delete omitted[key];
2351
+ }
2352
+ return omitted;
2353
+ };
2354
+ }
2355
+ function createPick(keys) {
2356
+ return (object) => {
2357
+ const picked = {};
2358
+ for (const key of keys) {
2359
+ picked[key] = object[key];
2360
+ }
2361
+ return picked;
2362
+ };
2363
+ }
2346
2364
 
2347
2365
  let totalGraphNodes = -1;
2348
2366
  const defaultOptions$b = {
@@ -2733,21 +2751,24 @@ function storeKeyboardTimeMetadata({
2733
2751
  timeMetadata.times = createClone()(initialMetadata$3.times);
2734
2752
  timeMetadata.times.start = Math.round(event.timeStamp);
2735
2753
  timeMetadata.times.end = Math.round(event.timeStamp);
2736
- const storeDuration = () => {
2754
+ const frameEffect = (timestamp) => {
2755
+ timeMetadata.times.end = Math.round(timestamp);
2756
+ timeMetadata.duration = Math.max(0, timeMetadata.times.end - timeMetadata.times.start);
2757
+ if (recognize) {
2758
+ recognize(event, api);
2759
+ if (getStatus() === "recognized")
2760
+ effect(event);
2761
+ }
2762
+ }, storeDuration = () => {
2737
2763
  const request = requestAnimationFrame((timestamp) => {
2738
2764
  if (!getShouldStore())
2739
2765
  return;
2740
- timeMetadata.times.end = Math.round(timestamp);
2741
- timeMetadata.duration = Math.max(0, timeMetadata.times.end - timeMetadata.times.start);
2742
- if (recognize) {
2743
- recognize(event, api);
2744
- if (getStatus() === "recognized")
2745
- effect(event);
2746
- }
2766
+ frameEffect(timestamp);
2747
2767
  storeDuration();
2748
2768
  });
2749
2769
  setRequest(request);
2750
2770
  };
2771
+ frameEffect(performance.now());
2751
2772
  storeDuration();
2752
2773
  }
2753
2774
 
@@ -2847,23 +2868,26 @@ function storePointerTimeMetadata(event, api, getShouldStore, setRequest, recogn
2847
2868
  metadata.times.start = Math.round(event.timeStamp);
2848
2869
  metadata.times.end = Math.round(event.timeStamp);
2849
2870
  let previousTime = metadata.times.start;
2850
- const storeDuration = () => {
2871
+ const frameEffect = (timestamp) => {
2872
+ previousTime = metadata.times.end;
2873
+ metadata.times.end = Math.round(timestamp);
2874
+ metadata.duration = Math.max(0, metadata.times.end - metadata.times.start);
2875
+ const durationFromPrevious = Math.max(0, metadata.times.end - previousTime);
2876
+ metadata.velocity = metadata.distance.straight.fromPrevious / durationFromPrevious || 0;
2877
+ const event2 = getSequence().at(-1);
2878
+ recognize?.(event2, api);
2879
+ if (getStatus() === "recognized")
2880
+ effect(event2);
2881
+ }, storeDuration = () => {
2851
2882
  const request = requestAnimationFrame((timestamp) => {
2852
- if (getShouldStore()) {
2853
- previousTime = metadata.times.end;
2854
- metadata.times.end = Math.round(timestamp);
2855
- metadata.duration = Math.max(0, metadata.times.end - metadata.times.start);
2856
- const durationFromPrevious = Math.max(0, metadata.times.end - previousTime);
2857
- metadata.velocity = metadata.distance.straight.fromPrevious / durationFromPrevious;
2858
- const event2 = getSequence().at(-1);
2859
- recognize?.(event2, api);
2860
- if (getStatus() === "recognized")
2861
- effect(event2);
2862
- storeDuration();
2863
- }
2883
+ if (!getShouldStore())
2884
+ return;
2885
+ frameEffect(timestamp);
2886
+ storeDuration();
2864
2887
  });
2865
2888
  setRequest(request);
2866
2889
  };
2890
+ frameEffect(performance.now());
2867
2891
  storeDuration();
2868
2892
  }
2869
2893
 
@@ -5311,4 +5335,4 @@ class Storeable {
5311
5335
  }
5312
5336
  }
5313
5337
 
5314
- export { Animateable, Broadcastable, Compareable, Completeable, Copyable, Delayable, Drawable, Fetchable, Fullscreenable, Grantable, Keychord, Keypress, Keyrelease, Konami, Listenable, Mousepress, Mouserelease, Navigateable, Pickable, Recognizeable, Resolveable, Shareable, Storeable, Touchpress, Touchrelease, createClear$2 as createAssociativeArrayClear, createDelete$2 as createAssociativeArrayDelete, createHas$1 as createAssociativeArrayHas, createKeys$1 as createAssociativeArrayKeys, createSet$2 as createAssociativeArraySet, createValue$2 as createAssociativeArrayValue, createValues$1 as createAssociativeArrayValues, createBreadthPathConfig, createChildren, createClamp, createClear$1 as createClear, createClip, createClone, createComputedStyle, createConcat, createAncestor$1 as createDecisionTreeAncestor, createCommonAncestors$1 as createDecisionTreeCommonAncestors, createNodeDepthFirstSteps$1 as createDecisionTreeNodeDepthFirstSteps, createPath$1 as createDecisionTreePath, createDepthFirstSteps$1 as createDecisionTreeSteps, createTree$1 as createDecisionTreeTree, createDeepEqual, createDeepMerge, createDelete$1 as createDelete, createDepthPathConfig, createDetermine, createAncestor$2 as createDirectedAcyclicAncestor, createAncestor as createDirectedAcyclicAsyncAncestor, createCommonAncestors as createDirectedAcyclicAsyncCommonAncestors, createDepthFirstSteps as createDirectedAcyclicAsyncDepthFirstSteps, createLayers as createDirectedAcyclicAsyncLayers, createNodeDepthFirstSteps as createDirectedAcyclicAsyncNodeDepthFirstSteps, createPath as createDirectedAcyclicAsyncPath, createTree as createDirectedAcyclicAsyncTree, createCommonAncestors$2 as createDirectedAcyclicCommonAncestors, createDepthFirstSteps$2 as createDirectedAcyclicDepthFirstSteps, createLayers$1 as createDirectedAcyclicLayers, createNodeDepthFirstSteps$2 as createDirectedAcyclicNodeDepthFirstSteps, createPath$2 as createDirectedAcyclicPath, createRoots as createDirectedAcyclicRoots, createTree$2 as createDirectedAcyclicTree, createEntries, createEqual, createEvery, createFilter, createFilterAsync, createFindAsync, createFindIndexAsync, createFocusable, createForEachAsync, createGraph, createGreater, createGreaterOrEqual, createHas, createIncoming, createIndegree, createInsert, createKeychord, createKeycomboMatch$1 as createKeycomboMatch, createKeypress, createKeyrelease, createKeys, createKonami, createLess, createLessOrEqual, createList, createMap, createMapAsync, createMix, createMousepress, createMouserelease, createNumber, createOnlyChild, createOutdegree, createOutgoing, createReduce, createReduceAsync, createRemove, createReorder, createReplace, createResults, createReverse, createRoot, createSanitize, createSet$1 as createSet, createShuffle, createSiblings, createSlice, createSlug, createSome, createSort, createSwap, createTerminal, createTotalSiblings, createTouchpress, createTouchrelease, createFind as createTreeFind, createUnique, createValue$1 as createValue, defineAssociativeArray, defineGraph, defineGraphAsync, defineGraphAsyncEdge, defineGraphAsyncEdges, defineGraphEdge, defineGraphEdges, defineGraphNode, defineGraphNodes, easingsNetInBack, easingsNetInCirc, easingsNetInCubic, easingsNetInExpo, easingsNetInOutBack, easingsNetInOutCirc, easingsNetInOutCubic, easingsNetInOutExpo, easingsNetInOutQuad, easingsNetInOutQuint, easingsNetInOutSine, easingsNetInQuad, easingsNetInQuart, easingsNetInQuint, easingsNetInSine, easingsNetOutBack, easingsNetOutCirc, easingsNetOutCubic, easingsNetOutExpo, easingsNetOutQuad, easingsNetOutQuint, easingsNetOutSine, fromAliasToCode, fromCodeToAliases, fromKeyboardEventDescriptorToAliases, fromShorthandAliasToLonghandAlias, linear, materialAccelerated, materialDecelerated, materialStandard, toD, toFlattenedD, toMessageListenParams, verouEase, verouEaseIn, verouEaseInOut, verouEaseOut };
5338
+ export { Animateable, Broadcastable, Compareable, Completeable, Copyable, Delayable, Drawable, Fetchable, Fullscreenable, Grantable, Keychord, Keypress, Keyrelease, Konami, Listenable, Mousepress, Mouserelease, Navigateable, Pickable, Recognizeable, Resolveable, Shareable, Storeable, Touchpress, Touchrelease, createClear$2 as createAssociativeArrayClear, createDelete$2 as createAssociativeArrayDelete, createHas$1 as createAssociativeArrayHas, createKeys$1 as createAssociativeArrayKeys, createSet$2 as createAssociativeArraySet, createValue$2 as createAssociativeArrayValue, createValues$1 as createAssociativeArrayValues, createBreadthPathConfig, createChildren, createClamp, createClear$1 as createClear, createClip, createClone, createComputedStyle, createConcat, createAncestor$1 as createDecisionTreeAncestor, createCommonAncestors$1 as createDecisionTreeCommonAncestors, createNodeDepthFirstSteps$1 as createDecisionTreeNodeDepthFirstSteps, createPath$1 as createDecisionTreePath, createDepthFirstSteps$1 as createDecisionTreeSteps, createTree$1 as createDecisionTreeTree, createDeepEqual, createDeepMerge, createDelete$1 as createDelete, createDepthPathConfig, createDetermine, createAncestor$2 as createDirectedAcyclicAncestor, createAncestor as createDirectedAcyclicAsyncAncestor, createCommonAncestors as createDirectedAcyclicAsyncCommonAncestors, createDepthFirstSteps as createDirectedAcyclicAsyncDepthFirstSteps, createLayers as createDirectedAcyclicAsyncLayers, createNodeDepthFirstSteps as createDirectedAcyclicAsyncNodeDepthFirstSteps, createPath as createDirectedAcyclicAsyncPath, createTree as createDirectedAcyclicAsyncTree, createCommonAncestors$2 as createDirectedAcyclicCommonAncestors, createDepthFirstSteps$2 as createDirectedAcyclicDepthFirstSteps, createLayers$1 as createDirectedAcyclicLayers, createNodeDepthFirstSteps$2 as createDirectedAcyclicNodeDepthFirstSteps, createPath$2 as createDirectedAcyclicPath, createRoots as createDirectedAcyclicRoots, createTree$2 as createDirectedAcyclicTree, createEntries, createEqual, createEvery, createFilter, createFilterAsync, createFindAsync, createFindIndexAsync, createFocusable, createForEachAsync, createGraph, createGreater, createGreaterOrEqual, createHas, createIncoming, createIndegree, createInsert, createKeychord, createKeycomboMatch$1 as createKeycomboMatch, createKeypress, createKeyrelease, createKeys, createKonami, createLess, createLessOrEqual, createList, createMap, createMapAsync, createMix, createMousepress, createMouserelease, createNumber, createOmit, createOnlyChild, createOutdegree, createOutgoing, createPick, createReduce, createReduceAsync, createRemove, createReorder, createReplace, createResults, createReverse, createRoot, createSanitize, createSet$1 as createSet, createShuffle, createSiblings, createSlice, createSlug, createSome, createSort, createSwap, createTerminal, createTotalSiblings, createTouchpress, createTouchrelease, createFind as createTreeFind, createUnique, createValue$1 as createValue, defineAssociativeArray, defineGraph, defineGraphAsync, defineGraphAsyncEdge, defineGraphAsyncEdges, defineGraphEdge, defineGraphEdges, defineGraphNode, defineGraphNodes, easingsNetInBack, easingsNetInCirc, easingsNetInCubic, easingsNetInExpo, easingsNetInOutBack, easingsNetInOutCirc, easingsNetInOutCubic, easingsNetInOutExpo, easingsNetInOutQuad, easingsNetInOutQuint, easingsNetInOutSine, easingsNetInQuad, easingsNetInQuart, easingsNetInQuint, easingsNetInSine, easingsNetOutBack, easingsNetOutCirc, easingsNetOutCubic, easingsNetOutExpo, easingsNetOutQuad, easingsNetOutQuint, easingsNetOutSine, fromAliasToCode, fromCodeToAliases, fromKeyboardEventDescriptorToAliases, fromShorthandAliasToLonghandAlias, linear, materialAccelerated, materialDecelerated, materialStandard, toD, toFlattenedD, toMessageListenParams, verouEase, verouEaseIn, verouEaseInOut, verouEaseOut };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baleada/logic",
3
- "version": "0.24.4",
3
+ "version": "0.24.6",
4
4
  "description": "UI logic for the Baleada toolkit",
5
5
  "main": "lib/index.cjs",
6
6
  "module": "lib/index.js",