jrs-react 1.1.12 → 1.1.13
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
|
@@ -8091,6 +8091,8 @@ const StyledJRTable = dt.div`
|
|
|
8091
8091
|
}
|
|
8092
8092
|
`;
|
|
8093
8093
|
|
|
8094
|
+
// import JRFrame from "../JRFrame/JRFrame";
|
|
8095
|
+
|
|
8094
8096
|
const getMapObject = (map, names) => {
|
|
8095
8097
|
const name = names.shift(names);
|
|
8096
8098
|
if (names.length) {
|
|
@@ -8110,7 +8112,7 @@ const setMapObject = (map, names, value) => {
|
|
|
8110
8112
|
map[name] = value;
|
|
8111
8113
|
}
|
|
8112
8114
|
};
|
|
8113
|
-
class JRTable extends
|
|
8115
|
+
class JRTable extends JRSubmit {
|
|
8114
8116
|
constructor(props) {
|
|
8115
8117
|
super(props);
|
|
8116
8118
|
this.colGroupRef = /*#__PURE__*/React.createRef();
|
package/build/index.js
CHANGED
|
@@ -8095,6 +8095,8 @@ const StyledJRTable = dt.div`
|
|
|
8095
8095
|
}
|
|
8096
8096
|
`;
|
|
8097
8097
|
|
|
8098
|
+
// import JRFrame from "../JRFrame/JRFrame";
|
|
8099
|
+
|
|
8098
8100
|
const getMapObject = (map, names) => {
|
|
8099
8101
|
const name = names.shift(names);
|
|
8100
8102
|
if (names.length) {
|
|
@@ -8114,7 +8116,7 @@ const setMapObject = (map, names, value) => {
|
|
|
8114
8116
|
map[name] = value;
|
|
8115
8117
|
}
|
|
8116
8118
|
};
|
|
8117
|
-
class JRTable extends
|
|
8119
|
+
class JRTable extends JRSubmit {
|
|
8118
8120
|
constructor(props) {
|
|
8119
8121
|
super(props);
|
|
8120
8122
|
this.colGroupRef = /*#__PURE__*/React.createRef();
|
package/package.json
CHANGED
|
@@ -2,7 +2,8 @@ import React from "react";
|
|
|
2
2
|
import { TFoot, THead } from "./THead";
|
|
3
3
|
import { TBodies } from "./TBodies";
|
|
4
4
|
import { StyledJRTable } from "./StyledJRTable";
|
|
5
|
-
import
|
|
5
|
+
import JRSubmit from "../JRSubmit";
|
|
6
|
+
// import JRFrame from "../JRFrame/JRFrame";
|
|
6
7
|
|
|
7
8
|
|
|
8
9
|
const getMapObject=(map,names)=>{
|
|
@@ -25,7 +26,7 @@ const setMapObject=(map,names,value)=>{
|
|
|
25
26
|
}
|
|
26
27
|
}
|
|
27
28
|
|
|
28
|
-
export default class JRTable extends
|
|
29
|
+
export default class JRTable extends JRSubmit {
|
|
29
30
|
constructor(props) {
|
|
30
31
|
super(props)
|
|
31
32
|
this.colGroupRef = React.createRef()
|