@manas-dev/global-themes 1.0.2 → 1.0.3
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 -0
- package/package.json +10 -1
package/README.md
CHANGED
|
@@ -69,6 +69,13 @@ const App = () => {
|
|
|
69
69
|
| `className` | `string` | `''` | CSS class for the wrapper element (useful for positioning). |
|
|
70
70
|
| `themes` | `ThemeColor[]` | `Defaults` | Optional array of theme objects to override the default presets. |
|
|
71
71
|
|
|
72
|
+
## Attribution
|
|
73
|
+
|
|
74
|
+
If you use this package in your project, please cite the author or repository:
|
|
75
|
+
|
|
76
|
+
> **Global Themes** by Manas Barman (@manas-dev)
|
|
77
|
+
> Repository: [github.com/ManasBarman229/global-themes](https://github.com/ManasBarman229/global-themes)
|
|
78
|
+
|
|
72
79
|
## License
|
|
73
80
|
|
|
74
81
|
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manas-dev/global-themes",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A beautiful, animated theme picker component.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"theme-switcher",
|
|
8
|
+
"dark-mode",
|
|
9
|
+
"ui-component",
|
|
10
|
+
"tailwind",
|
|
11
|
+
"color-picker",
|
|
12
|
+
"accessibility"
|
|
13
|
+
],
|
|
5
14
|
"main": "dist/index.cjs.js",
|
|
6
15
|
"module": "dist/index.esm.js",
|
|
7
16
|
"types": "dist/index.d.ts",
|