@buoy-gg/debug-borders 2.0.5 → 2.0.9

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.
@@ -10,7 +10,7 @@ function loadLicenseModule() {
10
10
  if (_licenseLoadAttempted) return;
11
11
  _licenseLoadAttempted = true;
12
12
  try {
13
- const mod = require("@buoy/license");
13
+ const mod = require("@buoy-gg/license");
14
14
  if (mod && typeof mod.isPro === "function") {
15
15
  _isPro = mod.isPro;
16
16
  }
@@ -100,7 +100,7 @@ const debugBordersToolPreset = exports.debugBordersToolPreset = {
100
100
  id: "debug-borders",
101
101
  name: "BORDERS",
102
102
  description: "Visual layout debugger - tap to cycle modes",
103
- slot: "menu",
103
+ slot: "row",
104
104
  icon: BordersIcon,
105
105
  component: EmptyComponent,
106
106
  props: {},
@@ -160,7 +160,7 @@ function createDebugBordersTool(options) {
160
160
  id: options?.id || "debug-borders",
161
161
  name: options?.name || "BORDERS",
162
162
  description: options?.description || "Visual layout debugger - tap to cycle modes",
163
- slot: "menu",
163
+ slot: "row",
164
164
  icon: CustomBordersIcon,
165
165
  component: EmptyComponent,
166
166
  props: {},
@@ -10,7 +10,7 @@ function loadLicenseModule() {
10
10
  if (_licenseLoadAttempted) return;
11
11
  _licenseLoadAttempted = true;
12
12
  try {
13
- const mod = require("@buoy/license");
13
+ const mod = require("@buoy-gg/license");
14
14
  if (mod && typeof mod.isPro === "function") {
15
15
  _isPro = mod.isPro;
16
16
  }
@@ -87,7 +87,7 @@ export const debugBordersToolPreset = {
87
87
  id: "debug-borders",
88
88
  name: "BORDERS",
89
89
  description: "Visual layout debugger - tap to cycle modes",
90
- slot: "menu",
90
+ slot: "row",
91
91
  icon: BordersIcon,
92
92
  component: EmptyComponent,
93
93
  props: {},
@@ -147,7 +147,7 @@ export function createDebugBordersTool(options) {
147
147
  id: options?.id || "debug-borders",
148
148
  name: options?.name || "BORDERS",
149
149
  description: options?.description || "Visual layout debugger - tap to cycle modes",
150
- slot: "menu",
150
+ slot: "row",
151
151
  icon: CustomBordersIcon,
152
152
  component: EmptyComponent,
153
153
  props: {},
@@ -51,7 +51,7 @@ export declare const debugBordersToolPreset: {
51
51
  id: string;
52
52
  name: string;
53
53
  description: string;
54
- slot: "menu";
54
+ slot: "row";
55
55
  icon: typeof BordersIcon;
56
56
  component: typeof EmptyComponent;
57
57
  props: {};
@@ -91,7 +91,7 @@ export declare function createDebugBordersTool(options?: {
91
91
  id: string;
92
92
  name: string;
93
93
  description: string;
94
- slot: "menu";
94
+ slot: "row";
95
95
  icon: ({ size }: {
96
96
  size: number;
97
97
  }) => React.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buoy-gg/debug-borders",
3
- "version": "2.0.5",
3
+ "version": "2.0.9",
4
4
  "description": "debug-borders package",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "module": "lib/module/index.js",
@@ -12,8 +12,8 @@
12
12
  ],
13
13
  "sideEffects": false,
14
14
  "dependencies": {
15
- "@buoy-gg/core": "1.7.5",
16
- "@buoy-gg/shared-ui": "1.7.5"
15
+ "@buoy-gg/shared-ui": "1.7.8",
16
+ "@buoy-gg/core": "1.7.8"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "react": "*",
@@ -28,7 +28,8 @@
28
28
  "devDependencies": {
29
29
  "@types/react": "^19.1.0",
30
30
  "@types/react-native": "^0.73.0",
31
- "typescript": "~5.8.3"
31
+ "typescript": "~5.8.3",
32
+ "@buoy-gg/license": "1.7.8"
32
33
  },
33
34
  "react-native-builder-bob": {
34
35
  "source": "src",