jrs-react 1.2.14 → 1.2.15
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 +1499 -1444
- package/build/index.js +1498 -1442
- package/package.json +1 -1
- package/src/components/JRAlert/index.jsx +1 -0
- package/src/components/JRWindow/JRWindow.jsx +0 -3
- package/src/index.js +4 -2
package/package.json
CHANGED
|
@@ -3,10 +3,7 @@ import JRFrame from "../JRFrame/JRFrame";
|
|
|
3
3
|
import styled from "styled-components";
|
|
4
4
|
import TitleBar from "./TitleBar";
|
|
5
5
|
import { po } from "../JRUtils";
|
|
6
|
-
import Slider from "./Slider";
|
|
7
6
|
import Sliders from "./Slider";
|
|
8
|
-
import Fields from "../JRFields/JRFields";
|
|
9
|
-
import JRText from "../JRInput/JRText";
|
|
10
7
|
import style from './Style.module.css'
|
|
11
8
|
|
|
12
9
|
|
package/src/index.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import JRSubmit from './components/JRSubmit'
|
|
2
2
|
import JRFrame from './components/JRFrame/JRFrame'
|
|
3
|
+
import JRWindow from './components/JRWindow/JRWindow'
|
|
3
4
|
import JRTable from './components/JRTable/JRTable'
|
|
4
5
|
import JRFields from './components/JRFields/JRFields'
|
|
5
6
|
import JRTestReact from './components/JRTest'
|
|
6
7
|
import JRButton from './components/JRInput/JRButton'
|
|
7
|
-
import
|
|
8
|
+
import JRAlert from './components/JRAlert'
|
|
9
|
+
|
|
8
10
|
export {
|
|
9
11
|
JRTestReact
|
|
10
|
-
,JRSubmit,JRFrame,JRWindow,JRTable,JRFields
|
|
12
|
+
,JRSubmit,JRFrame,JRWindow,JRTable,JRFields,JRAlert
|
|
11
13
|
,JRButton
|
|
12
14
|
}
|