@butternutbox/pawprint-native 0.16.0 → 0.16.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
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.02 MB[39m
|
|
12
|
-
[32mESM[39m ⚡️ Build success in 7722ms
|
|
13
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m533.23 KB[39m
|
|
10
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m533.53 KB[39m
|
|
14
11
|
[32mCJS[39m [1mdist/index.cjs.map [22m[32m1.02 MB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
16
|
-
[
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 7997ms
|
|
13
|
+
[32mESM[39m [1mdist/index.js [22m[32m503.89 KB[39m
|
|
14
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m1.02 MB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 7998ms
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 22782ms
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.cts [22m[32m99.79 KB[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m99.79 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @butternutbox/pawprint-native
|
|
2
2
|
|
|
3
|
+
## 0.16.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1223ab7: `NumberField`: render the large field's `inlineHelpText` at the secondary-content
|
|
8
|
+
size (`body.medium.md`, 16px) instead of the shared input description size
|
|
9
|
+
(`body.medium.sm`, 14px), matching the design-system spec. Small fields are
|
|
10
|
+
unchanged (`body.medium.sm`).
|
|
11
|
+
|
|
3
12
|
## 0.16.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/dist/index.cjs
CHANGED
|
@@ -7157,7 +7157,11 @@ var NumberFieldInput = React66__default.default.forwardRef(
|
|
|
7157
7157
|
style: {
|
|
7158
7158
|
position: "absolute",
|
|
7159
7159
|
bottom: 4,
|
|
7160
|
-
width
|
|
7160
|
+
// Span the full field (not the min-width) so the help text
|
|
7161
|
+
// centres and never wraps into the value when the field is
|
|
7162
|
+
// wider than its min-width (e.g. fullWidth) or the copy is long.
|
|
7163
|
+
left: 0,
|
|
7164
|
+
right: 0,
|
|
7161
7165
|
display: "flex",
|
|
7162
7166
|
justifyContent: "center",
|
|
7163
7167
|
alignItems: "center"
|
|
@@ -7165,7 +7169,7 @@ var NumberFieldInput = React66__default.default.forwardRef(
|
|
|
7165
7169
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
7166
7170
|
Typography,
|
|
7167
7171
|
{
|
|
7168
|
-
token:
|
|
7172
|
+
token: isLarge ? tokens3.typography.large.secondaryContent : tokens3.typography.small.smallLabel,
|
|
7169
7173
|
color: inputTokens3.colour.description.default,
|
|
7170
7174
|
children: inlineHelpText
|
|
7171
7175
|
}
|