@gpichot/spectacle-deck 1.15.0 → 1.16.0
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 +5 -0
- package/index.d.ts +6 -0
- package/index.mjs +5 -0
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -49,6 +49,7 @@ __export(src_exports, {
|
|
|
49
49
|
Mermaid: () => Mermaid,
|
|
50
50
|
Morph: () => Morph,
|
|
51
51
|
MorphImage: () => MorphImage,
|
|
52
|
+
Notes: () => Notes,
|
|
52
53
|
PassThrough: () => PassThrough,
|
|
53
54
|
ProgressRing: () => ProgressRing,
|
|
54
55
|
ScaleIn: () => ScaleIn,
|
|
@@ -3724,6 +3725,10 @@ function Success({ children }) {
|
|
|
3724
3725
|
function Warning({ children }) {
|
|
3725
3726
|
return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { style: { color: "yellow" }, children });
|
|
3726
3727
|
}
|
|
3728
|
+
function Notes({ children }) {
|
|
3729
|
+
return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { style: { display: "none" }, children });
|
|
3730
|
+
}
|
|
3731
|
+
Notes.mdxType = "Notes";
|
|
3727
3732
|
function Side({ children }) {
|
|
3728
3733
|
return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { children });
|
|
3729
3734
|
}
|
package/index.d.ts
CHANGED
|
@@ -26,6 +26,12 @@ export declare function Success({ children }: {
|
|
|
26
26
|
export declare function Warning({ children }: {
|
|
27
27
|
children: React.ReactNode;
|
|
28
28
|
}): import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
export declare function Notes({ children }: {
|
|
30
|
+
children: React.ReactNode;
|
|
31
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
export declare namespace Notes {
|
|
33
|
+
var mdxType: string;
|
|
34
|
+
}
|
|
29
35
|
export declare function Side({ children }: {
|
|
30
36
|
children: React.ReactNode;
|
|
31
37
|
}): import("react/jsx-runtime").JSX.Element;
|
package/index.mjs
CHANGED
|
@@ -3647,6 +3647,10 @@ function Success({ children }) {
|
|
|
3647
3647
|
function Warning({ children }) {
|
|
3648
3648
|
return /* @__PURE__ */ jsx43("div", { style: { color: "yellow" }, children });
|
|
3649
3649
|
}
|
|
3650
|
+
function Notes({ children }) {
|
|
3651
|
+
return /* @__PURE__ */ jsx43("div", { style: { display: "none" }, children });
|
|
3652
|
+
}
|
|
3653
|
+
Notes.mdxType = "Notes";
|
|
3650
3654
|
function Side({ children }) {
|
|
3651
3655
|
return /* @__PURE__ */ jsx43("div", { children });
|
|
3652
3656
|
}
|
|
@@ -3683,6 +3687,7 @@ export {
|
|
|
3683
3687
|
Mermaid,
|
|
3684
3688
|
Morph,
|
|
3685
3689
|
MorphImage,
|
|
3690
|
+
Notes,
|
|
3686
3691
|
PassThrough,
|
|
3687
3692
|
ProgressRing,
|
|
3688
3693
|
ScaleIn,
|