jrs-react 1.1.16 → 1.1.17
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 +1 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/src/components/JRTest.jsx +4 -3
- package/src/index.js +1 -1
package/build/index.es.js
CHANGED
|
@@ -7441,7 +7441,7 @@ function JRTest() {
|
|
|
7441
7441
|
}
|
|
7442
7442
|
class JRTestReact extends JRSubmit {
|
|
7443
7443
|
renderer() {
|
|
7444
|
-
return /*#__PURE__*/React.createElement(
|
|
7444
|
+
return /*#__PURE__*/React.createElement(StyledJRFrame, null, "JRTestReact extends JRSubmit");
|
|
7445
7445
|
}
|
|
7446
7446
|
}
|
|
7447
7447
|
|
package/build/index.js
CHANGED
|
@@ -7445,7 +7445,7 @@ function JRTest() {
|
|
|
7445
7445
|
}
|
|
7446
7446
|
class JRTestReact extends JRSubmit {
|
|
7447
7447
|
renderer() {
|
|
7448
|
-
return /*#__PURE__*/React.createElement(
|
|
7448
|
+
return /*#__PURE__*/React.createElement(StyledJRFrame, null, "JRTestReact extends JRSubmit");
|
|
7449
7449
|
}
|
|
7450
7450
|
}
|
|
7451
7451
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
import JRSubmit from './JRSubmit'
|
|
3
|
+
import { StyledJRFrame } from './JRFrame/StyledJRFrame'
|
|
3
4
|
|
|
4
5
|
|
|
5
|
-
export
|
|
6
|
+
export function JRTest (){
|
|
6
7
|
return 'I am JRTest string'
|
|
7
8
|
}
|
|
8
9
|
|
|
9
|
-
export class JRTestReact extends JRSubmit {
|
|
10
|
+
export default class JRTestReact extends JRSubmit {
|
|
10
11
|
renderer(){
|
|
11
|
-
return <
|
|
12
|
+
return <StyledJRFrame>JRTestReact extends JRSubmit</StyledJRFrame>
|
|
12
13
|
}
|
|
13
14
|
}
|
package/src/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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 JRTestReact,{JRTest} from './components/JRTest'
|
|
5
5
|
export {
|
|
6
6
|
JRTest,JRTestReact
|
|
7
7
|
,JRSubmit,JRFrame//,JRTable
|