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 +3 -5
- package/build/index.js +3 -5
- package/package.json +1 -1
- package/src/components/JRTest.jsx +3 -6
- package/src/index.js +2 -3
package/build/index.es.js
CHANGED
|
@@ -7436,14 +7436,12 @@ class JRFrame extends JRSubmit {
|
|
|
7436
7436
|
}
|
|
7437
7437
|
}
|
|
7438
7438
|
|
|
7439
|
-
|
|
7440
|
-
|
|
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(
|
|
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
|
-
|
|
7444
|
-
|
|
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(
|
|
7448
|
+
return /*#__PURE__*/React.createElement("div", null, "JRTestReact extends JRSubmit");
|
|
7451
7449
|
}
|
|
7452
7450
|
}
|
|
7453
7451
|
|
package/package.json
CHANGED
|
@@ -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
|
|
7
|
-
|
|
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 <
|
|
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
|
|
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
|
}
|