@butternutbox/pawprint-native 0.16.1 → 0.18.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.
@@ -7,12 +7,12 @@
7
7
  CJS Build start
8
8
  ESM Build start
9
9
  DTS Build start
10
- CJS dist/index.cjs 533.53 KB
11
- CJS dist/index.cjs.map 1.02 MB
12
- CJS ⚡️ Build success in 7997ms
13
- ESM dist/index.js 503.89 KB
14
- ESM dist/index.js.map 1.02 MB
15
- ESM ⚡️ Build success in 7998ms
16
- DTS ⚡️ Build success in 22782ms
17
- DTS dist/index.d.cts 99.79 KB
18
- DTS dist/index.d.ts 99.79 KB
10
+ CJS dist/index.cjs 542.62 KB
11
+ CJS dist/index.cjs.map 1.05 MB
12
+ CJS ⚡️ Build success in 6588ms
13
+ ESM dist/index.js 512.75 KB
14
+ ESM dist/index.js.map 1.05 MB
15
+ ESM ⚡️ Build success in 6590ms
16
+ DTS ⚡️ Build success in 21038ms
17
+ DTS dist/index.d.cts 100.86 KB
18
+ DTS dist/index.d.ts 100.86 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @butternutbox/pawprint-native
2
2
 
3
+ ## 0.18.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 322e972: Drawer: robust self-sizing, backdrop toggle, and an app-overlay slot
8
+ - **Self-sizing panel (fix):** the panel now wraps its content naturally (capped at 90% of the window) and the body `ScrollView` self-sizes to its content up to a chrome-aware `maxHeight` (`90%·window − measured header/footer`). This replaces the previous explicit-panel-height + content-measurement feedback loop, fixing the clipped footer/action button on tall content and the leftover gap above the footer when content shrinks.
9
+ - **`backdrop` prop (new):** `Drawer.Root` accepts `backdrop` (default `true`). Set `backdrop={false}` for a backdrop-less, pass-through drawer — it renders inline (no native `Modal`), omits the overlay, and lets touches outside the panel reach the content behind it (e.g. a calendar stays interactive while the sheet is open).
10
+ - **`Drawer.OverlayProvider` (new):** provides an app-level component rendered on top of every modal drawer, inside the drawer's native `Modal`, so app-root overlays (e.g. toast notifications) surface above the drawer instead of behind its OS window. Opt-in (defaults to nothing rendered).
11
+
12
+ All changes are backward compatible — existing drawers need no changes.
13
+
14
+ ## 0.17.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 8cff714: update marketing icons with new sizes and color
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [8cff714]
23
+ - @butternutbox/pawprint-tokens@0.4.0
24
+
3
25
  ## 0.16.1
4
26
 
5
27
  ### Patch Changes