@butternutbox/pawprint-native 0.10.8 → 0.10.9

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
- ESM dist/index.js 1.73 MB
11
- ESM dist/index.js.map 2.70 MB
12
- ESM ⚡️ Build success in 11777ms
13
10
  CJS dist/index.cjs 1.80 MB
14
11
  CJS dist/index.cjs.map 2.70 MB
15
- CJS ⚡️ Build success in 11782ms
16
- DTS ⚡️ Build success in 23549ms
12
+ CJS ⚡️ Build success in 11884ms
13
+ ESM dist/index.js 1.72 MB
14
+ ESM dist/index.js.map 2.70 MB
15
+ ESM ⚡️ Build success in 11885ms
16
+ DTS ⚡️ Build success in 22581ms
17
17
  DTS dist/index.d.cts 91.44 KB
18
18
  DTS dist/index.d.ts 91.44 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @butternutbox/pawprint-native
2
2
 
3
+ ## 0.10.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 825e9bb: Drawer: fix the content-driven height re-fit so tall drawers no longer clip or
8
+ lose the ability to scroll (regression in 0.10.8).
9
+
10
+ The 0.10.8 implementation derived the panel height from the body content
11
+ measured _inside_ the height-constrained `ScrollView` and fed it back to size
12
+ the panel. For any drawer whose content height depends on the available height,
13
+ that coupling sized the panel too short and collapsed the scroll region, so tall
14
+ drawers clipped their content and could not scroll to the end.
15
+
16
+ The re-fit is now purely layout-driven: the panel wraps its content and caps at
17
+ 90% of the window height, while `DrawerBody` keeps its own `maxHeight` to bound
18
+ scrolling (and prevent the `ScrollView` from collapsing). When the body grows or
19
+ shrinks after open — async loading, expanding sections — the panel re-fits
20
+ itself through normal layout with no measurement feedback loop. Removes the
21
+ `DrawerMeasureContext` plumbing and adds a `DynamicContent` story as a
22
+ regression guard.
23
+
3
24
  ## 0.10.8
4
25
 
5
26
  ### Patch Changes