daisy-ui-kit 3.0.1 → 3.0.2
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 +18 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
# DaisyUI Kit
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[Read the Docs](https://daisyuikit.com)
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Start with CSS. Sprinkle in VueJS
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
You can do a lot with CSS. VueJS lets us go beyond any limitations to give your users exactly the UX they desire. Where it makes sense, we've integrated components with reactive `v-model` support.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
# Remove the new version of wrangler if you have it installed.
|
|
11
|
-
npm remove wrangler -g
|
|
9
|
+
## No Memorizing Class Names
|
|
12
10
|
|
|
13
|
-
|
|
14
|
-
npm i @cloudflare/wrangler -g
|
|
15
|
-
wrangler login
|
|
16
|
-
```
|
|
11
|
+
When you don't have to memorize class names, you can start building right away.
|
|
17
12
|
|
|
18
|
-
|
|
13
|
+
## Semantic Markup
|
|
19
14
|
|
|
20
|
-
|
|
21
|
-
# First, run a successful build.
|
|
22
|
-
NITRO_PRESET=cloudflare npm run build
|
|
15
|
+
It's much nicer to read component names than `<div class="" />`. It reduces mental overhead and frees up creativity.
|
|
23
16
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
17
|
+
## Built with TypeScript
|
|
18
|
+
|
|
19
|
+
Since DaisyUI is built with Typescript, you get type-friendly components and props. The props practically document themselves.
|
|
20
|
+
|
|
21
|
+
## Great Documentation
|
|
22
|
+
|
|
23
|
+
The DaisyUI Kit documentation is loaded with examples. Expand the code panel below any example to copy, paste, then customize.
|
|
24
|
+
|
|
25
|
+
## Small Bundle Size
|
|
26
|
+
|
|
27
|
+
We've found the perfect middle ground that captures the ease-of-use you get with components while also not bundling a lot of extra CSS class utilities.
|