Package Exports
- @gpa-gemstone/react-interactive
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@gpa-gemstone/react-interactive) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-table

The Gemstone Web Library organizes all Gemstone functionality related to web.
This library includes helpful npm package component for creating interactive components in react.
Usage
General Modal
<Modal Title='Title of Modal' ShowX={false} Callback={(confirmed) => setShow(false)} Show={show} Size={'lg'} ShowCancel={true} CancelText={'Cancel'} ConfirmText={'Ok'} >
<p> Content of the Modal should go here </p>
<p> Multiple Fields will work </p>
</Modal >Confirmation Dialog Modal
<Warning Title='Please Confirm' Callback={(confirmed) => setShow(false)} Show={show} Message={'Are you sure you want to Continue?'} />