@butternutbox/pawprint-native 0.10.10 → 0.10.11
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 +5 -5
- package/CHANGELOG.md +13 -0
- package/dist/index.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/NumberField/NumberField.tsx +5 -1
package/dist/index.js
CHANGED
|
@@ -10535,7 +10535,7 @@ NumberFieldInput.displayName = "NumberField.Input";
|
|
|
10535
10535
|
var parseTokenValue35 = (value) => parseFloat(value);
|
|
10536
10536
|
var StyledRoot10 = styled50(View)(({ rootGap, fullWidth }) => __spreadValues({
|
|
10537
10537
|
gap: rootGap
|
|
10538
|
-
}, fullWidth
|
|
10538
|
+
}, fullWidth ? { width: "100%" } : { alignItems: "center" }));
|
|
10539
10539
|
var StyledLabelGroup = styled50(View)(({ labelGap }) => ({
|
|
10540
10540
|
gap: labelGap
|
|
10541
10541
|
}));
|
|
@@ -10599,6 +10599,7 @@ var NumberField = React65.forwardRef(
|
|
|
10599
10599
|
{
|
|
10600
10600
|
token: typoTokens.label,
|
|
10601
10601
|
color: tokens3.colour.text.label,
|
|
10602
|
+
align: "center",
|
|
10602
10603
|
children: label
|
|
10603
10604
|
}
|
|
10604
10605
|
),
|
|
@@ -10607,6 +10608,7 @@ var NumberField = React65.forwardRef(
|
|
|
10607
10608
|
{
|
|
10608
10609
|
token: typoTokens.smallLabel,
|
|
10609
10610
|
color: tokens3.colour.text.description,
|
|
10611
|
+
align: "center",
|
|
10610
10612
|
children: smallLabel
|
|
10611
10613
|
}
|
|
10612
10614
|
)
|
|
@@ -10636,6 +10638,7 @@ var NumberField = React65.forwardRef(
|
|
|
10636
10638
|
{
|
|
10637
10639
|
token: size === "lg" ? tokens3.typography.large.secondaryContent : tokens3.typography.small.smallLabel,
|
|
10638
10640
|
color: tokens3.colour.text.description,
|
|
10641
|
+
align: "center",
|
|
10639
10642
|
children: description
|
|
10640
10643
|
}
|
|
10641
10644
|
),
|
|
@@ -10644,6 +10647,7 @@ var NumberField = React65.forwardRef(
|
|
|
10644
10647
|
{
|
|
10645
10648
|
token: size === "lg" ? tokens3.typography.large.secondaryContent : tokens3.typography.small.smallLabel,
|
|
10646
10649
|
color: theme2.tokens.components.inputs.colour.description.error,
|
|
10650
|
+
align: "center",
|
|
10647
10651
|
children: error
|
|
10648
10652
|
}
|
|
10649
10653
|
)
|