@visns-studio/visns-components 1.0.2 → 1.0.4

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.
Files changed (2) hide show
  1. package/index.js +30 -3
  2. package/package.json +7 -2
package/index.js CHANGED
@@ -1,4 +1,31 @@
1
- import DataGrid from "./components/visns-data-grid";
2
- import Fetch from "./components/visns-fetch";
1
+ import AsyncSelect from "./components/visns-async-select";
2
+ import Autocomplete from "./components/visns-autocomplete";
3
+ import Call from "./components/visns-call";
4
+ import CustomFetch from "./components/visns-fetch";
5
+ import Download from "./components/visns-download";
6
+ import Field from "./components/visns-field";
7
+ import Form from "./components/visns-form";
8
+ import Loader from "./components/visns-loader";
9
+ import MultiSelect from "./components/visns-multi-select";
10
+ import Notification from "./components/visns-notification";
11
+ import SelectList from "./components/visns-select-list";
12
+ import Select from "./components/visns-select";
13
+ import Table from "./components/visns-data-grid";
14
+ import TableFilter from "./components/visns-table-filter";
3
15
 
4
- export { DataGrid, Fetch };
16
+ export {
17
+ AsyncSelect,
18
+ Autocomplete,
19
+ Call,
20
+ CustomFetch,
21
+ Download,
22
+ Field,
23
+ Form,
24
+ Loader,
25
+ MultiSelect,
26
+ Notification,
27
+ SelectList,
28
+ Select,
29
+ Table,
30
+ TableFilter,
31
+ };
package/package.json CHANGED
@@ -22,10 +22,15 @@
22
22
  "reactjs-popup": "^2.0.5"
23
23
  },
24
24
  "devDependecies": {
25
- "react": "^18.2.0"
25
+ "react": "^18.2.0",
26
+ "react-dom": "^18.2.0"
27
+ },
28
+ "peerDependencies": {
29
+ "react": ">=18.2.0",
30
+ "react-dom": ">=18.2.0"
26
31
  },
27
32
  "name": "@visns-studio/visns-components",
28
- "version": "1.0.2",
33
+ "version": "1.0.4",
29
34
  "description": "Various packages to assist in the development of our Custom Applications.",
30
35
  "main": "index.js",
31
36
  "devDependencies": {},