@buoy-gg/core 2.1.2 → 2.1.4-beta.0
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/Buoy.js +5 -3
- package/lib/commonjs/floatingMenu/FloatingDevTools.js +27 -0
- package/lib/module/Buoy.js +5 -3
- package/lib/module/floatingMenu/FloatingDevTools.js +30 -3
- package/lib/typescript/commonjs/Buoy.d.ts +2 -1
- package/lib/typescript/commonjs/Buoy.d.ts.map +1 -1
- package/lib/typescript/commonjs/floatingMenu/FloatingDevTools.d.ts +13 -1
- package/lib/typescript/commonjs/floatingMenu/FloatingDevTools.d.ts.map +1 -1
- package/lib/typescript/module/Buoy.d.ts +2 -1
- package/lib/typescript/module/Buoy.d.ts.map +1 -1
- package/lib/typescript/module/floatingMenu/FloatingDevTools.d.ts +13 -1
- package/lib/typescript/module/floatingMenu/FloatingDevTools.d.ts.map +1 -1
- package/package.json +5 -5
package/lib/commonjs/Buoy.js
CHANGED
|
@@ -48,13 +48,15 @@ const Buoy = exports.Buoy = {
|
|
|
48
48
|
* ```
|
|
49
49
|
*/
|
|
50
50
|
init(config) {
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
// If no license key or empty string, clear any cached license
|
|
52
|
+
if (!config.licenseKey || config.licenseKey.trim() === "") {
|
|
53
|
+
_license.LicenseManager.initialize().then(() => _license.LicenseManager.clearLicense()).catch(() => {});
|
|
53
54
|
return;
|
|
54
55
|
}
|
|
55
56
|
|
|
56
57
|
// Initialize the license manager and set the key
|
|
57
|
-
|
|
58
|
+
const key = config.licenseKey; // We've already checked it's not empty above
|
|
59
|
+
_license.LicenseManager.initialize().then(() => _license.LicenseManager.setLicenseKey(key)).catch(error => {
|
|
58
60
|
console.warn("[Buoy] License initialization failed:", error);
|
|
59
61
|
});
|
|
60
62
|
},
|
|
@@ -109,16 +109,33 @@ const FloatingDevTools = ({
|
|
|
109
109
|
disableHints = false,
|
|
110
110
|
defaultFloatingTools,
|
|
111
111
|
defaultDialTools,
|
|
112
|
+
requireLicense = false,
|
|
112
113
|
...props
|
|
113
114
|
}) => {
|
|
114
115
|
// Check Pro status for production gating
|
|
115
116
|
const isPro = (0, _license.useIsPro)();
|
|
116
117
|
|
|
118
|
+
// Get full license state for requireLicense gating
|
|
119
|
+
const {
|
|
120
|
+
licenseKey,
|
|
121
|
+
isInitialized
|
|
122
|
+
} = (0, _license.useLicense)();
|
|
123
|
+
const [showLicenseModal, setShowLicenseModal] = (0, _react.useState)(false);
|
|
124
|
+
|
|
117
125
|
// Initialize license manager on mount
|
|
118
126
|
(0, _react.useEffect)(() => {
|
|
119
127
|
_license.LicenseManager.initialize();
|
|
120
128
|
}, []);
|
|
121
129
|
|
|
130
|
+
// Show license modal if requireLicense is enabled and no valid license
|
|
131
|
+
(0, _react.useEffect)(() => {
|
|
132
|
+
if (requireLicense && isInitialized && !licenseKey) {
|
|
133
|
+
setShowLicenseModal(true);
|
|
134
|
+
} else if (licenseKey) {
|
|
135
|
+
setShowLicenseModal(false);
|
|
136
|
+
}
|
|
137
|
+
}, [requireLicense, isInitialized, licenseKey]);
|
|
138
|
+
|
|
122
139
|
// Normalize dial tools configuration (truncates to max 6 with warning if needed)
|
|
123
140
|
const normalizedDialTools = (0, _react.useMemo)(() => {
|
|
124
141
|
if (defaultDialTools) {
|
|
@@ -234,6 +251,16 @@ const FloatingDevTools = ({
|
|
|
234
251
|
return null;
|
|
235
252
|
}
|
|
236
253
|
|
|
254
|
+
// Gate: If requireLicense is enabled and no license, show only the license modal
|
|
255
|
+
if (requireLicense && isInitialized && !licenseKey) {
|
|
256
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_sharedUi.LicenseEntryModal, {
|
|
257
|
+
visible: showLicenseModal,
|
|
258
|
+
onClose: () => {} // Can't close without entering a license
|
|
259
|
+
,
|
|
260
|
+
onSuccess: () => setShowLicenseModal(false)
|
|
261
|
+
});
|
|
262
|
+
}
|
|
263
|
+
|
|
237
264
|
// Session blocking is handled inline by JsModal's SessionBlockedOverlay
|
|
238
265
|
// No need to replace the entire UI - tools still render, but content is blocked
|
|
239
266
|
|
package/lib/module/Buoy.js
CHANGED
|
@@ -44,13 +44,15 @@ export const Buoy = {
|
|
|
44
44
|
* ```
|
|
45
45
|
*/
|
|
46
46
|
init(config) {
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
// If no license key or empty string, clear any cached license
|
|
48
|
+
if (!config.licenseKey || config.licenseKey.trim() === "") {
|
|
49
|
+
LicenseManager.initialize().then(() => LicenseManager.clearLicense()).catch(() => {});
|
|
49
50
|
return;
|
|
50
51
|
}
|
|
51
52
|
|
|
52
53
|
// Initialize the license manager and set the key
|
|
53
|
-
|
|
54
|
+
const key = config.licenseKey; // We've already checked it's not empty above
|
|
55
|
+
LicenseManager.initialize().then(() => LicenseManager.setLicenseKey(key)).catch(error => {
|
|
54
56
|
console.warn("[Buoy] License initialization failed:", error);
|
|
55
57
|
});
|
|
56
58
|
},
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import React, { useMemo, useCallback, useEffect } from "react";
|
|
3
|
+
import React, { useMemo, useCallback, useEffect, useState } from "react";
|
|
4
4
|
import { View, StyleSheet } from "react-native";
|
|
5
5
|
import { AppHostProvider } from "./AppHost.js";
|
|
6
6
|
import { FloatingMenu } from "./FloatingMenu.js";
|
|
7
7
|
import { AppOverlay } from "./AppHost.js";
|
|
8
8
|
import { autoDiscoverPresets, autoDiscoverPresetsWithCustom } from "./autoDiscoverPresets.js";
|
|
9
9
|
import { DevToolsVisibilityProvider } from "./DevToolsVisibilityContext.js";
|
|
10
|
-
import { HintsProvider } from "@buoy-gg/shared-ui";
|
|
10
|
+
import { HintsProvider, LicenseEntryModal } from "@buoy-gg/shared-ui";
|
|
11
11
|
import { MinimizedToolsProvider } from "./MinimizedToolsContext.js";
|
|
12
12
|
import { validateDialConfig } from "./defaultConfig.js";
|
|
13
13
|
import { DefaultConfigProvider } from "./DefaultConfigContext.js";
|
|
14
|
-
import { LicenseManager, useIsPro } from "@buoy-gg/license";
|
|
14
|
+
import { LicenseManager, useIsPro, useLicense } from "@buoy-gg/license";
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* Environment variable configuration
|
|
@@ -105,16 +105,33 @@ export const FloatingDevTools = ({
|
|
|
105
105
|
disableHints = false,
|
|
106
106
|
defaultFloatingTools,
|
|
107
107
|
defaultDialTools,
|
|
108
|
+
requireLicense = false,
|
|
108
109
|
...props
|
|
109
110
|
}) => {
|
|
110
111
|
// Check Pro status for production gating
|
|
111
112
|
const isPro = useIsPro();
|
|
112
113
|
|
|
114
|
+
// Get full license state for requireLicense gating
|
|
115
|
+
const {
|
|
116
|
+
licenseKey,
|
|
117
|
+
isInitialized
|
|
118
|
+
} = useLicense();
|
|
119
|
+
const [showLicenseModal, setShowLicenseModal] = useState(false);
|
|
120
|
+
|
|
113
121
|
// Initialize license manager on mount
|
|
114
122
|
useEffect(() => {
|
|
115
123
|
LicenseManager.initialize();
|
|
116
124
|
}, []);
|
|
117
125
|
|
|
126
|
+
// Show license modal if requireLicense is enabled and no valid license
|
|
127
|
+
useEffect(() => {
|
|
128
|
+
if (requireLicense && isInitialized && !licenseKey) {
|
|
129
|
+
setShowLicenseModal(true);
|
|
130
|
+
} else if (licenseKey) {
|
|
131
|
+
setShowLicenseModal(false);
|
|
132
|
+
}
|
|
133
|
+
}, [requireLicense, isInitialized, licenseKey]);
|
|
134
|
+
|
|
118
135
|
// Normalize dial tools configuration (truncates to max 6 with warning if needed)
|
|
119
136
|
const normalizedDialTools = useMemo(() => {
|
|
120
137
|
if (defaultDialTools) {
|
|
@@ -230,6 +247,16 @@ export const FloatingDevTools = ({
|
|
|
230
247
|
return null;
|
|
231
248
|
}
|
|
232
249
|
|
|
250
|
+
// Gate: If requireLicense is enabled and no license, show only the license modal
|
|
251
|
+
if (requireLicense && isInitialized && !licenseKey) {
|
|
252
|
+
return /*#__PURE__*/_jsx(LicenseEntryModal, {
|
|
253
|
+
visible: showLicenseModal,
|
|
254
|
+
onClose: () => {} // Can't close without entering a license
|
|
255
|
+
,
|
|
256
|
+
onSuccess: () => setShowLicenseModal(false)
|
|
257
|
+
});
|
|
258
|
+
}
|
|
259
|
+
|
|
233
260
|
// Session blocking is handled inline by JsModal's SessionBlockedOverlay
|
|
234
261
|
// No need to replace the entire UI - tools still render, but content is blocked
|
|
235
262
|
|
|
@@ -16,8 +16,9 @@ export interface BuoyConfig {
|
|
|
16
16
|
/**
|
|
17
17
|
* Your Buoy Pro license key
|
|
18
18
|
* Get one at https://buoy.gg/pricing
|
|
19
|
+
* Pass empty string or omit to clear cached license and use free mode
|
|
19
20
|
*/
|
|
20
|
-
licenseKey
|
|
21
|
+
licenseKey?: string;
|
|
21
22
|
}
|
|
22
23
|
/**
|
|
23
24
|
* Buoy SDK namespace
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Buoy.d.ts","sourceRoot":"","sources":["../../../src/Buoy.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAIH,MAAM,WAAW,UAAU;IACzB
|
|
1
|
+
{"version":3,"file":"Buoy.d.ts","sourceRoot":"","sources":["../../../src/Buoy.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAIH,MAAM,WAAW,UAAU;IACzB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;;GAIG;AACH,eAAO,MAAM,IAAI;IACf;;;;;;;;;;;;;;;;;;;;OAoBG;iBACU,UAAU,GAAG,IAAI;IAkB9B;;;;;;;;;;;;OAYG;sBACqB,UAAU,GAAG,OAAO,CAAC,OAAO,CAAC;IAUrD;;OAEG;aACM,OAAO;IAIhB;;OAEG;;IAKH;;;OAGG;uBACsB,OAAO,CAAC,IAAI,CAAC;CAGvC,CAAC;AAGF,eAAe,IAAI,CAAC"}
|
|
@@ -187,6 +187,18 @@ export interface FloatingDevToolsProps extends Omit<FloatingMenuProps, "apps"> {
|
|
|
187
187
|
* ```
|
|
188
188
|
*/
|
|
189
189
|
onEnvironmentSwitch?: (environment: import("@buoy-gg/shared-ui").Environment) => void;
|
|
190
|
+
/**
|
|
191
|
+
* Require a valid license key to use the DevTools.
|
|
192
|
+
* When enabled, users must enter a license key (free or pro) before
|
|
193
|
+
* they can access any tools. Great for tracking user signups.
|
|
194
|
+
*
|
|
195
|
+
* @default false
|
|
196
|
+
* @example
|
|
197
|
+
* ```tsx
|
|
198
|
+
* <FloatingDevTools requireLicense />
|
|
199
|
+
* ```
|
|
200
|
+
*/
|
|
201
|
+
requireLicense?: boolean;
|
|
190
202
|
}
|
|
191
203
|
/**
|
|
192
204
|
* Unified floating development tools component with automatic preset discovery.
|
|
@@ -242,5 +254,5 @@ export interface FloatingDevToolsProps extends Omit<FloatingMenuProps, "apps"> {
|
|
|
242
254
|
*
|
|
243
255
|
* @param props - FloatingDevTools props
|
|
244
256
|
*/
|
|
245
|
-
export declare const FloatingDevTools: ({ apps, requiredEnvVars, requiredStorageKeys, children, disableHints, defaultFloatingTools, defaultDialTools, ...props }: FloatingDevToolsProps) => React.JSX.Element | null;
|
|
257
|
+
export declare const FloatingDevTools: ({ apps, requiredEnvVars, requiredStorageKeys, children, disableHints, defaultFloatingTools, defaultDialTools, requireLicense, ...props }: FloatingDevToolsProps) => React.JSX.Element | null;
|
|
246
258
|
//# sourceMappingURL=FloatingDevTools.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FloatingDevTools.d.ts","sourceRoot":"","sources":["../../../../src/floatingMenu/FloatingDevTools.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"FloatingDevTools.d.ts","sourceRoot":"","sources":["../../../../src/floatingMenu/FloatingDevTools.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+D,MAAM,OAAO,CAAC;AAGpF,OAAO,EAAgB,KAAK,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAMtE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAI5C,OAAO,EACL,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EAEvB,MAAM,iBAAiB,CAAC;AAIzB;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,MAAM,YAAY,GACpB,MAAM,GACN;IACE,GAAG,EAAE,MAAM,CAAC;IACZ,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,GACD;IACE,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,EACR,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,OAAO,GACP,KAAK,CAAC;IACV,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEN;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC1D,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;CAC1C;AAED;;;;;;GAMG;AACH,MAAM,WAAW,qBAAsB,SAAQ,IAAI,CAAC,iBAAiB,EAAE,MAAM,CAAC;IAC5E;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,IAAI,CAAC,EAAE,YAAY,EAAE,CAAC;IAEtB;;;;;;;;;;;;;;OAcG;IACH,eAAe,CAAC,EAAE,YAAY,EAAE,CAAC;IAEjC;;;;;;;;;;;;OAYG;IACH,mBAAmB,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAEzC;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;;;;;;;;OASG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB;;;;;;;;;;;;;OAaG;IACH,oBAAoB,CAAC,EAAE,qBAAqB,CAAC;IAE7C;;;;;;;;;;;;;;OAcG;IACH,gBAAgB,CAAC,EAAE,iBAAiB,CAAC;IAErC;;;;;;;;;;;;;;;;OAgBG;IACH,qBAAqB,CAAC,EAAE,OAAO,oBAAoB,EAAE,WAAW,EAAE,CAAC;IAEnE;;;;;;;;;;;;;OAaG;IACH,mBAAmB,CAAC,EAAE,CAAC,WAAW,EAAE,OAAO,oBAAoB,EAAE,WAAW,KAAK,IAAI,CAAC;IAEtF;;;;;;;;;;OAUG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqDG;AACH,eAAO,MAAM,gBAAgB,GAAI,0IAU9B,qBAAqB,6BA8KvB,CAAC"}
|
|
@@ -16,8 +16,9 @@ export interface BuoyConfig {
|
|
|
16
16
|
/**
|
|
17
17
|
* Your Buoy Pro license key
|
|
18
18
|
* Get one at https://buoy.gg/pricing
|
|
19
|
+
* Pass empty string or omit to clear cached license and use free mode
|
|
19
20
|
*/
|
|
20
|
-
licenseKey
|
|
21
|
+
licenseKey?: string;
|
|
21
22
|
}
|
|
22
23
|
/**
|
|
23
24
|
* Buoy SDK namespace
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Buoy.d.ts","sourceRoot":"","sources":["../../../src/Buoy.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAIH,MAAM,WAAW,UAAU;IACzB
|
|
1
|
+
{"version":3,"file":"Buoy.d.ts","sourceRoot":"","sources":["../../../src/Buoy.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAIH,MAAM,WAAW,UAAU;IACzB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;;GAIG;AACH,eAAO,MAAM,IAAI;IACf;;;;;;;;;;;;;;;;;;;;OAoBG;iBACU,UAAU,GAAG,IAAI;IAkB9B;;;;;;;;;;;;OAYG;sBACqB,UAAU,GAAG,OAAO,CAAC,OAAO,CAAC;IAUrD;;OAEG;aACM,OAAO;IAIhB;;OAEG;;IAKH;;;OAGG;uBACsB,OAAO,CAAC,IAAI,CAAC;CAGvC,CAAC;AAGF,eAAe,IAAI,CAAC"}
|
|
@@ -187,6 +187,18 @@ export interface FloatingDevToolsProps extends Omit<FloatingMenuProps, "apps"> {
|
|
|
187
187
|
* ```
|
|
188
188
|
*/
|
|
189
189
|
onEnvironmentSwitch?: (environment: import("@buoy-gg/shared-ui").Environment) => void;
|
|
190
|
+
/**
|
|
191
|
+
* Require a valid license key to use the DevTools.
|
|
192
|
+
* When enabled, users must enter a license key (free or pro) before
|
|
193
|
+
* they can access any tools. Great for tracking user signups.
|
|
194
|
+
*
|
|
195
|
+
* @default false
|
|
196
|
+
* @example
|
|
197
|
+
* ```tsx
|
|
198
|
+
* <FloatingDevTools requireLicense />
|
|
199
|
+
* ```
|
|
200
|
+
*/
|
|
201
|
+
requireLicense?: boolean;
|
|
190
202
|
}
|
|
191
203
|
/**
|
|
192
204
|
* Unified floating development tools component with automatic preset discovery.
|
|
@@ -242,5 +254,5 @@ export interface FloatingDevToolsProps extends Omit<FloatingMenuProps, "apps"> {
|
|
|
242
254
|
*
|
|
243
255
|
* @param props - FloatingDevTools props
|
|
244
256
|
*/
|
|
245
|
-
export declare const FloatingDevTools: ({ apps, requiredEnvVars, requiredStorageKeys, children, disableHints, defaultFloatingTools, defaultDialTools, ...props }: FloatingDevToolsProps) => React.JSX.Element | null;
|
|
257
|
+
export declare const FloatingDevTools: ({ apps, requiredEnvVars, requiredStorageKeys, children, disableHints, defaultFloatingTools, defaultDialTools, requireLicense, ...props }: FloatingDevToolsProps) => React.JSX.Element | null;
|
|
246
258
|
//# sourceMappingURL=FloatingDevTools.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FloatingDevTools.d.ts","sourceRoot":"","sources":["../../../../src/floatingMenu/FloatingDevTools.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"FloatingDevTools.d.ts","sourceRoot":"","sources":["../../../../src/floatingMenu/FloatingDevTools.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+D,MAAM,OAAO,CAAC;AAGpF,OAAO,EAAgB,KAAK,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAMtE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAI5C,OAAO,EACL,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EAEvB,MAAM,iBAAiB,CAAC;AAIzB;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,MAAM,YAAY,GACpB,MAAM,GACN;IACE,GAAG,EAAE,MAAM,CAAC;IACZ,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,GACD;IACE,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,EACR,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,OAAO,GACP,KAAK,CAAC;IACV,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEN;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,CAAC;IAC1D,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;CAC1C;AAED;;;;;;GAMG;AACH,MAAM,WAAW,qBAAsB,SAAQ,IAAI,CAAC,iBAAiB,EAAE,MAAM,CAAC;IAC5E;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,IAAI,CAAC,EAAE,YAAY,EAAE,CAAC;IAEtB;;;;;;;;;;;;;;OAcG;IACH,eAAe,CAAC,EAAE,YAAY,EAAE,CAAC;IAEjC;;;;;;;;;;;;OAYG;IACH,mBAAmB,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAEzC;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;;;;;;;;OASG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB;;;;;;;;;;;;;OAaG;IACH,oBAAoB,CAAC,EAAE,qBAAqB,CAAC;IAE7C;;;;;;;;;;;;;;OAcG;IACH,gBAAgB,CAAC,EAAE,iBAAiB,CAAC;IAErC;;;;;;;;;;;;;;;;OAgBG;IACH,qBAAqB,CAAC,EAAE,OAAO,oBAAoB,EAAE,WAAW,EAAE,CAAC;IAEnE;;;;;;;;;;;;;OAaG;IACH,mBAAmB,CAAC,EAAE,CAAC,WAAW,EAAE,OAAO,oBAAoB,EAAE,WAAW,KAAK,IAAI,CAAC;IAEtF;;;;;;;;;;OAUG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqDG;AACH,eAAO,MAAM,gBAAgB,GAAI,0IAU9B,qBAAqB,6BA8KvB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buoy-gg/core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4-beta.0",
|
|
4
4
|
"description": "Floating dev tools launcher and AppHost",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
],
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@buoy-gg/shared-ui": "2.1.
|
|
26
|
-
"@buoy-gg/license": "2.1.
|
|
27
|
-
"@buoy-gg/floating-tools-core": "2.1.
|
|
28
|
-
"@buoy-gg/floating-tools-react": "2.1.
|
|
25
|
+
"@buoy-gg/shared-ui": "2.1.4-beta.0",
|
|
26
|
+
"@buoy-gg/license": "2.1.4-beta.0",
|
|
27
|
+
"@buoy-gg/floating-tools-core": "2.1.4-beta.0",
|
|
28
|
+
"@buoy-gg/floating-tools-react": "2.1.4-beta.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"react": "*",
|