@m3e/radio-group 1.0.0-rc.2 → 1.0.0-rc.4

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.
@@ -77,6 +77,22 @@
77
77
  {
78
78
  "description": "Icon color when radio is disabled.",
79
79
  "name": "--m3e-radio-disabled-icon-color"
80
+ },
81
+ {
82
+ "description": "Fallback hover color used when the radio is invalid and touched.",
83
+ "name": "--m3e-radio-error-hover-color"
84
+ },
85
+ {
86
+ "description": "Fallback focus color used when the radio is invalid and touched.",
87
+ "name": "--m3e-radio-error-focus-color"
88
+ },
89
+ {
90
+ "description": "Fallback ripple color used when the radio is invalid and touched.",
91
+ "name": "--m3e-radio-error-ripple-color"
92
+ },
93
+ {
94
+ "description": "Fallback icon color used when the radio is invalid and touched.",
95
+ "name": "--m3e-radio-error-icon-color"
80
96
  }
81
97
  ],
82
98
  "members": [
@@ -165,14 +181,52 @@
165
181
  }
166
182
  ]
167
183
  },
184
+ {
185
+ "kind": "method",
186
+ "name": "#notifySelectionChange",
187
+ "privacy": "private",
188
+ "return": {
189
+ "type": {
190
+ "text": "void"
191
+ }
192
+ }
193
+ },
194
+ {
195
+ "kind": "field",
196
+ "name": "formAssociated",
197
+ "static": true,
198
+ "readonly": true,
199
+ "default": "true",
200
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
201
+ "type": {
202
+ "text": "boolean"
203
+ },
204
+ "inheritedFrom": {
205
+ "name": "AttachInternals",
206
+ "module": "../core/src/shared/mixins/AttachInternals.ts"
207
+ }
208
+ },
168
209
  {
169
210
  "kind": "field",
170
211
  "name": "[_eventHandler]",
171
212
  "privacy": "private",
172
213
  "readonly": true,
173
214
  "inheritedFrom": {
174
- "name": "Labelled",
175
- "module": "../core/src/shared/mixins/Labelled.ts"
215
+ "name": "Touched",
216
+ "module": "../core/src/shared/mixins/Touched.ts"
217
+ }
218
+ },
219
+ {
220
+ "kind": "field",
221
+ "name": "labels",
222
+ "type": {
223
+ "text": "NodeListOf<HTMLLabelElement>"
224
+ },
225
+ "readonly": true,
226
+ "description": "The label elements that the element is associated with.",
227
+ "inheritedFrom": {
228
+ "name": "FormAssociated",
229
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
176
230
  }
177
231
  },
178
232
  {
@@ -298,48 +352,6 @@
298
352
  "module": "../core/src/shared/mixins/Checked.ts"
299
353
  }
300
354
  },
301
- {
302
- "kind": "field",
303
- "name": "formAssociated",
304
- "static": true,
305
- "readonly": true,
306
- "default": "true",
307
- "description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
308
- "type": {
309
- "text": "boolean"
310
- },
311
- "inheritedFrom": {
312
- "name": "AttachInternals",
313
- "module": "../core/src/shared/mixins/AttachInternals.ts"
314
- }
315
- },
316
- {
317
- "kind": "field",
318
- "name": "labels",
319
- "type": {
320
- "text": "NodeListOf<HTMLLabelElement>"
321
- },
322
- "description": "The label elements that the element is associated with.",
323
- "readonly": true,
324
- "inheritedFrom": {
325
- "name": "Labelled",
326
- "module": "../core/src/shared/mixins/Labelled.ts"
327
- }
328
- },
329
- {
330
- "kind": "method",
331
- "name": "[_updateLabels]",
332
- "privacy": "private",
333
- "return": {
334
- "type": {
335
- "text": "void"
336
- }
337
- },
338
- "inheritedFrom": {
339
- "name": "Labelled",
340
- "module": "../core/src/shared/mixins/Labelled.ts"
341
- }
342
- },
343
355
  {
344
356
  "kind": "field",
345
357
  "name": "#keyUpHandler",
@@ -385,6 +397,67 @@
385
397
  "module": "../core/src/shared/mixins/Focusable.ts"
386
398
  }
387
399
  },
400
+ {
401
+ "kind": "field",
402
+ "name": "[_defaultValue]",
403
+ "type": {
404
+ "text": "unknown"
405
+ },
406
+ "privacy": "private",
407
+ "inheritedFrom": {
408
+ "name": "FormAssociated",
409
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
410
+ }
411
+ },
412
+ {
413
+ "kind": "field",
414
+ "name": "[_defaultIndeterminate]",
415
+ "type": {
416
+ "text": "boolean"
417
+ },
418
+ "privacy": "private",
419
+ "default": "false",
420
+ "inheritedFrom": {
421
+ "name": "FormAssociated",
422
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
423
+ }
424
+ },
425
+ {
426
+ "kind": "field",
427
+ "name": "[_formDisabled]",
428
+ "type": {
429
+ "text": "boolean"
430
+ },
431
+ "privacy": "private",
432
+ "default": "false",
433
+ "inheritedFrom": {
434
+ "name": "FormAssociated",
435
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
436
+ }
437
+ },
438
+ {
439
+ "kind": "field",
440
+ "name": "form",
441
+ "type": {
442
+ "text": "HTMLFormElement | null"
443
+ },
444
+ "description": "The `HTMLFormElement` associated with this element.",
445
+ "readonly": true,
446
+ "inheritedFrom": {
447
+ "name": "FormAssociated",
448
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
449
+ }
450
+ },
451
+ {
452
+ "kind": "field",
453
+ "name": "name",
454
+ "description": "The name that identifies the element when submitting the associated form.",
455
+ "attribute": "name",
456
+ "inheritedFrom": {
457
+ "name": "FormAssociated",
458
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
459
+ }
460
+ },
388
461
  {
389
462
  "kind": "field",
390
463
  "name": "disabled",
@@ -399,6 +472,42 @@
399
472
  "module": "../core/src/shared/mixins/Disabled.ts"
400
473
  }
401
474
  },
475
+ {
476
+ "kind": "method",
477
+ "name": "formDisabledCallback",
478
+ "return": {
479
+ "type": {
480
+ "text": "void"
481
+ }
482
+ },
483
+ "parameters": [
484
+ {
485
+ "name": "disabled",
486
+ "type": {
487
+ "text": "boolean"
488
+ }
489
+ }
490
+ ],
491
+ "description": "Called when the element is disabled or enabled via its form association.",
492
+ "inheritedFrom": {
493
+ "name": "FormAssociated",
494
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
495
+ }
496
+ },
497
+ {
498
+ "kind": "method",
499
+ "name": "formResetCallback",
500
+ "return": {
501
+ "type": {
502
+ "text": "void"
503
+ }
504
+ },
505
+ "description": "Called when the associated form is reset.",
506
+ "inheritedFrom": {
507
+ "name": "FormAssociated",
508
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
509
+ }
510
+ },
402
511
  {
403
512
  "kind": "field",
404
513
  "name": "[_internals]",
@@ -466,6 +575,19 @@
466
575
  "module": "../core/src/shared/mixins/Disabled.ts"
467
576
  }
468
577
  },
578
+ {
579
+ "name": "name",
580
+ "description": "The name that identifies the element when submitting the associated form.",
581
+ "fieldName": "name",
582
+ "inheritedFrom": {
583
+ "name": "FormAssociated",
584
+ "module": "../core/src/shared/mixins/FormAssociated.ts"
585
+ }
586
+ },
587
+ {
588
+ "description": "Whether the element is required.",
589
+ "name": "required"
590
+ },
469
591
  {
470
592
  "description": "A string representing the value of the radio.",
471
593
  "name": "value",
@@ -477,6 +599,10 @@
477
599
  }
478
600
  ],
479
601
  "mixins": [
602
+ {
603
+ "name": "Labelled",
604
+ "package": "@m3e/core"
605
+ },
480
606
  {
481
607
  "name": "Dirty",
482
608
  "package": "@m3e/core"
@@ -490,15 +616,15 @@
490
616
  "package": "@m3e/core"
491
617
  },
492
618
  {
493
- "name": "Labelled",
619
+ "name": "KeyboardClick",
494
620
  "package": "@m3e/core"
495
621
  },
496
622
  {
497
- "name": "KeyboardClick",
623
+ "name": "Focusable",
498
624
  "package": "@m3e/core"
499
625
  },
500
626
  {
501
- "name": "Focusable",
627
+ "name": "FormAssociated",
502
628
  "package": "@m3e/core"
503
629
  },
504
630
  {
@@ -547,26 +673,8 @@
547
673
  "declarations": [
548
674
  {
549
675
  "kind": "class",
550
- "description": "A container for a set of radio buttons that enforces single selection.",
676
+ "description": "A container for a set of radio buttons.",
551
677
  "name": "M3eRadioGroupElement",
552
- "cssProperties": [
553
- {
554
- "description": "Fallback hover color used when the radio is invalid and touched.",
555
- "name": "--m3e-radio-error-hover-color"
556
- },
557
- {
558
- "description": "Fallback focus color used when the radio is invalid and touched.",
559
- "name": "--m3e-radio-error-focus-color"
560
- },
561
- {
562
- "description": "Fallback ripple color used when the radio is invalid and touched.",
563
- "name": "--m3e-radio-error-ripple-color"
564
- },
565
- {
566
- "description": "Fallback icon color used when the radio is invalid and touched.",
567
- "name": "--m3e-radio-error-icon-color"
568
- }
569
- ],
570
678
  "slots": [
571
679
  {
572
680
  "description": "Renders the radio buttons of the group.",
@@ -586,7 +694,7 @@
586
694
  "type": {
587
695
  "text": "readonly M3eRadioElement[]"
588
696
  },
589
- "description": "The radio buttons in the group.",
697
+ "description": "The radios in the group.",
590
698
  "readonly": true
591
699
  },
592
700
  {
@@ -607,6 +715,62 @@
607
715
  "description": "The selected value of the radio group.",
608
716
  "readonly": true
609
717
  },
718
+ {
719
+ "kind": "method",
720
+ "name": "markAsTouched",
721
+ "return": {
722
+ "type": {
723
+ "text": "void"
724
+ }
725
+ },
726
+ "description": "Marks the element as touched.",
727
+ "inheritedFrom": {
728
+ "name": "Touched",
729
+ "module": "../core/src/shared/mixins/Touched.ts"
730
+ }
731
+ },
732
+ {
733
+ "kind": "method",
734
+ "name": "markAsUntouched",
735
+ "return": {
736
+ "type": {
737
+ "text": "void"
738
+ }
739
+ },
740
+ "description": "Marks the element as untouched.",
741
+ "inheritedFrom": {
742
+ "name": "Touched",
743
+ "module": "../core/src/shared/mixins/Touched.ts"
744
+ }
745
+ },
746
+ {
747
+ "kind": "method",
748
+ "name": "markAsDirty",
749
+ "return": {
750
+ "type": {
751
+ "text": "void"
752
+ }
753
+ },
754
+ "description": "Marks the element as dirty.",
755
+ "inheritedFrom": {
756
+ "name": "Dirty",
757
+ "module": "../core/src/shared/mixins/Dirty.ts"
758
+ }
759
+ },
760
+ {
761
+ "kind": "method",
762
+ "name": "markAsPristine",
763
+ "return": {
764
+ "type": {
765
+ "text": "void"
766
+ }
767
+ },
768
+ "description": "Marks the element as pristine.",
769
+ "inheritedFrom": {
770
+ "name": "Dirty",
771
+ "module": "../core/src/shared/mixins/Dirty.ts"
772
+ }
773
+ },
610
774
  {
611
775
  "kind": "method",
612
776
  "name": "#handleSlotChange",
@@ -638,15 +802,7 @@
638
802
  "type": {
639
803
  "text": "void"
640
804
  }
641
- },
642
- "parameters": [
643
- {
644
- "name": "e",
645
- "type": {
646
- "text": "Event"
647
- }
648
- }
649
- ]
805
+ }
650
806
  },
651
807
  {
652
808
  "kind": "field",
@@ -686,20 +842,6 @@
686
842
  "module": "../core/src/shared/mixins/FormAssociated.ts"
687
843
  }
688
844
  },
689
- {
690
- "kind": "method",
691
- "name": "[_updateLabels]",
692
- "privacy": "private",
693
- "return": {
694
- "type": {
695
- "text": "void"
696
- }
697
- },
698
- "inheritedFrom": {
699
- "name": "Labelled",
700
- "module": "../core/src/shared/mixins/Labelled.ts"
701
- }
702
- },
703
845
  {
704
846
  "kind": "field",
705
847
  "name": "dirty",
@@ -726,34 +868,6 @@
726
868
  "module": "../core/src/shared/mixins/Dirty.ts"
727
869
  }
728
870
  },
729
- {
730
- "kind": "method",
731
- "name": "markAsPristine",
732
- "return": {
733
- "type": {
734
- "text": "void"
735
- }
736
- },
737
- "description": "Marks the element as pristine.",
738
- "inheritedFrom": {
739
- "name": "Dirty",
740
- "module": "../core/src/shared/mixins/Dirty.ts"
741
- }
742
- },
743
- {
744
- "kind": "method",
745
- "name": "markAsDirty",
746
- "return": {
747
- "type": {
748
- "text": "void"
749
- }
750
- },
751
- "description": "Marks the element as dirty.",
752
- "inheritedFrom": {
753
- "name": "Dirty",
754
- "module": "../core/src/shared/mixins/Dirty.ts"
755
- }
756
- },
757
871
  {
758
872
  "kind": "field",
759
873
  "name": "touched",
@@ -780,34 +894,6 @@
780
894
  "module": "../core/src/shared/mixins/Touched.ts"
781
895
  }
782
896
  },
783
- {
784
- "kind": "method",
785
- "name": "markAsTouched",
786
- "return": {
787
- "type": {
788
- "text": "void"
789
- }
790
- },
791
- "description": "Marks the element as touched.",
792
- "inheritedFrom": {
793
- "name": "Touched",
794
- "module": "../core/src/shared/mixins/Touched.ts"
795
- }
796
- },
797
- {
798
- "kind": "method",
799
- "name": "markAsUntouched",
800
- "return": {
801
- "type": {
802
- "text": "void"
803
- }
804
- },
805
- "description": "Marks the element as untouched.",
806
- "inheritedFrom": {
807
- "name": "Touched",
808
- "module": "../core/src/shared/mixins/Touched.ts"
809
- }
810
- },
811
897
  {
812
898
  "kind": "field",
813
899
  "name": "required",
@@ -1097,14 +1183,14 @@
1097
1183
  ],
1098
1184
  "events": [
1099
1185
  {
1100
- "name": "change",
1101
- "type": {
1102
- "text": "Event"
1103
- },
1104
- "description": "Emitted when the checked state of a radio button changes."
1186
+ "description": "Emitted when the checked state of a radio button changes.",
1187
+ "name": "change"
1105
1188
  }
1106
1189
  ],
1107
1190
  "attributes": [
1191
+ {
1192
+ "name": "aria-invalid"
1193
+ },
1108
1194
  {
1109
1195
  "name": "disabled",
1110
1196
  "type": {
@@ -2064,25 +2150,6 @@
2064
2150
  "kind": "mixin",
2065
2151
  "description": "Mixin that adds support for custom event attributes.",
2066
2152
  "name": "EventAttribute",
2067
- "members": [
2068
- {
2069
- "kind": "method",
2070
- "name": "dispatchEvent",
2071
- "return": {
2072
- "type": {
2073
- "text": "boolean"
2074
- }
2075
- },
2076
- "parameters": [
2077
- {
2078
- "name": "event",
2079
- "type": {
2080
- "text": "Event"
2081
- }
2082
- }
2083
- ]
2084
- }
2085
- ],
2086
2153
  "parameters": [
2087
2154
  {
2088
2155
  "name": "base",
@@ -2380,6 +2447,17 @@
2380
2447
  "description": "Mixin to augment an element with behavior used to submit a form.",
2381
2448
  "name": "FormSubmitter",
2382
2449
  "members": [
2450
+ {
2451
+ "kind": "field",
2452
+ "name": "formAssociated",
2453
+ "type": {
2454
+ "text": "boolean"
2455
+ },
2456
+ "static": true,
2457
+ "readonly": true,
2458
+ "default": "true",
2459
+ "description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
2460
+ },
2383
2461
  {
2384
2462
  "kind": "field",
2385
2463
  "name": "name",
@@ -2916,6 +2994,11 @@
2916
2994
  "kind": "javascript-module",
2917
2995
  "path": "../core/src/shared/mixins/Labelled.ts",
2918
2996
  "declarations": [
2997
+ {
2998
+ "kind": "variable",
2999
+ "name": "updateLabels",
3000
+ "description": "A symbol through which to update labels to reflect a control's current state."
3001
+ },
2919
3002
  {
2920
3003
  "kind": "function",
2921
3004
  "name": "isLabelledMixin",
@@ -2965,16 +3048,6 @@
2965
3048
  },
2966
3049
  "description": "The label elements that the element is associated with.",
2967
3050
  "readonly": true
2968
- },
2969
- {
2970
- "kind": "method",
2971
- "name": "[_updateLabels]",
2972
- "privacy": "private",
2973
- "return": {
2974
- "type": {
2975
- "text": "void"
2976
- }
2977
- }
2978
3051
  }
2979
3052
  ],
2980
3053
  "parameters": [
@@ -2989,6 +3062,14 @@
2989
3062
  }
2990
3063
  ],
2991
3064
  "exports": [
3065
+ {
3066
+ "kind": "js",
3067
+ "name": "updateLabels",
3068
+ "declaration": {
3069
+ "name": "updateLabels",
3070
+ "module": "../core/src/shared/mixins/Labelled.ts"
3071
+ }
3072
+ },
2992
3073
  {
2993
3074
  "kind": "js",
2994
3075
  "name": "isLabelledMixin",
@@ -4,7 +4,7 @@
4
4
  "tags": [
5
5
  {
6
6
  "name": "m3e-radio",
7
- "description": "A radio button that allows a user to select one option from a set of options.\n---\n\n\n### **Events:**\n - **input** - Emitted when the checked state changes.\n- **change** - Emitted when the checked state changes.\n- **click** - Emitted when the element is clicked.\n\n### **Methods:**\n - **markAsPristine(): _void_** - Marks the element as pristine.\n- **markAsDirty(): _void_** - Marks the element as dirty.\n- **markAsTouched(): _void_** - Marks the element as touched.\n- **markAsUntouched(): _void_** - Marks the element as untouched.\n\n### **CSS Properties:**\n - **--m3e-radio-container-size** - Base size of the radio button container. _(default: undefined)_\n- **--m3e-radio-icon-size** - Size of the radio icon inside the wrapper. _(default: undefined)_\n- **--m3e-radio-unselected-hover-color** - Hover state layer color when radio is not selected. _(default: undefined)_\n- **--m3e-radio-unselected-focus-color** - Focus state layer color when radio is not selected. _(default: undefined)_\n- **--m3e-radio-unselected-ripple-color** - Ripple color when radio is not selected. _(default: undefined)_\n- **--m3e-radio-unselected-icon-color** - Icon color when radio is not selected. _(default: undefined)_\n- **--m3e-radio-selected-hover-color** - Hover state layer color when radio is selected. _(default: undefined)_\n- **--m3e-radio-selected-focus-color** - Focus state layer color when radio is selected. _(default: undefined)_\n- **--m3e-radio-selected-ripple-color** - Ripple color when radio is selected. _(default: undefined)_\n- **--m3e-radio-selected-icon-color** - Icon color when radio is selected. _(default: undefined)_\n- **--m3e-radio-disabled-icon-color** - Icon color when radio is disabled. _(default: undefined)_",
7
+ "description": "A radio button that allows a user to select one option from a set of options.\n---\n\n\n### **Events:**\n - **input** - Emitted when the checked state changes.\n- **change** - Emitted when the checked state changes.\n- **click** - Emitted when the element is clicked.\n\n### **Methods:**\n - **markAsPristine(): _void_** - Marks the element as pristine.\n- **markAsDirty(): _void_** - Marks the element as dirty.\n- **markAsTouched(): _void_** - Marks the element as touched.\n- **markAsUntouched(): _void_** - Marks the element as untouched.\n- **formDisabledCallback(disabled: _boolean_): _void_** - Called when the element is disabled or enabled via its form association.\n- **formResetCallback(): _void_** - Called when the associated form is reset.\n\n### **CSS Properties:**\n - **--m3e-radio-container-size** - Base size of the radio button container. _(default: undefined)_\n- **--m3e-radio-icon-size** - Size of the radio icon inside the wrapper. _(default: undefined)_\n- **--m3e-radio-unselected-hover-color** - Hover state layer color when radio is not selected. _(default: undefined)_\n- **--m3e-radio-unselected-focus-color** - Focus state layer color when radio is not selected. _(default: undefined)_\n- **--m3e-radio-unselected-ripple-color** - Ripple color when radio is not selected. _(default: undefined)_\n- **--m3e-radio-unselected-icon-color** - Icon color when radio is not selected. _(default: undefined)_\n- **--m3e-radio-selected-hover-color** - Hover state layer color when radio is selected. _(default: undefined)_\n- **--m3e-radio-selected-focus-color** - Focus state layer color when radio is selected. _(default: undefined)_\n- **--m3e-radio-selected-ripple-color** - Ripple color when radio is selected. _(default: undefined)_\n- **--m3e-radio-selected-icon-color** - Icon color when radio is selected. _(default: undefined)_\n- **--m3e-radio-disabled-icon-color** - Icon color when radio is disabled. _(default: undefined)_\n- **--m3e-radio-error-hover-color** - Fallback hover color used when the radio is invalid and touched. _(default: undefined)_\n- **--m3e-radio-error-focus-color** - Fallback focus color used when the radio is invalid and touched. _(default: undefined)_\n- **--m3e-radio-error-ripple-color** - Fallback ripple color used when the radio is invalid and touched. _(default: undefined)_\n- **--m3e-radio-error-icon-color** - Fallback icon color used when the radio is invalid and touched. _(default: undefined)_",
8
8
  "attributes": [
9
9
  {
10
10
  "name": "checked",
@@ -16,6 +16,16 @@
16
16
  "description": "Whether the element is disabled.",
17
17
  "values": []
18
18
  },
19
+ {
20
+ "name": "name",
21
+ "description": "The name that identifies the element when submitting the associated form.",
22
+ "values": []
23
+ },
24
+ {
25
+ "name": "required",
26
+ "description": "Whether the element is required.",
27
+ "values": []
28
+ },
19
29
  {
20
30
  "name": "value",
21
31
  "description": "A string representing the value of the radio.",
@@ -26,8 +36,9 @@
26
36
  },
27
37
  {
28
38
  "name": "m3e-radio-group",
29
- "description": "A container for a set of radio buttons that enforces single selection.\n---\n\n\n### **Events:**\n - **change** - Emitted when the checked state of a radio button changes.\n\n### **Methods:**\n - **markAsPristine(): _void_** - Marks the element as pristine.\n- **markAsDirty(): _void_** - Marks the element as dirty.\n- **markAsTouched(): _void_** - Marks the element as touched.\n- **markAsUntouched(): _void_** - Marks the element as untouched.\n- **reportValidity(): _boolean_** - Returns `true` if the element has no validity problems; otherwise, returns `false`, fires\r\nan invalid event, and (if the event isn't canceled) reports the problem to the user.\n- **checkValidity(): _boolean_** - Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event.\n- **setCustomValidity(error: _string_): _void_** - Sets a custom validity message for the element.\n- **formDisabledCallback(disabled: _boolean_): _void_** - Called when the element is disabled or enabled via its form association.\n- **formResetCallback(): _void_** - Called when the associated form is reset.\n\n### **Slots:**\n - _default_ - Renders the radio buttons of the group.\n\n### **CSS Properties:**\n - **--m3e-radio-error-hover-color** - Fallback hover color used when the radio is invalid and touched. _(default: undefined)_\n- **--m3e-radio-error-focus-color** - Fallback focus color used when the radio is invalid and touched. _(default: undefined)_\n- **--m3e-radio-error-ripple-color** - Fallback ripple color used when the radio is invalid and touched. _(default: undefined)_\n- **--m3e-radio-error-icon-color** - Fallback icon color used when the radio is invalid and touched. _(default: undefined)_",
39
+ "description": "A container for a set of radio buttons.\n---\n\n\n### **Events:**\n - **change** - Emitted when the checked state of a radio button changes.\n\n### **Methods:**\n - **markAsTouched(): _void_** - Marks the element as touched.\n- **markAsUntouched(): _void_** - Marks the element as untouched.\n- **markAsDirty(): _void_** - Marks the element as dirty.\n- **markAsPristine(): _void_** - Marks the element as pristine.\n- **reportValidity(): _boolean_** - Returns `true` if the element has no validity problems; otherwise, returns `false`, fires\r\nan invalid event, and (if the event isn't canceled) reports the problem to the user.\n- **checkValidity(): _boolean_** - Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event.\n- **setCustomValidity(error: _string_): _void_** - Sets a custom validity message for the element.\n- **formDisabledCallback(disabled: _boolean_): _void_** - Called when the element is disabled or enabled via its form association.\n- **formResetCallback(): _void_** - Called when the associated form is reset.\n\n### **Slots:**\n - _default_ - Renders the radio buttons of the group.",
30
40
  "attributes": [
41
+ { "name": "aria-invalid", "values": [] },
31
42
  {
32
43
  "name": "disabled",
33
44
  "description": "Whether the element is disabled.",