@vygruppen/spor-react 12.24.1 → 12.24.2
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 +12 -12
- package/.turbo/turbo-postinstall.log +2 -2
- package/CHANGELOG.md +10 -0
- package/dist/index.cjs +10 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.mjs +10 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/input/Field.tsx +2 -1
- package/src/input/Textarea.tsx +1 -1
- package/src/theme/recipes/attached-inputs.ts +7 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@12.24.
|
|
2
|
+
> @vygruppen/spor-react@12.24.2 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,18 +11,18 @@ CLI Cleaning output folder
|
|
|
11
11
|
ESM Build start
|
|
12
12
|
CJS Build start
|
|
13
13
|
DTS Build start
|
|
14
|
-
|
|
15
|
-
CJS dist/icons/index.cjs 381.00 B
|
|
16
|
-
CJS dist/icons/index.cjs.map 157.00 B
|
|
17
|
-
CJS dist/index.cjs.map 701.23 KB
|
|
18
|
-
CJS ⚡️ Build success in 2706ms
|
|
19
|
-
ESM dist/index.mjs 331.48 KB
|
|
14
|
+
ESM dist/index.mjs 331.61 KB
|
|
20
15
|
ESM dist/icons/index.mjs 110.00 B
|
|
21
16
|
ESM dist/icons/index.mjs.map 157.00 B
|
|
22
|
-
ESM dist/index.mjs.map 701.
|
|
23
|
-
ESM ⚡️ Build success in
|
|
24
|
-
|
|
17
|
+
ESM dist/index.mjs.map 701.37 KB
|
|
18
|
+
ESM ⚡️ Build success in 2707ms
|
|
19
|
+
CJS dist/index.cjs 355.78 KB
|
|
20
|
+
CJS dist/icons/index.cjs 381.00 B
|
|
21
|
+
CJS dist/index.cjs.map 701.37 KB
|
|
22
|
+
CJS dist/icons/index.cjs.map 157.00 B
|
|
23
|
+
CJS ⚡️ Build success in 2708ms
|
|
24
|
+
DTS ⚡️ Build success in 21715ms
|
|
25
25
|
DTS dist/icons/index.d.ts 44.00 B
|
|
26
|
-
DTS dist/index.d.ts 147.
|
|
26
|
+
DTS dist/index.d.ts 147.56 KB
|
|
27
27
|
DTS dist/icons/index.d.cts 44.00 B
|
|
28
|
-
DTS dist/index.d.cts 147.
|
|
28
|
+
DTS dist/index.d.cts 147.56 KB
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@12.24.
|
|
2
|
+
> @vygruppen/spor-react@12.24.2 postinstall /home/runner/work/spor/spor/packages/spor-react
|
|
3
3
|
> chakra typegen src/theme/index.ts
|
|
4
4
|
|
|
5
|
-
[dotenv@17.2.3] injecting env (0) from .env -- tip:
|
|
5
|
+
[dotenv@17.2.3] injecting env (0) from .env -- tip: ⚙️ override existing env vars with { override: true }
|
|
6
6
|
[90m┌[39m Chakra CLI ⚡️
|
|
7
7
|
[?25l[90m│[39m
|
|
8
8
|
[35m◒[39m Generating conditions types...
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @vygruppen/spor-react
|
|
2
2
|
|
|
3
|
+
## 12.24.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8047512: Add icons for tiktok. Rename twitter-icon to "x"
|
|
8
|
+
- f8656b9: fix(UU): Input field label being announced twice
|
|
9
|
+
- 2bf118b: fix: Not able to change borderRadius when using AttachedInputs
|
|
10
|
+
- Updated dependencies [8047512]
|
|
11
|
+
- @vygruppen/spor-icon-react@4.5.2
|
|
12
|
+
|
|
3
13
|
## 12.24.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -1991,13 +1991,14 @@ var Field3 = React20__namespace.forwardRef(
|
|
|
1991
1991
|
direction,
|
|
1992
1992
|
id,
|
|
1993
1993
|
children: [
|
|
1994
|
-
label && !floatingLabel && /* @__PURE__ */ jsxRuntime.jsx(Label, { asChild: labelAsChild, children: renderLabelWithIndicator(label, labelAsChild) }),
|
|
1994
|
+
label && !floatingLabel && /* @__PURE__ */ jsxRuntime.jsx(Label, { asChild: labelAsChild, "aria-hidden": true, children: renderLabelWithIndicator(label, labelAsChild) }),
|
|
1995
1995
|
children,
|
|
1996
1996
|
label && floatingLabel && /* @__PURE__ */ jsxRuntime.jsx(
|
|
1997
1997
|
FloatingLabel,
|
|
1998
1998
|
{
|
|
1999
1999
|
"data-float": shouldFloat ? true : void 0,
|
|
2000
2000
|
asChild: labelAsChild,
|
|
2001
|
+
"aria-hidden": true,
|
|
2001
2002
|
children: renderLabelWithIndicator(label, labelAsChild)
|
|
2002
2003
|
}
|
|
2003
2004
|
),
|
|
@@ -4694,7 +4695,7 @@ var Textarea = React20.forwardRef(
|
|
|
4694
4695
|
floatingLabel,
|
|
4695
4696
|
shouldFloat,
|
|
4696
4697
|
position: "relative",
|
|
4697
|
-
label: /* @__PURE__ */ jsxRuntime.jsx(react.Box, { id: labelId,
|
|
4698
|
+
label: /* @__PURE__ */ jsxRuntime.jsx(react.Box, { id: labelId, children: /* @__PURE__ */ jsxRuntime.jsx("label", { ref: labelRef, children: label }) }),
|
|
4698
4699
|
id: restProps.id,
|
|
4699
4700
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4700
4701
|
react.Textarea,
|
|
@@ -6449,7 +6450,7 @@ var attachedInputsRecipe = react.defineRecipe({
|
|
|
6449
6450
|
gap: "0.1rem",
|
|
6450
6451
|
width: "100%",
|
|
6451
6452
|
"& select": {
|
|
6452
|
-
borderEndRadius: 0
|
|
6453
|
+
borderEndRadius: "0 !important"
|
|
6453
6454
|
},
|
|
6454
6455
|
"& > *": {
|
|
6455
6456
|
position: "relative",
|
|
@@ -6464,13 +6465,13 @@ var attachedInputsRecipe = react.defineRecipe({
|
|
|
6464
6465
|
horizontal: {
|
|
6465
6466
|
flexDirection: "row",
|
|
6466
6467
|
"& > *:first-of-type:not(:last-of-type) [data-attachable]": {
|
|
6467
|
-
borderEndRadius: 0
|
|
6468
|
+
borderEndRadius: "0 !important"
|
|
6468
6469
|
},
|
|
6469
6470
|
"& > *:not(:first-of-type):not(:last-of-type) [data-attachable]": {
|
|
6470
|
-
borderRadius: 0
|
|
6471
|
+
borderRadius: "0 !important"
|
|
6471
6472
|
},
|
|
6472
6473
|
"& > *:not(:first-of-type):last-of-type [data-attachable]": {
|
|
6473
|
-
borderStartRadius: 0
|
|
6474
|
+
borderStartRadius: "0 !important"
|
|
6474
6475
|
},
|
|
6475
6476
|
"&[data-with-flip-button]": {
|
|
6476
6477
|
"& > *:nth-of-type(2) [data-scope='field'][data-part='root']": {
|
|
@@ -6486,13 +6487,13 @@ var attachedInputsRecipe = react.defineRecipe({
|
|
|
6486
6487
|
vertical: {
|
|
6487
6488
|
flexDirection: "column",
|
|
6488
6489
|
"& > *:first-of-type:not(:last-of-type) [data-attachable]": {
|
|
6489
|
-
borderBottomRadius: 0
|
|
6490
|
+
borderBottomRadius: "0 !important"
|
|
6490
6491
|
},
|
|
6491
6492
|
"& > *:not(:first-of-type):not(:last-of-type) [data-attachable]": {
|
|
6492
|
-
borderRadius: 0
|
|
6493
|
+
borderRadius: "0 !important"
|
|
6493
6494
|
},
|
|
6494
6495
|
"& > *:not(:first-of-type):last-of-type [data-attachable]": {
|
|
6495
|
-
borderTopRadius: 0
|
|
6496
|
+
borderTopRadius: "0 !important"
|
|
6496
6497
|
}
|
|
6497
6498
|
}
|
|
6498
6499
|
}
|