@vygruppen/spor-react 12.10.3 → 12.10.4
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 +9 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.mjs +9 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/alert/Alert.tsx +1 -0
- package/src/linjetag/LineIcon.tsx +1 -1
- package/src/theme/slot-recipes/line-icon.ts +6 -0
- package/src/theme/slot-recipes/travel-tag.ts +2 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.10.
|
2
|
+
> @vygruppen/spor-react@12.10.4 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 315.
|
14
|
+
CJS dist/index.cjs 315.17 KB
|
15
15
|
CJS dist/icons/index.cjs 381.00 B
|
16
|
-
CJS dist/index.cjs.map 629.
|
16
|
+
CJS dist/index.cjs.map 629.70 KB
|
17
17
|
CJS dist/icons/index.cjs.map 157.00 B
|
18
|
-
CJS ⚡️ Build success in
|
18
|
+
CJS ⚡️ Build success in 2647ms
|
19
|
+
ESM dist/index.mjs 293.78 KB
|
19
20
|
ESM dist/icons/index.mjs 110.00 B
|
20
|
-
ESM dist/index.mjs
|
21
|
+
ESM dist/index.mjs.map 629.70 KB
|
21
22
|
ESM dist/icons/index.mjs.map 157.00 B
|
22
|
-
ESM
|
23
|
-
|
24
|
-
DTS ⚡️ Build success in 18537ms
|
23
|
+
ESM ⚡️ Build success in 2649ms
|
24
|
+
DTS ⚡️ Build success in 18639ms
|
25
25
|
DTS dist/icons/index.d.ts 44.00 B
|
26
|
-
DTS dist/index.d.ts 156.
|
26
|
+
DTS dist/index.d.ts 156.18 KB
|
27
27
|
DTS dist/icons/index.d.cts 44.00 B
|
28
|
-
DTS dist/index.d.cts 156.
|
28
|
+
DTS dist/index.d.cts 156.18 KB
|
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
@@ -1082,6 +1082,7 @@ var Alert = React27.forwardRef((props, ref) => {
|
|
1082
1082
|
children && /* @__PURE__ */ jsxRuntime.jsx(
|
1083
1083
|
react.Alert.Description,
|
1084
1084
|
{
|
1085
|
+
width: "100%",
|
1085
1086
|
paddingLeft: title ? 0.5 : 0,
|
1086
1087
|
paddingRight: closable ? 6 : 0,
|
1087
1088
|
children
|
@@ -3861,7 +3862,7 @@ var LineIcon = React27.forwardRef(
|
|
3861
3862
|
return target === "travelTag" ? 0.5 : 1;
|
3862
3863
|
};
|
3863
3864
|
const borderContainer = () => {
|
3864
|
-
return variant === "walk" && target === "travelTag" ? 0 :
|
3865
|
+
return variant === "walk" && target === "travelTag" ? 0 : "1px";
|
3865
3866
|
};
|
3866
3867
|
const Icon3 = getCorrectIcon({
|
3867
3868
|
variant: (
|
@@ -7999,7 +8000,7 @@ var travelTagSlotRecipe = react.defineSlotRecipe({
|
|
7999
8000
|
walk: {
|
8000
8001
|
textContainer: {
|
8001
8002
|
position: "absolute",
|
8002
|
-
left: "
|
8003
|
+
left: "0.875rem",
|
8003
8004
|
bottom: 0
|
8004
8005
|
},
|
8005
8006
|
title: {
|
@@ -8197,6 +8198,12 @@ var lineIconSlotRecipe = react.defineSlotRecipe({
|
|
8197
8198
|
walk: {
|
8198
8199
|
title: {
|
8199
8200
|
color: "text"
|
8201
|
+
},
|
8202
|
+
iconContainer: {
|
8203
|
+
backgroundColor: "none"
|
8204
|
+
},
|
8205
|
+
icon: {
|
8206
|
+
color: "text"
|
8200
8207
|
}
|
8201
8208
|
},
|
8202
8209
|
custom: {
|