@yomologic/react-ui 0.4.0 → 0.5.0
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 +7 -1
- package/package.json +3 -2
- package/dist/index.d.mts +0 -994
- package/dist/index.js.map +0 -1
- package/dist/index.mjs.map +0 -1
- package/dist/styles.css.map +0 -1
- package/dist/styles.d.mts +0 -2
package/README.md
CHANGED
|
@@ -88,7 +88,13 @@ yarn type-check
|
|
|
88
88
|
|
|
89
89
|
## Contributing
|
|
90
90
|
|
|
91
|
-
|
|
91
|
+
Contributions are welcome! Feel free to:
|
|
92
|
+
|
|
93
|
+
- Report bugs or request features via [GitHub Issues](https://github.com/yomologic/react-ui/issues)
|
|
94
|
+
- Fork the repository and submit pull requests
|
|
95
|
+
- Improve documentation or add examples
|
|
96
|
+
|
|
97
|
+
For development documentation, see the implementation guides in the repository.
|
|
92
98
|
|
|
93
99
|
## License
|
|
94
100
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yomologic/react-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "A modern, lightweight React UI component library built with TypeScript",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"./themes/*.css": "./dist/themes/*.css"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
|
-
"dist"
|
|
26
|
+
"dist/**/*.{js,mjs,d.ts,css}",
|
|
27
|
+
"!dist/**/*.map"
|
|
27
28
|
],
|
|
28
29
|
"scripts": {
|
|
29
30
|
"build": "tsup",
|