Files
1dae0014-ac76-4c65-b9e1-03b…/registry/components/Textarea.json
vitalijmulika df79932a31 Initial commit
2026-03-02 12:41:33 +02:00

35 lines
963 B
JSON

{
"name": "Textarea",
"description": "Styled textarea field with secondary-button styling and rounded-theme-capped borders.",
"constraints": {
"textRules": {
"placeholder": {
"required": false,
"example": "Type your message...",
"minChars": 2,
"maxChars": 100
}
}
},
"propsSchema": {
"value": "string",
"onChange": "(value: string) => void",
"placeholder?": "string",
"rows?": "number (default: 5)",
"required?": "boolean (default: false)",
"disabled?": "boolean (default: false)",
"ariaLabel?": "string",
"className?": "string"
},
"usageExample": "<Textarea value={message} onChange={(value) => setMessage(value)} placeholder=\"Type your message...\" rows={5} required />",
"do": [
"Use for feature showcases",
"Use for capability displays"
],
"dont": [],
"editRules": {
"textOnly": true,
"layoutLocked": true,
"styleLocked": true
}
}