@buoy-gg/shared-ui 2.1.2 → 2.1.3
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/clipboard/clipboard-impl.js +1 -1
- package/lib/commonjs/hooks/safe-area-impl.js +1 -1
- package/lib/commonjs/index.js +99 -59
- package/lib/commonjs/storage/devToolsStorageKeys.js +2 -0
- package/lib/commonjs/stores/BaseEventStore.js +257 -0
- package/lib/commonjs/stores/index.js +12 -0
- package/lib/commonjs/utils/index.js +27 -1
- package/lib/commonjs/utils/subscribable.js +113 -0
- package/lib/commonjs/utils/subscriberCountNotifier.js +72 -0
- package/lib/module/clipboard/clipboard-impl.js +1 -1
- package/lib/module/hooks/safe-area-impl.js +1 -1
- package/lib/module/index.js +8 -1
- package/lib/module/storage/devToolsStorageKeys.js +2 -0
- package/lib/module/stores/BaseEventStore.js +253 -0
- package/lib/module/stores/index.js +7 -0
- package/lib/module/utils/index.js +3 -1
- package/lib/module/utils/subscribable.js +108 -0
- package/lib/module/utils/subscriberCountNotifier.js +66 -0
- package/lib/typescript/commonjs/clipboard/clipboard-impl.d.ts +1 -1
- package/lib/typescript/commonjs/hooks/safe-area-impl.d.ts +1 -1
- package/lib/typescript/commonjs/index.d.ts +2 -1
- package/lib/typescript/commonjs/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/storage/devToolsStorageKeys.d.ts +2 -0
- package/lib/typescript/commonjs/storage/devToolsStorageKeys.d.ts.map +1 -1
- package/lib/typescript/commonjs/stores/BaseEventStore.d.ts +145 -0
- package/lib/typescript/commonjs/stores/BaseEventStore.d.ts.map +1 -0
- package/lib/typescript/commonjs/stores/index.d.ts +5 -0
- package/lib/typescript/commonjs/stores/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/index.d.ts +2 -0
- package/lib/typescript/commonjs/utils/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/utils/subscribable.d.ts +78 -0
- package/lib/typescript/commonjs/utils/subscribable.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/subscriberCountNotifier.d.ts +47 -0
- package/lib/typescript/commonjs/utils/subscriberCountNotifier.d.ts.map +1 -0
- package/lib/typescript/module/clipboard/clipboard-impl.d.ts +1 -1
- package/lib/typescript/module/hooks/safe-area-impl.d.ts +1 -1
- package/lib/typescript/module/index.d.ts +2 -1
- package/lib/typescript/module/index.d.ts.map +1 -1
- package/lib/typescript/module/storage/devToolsStorageKeys.d.ts +2 -0
- package/lib/typescript/module/storage/devToolsStorageKeys.d.ts.map +1 -1
- package/lib/typescript/module/stores/BaseEventStore.d.ts +145 -0
- package/lib/typescript/module/stores/BaseEventStore.d.ts.map +1 -0
- package/lib/typescript/module/stores/index.d.ts +5 -0
- package/lib/typescript/module/stores/index.d.ts.map +1 -0
- package/lib/typescript/module/utils/index.d.ts +2 -0
- package/lib/typescript/module/utils/index.d.ts.map +1 -1
- package/lib/typescript/module/utils/subscribable.d.ts +78 -0
- package/lib/typescript/module/utils/subscribable.d.ts.map +1 -0
- package/lib/typescript/module/utils/subscriberCountNotifier.d.ts +47 -0
- package/lib/typescript/module/utils/subscriberCountNotifier.d.ts.map +1 -0
- package/package.json +3 -3
|
@@ -7,7 +7,7 @@ exports.isClipboardAvailable = exports.clipboardType = exports.clipboardFunction
|
|
|
7
7
|
/**
|
|
8
8
|
* Auto-generated clipboard implementation
|
|
9
9
|
* Detected: none
|
|
10
|
-
* Generated at: 2026-
|
|
10
|
+
* Generated at: 2026-02-03T00:33:15.804Z
|
|
11
11
|
*
|
|
12
12
|
* DO NOT EDIT - This file is generated by scripts/detect-clipboard.js
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@ exports.useNativeSafeAreaInsets = exports.safeAreaType = exports.hasSafeAreaPack
|
|
|
7
7
|
/**
|
|
8
8
|
* Auto-generated safe area implementation
|
|
9
9
|
* Detected: none
|
|
10
|
-
* Generated at: 2026-
|
|
10
|
+
* Generated at: 2026-02-03T00:33:15.829Z
|
|
11
11
|
*
|
|
12
12
|
* DO NOT EDIT - This file is generated by scripts/detect-safe-area.js
|
|
13
13
|
*
|
package/lib/commonjs/index.js
CHANGED
|
@@ -26,6 +26,10 @@ var _exportNames = {
|
|
|
26
26
|
formatPath: true,
|
|
27
27
|
loadOptionalModule: true,
|
|
28
28
|
getCachedOptionalModule: true,
|
|
29
|
+
Subscribable: true,
|
|
30
|
+
subscriberCountNotifier: true,
|
|
31
|
+
subscribeToSubscriberCountChanges: true,
|
|
32
|
+
notifySubscriberCountChange: true,
|
|
29
33
|
isPlainObjectUtil: true,
|
|
30
34
|
useSafeAreaInsets: true,
|
|
31
35
|
useFilterManager: true,
|
|
@@ -75,13 +79,13 @@ Object.defineProperty(exports, "EnvironmentSelectorInline", {
|
|
|
75
79
|
Object.defineProperty(exports, "FeatureGate", {
|
|
76
80
|
enumerable: true,
|
|
77
81
|
get: function () {
|
|
78
|
-
return
|
|
82
|
+
return _index12.FeatureGate;
|
|
79
83
|
}
|
|
80
84
|
});
|
|
81
85
|
Object.defineProperty(exports, "HintsProvider", {
|
|
82
86
|
enumerable: true,
|
|
83
87
|
get: function () {
|
|
84
|
-
return
|
|
88
|
+
return _index10.HintsProvider;
|
|
85
89
|
}
|
|
86
90
|
});
|
|
87
91
|
Object.defineProperty(exports, "JsModal", {
|
|
@@ -93,37 +97,43 @@ Object.defineProperty(exports, "JsModal", {
|
|
|
93
97
|
Object.defineProperty(exports, "LicenseEntryModal", {
|
|
94
98
|
enumerable: true,
|
|
95
99
|
get: function () {
|
|
96
|
-
return
|
|
100
|
+
return _index12.LicenseEntryModal;
|
|
97
101
|
}
|
|
98
102
|
});
|
|
99
103
|
Object.defineProperty(exports, "ProBadge", {
|
|
100
104
|
enumerable: true,
|
|
101
105
|
get: function () {
|
|
102
|
-
return
|
|
106
|
+
return _index12.ProBadge;
|
|
103
107
|
}
|
|
104
108
|
});
|
|
105
109
|
Object.defineProperty(exports, "ProFeatureBanner", {
|
|
106
110
|
enumerable: true,
|
|
107
111
|
get: function () {
|
|
108
|
-
return
|
|
112
|
+
return _index12.ProFeatureBanner;
|
|
109
113
|
}
|
|
110
114
|
});
|
|
111
115
|
Object.defineProperty(exports, "ProUpgradeModal", {
|
|
112
116
|
enumerable: true,
|
|
113
117
|
get: function () {
|
|
114
|
-
return
|
|
118
|
+
return _index12.ProUpgradeModal;
|
|
119
|
+
}
|
|
120
|
+
});
|
|
121
|
+
Object.defineProperty(exports, "Subscribable", {
|
|
122
|
+
enumerable: true,
|
|
123
|
+
get: function () {
|
|
124
|
+
return _index3.Subscribable;
|
|
115
125
|
}
|
|
116
126
|
});
|
|
117
127
|
Object.defineProperty(exports, "UpgradeModal", {
|
|
118
128
|
enumerable: true,
|
|
119
129
|
get: function () {
|
|
120
|
-
return
|
|
130
|
+
return _index12.UpgradeModal;
|
|
121
131
|
}
|
|
122
132
|
});
|
|
123
133
|
Object.defineProperty(exports, "UpgradePrompt", {
|
|
124
134
|
enumerable: true,
|
|
125
135
|
get: function () {
|
|
126
|
-
return
|
|
136
|
+
return _index12.UpgradePrompt;
|
|
127
137
|
}
|
|
128
138
|
});
|
|
129
139
|
Object.defineProperty(exports, "buoyColors", {
|
|
@@ -141,25 +151,25 @@ Object.defineProperty(exports, "dialColors", {
|
|
|
141
151
|
Object.defineProperty(exports, "displayValue", {
|
|
142
152
|
enumerable: true,
|
|
143
153
|
get: function () {
|
|
144
|
-
return
|
|
154
|
+
return _index3.displayValue;
|
|
145
155
|
}
|
|
146
156
|
});
|
|
147
157
|
Object.defineProperty(exports, "flattenObject", {
|
|
148
158
|
enumerable: true,
|
|
149
159
|
get: function () {
|
|
150
|
-
return
|
|
160
|
+
return _index3.flattenObject;
|
|
151
161
|
}
|
|
152
162
|
});
|
|
153
163
|
Object.defineProperty(exports, "formatPath", {
|
|
154
164
|
enumerable: true,
|
|
155
165
|
get: function () {
|
|
156
|
-
return
|
|
166
|
+
return _index3.formatPath;
|
|
157
167
|
}
|
|
158
168
|
});
|
|
159
169
|
Object.defineProperty(exports, "formatValue", {
|
|
160
170
|
enumerable: true,
|
|
161
171
|
get: function () {
|
|
162
|
-
return
|
|
172
|
+
return _index3.formatValue;
|
|
163
173
|
}
|
|
164
174
|
});
|
|
165
175
|
Object.defineProperty(exports, "gameUIColors", {
|
|
@@ -171,73 +181,73 @@ Object.defineProperty(exports, "gameUIColors", {
|
|
|
171
181
|
Object.defineProperty(exports, "getCachedOptionalModule", {
|
|
172
182
|
enumerable: true,
|
|
173
183
|
get: function () {
|
|
174
|
-
return
|
|
184
|
+
return _index3.getCachedOptionalModule;
|
|
175
185
|
}
|
|
176
186
|
});
|
|
177
187
|
Object.defineProperty(exports, "getConstructorName", {
|
|
178
188
|
enumerable: true,
|
|
179
189
|
get: function () {
|
|
180
|
-
return
|
|
190
|
+
return _index3.getConstructorName;
|
|
181
191
|
}
|
|
182
192
|
});
|
|
183
193
|
Object.defineProperty(exports, "getDeviceInfo", {
|
|
184
194
|
enumerable: true,
|
|
185
195
|
get: function () {
|
|
186
|
-
return
|
|
196
|
+
return _index1.getDeviceInfo;
|
|
187
197
|
}
|
|
188
198
|
});
|
|
189
199
|
Object.defineProperty(exports, "getSafeAreaInsets", {
|
|
190
200
|
enumerable: true,
|
|
191
201
|
get: function () {
|
|
192
|
-
return
|
|
202
|
+
return _index3.getSafeAreaInsets;
|
|
193
203
|
}
|
|
194
204
|
});
|
|
195
205
|
Object.defineProperty(exports, "getStorageBackendType", {
|
|
196
206
|
enumerable: true,
|
|
197
207
|
get: function () {
|
|
198
|
-
return
|
|
208
|
+
return _index3.getStorageBackendType;
|
|
199
209
|
}
|
|
200
210
|
});
|
|
201
211
|
Object.defineProperty(exports, "getTypeColor", {
|
|
202
212
|
enumerable: true,
|
|
203
213
|
get: function () {
|
|
204
|
-
return
|
|
214
|
+
return _index3.getTypeColor;
|
|
205
215
|
}
|
|
206
216
|
});
|
|
207
217
|
Object.defineProperty(exports, "getUseIsPro", {
|
|
208
218
|
enumerable: true,
|
|
209
219
|
get: function () {
|
|
210
|
-
return
|
|
220
|
+
return _index12.getUseIsPro;
|
|
211
221
|
}
|
|
212
222
|
});
|
|
213
223
|
Object.defineProperty(exports, "getUseLicense", {
|
|
214
224
|
enumerable: true,
|
|
215
225
|
get: function () {
|
|
216
|
-
return
|
|
226
|
+
return _index12.getUseLicense;
|
|
217
227
|
}
|
|
218
228
|
});
|
|
219
229
|
Object.defineProperty(exports, "getValueSize", {
|
|
220
230
|
enumerable: true,
|
|
221
231
|
get: function () {
|
|
222
|
-
return
|
|
232
|
+
return _index3.getValueSize;
|
|
223
233
|
}
|
|
224
234
|
});
|
|
225
235
|
Object.defineProperty(exports, "getValueType", {
|
|
226
236
|
enumerable: true,
|
|
227
237
|
get: function () {
|
|
228
|
-
return
|
|
238
|
+
return _index3.getValueType;
|
|
229
239
|
}
|
|
230
240
|
});
|
|
231
241
|
Object.defineProperty(exports, "isEmpty", {
|
|
232
242
|
enumerable: true,
|
|
233
243
|
get: function () {
|
|
234
|
-
return
|
|
244
|
+
return _index3.isEmpty;
|
|
235
245
|
}
|
|
236
246
|
});
|
|
237
247
|
Object.defineProperty(exports, "isJsonSerializable", {
|
|
238
248
|
enumerable: true,
|
|
239
249
|
get: function () {
|
|
240
|
-
return
|
|
250
|
+
return _index3.isJsonSerializable;
|
|
241
251
|
}
|
|
242
252
|
});
|
|
243
253
|
Object.defineProperty(exports, "isPlainObjectUtil", {
|
|
@@ -249,31 +259,31 @@ Object.defineProperty(exports, "isPlainObjectUtil", {
|
|
|
249
259
|
Object.defineProperty(exports, "isPrimitive", {
|
|
250
260
|
enumerable: true,
|
|
251
261
|
get: function () {
|
|
252
|
-
return
|
|
262
|
+
return _index3.isPrimitive;
|
|
253
263
|
}
|
|
254
264
|
});
|
|
255
265
|
Object.defineProperty(exports, "isUsingPersistentStorage", {
|
|
256
266
|
enumerable: true,
|
|
257
267
|
get: function () {
|
|
258
|
-
return
|
|
268
|
+
return _index3.isUsingPersistentStorage;
|
|
259
269
|
}
|
|
260
270
|
});
|
|
261
271
|
Object.defineProperty(exports, "isValidJson", {
|
|
262
272
|
enumerable: true,
|
|
263
273
|
get: function () {
|
|
264
|
-
return
|
|
274
|
+
return _index3.isValidJson;
|
|
265
275
|
}
|
|
266
276
|
});
|
|
267
277
|
Object.defineProperty(exports, "loadOptionalModule", {
|
|
268
278
|
enumerable: true,
|
|
269
279
|
get: function () {
|
|
270
|
-
return
|
|
280
|
+
return _index3.loadOptionalModule;
|
|
271
281
|
}
|
|
272
282
|
});
|
|
273
283
|
Object.defineProperty(exports, "logDeviceInfo", {
|
|
274
284
|
enumerable: true,
|
|
275
285
|
get: function () {
|
|
276
|
-
return
|
|
286
|
+
return _index1.logDeviceInfo;
|
|
277
287
|
}
|
|
278
288
|
});
|
|
279
289
|
Object.defineProperty(exports, "macOSColors", {
|
|
@@ -282,70 +292,88 @@ Object.defineProperty(exports, "macOSColors", {
|
|
|
282
292
|
return _macOSDesignSystemColors.macOSColors;
|
|
283
293
|
}
|
|
284
294
|
});
|
|
295
|
+
Object.defineProperty(exports, "notifySubscriberCountChange", {
|
|
296
|
+
enumerable: true,
|
|
297
|
+
get: function () {
|
|
298
|
+
return _index3.notifySubscriberCountChange;
|
|
299
|
+
}
|
|
300
|
+
});
|
|
285
301
|
Object.defineProperty(exports, "parseDisplayValue", {
|
|
286
302
|
enumerable: true,
|
|
287
303
|
get: function () {
|
|
288
|
-
return
|
|
304
|
+
return _index3.parseDisplayValue;
|
|
289
305
|
}
|
|
290
306
|
});
|
|
291
307
|
Object.defineProperty(exports, "parseValue", {
|
|
292
308
|
enumerable: true,
|
|
293
309
|
get: function () {
|
|
294
|
-
return
|
|
310
|
+
return _index3.parseValue;
|
|
295
311
|
}
|
|
296
312
|
});
|
|
297
313
|
Object.defineProperty(exports, "persistentStorage", {
|
|
298
314
|
enumerable: true,
|
|
299
315
|
get: function () {
|
|
300
|
-
return
|
|
316
|
+
return _index3.persistentStorage;
|
|
301
317
|
}
|
|
302
318
|
});
|
|
303
319
|
Object.defineProperty(exports, "safeStringify", {
|
|
304
320
|
enumerable: true,
|
|
305
321
|
get: function () {
|
|
306
|
-
return
|
|
322
|
+
return _index3.safeStringify;
|
|
323
|
+
}
|
|
324
|
+
});
|
|
325
|
+
Object.defineProperty(exports, "subscribeToSubscriberCountChanges", {
|
|
326
|
+
enumerable: true,
|
|
327
|
+
get: function () {
|
|
328
|
+
return _index3.subscribeToSubscriberCountChanges;
|
|
329
|
+
}
|
|
330
|
+
});
|
|
331
|
+
Object.defineProperty(exports, "subscriberCountNotifier", {
|
|
332
|
+
enumerable: true,
|
|
333
|
+
get: function () {
|
|
334
|
+
return _index3.subscriberCountNotifier;
|
|
307
335
|
}
|
|
308
336
|
});
|
|
309
337
|
Object.defineProperty(exports, "truncateText", {
|
|
310
338
|
enumerable: true,
|
|
311
339
|
get: function () {
|
|
312
|
-
return
|
|
340
|
+
return _index3.truncateText;
|
|
313
341
|
}
|
|
314
342
|
});
|
|
315
343
|
Object.defineProperty(exports, "useDeviceInfo", {
|
|
316
344
|
enumerable: true,
|
|
317
345
|
get: function () {
|
|
318
|
-
return
|
|
346
|
+
return _index1.useDeviceInfo;
|
|
319
347
|
}
|
|
320
348
|
});
|
|
321
349
|
Object.defineProperty(exports, "useFeatureGate", {
|
|
322
350
|
enumerable: true,
|
|
323
351
|
get: function () {
|
|
324
|
-
return
|
|
352
|
+
return _index12.useFeatureGate;
|
|
325
353
|
}
|
|
326
354
|
});
|
|
327
355
|
Object.defineProperty(exports, "useFilterManager", {
|
|
328
356
|
enumerable: true,
|
|
329
357
|
get: function () {
|
|
330
|
-
return
|
|
358
|
+
return _index1.useFilterManager;
|
|
331
359
|
}
|
|
332
360
|
});
|
|
333
361
|
Object.defineProperty(exports, "useHintsContext", {
|
|
334
362
|
enumerable: true,
|
|
335
363
|
get: function () {
|
|
336
|
-
return
|
|
364
|
+
return _index10.useHintsContext;
|
|
337
365
|
}
|
|
338
366
|
});
|
|
339
367
|
Object.defineProperty(exports, "useHintsDisabled", {
|
|
340
368
|
enumerable: true,
|
|
341
369
|
get: function () {
|
|
342
|
-
return
|
|
370
|
+
return _index10.useHintsDisabled;
|
|
343
371
|
}
|
|
344
372
|
});
|
|
345
373
|
Object.defineProperty(exports, "useSafeAreaInsets", {
|
|
346
374
|
enumerable: true,
|
|
347
375
|
get: function () {
|
|
348
|
-
return
|
|
376
|
+
return _index1.useSafeAreaInsets;
|
|
349
377
|
}
|
|
350
378
|
});
|
|
351
379
|
var _index = require("./ui/index.js");
|
|
@@ -360,20 +388,20 @@ Object.keys(_index).forEach(function (key) {
|
|
|
360
388
|
}
|
|
361
389
|
});
|
|
362
390
|
});
|
|
363
|
-
var _index2 = require("./
|
|
364
|
-
|
|
365
|
-
Object.keys(_index3).forEach(function (key) {
|
|
391
|
+
var _index2 = require("./stores/index.js");
|
|
392
|
+
Object.keys(_index2).forEach(function (key) {
|
|
366
393
|
if (key === "default" || key === "__esModule") return;
|
|
367
394
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
368
|
-
if (key in exports && exports[key] ===
|
|
395
|
+
if (key in exports && exports[key] === _index2[key]) return;
|
|
369
396
|
Object.defineProperty(exports, key, {
|
|
370
397
|
enumerable: true,
|
|
371
398
|
get: function () {
|
|
372
|
-
return
|
|
399
|
+
return _index2[key];
|
|
373
400
|
}
|
|
374
401
|
});
|
|
375
402
|
});
|
|
376
|
-
var
|
|
403
|
+
var _index3 = require("./utils/index.js");
|
|
404
|
+
var _index4 = require("./utils/formatting/index.js");
|
|
377
405
|
Object.keys(_index4).forEach(function (key) {
|
|
378
406
|
if (key === "default" || key === "__esModule") return;
|
|
379
407
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -385,8 +413,7 @@ Object.keys(_index4).forEach(function (key) {
|
|
|
385
413
|
}
|
|
386
414
|
});
|
|
387
415
|
});
|
|
388
|
-
var
|
|
389
|
-
var _index5 = require("./icons/index.js");
|
|
416
|
+
var _index5 = require("./utils/time/index.js");
|
|
390
417
|
Object.keys(_index5).forEach(function (key) {
|
|
391
418
|
if (key === "default" || key === "__esModule") return;
|
|
392
419
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -398,7 +425,8 @@ Object.keys(_index5).forEach(function (key) {
|
|
|
398
425
|
}
|
|
399
426
|
});
|
|
400
427
|
});
|
|
401
|
-
var
|
|
428
|
+
var _typeHelpers = require("./utils/typeHelpers.js");
|
|
429
|
+
var _index6 = require("./icons/index.js");
|
|
402
430
|
Object.keys(_index6).forEach(function (key) {
|
|
403
431
|
if (key === "default" || key === "__esModule") return;
|
|
404
432
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -410,7 +438,7 @@ Object.keys(_index6).forEach(function (key) {
|
|
|
410
438
|
}
|
|
411
439
|
});
|
|
412
440
|
});
|
|
413
|
-
var _index7 = require("./
|
|
441
|
+
var _index7 = require("./clipboard/index.js");
|
|
414
442
|
Object.keys(_index7).forEach(function (key) {
|
|
415
443
|
if (key === "default" || key === "__esModule") return;
|
|
416
444
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -422,7 +450,7 @@ Object.keys(_index7).forEach(function (key) {
|
|
|
422
450
|
}
|
|
423
451
|
});
|
|
424
452
|
});
|
|
425
|
-
var _index8 = require("./
|
|
453
|
+
var _index8 = require("./logger/index.js");
|
|
426
454
|
Object.keys(_index8).forEach(function (key) {
|
|
427
455
|
if (key === "default" || key === "__esModule") return;
|
|
428
456
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -434,7 +462,7 @@ Object.keys(_index8).forEach(function (key) {
|
|
|
434
462
|
}
|
|
435
463
|
});
|
|
436
464
|
});
|
|
437
|
-
var _index9 = require("./
|
|
465
|
+
var _index9 = require("./settings/index.js");
|
|
438
466
|
Object.keys(_index9).forEach(function (key) {
|
|
439
467
|
if (key === "default" || key === "__esModule") return;
|
|
440
468
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -446,24 +474,36 @@ Object.keys(_index9).forEach(function (key) {
|
|
|
446
474
|
}
|
|
447
475
|
});
|
|
448
476
|
});
|
|
449
|
-
var _index0 = require("./
|
|
477
|
+
var _index0 = require("./storage/index.js");
|
|
478
|
+
Object.keys(_index0).forEach(function (key) {
|
|
479
|
+
if (key === "default" || key === "__esModule") return;
|
|
480
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
481
|
+
if (key in exports && exports[key] === _index0[key]) return;
|
|
482
|
+
Object.defineProperty(exports, key, {
|
|
483
|
+
enumerable: true,
|
|
484
|
+
get: function () {
|
|
485
|
+
return _index0[key];
|
|
486
|
+
}
|
|
487
|
+
});
|
|
488
|
+
});
|
|
489
|
+
var _index1 = require("./hooks/index.js");
|
|
450
490
|
var _JsModal = require("./JsModal.js");
|
|
451
491
|
var _gameUIColors = require("./ui/gameUI/constants/gameUIColors.js");
|
|
452
492
|
var _macOSDesignSystemColors = require("./ui/gameUI/constants/macOSDesignSystemColors.js");
|
|
453
493
|
var _EnvironmentIndicator = require("./env/EnvironmentIndicator.js");
|
|
454
494
|
var _EnvironmentSelector = require("./env/EnvironmentSelector.js");
|
|
455
495
|
var _EnvironmentSelectorInline = require("./env/EnvironmentSelectorInline.js");
|
|
456
|
-
var
|
|
457
|
-
var
|
|
458
|
-
Object.keys(
|
|
496
|
+
var _index10 = require("./context/index.js");
|
|
497
|
+
var _index11 = require("./history/index.js");
|
|
498
|
+
Object.keys(_index11).forEach(function (key) {
|
|
459
499
|
if (key === "default" || key === "__esModule") return;
|
|
460
500
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
461
|
-
if (key in exports && exports[key] ===
|
|
501
|
+
if (key in exports && exports[key] === _index11[key]) return;
|
|
462
502
|
Object.defineProperty(exports, key, {
|
|
463
503
|
enumerable: true,
|
|
464
504
|
get: function () {
|
|
465
|
-
return
|
|
505
|
+
return _index11[key];
|
|
466
506
|
}
|
|
467
507
|
});
|
|
468
508
|
});
|
|
469
|
-
var
|
|
509
|
+
var _index12 = require("./license/index.js");
|
|
@@ -171,6 +171,8 @@ const devToolsStorageKeys = exports.devToolsStorageKeys = {
|
|
|
171
171
|
modal: () => `${devToolsStorageKeys.events.root()}_modal`,
|
|
172
172
|
/** Selected badge/source filters */
|
|
173
173
|
enabledSources: () => `${devToolsStorageKeys.events.root()}_enabled_sources`,
|
|
174
|
+
/** Whether event capturing is active */
|
|
175
|
+
isCapturing: () => `${devToolsStorageKeys.events.root()}_is_capturing`,
|
|
174
176
|
/** Copy/export settings */
|
|
175
177
|
copySettings: () => `${devToolsStorageKeys.events.root()}_copy_settings`
|
|
176
178
|
}
|