@philiprehberger/react-theme-provider 0.1.6 → 0.1.8

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.
Files changed (2) hide show
  1. package/README.md +20 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/philiprehberger/ts-react-theme-provider/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/ts-react-theme-provider/actions/workflows/ci.yml)
4
4
  [![npm version](https://img.shields.io/npm/v/@philiprehberger/react-theme-provider.svg)](https://www.npmjs.com/package/@philiprehberger/react-theme-provider)
5
- [![License](https://img.shields.io/github/license/philiprehberger/ts-react-theme-provider)](LICENSE)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/ts-react-theme-provider)](https://github.com/philiprehberger/ts-react-theme-provider/commits/main)
6
6
 
7
7
  Dark/light/system theme provider for React with localStorage persistence and system preference detection
8
8
 
@@ -74,7 +74,6 @@ import { ThemeToggle } from '@philiprehberger/react-theme-provider';
74
74
  - Listens for system `prefers-color-scheme` changes when set to `system`
75
75
  - Works with Tailwind CSS `dark:` variant out of the box
76
76
 
77
-
78
77
  ## Development
79
78
 
80
79
  ```bash
@@ -83,6 +82,24 @@ npm run build
83
82
  npm test
84
83
  ```
85
84
 
85
+ ## Support
86
+
87
+ If you find this project useful:
88
+
89
+ ⭐ [Star the repo](https://github.com/philiprehberger/ts-react-theme-provider)
90
+
91
+ 🐛 [Report issues](https://github.com/philiprehberger/ts-react-theme-provider/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
92
+
93
+ 💡 [Suggest features](https://github.com/philiprehberger/ts-react-theme-provider/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
94
+
95
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
96
+
97
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
98
+
99
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
100
+
101
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
102
+
86
103
  ## License
87
104
 
88
- MIT
105
+ [MIT](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@philiprehberger/react-theme-provider",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "Dark/light/system theme provider for React with localStorage persistence and system preference detection",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",