@butternutbox/pawprint-native 0.3.2 → 0.4.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.
Files changed (30) hide show
  1. package/.turbo/turbo-build.log +9 -9
  2. package/CHANGELOG.md +8 -0
  3. package/dist/index.cjs +965 -151
  4. package/dist/index.cjs.map +1 -1
  5. package/dist/index.d.cts +246 -5
  6. package/dist/index.d.ts +246 -5
  7. package/dist/index.js +960 -151
  8. package/dist/index.js.map +1 -1
  9. package/package.json +2 -1
  10. package/src/components/atoms/Hint/Hint.tsx +1 -2
  11. package/src/components/atoms/Input/InputField.tsx +7 -1
  12. package/src/components/molecules/Animated/Animated.tsx +12 -3
  13. package/src/components/molecules/Countdown/Countdown.stories.tsx +218 -0
  14. package/src/components/molecules/Countdown/Countdown.tsx +315 -0
  15. package/src/components/molecules/Countdown/index.ts +2 -0
  16. package/src/components/molecules/ProductDisplayCard/ProductDisplayCard.stories.tsx +248 -0
  17. package/src/components/molecules/ProductDisplayCard/ProductDisplayCard.test.tsx +198 -0
  18. package/src/components/molecules/ProductDisplayCard/ProductDisplayCard.tsx +243 -0
  19. package/src/components/molecules/ProductDisplayCard/index.ts +5 -0
  20. package/src/components/molecules/ProductListingCard/Badge.tsx +65 -0
  21. package/src/components/molecules/ProductListingCard/Grid.tsx +59 -0
  22. package/src/components/molecules/ProductListingCard/ProductListingCard.stories.tsx +209 -0
  23. package/src/components/molecules/ProductListingCard/ProductListingCard.tsx +235 -0
  24. package/src/components/molecules/ProductListingCard/index.ts +2 -0
  25. package/src/components/molecules/TabNavigation/TabNavigation.stories.tsx +183 -0
  26. package/src/components/molecules/TabNavigation/TabNavigation.tsx +354 -0
  27. package/src/components/molecules/TabNavigation/index.ts +7 -0
  28. package/src/components/molecules/index.ts +4 -0
  29. package/src/utils/index.ts +1 -0
  30. package/src/utils/token.ts +1 -0
@@ -13,18 +13,18 @@
13
13
  ESM dist/ibm-plex-sans-condensed-500-normal-IEQBNVGX.woff2 19.48 KB
14
14
  ESM dist/ibm-plex-sans-condensed-600-normal-UX5ZU5T6.woff2 19.35 KB
15
15
  ESM dist/ibm-plex-sans-condensed-700-normal-4PFYFTSO.woff2 18.90 KB
16
- ESM dist/index.js 1.67 MB
17
- ESM dist/index.js.map 2.58 MB
18
- ESM ⚡️ Build success in 11468ms
16
+ ESM dist/index.js 1.70 MB
17
+ ESM dist/index.js.map 2.64 MB
18
+ ESM ⚡️ Build success in 11381ms
19
19
  CJS dist/ida-narrow-500-normal-C6I2PK4T.woff2 47.41 KB
20
20
  CJS dist/ida-narrow-700-normal-UPHPRIN6.woff2 49.90 KB
21
21
  CJS dist/ibm-plex-sans-condensed-400-normal-I2XLJNNB.woff2 19.33 KB
22
22
  CJS dist/ibm-plex-sans-condensed-500-normal-IEQBNVGX.woff2 19.48 KB
23
23
  CJS dist/ibm-plex-sans-condensed-600-normal-UX5ZU5T6.woff2 19.35 KB
24
24
  CJS dist/ibm-plex-sans-condensed-700-normal-4PFYFTSO.woff2 18.90 KB
25
- CJS dist/index.cjs 1.74 MB
26
- CJS dist/index.cjs.map 2.58 MB
27
- CJS ⚡️ Build success in 11469ms
28
- DTS ⚡️ Build success in 21812ms
29
- DTS dist/index.d.cts 76.91 KB
30
- DTS dist/index.d.ts 76.91 KB
25
+ CJS dist/index.cjs 1.77 MB
26
+ CJS dist/index.cjs.map 2.65 MB
27
+ CJS ⚡️ Build success in 11382ms
28
+ DTS ⚡️ Build success in 21549ms
29
+ DTS dist/index.d.cts 87.33 KB
30
+ DTS dist/index.d.ts 87.33 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @butternutbox/pawprint-native
2
2
 
3
+ ## 0.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9e3fc1b: Add Countdown molecule with stacked and inline layouts, toggleable days/seconds, and a customizable inline label
8
+ - 5fc9a27: Add Product Listing and Product Display cards
9
+ - 665ef22: Add TabNavigation molecule with fixed and intrinsic (scrollable) layouts, full tab-button states, and animated tab content via the Animated atom
10
+
3
11
  ## 0.3.2
4
12
 
5
13
  ### Patch Changes