@vygruppen/spor-react 12.11.1 → 12.12.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 +8 -8
- package/.turbo/turbo-postinstall.log +1 -1
- package/CHANGELOG.md +18 -0
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/input/Input.tsx +2 -0
- package/src/input/Textarea.tsx +0 -1
- package/src/theme/tokens/spacing.ts +1 -0
package/dist/index.mjs
CHANGED
@@ -2793,6 +2793,7 @@ var Input = forwardRef(
|
|
2793
2793
|
helperText,
|
2794
2794
|
errorText,
|
2795
2795
|
required,
|
2796
|
+
hidden,
|
2796
2797
|
...props
|
2797
2798
|
}, ref) => {
|
2798
2799
|
const recipe = useRecipe({ key: "input" });
|
@@ -2804,6 +2805,7 @@ var Input = forwardRef(
|
|
2804
2805
|
invalid,
|
2805
2806
|
helperText,
|
2806
2807
|
required,
|
2808
|
+
hidden,
|
2807
2809
|
errorText,
|
2808
2810
|
id: props.id,
|
2809
2811
|
label: (
|
@@ -3677,7 +3679,6 @@ var Textarea = forwardRef(
|
|
3677
3679
|
return /* @__PURE__ */ jsxs(
|
3678
3680
|
Field3,
|
3679
3681
|
{
|
3680
|
-
label,
|
3681
3682
|
errorText,
|
3682
3683
|
helperText,
|
3683
3684
|
invalid,
|
@@ -10086,7 +10087,8 @@ var spacing = defineTokens.spacing({
|
|
10086
10087
|
9: { value: tokens23__default.size.spacing["9"] },
|
10087
10088
|
10: { value: tokens23__default.size.spacing["10"] },
|
10088
10089
|
11: { value: tokens23__default.size.spacing["11"] },
|
10089
|
-
12: { value: tokens23__default.size.spacing["12"] }
|
10090
|
+
12: { value: tokens23__default.size.spacing["12"] },
|
10091
|
+
13: { value: tokens23__default.size.spacing["13"] }
|
10090
10092
|
});
|
10091
10093
|
|
10092
10094
|
// src/theme/tokens/sizes.ts
|