slides-grab 1.4.0 → 1.4.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slides-grab",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Agent-first presentation framework — plan, design, and visually edit HTML slides with Claude Code or Codex, then export to PDF or experimental/unstable PPTX/Figma formats",
5
5
  "license": "MIT",
6
6
  "author": "vkehfdl1",
@@ -49,6 +49,9 @@ const DESIGN_DIVERSITY_RELATED_MAP = {
49
49
  'ppt-mckinsey-ghost-deck': ['swiss-international-style', 'executive-minimal'],
50
50
  'ppt-bcg-exhibit-deck': ['swiss-international-style', 'corporate-blue'],
51
51
  'ppt-bain-results-deck': ['executive-minimal', 'corporate-blue'],
52
+ 'ppt-memphis-retro-90s': ['memphis-pop-pattern', 'retro-y2k'],
53
+ 'ppt-botanical-organic': ['hand-crafted-organic', 'dark-forest-nature', 'nordic-minimalism'],
54
+ 'ppt-print-first-newspaper': ['brutalist-newspaper', 'risograph-print', 'editorial-magazine'],
52
55
  'ppt-keynote-minimal-fullbleed': ['monochrome-minimal', 'executive-minimal'],
53
56
  'ppt-minimal-mono-note': ['monochrome-minimal'],
54
57
  'ppt-monochrome-risk': ['monochrome-minimal', 'executive-minimal'],
@@ -59,6 +62,8 @@ const DESIGN_DIVERSITY_RELATED_MAP = {
59
62
  'ppt-dark-luxury-keynote': ['modern-dark', 'dark-neon-miami'],
60
63
  'ppt-vivid-gradient-future': ['gradient-mesh', 'aurora-neon-glow'],
61
64
  'ppt-vivid-gradient-infographic-deck': ['gradient-mesh', 'aurora-neon-glow'],
65
+ 'ppt-expressive-soundwave-deck': ['dark-neon-miami', 'typographic-bold'],
66
+ 'ppt-cinematic-keynote-deck': ['modern-dark', 'art-deco-luxe'],
62
67
  };
63
68
 
64
69
  // reverse map: builtin id -> [dd slug] for enrichment
@@ -116,7 +121,11 @@ export function getDesignStyle(styleId) {
116
121
  if (!styleId) {
117
122
  return null;
118
123
  }
119
- return DESIGN_STYLES_BY_ID.get(styleId) ?? null;
124
+ const style = DESIGN_STYLES_BY_ID.get(styleId);
125
+ if (style?.classification === 'source-alias') {
126
+ return DESIGN_STYLES_BY_ID.get(style.aliasOf) ?? style;
127
+ }
128
+ return style ?? null;
120
129
  }
121
130
 
122
131
  export function requireDesignStyle(styleId) {