jaci-ui 0.6.2 → 0.6.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 8d9f4cb: Preserve the Navbar blur in Next.js by emitting a browser-safe CSS declaration for the bar surface.
8
+
3
9
  ## 0.6.2
4
10
 
5
11
  ### Patch Changes
package/dist/styles.css CHANGED
@@ -4986,8 +4986,7 @@
4986
4986
  border-width: 1px;
4987
4987
  gap: var(--jaci-spacing-2);
4988
4988
  align-items: center;
4989
- backdrop-filter: blur(4px);
4990
- -webkit-backdrop-filter: blur(4px);
4989
+ backdrop-filter: var(--jaci-navbar-backdrop-filter, blur(4px));
4991
4990
  background-color: var(--jaci-colors-surface-overlay);
4992
4991
  box-shadow: var(--jaci-shadows-xl);
4993
4992
  box-sizing: border-box;
@@ -5074,8 +5073,7 @@
5074
5073
 
5075
5074
  .jaci-navbar__drawerBackdrop {
5076
5075
  inset: var(--jaci-spacing-0);
5077
- backdrop-filter: blur(4px);
5078
- -webkit-backdrop-filter: blur(4px);
5076
+ backdrop-filter: var(--jaci-navbar-backdrop-filter, blur(4px));
5079
5077
  background-color: var(--jaci-colors-surface-overlay);
5080
5078
  position: fixed;
5081
5079
  --transition-duration: var(--jaci-durations-normal);
@@ -5106,8 +5104,7 @@
5106
5104
  border-color: var(--jaci-colors-border-default);
5107
5105
  gap: var(--jaci-spacing-2);
5108
5106
  background-color: var(--jaci-colors-surface-default);
5109
- backdrop-filter: blur(8px);
5110
- -webkit-backdrop-filter: blur(8px);
5107
+ backdrop-filter: var(--jaci-navbar-drawer-backdrop-filter, blur(8px));
5111
5108
  box-sizing: border-box;
5112
5109
  box-shadow: var(--jaci-shadows-xl);
5113
5110
  color: var(--jaci-colors-fg-default);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jaci-ui",
3
3
  "description": "Accessible, themeable React components by Jaci UI",
4
- "version": "0.6.2",
4
+ "version": "0.6.3",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Richard Borges",