@butternutbox/pawprint-native 0.10.6 → 0.10.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.
- package/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +14 -0
- package/dist/index.cjs +959 -773
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +472 -286
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/Illustration/Illustration.stories.tsx +3 -1
- package/src/components/atoms/Input/InputField.tsx +9 -1
- package/src/components/atoms/NumberInput/NumberInput.stories.tsx +22 -0
- package/src/components/atoms/NumberInput/NumberInput.tsx +5 -1
- package/src/components/atoms/NumberInput/NumberInputField.tsx +81 -18
- package/src/components/atoms/Typography/Typography.test.tsx +2 -2
- package/src/components/molecules/DatePicker/DatePicker.tsx +31 -26
- package/src/components/molecules/Drawer/Drawer.stories.tsx +110 -0
- package/src/components/molecules/Drawer/DrawerBody.tsx +42 -9
- package/src/components/molecules/Drawer/DrawerContent.tsx +101 -38
- package/src/components/molecules/Drawer/DrawerMeasureContext.ts +22 -0
- package/src/components/molecules/NumberField/NumberField.stories.tsx +23 -0
- package/src/components/molecules/NumberField/NumberFieldInput.tsx +49 -13
- package/src/components/molecules/Radio/Radio.tsx +3 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
[34mCJS[39m Build start
|
|
8
8
|
[34mESM[39m Build start
|
|
9
9
|
[34mDTS[39m Build start
|
|
10
|
-
[32mESM[39m [1mdist/index.js [22m[32m1.
|
|
11
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m2.
|
|
12
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m1.
|
|
14
|
-
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.cts [22m[32m91.
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m91.
|
|
10
|
+
[32mESM[39m [1mdist/index.js [22m[32m1.73 MB[39m
|
|
11
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m2.70 MB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 11777ms
|
|
13
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m1.80 MB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.70 MB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 11782ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 23549ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m91.44 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m91.44 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.10.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8735f2e: DatePicker: remove extra padding on the weekday header, tighten the month-to-dates gap to 16px, size the month-nav buttons to 44px (md), and default the container to full width so it fills its parent without a wrapper.
|
|
8
|
+
- 478f90b: Drawer: re-fit the panel height when body content changes. Previously the drawer measured its height once on open and stayed pinned to that first measurement, so content that grew or shrank afterwards (async loading, expanding sections) left the panel the wrong size — either clipped/scrolling or with an empty gap. The panel now tracks its content, growing and shrinking to fit and capping into a scroll only when the content exceeds the max height.
|
|
9
|
+
- 4c2fd55: Fix Radio tile trailing asset overflowing the tile when the label/subText wraps to multiple lines. The text content now takes the row's remaining width so long copy wraps within the tile instead of pushing the illustration past its edge.
|
|
10
|
+
|
|
11
|
+
## 0.10.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 7af3414: add inline help text to number fields
|
|
16
|
+
|
|
3
17
|
## 0.10.6
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|