@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.
- package/README.md +98 -0
- package/dist/components.cjs +175 -60
- package/dist/components.d.ts +6 -1
- package/dist/components.js +1353 -912
- package/package.json +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -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 =
|
|
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
|
|