@marigold/components 1.1.0 → 1.1.1

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/dist/index.js CHANGED
@@ -633,7 +633,7 @@ var Headline = (_a) => {
633
633
  ]);
634
634
  const styles = (0, import_system10.useComponentStyles)("Headline", {
635
635
  variant,
636
- size: size != null ? size : `level-${level}`
636
+ size: size ?? `level-${level}`
637
637
  });
638
638
  return /* @__PURE__ */ import_react15.default.createElement(import_system10.Box, __spreadProps(__spreadValues({
639
639
  as: `h${level}`
@@ -713,7 +713,7 @@ var Overlay = (_a) => {
713
713
  var _b = _a, {
714
714
  children,
715
715
  open = false,
716
- container = document.body
716
+ container
717
717
  } = _b, props = __objRest(_b, [
718
718
  "children",
719
719
  "open",
package/dist/index.mjs CHANGED
@@ -592,7 +592,7 @@ var Headline = (_a) => {
592
592
  ]);
593
593
  const styles = useComponentStyles9("Headline", {
594
594
  variant,
595
- size: size != null ? size : `level-${level}`
595
+ size: size ?? `level-${level}`
596
596
  });
597
597
  return /* @__PURE__ */ React15.createElement(Box8, __spreadProps(__spreadValues({
598
598
  as: `h${level}`
@@ -672,7 +672,7 @@ var Overlay = (_a) => {
672
672
  var _b = _a, {
673
673
  children,
674
674
  open = false,
675
- container = document.body
675
+ container
676
676
  } = _b, props = __objRest(_b, [
677
677
  "children",
678
678
  "open",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marigold/components",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Components for the Marigold Design System",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -23,8 +23,8 @@
23
23
  "directory": "packages/components"
24
24
  },
25
25
  "dependencies": {
26
- "@marigold/icons": "0.7.2",
27
- "@marigold/system": "1.1.0",
26
+ "@marigold/icons": "0.7.3",
27
+ "@marigold/system": "1.1.1",
28
28
  "@marigold/tokens": "3.0.0",
29
29
  "@marigold/types": "0.5.1",
30
30
  "@react-aria/button": "^3.3.3",
@@ -78,7 +78,7 @@
78
78
  "@marigold/tsconfig": "0.3.0",
79
79
  "react": "17.0.2",
80
80
  "react-dom": "17.0.2",
81
- "tsup": "5.12.9"
81
+ "tsup": "6.0.1"
82
82
  },
83
83
  "scripts": {
84
84
  "build": "tsup src/index.ts",