@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/dist/index.d.cts
CHANGED
@@ -2115,6 +2115,12 @@ declare const lineIconSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"icon" |
|
|
2115
2115
|
title: {
|
2116
2116
|
color: "text";
|
2117
2117
|
};
|
2118
|
+
iconContainer: {
|
2119
|
+
backgroundColor: "none";
|
2120
|
+
};
|
2121
|
+
icon: {
|
2122
|
+
color: "text";
|
2123
|
+
};
|
2118
2124
|
};
|
2119
2125
|
custom: {
|
2120
2126
|
iconContainer: {};
|
@@ -2264,7 +2270,7 @@ declare const travelTagSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"icon"
|
|
2264
2270
|
walk: {
|
2265
2271
|
textContainer: {
|
2266
2272
|
position: "absolute";
|
2267
|
-
left: "
|
2273
|
+
left: "0.875rem";
|
2268
2274
|
bottom: number;
|
2269
2275
|
};
|
2270
2276
|
title: {
|
package/dist/index.d.ts
CHANGED
@@ -2115,6 +2115,12 @@ declare const lineIconSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"icon" |
|
|
2115
2115
|
title: {
|
2116
2116
|
color: "text";
|
2117
2117
|
};
|
2118
|
+
iconContainer: {
|
2119
|
+
backgroundColor: "none";
|
2120
|
+
};
|
2121
|
+
icon: {
|
2122
|
+
color: "text";
|
2123
|
+
};
|
2118
2124
|
};
|
2119
2125
|
custom: {
|
2120
2126
|
iconContainer: {};
|
@@ -2264,7 +2270,7 @@ declare const travelTagSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"icon"
|
|
2264
2270
|
walk: {
|
2265
2271
|
textContainer: {
|
2266
2272
|
position: "absolute";
|
2267
|
-
left: "
|
2273
|
+
left: "0.875rem";
|
2268
2274
|
bottom: number;
|
2269
2275
|
};
|
2270
2276
|
title: {
|
package/dist/index.mjs
CHANGED
@@ -1062,6 +1062,7 @@ var Alert = forwardRef((props, ref) => {
|
|
1062
1062
|
children && /* @__PURE__ */ jsx(
|
1063
1063
|
Alert$1.Description,
|
1064
1064
|
{
|
1065
|
+
width: "100%",
|
1065
1066
|
paddingLeft: title ? 0.5 : 0,
|
1066
1067
|
paddingRight: closable ? 6 : 0,
|
1067
1068
|
children
|
@@ -3841,7 +3842,7 @@ var LineIcon = forwardRef(
|
|
3841
3842
|
return target === "travelTag" ? 0.5 : 1;
|
3842
3843
|
};
|
3843
3844
|
const borderContainer = () => {
|
3844
|
-
return variant === "walk" && target === "travelTag" ? 0 :
|
3845
|
+
return variant === "walk" && target === "travelTag" ? 0 : "1px";
|
3845
3846
|
};
|
3846
3847
|
const Icon3 = getCorrectIcon({
|
3847
3848
|
variant: (
|
@@ -7979,7 +7980,7 @@ var travelTagSlotRecipe = defineSlotRecipe({
|
|
7979
7980
|
walk: {
|
7980
7981
|
textContainer: {
|
7981
7982
|
position: "absolute",
|
7982
|
-
left: "
|
7983
|
+
left: "0.875rem",
|
7983
7984
|
bottom: 0
|
7984
7985
|
},
|
7985
7986
|
title: {
|
@@ -8177,6 +8178,12 @@ var lineIconSlotRecipe = defineSlotRecipe({
|
|
8177
8178
|
walk: {
|
8178
8179
|
title: {
|
8179
8180
|
color: "text"
|
8181
|
+
},
|
8182
|
+
iconContainer: {
|
8183
|
+
backgroundColor: "none"
|
8184
|
+
},
|
8185
|
+
icon: {
|
8186
|
+
color: "text"
|
8180
8187
|
}
|
8181
8188
|
},
|
8182
8189
|
custom: {
|