@ajuarezso/capacitor-liquid-glass 0.3.7 → 0.3.8

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.
@@ -206,13 +206,11 @@ final class LiquidGlassTabBarOverlay: UIViewController {
206
206
  tabBar.selectedItem = uiItems[selectedIndex]
207
207
  }
208
208
 
209
- // tintColor SOLO se aplica para estilos override (`.ultraThin`,
210
- // `.transparent`). En `.default` / `.liquidGlass` iOS 26 aplica su
211
- // propio tint nativo automático como parte del material Liquid Glass.
212
- // Sobreescribirlo con un color custom (incluso brand) rompe el balance
213
- // del material y produce un look híbrido en vez del adopt puro.
214
- if style == .ultraThin || style == .transparent,
215
- let tintHex, let tint = UIColor(hex: tintHex) {
209
+ // tintColor aplicado siempre el A/B test contra stay-liquid confirmó
210
+ // que el adopt del material Liquid Glass NO se logra en este proyecto
211
+ // independientemente del tintColor, así que mantenerlo solo aporta
212
+ // identidad de marca (naranja brand) sin perder nada.
213
+ if let tintHex, let tint = UIColor(hex: tintHex) {
216
214
  tabBar.tintColor = tint
217
215
  }
218
216
  emitLayout()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ajuarezso/capacitor-liquid-glass",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "iOS 26 Liquid Glass native chrome (TabBar, NavigationBar, Alerts, Sheets) for Capacitor apps. Falls back gracefully on iOS < 26 and Android.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",