@vygruppen/spor-react 12.10.3 → 12.10.5
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 +13 -0
- package/dist/index.cjs +11 -3
- 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 +11 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/alert/Alert.tsx +1 -0
- package/src/linjetag/LineIcon.tsx +1 -1
- package/src/linjetag/TravelTag.tsx +1 -0
- package/src/theme/slot-recipes/line-icon.ts +6 -0
- package/src/theme/slot-recipes/travel-tag.ts +2 -1
- package/src/toast/toast.tsx +1 -1
package/package.json
CHANGED
package/src/alert/Alert.tsx
CHANGED
@@ -86,7 +86,7 @@ export const LineIcon = forwardRef<HTMLDivElement, LineIconProps>(
|
|
86
86
|
};
|
87
87
|
|
88
88
|
const borderContainer = () => {
|
89
|
-
return variant === "walk" && target === "travelTag" ? 0 :
|
89
|
+
return variant === "walk" && target === "travelTag" ? 0 : "1px";
|
90
90
|
};
|
91
91
|
|
92
92
|
const Icon: React.ElementType = getCorrectIcon({
|
@@ -137,9 +137,10 @@ export const travelTagSlotRecipe = defineSlotRecipe({
|
|
137
137
|
walk: {
|
138
138
|
textContainer: {
|
139
139
|
position: "absolute",
|
140
|
-
left: "
|
140
|
+
left: "0.875rem",
|
141
141
|
bottom: 0,
|
142
142
|
},
|
143
|
+
|
143
144
|
title: {
|
144
145
|
fontSize: "mobile.xs",
|
145
146
|
fontWeight: "normal",
|