react-godot-shader-preview 0.6.0 → 0.6.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.
@@ -136,11 +136,9 @@
136
136
 
137
137
  /* Parameters panel */
138
138
  .rgs-paramsPanel {
139
- margin-top: 10px;
140
139
  padding: 10px 12px 12px;
141
140
  background: var(--rgs-bg);
142
141
  border: 1px solid var(--rgs-b);
143
- border-radius: 8px;
144
142
  font-size: 12px;
145
143
  }
146
144
 
package/dist/style.css CHANGED
@@ -136,11 +136,9 @@
136
136
 
137
137
  /* Parameters panel */
138
138
  .rgs-paramsPanel {
139
- margin-top: 10px;
140
139
  padding: 10px 12px 12px;
141
140
  background: var(--rgs-bg);
142
141
  border: 1px solid var(--rgs-b);
143
- border-radius: 8px;
144
142
  font-size: 12px;
145
143
  }
146
144
 
package/godot/index.html CHANGED
@@ -29,7 +29,7 @@
29
29
  .code-wrap .token.operator { color: #a4c1f4; }
30
30
  .code-wrap .token.punctuation { color: #a4c1f4; }
31
31
  .code-wrap .token.variable { color: #c6c6c6; }
32
- .validation-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 28px; padding: 4px 12px; margin-top: 0; font-size: 12px; font-family: 'Consolas', 'Monaco', monospace; background: #252525; border: 1px solid #444; border-top: none; border-radius: 0 0 6px 6px; color: #c6c6c6; }
32
+ .validation-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 28px; padding: 4px 12px; margin-top: 0; font-size: 12px; font-family: 'Consolas', 'Monaco', monospace; background: #252525; border: 1px solid #444; border-top: none; color: #c6c6c6; }
33
33
  .validation-bar .validation-left { display: flex; align-items: center; gap: 8px; min-width: 0; }
34
34
  .validation-bar .validation-chevron { color: #888; cursor: pointer; user-select: none; }
35
35
  .validation-bar.collapsed .validation-message { display: none; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-godot-shader-preview",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "React component for live Godot shader preview via WebAssembly. Load shader code, switch mesh (sphere/plane), edit uniforms and samplers.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",