11{
22 "version" : " 0.0.44-alpha.13" ,
3- "generatedAt" : " 2025-10-26T12:55:17.852Z " ,
3+ "generatedAt" : " 2025-10-26T13:03:33.187Z " ,
44 "count" : 18 ,
55 "components" : {
66 "Textarea" : {
343343 ],
344344 "source" : " src/components/Radios/Radios.schema.ts"
345345 },
346- "Panel" : {
347- "name" : " Panel" ,
348- "category" : " content" ,
349- "since" : " 0.1.1" ,
350- "props" : [
351- {
352- "name" : " id" ,
353- "type" : " string" ,
354- "description" : " Unique identifier"
355- },
356- {
357- "name" : " className" ,
358- "type" : " string" ,
359- "description" : " Additional CSS classes"
360- },
361- {
362- "name" : " headingText" ,
363- "type" : " string" ,
364- "description" : " Heading text (ignored if headingHtml is provided)"
365- },
366- {
367- "name" : " headingHtml" ,
368- "type" : " string" ,
369- "description" : " Heading HTML (overrides headingText)"
370- },
371- {
372- "name" : " headingLevel" ,
373- "type" : " 1|2|3|4|5|6" ,
374- "defaultValue" : " 2" ,
375- "description" : " Heading level to render for the heading"
376- },
377- {
378- "name" : " bodyText" ,
379- "type" : " string" ,
380- "description" : " Body text (ignored if bodyHtml is provided)"
381- },
382- {
383- "name" : " bodyHtml" ,
384- "type" : " string" ,
385- "description" : " Body HTML (overrides bodyText)"
386- }
387- ],
388- "source" : " src/components/Panel/Panel.schema.ts"
389- },
390346 "Label" : {
391347 "name" : " Label" ,
392348 "category" : " form" ,
449405 ],
450406 "source" : " src/components/InsetText/InsetText.schema.ts"
451407 },
452- "Hint" : {
453- "name" : " Hint" ,
454- "category" : " typography" ,
455- "since" : " 0.1.1" ,
456- "a11yNotes" : [
457- " Provides supporting contextual help text associated with a form field or section."
458- ],
459- "props" : [
460- {
461- "name" : " id" ,
462- "type" : " string" ,
463- "description" : " HTML id attribute"
464- },
465- {
466- "name" : " className" ,
467- "type" : " string" ,
468- "description" : " Additional CSS classes"
469- },
470- {
471- "name" : " children" ,
472- "type" : " ReactNode|string" ,
473- "required" : true ,
474- "description" : " Hint content"
475- }
476- ],
477- "source" : " src/components/Hint/Hint.schema.ts"
478- },
479408 "Input" : {
480409 "name" : " Input" ,
481410 "category" : " form" ,
618547 ],
619548 "source" : " src/components/Input/Input.schema.ts"
620549 },
550+ "Panel" : {
551+ "name" : " Panel" ,
552+ "category" : " content" ,
553+ "since" : " 0.1.1" ,
554+ "props" : [
555+ {
556+ "name" : " id" ,
557+ "type" : " string" ,
558+ "description" : " Unique identifier"
559+ },
560+ {
561+ "name" : " className" ,
562+ "type" : " string" ,
563+ "description" : " Additional CSS classes"
564+ },
565+ {
566+ "name" : " headingText" ,
567+ "type" : " string" ,
568+ "description" : " Heading text (ignored if headingHtml is provided)"
569+ },
570+ {
571+ "name" : " headingHtml" ,
572+ "type" : " string" ,
573+ "description" : " Heading HTML (overrides headingText)"
574+ },
575+ {
576+ "name" : " headingLevel" ,
577+ "type" : " 1|2|3|4|5|6" ,
578+ "defaultValue" : " 2" ,
579+ "description" : " Heading level to render for the heading"
580+ },
581+ {
582+ "name" : " bodyText" ,
583+ "type" : " string" ,
584+ "description" : " Body text (ignored if bodyHtml is provided)"
585+ },
586+ {
587+ "name" : " bodyHtml" ,
588+ "type" : " string" ,
589+ "description" : " Body HTML (overrides bodyText)"
590+ }
591+ ],
592+ "source" : " src/components/Panel/Panel.schema.ts"
593+ },
594+ "Hint" : {
595+ "name" : " Hint" ,
596+ "category" : " typography" ,
597+ "since" : " 0.1.1" ,
598+ "a11yNotes" : [
599+ " Provides supporting contextual help text associated with a form field or section."
600+ ],
601+ "props" : [
602+ {
603+ "name" : " id" ,
604+ "type" : " string" ,
605+ "description" : " HTML id attribute"
606+ },
607+ {
608+ "name" : " className" ,
609+ "type" : " string" ,
610+ "description" : " Additional CSS classes"
611+ },
612+ {
613+ "name" : " children" ,
614+ "type" : " ReactNode|string" ,
615+ "required" : true ,
616+ "description" : " Hint content"
617+ }
618+ ],
619+ "source" : " src/components/Hint/Hint.schema.ts"
620+ },
621621 "Heading" : {
622622 "name" : " Heading" ,
623623 "category" : " typography" ,
880880 ],
881881 "source" : " src/components/DateInput/DateInput.schema.ts"
882882 },
883+ "CharacterCount" : {
884+ "name" : " CharacterCount" ,
885+ "props" : [
886+ {
887+ "name" : " id" ,
888+ "type" : " string" ,
889+ "required" : true ,
890+ "description" : " Unique id for textarea and message association"
891+ },
892+ {
893+ "name" : " name" ,
894+ "type" : " string" ,
895+ "required" : true ,
896+ "description" : " Name attribute for textarea"
897+ },
898+ {
899+ "name" : " value" ,
900+ "type" : " string" ,
901+ "required" : false ,
902+ "description" : " Current value (controlled)"
903+ },
904+ {
905+ "name" : " defaultValue" ,
906+ "type" : " string" ,
907+ "required" : false ,
908+ "description" : " Initial value (uncontrolled)"
909+ },
910+ {
911+ "name" : " rows" ,
912+ "type" : " number" ,
913+ "required" : false ,
914+ "defaultValue" : " 5" ,
915+ "description" : " Textarea rows"
916+ },
917+ {
918+ "name" : " maxLength" ,
919+ "type" : " number" ,
920+ "required" : false ,
921+ "description" : " Maximum characters"
922+ },
923+ {
924+ "name" : " maxWords" ,
925+ "type" : " number" ,
926+ "required" : false ,
927+ "description" : " Maximum words (alternative to maxLength)"
928+ },
929+ {
930+ "name" : " threshold" ,
931+ "type" : " number" ,
932+ "required" : false ,
933+ "defaultValue" : " 75" ,
934+ "description" : " Threshold percentage to show counter"
935+ },
936+ {
937+ "name" : " className" ,
938+ "type" : " string" ,
939+ "required" : false ,
940+ "description" : " Wrapper extra classes"
941+ },
942+ {
943+ "name" : " countMessageClasses" ,
944+ "type" : " string" ,
945+ "required" : false ,
946+ "description" : " Extra classes for message element"
947+ },
948+ {
949+ "name" : " hasError" ,
950+ "type" : " boolean" ,
951+ "required" : false ,
952+ "description" : " Force error styling"
953+ },
954+ {
955+ "name" : " describedBy" ,
956+ "type" : " string" ,
957+ "required" : false ,
958+ "description" : " aria-describedby ids"
959+ }
960+ ],
961+ "source" : " src/components/CharacterCount/CharacterCount.schema.ts"
962+ },
883963 "Checkboxes" : {
884964 "name" : " Checkboxes" ,
885965 "props" : [
10311111 }
10321112 ],
10331113 "source" : " src/components/Button/Button.schema.ts"
1034- },
1035- "CharacterCount" : {
1036- "name" : " CharacterCount" ,
1037- "props" : [
1038- {
1039- "name" : " id" ,
1040- "type" : " string" ,
1041- "required" : true ,
1042- "description" : " Unique id for textarea and message association"
1043- },
1044- {
1045- "name" : " name" ,
1046- "type" : " string" ,
1047- "required" : true ,
1048- "description" : " Name attribute for textarea"
1049- },
1050- {
1051- "name" : " value" ,
1052- "type" : " string" ,
1053- "required" : false ,
1054- "description" : " Current value (controlled)"
1055- },
1056- {
1057- "name" : " defaultValue" ,
1058- "type" : " string" ,
1059- "required" : false ,
1060- "description" : " Initial value (uncontrolled)"
1061- },
1062- {
1063- "name" : " rows" ,
1064- "type" : " number" ,
1065- "required" : false ,
1066- "defaultValue" : " 5" ,
1067- "description" : " Textarea rows"
1068- },
1069- {
1070- "name" : " maxLength" ,
1071- "type" : " number" ,
1072- "required" : false ,
1073- "description" : " Maximum characters"
1074- },
1075- {
1076- "name" : " maxWords" ,
1077- "type" : " number" ,
1078- "required" : false ,
1079- "description" : " Maximum words (alternative to maxLength)"
1080- },
1081- {
1082- "name" : " threshold" ,
1083- "type" : " number" ,
1084- "required" : false ,
1085- "defaultValue" : " 75" ,
1086- "description" : " Threshold percentage to show counter"
1087- },
1088- {
1089- "name" : " className" ,
1090- "type" : " string" ,
1091- "required" : false ,
1092- "description" : " Wrapper extra classes"
1093- },
1094- {
1095- "name" : " countMessageClasses" ,
1096- "type" : " string" ,
1097- "required" : false ,
1098- "description" : " Extra classes for message element"
1099- },
1100- {
1101- "name" : " hasError" ,
1102- "type" : " boolean" ,
1103- "required" : false ,
1104- "description" : " Force error styling"
1105- },
1106- {
1107- "name" : " describedBy" ,
1108- "type" : " string" ,
1109- "required" : false ,
1110- "description" : " aria-describedby ids"
1111- }
1112- ],
1113- "source" : " src/components/CharacterCount/CharacterCount.schema.ts"
11141114 }
11151115 },
11161116 "categories" : {
11301130 " Tag"
11311131 ],
11321132 "content" : [
1133- " Panel" ,
11341133 " InsetText" ,
1134+ " Panel" ,
11351135 " Details"
11361136 ],
11371137 "typography" : [
11381138 " Hint" ,
11391139 " Heading"
11401140 ],
11411141 "uncategorised" : [
1142- " Checkboxes " ,
1143- " CharacterCount "
1142+ " CharacterCount " ,
1143+ " Checkboxes "
11441144 ]
11451145 }
11461146}
0 commit comments