@absolutejs/absolute 0.20.0-beta.56 → 0.20.0-beta.57

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.
Files changed (47) hide show
  1. package/dist/angular/browser.js +1 -45
  2. package/dist/angular/browser.js.map +2 -2
  3. package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
  4. package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
  5. package/dist/angular/index.js +1 -17
  6. package/dist/angular/index.js.map +2 -2
  7. package/dist/build.js +8 -2
  8. package/dist/build.js.map +3 -3
  9. package/dist/client/chunks/angularPatch-arh4sr68.js +157 -0
  10. package/dist/client/chunks/angularPatch-arh4sr68.js.map +10 -0
  11. package/dist/client/chunks/index-5py90ctf.js +87 -0
  12. package/dist/client/chunks/index-5py90ctf.js.map +10 -0
  13. package/dist/client/chunks/index-m35nbkdp.js +374 -0
  14. package/dist/client/chunks/index-m35nbkdp.js.map +12 -0
  15. package/dist/client/chunks/index-qxjc7kc5.js +12 -0
  16. package/dist/client/chunks/index-qxjc7kc5.js.map +9 -0
  17. package/dist/client/chunks/islands-xj2n8nwf.js +281 -0
  18. package/dist/client/chunks/islands-xj2n8nwf.js.map +14 -0
  19. package/dist/client/chunks/react-pdg4325x.js +65 -0
  20. package/dist/client/chunks/react-pdg4325x.js.map +10 -0
  21. package/dist/client/chunks/svelte-s0c964kb.js +19 -0
  22. package/dist/client/chunks/svelte-s0c964kb.js.map +10 -0
  23. package/dist/client/chunks/vue-rdskrnyg.js +24 -0
  24. package/dist/client/chunks/vue-rdskrnyg.js.map +10 -0
  25. package/dist/client/index.js +56 -947
  26. package/dist/client/index.js.map +7 -22
  27. package/dist/index.js +8 -2
  28. package/dist/index.js.map +3 -3
  29. package/dist/islands/browser.js +1 -17
  30. package/dist/islands/browser.js.map +2 -2
  31. package/dist/islands/index.js +1 -17
  32. package/dist/islands/index.js.map +2 -2
  33. package/dist/react/browser.js +1 -45
  34. package/dist/react/browser.js.map +2 -2
  35. package/dist/react/hooks/index.js +1 -17
  36. package/dist/react/hooks/index.js.map +2 -2
  37. package/dist/react/index.js +1 -17
  38. package/dist/react/index.js.map +2 -2
  39. package/dist/svelte/browser.js +1 -17
  40. package/dist/svelte/browser.js.map +2 -2
  41. package/dist/svelte/index.js +1 -17
  42. package/dist/svelte/index.js.map +2 -2
  43. package/dist/vue/browser.js +84 -121
  44. package/dist/vue/browser.js.map +4 -4
  45. package/dist/vue/index.js +84 -121
  46. package/dist/vue/index.js.map +4 -4
  47. package/package.json +9 -7
@@ -1,7 +1,7 @@
1
1
  // @bun
2
2
  var __require = import.meta.require;
3
3
 
4
- // .angular-partial-tmp-12gmS9/src/core/streamingSlotRegistrar.ts
4
+ // .angular-partial-tmp-CCRvv4/src/core/streamingSlotRegistrar.ts
5
5
  var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
6
6
  var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
7
7
  var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
@@ -1,7 +1,7 @@
1
1
  // @bun
2
2
  var __require = import.meta.require;
3
3
 
4
- // .angular-partial-tmp-12gmS9/src/core/streamingSlotRegistrar.ts
4
+ // .angular-partial-tmp-CCRvv4/src/core/streamingSlotRegistrar.ts
5
5
  var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
6
6
  var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
7
7
  var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
48
48
  getWarningController()?.maybeWarn(primitiveName);
49
49
  };
50
50
 
51
- // .angular-partial-tmp-12gmS9/src/core/streamingSlotRegistry.ts
51
+ // .angular-partial-tmp-CCRvv4/src/core/streamingSlotRegistry.ts
52
52
  var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
53
53
  var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
54
54
  var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
@@ -16483,22 +16483,6 @@ var createIslandStore = (storeId, initialState, createState) => {
16483
16483
  return store;
16484
16484
  };
16485
16485
  var getIslandStoreServerSnapshot = (store, selector) => selector(store.getInitialState());
16486
- var applySnapshotToStoreInstances = (storeId, instances, snapshot) => {
16487
- for (const instance of instances) {
16488
- instance.applyExternalSnapshot(snapshot[storeId] ?? {});
16489
- }
16490
- };
16491
- var initializeIslandStores = (state) => {
16492
- const currentSnapshot = getIslandStoreSnapshot();
16493
- const nextSnapshot = {
16494
- ...state,
16495
- ...currentSnapshot
16496
- };
16497
- globalThis.__ABS_ISLAND_STATE__ = nextSnapshot;
16498
- for (const [storeId, store] of getIslandStores()) {
16499
- applySnapshotToStoreInstances(storeId, store, nextSnapshot);
16500
- }
16501
- };
16502
16486
  var readIslandStore = (store, selector) => selector(store.getState());
16503
16487
  var subscribeIslandStore = (store, selector, listener) => {
16504
16488
  let currentSelection = selector(store.getState());
@@ -16664,5 +16648,5 @@ export {
16664
16648
  withPendingTask
16665
16649
  };
16666
16650
 
16667
- //# debugId=028FDEADA52E1B8064756E2164756E21
16651
+ //# debugId=8FD7BE64287E48A664756E2164756E21
16668
16652
  //# sourceMappingURL=index.js.map