@rovela-ai/sdk 0.9.1 → 0.9.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.
@@ -679,6 +679,16 @@
679
679
  transition: var(--admin-transition-colors), var(--admin-transition-shadow);
680
680
  }
681
681
 
682
+ /* Textareas must size from their `rows` attribute — the fixed 40px height
683
+ above silently squashed every multi-line field (wire instructions, pickup
684
+ instructions, descriptions…) to a single line. */
685
+ .rovela-admin-theme textarea.admin-input {
686
+ height: auto;
687
+ min-height: 2.5rem;
688
+ padding: var(--admin-space-2) var(--admin-space-3);
689
+ resize: vertical;
690
+ }
691
+
682
692
  .rovela-admin-theme .admin-input::placeholder {
683
693
  color: hsl(var(--admin-foreground-subtle));
684
694
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rovela-ai/sdk",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Rovela SDK - Pre-built e-commerce components for AI-powered store generation",
5
5
  "type": "module",
6
6
  "license": "MIT",