@buoy-gg/debug-borders 2.0.8 → 2.1.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.
|
@@ -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
|
}
|
package/lib/commonjs/preset.js
CHANGED
|
@@ -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: "
|
|
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: "
|
|
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
|
}
|
package/lib/module/preset.js
CHANGED
|
@@ -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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
94
|
+
slot: "row";
|
|
95
95
|
icon: ({ size }: {
|
|
96
96
|
size: number;
|
|
97
97
|
}) => React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,19 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buoy-gg/debug-borders",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "debug-borders package",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
7
7
|
"types": "lib/typescript/index.d.ts",
|
|
8
8
|
"react-native": "lib/module/index.js",
|
|
9
9
|
"source": "src/index.tsx",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"react-native": "./lib/module/index.js",
|
|
13
|
+
"import": {
|
|
14
|
+
"default": "./lib/module/index.js",
|
|
15
|
+
"types": "./lib/typescript/index.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"require": {
|
|
18
|
+
"default": "./lib/commonjs/index.js",
|
|
19
|
+
"types": "./lib/typescript/index.d.ts"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
10
24
|
"files": [
|
|
11
25
|
"lib"
|
|
12
26
|
],
|
|
13
27
|
"sideEffects": false,
|
|
14
28
|
"dependencies": {
|
|
15
|
-
"@buoy-gg/core": "1.
|
|
16
|
-
"@buoy-gg/shared-ui": "1.
|
|
29
|
+
"@buoy-gg/core": "2.1.1",
|
|
30
|
+
"@buoy-gg/shared-ui": "2.1.1"
|
|
17
31
|
},
|
|
18
32
|
"peerDependencies": {
|
|
19
33
|
"react": "*",
|
|
@@ -28,7 +42,8 @@
|
|
|
28
42
|
"devDependencies": {
|
|
29
43
|
"@types/react": "^19.1.0",
|
|
30
44
|
"@types/react-native": "^0.73.0",
|
|
31
|
-
"typescript": "~5.8.3"
|
|
45
|
+
"typescript": "~5.8.3",
|
|
46
|
+
"@buoy-gg/license": "2.1.1"
|
|
32
47
|
},
|
|
33
48
|
"react-native-builder-bob": {
|
|
34
49
|
"source": "src",
|