nuance-ui 0.1.1 → 0.1.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 CHANGED
@@ -1,90 +1,71 @@
1
- <!--
2
- Get your module up and running quickly.
1
+ # Nuance-UI
3
2
 
4
- Find and replace all on all files (CMD+SHIFT+F):
5
- - Name: My Module
6
- - Package name: my-module
7
- - Description: My new Nuxt module
8
- -->
3
+ A modern UI kit module for Nuxt 3 with thoughtfully designed components and subtle interaction details.
9
4
 
10
- # My Module
11
-
12
- [![npm version][npm-version-src]][npm-version-href]
13
- [![npm downloads][npm-downloads-src]][npm-downloads-href]
14
- [![License][license-src]][license-href]
15
- [![Nuxt][nuxt-src]][nuxt-href]
16
-
17
- My new Nuxt module for doing amazing things.
18
-
19
- - [✨ &nbsp;Release Notes](/CHANGELOG.md)
20
-
21
- <!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
22
- <!-- - [📖 &nbsp;Documentation](https://example.com) -->
23
-
24
- ## Features
25
-
26
- <!-- Highlight some of the features your module provide here -->
27
-
28
- - ⛰ &nbsp;Foo
29
- - 🚠 &nbsp;Bar
30
- - 🌲 &nbsp;Baz
31
-
32
- ## Quick Setup 1
33
-
34
- Install the module to your Nuxt application with one command:
5
+ ## 📦 Installation
35
6
 
36
7
  ```bash
37
- npx nuxi module add my-module
38
- ```
39
-
40
- That's it! You can now use My Module in your Nuxt app ✨
41
-
42
- ## Contribution
8
+ # npm
9
+ npm install nuance-ui
43
10
 
44
- <details>
45
- <summary>Local development</summary>
11
+ # yarn
12
+ yarn add nuance-ui
46
13
 
47
- ```bash
48
- # Install dependencies
49
- npm install
50
-
51
- # Generate type stubs
52
- npm run dev:prepare
14
+ # pnpm
15
+ pnpm add nuance-ui
16
+ ```
53
17
 
54
- # Develop with the playground
55
- npm run dev
18
+ ## Quick Start
56
19
 
57
- # Build the playground
58
- npm run dev:build
20
+ Add `nuance-ui` to the `modules` section of your `nuxt.config.ts`:
59
21
 
60
- # Run ESLint
61
- npm run lint
22
+ ```typescript
23
+ export default defineNuxtConfig({
24
+ modules: ['nuance-ui'],
25
+ })
26
+ ```
62
27
 
63
- # Run Vitest
64
- npm run test
65
- npm run test:watch
28
+ Now you can use components in your application:
66
29
 
67
- # Release new version
68
- npm run release
69
- ```
30
+ ```vue
31
+ <template>
32
+ <div>
33
+ <NButton variant='primary'>
34
+ Click me
35
+ </NButton>
70
36
 
71
- </details>
37
+ <NCard>
38
+ <p>Card content goes here</p>
39
+ </NCard>
40
+ </div>
41
+ </template>
42
+ ```
72
43
 
44
+ ## Contributing
73
45
 
74
- <!-- Badges -->
46
+ We welcome contributions! Please:
75
47
 
76
- [npm-version-src]: https://img.shields.io/npm/v/my-module/latest.svg?style=flat&colorA=020420&colorB=00DC82
48
+ 1. Fork the repository
49
+ 2. Create a feature branch (`git checkout -b feature/amazing-feature`)
50
+ 3. Commit your changes (`git commit -m 'Add amazing feature'`)
51
+ 4. Push to the branch (`git push origin feature/amazing-feature`)
52
+ 5. Open a Pull Request
77
53
 
78
- [npm-version-href]: https://npmjs.com/package/my-module
54
+ ## Links
79
55
 
80
- [npm-downloads-src]: https://img.shields.io/npm/dm/my-module.svg?style=flat&colorA=020420&colorB=00DC82
56
+ - [Documentation](https://nuance-ui.dev)
57
+ - [GitHub](https://github.com/yourusername/nuance-ui)
58
+ - [NPM](https://www.npmjs.com/package/nuance-ui)
59
+ - [Examples](https://nuance-ui.dev/examples)
81
60
 
82
- [npm-downloads-href]: https://npm.chart.dev/my-module
61
+ ## Support
83
62
 
84
- [license-src]: https://img.shields.io/npm/l/my-module.svg?style=flat&colorA=020420&colorB=00DC82
63
+ If you have questions or issues:
85
64
 
86
- [license-href]: https://npmjs.com/package/my-module
65
+ - [Create an Issue](https://github.com/yourusername/nuance-ui/issues)
66
+ - [Discussions](https://github.com/yourusername/nuance-ui/discussions)
67
+ - Email: support@nuance-ui.dev
87
68
 
88
- [nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
69
+ ## License
89
70
 
90
- [nuxt-href]: https://nuxt.com
71
+ Licensed under the MIT license.
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^4.0.0"
6
6
  },
7
- "version": "0.1.1",
7
+ "version": "0.1.2",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuance-ui",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "A UI Library for Modern Web Apps, powered by Vue.",
5
5
  "repository": {
6
6
  "type": "git",