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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jrs-react",
3
- "version": "1.2.14",
3
+ "version": "1.2.15",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import { createRoot } from "react-dom/client"
2
3
  import { po } from "../JRUtils"
3
4
  import { useEffect, useState } from "react";
@@ -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 JRWindow from './components/JRWindow/JRWindow'
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
  }