@reslide-dev/core 0.2.0 → 0.2.2
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/Mermaid-CUCMRIkQ.mjs +1779 -0
- package/dist/Mermaid-CUQUPHdK.d.mts +240 -0
- package/dist/index.d.mts +11 -239
- package/dist/index.mjs +8 -1750
- package/dist/mdx-components.d.mts +18 -0
- package/dist/mdx-components.mjs +17 -0
- package/package.json +9 -3
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { C as Deck, a as Draggable, b as ClickSteps, d as PresenterView, f as PresenterViewProps, g as Mark, l as isPresenterView, m as Notes, p as SlotRight, r as Toc, s as GlobalLayer, t as Mermaid, v as Click, x as Slide } from "./Mermaid-CUQUPHdK.mjs";
|
|
2
|
+
|
|
3
|
+
//#region src/mdx-components.d.ts
|
|
4
|
+
declare const reslideComponents: {
|
|
5
|
+
Deck: typeof Deck;
|
|
6
|
+
Slide: typeof Slide;
|
|
7
|
+
Click: typeof Click;
|
|
8
|
+
ClickSteps: typeof ClickSteps;
|
|
9
|
+
Mark: typeof Mark;
|
|
10
|
+
Notes: typeof Notes;
|
|
11
|
+
SlotRight: typeof SlotRight;
|
|
12
|
+
GlobalLayer: typeof GlobalLayer;
|
|
13
|
+
Draggable: typeof Draggable;
|
|
14
|
+
Toc: typeof Toc;
|
|
15
|
+
Mermaid: typeof Mermaid;
|
|
16
|
+
};
|
|
17
|
+
//#endregion
|
|
18
|
+
export { PresenterView, type PresenterViewProps, isPresenterView, reslideComponents };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { a as PresenterView, c as Mark, d as Slide, f as Deck, i as GlobalLayer, l as Click, n as Toc, o as SlotRight, r as Draggable, s as Notes, t as Mermaid, u as ClickSteps, y as isPresenterView } from "./Mermaid-CUCMRIkQ.mjs";
|
|
2
|
+
//#region src/mdx-components.ts
|
|
3
|
+
const reslideComponents = {
|
|
4
|
+
Deck,
|
|
5
|
+
Slide,
|
|
6
|
+
Click,
|
|
7
|
+
ClickSteps,
|
|
8
|
+
Mark,
|
|
9
|
+
Notes,
|
|
10
|
+
SlotRight,
|
|
11
|
+
GlobalLayer,
|
|
12
|
+
Draggable,
|
|
13
|
+
Toc,
|
|
14
|
+
Mermaid
|
|
15
|
+
};
|
|
16
|
+
//#endregion
|
|
17
|
+
export { PresenterView, isPresenterView, reslideComponents };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reslide-dev/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Framework-agnostic React presentation components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -9,8 +9,14 @@
|
|
|
9
9
|
],
|
|
10
10
|
"type": "module",
|
|
11
11
|
"exports": {
|
|
12
|
-
".":
|
|
13
|
-
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.mts",
|
|
14
|
+
"import": "./dist/index.mjs"
|
|
15
|
+
},
|
|
16
|
+
"./mdx-components": {
|
|
17
|
+
"types": "./dist/mdx-components.d.mts",
|
|
18
|
+
"import": "./dist/mdx-components.mjs"
|
|
19
|
+
},
|
|
14
20
|
"./themes/default.css": "./src/themes/default.css",
|
|
15
21
|
"./themes/dark.css": "./src/themes/dark.css",
|
|
16
22
|
"./transitions.css": "./src/transitions.css",
|