@innovastudio/contentbuilder 1.5.189 → 1.5.190

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.5.189",
4
+ "version": "1.5.190",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "types": "index.d.ts",
@@ -88128,6 +88128,9 @@ class CodeChat {
88128
88128
  this.systemModel = this.builder.systemModel;
88129
88129
  }
88130
88130
  this.codeModels = [{
88131
+ id: 'anthropic/claude-opus-4.5',
88132
+ label: 'Claude Opus 4.5'
88133
+ }, {
88131
88134
  id: 'google/gemini-3-pro-preview',
88132
88135
  label: 'Google Gemini 3 Pro Preview'
88133
88136
  }, {
@@ -90142,6 +90145,10 @@ ${this.builder.html()}
90142
90145
  TASK: ${task.description}
90143
90146
 
90144
90147
  IMPORTANT: Follow the Best Practices in Content framework.
90148
+ ${this.builder.editor ? `CRITICAL: This project uses the Content.css and Box framework, NOT Tailwind. ONLY use classes explicitly documented in this framework guide.
90149
+ DO NOT use Tailwind classes like gap-4, w-1/2, top-4, hover:scale-120, etc.` : `CRITICAL: This project uses the Content.css framework, NOT Tailwind. ONLY use classes explicitly documented in this framework guide.
90150
+ DO NOT use Tailwind classes like gap-4, w-1/2, top-4, hover:scale-120, etc.`}
90151
+ For flexibility, you can use inline styles or embedded <style> at the end of the generated HTML.
90145
90152
 
90146
90153
  ${imageContext}
90147
90154
  ${chatContext}