@xplor-education/react-wrappers 2.0.1 → 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.
@@ -72,6 +72,7 @@ import { XplorLinks as XplorLinks_2 } from '@xplor-education/core-stencil-compon
72
72
  import { XplorModal as XplorModal_2 } from '@xplor-education/core-stencil-components/components/xplor-modal.js';
73
73
  import { XplorModalPersistent as XplorModalPersistent_2 } from '@xplor-education/core-stencil-components/components/xplor-modal-persistent.js';
74
74
  import { XplorNavTabs as XplorNavTabs_2 } from '@xplor-education/core-stencil-components/components/xplor-nav-tabs.js';
75
+ import { XplorRadioBtn as XplorRadioBtn_2 } from '@xplor-education/core-stencil-components/components/xplor-radio-btn.js';
75
76
  import { XplorSectionCard as XplorSectionCard_2 } from '@xplor-education/core-stencil-components/components/xplor-section-card.js';
76
77
  import { XplorSectionHeading as XplorSectionHeading_2 } from '@xplor-education/core-stencil-components/components/xplor-section-heading.js';
77
78
  import { XplorTable as XplorTable_2 } from '@xplor-education/core-stencil-components/components/xplor-table.js';
@@ -388,6 +389,15 @@ declare type XplorNavTabsEvents = {
388
389
  onXplorChange: EventName<CustomEvent<string>>;
389
390
  };
390
391
 
392
+ export declare const XplorRadioBtn: StencilReactComponent<XplorRadioBtn_2, XplorRadioBtnEvents>;
393
+
394
+ declare type XplorRadioBtnEvents = {
395
+ onRadioChange: EventName<CustomEvent<{
396
+ value: string;
397
+ checked: boolean;
398
+ }>>;
399
+ };
400
+
391
401
  export declare const XplorSectionCard: StencilReactComponent<XplorSectionCard_2, XplorSectionCardEvents>;
392
402
 
393
403
  declare type XplorSectionCardEvents = NonNullable<unknown>;