@buoy-gg/shared-ui 1.7.3 → 1.7.5
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/clipboard/clipboard-impl.js +1 -1
- package/lib/commonjs/hooks/safe-area-impl.js +1 -1
- package/lib/module/clipboard/clipboard-impl.js +1 -1
- package/lib/module/hooks/safe-area-impl.js +1 -1
- package/lib/typescript/commonjs/clipboard/clipboard-impl.d.ts +1 -1
- package/lib/typescript/commonjs/hooks/safe-area-impl.d.ts +1 -1
- package/lib/typescript/module/clipboard/clipboard-impl.d.ts +1 -1
- package/lib/typescript/module/hooks/safe-area-impl.d.ts +1 -1
- package/package.json +16 -17
|
@@ -7,7 +7,7 @@ exports.isClipboardAvailable = exports.clipboardType = exports.clipboardFunction
|
|
|
7
7
|
/**
|
|
8
8
|
* Auto-generated clipboard implementation
|
|
9
9
|
* Detected: none
|
|
10
|
-
* Generated at: 2026-01-
|
|
10
|
+
* Generated at: 2026-01-03T17:31:10.965Z
|
|
11
11
|
*
|
|
12
12
|
* DO NOT EDIT - This file is generated by scripts/detect-clipboard.js
|
|
13
13
|
*
|
|
@@ -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-01-
|
|
10
|
+
* Generated at: 2026-01-03T17:31:10.990Z
|
|
11
11
|
*
|
|
12
12
|
* DO NOT EDIT - This file is generated by scripts/detect-safe-area.js
|
|
13
13
|
*
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buoy-gg/shared-ui",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"description": "Shared UI components, hooks, and utilities",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
7
7
|
"types": "lib/typescript/module/index.d.ts",
|
|
8
|
-
"react-native": "
|
|
8
|
+
"react-native": "lib/module/index.js",
|
|
9
9
|
"source": "src/index.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"react-native": "./
|
|
12
|
+
"react-native": "./lib/module/index.js",
|
|
13
13
|
"import": {
|
|
14
14
|
"default": "./lib/module/index.js",
|
|
15
15
|
"types": "./lib/typescript/module/index.d.ts"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"./ui": {
|
|
23
|
-
"react-native": "./
|
|
23
|
+
"react-native": "./lib/module/ui/index.js",
|
|
24
24
|
"import": {
|
|
25
25
|
"default": "./lib/module/ui/index.js",
|
|
26
26
|
"types": "./lib/typescript/module/ui/index.d.ts"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"./hooks": {
|
|
34
|
-
"react-native": "./
|
|
34
|
+
"react-native": "./lib/module/hooks/index.js",
|
|
35
35
|
"import": {
|
|
36
36
|
"default": "./lib/module/hooks/index.js",
|
|
37
37
|
"types": "./lib/typescript/module/hooks/index.d.ts"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"./utils": {
|
|
45
|
-
"react-native": "./
|
|
45
|
+
"react-native": "./lib/module/utils/index.js",
|
|
46
46
|
"import": {
|
|
47
47
|
"default": "./lib/module/utils/index.js",
|
|
48
48
|
"types": "./lib/typescript/module/utils/index.d.ts"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
"./dataViewer": {
|
|
56
|
-
"react-native": "./
|
|
56
|
+
"react-native": "./lib/module/dataViewer/index.js",
|
|
57
57
|
"import": {
|
|
58
58
|
"default": "./lib/module/dataViewer/index.js",
|
|
59
59
|
"types": "./lib/typescript/module/dataViewer/index.d.ts"
|
|
@@ -97,16 +97,8 @@
|
|
|
97
97
|
"scripts"
|
|
98
98
|
],
|
|
99
99
|
"sideEffects": false,
|
|
100
|
-
"scripts": {
|
|
101
|
-
"postinstall": "node scripts/detect-clipboard.js && node scripts/detect-safe-area.js",
|
|
102
|
-
"build": "bob build",
|
|
103
|
-
"typecheck": "tsc --noEmit",
|
|
104
|
-
"prepublishOnly": "REACT_BUOY_FALLBACK=1 node scripts/detect-clipboard.js && REACT_BUOY_FALLBACK=1 node scripts/detect-safe-area.js && bob build",
|
|
105
|
-
"clean": "rimraf lib",
|
|
106
|
-
"test": "pnpm run typecheck"
|
|
107
|
-
},
|
|
108
100
|
"dependencies": {
|
|
109
|
-
"@buoy-gg/floating-tools-core": "
|
|
101
|
+
"@buoy-gg/floating-tools-core": "1.7.5"
|
|
110
102
|
},
|
|
111
103
|
"peerDependencies": {
|
|
112
104
|
"react": "*",
|
|
@@ -168,5 +160,12 @@
|
|
|
168
160
|
"publishConfig": {
|
|
169
161
|
"access": "public",
|
|
170
162
|
"tag": "latest"
|
|
163
|
+
},
|
|
164
|
+
"scripts": {
|
|
165
|
+
"postinstall": "node scripts/detect-clipboard.js && node scripts/detect-safe-area.js",
|
|
166
|
+
"build": "bob build",
|
|
167
|
+
"typecheck": "tsc --noEmit",
|
|
168
|
+
"clean": "rimraf lib",
|
|
169
|
+
"test": "pnpm run typecheck"
|
|
171
170
|
}
|
|
172
|
-
}
|
|
171
|
+
}
|