genesys-react-components 0.1.0-alpha.1 → 0.1.0-alpha.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/cjs/index.js +5 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +5 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +10 -11
package/dist/esm/index.js
CHANGED
|
@@ -2850,5 +2850,10 @@ function DxToggle(props) {
|
|
|
2850
2850
|
value !== true ? React.createElement(GenesysDevIcon, { icon: trueIcon }) : undefined))));
|
|
2851
2851
|
}
|
|
2852
2852
|
|
|
2853
|
+
// Add this in your component file
|
|
2854
|
+
require('react-dom');
|
|
2855
|
+
window.React2 = require('react');
|
|
2856
|
+
console.log(window.React1 === window.React2);
|
|
2857
|
+
|
|
2853
2858
|
export { DxAccordion, DxAccordionGroup, DxButton, DxItemGroup, DxTabPanel, DxTabbedContent, DxTextbox, DxToggle };
|
|
2854
2859
|
//# sourceMappingURL=index.js.map
|