@egovernments/digit-ui-libraries 0.0.1-sandbox
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 +44 -0
- package/dist/index.js +1 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# digit-ui-libraries
|
|
2
|
+
|
|
3
|
+
> Made with @egovernments/create-ui-library
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install --save @egovernments/digit-ui-libraries
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Limitation
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
This Package is more specific to Urban
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```jsx
|
|
20
|
+
import React from "react";
|
|
21
|
+
import initLibraries from "@egovernments/digit-ui-libraries";
|
|
22
|
+
|
|
23
|
+
import defaultConfig from "./config";
|
|
24
|
+
|
|
25
|
+
const App = ({ deltaConfig, stateCode, cityCode, moduleCode }) => {
|
|
26
|
+
initLibraries();
|
|
27
|
+
|
|
28
|
+
const store = eGov.Services.useStore(defaultConfig, { deltaConfig, stateCode, cityCode, moduleCode });
|
|
29
|
+
|
|
30
|
+
return <p>Create React Library Example 😄</p>;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export default App;
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Changelog
|
|
37
|
+
|
|
38
|
+
### Summary for Version [1.7.35] - 2025-03-20
|
|
39
|
+
|
|
40
|
+
Added tenantId in Multiple api calls of obps, bills, tl, pt etc
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
MIT © [](https://github.com/)
|