@buoy-gg/shared-ui 3.0.1 → 4.0.1

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.
Files changed (133) hide show
  1. package/lib/commonjs/JsModal.js +2 -1
  2. package/lib/commonjs/clipboard/clipboard-impl.js +28 -2
  3. package/lib/commonjs/dataViewer/VirtualizedDataExplorer.js +3 -5
  4. package/lib/commonjs/hooks/safe-area-impl.js +1 -1
  5. package/lib/commonjs/icons/lucide-icons.js +130 -22
  6. package/lib/commonjs/index.js +14 -0
  7. package/lib/commonjs/license/DeviceLimitModal.js +2 -1
  8. package/lib/commonjs/license/FeatureGate.js +60 -11
  9. package/lib/commonjs/license/LicenseEntryModal.js +14 -3
  10. package/lib/commonjs/license/ManageDevicesModal.js +2 -1
  11. package/lib/commonjs/license/openPricing.js +36 -0
  12. package/lib/commonjs/storage/devToolsStorageKeys.js +1 -0
  13. package/lib/commonjs/stores/BaseEventStore.js +72 -2
  14. package/lib/commonjs/stores/ignoredPatternsStore.js +229 -0
  15. package/lib/commonjs/stores/index.js +26 -1
  16. package/lib/commonjs/ui/components/CompactRow.js +73 -66
  17. package/lib/commonjs/ui/components/EventHistoryViewer/EventPickerModal.js +3 -2
  18. package/lib/commonjs/ui/components/ExpandableSectionWithModal.js +2 -1
  19. package/lib/commonjs/ui/components/ExpandedInfoRow.js +13 -3
  20. package/lib/commonjs/ui/components/WindowControls.js +9 -3
  21. package/lib/commonjs/ui/console/CyberpunkConsoleSection.js +6 -5
  22. package/lib/commonjs/ui/console/GalaxyButton.js +2 -1
  23. package/lib/commonjs/ui/gameUI/components/GameUIStatusHeader.js +2 -1
  24. package/lib/commonjs/utils/absoluteFill.js +28 -0
  25. package/lib/commonjs/utils/index.js +13 -0
  26. package/lib/commonjs/utils/safeExpoRouter.js +59 -4
  27. package/lib/module/JsModal.js +2 -1
  28. package/lib/module/clipboard/clipboard-impl.js +28 -2
  29. package/lib/module/dataViewer/VirtualizedDataExplorer.js +3 -5
  30. package/lib/module/hooks/safe-area-impl.js +1 -1
  31. package/lib/module/icons/lucide-icons.js +125 -19
  32. package/lib/module/index.js +3 -1
  33. package/lib/module/license/DeviceLimitModal.js +2 -1
  34. package/lib/module/license/FeatureGate.js +61 -12
  35. package/lib/module/license/LicenseEntryModal.js +15 -4
  36. package/lib/module/license/ManageDevicesModal.js +2 -1
  37. package/lib/module/license/openPricing.js +31 -0
  38. package/lib/module/storage/devToolsStorageKeys.js +1 -0
  39. package/lib/module/stores/BaseEventStore.js +72 -2
  40. package/lib/module/stores/ignoredPatternsStore.js +223 -0
  41. package/lib/module/stores/index.js +2 -1
  42. package/lib/module/ui/components/CompactRow.js +73 -66
  43. package/lib/module/ui/components/EventHistoryViewer/EventPickerModal.js +3 -2
  44. package/lib/module/ui/components/ExpandableSectionWithModal.js +2 -1
  45. package/lib/module/ui/components/ExpandedInfoRow.js +13 -3
  46. package/lib/module/ui/components/WindowControls.js +10 -4
  47. package/lib/module/ui/console/CyberpunkConsoleSection.js +6 -5
  48. package/lib/module/ui/console/GalaxyButton.js +2 -1
  49. package/lib/module/ui/gameUI/components/GameUIStatusHeader.js +2 -1
  50. package/lib/module/utils/absoluteFill.js +24 -0
  51. package/lib/module/utils/index.js +2 -1
  52. package/lib/module/utils/safeExpoRouter.js +58 -4
  53. package/lib/typescript/commonjs/JsModal.d.ts.map +1 -1
  54. package/lib/typescript/commonjs/clipboard/clipboard-impl.d.ts +3 -2
  55. package/lib/typescript/commonjs/clipboard/clipboard-impl.d.ts.map +1 -1
  56. package/lib/typescript/commonjs/dataViewer/VirtualizedDataExplorer.d.ts.map +1 -1
  57. package/lib/typescript/commonjs/hooks/safe-area-impl.d.ts +1 -1
  58. package/lib/typescript/commonjs/icons/lucide-icons.d.ts +5 -2
  59. package/lib/typescript/commonjs/icons/lucide-icons.d.ts.map +1 -1
  60. package/lib/typescript/commonjs/index.d.ts +1 -1
  61. package/lib/typescript/commonjs/index.d.ts.map +1 -1
  62. package/lib/typescript/commonjs/license/DeviceLimitModal.d.ts.map +1 -1
  63. package/lib/typescript/commonjs/license/FeatureGate.d.ts +14 -1
  64. package/lib/typescript/commonjs/license/FeatureGate.d.ts.map +1 -1
  65. package/lib/typescript/commonjs/license/LicenseEntryModal.d.ts.map +1 -1
  66. package/lib/typescript/commonjs/license/ManageDevicesModal.d.ts.map +1 -1
  67. package/lib/typescript/commonjs/license/openPricing.d.ts +14 -0
  68. package/lib/typescript/commonjs/license/openPricing.d.ts.map +1 -0
  69. package/lib/typescript/commonjs/storage/devToolsStorageKeys.d.ts +1 -0
  70. package/lib/typescript/commonjs/storage/devToolsStorageKeys.d.ts.map +1 -1
  71. package/lib/typescript/commonjs/stores/BaseEventStore.d.ts +28 -0
  72. package/lib/typescript/commonjs/stores/BaseEventStore.d.ts.map +1 -1
  73. package/lib/typescript/commonjs/stores/ignoredPatternsStore.d.ts +84 -0
  74. package/lib/typescript/commonjs/stores/ignoredPatternsStore.d.ts.map +1 -0
  75. package/lib/typescript/commonjs/stores/index.d.ts +1 -0
  76. package/lib/typescript/commonjs/stores/index.d.ts.map +1 -1
  77. package/lib/typescript/commonjs/ui/components/CompactRow.d.ts +3 -1
  78. package/lib/typescript/commonjs/ui/components/CompactRow.d.ts.map +1 -1
  79. package/lib/typescript/commonjs/ui/components/EventHistoryViewer/EventPickerModal.d.ts.map +1 -1
  80. package/lib/typescript/commonjs/ui/components/ExpandableSectionWithModal.d.ts.map +1 -1
  81. package/lib/typescript/commonjs/ui/components/ExpandedInfoRow.d.ts +3 -1
  82. package/lib/typescript/commonjs/ui/components/ExpandedInfoRow.d.ts.map +1 -1
  83. package/lib/typescript/commonjs/ui/components/WindowControls.d.ts.map +1 -1
  84. package/lib/typescript/commonjs/ui/console/CyberpunkConsoleSection.d.ts.map +1 -1
  85. package/lib/typescript/commonjs/ui/console/GalaxyButton.d.ts.map +1 -1
  86. package/lib/typescript/commonjs/ui/gameUI/components/GameUIStatusHeader.d.ts.map +1 -1
  87. package/lib/typescript/commonjs/utils/absoluteFill.d.ts +18 -0
  88. package/lib/typescript/commonjs/utils/absoluteFill.d.ts.map +1 -0
  89. package/lib/typescript/commonjs/utils/index.d.ts +2 -1
  90. package/lib/typescript/commonjs/utils/index.d.ts.map +1 -1
  91. package/lib/typescript/commonjs/utils/safeExpoRouter.d.ts +9 -0
  92. package/lib/typescript/commonjs/utils/safeExpoRouter.d.ts.map +1 -1
  93. package/lib/typescript/module/JsModal.d.ts.map +1 -1
  94. package/lib/typescript/module/clipboard/clipboard-impl.d.ts +3 -2
  95. package/lib/typescript/module/clipboard/clipboard-impl.d.ts.map +1 -1
  96. package/lib/typescript/module/dataViewer/VirtualizedDataExplorer.d.ts.map +1 -1
  97. package/lib/typescript/module/hooks/safe-area-impl.d.ts +1 -1
  98. package/lib/typescript/module/icons/lucide-icons.d.ts +5 -2
  99. package/lib/typescript/module/icons/lucide-icons.d.ts.map +1 -1
  100. package/lib/typescript/module/index.d.ts +1 -1
  101. package/lib/typescript/module/index.d.ts.map +1 -1
  102. package/lib/typescript/module/license/DeviceLimitModal.d.ts.map +1 -1
  103. package/lib/typescript/module/license/FeatureGate.d.ts +14 -1
  104. package/lib/typescript/module/license/FeatureGate.d.ts.map +1 -1
  105. package/lib/typescript/module/license/LicenseEntryModal.d.ts.map +1 -1
  106. package/lib/typescript/module/license/ManageDevicesModal.d.ts.map +1 -1
  107. package/lib/typescript/module/license/openPricing.d.ts +14 -0
  108. package/lib/typescript/module/license/openPricing.d.ts.map +1 -0
  109. package/lib/typescript/module/storage/devToolsStorageKeys.d.ts +1 -0
  110. package/lib/typescript/module/storage/devToolsStorageKeys.d.ts.map +1 -1
  111. package/lib/typescript/module/stores/BaseEventStore.d.ts +28 -0
  112. package/lib/typescript/module/stores/BaseEventStore.d.ts.map +1 -1
  113. package/lib/typescript/module/stores/ignoredPatternsStore.d.ts +84 -0
  114. package/lib/typescript/module/stores/ignoredPatternsStore.d.ts.map +1 -0
  115. package/lib/typescript/module/stores/index.d.ts +1 -0
  116. package/lib/typescript/module/stores/index.d.ts.map +1 -1
  117. package/lib/typescript/module/ui/components/CompactRow.d.ts +3 -1
  118. package/lib/typescript/module/ui/components/CompactRow.d.ts.map +1 -1
  119. package/lib/typescript/module/ui/components/EventHistoryViewer/EventPickerModal.d.ts.map +1 -1
  120. package/lib/typescript/module/ui/components/ExpandableSectionWithModal.d.ts.map +1 -1
  121. package/lib/typescript/module/ui/components/ExpandedInfoRow.d.ts +3 -1
  122. package/lib/typescript/module/ui/components/ExpandedInfoRow.d.ts.map +1 -1
  123. package/lib/typescript/module/ui/components/WindowControls.d.ts.map +1 -1
  124. package/lib/typescript/module/ui/console/CyberpunkConsoleSection.d.ts.map +1 -1
  125. package/lib/typescript/module/ui/console/GalaxyButton.d.ts.map +1 -1
  126. package/lib/typescript/module/ui/gameUI/components/GameUIStatusHeader.d.ts.map +1 -1
  127. package/lib/typescript/module/utils/absoluteFill.d.ts +18 -0
  128. package/lib/typescript/module/utils/absoluteFill.d.ts.map +1 -0
  129. package/lib/typescript/module/utils/index.d.ts +2 -1
  130. package/lib/typescript/module/utils/index.d.ts.map +1 -1
  131. package/lib/typescript/module/utils/safeExpoRouter.d.ts +9 -0
  132. package/lib/typescript/module/utils/safeExpoRouter.d.ts.map +1 -1
  133. package/package.json +4 -4
@@ -10,6 +10,7 @@ export function CompactRow({
10
10
  statusSublabel,
11
11
  primaryText,
12
12
  secondaryText,
13
+ secondaryAccessory,
13
14
  expandedContent,
14
15
  isExpanded,
15
16
  badgeText,
@@ -24,77 +25,80 @@ export function CompactRow({
24
25
  }) {
25
26
  return /*#__PURE__*/_jsx(View, {
26
27
  style: styles.rowWrapper,
27
- children: /*#__PURE__*/_jsxs(TouchableOpacity, {
28
+ children: /*#__PURE__*/_jsxs(View, {
28
29
  style: [styles.row, isSelected && styles.selectedRow, isExpanded && [styles.expandedRowActive, {
29
30
  borderColor: expandedGlowColor || buoyColors.primary,
30
31
  shadowColor: expandedGlowColor || buoyColors.primary
31
32
  }]],
32
- onPress: onPress,
33
- activeOpacity: 0.8,
34
- disabled: disabled || !onPress,
35
- children: [/*#__PURE__*/_jsxs(View, {
36
- style: styles.rowContent,
37
- children: [/*#__PURE__*/_jsxs(View, {
38
- style: styles.statusSection,
39
- children: [/*#__PURE__*/_jsx(View, {
40
- style: [styles.statusDot, {
41
- backgroundColor: statusDotColor
42
- }]
33
+ children: [/*#__PURE__*/_jsx(TouchableOpacity, {
34
+ onPress: onPress,
35
+ activeOpacity: 0.8,
36
+ disabled: disabled || !onPress,
37
+ children: /*#__PURE__*/_jsxs(View, {
38
+ style: styles.rowContent,
39
+ children: [/*#__PURE__*/_jsxs(View, {
40
+ style: styles.statusSection,
41
+ children: [/*#__PURE__*/_jsx(View, {
42
+ style: [styles.statusDot, {
43
+ backgroundColor: statusDotColor
44
+ }]
45
+ }), /*#__PURE__*/_jsxs(View, {
46
+ style: styles.statusInfo,
47
+ children: [/*#__PURE__*/_jsx(Text, {
48
+ style: [styles.statusLabel, {
49
+ color: statusDotColor
50
+ }],
51
+ numberOfLines: 1,
52
+ children: statusLabel
53
+ }), statusSublabel ? /*#__PURE__*/_jsx(Text, {
54
+ style: styles.observerText,
55
+ numberOfLines: 1,
56
+ children: statusSublabel
57
+ }) : null]
58
+ })]
43
59
  }), /*#__PURE__*/_jsxs(View, {
44
- style: styles.statusInfo,
60
+ style: styles.querySection,
45
61
  children: [/*#__PURE__*/_jsx(Text, {
46
- style: [styles.statusLabel, {
47
- color: statusDotColor
48
- }],
49
- numberOfLines: 1,
50
- children: statusLabel
51
- }), statusSublabel && /*#__PURE__*/_jsx(Text, {
52
- style: styles.observerText,
53
- numberOfLines: 1,
54
- children: statusSublabel
62
+ style: styles.queryHash,
63
+ numberOfLines: isExpanded ? undefined : 2,
64
+ children: primaryText
65
+ }), !isExpanded && (secondaryText || secondaryAccessory) ? /*#__PURE__*/_jsxs(View, {
66
+ style: styles.secondaryRow,
67
+ children: [secondaryText ? /*#__PURE__*/_jsx(Text, {
68
+ style: styles.secondaryText,
69
+ numberOfLines: 1,
70
+ children: secondaryText
71
+ }) : null, secondaryAccessory]
72
+ }) : null]
73
+ }), /*#__PURE__*/_jsxs(View, {
74
+ style: styles.rightSection,
75
+ children: [(customBadge || badgeText !== undefined || !isExpanded && bottomRightText) && /*#__PURE__*/_jsxs(View, {
76
+ style: styles.badgeContainer,
77
+ children: [customBadge ? customBadge : badgeText !== undefined ? /*#__PURE__*/_jsx(Text, {
78
+ style: [styles.statusBadge, {
79
+ color: badgeColor || statusDotColor
80
+ }],
81
+ children: badgeText
82
+ }) : null, !isExpanded && bottomRightText ? /*#__PURE__*/_jsx(Text, {
83
+ style: styles.bottomRightText,
84
+ numberOfLines: 1,
85
+ children: bottomRightText
86
+ }) : null]
87
+ }), showChevron && /*#__PURE__*/_jsx(View, {
88
+ style: styles.chevronContainer,
89
+ children: isExpanded ? /*#__PURE__*/_jsx(ChevronDown, {
90
+ size: 14,
91
+ color: buoyColors.textMuted
92
+ }) : /*#__PURE__*/_jsx(ChevronRight, {
93
+ size: 14,
94
+ color: buoyColors.textMuted
95
+ })
55
96
  })]
56
97
  })]
57
- }), /*#__PURE__*/_jsxs(View, {
58
- style: styles.querySection,
59
- children: [/*#__PURE__*/_jsx(Text, {
60
- style: styles.queryHash,
61
- numberOfLines: isExpanded ? undefined : 2,
62
- children: primaryText
63
- }), !isExpanded && secondaryText && /*#__PURE__*/_jsx(Text, {
64
- style: styles.secondaryText,
65
- numberOfLines: 1,
66
- children: secondaryText
67
- })]
68
- }), /*#__PURE__*/_jsxs(View, {
69
- style: styles.rightSection,
70
- children: [(customBadge || badgeText !== undefined) && /*#__PURE__*/_jsx(View, {
71
- style: styles.badgeContainer,
72
- children: customBadge ? customBadge : /*#__PURE__*/_jsx(Text, {
73
- style: [styles.statusBadge, {
74
- color: badgeColor || statusDotColor
75
- }],
76
- children: badgeText
77
- })
78
- }), showChevron && /*#__PURE__*/_jsx(View, {
79
- style: styles.chevronContainer,
80
- children: isExpanded ? /*#__PURE__*/_jsx(ChevronDown, {
81
- size: 14,
82
- color: buoyColors.textMuted
83
- }) : /*#__PURE__*/_jsx(ChevronRight, {
84
- size: 14,
85
- color: buoyColors.textMuted
86
- })
87
- })]
88
- })]
98
+ })
89
99
  }), isExpanded && expandedContent && /*#__PURE__*/_jsx(View, {
90
100
  style: styles.expandedContent,
91
101
  children: expandedContent
92
- }), !isExpanded && bottomRightText && /*#__PURE__*/_jsx(View, {
93
- style: styles.bottomRightContainer,
94
- children: /*#__PURE__*/_jsx(Text, {
95
- style: styles.bottomRightText,
96
- children: bottomRightText
97
- })
98
102
  })]
99
103
  })
100
104
  });
@@ -185,6 +189,12 @@ const styles = StyleSheet.create({
185
189
  color: buoyColors.text,
186
190
  lineHeight: 16
187
191
  },
192
+ secondaryRow: {
193
+ flexDirection: "row",
194
+ alignItems: "center",
195
+ gap: 6,
196
+ marginTop: 1
197
+ },
188
198
  secondaryText: {
189
199
  fontSize: 10,
190
200
  color: buoyColors.textMuted,
@@ -196,7 +206,9 @@ const styles = StyleSheet.create({
196
206
  gap: 8
197
207
  },
198
208
  badgeContainer: {
199
- alignItems: "flex-end"
209
+ flexDirection: "column",
210
+ alignItems: "flex-end",
211
+ gap: 2
200
212
  },
201
213
  statusBadge: {
202
214
  fontSize: 12,
@@ -213,11 +225,6 @@ const styles = StyleSheet.create({
213
225
  borderTopColor: buoyColors.border + "20",
214
226
  marginLeft: 24 // Align with content after status dot
215
227
  },
216
- bottomRightContainer: {
217
- position: "absolute",
218
- bottom: 4,
219
- right: 8
220
- },
221
228
  bottomRightText: {
222
229
  fontSize: 9,
223
230
  color: buoyColors.textMuted,
@@ -10,6 +10,7 @@
10
10
 
11
11
  import React, { memo } from "react";
12
12
  import { View, Text, TouchableOpacity, ScrollView, StyleSheet } from "react-native";
13
+ import { absoluteFill } from "../../../utils/absoluteFill.js";
13
14
  import { macOSColors } from "../../gameUI/constants/macOSDesignSystemColors.js";
14
15
  import { X } from "../../../icons/lucide-icons.js";
15
16
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
@@ -77,13 +78,13 @@ export const EventPickerModal = /*#__PURE__*/memo(function EventPickerModal({
77
78
  });
78
79
  const styles = StyleSheet.create({
79
80
  overlay: {
80
- ...StyleSheet.absoluteFillObject,
81
+ ...absoluteFill,
81
82
  zIndex: 20,
82
83
  justifyContent: "center",
83
84
  alignItems: "center"
84
85
  },
85
86
  backdrop: {
86
- ...StyleSheet.absoluteFillObject,
87
+ ...absoluteFill,
87
88
  backgroundColor: "rgba(0,0,0,0.65)"
88
89
  },
89
90
  card: {
@@ -2,6 +2,7 @@
2
2
 
3
3
  import { useState } from "react";
4
4
  import { Dimensions, Modal, ScrollView, StyleSheet, TouchableOpacity, View } from "react-native";
5
+ import { absoluteFill } from "../../utils/absoluteFill.js";
5
6
  import { useSafeAreaInsets } from "../../hooks/useSafeAreaInsets.js";
6
7
  import { X } from "../../icons/index.js";
7
8
  import { ExpandableSection } from "./ExpandableSection.js";
@@ -121,7 +122,7 @@ const styles = StyleSheet.create({
121
122
  flex: 1
122
123
  },
123
124
  backdrop: {
124
- ...StyleSheet.absoluteFillObject,
125
+ ...absoluteFill,
125
126
  backgroundColor: "rgba(0, 0, 0, 0.8)"
126
127
  },
127
128
  backdropTouchable: {
@@ -39,10 +39,12 @@ export function ExpandedInfoRow({
39
39
  export function PillBadge({
40
40
  color,
41
41
  children,
42
- icon
42
+ icon,
43
+ size = "md"
43
44
  }) {
45
+ const isSm = size === "sm";
44
46
  return /*#__PURE__*/_jsxs(View, {
45
- style: [styles.pill, {
47
+ style: [styles.pill, isSm && styles.pillSm, {
46
48
  backgroundColor: color + "20",
47
49
  borderColor: color + "40"
48
50
  }],
@@ -50,7 +52,7 @@ export function PillBadge({
50
52
  style: styles.pillIcon,
51
53
  children: icon
52
54
  }), /*#__PURE__*/_jsx(Text, {
53
- style: [styles.pillText, {
55
+ style: [styles.pillText, isSm && styles.pillTextSm, {
54
56
  color
55
57
  }],
56
58
  children: children
@@ -78,6 +80,10 @@ const styles = StyleSheet.create({
78
80
  borderRadius: 999,
79
81
  borderWidth: 1
80
82
  },
83
+ pillSm: {
84
+ paddingHorizontal: 5,
85
+ paddingVertical: 1
86
+ },
81
87
  pillIcon: {
82
88
  marginRight: 4
83
89
  },
@@ -86,5 +92,9 @@ const styles = StyleSheet.create({
86
92
  fontWeight: "700",
87
93
  fontFamily: "monospace",
88
94
  letterSpacing: 0.5
95
+ },
96
+ pillTextSm: {
97
+ fontSize: 9,
98
+ letterSpacing: 0.3
89
99
  }
90
100
  });
@@ -1,15 +1,20 @@
1
1
  "use strict";
2
2
 
3
3
  import { useState, useRef, useCallback, useEffect } from "react";
4
- import { View, TouchableOpacity, TouchableWithoutFeedback, StyleSheet, Animated, Modal } from "react-native";
4
+ import { View, TouchableOpacity, TouchableWithoutFeedback, StyleSheet, Animated, Modal, Platform } from "react-native";
5
5
  import { X, Minus, DockBottom, FloatWindow } from "../../icons/index.js";
6
6
  import { buoyColors } from "../gameUI/constants/gameUIColors.js";
7
7
 
8
8
  // ============================================================================
9
9
  // Global expandable setting — controlled via setExpandableWindowControls()
10
10
  // ============================================================================
11
+
12
+ // The expandable behavior is a touch affordance (big tap targets). On web a
13
+ // mouse clicks the small dots directly, so it's always off there — the
14
+ // setting only applies to native touch platforms.
11
15
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
12
- let _expandableEnabled = true; // Default ON
16
+ const EXPANDABLE_SUPPORTED = Platform.OS !== "web";
17
+ let _expandableEnabled = true; // Default ON (native touch devices)
13
18
 
14
19
  /**
15
20
  * Set whether window controls use the expandable iPad-style behavior.
@@ -69,8 +74,9 @@ export function WindowControls({
69
74
  const ToggleModeIcon = mode === "floating" ? DockBottom : FloatWindow;
70
75
  const toggleModeLabel = mode === "floating" ? "Dock to bottom sheet" : "Make floating window";
71
76
 
72
- // When expandable is disabled, render original directly-tappable buttons
73
- if (!_expandableEnabled) {
77
+ // When expandable is disabled (or unsupported on this platform), render
78
+ // original directly-tappable buttons
79
+ if (!_expandableEnabled || !EXPANDABLE_SUPPORTED) {
74
80
  return /*#__PURE__*/_jsxs(View, {
75
81
  style: styles.container,
76
82
  children: [onMinimize && /*#__PURE__*/_jsx(TouchableOpacity, {
@@ -2,6 +2,7 @@
2
2
 
3
3
  import { useEffect, useRef } from "react";
4
4
  import { View, Text, StyleSheet, Pressable, Animated, Easing } from "react-native";
5
+ import { absoluteFill } from "../../utils/absoluteFill.js";
5
6
  import { ChevronRight } from "../../icons/index.js";
6
7
  import { gameUIColors } from "../gameUI/index.js";
7
8
 
@@ -481,31 +482,31 @@ const styles = StyleSheet.create({
481
482
  backgroundColor: "rgba(5, 5, 10, 0.6)" // Darker glass background
482
483
  },
483
484
  glassLayer1: {
484
- ...StyleSheet.absoluteFillObject,
485
+ ...absoluteFill,
485
486
  backgroundColor: "rgba(10, 10, 15, 0.7)",
486
487
  opacity: 0.8
487
488
  },
488
489
  glassLayer2: {
489
- ...StyleSheet.absoluteFillObject,
490
+ ...absoluteFill,
490
491
  backgroundColor: "rgba(15, 15, 25, 0.5)",
491
492
  opacity: 0.6,
492
493
  top: "20%",
493
494
  left: "20%"
494
495
  },
495
496
  glassLayer3: {
496
- ...StyleSheet.absoluteFillObject,
497
+ ...absoluteFill,
497
498
  backgroundColor: "rgba(20, 20, 35, 0.3)",
498
499
  opacity: 0.4,
499
500
  top: "40%",
500
501
  left: "40%"
501
502
  },
502
503
  glassShimmer: {
503
- ...StyleSheet.absoluteFillObject,
504
+ ...absoluteFill,
504
505
  backgroundColor: "rgba(255, 255, 255, 0.03)",
505
506
  opacity: 0.6
506
507
  },
507
508
  glitchOverlayLayer: {
508
- ...StyleSheet.absoluteFillObject,
509
+ ...absoluteFill,
509
510
  borderRadius: 12,
510
511
  borderWidth: 1,
511
512
  justifyContent: "center",
@@ -2,6 +2,7 @@
2
2
 
3
3
  import { useEffect, useRef } from "react";
4
4
  import { View, StyleSheet, Animated, Pressable, Dimensions } from "react-native";
5
+ import { absoluteFill } from "../../utils/absoluteFill.js";
5
6
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
7
  const {
7
8
  width: screenWidth
@@ -72,7 +73,7 @@ const styles = StyleSheet.create({
72
73
  overflow: "hidden"
73
74
  },
74
75
  starsContainer: {
75
- ...StyleSheet.absoluteFillObject,
76
+ ...absoluteFill,
76
77
  overflow: "hidden"
77
78
  },
78
79
  starsLayer: {
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  import { StyleSheet, Text, View, Animated } from "react-native";
4
+ import { absoluteFill } from "../../../utils/absoluteFill.js";
4
5
  import { gameUIColors } from "../constants/gameUIColors.js";
5
6
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
7
  /**
@@ -78,7 +79,7 @@ const styles = StyleSheet.create({
78
79
  overflow: "hidden"
79
80
  },
80
81
  glow: {
81
- ...StyleSheet.absoluteFillObject,
82
+ ...absoluteFill,
82
83
  opacity: 0.5
83
84
  },
84
85
  content: {
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ /**
4
+ * Spreadable absolute-fill style.
5
+ *
6
+ * Replaces `StyleSheet.absoluteFillObject`, which was REMOVED in React Native
7
+ * 0.85 (returns `undefined` there). Spreading `undefined` is a silent no-op, so
8
+ * any overlay/backdrop/full-screen Pressable that relied on it collapses to zero
9
+ * size on RN 0.85+ — invisible and untappable.
10
+ *
11
+ * `StyleSheet.absoluteFill` is not a safe replacement for the spread pattern
12
+ * because its type changed across versions: it's a registered style *number* on
13
+ * RN <= 0.84 (spreading a number yields `{}`) and a frozen object only on 0.85+.
14
+ *
15
+ * This plain object works identically on every RN version, whether spread
16
+ * (`{ ...absoluteFill }`) or passed directly (`style={absoluteFill}`).
17
+ */
18
+ export const absoluteFill = {
19
+ position: "absolute",
20
+ top: 0,
21
+ left: 0,
22
+ right: 0,
23
+ bottom: 0
24
+ };
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
 
3
+ export { absoluteFill } from "./absoluteFill.js";
3
4
  export { displayValue, parseDisplayValue } from "./displayValue.js";
4
5
  export { getSafeAreaInsets } from "./getSafeAreaInsets.js";
5
6
  export { persistentStorage, isUsingPersistentStorage, getStorageBackendType } from "./persistentStorage.js";
@@ -9,4 +10,4 @@ export { parseValue, formatValue, getTypeColor, truncateText, flattenObject, for
9
10
  export { loadOptionalModule, getCachedOptionalModule } from "./loadOptionalModule.js";
10
11
  export { Subscribable } from "./subscribable.js";
11
12
  export { subscriberCountNotifier, subscribeToSubscriberCountChanges, notifySubscriberCountChange } from "./subscriberCountNotifier.js";
12
- export { useSafeRouter, useSafePathname, useSafeSegments, useSafeGlobalSearchParams, getSafeRouter, isExpoRouterAvailable } from "./safeExpoRouter.js";
13
+ export { useSafeRouter, useSafePathname, useSafeSegments, useSafeGlobalSearchParams, getSafeRouter, getSafeCurrentPathname, isExpoRouterAvailable } from "./safeExpoRouter.js";
@@ -22,14 +22,27 @@ let checkedAvailability = false;
22
22
  * where native modules moved to the Expo Modules API.
23
23
  */
24
24
  function hasExpoNativeRuntime() {
25
+ // Modern Expo (SDK 50+, both Old and New Architecture): expo-modules-core
26
+ // installs a global `expo` object — the Expo Modules API runtime — via JSI
27
+ // when the native runtime is actually present. This is the most reliable
28
+ // signal and, crucially, the ONLY one of these checks that fires on SDK 54+ /
29
+ // New Architecture dev builds, where the legacy NativeModules entries below
30
+ // are no longer registered (ExpoLinking is gone, NativeUnimoduleProxy isn't
31
+ // on the bridge). It stays absent on bare RN CLI, so there's no false
32
+ // positive there. Without this, navigation-dependent tools (route sitemap,
33
+ // remote navigate, perf-monitor automation) silently no-op on modern builds.
34
+ const expoGlobal = globalThis.expo;
35
+ if (expoGlobal != null && (expoGlobal.modules != null || expoGlobal.EventEmitter != null || expoGlobal.NativeModule != null)) {
36
+ return true;
37
+ }
38
+
25
39
  // Check legacy NativeModules bridge (Expo SDK < 54)
26
40
  if (NativeModules.ExpoLinking) {
27
41
  return true;
28
42
  }
29
43
 
30
- // Check for Expo Modules Core native bridge (Expo SDK 51+)
31
- // NativeUnimoduleProxy is registered by expo-modules-core on both old and new arch
32
- if (NativeModules.NativeUnimoduleProxy) {
44
+ // Check for Expo Modules Core native bridge (older SDKs / Old Architecture)
45
+ if (NativeModules.NativeUnimoduleProxy || NativeModules.ExpoModulesCore) {
33
46
  return true;
34
47
  }
35
48
 
@@ -38,7 +51,7 @@ function hasExpoNativeRuntime() {
38
51
  return true;
39
52
  }
40
53
 
41
- // No Expo native runtime detected.
54
+ // No Expo native runtime detected (e.g. bare RN CLI).
42
55
  // NOTE: We intentionally do NOT try require("expo-modules-core") here because
43
56
  // on RN CLI it may be bundled as a transitive dep but the native modules
44
57
  // (requireOptionalNativeModule etc.) are undefined, causing crashes.
@@ -152,6 +165,47 @@ export function getSafeRouter() {
152
165
  }
153
166
  }
154
167
 
168
+ // ============================================================================
169
+ // Imperative current-route getter
170
+ // ============================================================================
171
+
172
+ // expo-router doesn't publicly re-export its imperative store, so we reach it
173
+ // via its build path. Cached + best-effort: if a future expo-router moves this
174
+ // path the require throws and the imperative fallback simply disables (callers
175
+ // degrade to route-events history). expo-router's store exposes getRouteInfo(),
176
+ // which returns the live pathname even before any navigation is recorded.
177
+ let routerStore;
178
+ function getRouterStore() {
179
+ if (routerStore !== undefined) return routerStore;
180
+ try {
181
+ // eslint-disable-next-line @typescript-eslint/no-require-imports
182
+ routerStore = require("expo-router/build/global-state/router-store")?.store ?? null;
183
+ } catch {
184
+ routerStore = null;
185
+ }
186
+ return routerStore;
187
+ }
188
+
189
+ /**
190
+ * The current route pathname, read imperatively from expo-router's store.
191
+ *
192
+ * Unlike a route-events history lookup, this works even before any navigation
193
+ * has been recorded — e.g. right after a cold start while the app sits on its
194
+ * initial route. Returns null when expo-router isn't available or the store
195
+ * can't be reached.
196
+ */
197
+ export function getSafeCurrentPathname() {
198
+ if (!checkExpoRouterAvailability()) {
199
+ return null;
200
+ }
201
+ try {
202
+ const pathname = getRouterStore()?.getRouteInfo?.()?.pathname;
203
+ return typeof pathname === "string" && pathname.length > 0 ? pathname : null;
204
+ } catch (error) {
205
+ return null;
206
+ }
207
+ }
208
+
155
209
  // ============================================================================
156
210
  // Availability check
157
211
  // ============================================================================
@@ -1 +1 @@
1
- {"version":3,"file":"JsModal.d.ts","sourceRoot":"","sources":["../../../src/JsModal.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAUL,SAAS,EAEV,MAAM,OAAO,CAAC;AACf,OAAO,EAML,QAAQ,EAGR,SAAS,EAEV,MAAM,cAAc,CAAC;AA6FtB,MAAM,MAAM,SAAS,GAAG,aAAa,GAAG,UAAU,CAAC;AAEnD,UAAU,YAAY;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,UAAU,YAAY;IACpB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,OAAO,CAAC,EAAE,SAAS,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,SAAS,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC5C,kBAAkB,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;CACxD;AAED,UAAU,YAAY;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,QAAQ,EAAE,SAAS,CAAC;IACpB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAC;IAChC,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC;IACzC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,uBAAuB,CAAC,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAErD,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,yFAAyF;IACzF,UAAU,CAAC,EAAE,CAAC,UAAU,EAAE,UAAU,KAAK,IAAI,CAAC;IAC9C,0EAA0E;IAC1E,sBAAsB,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAClD,0EAA0E;IAC1E,iBAAiB,CAAC,EAAE,UAAU,CAAC;IAC/B,6DAA6D;IAC7D,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,gIAAgI;IAChI,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAChC;AA8hDD,eAAO,MAAM,OAAO,oDAAyB,CAAC"}
1
+ {"version":3,"file":"JsModal.d.ts","sourceRoot":"","sources":["../../../src/JsModal.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAUL,SAAS,EAEV,MAAM,OAAO,CAAC;AACf,OAAO,EAML,QAAQ,EAGR,SAAS,EAEV,MAAM,cAAc,CAAC;AA8FtB,MAAM,MAAM,SAAS,GAAG,aAAa,GAAG,UAAU,CAAC;AAEnD,UAAU,YAAY;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,UAAU,YAAY;IACpB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,OAAO,CAAC,EAAE,SAAS,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,SAAS,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC5C,kBAAkB,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;CACxD;AAED,UAAU,YAAY;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,QAAQ,EAAE,SAAS,CAAC;IACpB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,QAAQ,CAAC,KAAK,CAAC;IAChC,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC;IACzC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,uBAAuB,CAAC,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAErD,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,yFAAyF;IACzF,UAAU,CAAC,EAAE,CAAC,UAAU,EAAE,UAAU,KAAK,IAAI,CAAC;IAC9C,0EAA0E;IAC1E,sBAAsB,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAClD,0EAA0E;IAC1E,iBAAiB,CAAC,EAAE,UAAU,CAAC;IAC/B,6DAA6D;IAC7D,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,gIAAgI;IAChI,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAChC;AA8hDD,eAAO,MAAM,OAAO,oDAAyB,CAAC"}
@@ -14,10 +14,11 @@
14
14
  * Fallback chain:
15
15
  * 1. expo-clipboard
16
16
  * 2. @react-native-clipboard/clipboard
17
- * 3. Graceful failure
17
+ * 3. Web clipboard API (navigator.clipboard)
18
+ * 4. Graceful failure
18
19
  */
19
20
  export type ClipboardFunction = (text: string) => Promise<boolean>;
20
- export declare const clipboardType: () => "expo" | "react-native" | null;
21
+ export declare const clipboardType: () => "expo" | "react-native" | "web" | null;
21
22
  export declare const isClipboardAvailable: () => boolean;
22
23
  export declare const clipboardFunction: ClipboardFunction;
23
24
  //# sourceMappingURL=clipboard-impl.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"clipboard-impl.d.ts","sourceRoot":"","sources":["../../../../src/clipboard/clipboard-impl.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;AAqDnE,eAAO,MAAM,aAAa,QAAO,MAAM,GAAG,cAAc,GAAG,IAE1D,CAAC;AAEF,eAAO,MAAM,oBAAoB,QAAO,OAIvC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,iBAmB/B,CAAC"}
1
+ {"version":3,"file":"clipboard-impl.d.ts","sourceRoot":"","sources":["../../../../src/clipboard/clipboard-impl.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;GAkBG;AAYH,MAAM,MAAM,iBAAiB,GAAG,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;AAoEnE,eAAO,MAAM,aAAa,QAAO,MAAM,GAAG,cAAc,GAAG,KAAK,GAAG,IAElE,CAAC;AAEF,eAAO,MAAM,oBAAoB,QAAO,OASvC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,iBAmB/B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"VirtualizedDataExplorer.d.ts","sourceRoot":"","sources":["../../../../src/dataViewer/VirtualizedDataExplorer.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE3C,OAAO,EAOL,EAAE,EAEH,MAAM,OAAO,CAAC;AAm+Bf,UAAU,4BAA4B;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,SAAS,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,eAAO,MAAM,uBAAuB,EAAE,EAAE,CAAC,4BAA4B,CAmQpE,CAAC"}
1
+ {"version":3,"file":"VirtualizedDataExplorer.d.ts","sourceRoot":"","sources":["../../../../src/dataViewer/VirtualizedDataExplorer.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE3C,OAAO,EAOL,EAAE,EAEH,MAAM,OAAO,CAAC;AAo+Bf,UAAU,4BAA4B;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,SAAS,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,eAAO,MAAM,uBAAuB,EAAE,EAAE,CAAC,4BAA4B,CAkQpE,CAAC"}
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Auto-generated safe area implementation
3
3
  * Detected: none
4
- * Generated at: 2026-05-28T20:48:12.491Z
4
+ * Generated at: 2026-06-30T15:42:30.947Z
5
5
  *
6
6
  * DO NOT EDIT - This file is generated by scripts/detect-safe-area.js
7
7
  *
@@ -19,6 +19,7 @@ export declare const Clock: ({ size, color, strokeWidth, ...props }: IconProps)
19
19
  export declare const Copy: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
20
20
  export declare const Edit3: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
21
21
  export declare const Eye: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
22
+ export declare const Pin: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
22
23
  export declare const EyeOff: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
23
24
  export declare const FileCode: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
24
25
  export declare const FileText: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
@@ -46,7 +47,9 @@ export declare const Palette: ({ size, color, strokeWidth, ...props }: IconProps
46
47
  export declare const Pause: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
47
48
  export declare const Play: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
48
49
  export declare const Plus: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
49
- export declare const RefreshCw: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
50
+ export declare const RefreshCw: ({ size, color, strokeWidth: _strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
51
+ export declare const Home: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
52
+ export declare const HomeIcon: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
50
53
  export declare const Search: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
51
54
  export declare const Settings: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
52
55
  export declare const Shield: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
@@ -91,7 +94,7 @@ export declare const PaletteIcon: ({ size, color, strokeWidth, ...props }: IconP
91
94
  export declare const PauseIcon: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
92
95
  export declare const PlayIcon: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
93
96
  export declare const PlusIcon: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
94
- export declare const RefreshCwIcon: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
97
+ export declare const RefreshCwIcon: ({ size, color, strokeWidth: _strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
95
98
  export declare const SearchIcon: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
96
99
  export declare const SettingsIcon: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
97
100
  export declare const ShieldIcon: ({ size, color, strokeWidth, ...props }: IconProps) => import("react").JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"lucide-icons.d.ts","sourceRoot":"","sources":["../../../../src/icons/lucide-icons.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"lucide-icons.d.ts","sourceRoot":"","sources":["../../../../src/icons/lucide-icons.tsx"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  export * from "./ui";
2
2
  export * from "./stores";
3
- export { displayValue, parseDisplayValue, getSafeAreaInsets, persistentStorage, isUsingPersistentStorage, getStorageBackendType, safeStringify, getValueType, isPrimitive, isJsonSerializable, isValidJson, getConstructorName, isEmpty, getValueSize, parseValue, formatValue, getTypeColor, truncateText, flattenObject, formatPath, loadOptionalModule, getCachedOptionalModule, Subscribable, type SubscribableListener, subscriberCountNotifier, subscribeToSubscriberCountChanges, notifySubscriberCountChange, useSafeRouter, useSafePathname, useSafeSegments, useSafeGlobalSearchParams, getSafeRouter, isExpoRouterAvailable, } from "./utils";
3
+ export { absoluteFill, displayValue, parseDisplayValue, getSafeAreaInsets, persistentStorage, isUsingPersistentStorage, getStorageBackendType, safeStringify, getValueType, isPrimitive, isJsonSerializable, isValidJson, getConstructorName, isEmpty, getValueSize, parseValue, formatValue, getTypeColor, truncateText, flattenObject, formatPath, loadOptionalModule, getCachedOptionalModule, Subscribable, type SubscribableListener, subscriberCountNotifier, subscribeToSubscriberCountChanges, notifySubscriberCountChange, useSafeRouter, useSafePathname, useSafeSegments, useSafeGlobalSearchParams, getSafeRouter, getSafeCurrentPathname, isExpoRouterAvailable, } from "./utils";
4
4
  export * from "./utils/formatting";
5
5
  export * from "./utils/time";
6
6
  export { isPlainObject as isPlainObjectUtil } from "./utils/typeHelpers";