@buoy-gg/zustand 2.1.9 → 2.1.11
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/commonjs/index.js +91 -1
- package/lib/commonjs/preset.js +102 -1
- package/lib/commonjs/zustand/components/ZustandActionButton.js +116 -1
- package/lib/commonjs/zustand/components/ZustandDetailViewToggle.js +134 -1
- package/lib/commonjs/zustand/components/ZustandEventFilterView.js +291 -1
- package/lib/commonjs/zustand/components/ZustandIcon.js +35 -1
- package/lib/commonjs/zustand/components/ZustandModal.js +603 -1
- package/lib/commonjs/zustand/components/ZustandStateChangeItem.js +165 -1
- package/lib/commonjs/zustand/components/ZustandStateDetailContent.js +352 -1
- package/lib/commonjs/zustand/components/ZustandStateInfoView.js +508 -1
- package/lib/commonjs/zustand/components/ZustandStoreBrowser.js +307 -1
- package/lib/commonjs/zustand/components/index.js +73 -1
- package/lib/commonjs/zustand/hooks/index.js +12 -1
- package/lib/commonjs/zustand/hooks/useZustandStateChanges.js +92 -1
- package/lib/commonjs/zustand/index.js +99 -1
- package/lib/commonjs/zustand/utils/buoyZustandMiddleware.js +220 -1
- package/lib/commonjs/zustand/utils/index.js +31 -1
- package/lib/commonjs/zustand/utils/zustandStateStore.js +361 -1
- package/lib/module/index.js +80 -1
- package/lib/module/preset.js +98 -1
- package/lib/module/zustand/components/ZustandActionButton.js +112 -1
- package/lib/module/zustand/components/ZustandDetailViewToggle.js +129 -1
- package/lib/module/zustand/components/ZustandEventFilterView.js +287 -1
- package/lib/module/zustand/components/ZustandIcon.js +32 -1
- package/lib/module/zustand/components/ZustandModal.js +599 -1
- package/lib/module/zustand/components/ZustandStateChangeItem.js +161 -1
- package/lib/module/zustand/components/ZustandStateDetailContent.js +348 -1
- package/lib/module/zustand/components/ZustandStateInfoView.js +503 -1
- package/lib/module/zustand/components/ZustandStoreBrowser.js +303 -1
- package/lib/module/zustand/components/index.js +10 -1
- package/lib/module/zustand/hooks/index.js +3 -1
- package/lib/module/zustand/hooks/useZustandStateChanges.js +88 -1
- package/lib/module/zustand/index.js +12 -1
- package/lib/module/zustand/utils/buoyZustandMiddleware.js +214 -1
- package/lib/module/zustand/utils/index.js +4 -1
- package/lib/module/zustand/utils/zustandStateStore.js +357 -1
- package/lib/typescript/index.d.ts.map +1 -0
- package/lib/typescript/preset.d.ts.map +1 -0
- package/lib/typescript/zustand/components/ZustandActionButton.d.ts.map +1 -0
- package/lib/typescript/zustand/components/ZustandDetailViewToggle.d.ts.map +1 -0
- package/lib/typescript/zustand/components/ZustandEventFilterView.d.ts.map +1 -0
- package/lib/typescript/zustand/components/ZustandIcon.d.ts.map +1 -0
- package/lib/typescript/zustand/components/ZustandModal.d.ts.map +1 -0
- package/lib/typescript/zustand/components/ZustandStateChangeItem.d.ts.map +1 -0
- package/lib/typescript/zustand/components/ZustandStateDetailContent.d.ts.map +1 -0
- package/lib/typescript/zustand/components/ZustandStateInfoView.d.ts.map +1 -0
- package/lib/typescript/zustand/components/ZustandStoreBrowser.d.ts.map +1 -0
- package/lib/typescript/zustand/components/index.d.ts.map +1 -0
- package/lib/typescript/zustand/hooks/index.d.ts.map +1 -0
- package/lib/typescript/zustand/hooks/useZustandStateChanges.d.ts.map +1 -0
- package/lib/typescript/zustand/index.d.ts.map +1 -0
- package/lib/typescript/zustand/types/index.d.ts.map +1 -0
- package/lib/typescript/zustand/utils/buoyZustandMiddleware.d.ts.map +1 -0
- package/lib/typescript/zustand/utils/index.d.ts.map +1 -0
- package/lib/typescript/zustand/utils/zustandStateStore.d.ts.map +1 -0
- package/package.json +10 -10
- package/LICENSE +0 -58
|
@@ -1 +1,357 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Zustand state store - captures and stores Zustand state changes
|
|
5
|
+
*
|
|
6
|
+
* Mirrors the architecture of reduxActionStore.ts from @buoy-gg/redux
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
// ============================================
|
|
10
|
+
// Store Color Palette
|
|
11
|
+
// ============================================
|
|
12
|
+
|
|
13
|
+
const STORE_COLORS = {
|
|
14
|
+
counter: "#10B981",
|
|
15
|
+
// emerald
|
|
16
|
+
auth: "#8B5CF6",
|
|
17
|
+
// purple
|
|
18
|
+
user: "#3B82F6",
|
|
19
|
+
// blue
|
|
20
|
+
cart: "#EC4899",
|
|
21
|
+
// pink
|
|
22
|
+
app: "#6366F1",
|
|
23
|
+
// indigo
|
|
24
|
+
ui: "#F59E0B",
|
|
25
|
+
// amber
|
|
26
|
+
settings: "#14B8A6",
|
|
27
|
+
// teal
|
|
28
|
+
theme: "#06B6D4",
|
|
29
|
+
// cyan
|
|
30
|
+
navigation: "#F97316",
|
|
31
|
+
// orange
|
|
32
|
+
form: "#EF4444" // red
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Get consistent color for a store based on its name
|
|
37
|
+
*/
|
|
38
|
+
function getStoreColor(storeName) {
|
|
39
|
+
const lowerName = storeName.toLowerCase();
|
|
40
|
+
|
|
41
|
+
// Check for exact match
|
|
42
|
+
if (STORE_COLORS[lowerName]) {
|
|
43
|
+
return STORE_COLORS[lowerName];
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Check for partial matches
|
|
47
|
+
for (const [key, color] of Object.entries(STORE_COLORS)) {
|
|
48
|
+
if (lowerName.includes(key)) {
|
|
49
|
+
return color;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// Generate consistent hex color from name hash
|
|
54
|
+
const hash = storeName.split("").reduce((acc, char) => acc + char.charCodeAt(0), 0);
|
|
55
|
+
const hue = hash * 137 % 360;
|
|
56
|
+
// Convert HSL to hex so "color + alpha_hex" pattern works everywhere
|
|
57
|
+
const s = 0.7;
|
|
58
|
+
const l = 0.6;
|
|
59
|
+
const c = (1 - Math.abs(2 * l - 1)) * s;
|
|
60
|
+
const x = c * (1 - Math.abs(hue / 60 % 2 - 1));
|
|
61
|
+
const m = l - c / 2;
|
|
62
|
+
let r = 0,
|
|
63
|
+
g = 0,
|
|
64
|
+
b = 0;
|
|
65
|
+
if (hue < 60) {
|
|
66
|
+
r = c;
|
|
67
|
+
g = x;
|
|
68
|
+
} else if (hue < 120) {
|
|
69
|
+
r = x;
|
|
70
|
+
g = c;
|
|
71
|
+
} else if (hue < 180) {
|
|
72
|
+
g = c;
|
|
73
|
+
b = x;
|
|
74
|
+
} else if (hue < 240) {
|
|
75
|
+
g = x;
|
|
76
|
+
b = c;
|
|
77
|
+
} else if (hue < 300) {
|
|
78
|
+
r = x;
|
|
79
|
+
b = c;
|
|
80
|
+
} else {
|
|
81
|
+
r = c;
|
|
82
|
+
b = x;
|
|
83
|
+
}
|
|
84
|
+
const toHex = v => Math.round((v + m) * 255).toString(16).padStart(2, "0");
|
|
85
|
+
return `#${toHex(r)}${toHex(g)}${toHex(b)}`;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// ============================================
|
|
89
|
+
// Helper Functions
|
|
90
|
+
// ============================================
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Format payload preview for display
|
|
94
|
+
*/
|
|
95
|
+
function formatPartialPreview(partial, maxLength = 40) {
|
|
96
|
+
if (partial === undefined) return "";
|
|
97
|
+
if (partial === null) return "null";
|
|
98
|
+
try {
|
|
99
|
+
if (typeof partial === "function") {
|
|
100
|
+
return "(updater fn)";
|
|
101
|
+
}
|
|
102
|
+
if (typeof partial === "string") {
|
|
103
|
+
return partial.length > maxLength ? `"${partial.slice(0, maxLength - 3)}..."` : `"${partial}"`;
|
|
104
|
+
}
|
|
105
|
+
if (typeof partial === "number" || typeof partial === "boolean") {
|
|
106
|
+
return String(partial);
|
|
107
|
+
}
|
|
108
|
+
if (Array.isArray(partial)) {
|
|
109
|
+
if (partial.length === 0) return "[]";
|
|
110
|
+
const preview = JSON.stringify(partial);
|
|
111
|
+
return preview.length > maxLength ? `[${partial.length} items]` : preview;
|
|
112
|
+
}
|
|
113
|
+
if (typeof partial === "object") {
|
|
114
|
+
const keys = Object.keys(partial);
|
|
115
|
+
if (keys.length === 0) return "{}";
|
|
116
|
+
const preview = JSON.stringify(partial);
|
|
117
|
+
if (preview.length <= maxLength) return preview;
|
|
118
|
+
return `{ ${keys.length} keys }`;
|
|
119
|
+
}
|
|
120
|
+
return String(partial).slice(0, maxLength);
|
|
121
|
+
} catch {
|
|
122
|
+
return "[complex]";
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Calculate state diff summary
|
|
128
|
+
*/
|
|
129
|
+
function getStateDiffSummary(prevState, nextState) {
|
|
130
|
+
if (prevState === nextState) {
|
|
131
|
+
return {
|
|
132
|
+
summary: "no change",
|
|
133
|
+
changedKeys: [],
|
|
134
|
+
changedCount: 0
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
if (typeof prevState !== "object" || typeof nextState !== "object" || prevState === null || nextState === null) {
|
|
138
|
+
return {
|
|
139
|
+
summary: "changed",
|
|
140
|
+
changedKeys: [],
|
|
141
|
+
changedCount: 1
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
const prevKeys = Object.keys(prevState);
|
|
145
|
+
const nextKeys = Object.keys(nextState);
|
|
146
|
+
const added = nextKeys.filter(k => !prevKeys.includes(k));
|
|
147
|
+
const removed = prevKeys.filter(k => !nextKeys.includes(k));
|
|
148
|
+
const changed = [];
|
|
149
|
+
for (const key of prevKeys) {
|
|
150
|
+
if (nextKeys.includes(key) && prevState[key] !== nextState[key]) {
|
|
151
|
+
changed.push(key);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
const allChangedKeys = [...added, ...removed, ...changed];
|
|
155
|
+
const parts = [];
|
|
156
|
+
if (added.length > 0) parts.push(`+${added.length}`);
|
|
157
|
+
if (removed.length > 0) parts.push(`-${removed.length}`);
|
|
158
|
+
if (changed.length > 0) parts.push(`~${changed.length}`);
|
|
159
|
+
const totalChanged = allChangedKeys.length;
|
|
160
|
+
if (parts.length === 0) {
|
|
161
|
+
return {
|
|
162
|
+
summary: "nested change",
|
|
163
|
+
changedKeys: [],
|
|
164
|
+
changedCount: 1
|
|
165
|
+
};
|
|
166
|
+
}
|
|
167
|
+
return {
|
|
168
|
+
summary: `${parts.join(" ")} ${totalChanged === 1 ? "key" : "keys"}`,
|
|
169
|
+
changedKeys: allChangedKeys,
|
|
170
|
+
changedCount: totalChanged
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
// ============================================
|
|
175
|
+
// Zustand State Store
|
|
176
|
+
// ============================================
|
|
177
|
+
|
|
178
|
+
class ZustandStateStore {
|
|
179
|
+
stateChanges = [];
|
|
180
|
+
stores = new Map();
|
|
181
|
+
listeners = new Set();
|
|
182
|
+
storeListeners = new Set();
|
|
183
|
+
maxChanges = 200;
|
|
184
|
+
idCounter = 0;
|
|
185
|
+
isEnabled = true;
|
|
186
|
+
|
|
187
|
+
// ---- State Change Tracking ----
|
|
188
|
+
|
|
189
|
+
addStateChange(params) {
|
|
190
|
+
if (!this.isEnabled) return;
|
|
191
|
+
const {
|
|
192
|
+
storeName,
|
|
193
|
+
partial,
|
|
194
|
+
replace,
|
|
195
|
+
prevState,
|
|
196
|
+
nextState,
|
|
197
|
+
duration,
|
|
198
|
+
category,
|
|
199
|
+
isPersisted = false
|
|
200
|
+
} = params;
|
|
201
|
+
const hasStateChange = prevState !== nextState;
|
|
202
|
+
const {
|
|
203
|
+
summary,
|
|
204
|
+
changedKeys,
|
|
205
|
+
changedCount
|
|
206
|
+
} = getStateDiffSummary(prevState, nextState);
|
|
207
|
+
const partialPreview = formatPartialPreview(partial);
|
|
208
|
+
const isSlowUpdate = (duration ?? 0) > 16;
|
|
209
|
+
const resolvedCategory = category ?? (replace ? "replace" : "setState");
|
|
210
|
+
const stateChange = {
|
|
211
|
+
id: `${Date.now()}-${++this.idCounter}`,
|
|
212
|
+
storeName,
|
|
213
|
+
timestamp: Date.now(),
|
|
214
|
+
prevState,
|
|
215
|
+
nextState,
|
|
216
|
+
partial,
|
|
217
|
+
duration,
|
|
218
|
+
hasStateChange,
|
|
219
|
+
replace,
|
|
220
|
+
category: resolvedCategory,
|
|
221
|
+
changedKeys,
|
|
222
|
+
changedKeysCount: changedCount,
|
|
223
|
+
diffSummary: summary,
|
|
224
|
+
partialPreview,
|
|
225
|
+
isSlowUpdate,
|
|
226
|
+
isPersisted
|
|
227
|
+
};
|
|
228
|
+
this.stateChanges = [stateChange, ...this.stateChanges].slice(0, this.maxChanges);
|
|
229
|
+
|
|
230
|
+
// Update store change count
|
|
231
|
+
const storeInfo = this.stores.get(storeName);
|
|
232
|
+
if (storeInfo) {
|
|
233
|
+
storeInfo.stateChangeCount++;
|
|
234
|
+
}
|
|
235
|
+
this.notifyListeners();
|
|
236
|
+
}
|
|
237
|
+
getStateChanges() {
|
|
238
|
+
return [...this.stateChanges];
|
|
239
|
+
}
|
|
240
|
+
getStateChangeById(id) {
|
|
241
|
+
return this.stateChanges.find(c => c.id === id);
|
|
242
|
+
}
|
|
243
|
+
clearStateChanges() {
|
|
244
|
+
this.stateChanges = [];
|
|
245
|
+
// Reset counts
|
|
246
|
+
for (const store of this.stores.values()) {
|
|
247
|
+
store.stateChangeCount = 0;
|
|
248
|
+
}
|
|
249
|
+
this.notifyListeners();
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
// ---- Store Registry ----
|
|
253
|
+
|
|
254
|
+
registerStore(name, api, options) {
|
|
255
|
+
if (this.stores.has(name)) return;
|
|
256
|
+
const storeInfo = {
|
|
257
|
+
name,
|
|
258
|
+
api,
|
|
259
|
+
stateChangeCount: 0,
|
|
260
|
+
isPersisted: options?.isPersisted ?? false,
|
|
261
|
+
persistName: options?.persistName,
|
|
262
|
+
color: getStoreColor(name)
|
|
263
|
+
};
|
|
264
|
+
this.stores.set(name, storeInfo);
|
|
265
|
+
this.notifyStoreListeners();
|
|
266
|
+
}
|
|
267
|
+
unregisterStore(name) {
|
|
268
|
+
this.stores.delete(name);
|
|
269
|
+
this.notifyStoreListeners();
|
|
270
|
+
}
|
|
271
|
+
getStores() {
|
|
272
|
+
return Array.from(this.stores.values());
|
|
273
|
+
}
|
|
274
|
+
getStore(name) {
|
|
275
|
+
return this.stores.get(name);
|
|
276
|
+
}
|
|
277
|
+
getStoreColor(name) {
|
|
278
|
+
return this.stores.get(name)?.color ?? getStoreColor(name);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
// ---- Filtering ----
|
|
282
|
+
|
|
283
|
+
filterStateChanges(filter) {
|
|
284
|
+
let filtered = [...this.stateChanges];
|
|
285
|
+
if (filter.searchText) {
|
|
286
|
+
const search = filter.searchText.toLowerCase();
|
|
287
|
+
filtered = filtered.filter(c => c.storeName.toLowerCase().includes(search) || c.partialPreview.toLowerCase().includes(search) || c.changedKeys.some(k => k.toLowerCase().includes(search)));
|
|
288
|
+
}
|
|
289
|
+
if (filter.storeNames && filter.storeNames.length > 0) {
|
|
290
|
+
filtered = filtered.filter(c => filter.storeNames.includes(c.storeName));
|
|
291
|
+
}
|
|
292
|
+
if (filter.onlyWithChanges) {
|
|
293
|
+
filtered = filtered.filter(c => c.hasStateChange);
|
|
294
|
+
}
|
|
295
|
+
return filtered;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// ---- Stats ----
|
|
299
|
+
|
|
300
|
+
getStats() {
|
|
301
|
+
const total = this.stateChanges.length;
|
|
302
|
+
const withChanges = this.stateChanges.filter(c => c.hasStateChange).length;
|
|
303
|
+
const storeCount = this.stores.size;
|
|
304
|
+
const durations = this.stateChanges.filter(c => c.duration !== undefined).map(c => c.duration);
|
|
305
|
+
const avgDuration = durations.length > 0 ? durations.reduce((sum, d) => sum + d, 0) / durations.length : 0;
|
|
306
|
+
return {
|
|
307
|
+
totalChanges: total,
|
|
308
|
+
changesWithStateChange: withChanges,
|
|
309
|
+
changesWithoutStateChange: total - withChanges,
|
|
310
|
+
storeCount,
|
|
311
|
+
averageDuration: Math.round(avgDuration * 100) / 100
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
getUniqueStoreNames() {
|
|
315
|
+
return Array.from(this.stores.keys()).sort();
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
// ---- Enable / Disable ----
|
|
319
|
+
|
|
320
|
+
setEnabled(enabled) {
|
|
321
|
+
this.isEnabled = enabled;
|
|
322
|
+
}
|
|
323
|
+
getEnabled() {
|
|
324
|
+
return this.isEnabled;
|
|
325
|
+
}
|
|
326
|
+
setMaxChanges(max) {
|
|
327
|
+
this.maxChanges = max;
|
|
328
|
+
if (this.stateChanges.length > max) {
|
|
329
|
+
this.stateChanges = this.stateChanges.slice(0, max);
|
|
330
|
+
this.notifyListeners();
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
// ---- Subscriptions ----
|
|
335
|
+
|
|
336
|
+
subscribe(listener) {
|
|
337
|
+
this.listeners.add(listener);
|
|
338
|
+
return () => {
|
|
339
|
+
this.listeners.delete(listener);
|
|
340
|
+
};
|
|
341
|
+
}
|
|
342
|
+
subscribeToStores(listener) {
|
|
343
|
+
this.storeListeners.add(listener);
|
|
344
|
+
return () => {
|
|
345
|
+
this.storeListeners.delete(listener);
|
|
346
|
+
};
|
|
347
|
+
}
|
|
348
|
+
notifyListeners() {
|
|
349
|
+
const changes = this.getStateChanges();
|
|
350
|
+
this.listeners.forEach(listener => listener(changes));
|
|
351
|
+
}
|
|
352
|
+
notifyStoreListeners() {
|
|
353
|
+
const stores = this.getStores();
|
|
354
|
+
this.storeListeners.forEach(listener => listener(stores));
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
export const zustandStateStore = new ZustandStateStore();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AAKH,OAAO,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAKhE,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AAKpE,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AAKrE,OAAO,EAAE,mBAAmB,EAAE,MAAM,uCAAuC,CAAC;AAK5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAChF,YAAY,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AAK3F,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,sBAAsB,EAAE,MAAM,6CAA6C,CAAC;AACrF,OAAO,EACL,yBAAyB,EACzB,wBAAwB,GACzB,MAAM,gDAAgD,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AAKnF,YAAY,EACV,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EAChB,aAAa,EACb,mBAAmB,EACnB,4BAA4B,GAC7B,MAAM,iBAAiB,CAAC;AAKzB,gBAAgB;AAChB,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"preset.d.ts","sourceRoot":"","sources":["../../src/preset.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAGjE;;;;;;;;GAQG;AACH,eAAO,MAAM,iBAAiB;;;;;qBAKX;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE;;;;;CAKlC,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,CAAC,EAAE;IAC1C,qCAAqC;IACrC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,uBAAuB;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,0CAA0C;IAC1C,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,iBAAiB;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qCAAqC;IACrC,2BAA2B,CAAC,EAAE,OAAO,CAAC;CACvC;;;;;qBAMoB;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE;;;;;EAWpC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZustandActionButton.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/ZustandActionButton.tsx"],"names":[],"mappings":"AAAA;;;;;GAKG;AAKH,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;CAyBlB,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,aAAa,CAAC;AAEpD,UAAU,wBAAwB;IAChC,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,wBAAgB,mBAAmB,CAAC,EAClC,OAAO,EACP,IAAI,EACJ,IAAI,EACJ,QAAgB,GACjB,EAAE,wBAAwB,+BA0C1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZustandDetailViewToggle.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/ZustandDetailViewToggle.tsx"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAe,MAAM,OAAO,CAAC;AAIpC,MAAM,MAAM,qBAAqB,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;AAWhE,UAAU,4BAA4B;IACpC,UAAU,EAAE,qBAAqB,CAAC;IAClC,YAAY,EAAE,CAAC,IAAI,EAAE,qBAAqB,KAAK,IAAI,CAAC;IACpD,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AA0BD,eAAO,MAAM,uBAAuB,0DAiElC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZustandEventFilterView.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/ZustandEventFilterView.tsx"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAGjD,UAAU,2BAA2B;IACnC,eAAe,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC7B,eAAe,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,YAAY,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,MAAM,EAAE,gBAAgB,EAAE,CAAC;CAC5B;AAuBD,wBAAgB,sBAAsB,CAAC,EACrC,eAAe,EACf,eAAe,EACf,YAAY,EACZ,MAAM,GACP,EAAE,2BAA2B,+BAgL7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZustandIcon.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/ZustandIcon.tsx"],"names":[],"mappings":"AAAA;;GAEG;AAKH,QAAA,MAAM,kBAAkB,YAAY,CAAC;AAErC,wBAAgB,WAAW,CAAC,EAC1B,IAAI,EACJ,KAAK,GACN,EAAE;IACD,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,+BAqBA;AAED,OAAO,EAAE,kBAAkB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZustandModal.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/ZustandModal.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AA2CH,OAAO,KAAK,EAAE,iBAAiB,EAAsB,MAAM,UAAU,CAAC;AAqBtE,wBAAgB,YAAY,CAAC,EAC3B,OAAO,EACP,OAAO,EACP,MAAM,EACN,UAAU,EACV,2BAAmC,GACpC,EAAE,iBAAiB,sCAuhBnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZustandStateChangeItem.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/ZustandStateChangeItem.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,KAAK,EAAE,kBAAkB,EAAuB,MAAM,UAAU,CAAC;AAGxE,UAAU,2BAA2B;IACnC,MAAM,EAAE,kBAAkB,CAAC;IAC3B,OAAO,EAAE,CAAC,MAAM,EAAE,kBAAkB,KAAK,IAAI,CAAC;CAC/C;AAwFD,wBAAgB,sBAAsB,CAAC,EACrC,MAAM,EACN,OAAO,GACR,EAAE,2BAA2B,+BAgD7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZustandStateDetailContent.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/ZustandStateDetailContent.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAiBH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AASnD,UAAU,8BAA8B;IACtC,MAAM,EAAE,kBAAkB,CAAC;IAC3B,OAAO,EAAE,kBAAkB,EAAE,CAAC;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACvC,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAyCD,wBAAgB,yBAAyB,CAAC,EACxC,MAAM,EACN,OAAO,EACP,aAAa,EACb,aAAa,EACb,qBAA6B,GAC9B,EAAE,8BAA8B,+BA6LhC;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,EACvC,MAAM,EACN,OAAO,EACP,aAAa,EACb,aAAa,GACd,EAAE;IACD,MAAM,EAAE,kBAAkB,CAAC;IAC3B,OAAO,EAAE,kBAAkB,EAAE,CAAC;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACxC,sCAmBA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZustandStateInfoView.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/ZustandStateInfoView.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAiD,MAAM,OAAO,CAAC;AAgBtE,OAAO,KAAK,EAAE,kBAAkB,EAAuB,MAAM,UAAU,CAAC;AAIxE,UAAU,yBAAyB;IACjC,MAAM,EAAE,kBAAkB,CAAC;CAC5B;AAmGD,eAAO,MAAM,oBAAoB,uDAmO/B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZustandStoreBrowser.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/ZustandStoreBrowser.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAeH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAGjD,UAAU,wBAAwB;IAChC,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;CAC5C;AAsGD,wBAAgB,mBAAmB,CAAC,EAClC,MAAM,EACN,WAAW,EACX,aAAa,GACd,EAAE,wBAAwB,+BA4F1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/zustand/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EACL,yBAAyB,EACzB,wBAAwB,GACzB,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,YAAY,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,YAAY,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/zustand/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,YAAY,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useZustandStateChanges.d.ts","sourceRoot":"","sources":["../../../../src/zustand/hooks/useZustandStateChanges.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,KAAK,EACV,kBAAkB,EAClB,gBAAgB,EAChB,aAAa,EACd,MAAM,UAAU,CAAC;AAGlB,MAAM,WAAW,4BAA4B;IAC3C,iCAAiC;IACjC,YAAY,EAAE,kBAAkB,EAAE,CAAC;IACnC,qDAAqD;IACrD,eAAe,EAAE,kBAAkB,EAAE,CAAC;IACtC,8BAA8B;IAC9B,MAAM,EAAE,aAAa,CAAC;IACtB,6BAA6B;IAC7B,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC,CAAC;IAC/D,wCAAwC;IACxC,KAAK,EAAE;QACL,YAAY,EAAE,MAAM,CAAC;QACrB,sBAAsB,EAAE,MAAM,CAAC;QAC/B,yBAAyB,EAAE,MAAM,CAAC;QAClC,UAAU,EAAE,MAAM,CAAC;QACnB,eAAe,EAAE,MAAM,CAAC;KACzB,CAAC;IACF,4BAA4B;IAC5B,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,uCAAuC;IACvC,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,iCAAiC;IACjC,SAAS,EAAE,OAAO,CAAC;IACnB,4BAA4B;IAC5B,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,6BAA6B;IAC7B,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,6BAA6B;IAC7B,aAAa,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,kBAAkB,GAAG,SAAS,CAAC;CAC/D;AAED,wBAAgB,sBAAsB,IAAI,4BAA4B,CAqGrE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/zustand/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAC7E,OAAO,EACL,yBAAyB,EACzB,wBAAwB,GACzB,MAAM,wCAAwC,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAC/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AAEvE,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EACL,WAAW,EACX,YAAY,EACZ,mBAAmB,GACpB,MAAM,+BAA+B,CAAC;AAEvC,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAExE,YAAY,EACV,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EAChB,aAAa,EACb,mBAAmB,EACnB,4BAA4B,GAC7B,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/zustand/types/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAC3B,UAAU,GACV,SAAS,GACT,SAAS,GACT,SAAS,CAAC;AAEd;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,OAAO,CAAC;IACnB,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,OAAO,CAAC;IACxB,OAAO,EAAE,OAAO,CAAC;IAGjB,QAAQ,EAAE,mBAAmB,CAAC;IAC9B,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,OAAO,CAAC;IACtB,WAAW,EAAE,OAAO,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE;QACH,QAAQ,EAAE,MAAM,OAAO,CAAC;QACxB,eAAe,CAAC,EAAE,MAAM,OAAO,CAAC;QAChC,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;QACxD,SAAS,EAAE,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,KAAK,IAAI,KAAK,MAAM,IAAI,CAAC;KACnF,CAAC;IACF,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,IAAI,CAAC;IAC3C,2BAA2B,CAAC,EAAE,OAAO,CAAC;CACvC;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C,yCAAyC;IACzC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iDAAiD;IACjD,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buoyZustandMiddleware.d.ts","sourceRoot":"","sources":["../../../../src/zustand/utils/buoyZustandMiddleware.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAGH,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,UAAU,CAAC;AA6B7D,4DAA4D;AAC5D,UAAU,gBAAgB;IACxB,QAAQ,EAAE,MAAM,OAAO,CAAC;IACxB,eAAe,CAAC,EAAE,MAAM,OAAO,CAAC;IAChC,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;IACxD,SAAS,EAAE,CACT,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,KAAK,IAAI,KACnD,MAAM,IAAI,CAAC;IAChB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,wBAAgB,WAAW,CACzB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,GACvC,MAAM,IAAI,CAoDZ;AASD;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAC5B,MAAM,EAAE,CACN,GAAG,EAAE,CACH,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,EACxD,OAAO,CAAC,EAAE,OAAO,KACd,IAAI,EACT,GAAG,EAAE,MAAM,CAAC,EACZ,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KACzB,CAAC,EACN,OAAO,CAAC,EAAE,4BAA4B,GACrC,CACD,GAAG,EAAE,CACH,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,EACxD,OAAO,CAAC,EAAE,OAAO,KACd,IAAI,EACT,GAAG,EAAE,MAAM,CAAC,EACZ,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KACzB,CAAC,CAmEL;AAMD;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,MAAM,CAAC,MAAM,GAAG,MAAM,EAAE,OAAO,CAAC,GACtC,OAAO,CAET"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/zustand/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EACL,WAAW,EACX,YAAY,EACZ,mBAAmB,GACpB,MAAM,yBAAyB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zustandStateStore.d.ts","sourceRoot":"","sources":["../../../../src/zustand/utils/zustandStateStore.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EACV,kBAAkB,EAClB,gBAAgB,EAChB,aAAa,EACb,mBAAmB,EACpB,MAAM,UAAU,CAAC;AA6KlB,cAAM,iBAAiB;IACrB,OAAO,CAAC,YAAY,CAA4B;IAChD,OAAO,CAAC,MAAM,CAA4C;IAC1D,OAAO,CAAC,SAAS,CAA2D;IAC5E,OAAO,CAAC,cAAc,CACV;IACZ,OAAO,CAAC,UAAU,CAAO;IACzB,OAAO,CAAC,SAAS,CAAK;IACtB,OAAO,CAAC,SAAS,CAAQ;IAIzB,cAAc,CAAC,MAAM,EAAE;QACrB,SAAS,EAAE,MAAM,CAAC;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,OAAO,EAAE,OAAO,CAAC;QACjB,SAAS,EAAE,OAAO,CAAC;QACnB,SAAS,EAAE,OAAO,CAAC;QACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,QAAQ,CAAC,EAAE,mBAAmB,CAAC;QAC/B,WAAW,CAAC,EAAE,OAAO,CAAC;KACvB,GAAG,IAAI;IA0DR,eAAe,IAAI,kBAAkB,EAAE;IAIvC,kBAAkB,CAAC,EAAE,EAAE,MAAM,GAAG,kBAAkB,GAAG,SAAS;IAI9D,iBAAiB,IAAI,IAAI;IAWzB,aAAa,CACX,IAAI,EAAE,MAAM,EACZ,GAAG,EAAE,gBAAgB,CAAC,KAAK,CAAC,EAC5B,OAAO,CAAC,EAAE;QAAE,WAAW,CAAC,EAAE,OAAO,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAA;KAAE,GACxD,IAAI;IAgBP,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAKnC,SAAS,IAAI,gBAAgB,EAAE;IAI/B,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,gBAAgB,GAAG,SAAS;IAIpD,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;IAMnC,kBAAkB,CAAC,MAAM,EAAE,aAAa,GAAG,kBAAkB,EAAE;IA4B/D,QAAQ;;;;;;;IAwBR,mBAAmB,IAAI,MAAM,EAAE;IAM/B,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAIlC,UAAU,IAAI,OAAO;IAIrB,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAUhC,SAAS,CACP,QAAQ,EAAE,CAAC,OAAO,EAAE,kBAAkB,EAAE,KAAK,IAAI,GAChD,MAAM,IAAI;IAOb,iBAAiB,CACf,QAAQ,EAAE,CAAC,MAAM,EAAE,gBAAgB,EAAE,KAAK,IAAI,GAC7C,MAAM,IAAI;IAOb,OAAO,CAAC,eAAe;IAKvB,OAAO,CAAC,oBAAoB;CAI7B;AAED,eAAO,MAAM,iBAAiB,mBAA0B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buoy-gg/zustand",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.11",
|
|
4
4
|
"description": "Zustand store DevTools for React Native",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -25,9 +25,15 @@
|
|
|
25
25
|
"lib"
|
|
26
26
|
],
|
|
27
27
|
"sideEffects": false,
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "bob build",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"clean": "rimraf lib",
|
|
32
|
+
"test": "pnpm run typecheck"
|
|
33
|
+
},
|
|
28
34
|
"dependencies": {
|
|
29
|
-
"@buoy-gg/
|
|
30
|
-
"@buoy-gg/
|
|
35
|
+
"@buoy-gg/shared-ui": "workspace:*",
|
|
36
|
+
"@buoy-gg/license": "workspace:*"
|
|
31
37
|
},
|
|
32
38
|
"peerDependencies": {
|
|
33
39
|
"react": "*",
|
|
@@ -71,11 +77,5 @@
|
|
|
71
77
|
"publishConfig": {
|
|
72
78
|
"access": "public",
|
|
73
79
|
"tag": "latest"
|
|
74
|
-
},
|
|
75
|
-
"scripts": {
|
|
76
|
-
"build": "bob build",
|
|
77
|
-
"typecheck": "tsc --noEmit",
|
|
78
|
-
"clean": "rimraf lib",
|
|
79
|
-
"test": "pnpm run typecheck"
|
|
80
80
|
}
|
|
81
|
-
}
|
|
81
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
PROPRIETARY SOFTWARE LICENSE
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2024-present Buoy. All rights reserved.
|
|
4
|
-
|
|
5
|
-
This software and its source code are proprietary and confidential.
|
|
6
|
-
|
|
7
|
-
NOTICE: This is NOT open source software. This software is licensed,
|
|
8
|
-
not sold, and is protected by copyright laws and international treaties.
|
|
9
|
-
|
|
10
|
-
TERMS AND CONDITIONS:
|
|
11
|
-
|
|
12
|
-
1. LICENSE GRANT
|
|
13
|
-
Subject to the terms of this Agreement and payment of applicable fees,
|
|
14
|
-
Buoy grants you a limited, non-exclusive, non-transferable license
|
|
15
|
-
to use the compiled software packages in your applications.
|
|
16
|
-
|
|
17
|
-
2. RESTRICTIONS
|
|
18
|
-
You may NOT:
|
|
19
|
-
- Copy, modify, or distribute the source code
|
|
20
|
-
- Reverse engineer, decompile, or disassemble the software
|
|
21
|
-
- Remove or alter any proprietary notices or labels
|
|
22
|
-
- Sublicense, rent, lease, or lend the software
|
|
23
|
-
- Use the software to create competing products
|
|
24
|
-
- Share access credentials with unauthorized parties
|
|
25
|
-
|
|
26
|
-
3. OWNERSHIP
|
|
27
|
-
React Buoy retains all right, title, and interest in the software,
|
|
28
|
-
including all intellectual property rights. This license does not
|
|
29
|
-
grant you any rights to trademarks or service marks.
|
|
30
|
-
|
|
31
|
-
4. TERMINATION
|
|
32
|
-
This license is effective until terminated. Your rights under this
|
|
33
|
-
license will terminate automatically without notice if you fail to
|
|
34
|
-
comply with any of its terms. Upon termination, you must cease all
|
|
35
|
-
use and destroy all copies of the software.
|
|
36
|
-
|
|
37
|
-
5. DISCLAIMER OF WARRANTIES
|
|
38
|
-
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
|
39
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
40
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
|
|
41
|
-
|
|
42
|
-
6. LIMITATION OF LIABILITY
|
|
43
|
-
IN NO EVENT SHALL BUOY BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
|
|
44
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN
|
|
45
|
-
CONNECTION WITH THIS LICENSE OR THE USE OF THE SOFTWARE.
|
|
46
|
-
|
|
47
|
-
7. GOVERNING LAW
|
|
48
|
-
This Agreement shall be governed by and construed in accordance with
|
|
49
|
-
the laws of the United States, without regard to its conflict of
|
|
50
|
-
law provisions.
|
|
51
|
-
|
|
52
|
-
For licensing inquiries and subscription information:
|
|
53
|
-
- Website: https://buoy.gg
|
|
54
|
-
- Email: AustinLovesWorking@gmail.com
|
|
55
|
-
|
|
56
|
-
Unauthorized reproduction or distribution of this software, or any
|
|
57
|
-
portion of it, may result in severe civil and criminal penalties,
|
|
58
|
-
and will be prosecuted to the maximum extent possible under the law.
|