@gpichot/spectacle-deck 1.0.7 → 1.0.8

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/index.cjs CHANGED
@@ -28,6 +28,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
28
28
  // src/index.tsx
29
29
  var src_exports = {};
30
30
  __export(src_exports, {
31
+ Box: () => Box2,
31
32
  Danger: () => Danger,
32
33
  Deck: () => Deck,
33
34
  Doc: () => Doc,
@@ -1526,6 +1527,9 @@ function Documentation({ children }) {
1526
1527
  function DocItem({ children }) {
1527
1528
  return /* @__PURE__ */ import_react19.default.createElement("div", null, children);
1528
1529
  }
1530
+ function Box2({ children }) {
1531
+ return /* @__PURE__ */ import_react19.default.createElement("div", null, children);
1532
+ }
1529
1533
 
1530
1534
  // <stdin>
1531
1535
  module.exports = src_exports;
package/index.d.ts CHANGED
@@ -51,3 +51,6 @@ export declare function Documentation({ children }: {
51
51
  export declare function DocItem({ children }: {
52
52
  children: React.ReactNode;
53
53
  }): React.JSX.Element;
54
+ export declare function Box({ children }: {
55
+ children: React.ReactNode;
56
+ }): React.JSX.Element;
package/index.mjs CHANGED
@@ -1482,7 +1482,11 @@ function Documentation({ children }) {
1482
1482
  function DocItem({ children }) {
1483
1483
  return /* @__PURE__ */ React19.createElement("div", null, children);
1484
1484
  }
1485
+ function Box2({ children }) {
1486
+ return /* @__PURE__ */ React19.createElement("div", null, children);
1487
+ }
1485
1488
  export {
1489
+ Box2 as Box,
1486
1490
  Danger,
1487
1491
  Deck,
1488
1492
  Doc,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpichot/spectacle-deck",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "index.cjs",