@oxyhq/bloom 1.9.1 → 1.9.2

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.
@@ -107,8 +107,15 @@ return before the `require` is ever reached:
107
107
  | `expo-haptics` | `useHaptics` returns on web (`hooks/use-haptics.tsx:47`) |
108
108
 
109
109
  Note the two different reasons: a platform guard inside the file, and a whole
110
- `.web` fork of the family. Checking only the first is how this guide came to
111
- name the connection toasts.
110
+ `.web` fork of the family.
111
+
112
+ > **Before claiming what a consumer loses, check which platform variant their
113
+ > bundler resolves.** This guide named the connection toasts as a casualty
114
+ > because the `.tsx` was read and the `.web.tsx` beside it was not — and the
115
+ > `.web` one had solved the problem months earlier. Reading the source file is
116
+ > not reading the file that runs; the two differ on exactly the axis this
117
+ > section is about. Confirm it from the loaded page
118
+ > (`SomeComponent.toString()`) or from the chunks, not from the repository.
112
119
 
113
120
  If scoped NativeWind presets are wrong in your web app, this is not the cause —
114
121
  look at the CSS-variable pipeline instead.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxyhq/bloom",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "packageManager": "bun@1.3.14",
5
5
  "description": "Bloom UI — Oxy ecosystem component library for React Native + Expo + Web",
6
6
  "main": "lib/commonjs/index.js",