daisy-ui-kit 3.0.0 → 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.
Files changed (2) hide show
  1. package/README.md +18 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,26 +1,27 @@
1
1
  # DaisyUI Kit
2
2
 
3
- The complete set of DaisyUI components for VueJS and NuxtJS.
3
+ [Read the Docs](https://daisyuikit.com)
4
4
 
5
- ## Publishing to Cloudflare Workers
5
+ ## Start with CSS. Sprinkle in VueJS
6
6
 
7
- First, you'll need to have the old version of Cloudflare Wrangler installed. (Nitro doesn't have a preset for Cloudflare Worker Modules format, yet.)
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
- ```bash
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
- # Install the old version of wrangler then login.
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
- After your git working directory is clean, run the following:
13
+ ## Semantic Markup
19
14
 
20
- ```bash
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
- # Then publish
25
- wrangler publish
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "daisy-ui-kit",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "nuxi build",