@butternutbox/pawprint-native 0.13.0 → 0.14.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.
- package/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +17 -0
- package/dist/index.cjs +12 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +12 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/atoms/Illustration/Illustration.tsx +2 -2
- package/src/components/atoms/TextArea/TextAreaField.tsx +15 -1
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
|
-
[
|
|
11
|
-
[32mESM[39m [1mdist/index.js.map [22m[32m1.01 MB[39m
|
|
12
|
-
[32mESM[39m ⚡️ Build success in 7655ms
|
|
13
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m527.91 KB[39m
|
|
10
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m528.39 KB[39m
|
|
14
11
|
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.01 MB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 7645ms
|
|
13
|
+
[32mESM[39m [1mdist/index.js [22m[32m498.99 KB[39m
|
|
14
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m1.01 MB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 7649ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 21918ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m94.99 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m94.99 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2940c1d: Add `xxl` (80px) and `xxxl` (100px) illustration sizes. The sizing tokens (`illustrations.sizing.illustrations.xxl`/`xxxl`) are now published, and the `Illustration` component's `size` prop accepts `xxl` and `xxxl` in addition to `sm`/`lg`/`xl`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [2940c1d]
|
|
12
|
+
- @butternutbox/pawprint-tokens@0.3.0
|
|
13
|
+
|
|
14
|
+
## 0.13.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- e925ae4: Fix `TextArea` rendering entered text in the OS system font instead of the brand font. `StyledTextArea` now resolves `fontFamily`/`fontSize`/`letterSpacing` from the input placeholder typography tokens (matching `Input`'s `StyledInput`), so text areas render in IBM Plex Sans Condensed.
|
|
19
|
+
|
|
3
20
|
## 0.13.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/dist/index.cjs
CHANGED
|
@@ -4728,13 +4728,24 @@ var StyledTextAreaWrapper = styled51__default.default(reactNative.Animated.View)
|
|
|
4728
4728
|
};
|
|
4729
4729
|
});
|
|
4730
4730
|
var StyledTextArea = styled51__default.default(reactNative.TextInput)(({ theme: theme2 }) => {
|
|
4731
|
-
|
|
4731
|
+
var _a, _b;
|
|
4732
|
+
const { colour, field } = theme2.tokens.components.inputs;
|
|
4733
|
+
const typography = field.placeholder.default;
|
|
4734
|
+
const { fontFamily } = resolveFont(
|
|
4735
|
+
typography.fontFamily,
|
|
4736
|
+
typography.fontWeight
|
|
4737
|
+
);
|
|
4738
|
+
const fontSize = parseTokenValue19(typography.fontSize);
|
|
4739
|
+
const letterSpacing = ((_a = typography.letterSpacing) == null ? void 0 : _a.endsWith("%")) ? parseFloat(typography.letterSpacing) / 100 * fontSize : parseFloat((_b = typography.letterSpacing) != null ? _b : "0");
|
|
4732
4740
|
return __spreadValues({
|
|
4733
4741
|
flex: 1,
|
|
4734
4742
|
minWidth: 0,
|
|
4735
4743
|
minHeight: 0,
|
|
4736
4744
|
padding: 0,
|
|
4737
4745
|
color: colour.field.text.default,
|
|
4746
|
+
fontFamily,
|
|
4747
|
+
fontSize,
|
|
4748
|
+
letterSpacing,
|
|
4738
4749
|
textAlignVertical: "top"
|
|
4739
4750
|
}, {
|
|
4740
4751
|
outlineStyle: "none",
|