@buoy-gg/shared-ui 2.1.13 → 2.1.15

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.
@@ -343,8 +343,17 @@ function TreeDiffViewer({
343
343
  return rootDiff;
344
344
  }, [oldValue, newValue]);
345
345
 
346
- // Auto-expand all first-level nodes whenever the compared values change
346
+ // Key the auto-expand effect off a structural signature, not diffTree itself.
347
+ // Parents commonly pass freshly-parsed values (JSON.parse) on every render,
348
+ // so diffTree would change identity without changing meaning — and reset the
349
+ // user's expansion state on every unrelated re-render.
350
+ const comparisonSignature = (0, _react.useMemo)(() => diffTree.map(node => `${node.path.join(".")}:${node.type}`).join("|"), [diffTree]);
351
+ const hasMountedRef = (0, _react.useRef)(false);
347
352
  (0, _react.useEffect)(() => {
353
+ if (!hasMountedRef.current) {
354
+ hasMountedRef.current = true;
355
+ return;
356
+ }
348
357
  const initial = new Set();
349
358
  diffTree.forEach(node => {
350
359
  if (node.children && node.children.length > 0) {
@@ -352,7 +361,8 @@ function TreeDiffViewer({
352
361
  }
353
362
  });
354
363
  setExpandedPaths(initial);
355
- }, [diffTree]);
364
+ // eslint-disable-next-line react-hooks/exhaustive-deps
365
+ }, [comparisonSignature]);
356
366
  const toggleExpanded = path => {
357
367
  const pathStr = path.join(".");
358
368
  setExpandedPaths(prev => {
@@ -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-04-30T19:48:10.470Z
10
+ * Generated at: 2026-05-06T23:35:45.728Z
11
11
  *
12
12
  * DO NOT EDIT - This file is generated by scripts/detect-safe-area.js
13
13
  *
@@ -150,7 +150,9 @@ const devToolsStorageKeys = exports.devToolsStorageKeys = {
150
150
  modal: () => `${devToolsStorageKeys.highlightUpdates.root()}_modal`,
151
151
  isTracking: () => `${devToolsStorageKeys.highlightUpdates.root()}_is_tracking`,
152
152
  filters: () => `${devToolsStorageKeys.highlightUpdates.root()}_filters`,
153
- settings: () => `${devToolsStorageKeys.highlightUpdates.root()}_settings`
153
+ settings: () => `${devToolsStorageKeys.highlightUpdates.root()}_settings`,
154
+ /** Copy/export settings */
155
+ copySettings: () => `${devToolsStorageKeys.highlightUpdates.root()}_copy_settings`
154
156
  },
155
157
  /**
156
158
  * Benchmark-related storage keys
@@ -441,7 +441,7 @@ const styles = _reactNative.StyleSheet.create({
441
441
  minHeight: 68
442
442
  },
443
443
  activeFilterCard: {
444
- backgroundColor: _gameUIColors.buoyColors.primary + "15",
444
+ backgroundColor: _gameUIColors.buoyColors.primary + "33",
445
445
  borderColor: _gameUIColors.buoyColors.primary,
446
446
  borderWidth: 2,
447
447
  // Subtle glow effect like web
@@ -8,11 +8,11 @@ exports.setExpandableWindowControls = setExpandableWindowControls;
8
8
  var _react = require("react");
9
9
  var _reactNative = require("react-native");
10
10
  var _index = require("../../icons/index.js");
11
+ var _gameUIColors = require("../gameUI/constants/gameUIColors.js");
11
12
  var _jsxRuntime = require("react/jsx-runtime");
12
13
  // ============================================================================
13
14
  // Global expandable setting — controlled via setExpandableWindowControls()
14
15
  // ============================================================================
15
-
16
16
  let _expandableEnabled = true; // Default ON
17
17
 
18
18
  /**
@@ -345,12 +345,12 @@ const styles = _reactNative.StyleSheet.create({
345
345
  flexDirection: "row",
346
346
  alignItems: "center",
347
347
  gap: EXPANDED_BUTTON_SPACING,
348
- backgroundColor: "rgba(16, 22, 35, 0.95)",
348
+ backgroundColor: _gameUIColors.buoyColors.card,
349
349
  borderRadius: (EXPANDED_BUTTON_SIZE + EXPANDED_PADDING * 2) / 2,
350
350
  paddingHorizontal: EXPANDED_PADDING,
351
351
  paddingVertical: EXPANDED_PADDING,
352
352
  borderWidth: 1,
353
- borderColor: "rgba(0, 184, 230, 0.3)",
353
+ borderColor: _gameUIColors.buoyColors.border,
354
354
  shadowColor: "#000",
355
355
  shadowOffset: {
356
356
  width: 0,
@@ -15,7 +15,7 @@
15
15
  * />
16
16
  */
17
17
 
18
- import React, { useMemo, useState, useEffect } from "react";
18
+ import React, { useMemo, useState, useEffect, useRef } from "react";
19
19
  import { View, Text, ScrollView, StyleSheet, TouchableOpacity } from "react-native";
20
20
  import { gameUIColors } from "@buoy-gg/shared-ui";
21
21
 
@@ -338,8 +338,17 @@ export default function TreeDiffViewer({
338
338
  return rootDiff;
339
339
  }, [oldValue, newValue]);
340
340
 
341
- // Auto-expand all first-level nodes whenever the compared values change
341
+ // Key the auto-expand effect off a structural signature, not diffTree itself.
342
+ // Parents commonly pass freshly-parsed values (JSON.parse) on every render,
343
+ // so diffTree would change identity without changing meaning — and reset the
344
+ // user's expansion state on every unrelated re-render.
345
+ const comparisonSignature = useMemo(() => diffTree.map(node => `${node.path.join(".")}:${node.type}`).join("|"), [diffTree]);
346
+ const hasMountedRef = useRef(false);
342
347
  useEffect(() => {
348
+ if (!hasMountedRef.current) {
349
+ hasMountedRef.current = true;
350
+ return;
351
+ }
343
352
  const initial = new Set();
344
353
  diffTree.forEach(node => {
345
354
  if (node.children && node.children.length > 0) {
@@ -347,7 +356,8 @@ export default function TreeDiffViewer({
347
356
  }
348
357
  });
349
358
  setExpandedPaths(initial);
350
- }, [diffTree]);
359
+ // eslint-disable-next-line react-hooks/exhaustive-deps
360
+ }, [comparisonSignature]);
351
361
  const toggleExpanded = path => {
352
362
  const pathStr = path.join(".");
353
363
  setExpandedPaths(prev => {
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * Auto-generated safe area implementation
5
5
  * Detected: none
6
- * Generated at: 2026-04-30T19:48:10.470Z
6
+ * Generated at: 2026-05-06T23:35:45.728Z
7
7
  *
8
8
  * DO NOT EDIT - This file is generated by scripts/detect-safe-area.js
9
9
  *
@@ -143,7 +143,9 @@ export const devToolsStorageKeys = {
143
143
  modal: () => `${devToolsStorageKeys.highlightUpdates.root()}_modal`,
144
144
  isTracking: () => `${devToolsStorageKeys.highlightUpdates.root()}_is_tracking`,
145
145
  filters: () => `${devToolsStorageKeys.highlightUpdates.root()}_filters`,
146
- settings: () => `${devToolsStorageKeys.highlightUpdates.root()}_settings`
146
+ settings: () => `${devToolsStorageKeys.highlightUpdates.root()}_settings`,
147
+ /** Copy/export settings */
148
+ copySettings: () => `${devToolsStorageKeys.highlightUpdates.root()}_copy_settings`
147
149
  },
148
150
  /**
149
151
  * Benchmark-related storage keys
@@ -437,7 +437,7 @@ const styles = StyleSheet.create({
437
437
  minHeight: 68
438
438
  },
439
439
  activeFilterCard: {
440
- backgroundColor: buoyColors.primary + "15",
440
+ backgroundColor: buoyColors.primary + "33",
441
441
  borderColor: buoyColors.primary,
442
442
  borderWidth: 2,
443
443
  // Subtle glow effect like web
@@ -3,11 +3,12 @@
3
3
  import { useState, useRef, useCallback, useEffect } from "react";
4
4
  import { View, TouchableOpacity, TouchableWithoutFeedback, StyleSheet, Animated, Modal } from "react-native";
5
5
  import { X, Minus, DockBottom, FloatWindow } from "../../icons/index.js";
6
- import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
6
+ import { buoyColors } from "../gameUI/constants/gameUIColors.js";
7
+
7
8
  // ============================================================================
8
9
  // Global expandable setting — controlled via setExpandableWindowControls()
9
10
  // ============================================================================
10
-
11
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
11
12
  let _expandableEnabled = true; // Default ON
12
13
 
13
14
  /**
@@ -340,12 +341,12 @@ const styles = StyleSheet.create({
340
341
  flexDirection: "row",
341
342
  alignItems: "center",
342
343
  gap: EXPANDED_BUTTON_SPACING,
343
- backgroundColor: "rgba(16, 22, 35, 0.95)",
344
+ backgroundColor: buoyColors.card,
344
345
  borderRadius: (EXPANDED_BUTTON_SIZE + EXPANDED_PADDING * 2) / 2,
345
346
  paddingHorizontal: EXPANDED_PADDING,
346
347
  paddingVertical: EXPANDED_PADDING,
347
348
  borderWidth: 1,
348
- borderColor: "rgba(0, 184, 230, 0.3)",
349
+ borderColor: buoyColors.border,
349
350
  shadowColor: "#000",
350
351
  shadowOffset: {
351
352
  width: 0,
@@ -1 +1 @@
1
- {"version":3,"file":"TreeDiffViewer.d.ts","sourceRoot":"","sources":["../../../../../src/dataViewer/tree/TreeDiffViewer.tsx"],"names":[],"mappings":"AACA;;;;;;;;;;;;GAYG;AAEH,OAAO,KAAuC,MAAM,OAAO,CAAC;AAqZ5D,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,GAAG,CAAC;IACd,QAAQ,EAAE,GAAG,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EACrC,QAAQ,EACR,QAAQ,EACR,KAAK,EAAE,SAAkB,EACzB,SAAiB,EACjB,aAAoB,GACrB,EAAE,mBAAmB,qBAgcrB"}
1
+ {"version":3,"file":"TreeDiffViewer.d.ts","sourceRoot":"","sources":["../../../../../src/dataViewer/tree/TreeDiffViewer.tsx"],"names":[],"mappings":"AACA;;;;;;;;;;;;GAYG;AAEH,OAAO,KAA+C,MAAM,OAAO,CAAC;AAqZpE,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,GAAG,CAAC;IACd,QAAQ,EAAE,GAAG,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EACrC,QAAQ,EACR,QAAQ,EACR,KAAK,EAAE,SAAkB,EACzB,SAAiB,EACjB,aAAoB,GACrB,EAAE,mBAAmB,qBA+crB"}
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Auto-generated safe area implementation
3
3
  * Detected: none
4
- * Generated at: 2026-04-30T19:48:10.470Z
4
+ * Generated at: 2026-05-06T23:35:45.728Z
5
5
  *
6
6
  * DO NOT EDIT - This file is generated by scripts/detect-safe-area.js
7
7
  *
@@ -140,6 +140,8 @@ export declare const devToolsStorageKeys: {
140
140
  readonly isTracking: () => "@react_buoy_highlight_updates_is_tracking";
141
141
  readonly filters: () => "@react_buoy_highlight_updates_filters";
142
142
  readonly settings: () => "@react_buoy_highlight_updates_settings";
143
+ /** Copy/export settings */
144
+ readonly copySettings: () => "@react_buoy_highlight_updates_copy_settings";
143
145
  };
144
146
  /**
145
147
  * Benchmark-related storage keys
@@ -1 +1 @@
1
- {"version":3,"file":"devToolsStorageKeys.d.ts","sourceRoot":"","sources":["../../../../src/storage/devToolsStorageKeys.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB;IAC9B;;OAEG;;IAGH;;OAEG;;;;;;;IASH;;OAEG;;;;;;;;IAUH;;OAEG;;;;;;QAQD,kDAAkD;;QAElD,gCAAgC;;QAGhC,gCAAgC;;;IAKlC;;OAEG;;;QAGD,mCAAmC;;;IAIrC;;OAEG;;;;;IAOH;;OAEG;;;;;;;IAQH;;OAEG;;;;;;;IASH;;OAEG;;;;;;;;;;;;;;IAuBH;;OAEG;;;;;;;;;;;IAiBH;;OAEG;;;;;;;;;;;IAgBH;;OAEG;;;;;;;;;;IAgBH;;OAEG;;;;;;;;IAYH;;OAEG;;;;;;;;;IAcH;;OAEG;;;;QAID,oCAAoC;;QAGpC,wCAAwC;;QAGxC,2BAA2B;;;CAIrB,CAAC;AAwBX;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAqBzD;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAE9D;AAED;;;GAGG;AACH,wBAAgB,yBAAyB,IAAI,MAAM,EAAE,CAsBpD"}
1
+ {"version":3,"file":"devToolsStorageKeys.d.ts","sourceRoot":"","sources":["../../../../src/storage/devToolsStorageKeys.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB;IAC9B;;OAEG;;IAGH;;OAEG;;;;;;;IASH;;OAEG;;;;;;;;IAUH;;OAEG;;;;;;QAQD,kDAAkD;;QAElD,gCAAgC;;QAGhC,gCAAgC;;;IAKlC;;OAEG;;;QAGD,mCAAmC;;;IAIrC;;OAEG;;;;;IAOH;;OAEG;;;;;;;IAQH;;OAEG;;;;;;;IASH;;OAEG;;;;;;;;;;;;;;IAuBH;;OAEG;;;;;;;;;;;IAiBH;;OAEG;;;;;;;;;;;IAgBH;;OAEG;;;;;;;;;;IAgBH;;OAEG;;;;;;;QAUD,2BAA2B;;;IAK7B;;OAEG;;;;;;;;;IAcH;;OAEG;;;;QAID,oCAAoC;;QAGpC,wCAAwC;;QAGxC,2BAA2B;;;CAIrB,CAAC;AAwBX;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAqBzD;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAE9D;AAED;;;GAGG;AACH,wBAAgB,yBAAyB,IAAI,MAAM,EAAE,CAsBpD"}
@@ -1 +1 @@
1
- {"version":3,"file":"WindowControls.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/WindowControls.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAQ/C;;;GAGG;AACH,wBAAgB,2BAA2B,CAAC,OAAO,EAAE,OAAO,QAE3D;AAMD,UAAU,mBAAmB;IAC3B,+BAA+B;IAC/B,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,4EAA4E;IAC5E,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,sFAAsF;IACtF,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,2EAA2E;IAC3E,IAAI,CAAC,EAAE,SAAS,CAAC;CAClB;AA+BD;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,EAC7B,OAAO,EACP,UAAU,EACV,YAAY,EACZ,IAAI,GACL,EAAE,mBAAmB,+BAoDrB"}
1
+ {"version":3,"file":"WindowControls.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/WindowControls.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAS/C;;;GAGG;AACH,wBAAgB,2BAA2B,CAAC,OAAO,EAAE,OAAO,QAE3D;AAMD,UAAU,mBAAmB;IAC3B,+BAA+B;IAC/B,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,4EAA4E;IAC5E,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,sFAAsF;IACtF,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,2EAA2E;IAC3E,IAAI,CAAC,EAAE,SAAS,CAAC;CAClB;AA+BD;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,EAC7B,OAAO,EACP,UAAU,EACV,YAAY,EACZ,IAAI,GACL,EAAE,mBAAmB,+BAoDrB"}
@@ -1 +1 @@
1
- {"version":3,"file":"TreeDiffViewer.d.ts","sourceRoot":"","sources":["../../../../../src/dataViewer/tree/TreeDiffViewer.tsx"],"names":[],"mappings":"AACA;;;;;;;;;;;;GAYG;AAEH,OAAO,KAAuC,MAAM,OAAO,CAAC;AAqZ5D,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,GAAG,CAAC;IACd,QAAQ,EAAE,GAAG,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EACrC,QAAQ,EACR,QAAQ,EACR,KAAK,EAAE,SAAkB,EACzB,SAAiB,EACjB,aAAoB,GACrB,EAAE,mBAAmB,qBAgcrB"}
1
+ {"version":3,"file":"TreeDiffViewer.d.ts","sourceRoot":"","sources":["../../../../../src/dataViewer/tree/TreeDiffViewer.tsx"],"names":[],"mappings":"AACA;;;;;;;;;;;;GAYG;AAEH,OAAO,KAA+C,MAAM,OAAO,CAAC;AAqZpE,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,GAAG,CAAC;IACd,QAAQ,EAAE,GAAG,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EACrC,QAAQ,EACR,QAAQ,EACR,KAAK,EAAE,SAAkB,EACzB,SAAiB,EACjB,aAAoB,GACrB,EAAE,mBAAmB,qBA+crB"}
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Auto-generated safe area implementation
3
3
  * Detected: none
4
- * Generated at: 2026-04-30T19:48:10.470Z
4
+ * Generated at: 2026-05-06T23:35:45.728Z
5
5
  *
6
6
  * DO NOT EDIT - This file is generated by scripts/detect-safe-area.js
7
7
  *
@@ -140,6 +140,8 @@ export declare const devToolsStorageKeys: {
140
140
  readonly isTracking: () => "@react_buoy_highlight_updates_is_tracking";
141
141
  readonly filters: () => "@react_buoy_highlight_updates_filters";
142
142
  readonly settings: () => "@react_buoy_highlight_updates_settings";
143
+ /** Copy/export settings */
144
+ readonly copySettings: () => "@react_buoy_highlight_updates_copy_settings";
143
145
  };
144
146
  /**
145
147
  * Benchmark-related storage keys
@@ -1 +1 @@
1
- {"version":3,"file":"devToolsStorageKeys.d.ts","sourceRoot":"","sources":["../../../../src/storage/devToolsStorageKeys.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB;IAC9B;;OAEG;;IAGH;;OAEG;;;;;;;IASH;;OAEG;;;;;;;;IAUH;;OAEG;;;;;;QAQD,kDAAkD;;QAElD,gCAAgC;;QAGhC,gCAAgC;;;IAKlC;;OAEG;;;QAGD,mCAAmC;;;IAIrC;;OAEG;;;;;IAOH;;OAEG;;;;;;;IAQH;;OAEG;;;;;;;IASH;;OAEG;;;;;;;;;;;;;;IAuBH;;OAEG;;;;;;;;;;;IAiBH;;OAEG;;;;;;;;;;;IAgBH;;OAEG;;;;;;;;;;IAgBH;;OAEG;;;;;;;;IAYH;;OAEG;;;;;;;;;IAcH;;OAEG;;;;QAID,oCAAoC;;QAGpC,wCAAwC;;QAGxC,2BAA2B;;;CAIrB,CAAC;AAwBX;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAqBzD;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAE9D;AAED;;;GAGG;AACH,wBAAgB,yBAAyB,IAAI,MAAM,EAAE,CAsBpD"}
1
+ {"version":3,"file":"devToolsStorageKeys.d.ts","sourceRoot":"","sources":["../../../../src/storage/devToolsStorageKeys.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB;IAC9B;;OAEG;;IAGH;;OAEG;;;;;;;IASH;;OAEG;;;;;;;;IAUH;;OAEG;;;;;;QAQD,kDAAkD;;QAElD,gCAAgC;;QAGhC,gCAAgC;;;IAKlC;;OAEG;;;QAGD,mCAAmC;;;IAIrC;;OAEG;;;;;IAOH;;OAEG;;;;;;;IAQH;;OAEG;;;;;;;IASH;;OAEG;;;;;;;;;;;;;;IAuBH;;OAEG;;;;;;;;;;;IAiBH;;OAEG;;;;;;;;;;;IAgBH;;OAEG;;;;;;;;;;IAgBH;;OAEG;;;;;;;QAUD,2BAA2B;;;IAK7B;;OAEG;;;;;;;;;IAcH;;OAEG;;;;QAID,oCAAoC;;QAGpC,wCAAwC;;QAGxC,2BAA2B;;;CAIrB,CAAC;AAwBX;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAqBzD;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAE9D;AAED;;;GAGG;AACH,wBAAgB,yBAAyB,IAAI,MAAM,EAAE,CAsBpD"}
@@ -1 +1 @@
1
- {"version":3,"file":"WindowControls.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/WindowControls.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAQ/C;;;GAGG;AACH,wBAAgB,2BAA2B,CAAC,OAAO,EAAE,OAAO,QAE3D;AAMD,UAAU,mBAAmB;IAC3B,+BAA+B;IAC/B,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,4EAA4E;IAC5E,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,sFAAsF;IACtF,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,2EAA2E;IAC3E,IAAI,CAAC,EAAE,SAAS,CAAC;CAClB;AA+BD;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,EAC7B,OAAO,EACP,UAAU,EACV,YAAY,EACZ,IAAI,GACL,EAAE,mBAAmB,+BAoDrB"}
1
+ {"version":3,"file":"WindowControls.d.ts","sourceRoot":"","sources":["../../../../../src/ui/components/WindowControls.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAS/C;;;GAGG;AACH,wBAAgB,2BAA2B,CAAC,OAAO,EAAE,OAAO,QAE3D;AAMD,UAAU,mBAAmB;IAC3B,+BAA+B;IAC/B,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,4EAA4E;IAC5E,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,sFAAsF;IACtF,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,2EAA2E;IAC3E,IAAI,CAAC,EAAE,SAAS,CAAC;CAClB;AA+BD;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,EAC7B,OAAO,EACP,UAAU,EACV,YAAY,EACZ,IAAI,GACL,EAAE,mBAAmB,+BAoDrB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buoy-gg/shared-ui",
3
- "version": "2.1.13",
3
+ "version": "2.1.15",
4
4
  "description": "Shared UI components, hooks, and utilities",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "module": "lib/module/index.js",
@@ -115,10 +115,10 @@
115
115
  ],
116
116
  "sideEffects": false,
117
117
  "dependencies": {
118
- "@buoy-gg/floating-tools-core": "2.1.13"
118
+ "@buoy-gg/floating-tools-core": "2.1.15"
119
119
  },
120
120
  "peerDependencies": {
121
- "@buoy-gg/license": "2.1.13",
121
+ "@buoy-gg/license": "2.1.15",
122
122
  "@react-native-clipboard/clipboard": "*",
123
123
  "expo-clipboard": "*",
124
124
  "expo-file-system": "*",
@@ -146,7 +146,7 @@
146
146
  "expo-clipboard": "~7.1.5",
147
147
  "react-native-safe-area-context": "^5.6.2",
148
148
  "typescript": "~5.8.3",
149
- "@buoy-gg/license": "2.1.13"
149
+ "@buoy-gg/license": "2.1.15"
150
150
  },
151
151
  "react-native-builder-bob": {
152
152
  "source": "src",