@xplor-education/react-wrappers 2.0.2 → 3.0.0

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.
@@ -391,7 +391,12 @@ declare type XplorNavTabsEvents = {
391
391
 
392
392
  export declare const XplorRadioBtn: StencilReactComponent<XplorRadioBtn_2, XplorRadioBtnEvents>;
393
393
 
394
- declare type XplorRadioBtnEvents = NonNullable<unknown>;
394
+ declare type XplorRadioBtnEvents = {
395
+ onRadioChange: EventName<CustomEvent<{
396
+ value: string;
397
+ checked: boolean;
398
+ }>>;
399
+ };
395
400
 
396
401
  export declare const XplorSectionCard: StencilReactComponent<XplorSectionCard_2, XplorSectionCardEvents>;
397
402