ubk.erp.webpack 1.0.4 → 1.0.7
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 +33 -1
- package/dist/index.cjs +56 -13
- package/dist/index.d.ts +18 -4
- package/dist/index.js +3470 -2122
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ Ensure you have the following peer dependencies installed in your project:
|
|
|
19
19
|
- `antd` (>= 5)
|
|
20
20
|
- `swr` (>= 2)
|
|
21
21
|
|
|
22
|
-
##
|
|
22
|
+
## Menu Submenu
|
|
23
23
|
|
|
24
24
|
Here is a basic example of how to use the components provided by this library:
|
|
25
25
|
|
|
@@ -59,6 +59,38 @@ const App = () => {
|
|
|
59
59
|
|
|
60
60
|
export default App;
|
|
61
61
|
```
|
|
62
|
+
`
|
|
63
|
+
## Menu Transport
|
|
64
|
+
- `Routes`
|
|
65
|
+
```jsx
|
|
66
|
+
import { TransportRoutes } from "ubk.erp.webpack";
|
|
67
|
+
|
|
68
|
+
const App = () => {
|
|
69
|
+
const token = "123";
|
|
70
|
+
return (
|
|
71
|
+
<div>
|
|
72
|
+
<TransportRoutes token={token} />
|
|
73
|
+
</div>
|
|
74
|
+
);
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
export default App;
|
|
78
|
+
```
|
|
79
|
+
- `Vehicles`
|
|
80
|
+
```jsx
|
|
81
|
+
import { TransportVehicles } from "ubk.erp.webpack";
|
|
82
|
+
|
|
83
|
+
const App = () => {
|
|
84
|
+
const token = "123";
|
|
85
|
+
return (
|
|
86
|
+
<div>
|
|
87
|
+
<TransportVehicles token={token} />
|
|
88
|
+
</div>
|
|
89
|
+
);
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
export default App;
|
|
93
|
+
```
|
|
62
94
|
|
|
63
95
|
|
|
64
96
|
|