lumina-slides 8.0.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/README.md +133 -0
- package/dist/api-docs.json +4469 -0
- package/dist/deck.json +93 -0
- package/dist/layout-features.json +72 -0
- package/dist/layout-half.json +52 -0
- package/dist/layout-statement.json +33 -0
- package/dist/layout-steps.json +37 -0
- package/dist/layout-timeline.json +37 -0
- package/dist/lumina-slides.js +2776 -0
- package/dist/lumina-slides.umd.cjs +15 -0
- package/dist/style.css +1 -0
- package/package.json +54 -0
package/dist/deck.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"meta": {
|
|
3
|
+
"title": "Lumina V8 Showcase"
|
|
4
|
+
},
|
|
5
|
+
"slides": [
|
|
6
|
+
{
|
|
7
|
+
"type": "statement",
|
|
8
|
+
"meta": {
|
|
9
|
+
"orbColor": "#3b82f6"
|
|
10
|
+
},
|
|
11
|
+
"tag": "Declarative Engine",
|
|
12
|
+
"title": "Lumina V8",
|
|
13
|
+
"subtitle": "A highly modular, performance-first presentation engine for the modern web."
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"type": "features",
|
|
17
|
+
"meta": {
|
|
18
|
+
"orbColor": "#10b981",
|
|
19
|
+
"orbPos": {
|
|
20
|
+
"top": "10%",
|
|
21
|
+
"left": "60%"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"title": "Core Capabilities",
|
|
25
|
+
"description": "Built to scale from simple decks to complex interactive apps.",
|
|
26
|
+
"features": [
|
|
27
|
+
{
|
|
28
|
+
"title": "Reactive Store",
|
|
29
|
+
"desc": "Centralized state management with external control.",
|
|
30
|
+
"icon": "fa-database"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"title": "Type Safety",
|
|
34
|
+
"desc": "End-to-end strict TypeScript definitions.",
|
|
35
|
+
"icon": "fa-shield-halved"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"title": "Theming API",
|
|
39
|
+
"desc": "CSS Variable generation for instant branding.",
|
|
40
|
+
"icon": "fa-palette"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"title": "GSAP Context",
|
|
44
|
+
"desc": "Memory-leak free animation scoping.",
|
|
45
|
+
"icon": "fa-film"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"title": "Input Manager",
|
|
49
|
+
"desc": "Keyboard, touch, and remote control ready.",
|
|
50
|
+
"icon": "fa-keyboard"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"title": "Modular",
|
|
54
|
+
"desc": "Tree-shakable component architecture.",
|
|
55
|
+
"icon": "fa-cube"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"type": "half",
|
|
61
|
+
"meta": {
|
|
62
|
+
"orbColor": "#f43f5e"
|
|
63
|
+
},
|
|
64
|
+
"imageSide": "left",
|
|
65
|
+
"image": "https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2000",
|
|
66
|
+
"tag": "Layout Engine",
|
|
67
|
+
"title": "Smart Split Layouts",
|
|
68
|
+
"paragraphs": [
|
|
69
|
+
"Lumina's split layout automatically adapts to viewport size. On desktop, it pins the image and allows content to scroll independently.",
|
|
70
|
+
"This ensures that even slides with substantial amounts of text remain readable and accessible without breaking the visual hierarchy.",
|
|
71
|
+
"Try resizing the browser window to see how the layout transforms into a vertical stack on mobile devices.",
|
|
72
|
+
"Content is King. We prioritize legibility and typographic rhythm above all else."
|
|
73
|
+
],
|
|
74
|
+
"cta": "Read Documentation"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"type": "half",
|
|
78
|
+
"meta": {
|
|
79
|
+
"orbColor": "#8b5cf6"
|
|
80
|
+
},
|
|
81
|
+
"imageSide": "right",
|
|
82
|
+
"image": "https://images.unsplash.com/photo-1558655146-d09347e0c766?q=80&w=2000",
|
|
83
|
+
"tag": "Event System",
|
|
84
|
+
"title": "Interactive by Design",
|
|
85
|
+
"paragraphs": [
|
|
86
|
+
"Events are emitted from deep within components and bubbled up to your main application.",
|
|
87
|
+
"You can listen for specific actions like button clicks, slide transitions, or even custom triggers defined in your own components.",
|
|
88
|
+
"Click the button below to fire a test action event to the console."
|
|
89
|
+
],
|
|
90
|
+
"cta": "Test Event Emit"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"meta": {
|
|
3
|
+
"title": "Layout: Features Gallery"
|
|
4
|
+
},
|
|
5
|
+
"slides": [
|
|
6
|
+
{
|
|
7
|
+
"type": "features",
|
|
8
|
+
"meta": {
|
|
9
|
+
"orbColor": "#06b6d4"
|
|
10
|
+
},
|
|
11
|
+
"title": "Grid System",
|
|
12
|
+
"description": "The features layout automatically arranges cards into a responsive grid.",
|
|
13
|
+
"features": [
|
|
14
|
+
{
|
|
15
|
+
"title": "Card One",
|
|
16
|
+
"desc": "Standard card with an icon.",
|
|
17
|
+
"icon": "fa-bolt"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"title": "Card Two",
|
|
21
|
+
"desc": "Cards scale on hover.",
|
|
22
|
+
"icon": "fa-star"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"title": "Card Three",
|
|
26
|
+
"desc": "Fully responsive on mobile.",
|
|
27
|
+
"icon": "fa-mobile"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"title": "Card Four",
|
|
31
|
+
"desc": "Supports 1-4 columns.",
|
|
32
|
+
"icon": "fa-table"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"title": "Card Five",
|
|
36
|
+
"desc": "Glassmorphism simplicity.",
|
|
37
|
+
"icon": "fa-glass-water"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"title": "Card Six",
|
|
41
|
+
"desc": "Auto-flow grid placement.",
|
|
42
|
+
"icon": "fa-border-all"
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "features",
|
|
48
|
+
"meta": {
|
|
49
|
+
"orbColor": "#f59e0b"
|
|
50
|
+
},
|
|
51
|
+
"title": "Few Items",
|
|
52
|
+
"description": "It looks great with just a few items too.",
|
|
53
|
+
"features": [
|
|
54
|
+
{
|
|
55
|
+
"title": "Focus",
|
|
56
|
+
"desc": "Less items means more attention on each.",
|
|
57
|
+
"icon": "fa-eye"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"title": "Clarity",
|
|
61
|
+
"desc": "Great for high-level overviews.",
|
|
62
|
+
"icon": "fa-list-check"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"title": "Impact",
|
|
66
|
+
"desc": "Icons drive the visual message.",
|
|
67
|
+
"icon": "fa-fire"
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"meta": {
|
|
3
|
+
"title": "Layout: Half Gallery"
|
|
4
|
+
},
|
|
5
|
+
"slides": [
|
|
6
|
+
{
|
|
7
|
+
"type": "half",
|
|
8
|
+
"meta": {
|
|
9
|
+
"orbColor": "#8b5cf6"
|
|
10
|
+
},
|
|
11
|
+
"imageSide": "left",
|
|
12
|
+
"image": "https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2000",
|
|
13
|
+
"tag": "Left Aligned",
|
|
14
|
+
"title": "Image on Left",
|
|
15
|
+
"paragraphs": [
|
|
16
|
+
"The classic split screen. Image on the left, content on the right.",
|
|
17
|
+
"Perfect for introducing a product or feature where the visual context leads the narrative."
|
|
18
|
+
],
|
|
19
|
+
"cta": "Explore Left"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"type": "half",
|
|
23
|
+
"meta": {
|
|
24
|
+
"orbColor": "#10b981"
|
|
25
|
+
},
|
|
26
|
+
"imageSide": "right",
|
|
27
|
+
"image": "https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2000",
|
|
28
|
+
"tag": "Right Aligned",
|
|
29
|
+
"title": "Image on Right",
|
|
30
|
+
"paragraphs": [
|
|
31
|
+
"Switching sides is as easy as changing one property in the JSON.",
|
|
32
|
+
"This layout is great for maintaining visual interest by alternating image positions across multiple slides.",
|
|
33
|
+
"Notice how the content area scrolls independently if the text gets too long."
|
|
34
|
+
],
|
|
35
|
+
"cta": "Explore Right"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"type": "half",
|
|
39
|
+
"meta": {
|
|
40
|
+
"orbColor": "#f43f5e"
|
|
41
|
+
},
|
|
42
|
+
"imageSide": "right",
|
|
43
|
+
"image": "https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2000",
|
|
44
|
+
"tag": "No CTA",
|
|
45
|
+
"title": "Informational",
|
|
46
|
+
"paragraphs": [
|
|
47
|
+
"Sometimes you don't need a button. This variation omits the CTA field entirely.",
|
|
48
|
+
"Use this for pure storytelling or deep dives into technical details."
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"meta": {
|
|
3
|
+
"title": "Layout: Statement Gallery"
|
|
4
|
+
},
|
|
5
|
+
"slides": [
|
|
6
|
+
{
|
|
7
|
+
"type": "statement",
|
|
8
|
+
"meta": {
|
|
9
|
+
"orbColor": "#ec4899"
|
|
10
|
+
},
|
|
11
|
+
"tag": "Minimal",
|
|
12
|
+
"title": "Impactful Headlines",
|
|
13
|
+
"subtitle": "The standard statement slide allows for massive typography to drive a point home."
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"type": "statement",
|
|
17
|
+
"meta": {
|
|
18
|
+
"orbColor": "#eab308"
|
|
19
|
+
},
|
|
20
|
+
"tag": "Typography",
|
|
21
|
+
"title": "Gradient Text Support",
|
|
22
|
+
"subtitle": "Our engine automatically applies gradients to H1 elements for that modern SaaS look."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "statement",
|
|
26
|
+
"meta": {
|
|
27
|
+
"orbColor": "#3b82f6"
|
|
28
|
+
},
|
|
29
|
+
"tag": "No Subtitle",
|
|
30
|
+
"title": "A Bold Claim Stands Alone"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"meta": {
|
|
3
|
+
"title": "Layout: Steps Gallery"
|
|
4
|
+
},
|
|
5
|
+
"slides": [
|
|
6
|
+
{
|
|
7
|
+
"type": "steps",
|
|
8
|
+
"meta": {
|
|
9
|
+
"orbColor": "#ec4899"
|
|
10
|
+
},
|
|
11
|
+
"title": "How It Works",
|
|
12
|
+
"subtitle": "Getting started with Lumina is a simple 4-step process.",
|
|
13
|
+
"steps": [
|
|
14
|
+
{
|
|
15
|
+
"step": "01",
|
|
16
|
+
"title": "Install",
|
|
17
|
+
"description": "Add the library to your Vue 3 project via npm or yarn."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"step": "02",
|
|
21
|
+
"title": "Configure",
|
|
22
|
+
"description": "Set up your theme options and global settings in the init call."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"step": "03",
|
|
26
|
+
"title": "Create",
|
|
27
|
+
"description": "Build your slides using the declarative JSON format."
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"step": "04",
|
|
31
|
+
"title": "Deploy",
|
|
32
|
+
"description": "Ship your high-performance deck to any static host."
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"meta": {
|
|
3
|
+
"title": "Layout: Timeline Gallery"
|
|
4
|
+
},
|
|
5
|
+
"slides": [
|
|
6
|
+
{
|
|
7
|
+
"type": "timeline",
|
|
8
|
+
"meta": {
|
|
9
|
+
"orbColor": "#3b82f6"
|
|
10
|
+
},
|
|
11
|
+
"title": "Project History",
|
|
12
|
+
"subtitle": "A visual journey through our milestones.",
|
|
13
|
+
"timeline": [
|
|
14
|
+
{
|
|
15
|
+
"date": "Q1 2023",
|
|
16
|
+
"title": "Inception",
|
|
17
|
+
"description": "The initial concept was drafted and the core team was assembled to begin research."
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Q3 2023",
|
|
21
|
+
"title": "Prototype",
|
|
22
|
+
"description": "First functional MVP was released to a closed group of testers for feedback."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"date": "Q1 2024",
|
|
26
|
+
"title": "Beta Launch",
|
|
27
|
+
"description": "Public beta opened, bringing in over 10,000 active users in the first month."
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"date": "Q4 2024",
|
|
31
|
+
"title": "Global Expansion",
|
|
32
|
+
"description": "Scaling infrastructure to support enterprise clients across 3 continents."
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|