@absolutejs/absolute 0.19.0-beta.335 → 0.19.0-beta.336
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/angular/browser.js +3 -3
- package/dist/angular/browser.js.map +3 -3
- package/dist/angular/index.js +3 -3
- package/dist/angular/index.js.map +3 -3
- package/dist/client/index.js +3 -3
- package/dist/client/index.js.map +3 -3
- package/dist/islands/browser.js +3 -3
- package/dist/islands/browser.js.map +3 -3
- package/dist/islands/index.js +3 -3
- package/dist/islands/index.js.map +3 -3
- package/dist/islands/server.js +3 -3
- package/dist/islands/server.js.map +3 -3
- package/dist/react/browser.js +3 -3
- package/dist/react/browser.js.map +3 -3
- package/dist/react/hooks/index.js +3 -3
- package/dist/react/hooks/index.js.map +3 -3
- package/dist/react/index.js +3 -3
- package/dist/react/index.js.map +3 -3
- package/dist/src/client/islandStore.d.ts +2 -3
- package/dist/svelte/browser.js +3 -3
- package/dist/svelte/browser.js.map +3 -3
- package/dist/svelte/index.js +3 -3
- package/dist/svelte/index.js.map +3 -3
- package/dist/vue/browser.js +3 -3
- package/dist/vue/browser.js.map +3 -3
- package/dist/vue/index.js +3 -3
- package/dist/vue/index.js.map +3 -3
- package/package.json +1 -1
package/dist/client/index.js
CHANGED
|
@@ -29936,13 +29936,13 @@ var initializeIslandStores = (state) => {
|
|
|
29936
29936
|
applySnapshot(store, nextSnapshot[storeId]);
|
|
29937
29937
|
}
|
|
29938
29938
|
};
|
|
29939
|
-
var createIslandStore = (storeId
|
|
29939
|
+
var createIslandStore = (storeId) => (createState) => {
|
|
29940
29940
|
const stores = getIslandStores();
|
|
29941
29941
|
const existingStore = stores.get(storeId);
|
|
29942
29942
|
if (existingStore) {
|
|
29943
29943
|
return existingStore;
|
|
29944
29944
|
}
|
|
29945
|
-
const store = createStore()(
|
|
29945
|
+
const store = createStore()(createState);
|
|
29946
29946
|
const initialSnapshot = getIslandStoreSnapshot()[storeId];
|
|
29947
29947
|
applySnapshot(store, initialSnapshot);
|
|
29948
29948
|
getIslandStoreSnapshot()[storeId] = toSerializableState(store.getState());
|
|
@@ -30236,5 +30236,5 @@ export {
|
|
|
30236
30236
|
createIslandManifestResolver
|
|
30237
30237
|
};
|
|
30238
30238
|
|
|
30239
|
-
//# debugId=
|
|
30239
|
+
//# debugId=4E2FF1E2436F6DF964756E2164756E21
|
|
30240
30240
|
//# sourceMappingURL=index.js.map
|