@weser/storage 1.0.1 → 1.0.2

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.
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=useStorage.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useStorage.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/useStorage.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,209 @@
1
+ import { describe, test, expect, vi, beforeEach } from 'vitest';
2
+ import { renderHook, act, waitFor } from '@testing-library/react';
3
+ import useStorage from '../useStorage';
4
+ // Create a mock storage that mimics the Storage interface
5
+ function createMockStorage() {
6
+ const store = {};
7
+ return {
8
+ getItem: (key) => store[key] ?? null,
9
+ setItem: (key, value) => {
10
+ store[key] = value;
11
+ },
12
+ removeItem: (key) => {
13
+ delete store[key];
14
+ },
15
+ clear: () => {
16
+ for (const key in store) {
17
+ delete store[key];
18
+ }
19
+ },
20
+ key: (index) => Object.keys(store)[index] ?? null,
21
+ get length() {
22
+ return Object.keys(store).length;
23
+ },
24
+ };
25
+ }
26
+ describe('useStorage', () => {
27
+ let mockStorage;
28
+ beforeEach(() => {
29
+ mockStorage = createMockStorage();
30
+ });
31
+ test('initializes with initial state', async () => {
32
+ const { result } = renderHook(() => useStorage(() => mockStorage, 'test-key', 'initial'));
33
+ // Initial state before hydration
34
+ expect(result.current[0]).toBe('initial');
35
+ });
36
+ test('returns loading state initially true', async () => {
37
+ const { result } = renderHook(() => useStorage(() => mockStorage, 'test-key', 'initial'));
38
+ // Loading is true initially
39
+ expect(result.current[2]).toBe(true);
40
+ // Wait for loading to become false
41
+ await waitFor(() => {
42
+ expect(result.current[2]).toBe(false);
43
+ });
44
+ });
45
+ test('setState updates the state', async () => {
46
+ const { result } = renderHook(() => useStorage(() => mockStorage, 'test-key', 'initial'));
47
+ await waitFor(() => {
48
+ expect(result.current[2]).toBe(false);
49
+ });
50
+ act(() => {
51
+ result.current[1]('updated');
52
+ });
53
+ expect(result.current[0]).toBe('updated');
54
+ });
55
+ test('persists state to storage', async () => {
56
+ const { result } = renderHook(() => useStorage(() => mockStorage, 'persist-key', 'initial'));
57
+ await waitFor(() => {
58
+ expect(result.current[2]).toBe(false);
59
+ });
60
+ act(() => {
61
+ result.current[1]('persisted-value');
62
+ });
63
+ // Check that the value was persisted
64
+ expect(mockStorage.getItem('persist-key')).toBe(JSON.stringify('persisted-value'));
65
+ });
66
+ test('hydrates from storage', async () => {
67
+ // Pre-populate storage
68
+ mockStorage.setItem('hydrate-key', JSON.stringify('stored-value'));
69
+ const { result } = renderHook(() => useStorage(() => mockStorage, 'hydrate-key', 'initial'));
70
+ await waitFor(() => {
71
+ expect(result.current[2]).toBe(false);
72
+ });
73
+ expect(result.current[0]).toBe('stored-value');
74
+ });
75
+ test('calls onHydrated callback', async () => {
76
+ const onHydrated = vi.fn();
77
+ mockStorage.setItem('callback-key', JSON.stringify('value'));
78
+ renderHook(() => useStorage(() => mockStorage, 'callback-key', 'initial', { onHydrated }));
79
+ await waitFor(() => {
80
+ expect(onHydrated).toHaveBeenCalledWith('value');
81
+ });
82
+ });
83
+ test('uses custom encode/decode functions', async () => {
84
+ const encode = (value) => String(value * 2);
85
+ const decode = (value) => parseInt(value) / 2;
86
+ mockStorage.setItem('custom-key', '20');
87
+ const { result } = renderHook(() => useStorage(() => mockStorage, 'custom-key', 5, { encode, decode }));
88
+ await waitFor(() => {
89
+ expect(result.current[2]).toBe(false);
90
+ });
91
+ expect(result.current[0]).toBe(10);
92
+ act(() => {
93
+ result.current[1](15);
94
+ });
95
+ expect(mockStorage.getItem('custom-key')).toBe('30');
96
+ });
97
+ test('handles null storage gracefully', async () => {
98
+ const { result } = renderHook(() => useStorage(() => null, 'test-key', 'initial'));
99
+ await waitFor(() => {
100
+ expect(result.current[2]).toBe(false);
101
+ });
102
+ expect(result.current[0]).toBe('initial');
103
+ });
104
+ // Tests based on docs examples for T_SyntheticStorage
105
+ describe('T_SyntheticStorage pattern (from docs)', () => {
106
+ test('works with custom cache implementation (docs example)', async () => {
107
+ // Simulating the docs example with a custom cache
108
+ const cache = new Map();
109
+ const getStorage = () => ({
110
+ getItem: (key) => cache.get(key),
111
+ setItem: (key, value) => {
112
+ cache.set(key, value);
113
+ },
114
+ });
115
+ const { result } = renderHook(() => useStorage(getStorage, 'counter', 0));
116
+ await waitFor(() => {
117
+ expect(result.current[2]).toBe(false);
118
+ });
119
+ expect(result.current[0]).toBe(0);
120
+ act(() => {
121
+ result.current[1](5);
122
+ });
123
+ expect(result.current[0]).toBe(5);
124
+ // Value should be persisted to the cache
125
+ expect(cache.get('counter')).toBe(JSON.stringify(5));
126
+ });
127
+ test('works with async synthetic storage', async () => {
128
+ const store = new Map();
129
+ const asyncStorage = {
130
+ getItem: async (key) => {
131
+ await new Promise((r) => setTimeout(r, 10));
132
+ return store.get(key);
133
+ },
134
+ setItem: async (key, value) => {
135
+ await new Promise((r) => setTimeout(r, 10));
136
+ store.set(key, value);
137
+ },
138
+ };
139
+ store.set('async-key', JSON.stringify({ data: 'async-value' }));
140
+ const { result } = renderHook(() => useStorage(() => asyncStorage, 'async-key', { data: 'default' }));
141
+ // Initially loading
142
+ expect(result.current[2]).toBe(true);
143
+ await waitFor(() => {
144
+ expect(result.current[2]).toBe(false);
145
+ });
146
+ // Should have hydrated from async storage
147
+ expect(result.current[0]).toEqual({ data: 'async-value' });
148
+ });
149
+ test('increment/decrement counter example from docs', async () => {
150
+ const cache = new Map();
151
+ cache.set('counter', JSON.stringify(10));
152
+ const getStorage = () => ({
153
+ getItem: (key) => cache.get(key),
154
+ setItem: (key, value) => {
155
+ cache.set(key, value);
156
+ },
157
+ });
158
+ const { result } = renderHook(() => useStorage(getStorage, 'counter', 0));
159
+ await waitFor(() => {
160
+ expect(result.current[2]).toBe(false);
161
+ });
162
+ // Should hydrate to 10
163
+ expect(result.current[0]).toBe(10);
164
+ // Increment
165
+ act(() => {
166
+ result.current[1](result.current[0] + 1);
167
+ });
168
+ expect(result.current[0]).toBe(11);
169
+ // Decrement
170
+ act(() => {
171
+ result.current[1](result.current[0] - 1);
172
+ });
173
+ expect(result.current[0]).toBe(10);
174
+ });
175
+ test('works with typed objects (docs generic type example)', async () => {
176
+ const cache = new Map();
177
+ cache.set('account', JSON.stringify({ id: '123', name: 'John', email: 'john@example.com' }));
178
+ const getStorage = () => ({
179
+ getItem: (key) => cache.get(key),
180
+ setItem: (key, value) => {
181
+ cache.set(key, value);
182
+ },
183
+ });
184
+ const { result } = renderHook(() => useStorage(getStorage, 'account', null));
185
+ await waitFor(() => {
186
+ expect(result.current[2]).toBe(false);
187
+ });
188
+ expect(result.current[0]).toEqual({
189
+ id: '123',
190
+ name: 'John',
191
+ email: 'john@example.com',
192
+ });
193
+ // Update account
194
+ act(() => {
195
+ result.current[1]({
196
+ id: '456',
197
+ name: 'Jane',
198
+ email: 'jane@example.com',
199
+ });
200
+ });
201
+ expect(result.current[0]).toEqual({
202
+ id: '456',
203
+ name: 'Jane',
204
+ email: 'jane@example.com',
205
+ });
206
+ });
207
+ });
208
+ });
209
+ //# sourceMappingURL=useStorage.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useStorage.test.js","sourceRoot":"","sources":["../../src/__tests__/useStorage.test.ts"],"names":[],"mappings":"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"}
@@ -4,3 +4,4 @@ export default function createIndexedStorage(database: string, table: string): {
4
4
  removeItem: (key: string) => Promise<void>;
5
5
  clear: () => Promise<void>;
6
6
  };
7
+ //# sourceMappingURL=createIndexedStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createIndexedStorage.d.ts","sourceRoot":"","sources":["../src/createIndexedStorage.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM;mBAS9C,MAAM,SAAS,GAAG;mBAKlB,MAAM;sBAKH,MAAM;;EAgBtC"}
@@ -30,3 +30,4 @@ export default function createIndexedStorage(database, table) {
30
30
  clear,
31
31
  };
32
32
  }
33
+ //# sourceMappingURL=createIndexedStorage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createIndexedStorage.js","sourceRoot":"","sources":["../src/createIndexedStorage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,KAAK,CAAA;AAE5B,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAAC,QAAgB,EAAE,KAAa;IAC1E,MAAM,SAAS,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAC,EAAE;QACpC,OAAO,CAAC,EAAE;YACR,IAAI,CAAC,EAAE,CAAC,gBAAgB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;gBACzC,EAAE,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAA;YAC7B,CAAC;QACH,CAAC;KACF,CAAC,CAAA;IAEF,KAAK,UAAU,OAAO,CAAC,GAAW,EAAE,KAAU;QAC5C,MAAM,EAAE,GAAG,MAAM,SAAS,CAAA;QAC1B,MAAM,EAAE,CAAC,GAAG,CAAC,KAAK,EAAE,KAAK,EAAE,GAAG,CAAC,CAAA;IACjC,CAAC;IAED,KAAK,UAAU,OAAO,CAAC,GAAW;QAChC,MAAM,EAAE,GAAG,MAAM,SAAS,CAAA;QAC1B,OAAO,MAAM,EAAE,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;IACjC,CAAC;IAED,KAAK,UAAU,UAAU,CAAC,GAAW;QACnC,MAAM,EAAE,GAAG,MAAM,SAAS,CAAA;QAC1B,MAAM,EAAE,CAAC,MAAM,CAAC,KAAK,EAAE,GAAG,CAAC,CAAA;IAC7B,CAAC;IAED,KAAK,UAAU,KAAK;QAClB,MAAM,EAAE,GAAG,MAAM,SAAS,CAAA;QAC1B,MAAM,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;IACvB,CAAC;IAED,OAAO;QACL,OAAO;QACP,OAAO;QACP,UAAU;QACV,KAAK;KACN,CAAA;AACH,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
- export { default as useStorage, type T_SyntheticStorage } from './useStorage.js';
2
- export { default as useLocalStorage } from './useLocalStorage.js';
3
- export { default as useSessionStorage } from './useSessionStorage.js';
4
- export { default as useIndexedStorage } from './useIndexedStorage.js';
5
- export { default as createIndexedStorage } from './createIndexedStorage.js';
1
+ export { default as useStorage, type T_SyntheticStorage } from './useStorage';
2
+ export { default as useLocalStorage } from './useLocalStorage';
3
+ export { default as useSessionStorage } from './useSessionStorage';
4
+ export { default as useIndexedStorage } from './useIndexedStorage';
5
+ export { default as createIndexedStorage } from './createIndexedStorage';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,KAAK,kBAAkB,EAAE,MAAM,cAAc,CAAA;AAC7E,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAA"}
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
- export { default as useStorage } from './useStorage.js';
2
- export { default as useLocalStorage } from './useLocalStorage.js';
3
- export { default as useSessionStorage } from './useSessionStorage.js';
4
- export { default as useIndexedStorage } from './useIndexedStorage.js';
5
- export { default as createIndexedStorage } from './createIndexedStorage.js';
1
+ export { default as useStorage } from './useStorage';
2
+ export { default as useLocalStorage } from './useLocalStorage';
3
+ export { default as useSessionStorage } from './useSessionStorage';
4
+ export { default as useIndexedStorage } from './useIndexedStorage';
5
+ export { default as createIndexedStorage } from './createIndexedStorage';
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAA2B,MAAM,cAAc,CAAA;AAC7E,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAA"}
@@ -1 +1 @@
1
- {"root":["../src/createindexedstorage.ts","../src/index.ts","../src/useindexedstorage.ts","../src/uselocalstorage.ts","../src/usesessionstorage.ts","../src/usestorage.ts"],"version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.full.d.ts","../../../node_modules/.pnpm/idb@8.0.3/node_modules/idb/build/wrap-idb-value.d.ts","../../../node_modules/.pnpm/idb@8.0.3/node_modules/idb/build/entry.d.ts","../../../node_modules/.pnpm/idb@8.0.3/node_modules/idb/build/database-extras.d.ts","../../../node_modules/.pnpm/idb@8.0.3/node_modules/idb/build/async-iterators.d.ts","../../../node_modules/.pnpm/idb@8.0.3/node_modules/idb/build/index.d.ts","../src/createindexedstorage.ts","../../../node_modules/.pnpm/@types+react@19.2.7/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.2.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.2.7/node_modules/@types/react/index.d.ts","../src/usestorage.ts","../src/uselocalstorage.ts","../src/usesessionstorage.ts","../src/useindexedstorage.ts","../src/index.ts"],"fileIdsList":[[93,94],[87],[88,89,90],[88],[91],[92,96,97,98,99],[92,96],[96],[95]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"bde31fd423cd93b0eff97197a3f66df7c93e8c0c335cbeb113b7ff1ac35c23f4","impliedFormat":1},{"version":"6eec0b712ee4fa23cdd367f5d866d6719b7c8812bc46c623668ed6072587ee80","impliedFormat":99},{"version":"34200a82ddb7fdf868d86595bf9729aac18a0e2795034431550551d0a31e7e9b","impliedFormat":99},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"1ab59b972136fb41d90d704d6faeaa695fcc51be2bcd390e3d44f7d8fa055edf","impliedFormat":99},{"version":"afa5ca57f255e446ed4b24d8dc43d18837e8af9fba193509f46fcd07588a6ce5","signature":"b314f625478aee9f3930d3bf7c1bd67c5ff0de56812491be15ce74355008c2ca"},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"5e76305d58bcdc924ff2bf14f6a9dc2aa5441ed06464b7e7bd039e611d66a89b","impliedFormat":1},{"version":"9a05571d739e347493be0d4a0d36caff2e209a7af904b0f680b28c877d10205f","signature":"4f66ca9e9c09bdc4f137e2da7779b85cb3b0aefaa8077e528a6015fac4a0b423"},{"version":"8e98a26c7f83f2c8c7e5cdf71a52e669602934c0aa8066ad61575dbe6ed1ac39","signature":"42d16cb1810a0c6915ae1f4d3b9e27ce682ee922984a4e053edf6f8b04f8abfa"},{"version":"39508e91713054c95d0215e68c36c911c29e0da65cf319081b18e87e048c1955","signature":"e6b49a5235764619bcc1198ce485abd1cf7316665c313da63043e48bb7f1fbdc"},{"version":"30eea27f0c50109968a08f617488acf3e09c5559504b4acc77c8755087687481","signature":"e0211c5082381ac84bb89c5672898984dcda66048172b58b89677f125974e5b5"},{"version":"f9916ae58af566e6fb862b9010f88cb45d9909b7993cf03b5244763a97b59ef2","signature":"682f28b094001fd1e469e250e001c5960b530127c0bd34389a2208ee9421c559"}],"root":[92,[96,100]],"options":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":1,"module":99,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"referencedMap":[[95,1],[88,2],[91,3],[87,4],[92,5],[100,6],[99,7],[97,8],[98,8],[96,9]],"version":"5.9.3"}
@@ -1,2 +1,3 @@
1
- import { Config } from './useStorage.js';
1
+ import { type Config } from './useStorage';
2
2
  export default function useIndexedStorage<T>(database: string, table: string, key: string, initialState: T, config?: Config<T>): [T, import("react").Dispatch<import("react").SetStateAction<T>>, boolean];
3
+ //# sourceMappingURL=useIndexedStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useIndexedStorage.d.ts","sourceRoot":"","sources":["../src/useIndexedStorage.ts"],"names":[],"mappings":"AAAA,OAAmB,EAAE,KAAK,MAAM,EAAE,MAAM,cAAc,CAAA;AAGtD,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,CAAC,EACzC,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,EACb,GAAG,EAAE,MAAM,EACX,YAAY,EAAE,CAAC,EACf,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,6EAInB"}
@@ -1,6 +1,7 @@
1
- import useStorage from './useStorage.js';
2
- import createIndexedStorage from './createIndexedStorage.js';
1
+ import useStorage from './useStorage';
2
+ import createIndexedStorage from './createIndexedStorage';
3
3
  export default function useIndexedStorage(database, table, key, initialState, config) {
4
4
  const storage = createIndexedStorage(database, table);
5
5
  return useStorage(() => storage, key, initialState, config);
6
6
  }
7
+ //# sourceMappingURL=useIndexedStorage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useIndexedStorage.js","sourceRoot":"","sources":["../src/useIndexedStorage.ts"],"names":[],"mappings":"AAAA,OAAO,UAA2B,MAAM,cAAc,CAAA;AACtD,OAAO,oBAAoB,MAAM,wBAAwB,CAAA;AAEzD,MAAM,CAAC,OAAO,UAAU,iBAAiB,CACvC,QAAgB,EAChB,KAAa,EACb,GAAW,EACX,YAAe,EACf,MAAkB;IAElB,MAAM,OAAO,GAAG,oBAAoB,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAA;IACrD,OAAO,UAAU,CAAI,GAAG,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,YAAY,EAAE,MAAM,CAAC,CAAA;AAChE,CAAC"}
@@ -1,2 +1,3 @@
1
- import { Config } from './useStorage';
1
+ import { type Config } from './useStorage';
2
2
  export default function useLocalStorage<T = any>(key: string, initialState: T, config?: Config<T>): [T, import("react").Dispatch<import("react").SetStateAction<T>>, boolean];
3
+ //# sourceMappingURL=useLocalStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLocalStorage.d.ts","sourceRoot":"","sources":["../src/useLocalStorage.ts"],"names":[],"mappings":"AAAA,OAAmB,EAAE,KAAK,MAAM,EAAE,MAAM,cAAc,CAAA;AAEtD,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,CAAC,GAAG,GAAG,EAC7C,GAAG,EAAE,MAAM,EACX,YAAY,EAAE,CAAC,EACf,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,6EAGnB"}
@@ -2,3 +2,4 @@ import useStorage from './useStorage';
2
2
  export default function useLocalStorage(key, initialState, config) {
3
3
  return useStorage(() => localStorage, key, initialState, config);
4
4
  }
5
+ //# sourceMappingURL=useLocalStorage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLocalStorage.js","sourceRoot":"","sources":["../src/useLocalStorage.ts"],"names":[],"mappings":"AAAA,OAAO,UAA2B,MAAM,cAAc,CAAA;AAEtD,MAAM,CAAC,OAAO,UAAU,eAAe,CACrC,GAAW,EACX,YAAe,EACf,MAAkB;IAElB,OAAO,UAAU,CAAI,GAAG,EAAE,CAAC,YAAY,EAAE,GAAG,EAAE,YAAY,EAAE,MAAM,CAAC,CAAA;AACrE,CAAC"}
@@ -1,2 +1,3 @@
1
- import { Config } from './useStorage';
1
+ import { type Config } from './useStorage';
2
2
  export default function useSessionStorage<T = any>(key: string, initialState: T, config?: Config<T>): [T, import("react").Dispatch<import("react").SetStateAction<T>>, boolean];
3
+ //# sourceMappingURL=useSessionStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useSessionStorage.d.ts","sourceRoot":"","sources":["../src/useSessionStorage.ts"],"names":[],"mappings":"AAAA,OAAmB,EAAE,KAAK,MAAM,EAAE,MAAM,cAAc,CAAA;AAEtD,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,CAAC,GAAG,GAAG,EAC/C,GAAG,EAAE,MAAM,EACX,YAAY,EAAE,CAAC,EACf,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,6EAGnB"}
@@ -2,3 +2,4 @@ import useStorage from './useStorage';
2
2
  export default function useSessionStorage(key, initialState, config) {
3
3
  return useStorage(() => sessionStorage, key, initialState, config);
4
4
  }
5
+ //# sourceMappingURL=useSessionStorage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useSessionStorage.js","sourceRoot":"","sources":["../src/useSessionStorage.ts"],"names":[],"mappings":"AAAA,OAAO,UAA2B,MAAM,cAAc,CAAA;AAEtD,MAAM,CAAC,OAAO,UAAU,iBAAiB,CACvC,GAAW,EACX,YAAe,EACf,MAAkB;IAElB,OAAO,UAAU,CAAI,GAAG,EAAE,CAAC,cAAc,EAAE,GAAG,EAAE,YAAY,EAAE,MAAM,CAAC,CAAA;AACvE,CAAC"}
@@ -9,3 +9,4 @@ export type Config<T> = {
9
9
  decode?: (value: any) => T;
10
10
  };
11
11
  export default function useStorage<T = any>(getStorage: () => Storage | T_SyntheticStorage, key: string, initialState: T, config?: Config<T>): [T, Dispatch<SetStateAction<T>>, boolean];
12
+ //# sourceMappingURL=useStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useStorage.d.ts","sourceRoot":"","sources":["../src/useStorage.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,cAAc,EAAuB,MAAM,OAAO,CAAA;AAErE,MAAM,MAAM,kBAAkB,CAAC,CAAC,GAAG,GAAG,IAAI;IACxC,OAAO,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAA;IACxC,OAAO,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;CACzD,CAAA;AAED,MAAM,MAAM,MAAM,CAAC,CAAC,IAAI;IACtB,UAAU,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,IAAI,CAAA;IAChC,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,GAAG,CAAA;IAC1B,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,CAAC,CAAA;CAC3B,CAAA;AAED,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,CAAC,GAAG,GAAG,EACxC,UAAU,EAAE,MAAM,OAAO,GAAG,kBAAkB,EAC9C,GAAG,EAAE,MAAM,EACX,YAAY,EAAE,CAAC,EACf,MAAM,GAAE,MAAM,CAAC,CAAC,CAAM,GACrB,CAAC,CAAC,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CA8D3C"}
@@ -54,3 +54,4 @@ export default function useStorage(getStorage, key, initialState, config = {}) {
54
54
  }, [isLoading, state]);
55
55
  return [state, setState, isLoading];
56
56
  }
57
+ //# sourceMappingURL=useStorage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useStorage.js","sourceRoot":"","sources":["../src/useStorage.ts"],"names":[],"mappings":"AAAA,YAAY,CAAA;AACZ,OAAO,EAA4B,SAAS,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAarE,MAAM,CAAC,OAAO,UAAU,UAAU,CAChC,UAA8C,EAC9C,GAAW,EACX,YAAe,EACf,SAAoB,EAAE;IAEtB,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC,KAAK,EAAE,GAAG,MAAM,CAAA;IAE3E,MAAM,CAAC,SAAS,EAAE,UAAU,CAAC,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAA;IAC9C,aAAa;IACb,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG,QAAQ,CAAI,YAAY,CAAC,CAAA;IAEnD,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,CAAC,SAAS,EAAE,CAAC;YACf,OAAM;QACR,CAAC;QAED,MAAM,OAAO,GAAG,UAAU,EAAE,CAAA;QAE5B,IAAI,OAAO,EAAE,CAAC;YACZ,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,KAAK,eAAe,CAAA;YAEpE,KAAK,UAAU,eAAe;gBAC5B,IAAI,OAAO,EAAE,CAAC;oBACZ,OAAO,MAAM,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;gBACnC,CAAC;qBAAM,CAAC;oBACN,OAAO,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;gBAC7B,CAAC;YACH,CAAC;YAED,KAAK,UAAU,OAAO;gBACpB,MAAM,IAAI,GAAG,MAAM,eAAe,EAAE,CAAA;gBAEpC,IAAI,WAAW,CAAA;gBACf,IAAI,IAAI,EAAE,CAAC;oBACT,IAAI,CAAC;wBACH,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,CAAA;wBAC1B,QAAQ,CAAC,WAAW,CAAC,CAAA;oBACvB,CAAC;oBAAC,OAAO,CAAC,EAAE,CAAC,CAAA,CAAC;gBAChB,CAAC;gBAED,UAAU,CAAC,KAAK,CAAC,CAAA;gBAEjB,IAAI,UAAU,EAAE,CAAC;oBACf,UAAU,CAAC,WAAW,CAAC,CAAA;gBACzB,CAAC;YACH,CAAC;YAED,OAAO,EAAE,CAAA;QACX,CAAC;aAAM,CAAC;YACN,UAAU,CAAC,KAAK,CAAC,CAAA;QACnB,CAAC;IACH,CAAC,EAAE,EAAE,CAAC,CAAA;IAEN,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,CAAC,SAAS,EAAE,CAAC;YACf,MAAM,OAAO,GAAG,UAAU,EAAE,CAAA;YAE5B,IAAI,OAAO,EAAE,CAAC;gBACZ,IAAI,CAAC;oBACH,OAAO,CAAC,OAAO,CAAC,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAA;gBACrC,CAAC;gBAAC,OAAO,CAAC,EAAE,CAAC,CAAA,CAAC;YAChB,CAAC;QACH,CAAC;IACH,CAAC,EAAE,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC,CAAA;IAEtB,OAAO,CAAC,KAAK,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAA;AACrC,CAAC"}
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@weser/storage",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Utils and React hooks for working with persisted state",
5
5
  "author": "Robin Weser <robin@weser.io>",
6
6
  "license": "MIT",
7
- "homepage": "https://github.com/robinweser/weser.git",
8
- "repository": "https://github.com/robinweser/weser.git",
7
+ "homepage": "https://github.com/robinweser/weserstack.git",
8
+ "repository": "https://github.com/robinweser/weserstack.git",
9
9
  "type": "module",
10
10
  "main": "dist/index.js",
11
11
  "module": "dist/index.js",
@@ -33,7 +33,7 @@
33
33
  "clean": "rimraf dist",
34
34
  "build": "tsc -b",
35
35
  "dev": "pnpm build -w",
36
- "test": "echo 1"
36
+ "test": "vitest run"
37
37
  },
38
38
  "keywords": [
39
39
  "react",
@@ -54,11 +54,14 @@
54
54
  "react": ">19.0.0"
55
55
  },
56
56
  "devDependencies": {
57
+ "@testing-library/react": "^16.0.0",
57
58
  "@types/react": "^19.0.0",
58
- "ava": "^6.1.3",
59
+ "jsdom": "^25.0.1",
59
60
  "react": "^19.0.0",
61
+ "react-dom": "^19.0.0",
60
62
  "rimraf": "^3.0.2",
61
- "typescript": "^5.4.5"
63
+ "typescript": "^5.4.5",
64
+ "vitest": "^3.0.0"
62
65
  },
63
- "gitHead": "490b5b37e8da7f0cac2880543874914c6f6be5d6"
66
+ "gitHead": "07cd8acd29e916cf20fe509029328862df87b08d"
64
67
  }