jrs-react 1.2.9 → 1.2.10

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/build/index.es.js CHANGED
@@ -8578,4 +8578,4 @@ class JRTestReact extends JRSubmit {
8578
8578
  }
8579
8579
  }
8580
8580
 
8581
- export { JRFields, JRFrame, JRSubmit, JRTable, JRTestReact };
8581
+ export { JRButton, JRFields, JRFrame, JRSubmit, JRTable, JRTestReact };
package/build/index.js CHANGED
@@ -8586,6 +8586,7 @@ class JRTestReact extends JRSubmit {
8586
8586
  }
8587
8587
  }
8588
8588
 
8589
+ exports.JRButton = JRButton;
8589
8590
  exports.JRFields = JRFields;
8590
8591
  exports.JRFrame = JRFrame;
8591
8592
  exports.JRSubmit = JRSubmit;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jrs-react",
3
- "version": "1.2.9",
3
+ "version": "1.2.10",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",
package/src/index.js CHANGED
@@ -3,7 +3,9 @@ import JRFrame from './components/JRFrame/JRFrame'
3
3
  import JRTable from './components/JRTable/JRTable'
4
4
  import JRFields from './components/JRFields/JRFields'
5
5
  import JRTestReact from './components/JRTest'
6
+ import JRButton from './components/JRInput/JRButton'
6
7
  export {
7
8
  JRTestReact
8
9
  ,JRSubmit,JRFrame,JRTable,JRFields
10
+ ,JRButton
9
11
  }