@butternutbox/pawprint-native 0.9.0 → 0.10.1
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 +18 -0
- package/dist/index.cjs +1141 -961
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -7
- package/dist/index.d.ts +22 -7
- package/dist/index.js +640 -461
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/__mocks__/react-native.tsx +7 -0
- package/src/__mocks__/rn-primitives/select.tsx +58 -21
- package/src/components/atoms/Input/InputField.tsx +37 -6
- package/src/components/atoms/Input/index.ts +1 -1
- package/src/components/molecules/ProductDisplayCard/ProductDisplayCard.stories.tsx +75 -0
- package/src/components/molecules/ProductDisplayCard/ProductDisplayCard.tsx +49 -32
- package/src/components/molecules/ProductListingCard/ProductListingCard.stories.tsx +65 -1
- package/src/components/molecules/ProductListingCard/ProductListingCard.tsx +16 -6
- package/src/components/molecules/SelectField/SelectField.stories.tsx +110 -5
- package/src/components/molecules/SelectField/SelectField.test.tsx +174 -2
- package/src/components/molecules/SelectField/SelectField.tsx +186 -30
- package/src/components/molecules/SelectField/SelectFieldContent.tsx +8 -12
- package/src/components/molecules/SelectField/SelectFieldTrigger.tsx +43 -25
- package/src/components/molecules/SelectField/SelectFieldValue.tsx +17 -18
package/.turbo/turbo-build.log
CHANGED
|
@@ -13,18 +13,18 @@
|
|
|
13
13
|
[32mCJS[39m [1mdist/ibm-plex-sans-condensed-500-normal-IEQBNVGX.woff2 [22m[32m19.48 KB[39m
|
|
14
14
|
[32mCJS[39m [1mdist/ibm-plex-sans-condensed-600-normal-UX5ZU5T6.woff2 [22m[32m19.35 KB[39m
|
|
15
15
|
[32mCJS[39m [1mdist/ibm-plex-sans-condensed-700-normal-4PFYFTSO.woff2 [22m[32m18.90 KB[39m
|
|
16
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m1.
|
|
17
|
-
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.
|
|
18
|
-
[32mCJS[39m ⚡️ Build success in
|
|
16
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m1.79 MB[39m
|
|
17
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m2.69 MB[39m
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 11548ms
|
|
19
19
|
[32mESM[39m [1mdist/ida-narrow-500-normal-C6I2PK4T.woff2 [22m[32m47.41 KB[39m
|
|
20
20
|
[32mESM[39m [1mdist/ida-narrow-700-normal-UPHPRIN6.woff2 [22m[32m49.90 KB[39m
|
|
21
21
|
[32mESM[39m [1mdist/ibm-plex-sans-condensed-400-normal-I2XLJNNB.woff2 [22m[32m19.33 KB[39m
|
|
22
22
|
[32mESM[39m [1mdist/ibm-plex-sans-condensed-500-normal-IEQBNVGX.woff2 [22m[32m19.48 KB[39m
|
|
23
23
|
[32mESM[39m [1mdist/ibm-plex-sans-condensed-600-normal-UX5ZU5T6.woff2 [22m[32m19.35 KB[39m
|
|
24
24
|
[32mESM[39m [1mdist/ibm-plex-sans-condensed-700-normal-4PFYFTSO.woff2 [22m[32m18.90 KB[39m
|
|
25
|
-
[32mESM[39m [1mdist/index.js [22m[32m1.
|
|
26
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m2.
|
|
27
|
-
[32mESM[39m ⚡️ Build success in
|
|
28
|
-
[32mDTS[39m ⚡️ Build success in
|
|
29
|
-
[32mDTS[39m [1mdist/index.d.cts [22m[32m90.
|
|
30
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m90.
|
|
25
|
+
[32mESM[39m [1mdist/index.js [22m[32m1.72 MB[39m
|
|
26
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m2.68 MB[39m
|
|
27
|
+
[32mESM[39m ⚡️ Build success in 11548ms
|
|
28
|
+
[32mDTS[39m ⚡️ Build success in 23672ms
|
|
29
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m90.82 KB[39m
|
|
30
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m90.82 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.10.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f8cab88: All product banner to be react component'
|
|
8
|
+
- f8cab88: remove max width of product card
|
|
9
|
+
|
|
10
|
+
## 0.10.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 68b5ef2: Make SelectField searchable
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 47519e0: Add clear button for searchable SelectField
|
|
19
|
+
- afbf2b6: Add onPress handler to display card, and allow React component for listing card image
|
|
20
|
+
|
|
3
21
|
## 0.9.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|