@gpichot/spectacle-deck 1.0.6 → 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 +12 -0
- package/index.d.ts +9 -0
- package/index.mjs +12 -0
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -28,9 +28,12 @@ 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,
|
|
35
|
+
DocItem: () => DocItem,
|
|
36
|
+
Documentation: () => Documentation,
|
|
34
37
|
FilePane: () => FilePane,
|
|
35
38
|
HorizontalList: () => HorizontalList,
|
|
36
39
|
HorizontalListItem: () => HorizontalListItem,
|
|
@@ -1518,6 +1521,15 @@ function Side({ children }) {
|
|
|
1518
1521
|
return /* @__PURE__ */ import_react19.default.createElement("div", null, children);
|
|
1519
1522
|
}
|
|
1520
1523
|
Side.mdxType = "Side";
|
|
1524
|
+
function Documentation({ children }) {
|
|
1525
|
+
return /* @__PURE__ */ import_react19.default.createElement("div", null, children);
|
|
1526
|
+
}
|
|
1527
|
+
function DocItem({ children }) {
|
|
1528
|
+
return /* @__PURE__ */ import_react19.default.createElement("div", null, children);
|
|
1529
|
+
}
|
|
1530
|
+
function Box2({ children }) {
|
|
1531
|
+
return /* @__PURE__ */ import_react19.default.createElement("div", null, children);
|
|
1532
|
+
}
|
|
1521
1533
|
|
|
1522
1534
|
// <stdin>
|
|
1523
1535
|
module.exports = src_exports;
|
package/index.d.ts
CHANGED
|
@@ -45,3 +45,12 @@ export declare function Side({ children }: {
|
|
|
45
45
|
export declare namespace Side {
|
|
46
46
|
var mdxType: string;
|
|
47
47
|
}
|
|
48
|
+
export declare function Documentation({ children }: {
|
|
49
|
+
children: React.ReactNode;
|
|
50
|
+
}): React.JSX.Element;
|
|
51
|
+
export declare function DocItem({ children }: {
|
|
52
|
+
children: React.ReactNode;
|
|
53
|
+
}): React.JSX.Element;
|
|
54
|
+
export declare function Box({ children }: {
|
|
55
|
+
children: React.ReactNode;
|
|
56
|
+
}): React.JSX.Element;
|
package/index.mjs
CHANGED
|
@@ -1476,10 +1476,22 @@ function Side({ children }) {
|
|
|
1476
1476
|
return /* @__PURE__ */ React19.createElement("div", null, children);
|
|
1477
1477
|
}
|
|
1478
1478
|
Side.mdxType = "Side";
|
|
1479
|
+
function Documentation({ children }) {
|
|
1480
|
+
return /* @__PURE__ */ React19.createElement("div", null, children);
|
|
1481
|
+
}
|
|
1482
|
+
function DocItem({ children }) {
|
|
1483
|
+
return /* @__PURE__ */ React19.createElement("div", null, children);
|
|
1484
|
+
}
|
|
1485
|
+
function Box2({ children }) {
|
|
1486
|
+
return /* @__PURE__ */ React19.createElement("div", null, children);
|
|
1487
|
+
}
|
|
1479
1488
|
export {
|
|
1489
|
+
Box2 as Box,
|
|
1480
1490
|
Danger,
|
|
1481
1491
|
Deck,
|
|
1482
1492
|
Doc,
|
|
1493
|
+
DocItem,
|
|
1494
|
+
Documentation,
|
|
1483
1495
|
FilePane,
|
|
1484
1496
|
HorizontalList,
|
|
1485
1497
|
HorizontalListItem,
|