@sladg/apex-state 3.9.0 → 3.9.1

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.
@@ -1,7 +1,7 @@
1
- import { w as DeepKey, z as DeepValue, G as GenericMeta, s as ConcernType, a7 as defaultConcerns, T as StoreConfig, J as GenericStoreApi } from '../deep-clone-DMRvv0Pr.js';
2
- export { a3 as _, a4 as applyChangesToObject, a6 as deepClone, a8 as dot, a9 as evaluateBoolLogic, aa as extractPlaceholders, ab as findConcern, ac as hashKey, ad as interpolateTemplate, ae as is, af as prebuilts, ag as registerFlipPair, ah as registerListenerLegacy, ai as registerSideEffects, aj as registerSyncPairsBatch, ak as useBufferedField, al as useKeyboardSelect, am as useThrottledField, an as useTransformedField } from '../deep-clone-DMRvv0Pr.js';
3
- import 'react/jsx-runtime';
1
+ import { DeepKey, DeepValue, GenericMeta, ConcernType, defaultConcerns, StoreConfig, GenericStoreApi } from '../index.js';
2
+ export { _, aggregationPairs, applyChangesToObject, computationPairs, deepClone, dot, evaluateBoolLogic, extractPlaceholders, findConcern, flipPairs, hashKey, interpolateTemplate, is, listeners, prebuilts, registerFlipPair, registerListenerLegacy, registerSideEffects, registerSyncPairsBatch, syncPairs, useBufferedField, useKeyboardSelect, useThrottledField, useTransformedField } from '../index.js';
4
3
  import 'react';
4
+ import 'react/jsx-runtime';
5
5
 
6
6
  /**
7
7
  * @sladg/apex-state/testing
@@ -1906,6 +1906,13 @@ WasmGate.displayName = "WasmGate";
1906
1906
  // src/store/provider.tsx
1907
1907
  import { jsx as jsx2 } from "react/jsx-runtime";
1908
1908
 
1909
+ // src/utils/pair-helpers.ts
1910
+ var syncPairs = () => (pairs) => pairs;
1911
+ var flipPairs = () => (pairs) => pairs;
1912
+ var aggregationPairs = () => (pairs) => pairs;
1913
+ var computationPairs = () => (pairs) => pairs;
1914
+ var listeners = () => (items) => items;
1915
+
1909
1916
  // src/hooks/use-buffered-field.ts
1910
1917
  import { useCallback as useCallback2, useState as useState2 } from "react";
1911
1918
  var useBufferedField = (field) => {
@@ -2174,7 +2181,9 @@ var createGenericStore2 = (_config) => {
2174
2181
  export {
2175
2182
  _,
2176
2183
  __mocked,
2184
+ aggregationPairs,
2177
2185
  applyChangesToObject,
2186
+ computationPairs,
2178
2187
  createGenericStore2 as createGenericStore,
2179
2188
  deepClone,
2180
2189
  defaultConcerns,
@@ -2182,14 +2191,17 @@ export {
2182
2191
  evaluateBoolLogic,
2183
2192
  extractPlaceholders,
2184
2193
  findConcern,
2194
+ flipPairs,
2185
2195
  hashKey,
2186
2196
  interpolateTemplate,
2187
2197
  is,
2198
+ listeners,
2188
2199
  prebuilts_exports as prebuilts,
2189
2200
  registerFlipPair,
2190
2201
  registerListenerLegacy,
2191
2202
  registerSideEffects,
2192
2203
  registerSyncPairsBatch,
2204
+ syncPairs,
2193
2205
  useBufferedField,
2194
2206
  useKeyboardSelect,
2195
2207
  useThrottledField,