@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/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.
|
2
|
+
> @vygruppen/spor-react@12.12.1 build /home/runner/work/spor/spor/packages/spor-react
|
3
3
|
> tsup
|
4
4
|
|
5
5
|
CLI Building entry: src/index.tsx, src/icons/index.tsx
|
@@ -11,17 +11,17 @@ CLI Cleaning output folder
|
|
11
11
|
ESM Build start
|
12
12
|
CJS Build start
|
13
13
|
DTS Build start
|
14
|
+
CJS dist/index.cjs 315.53 KB
|
14
15
|
CJS dist/icons/index.cjs 381.00 B
|
15
|
-
CJS dist/index.cjs 315.45 KB
|
16
16
|
CJS dist/icons/index.cjs.map 157.00 B
|
17
|
-
CJS dist/index.cjs.map 630.
|
18
|
-
CJS ⚡️ Build success in
|
17
|
+
CJS dist/index.cjs.map 630.24 KB
|
18
|
+
CJS ⚡️ Build success in 2643ms
|
19
|
+
ESM dist/index.mjs 294.12 KB
|
19
20
|
ESM dist/icons/index.mjs 110.00 B
|
20
|
-
ESM dist/index.mjs
|
21
|
+
ESM dist/index.mjs.map 630.24 KB
|
21
22
|
ESM dist/icons/index.mjs.map 157.00 B
|
22
|
-
ESM
|
23
|
-
|
24
|
-
DTS ⚡️ Build success in 18315ms
|
23
|
+
ESM ⚡️ Build success in 2644ms
|
24
|
+
DTS ⚡️ Build success in 18852ms
|
25
25
|
DTS dist/icons/index.d.ts 44.00 B
|
26
26
|
DTS dist/index.d.ts 156.18 KB
|
27
27
|
DTS dist/icons/index.d.cts 44.00 B
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 12.12.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 8dee5a5: Fix hidden prop not hiding label on input
|
8
|
+
|
9
|
+
## 12.12.0
|
10
|
+
|
11
|
+
### Minor Changes
|
12
|
+
|
13
|
+
- d3d78a3: Add spacing 13
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- f714920: Fix error with double label on textArea
|
18
|
+
- Updated dependencies [d3d78a3]
|
19
|
+
- @vygruppen/spor-design-tokens@4.1.0
|
20
|
+
|
3
21
|
## 12.11.1
|
4
22
|
|
5
23
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
@@ -2813,6 +2813,7 @@ var Input = React27.forwardRef(
|
|
2813
2813
|
helperText,
|
2814
2814
|
errorText,
|
2815
2815
|
required,
|
2816
|
+
hidden,
|
2816
2817
|
...props
|
2817
2818
|
}, ref) => {
|
2818
2819
|
const recipe = react.useRecipe({ key: "input" });
|
@@ -2824,6 +2825,7 @@ var Input = React27.forwardRef(
|
|
2824
2825
|
invalid,
|
2825
2826
|
helperText,
|
2826
2827
|
required,
|
2828
|
+
hidden,
|
2827
2829
|
errorText,
|
2828
2830
|
id: props.id,
|
2829
2831
|
label: (
|
@@ -3697,7 +3699,6 @@ var Textarea = React27.forwardRef(
|
|
3697
3699
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
3698
3700
|
Field3,
|
3699
3701
|
{
|
3700
|
-
label,
|
3701
3702
|
errorText,
|
3702
3703
|
helperText,
|
3703
3704
|
invalid,
|
@@ -10106,7 +10107,8 @@ var spacing = react.defineTokens.spacing({
|
|
10106
10107
|
9: { value: tokens23__namespace.default.size.spacing["9"] },
|
10107
10108
|
10: { value: tokens23__namespace.default.size.spacing["10"] },
|
10108
10109
|
11: { value: tokens23__namespace.default.size.spacing["11"] },
|
10109
|
-
12: { value: tokens23__namespace.default.size.spacing["12"] }
|
10110
|
+
12: { value: tokens23__namespace.default.size.spacing["12"] },
|
10111
|
+
13: { value: tokens23__namespace.default.size.spacing["13"] }
|
10110
10112
|
});
|
10111
10113
|
|
10112
10114
|
// src/theme/tokens/sizes.ts
|