Skip to content

Commit 8833bd1

Browse files
author
Fergus Bisset
committed
chore(release): 0.0.44-alpha.2
1 parent 4a9a664 commit 8833bd1

File tree

5 files changed

+101
-517
lines changed

5 files changed

+101
-517
lines changed

dist/meta/components.json

Lines changed: 98 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "0.0.44-alpha.1",
3-
"generatedAt": "2025-10-25T14:58:05.111Z",
3+
"generatedAt": "2025-10-25T15:04:40.651Z",
44
"count": 18,
55
"components": {
66
"Textarea": {
@@ -192,68 +192,6 @@
192192
],
193193
"source": "src/components/Tag/Tag.schema.ts"
194194
},
195-
"Radios": {
196-
"name": "Radios",
197-
"category": "form",
198-
"since": "0.1.1",
199-
"a11yNotes": [
200-
"Keyboard arrow navigation cycles through options.",
201-
"Conditional content container is hidden with --hidden class when inactive."
202-
],
203-
"props": [
204-
{
205-
"name": "name",
206-
"type": "string",
207-
"required": true,
208-
"description": "Group name"
209-
},
210-
{
211-
"name": "value",
212-
"type": "string",
213-
"description": "Controlled selected value"
214-
},
215-
{
216-
"name": "defaultValue",
217-
"type": "string",
218-
"description": "Uncontrolled initial value"
219-
},
220-
{
221-
"name": "hasError",
222-
"type": "boolean",
223-
"defaultValue": "false",
224-
"description": "Error style"
225-
},
226-
{
227-
"name": "describedBy",
228-
"type": "string",
229-
"description": "aria-describedby id list"
230-
},
231-
{
232-
"name": "className",
233-
"type": "string",
234-
"description": "Extra CSS classes"
235-
},
236-
{
237-
"name": "size",
238-
"type": "'normal'|'small'",
239-
"defaultValue": "normal",
240-
"description": "Size variant"
241-
},
242-
{
243-
"name": "inline",
244-
"type": "boolean",
245-
"defaultValue": "false",
246-
"description": "Inline layout"
247-
},
248-
{
249-
"name": "options",
250-
"type": "Array<{ value: string; text: string; hint?: string; disabled?: boolean; conditional?: any }>",
251-
"required": true,
252-
"description": "Radio options"
253-
}
254-
],
255-
"source": "src/components/Radios/Radios.schema.ts"
256-
},
257195
"Select": {
258196
"name": "Select",
259197
"category": "form",
@@ -343,6 +281,68 @@
343281
],
344282
"source": "src/components/Select/Select.schema.ts"
345283
},
284+
"Radios": {
285+
"name": "Radios",
286+
"category": "form",
287+
"since": "0.1.1",
288+
"a11yNotes": [
289+
"Keyboard arrow navigation cycles through options.",
290+
"Conditional content container is hidden with --hidden class when inactive."
291+
],
292+
"props": [
293+
{
294+
"name": "name",
295+
"type": "string",
296+
"required": true,
297+
"description": "Group name"
298+
},
299+
{
300+
"name": "value",
301+
"type": "string",
302+
"description": "Controlled selected value"
303+
},
304+
{
305+
"name": "defaultValue",
306+
"type": "string",
307+
"description": "Uncontrolled initial value"
308+
},
309+
{
310+
"name": "hasError",
311+
"type": "boolean",
312+
"defaultValue": "false",
313+
"description": "Error style"
314+
},
315+
{
316+
"name": "describedBy",
317+
"type": "string",
318+
"description": "aria-describedby id list"
319+
},
320+
{
321+
"name": "className",
322+
"type": "string",
323+
"description": "Extra CSS classes"
324+
},
325+
{
326+
"name": "size",
327+
"type": "'normal'|'small'",
328+
"defaultValue": "normal",
329+
"description": "Size variant"
330+
},
331+
{
332+
"name": "inline",
333+
"type": "boolean",
334+
"defaultValue": "false",
335+
"description": "Inline layout"
336+
},
337+
{
338+
"name": "options",
339+
"type": "Array<{ value: string; text: string; hint?: string; disabled?: boolean; conditional?: any }>",
340+
"required": true,
341+
"description": "Radio options"
342+
}
343+
],
344+
"source": "src/components/Radios/Radios.schema.ts"
345+
},
346346
"Panel": {
347347
"name": "Panel",
348348
"category": "content",
@@ -697,39 +697,6 @@
697697
],
698698
"source": "src/components/Fieldset/Fieldset.schema.ts"
699699
},
700-
"ErrorMessage": {
701-
"name": "ErrorMessage",
702-
"category": "form",
703-
"since": "0.1.1",
704-
"a11yNotes": [
705-
"Includes visually hidden prefix text (default \"Error:\") to aid screen reader users."
706-
],
707-
"props": [
708-
{
709-
"name": "id",
710-
"type": "string",
711-
"description": "HTML id attribute"
712-
},
713-
{
714-
"name": "className",
715-
"type": "string",
716-
"description": "Additional CSS classes"
717-
},
718-
{
719-
"name": "visuallyHiddenText",
720-
"type": "string",
721-
"defaultValue": "Error:",
722-
"description": "Prefix announced to screen readers"
723-
},
724-
{
725-
"name": "children",
726-
"type": "ReactNode|string",
727-
"required": true,
728-
"description": "Error message content"
729-
}
730-
],
731-
"source": "src/components/ErrorMessage/ErrorMessage.schema.ts"
732-
},
733700
"ErrorSummary": {
734701
"name": "ErrorSummary",
735702
"category": "form",
@@ -779,6 +746,39 @@
779746
],
780747
"source": "src/components/ErrorSummary/ErrorSummary.schema.ts"
781748
},
749+
"ErrorMessage": {
750+
"name": "ErrorMessage",
751+
"category": "form",
752+
"since": "0.1.1",
753+
"a11yNotes": [
754+
"Includes visually hidden prefix text (default \"Error:\") to aid screen reader users."
755+
],
756+
"props": [
757+
{
758+
"name": "id",
759+
"type": "string",
760+
"description": "HTML id attribute"
761+
},
762+
{
763+
"name": "className",
764+
"type": "string",
765+
"description": "Additional CSS classes"
766+
},
767+
{
768+
"name": "visuallyHiddenText",
769+
"type": "string",
770+
"defaultValue": "Error:",
771+
"description": "Prefix announced to screen readers"
772+
},
773+
{
774+
"name": "children",
775+
"type": "ReactNode|string",
776+
"required": true,
777+
"description": "Error message content"
778+
}
779+
],
780+
"source": "src/components/ErrorMessage/ErrorMessage.schema.ts"
781+
},
782782
"Details": {
783783
"name": "Details",
784784
"category": "content",
@@ -1116,13 +1116,13 @@
11161116
"categories": {
11171117
"form": [
11181118
"Textarea",
1119-
"Radios",
11201119
"Select",
1120+
"Radios",
11211121
"Label",
11221122
"Input",
11231123
"Fieldset",
1124-
"ErrorMessage",
11251124
"ErrorSummary",
1125+
"ErrorMessage",
11261126
"DateInput",
11271127
"Button"
11281128
],

0 commit comments

Comments
 (0)