@buoy-gg/shared-ui 2.1.1 → 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/dataViewer/VirtualizedDataExplorer.js +20 -23
- package/lib/commonjs/hooks/safe-area-impl.js +1 -1
- package/lib/commonjs/index.js +98 -65
- package/lib/commonjs/license/DeviceLimitModal.js +479 -0
- package/lib/commonjs/license/FeatureGate.js +4 -9
- package/lib/commonjs/license/LicenseEntryModal.js +205 -770
- package/lib/commonjs/license/index.js +0 -7
- 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/ui/components/PowerToggleButton.js +73 -0
- package/lib/commonjs/ui/components/index.js +7 -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/JsModal.js +1 -1
- package/lib/module/clipboard/clipboard-impl.js +1 -1
- package/lib/module/dataViewer/VirtualizedDataExplorer.js +20 -23
- package/lib/module/hooks/safe-area-impl.js +1 -1
- package/lib/module/index.js +9 -2
- package/lib/module/license/DeviceLimitModal.js +473 -0
- package/lib/module/license/FeatureGate.js +4 -9
- package/lib/module/license/LicenseEntryModal.js +209 -773
- package/lib/module/license/index.js +0 -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/ui/components/PowerToggleButton.js +69 -0
- package/lib/module/ui/components/index.js +1 -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/JsModal.d.ts.map +1 -1
- package/lib/typescript/commonjs/clipboard/clipboard-impl.d.ts +1 -1
- package/lib/typescript/commonjs/dataViewer/VirtualizedDataExplorer.d.ts.map +1 -1
- package/lib/typescript/commonjs/hooks/safe-area-impl.d.ts +1 -1
- package/lib/typescript/commonjs/index.d.ts +4 -3
- package/lib/typescript/commonjs/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/license/DeviceLimitModal.d.ts +23 -0
- package/lib/typescript/commonjs/license/DeviceLimitModal.d.ts.map +1 -0
- package/lib/typescript/commonjs/license/FeatureGate.d.ts.map +1 -1
- package/lib/typescript/commonjs/license/LicenseEntryModal.d.ts +10 -62
- package/lib/typescript/commonjs/license/LicenseEntryModal.d.ts.map +1 -1
- package/lib/typescript/commonjs/license/index.d.ts +0 -2
- package/lib/typescript/commonjs/license/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/ui/components/PowerToggleButton.d.ts +32 -0
- package/lib/typescript/commonjs/ui/components/PowerToggleButton.d.ts.map +1 -0
- package/lib/typescript/commonjs/ui/components/index.d.ts +2 -0
- package/lib/typescript/commonjs/ui/components/index.d.ts.map +1 -1
- 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/JsModal.d.ts.map +1 -1
- package/lib/typescript/module/clipboard/clipboard-impl.d.ts +1 -1
- package/lib/typescript/module/dataViewer/VirtualizedDataExplorer.d.ts.map +1 -1
- package/lib/typescript/module/hooks/safe-area-impl.d.ts +1 -1
- package/lib/typescript/module/index.d.ts +4 -3
- package/lib/typescript/module/index.d.ts.map +1 -1
- package/lib/typescript/module/license/DeviceLimitModal.d.ts +23 -0
- package/lib/typescript/module/license/DeviceLimitModal.d.ts.map +1 -0
- package/lib/typescript/module/license/FeatureGate.d.ts.map +1 -1
- package/lib/typescript/module/license/LicenseEntryModal.d.ts +10 -62
- package/lib/typescript/module/license/LicenseEntryModal.d.ts.map +1 -1
- package/lib/typescript/module/license/index.d.ts +0 -2
- package/lib/typescript/module/license/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/ui/components/PowerToggleButton.d.ts +32 -0
- package/lib/typescript/module/ui/components/PowerToggleButton.d.ts.map +1 -0
- package/lib/typescript/module/ui/components/index.d.ts +2 -0
- package/lib/typescript/module/ui/components/index.d.ts.map +1 -1
- 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
|
*
|
|
@@ -730,8 +730,7 @@ const VirtualizedItemComponent = ({
|
|
|
730
730
|
data,
|
|
731
731
|
index,
|
|
732
732
|
onSelect,
|
|
733
|
-
isSelected
|
|
734
|
-
disableCopy = false
|
|
733
|
+
isSelected
|
|
735
734
|
}) => {
|
|
736
735
|
const [isPressed, setIsPressed] = (0, _react.useState)(false);
|
|
737
736
|
const [showFullKey, setShowFullKey] = (0, _react.useState)(false);
|
|
@@ -754,9 +753,9 @@ const VirtualizedItemComponent = ({
|
|
|
754
753
|
|
|
755
754
|
// Always show full key for better identification
|
|
756
755
|
const displayKey = item.key;
|
|
757
|
-
return /*#__PURE__*/(0, _jsxRuntime.
|
|
756
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
|
758
757
|
style: [STABLE_STYLES.itemContainer, indentStyle],
|
|
759
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.TouchableOpacity, {
|
|
758
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.TouchableOpacity, {
|
|
760
759
|
"sentry-label": "ignore devtools data explorer item",
|
|
761
760
|
style: [STABLE_STYLES.itemTouchable, isPressed && STABLE_STYLES.itemTouchablePressed, isSelected && STABLE_STYLES.itemSelected, isLongKey && {
|
|
762
761
|
minHeight: LONG_ITEM_HEIGHT,
|
|
@@ -778,21 +777,12 @@ const VirtualizedItemComponent = ({
|
|
|
778
777
|
style: STABLE_STYLES.labelText,
|
|
779
778
|
numberOfLines: 1,
|
|
780
779
|
children: [item.key, ":"]
|
|
781
|
-
}), item.isExpandable ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
children: [item.valueType, " (", item.childCount, " ", item.childCount === 1 ? "item" : "items", ")"]
|
|
788
|
-
}), item.id === "root" && data && /*#__PURE__*/(0, _jsxRuntime.jsx)(_CopyButton.CopyButton, {
|
|
789
|
-
value: data,
|
|
790
|
-
size: 16,
|
|
791
|
-
buttonStyle: {
|
|
792
|
-
marginLeft: 8
|
|
793
|
-
},
|
|
794
|
-
disabled: disableCopy
|
|
795
|
-
})]
|
|
780
|
+
}), item.isExpandable ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Text, {
|
|
781
|
+
style: [STABLE_STYLES.valueText, {
|
|
782
|
+
color: _index.gameUIColors.secondary
|
|
783
|
+
}],
|
|
784
|
+
numberOfLines: 1,
|
|
785
|
+
children: [item.valueType, " (", item.childCount, " ", item.childCount === 1 ? "item" : "items", ")"]
|
|
796
786
|
}) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
|
797
787
|
style: [STABLE_STYLES.valueText, {
|
|
798
788
|
color
|
|
@@ -801,7 +791,14 @@ const VirtualizedItemComponent = ({
|
|
|
801
791
|
children: formatValue(item.value, item.valueType)
|
|
802
792
|
})]
|
|
803
793
|
})]
|
|
804
|
-
})
|
|
794
|
+
}), item.id === "root" && data !== undefined && data !== null ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_CopyButton.CopyButton, {
|
|
795
|
+
value: data,
|
|
796
|
+
size: 16,
|
|
797
|
+
buttonStyle: {
|
|
798
|
+
marginLeft: 8,
|
|
799
|
+
marginRight: 8
|
|
800
|
+
}
|
|
801
|
+
}) : null]
|
|
805
802
|
});
|
|
806
803
|
};
|
|
807
804
|
VirtualizedItemComponent.displayName = "VirtualizedItem";
|
|
@@ -816,7 +813,8 @@ const VirtualizedDataExplorer = ({
|
|
|
816
813
|
maxDepth = 10,
|
|
817
814
|
rawMode = false,
|
|
818
815
|
initialExpanded = false,
|
|
819
|
-
disableCopy
|
|
816
|
+
// disableCopy is accepted for API compatibility but CopyButton handles Pro gating internally
|
|
817
|
+
disableCopy: _disableCopy = false
|
|
820
818
|
}) => {
|
|
821
819
|
const [isExpanded, setIsExpanded] = (0, _react.useState)(rawMode); // Auto-expand in raw mode
|
|
822
820
|
const {
|
|
@@ -882,8 +880,7 @@ const VirtualizedDataExplorer = ({
|
|
|
882
880
|
onToggleExpanded: toggleExpanded,
|
|
883
881
|
data: data,
|
|
884
882
|
onSelect: setSelectedIndex,
|
|
885
|
-
isSelected: selectedIndex === index
|
|
886
|
-
disableCopy: disableCopy
|
|
883
|
+
isSelected: selectedIndex === index
|
|
887
884
|
});
|
|
888
885
|
|
|
889
886
|
// Uniform row height for crisp guide geometry
|
|
@@ -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,
|
|
@@ -49,7 +53,6 @@ var _exportNames = {
|
|
|
49
53
|
ProFeatureBanner: true,
|
|
50
54
|
UpgradeModal: true,
|
|
51
55
|
LicenseEntryModal: true,
|
|
52
|
-
ManageDevicesModal: true,
|
|
53
56
|
ProBadge: true,
|
|
54
57
|
ProUpgradeModal: true,
|
|
55
58
|
getUseIsPro: true,
|
|
@@ -76,13 +79,13 @@ Object.defineProperty(exports, "EnvironmentSelectorInline", {
|
|
|
76
79
|
Object.defineProperty(exports, "FeatureGate", {
|
|
77
80
|
enumerable: true,
|
|
78
81
|
get: function () {
|
|
79
|
-
return
|
|
82
|
+
return _index12.FeatureGate;
|
|
80
83
|
}
|
|
81
84
|
});
|
|
82
85
|
Object.defineProperty(exports, "HintsProvider", {
|
|
83
86
|
enumerable: true,
|
|
84
87
|
get: function () {
|
|
85
|
-
return
|
|
88
|
+
return _index10.HintsProvider;
|
|
86
89
|
}
|
|
87
90
|
});
|
|
88
91
|
Object.defineProperty(exports, "JsModal", {
|
|
@@ -94,43 +97,43 @@ Object.defineProperty(exports, "JsModal", {
|
|
|
94
97
|
Object.defineProperty(exports, "LicenseEntryModal", {
|
|
95
98
|
enumerable: true,
|
|
96
99
|
get: function () {
|
|
97
|
-
return
|
|
100
|
+
return _index12.LicenseEntryModal;
|
|
98
101
|
}
|
|
99
102
|
});
|
|
100
|
-
Object.defineProperty(exports, "
|
|
103
|
+
Object.defineProperty(exports, "ProBadge", {
|
|
101
104
|
enumerable: true,
|
|
102
105
|
get: function () {
|
|
103
|
-
return
|
|
106
|
+
return _index12.ProBadge;
|
|
104
107
|
}
|
|
105
108
|
});
|
|
106
|
-
Object.defineProperty(exports, "
|
|
109
|
+
Object.defineProperty(exports, "ProFeatureBanner", {
|
|
107
110
|
enumerable: true,
|
|
108
111
|
get: function () {
|
|
109
|
-
return
|
|
112
|
+
return _index12.ProFeatureBanner;
|
|
110
113
|
}
|
|
111
114
|
});
|
|
112
|
-
Object.defineProperty(exports, "
|
|
115
|
+
Object.defineProperty(exports, "ProUpgradeModal", {
|
|
113
116
|
enumerable: true,
|
|
114
117
|
get: function () {
|
|
115
|
-
return
|
|
118
|
+
return _index12.ProUpgradeModal;
|
|
116
119
|
}
|
|
117
120
|
});
|
|
118
|
-
Object.defineProperty(exports, "
|
|
121
|
+
Object.defineProperty(exports, "Subscribable", {
|
|
119
122
|
enumerable: true,
|
|
120
123
|
get: function () {
|
|
121
|
-
return
|
|
124
|
+
return _index3.Subscribable;
|
|
122
125
|
}
|
|
123
126
|
});
|
|
124
127
|
Object.defineProperty(exports, "UpgradeModal", {
|
|
125
128
|
enumerable: true,
|
|
126
129
|
get: function () {
|
|
127
|
-
return
|
|
130
|
+
return _index12.UpgradeModal;
|
|
128
131
|
}
|
|
129
132
|
});
|
|
130
133
|
Object.defineProperty(exports, "UpgradePrompt", {
|
|
131
134
|
enumerable: true,
|
|
132
135
|
get: function () {
|
|
133
|
-
return
|
|
136
|
+
return _index12.UpgradePrompt;
|
|
134
137
|
}
|
|
135
138
|
});
|
|
136
139
|
Object.defineProperty(exports, "buoyColors", {
|
|
@@ -148,25 +151,25 @@ Object.defineProperty(exports, "dialColors", {
|
|
|
148
151
|
Object.defineProperty(exports, "displayValue", {
|
|
149
152
|
enumerable: true,
|
|
150
153
|
get: function () {
|
|
151
|
-
return
|
|
154
|
+
return _index3.displayValue;
|
|
152
155
|
}
|
|
153
156
|
});
|
|
154
157
|
Object.defineProperty(exports, "flattenObject", {
|
|
155
158
|
enumerable: true,
|
|
156
159
|
get: function () {
|
|
157
|
-
return
|
|
160
|
+
return _index3.flattenObject;
|
|
158
161
|
}
|
|
159
162
|
});
|
|
160
163
|
Object.defineProperty(exports, "formatPath", {
|
|
161
164
|
enumerable: true,
|
|
162
165
|
get: function () {
|
|
163
|
-
return
|
|
166
|
+
return _index3.formatPath;
|
|
164
167
|
}
|
|
165
168
|
});
|
|
166
169
|
Object.defineProperty(exports, "formatValue", {
|
|
167
170
|
enumerable: true,
|
|
168
171
|
get: function () {
|
|
169
|
-
return
|
|
172
|
+
return _index3.formatValue;
|
|
170
173
|
}
|
|
171
174
|
});
|
|
172
175
|
Object.defineProperty(exports, "gameUIColors", {
|
|
@@ -178,73 +181,73 @@ Object.defineProperty(exports, "gameUIColors", {
|
|
|
178
181
|
Object.defineProperty(exports, "getCachedOptionalModule", {
|
|
179
182
|
enumerable: true,
|
|
180
183
|
get: function () {
|
|
181
|
-
return
|
|
184
|
+
return _index3.getCachedOptionalModule;
|
|
182
185
|
}
|
|
183
186
|
});
|
|
184
187
|
Object.defineProperty(exports, "getConstructorName", {
|
|
185
188
|
enumerable: true,
|
|
186
189
|
get: function () {
|
|
187
|
-
return
|
|
190
|
+
return _index3.getConstructorName;
|
|
188
191
|
}
|
|
189
192
|
});
|
|
190
193
|
Object.defineProperty(exports, "getDeviceInfo", {
|
|
191
194
|
enumerable: true,
|
|
192
195
|
get: function () {
|
|
193
|
-
return
|
|
196
|
+
return _index1.getDeviceInfo;
|
|
194
197
|
}
|
|
195
198
|
});
|
|
196
199
|
Object.defineProperty(exports, "getSafeAreaInsets", {
|
|
197
200
|
enumerable: true,
|
|
198
201
|
get: function () {
|
|
199
|
-
return
|
|
202
|
+
return _index3.getSafeAreaInsets;
|
|
200
203
|
}
|
|
201
204
|
});
|
|
202
205
|
Object.defineProperty(exports, "getStorageBackendType", {
|
|
203
206
|
enumerable: true,
|
|
204
207
|
get: function () {
|
|
205
|
-
return
|
|
208
|
+
return _index3.getStorageBackendType;
|
|
206
209
|
}
|
|
207
210
|
});
|
|
208
211
|
Object.defineProperty(exports, "getTypeColor", {
|
|
209
212
|
enumerable: true,
|
|
210
213
|
get: function () {
|
|
211
|
-
return
|
|
214
|
+
return _index3.getTypeColor;
|
|
212
215
|
}
|
|
213
216
|
});
|
|
214
217
|
Object.defineProperty(exports, "getUseIsPro", {
|
|
215
218
|
enumerable: true,
|
|
216
219
|
get: function () {
|
|
217
|
-
return
|
|
220
|
+
return _index12.getUseIsPro;
|
|
218
221
|
}
|
|
219
222
|
});
|
|
220
223
|
Object.defineProperty(exports, "getUseLicense", {
|
|
221
224
|
enumerable: true,
|
|
222
225
|
get: function () {
|
|
223
|
-
return
|
|
226
|
+
return _index12.getUseLicense;
|
|
224
227
|
}
|
|
225
228
|
});
|
|
226
229
|
Object.defineProperty(exports, "getValueSize", {
|
|
227
230
|
enumerable: true,
|
|
228
231
|
get: function () {
|
|
229
|
-
return
|
|
232
|
+
return _index3.getValueSize;
|
|
230
233
|
}
|
|
231
234
|
});
|
|
232
235
|
Object.defineProperty(exports, "getValueType", {
|
|
233
236
|
enumerable: true,
|
|
234
237
|
get: function () {
|
|
235
|
-
return
|
|
238
|
+
return _index3.getValueType;
|
|
236
239
|
}
|
|
237
240
|
});
|
|
238
241
|
Object.defineProperty(exports, "isEmpty", {
|
|
239
242
|
enumerable: true,
|
|
240
243
|
get: function () {
|
|
241
|
-
return
|
|
244
|
+
return _index3.isEmpty;
|
|
242
245
|
}
|
|
243
246
|
});
|
|
244
247
|
Object.defineProperty(exports, "isJsonSerializable", {
|
|
245
248
|
enumerable: true,
|
|
246
249
|
get: function () {
|
|
247
|
-
return
|
|
250
|
+
return _index3.isJsonSerializable;
|
|
248
251
|
}
|
|
249
252
|
});
|
|
250
253
|
Object.defineProperty(exports, "isPlainObjectUtil", {
|
|
@@ -256,31 +259,31 @@ Object.defineProperty(exports, "isPlainObjectUtil", {
|
|
|
256
259
|
Object.defineProperty(exports, "isPrimitive", {
|
|
257
260
|
enumerable: true,
|
|
258
261
|
get: function () {
|
|
259
|
-
return
|
|
262
|
+
return _index3.isPrimitive;
|
|
260
263
|
}
|
|
261
264
|
});
|
|
262
265
|
Object.defineProperty(exports, "isUsingPersistentStorage", {
|
|
263
266
|
enumerable: true,
|
|
264
267
|
get: function () {
|
|
265
|
-
return
|
|
268
|
+
return _index3.isUsingPersistentStorage;
|
|
266
269
|
}
|
|
267
270
|
});
|
|
268
271
|
Object.defineProperty(exports, "isValidJson", {
|
|
269
272
|
enumerable: true,
|
|
270
273
|
get: function () {
|
|
271
|
-
return
|
|
274
|
+
return _index3.isValidJson;
|
|
272
275
|
}
|
|
273
276
|
});
|
|
274
277
|
Object.defineProperty(exports, "loadOptionalModule", {
|
|
275
278
|
enumerable: true,
|
|
276
279
|
get: function () {
|
|
277
|
-
return
|
|
280
|
+
return _index3.loadOptionalModule;
|
|
278
281
|
}
|
|
279
282
|
});
|
|
280
283
|
Object.defineProperty(exports, "logDeviceInfo", {
|
|
281
284
|
enumerable: true,
|
|
282
285
|
get: function () {
|
|
283
|
-
return
|
|
286
|
+
return _index1.logDeviceInfo;
|
|
284
287
|
}
|
|
285
288
|
});
|
|
286
289
|
Object.defineProperty(exports, "macOSColors", {
|
|
@@ -289,70 +292,88 @@ Object.defineProperty(exports, "macOSColors", {
|
|
|
289
292
|
return _macOSDesignSystemColors.macOSColors;
|
|
290
293
|
}
|
|
291
294
|
});
|
|
295
|
+
Object.defineProperty(exports, "notifySubscriberCountChange", {
|
|
296
|
+
enumerable: true,
|
|
297
|
+
get: function () {
|
|
298
|
+
return _index3.notifySubscriberCountChange;
|
|
299
|
+
}
|
|
300
|
+
});
|
|
292
301
|
Object.defineProperty(exports, "parseDisplayValue", {
|
|
293
302
|
enumerable: true,
|
|
294
303
|
get: function () {
|
|
295
|
-
return
|
|
304
|
+
return _index3.parseDisplayValue;
|
|
296
305
|
}
|
|
297
306
|
});
|
|
298
307
|
Object.defineProperty(exports, "parseValue", {
|
|
299
308
|
enumerable: true,
|
|
300
309
|
get: function () {
|
|
301
|
-
return
|
|
310
|
+
return _index3.parseValue;
|
|
302
311
|
}
|
|
303
312
|
});
|
|
304
313
|
Object.defineProperty(exports, "persistentStorage", {
|
|
305
314
|
enumerable: true,
|
|
306
315
|
get: function () {
|
|
307
|
-
return
|
|
316
|
+
return _index3.persistentStorage;
|
|
308
317
|
}
|
|
309
318
|
});
|
|
310
319
|
Object.defineProperty(exports, "safeStringify", {
|
|
311
320
|
enumerable: true,
|
|
312
321
|
get: function () {
|
|
313
|
-
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;
|
|
314
335
|
}
|
|
315
336
|
});
|
|
316
337
|
Object.defineProperty(exports, "truncateText", {
|
|
317
338
|
enumerable: true,
|
|
318
339
|
get: function () {
|
|
319
|
-
return
|
|
340
|
+
return _index3.truncateText;
|
|
320
341
|
}
|
|
321
342
|
});
|
|
322
343
|
Object.defineProperty(exports, "useDeviceInfo", {
|
|
323
344
|
enumerable: true,
|
|
324
345
|
get: function () {
|
|
325
|
-
return
|
|
346
|
+
return _index1.useDeviceInfo;
|
|
326
347
|
}
|
|
327
348
|
});
|
|
328
349
|
Object.defineProperty(exports, "useFeatureGate", {
|
|
329
350
|
enumerable: true,
|
|
330
351
|
get: function () {
|
|
331
|
-
return
|
|
352
|
+
return _index12.useFeatureGate;
|
|
332
353
|
}
|
|
333
354
|
});
|
|
334
355
|
Object.defineProperty(exports, "useFilterManager", {
|
|
335
356
|
enumerable: true,
|
|
336
357
|
get: function () {
|
|
337
|
-
return
|
|
358
|
+
return _index1.useFilterManager;
|
|
338
359
|
}
|
|
339
360
|
});
|
|
340
361
|
Object.defineProperty(exports, "useHintsContext", {
|
|
341
362
|
enumerable: true,
|
|
342
363
|
get: function () {
|
|
343
|
-
return
|
|
364
|
+
return _index10.useHintsContext;
|
|
344
365
|
}
|
|
345
366
|
});
|
|
346
367
|
Object.defineProperty(exports, "useHintsDisabled", {
|
|
347
368
|
enumerable: true,
|
|
348
369
|
get: function () {
|
|
349
|
-
return
|
|
370
|
+
return _index10.useHintsDisabled;
|
|
350
371
|
}
|
|
351
372
|
});
|
|
352
373
|
Object.defineProperty(exports, "useSafeAreaInsets", {
|
|
353
374
|
enumerable: true,
|
|
354
375
|
get: function () {
|
|
355
|
-
return
|
|
376
|
+
return _index1.useSafeAreaInsets;
|
|
356
377
|
}
|
|
357
378
|
});
|
|
358
379
|
var _index = require("./ui/index.js");
|
|
@@ -367,20 +388,20 @@ Object.keys(_index).forEach(function (key) {
|
|
|
367
388
|
}
|
|
368
389
|
});
|
|
369
390
|
});
|
|
370
|
-
var _index2 = require("./
|
|
371
|
-
|
|
372
|
-
Object.keys(_index3).forEach(function (key) {
|
|
391
|
+
var _index2 = require("./stores/index.js");
|
|
392
|
+
Object.keys(_index2).forEach(function (key) {
|
|
373
393
|
if (key === "default" || key === "__esModule") return;
|
|
374
394
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
375
|
-
if (key in exports && exports[key] ===
|
|
395
|
+
if (key in exports && exports[key] === _index2[key]) return;
|
|
376
396
|
Object.defineProperty(exports, key, {
|
|
377
397
|
enumerable: true,
|
|
378
398
|
get: function () {
|
|
379
|
-
return
|
|
399
|
+
return _index2[key];
|
|
380
400
|
}
|
|
381
401
|
});
|
|
382
402
|
});
|
|
383
|
-
var
|
|
403
|
+
var _index3 = require("./utils/index.js");
|
|
404
|
+
var _index4 = require("./utils/formatting/index.js");
|
|
384
405
|
Object.keys(_index4).forEach(function (key) {
|
|
385
406
|
if (key === "default" || key === "__esModule") return;
|
|
386
407
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -392,8 +413,7 @@ Object.keys(_index4).forEach(function (key) {
|
|
|
392
413
|
}
|
|
393
414
|
});
|
|
394
415
|
});
|
|
395
|
-
var
|
|
396
|
-
var _index5 = require("./icons/index.js");
|
|
416
|
+
var _index5 = require("./utils/time/index.js");
|
|
397
417
|
Object.keys(_index5).forEach(function (key) {
|
|
398
418
|
if (key === "default" || key === "__esModule") return;
|
|
399
419
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -405,7 +425,8 @@ Object.keys(_index5).forEach(function (key) {
|
|
|
405
425
|
}
|
|
406
426
|
});
|
|
407
427
|
});
|
|
408
|
-
var
|
|
428
|
+
var _typeHelpers = require("./utils/typeHelpers.js");
|
|
429
|
+
var _index6 = require("./icons/index.js");
|
|
409
430
|
Object.keys(_index6).forEach(function (key) {
|
|
410
431
|
if (key === "default" || key === "__esModule") return;
|
|
411
432
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -417,7 +438,7 @@ Object.keys(_index6).forEach(function (key) {
|
|
|
417
438
|
}
|
|
418
439
|
});
|
|
419
440
|
});
|
|
420
|
-
var _index7 = require("./
|
|
441
|
+
var _index7 = require("./clipboard/index.js");
|
|
421
442
|
Object.keys(_index7).forEach(function (key) {
|
|
422
443
|
if (key === "default" || key === "__esModule") return;
|
|
423
444
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -429,7 +450,7 @@ Object.keys(_index7).forEach(function (key) {
|
|
|
429
450
|
}
|
|
430
451
|
});
|
|
431
452
|
});
|
|
432
|
-
var _index8 = require("./
|
|
453
|
+
var _index8 = require("./logger/index.js");
|
|
433
454
|
Object.keys(_index8).forEach(function (key) {
|
|
434
455
|
if (key === "default" || key === "__esModule") return;
|
|
435
456
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -441,7 +462,7 @@ Object.keys(_index8).forEach(function (key) {
|
|
|
441
462
|
}
|
|
442
463
|
});
|
|
443
464
|
});
|
|
444
|
-
var _index9 = require("./
|
|
465
|
+
var _index9 = require("./settings/index.js");
|
|
445
466
|
Object.keys(_index9).forEach(function (key) {
|
|
446
467
|
if (key === "default" || key === "__esModule") return;
|
|
447
468
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -453,24 +474,36 @@ Object.keys(_index9).forEach(function (key) {
|
|
|
453
474
|
}
|
|
454
475
|
});
|
|
455
476
|
});
|
|
456
|
-
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");
|
|
457
490
|
var _JsModal = require("./JsModal.js");
|
|
458
491
|
var _gameUIColors = require("./ui/gameUI/constants/gameUIColors.js");
|
|
459
492
|
var _macOSDesignSystemColors = require("./ui/gameUI/constants/macOSDesignSystemColors.js");
|
|
460
493
|
var _EnvironmentIndicator = require("./env/EnvironmentIndicator.js");
|
|
461
494
|
var _EnvironmentSelector = require("./env/EnvironmentSelector.js");
|
|
462
495
|
var _EnvironmentSelectorInline = require("./env/EnvironmentSelectorInline.js");
|
|
463
|
-
var
|
|
464
|
-
var
|
|
465
|
-
Object.keys(
|
|
496
|
+
var _index10 = require("./context/index.js");
|
|
497
|
+
var _index11 = require("./history/index.js");
|
|
498
|
+
Object.keys(_index11).forEach(function (key) {
|
|
466
499
|
if (key === "default" || key === "__esModule") return;
|
|
467
500
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
468
|
-
if (key in exports && exports[key] ===
|
|
501
|
+
if (key in exports && exports[key] === _index11[key]) return;
|
|
469
502
|
Object.defineProperty(exports, key, {
|
|
470
503
|
enumerable: true,
|
|
471
504
|
get: function () {
|
|
472
|
-
return
|
|
505
|
+
return _index11[key];
|
|
473
506
|
}
|
|
474
507
|
});
|
|
475
508
|
});
|
|
476
|
-
var
|
|
509
|
+
var _index12 = require("./license/index.js");
|