@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 +4 -0
- package/index.d.ts +3 -0
- package/index.mjs +4 -0
- package/package.json +1 -1
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
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,
|