@xplor-education/react-wrappers 2.0.1 → 2.0.2
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.
- package/dist/components.cjs +456 -87
- package/dist/components.d.ts +5 -0
- package/dist/components.js +1108 -685
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -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,10 @@ 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 = NonNullable<unknown>;
|
|
395
|
+
|
|
391
396
|
export declare const XplorSectionCard: StencilReactComponent<XplorSectionCard_2, XplorSectionCardEvents>;
|
|
392
397
|
|
|
393
398
|
declare type XplorSectionCardEvents = NonNullable<unknown>;
|