daisyui 2.7.0 → 2.10.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 +2 -1
- package/dist/full.css +1 -1
- package/dist/styled.css +8 -15
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/package.json +1 -1
- package/src/index.js +18 -21
- package/src/lib/responsiveRegex.js +43 -1
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ module.exports = {
|
|
|
74
74
|
Loading CSS files from CDN is not recommended for production. It's better to install Tailwind and daisyUI as Nodejs dependencies so you can config/customize everything, and purge unused styles.
|
|
75
75
|
|
|
76
76
|
```html
|
|
77
|
-
<link href="https://cdn.jsdelivr.net/npm/daisyui@2.
|
|
77
|
+
<link href="https://cdn.jsdelivr.net/npm/daisyui@2.9.0/dist/full.css" rel="stylesheet" type="text/css" />
|
|
78
78
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
79
79
|
```
|
|
80
80
|
|
|
@@ -222,6 +222,7 @@ Read the documents for more info:
|
|
|
222
222
|
- [speckyboy](https://speckyboy.com/weekly-news-for-designers-594/)
|
|
223
223
|
- [dailydev](https://app.daily.dev/posts/-4OPGw0te)
|
|
224
224
|
- [Future Tech Blog (Japanese)](https://future-architect.github.io/articles/20211124a/)
|
|
225
|
+
- [Adding Tailwind and Daisy UI to SvelteKit](https://dev.to/brewhousedigital/adding-tailwind-and-daisy-ui-to-sveltekit-2hk5)
|
|
225
226
|
- Youtube videos
|
|
226
227
|
- [Supabase & Sveltekit - Build Twitter in 75 minutes](https://www.youtube.com/watch?v=mPQyckogDYc)
|
|
227
228
|
- [Setup the Best Frontend JavaScript Stack - Svelte, Vite, TailwindCSS and DaisyUI](https://www.youtube.com/watch?v=mEBPN_9jTAE)
|