lumina-slides 8.2.1 → 8.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/README.md +7 -7
- package/package.json +5 -3
- package/public/api-docs.json +6078 -0
- package/public/deck.json +93 -0
- package/public/demo.gif +0 -0
- package/public/layout-embedded.json +65 -0
- package/public/layout-embedded.png +0 -0
- package/public/layout-features.json +72 -0
- package/public/layout-features.png +0 -0
- package/public/layout-half.json +52 -0
- package/public/layout-half.png +0 -0
- package/public/layout-statement.json +33 -0
- package/public/layout-statement.png +0 -0
- package/public/layout-steps.json +37 -0
- package/public/layout-steps.png +0 -0
- package/public/layout-timeline.json +37 -0
- package/public/layout-timeline.png +0 -0
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
<br />
|
|
11
11
|
|
|
12
|
-
<img src="public/demo.gif" alt="Lumina Engine Demo" width="100%" style="border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);" />
|
|
12
|
+
<img src="https://raw.githubusercontent.com/PailletJuanPablo/lumina-slides/main/public/demo.gif" alt="Lumina Engine Demo" width="100%" style="border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);" />
|
|
13
13
|
|
|
14
14
|
<br />
|
|
15
15
|
</div>
|
|
@@ -97,42 +97,42 @@ Lumina provides semantic layout types that LLMs can easily select based on conte
|
|
|
97
97
|
|
|
98
98
|
Big ideas, quotes, titles. Great for "cover" slides.
|
|
99
99
|
|
|
100
|
-
[](public/layout-statement.json)
|
|
100
|
+
[](public/layout-statement.json)
|
|
101
101
|
[View JSON Source](public/layout-statement.json)
|
|
102
102
|
|
|
103
103
|
### **Half**
|
|
104
104
|
|
|
105
105
|
Comparisons, text + image context.
|
|
106
106
|
|
|
107
|
-
[](public/layout-half.json)
|
|
107
|
+
[](public/layout-half.json)
|
|
108
108
|
[View JSON Source](public/layout-half.json)
|
|
109
109
|
|
|
110
110
|
### **Features**
|
|
111
111
|
|
|
112
112
|
Lists of benefits, KPIs, or grid items.
|
|
113
113
|
|
|
114
|
-
[](public/layout-features.json)
|
|
114
|
+
[](public/layout-features.json)
|
|
115
115
|
[View JSON Source](public/layout-features.json)
|
|
116
116
|
|
|
117
117
|
### **Timeline**
|
|
118
118
|
|
|
119
119
|
Chronological events, roadmaps, history.
|
|
120
120
|
|
|
121
|
-
[](public/layout-timeline.json)
|
|
121
|
+
[](public/layout-timeline.json)
|
|
122
122
|
[View JSON Source](public/layout-timeline.json)
|
|
123
123
|
|
|
124
124
|
### **Steps**
|
|
125
125
|
|
|
126
126
|
Tutorials, flows, numbered processes.
|
|
127
127
|
|
|
128
|
-
[](public/layout-steps.json)
|
|
128
|
+
[](public/layout-steps.json)
|
|
129
129
|
[View JSON Source](public/layout-steps.json)
|
|
130
130
|
|
|
131
131
|
### **Embedded (Widget Mode)**
|
|
132
132
|
|
|
133
133
|
Slides constrained to a container, perfect for dashboards.
|
|
134
134
|
|
|
135
|
-
[](public/layout-embedded.json)
|
|
135
|
+
[](public/layout-embedded.json)
|
|
136
136
|
[View JSON Source](public/layout-embedded.json)
|
|
137
137
|
|
|
138
138
|
## 📚 API Reference
|
package/package.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lumina-slides",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.2",
|
|
4
4
|
"homepage": "https://pailletjuanpablo.github.io/lumina-slides/",
|
|
5
5
|
"description": "The interface layer for the agentic era. Turn text to UI with declarative JSON.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
8
|
-
"dist"
|
|
8
|
+
"dist",
|
|
9
|
+
"public",
|
|
10
|
+
"README.md"
|
|
9
11
|
],
|
|
10
12
|
"main": "./dist/lumina-slides.umd.cjs",
|
|
11
13
|
"module": "./dist/lumina-slides.js",
|
|
@@ -68,4 +70,4 @@
|
|
|
68
70
|
"url": "https://pailletjp.com"
|
|
69
71
|
},
|
|
70
72
|
"license": "MIT"
|
|
71
|
-
}
|
|
73
|
+
}
|