@particle-academy/fancy-slides 0.9.0 → 0.10.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/dist/index.cjs +75 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +44 -3
- package/dist/index.d.ts +44 -3
- package/dist/index.js +72 -1
- package/dist/index.js.map +1 -1
- package/dist/registry.d.cts +1 -1
- package/dist/registry.d.ts +1 -1
- package/dist/{types-2yYMJPhi.d.cts → types-C3w37g3A.d.cts} +5 -0
- package/dist/{types-2yYMJPhi.d.ts → types-C3w37g3A.d.ts} +5 -0
- package/package.json +1 -1
package/dist/registry.d.cts
CHANGED
package/dist/registry.d.ts
CHANGED
|
@@ -292,6 +292,11 @@ type DeckOp = {
|
|
|
292
292
|
} | {
|
|
293
293
|
kind: "deck_apply_theme";
|
|
294
294
|
theme: Theme;
|
|
295
|
+
}
|
|
296
|
+
/** Replace the entire deck atomically — stream a full presentation IN in one op. */
|
|
297
|
+
| {
|
|
298
|
+
kind: "deck_set";
|
|
299
|
+
deck: Deck;
|
|
295
300
|
} | {
|
|
296
301
|
kind: "slide_add";
|
|
297
302
|
index: number;
|
|
@@ -292,6 +292,11 @@ type DeckOp = {
|
|
|
292
292
|
} | {
|
|
293
293
|
kind: "deck_apply_theme";
|
|
294
294
|
theme: Theme;
|
|
295
|
+
}
|
|
296
|
+
/** Replace the entire deck atomically — stream a full presentation IN in one op. */
|
|
297
|
+
| {
|
|
298
|
+
kind: "deck_set";
|
|
299
|
+
deck: Deck;
|
|
295
300
|
} | {
|
|
296
301
|
kind: "slide_add";
|
|
297
302
|
index: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@particle-academy/fancy-slides",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Presentation editor + web viewer for the fancy UI set — Google-Slides-style deck authoring with a JSON-friendly schema, full keyboard-driven viewer, and an agent bridge so LLMs can compose decks directly.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|