@vygruppen/spor-react 12.7.1 → 12.8.0
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 +10 -10
- package/.turbo/turbo-postinstall.log +1 -1
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +11 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.mjs +11 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/input/Combobox.tsx +5 -4
- package/src/input/CountryCodeSelect.tsx +1 -1
- package/src/input/Field.tsx +1 -1
- package/src/input/Select.tsx +3 -2
- package/src/theme/slot-recipes/select.ts +2 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.
|
2
|
+
> @vygruppen/spor-react@12.8.0 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
|
-
CJS dist/index.cjs 312.
|
14
|
+
CJS dist/index.cjs 312.57 KB
|
15
15
|
CJS dist/icons/index.cjs 381.00 B
|
16
|
-
CJS dist/index.cjs.map 625.
|
16
|
+
CJS dist/index.cjs.map 625.52 KB
|
17
17
|
CJS dist/icons/index.cjs.map 157.00 B
|
18
|
-
CJS ⚡️ Build success in
|
19
|
-
ESM dist/index.mjs 291.
|
18
|
+
CJS ⚡️ Build success in 3125ms
|
19
|
+
ESM dist/index.mjs 291.88 KB
|
20
20
|
ESM dist/icons/index.mjs 110.00 B
|
21
|
-
ESM dist/index.mjs.map 625.
|
21
|
+
ESM dist/index.mjs.map 625.52 KB
|
22
22
|
ESM dist/icons/index.mjs.map 157.00 B
|
23
|
-
ESM ⚡️ Build success in
|
24
|
-
DTS ⚡️ Build success in
|
23
|
+
ESM ⚡️ Build success in 3126ms
|
24
|
+
DTS ⚡️ Build success in 28653ms
|
25
25
|
DTS dist/icons/index.d.ts 44.00 B
|
26
|
-
DTS dist/index.d.ts
|
26
|
+
DTS dist/index.d.ts 156.04 KB
|
27
27
|
DTS dist/icons/index.d.cts 44.00 B
|
28
|
-
DTS dist/index.d.cts
|
28
|
+
DTS dist/index.d.cts 156.04 KB
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 12.8.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 1424baf: Refactor: Replace the "rightSideSquare" and "leftSideSquare" variants with a new sideRadiusVariant prop. This improves consistency between floating and core styles for both square and standard radius variants.
|
8
|
+
|
3
9
|
## 12.7.1
|
4
10
|
|
5
11
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
@@ -1394,7 +1394,7 @@ var Field3 = React28__namespace.forwardRef(
|
|
1394
1394
|
} = props;
|
1395
1395
|
const recipe = react.useSlotRecipe({ key: "field" });
|
1396
1396
|
const styles = recipe();
|
1397
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(react.Stack, { gap: "2", ref, ...rest, children: [
|
1397
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(react.Stack, { gap: "2", ref, width: "100%", ...rest, children: [
|
1398
1398
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
1399
1399
|
react.Field.Root,
|
1400
1400
|
{
|
@@ -2598,10 +2598,10 @@ var Combobox = (props) => {
|
|
2598
2598
|
loading,
|
2599
2599
|
leftIcon,
|
2600
2600
|
rightIcon,
|
2601
|
-
borderBottomLeftRadius
|
2602
|
-
borderBottomRightRadius
|
2603
|
-
borderTopLeftRadius
|
2604
|
-
borderTopRightRadius
|
2601
|
+
borderBottomLeftRadius,
|
2602
|
+
borderBottomRightRadius,
|
2603
|
+
borderTopLeftRadius,
|
2604
|
+
borderTopRightRadius,
|
2605
2605
|
marginBottom,
|
2606
2606
|
marginTop,
|
2607
2607
|
marginX,
|
@@ -2700,7 +2700,8 @@ var Combobox = (props) => {
|
|
2700
2700
|
}
|
2701
2701
|
}
|
2702
2702
|
) : rightIcon,
|
2703
|
-
placeholder: ""
|
2703
|
+
placeholder: "",
|
2704
|
+
"data-attachable": true
|
2704
2705
|
}
|
2705
2706
|
),
|
2706
2707
|
/* @__PURE__ */ jsxRuntime.jsx("span", { "aria-hidden": "true", "data-trigger": "multiselect" }),
|
@@ -3274,7 +3275,7 @@ var CountryCodeSelect = React28.forwardRef((props, ref) => {
|
|
3274
3275
|
collection: callingCodes,
|
3275
3276
|
lazyMount: true,
|
3276
3277
|
"aria-label": t(texts15.countryCode),
|
3277
|
-
|
3278
|
+
sideRadiusVariant: "rightSideSquare",
|
3278
3279
|
children: callingCodes.items.map((code) => /* @__PURE__ */ jsxRuntime.jsx(SelectItem, { as: "option", item: code, children: code.label }, code.label))
|
3279
3280
|
}
|
3280
3281
|
);
|
@@ -9061,7 +9062,9 @@ var selectSlotRecipe = react.defineSlotRecipe({
|
|
9061
9062
|
outline: "1px solid",
|
9062
9063
|
outlineColor: "floating.outline"
|
9063
9064
|
}
|
9064
|
-
}
|
9065
|
+
}
|
9066
|
+
},
|
9067
|
+
sideRadiusVariant: {
|
9065
9068
|
rightSideSquare: {
|
9066
9069
|
control: {
|
9067
9070
|
outline: "1px solid",
|