nextjs-slides 0.3.1 → 0.3.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/README.md +2 -0
- package/dist/slides.css +0 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@ Composable slide deck primitives for Next.js — powered by React 19 ViewTransit
|
|
|
6
6
|
|
|
7
7
|
Build full presentations from React components with URL-based routing, keyboard navigation, progress indicators, and smooth slide transitions — all declarative.
|
|
8
8
|
|
|
9
|
+
> **Note:** I'm not experienced with publishing libraries — I built this for my own presentations. That said, feel free to try it out!
|
|
10
|
+
|
|
9
11
|
## Install
|
|
10
12
|
|
|
11
13
|
```bash
|
package/dist/slides.css
CHANGED
|
@@ -17,24 +17,6 @@
|
|
|
17
17
|
--sh-sign: #24292e;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
@media (prefers-color-scheme: dark) {
|
|
21
|
-
:root {
|
|
22
|
-
--nxs-code-bg: #0a0a0a;
|
|
23
|
-
--nxs-code-border: #262626;
|
|
24
|
-
--nxs-code-text: #ededed;
|
|
25
|
-
--sh-keyword: #ff7b72;
|
|
26
|
-
--sh-string: #a5d6ff;
|
|
27
|
-
--sh-property: #79c0ff;
|
|
28
|
-
--sh-class: #d2a8ff;
|
|
29
|
-
--sh-entity: #d2a8ff;
|
|
30
|
-
--sh-tag: #7ee787;
|
|
31
|
-
--sh-identifier: #ededed;
|
|
32
|
-
--sh-literal: #79c0ff;
|
|
33
|
-
--sh-comment: #7a7a7a;
|
|
34
|
-
--sh-sign: #ededed;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
20
|
.dark {
|
|
39
21
|
--nxs-code-bg: #0a0a0a;
|
|
40
22
|
--nxs-code-border: #262626;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nextjs-slides",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Composable slide deck primitives for Next.js — powered by React 19 ViewTransitions, Tailwind CSS, and highlight.js syntax highlighting.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|