jrs-react 1.1.20 → 1.1.21

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
@@ -7436,14 +7436,12 @@ class JRFrame extends JRSubmit {
7436
7436
  }
7437
7437
  }
7438
7438
 
7439
- class JRTest extends JRSubmit {
7440
- renderer() {
7441
- return /*#__PURE__*/React.createElement("div", null, "JRTest");
7442
- }
7439
+ function JRTest() {
7440
+ return 'I am JRTest string';
7443
7441
  }
7444
7442
  class JRTestReact extends JRSubmit {
7445
7443
  renderer() {
7446
- return /*#__PURE__*/React.createElement(StyledJRFrame, null, "JRTestReact extends JRSubmit");
7444
+ return /*#__PURE__*/React.createElement("div", null, "JRTestReact extends JRSubmit");
7447
7445
  }
7448
7446
  }
7449
7447
 
package/build/index.js CHANGED
@@ -7440,14 +7440,12 @@ class JRFrame extends JRSubmit {
7440
7440
  }
7441
7441
  }
7442
7442
 
7443
- class JRTest extends JRSubmit {
7444
- renderer() {
7445
- return /*#__PURE__*/React.createElement("div", null, "JRTest");
7446
- }
7443
+ function JRTest() {
7444
+ return 'I am JRTest string';
7447
7445
  }
7448
7446
  class JRTestReact extends JRSubmit {
7449
7447
  renderer() {
7450
- return /*#__PURE__*/React.createElement(StyledJRFrame, null, "JRTestReact extends JRSubmit");
7448
+ return /*#__PURE__*/React.createElement("div", null, "JRTestReact extends JRSubmit");
7451
7449
  }
7452
7450
  }
7453
7451
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jrs-react",
3
- "version": "1.1.20",
3
+ "version": "1.1.21",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",
@@ -1,16 +1,13 @@
1
1
  import React from 'react'
2
2
  import JRSubmit from './JRSubmit'
3
- import { StyledJRFrame } from './JRFrame/StyledJRFrame'
4
3
 
5
4
 
6
- export class JRTest extends JRSubmit {
7
- renderer(){
8
- return <div>JRTest</div>
9
- }
5
+ export default function JRTest (){
6
+ return 'I am JRTest string'
10
7
  }
11
8
 
12
9
  export class JRTestReact extends JRSubmit {
13
10
  renderer(){
14
- return <StyledJRFrame>JRTestReact extends JRSubmit</StyledJRFrame>
11
+ return <div>JRTestReact extends JRSubmit</div>
15
12
  }
16
13
  }
package/src/index.js CHANGED
@@ -1,9 +1,8 @@
1
1
  import JRSubmit from './components/JRSubmit'
2
2
  import JRFrame from './components/JRFrame/JRFrame'
3
3
  // import JRTable from './components/JRTable/JRTable'
4
- import {JRTest,JRTestReact} from './components/JRTest'
4
+ import JRTest,{JRTestReact} from './components/JRTest'
5
5
  export {
6
6
  JRTest,JRTestReact
7
- ,JRSubmit,JRFrame
8
- //,JRTable
7
+ ,JRSubmit,JRFrame//,JRTable
9
8
  }