slides-grab 1.2.4 → 1.2.5

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.2.4",
3
+ "version": "1.2.5",
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",
@@ -450,7 +450,7 @@ export function buildCodexExecArgs({ prompt, imagePath, model }) {
450
450
  return args;
451
451
  }
452
452
 
453
- export const CLAUDE_MODELS = ['claude-opus-4-6', 'claude-sonnet-4-6'];
453
+ export const CLAUDE_MODELS = ['claude-opus-4-7', 'claude-sonnet-4-6'];
454
454
 
455
455
  export function isClaudeModel(model) {
456
456
  return typeof model === 'string' && CLAUDE_MODELS.includes(model.trim());
@@ -15,7 +15,7 @@ export const POPOVER_TEXT = 'text';
15
15
  export const POPOVER_TEXT_COLOR = 'text-color';
16
16
  export const POPOVER_BG_COLOR = 'bg-color';
17
17
  export const POPOVER_SIZE = 'size';
18
- export const DEFAULT_MODELS = ['gpt-5.4', 'gpt-5.3-codex', 'gpt-5.3-codex-spark', 'claude-opus-4-6', 'claude-sonnet-4-6'];
18
+ export const DEFAULT_MODELS = ['gpt-5.4', 'gpt-5.3-codex', 'gpt-5.3-codex-spark', 'claude-opus-4-7', 'claude-sonnet-4-6'];
19
19
  export const DIRECT_TEXT_TAGS = new Set(['p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'li']);
20
20
  export const NON_SELECTABLE_TAGS = new Set(['html', 'head', 'body', 'script', 'style', 'link', 'meta', 'noscript']);
21
21