ubk.erp.webpack 1.0.0 → 1.0.2
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/README.md +4 -4
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ubk.erp.webpack
|
|
2
2
|
|
|
3
3
|
UBK internal React component library.
|
|
4
4
|
|
|
@@ -7,7 +7,7 @@ UBK internal React component library.
|
|
|
7
7
|
You can install the package using npm:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install
|
|
10
|
+
npm install ubk.erp.webpack
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Peer Dependencies
|
|
@@ -25,7 +25,7 @@ Here is a basic example of how to use the components provided by this library:
|
|
|
25
25
|
|
|
26
26
|
```jsx
|
|
27
27
|
import React from 'react';
|
|
28
|
-
|
|
28
|
+
import { MenuSubmenu } from "ubk.erp.webpack";
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
const App = () => {
|
|
@@ -46,7 +46,7 @@ export default App;
|
|
|
46
46
|
|
|
47
47
|
- `AdmissionEnquiry`
|
|
48
48
|
```jsx
|
|
49
|
-
import { AdmissionEnquiry } from "
|
|
49
|
+
import { AdmissionEnquiry } from "ubk.erp.webpack";
|
|
50
50
|
|
|
51
51
|
const App = () => {
|
|
52
52
|
const token = "123";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ubk.erp.webpack",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"react-contenteditable": "^3.3.7",
|
|
38
38
|
"react-export-table-to-excel": "^1.0.6",
|
|
39
39
|
"react-router-dom": "^7.14.2",
|
|
40
|
-
"react-to-print": "^3.3.0"
|
|
40
|
+
"react-to-print": "^3.3.0",
|
|
41
|
+
"ubk.erp.webpack": "^1.0.0"
|
|
41
42
|
}
|
|
42
43
|
}
|