JSPM

  • Created
  • Published
  • Downloads 255
  • Score
    100M100P100Q84493F
  • License MIT

Interactive UI Components for GPA products

Package Exports

  • @gpa-gemstone/react-interactive
  • @gpa-gemstone/react-interactive/lib/index.js

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

gemstone logo

The Gemstone Web Library organizes all Gemstone functionality related to web.

GitHub license

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?'} />

Wizard ToolTip