@vygruppen/spor-react 12.4.9 → 12.4.11
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 +1 -1
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/theme/tokens/breakpoints.ts +0 -1
- package/src/typography/Heading.tsx +1 -10
package/dist/index.mjs
CHANGED
@@ -832,17 +832,7 @@ var Heading = forwardRef(
|
|
832
832
|
...rest
|
833
833
|
} = props;
|
834
834
|
const id = externalId ?? (autoId && typeof rest.children === "string") ? slugify(rest.children) : void 0;
|
835
|
-
return /* @__PURE__ */ jsx(
|
836
|
-
Text,
|
837
|
-
{
|
838
|
-
as,
|
839
|
-
textStyle: variant,
|
840
|
-
id,
|
841
|
-
color: "text",
|
842
|
-
ref,
|
843
|
-
...rest
|
844
|
-
}
|
845
|
-
);
|
835
|
+
return /* @__PURE__ */ jsx(Text, { as, textStyle: variant, id, ref, ...rest });
|
846
836
|
}
|
847
837
|
);
|
848
838
|
var Text3 = forwardRef(
|
@@ -10100,7 +10090,6 @@ var animationStyles = defineAnimationStyles({
|
|
10100
10090
|
}
|
10101
10091
|
});
|
10102
10092
|
var breakpoints = {
|
10103
|
-
base: "0px",
|
10104
10093
|
sm: tokens23__default.size.breakpoint.sm,
|
10105
10094
|
md: tokens23__default.size.breakpoint.md,
|
10106
10095
|
lg: tokens23__default.size.breakpoint.lg,
|