rimelight-components 2.0.9 → 2.0.11

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,81 +1,119 @@
1
- <!--
2
- Get your module up and running quickly.
1
+ <picture>
2
+ <source media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/91ceab67-89ce-4ef4-8678-4402a92baca5">
3
+ <source media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/51526d6d-e5ec-41b4-aa37-242dec1cdb27">
4
+ <img alt="Nuxt UI" src="https://github.com/user-attachments/assets/51526d6d-e5ec-41b4-aa37-242dec1cdb27">
5
+ </picture>
3
6
 
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
- -->
9
-
10
- # My Module
7
+ # Rimelight Components
11
8
 
12
9
  [![npm version][npm-version-src]][npm-version-href]
13
10
  [![npm downloads][npm-downloads-src]][npm-downloads-href]
14
11
  [![License][license-src]][license-href]
15
12
  [![Nuxt][nuxt-src]][nuxt-href]
16
13
 
17
- My new Nuxt module for doing amazing things.
14
+ A Nuxt module with components and utilities used internally at Rimelight Entertainment.
15
+
16
+ > [!WARNING]
17
+ > This module is in early development and may contain placeholders and not strictly adhere to best practices.
18
18
 
19
- - [✨ &nbsp;Release Notes](/CHANGELOG.md)
20
- <!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
21
- <!-- - [📖 &nbsp;Documentation](https://example.com) -->
19
+ - [Documentation](https://ui.nuxt.com/docs)
20
+ - [Playground](https://ui3-playground.nuxt.dev)
21
+ - [Release Notes](/CHANGELOG.md)
22
22
 
23
23
  ## Features
24
24
 
25
25
  <!-- Highlight some of the features your module provide here -->
26
26
 
27
- - &nbsp;Foo
28
- - 🚠 &nbsp;Bar
29
- - 🌲 &nbsp;Baz
27
+ - Block-based Page Rendering
28
+
29
+ ## Setup
30
30
 
31
- ## Quick Setup
31
+ Install the package from npm:
32
32
 
33
- Install the module to your Nuxt application with one command:
33
+ ```bash [bun]
34
+ bun add rimelight-components
35
+ ```
36
+
37
+ Add the module to your `nuxt.config.js`:
34
38
 
35
- ```bash
36
- npx nuxi module add my-module
39
+ ```ts [nuxt.config.ts]
40
+ export default defineNuxtConfig({
41
+ modules: ['rimelight-components']
42
+ })
37
43
  ```
38
44
 
39
- That's it! You can now use My Module in your Nuxt app ✨
45
+ Learn more in the [installation guide](https://ui.nuxt.com/docs/getting-started/installation/nuxt).
40
46
 
41
47
  ## Contribution
42
48
 
43
- <details>
44
- <summary>Local development</summary>
45
-
46
- ```bash
49
+ Thank you for considering contributing to Rimelight Components. Here are a few ways you can get involved:
50
+
51
+ - Reporting Bugs: If you come across any bugs or issues, please check out the reporting bugs guide to learn how to submit a bug report.
52
+ - Suggestions: Have any thoughts to enhance Rimelight Components? We'd love to hear them! Check out the [contribution guide](https://ui.nuxt.com/docs/getting-started/contribution) to share your suggestions.
53
+
54
+ ## Local Development
55
+
56
+ ```bash [bun]
47
57
  # Install dependencies
48
- npm install
58
+ bun install
59
+ ```
49
60
 
61
+ ```bash [bun]
50
62
  # Generate type stubs
51
- npm run dev:prepare
63
+ bun dev:prepare
64
+ ```
52
65
 
66
+ ```bash [bun]
53
67
  # Develop with the playground
54
- npm run dev
68
+ bun dev
69
+ ```
55
70
 
71
+ ```bash [bun]
56
72
  # Build the playground
57
- npm run dev:build
73
+ bun dev:build
74
+ ```
75
+
76
+ ```bash [bun]
77
+ # Run Typecheck
78
+ bun typecheck
79
+ ```
58
80
 
59
- # Run ESLint
60
- npm run lint
81
+ ```bash [bun]
82
+ # Run Oxlint
83
+ bun lint
84
+ ```
85
+
86
+ ```bash [bun]
87
+ # Run Prettier
88
+ bun format
89
+ ```
61
90
 
91
+ ```bash [bun]
62
92
  # Run Vitest
63
93
  npm run test
64
- npm run test:watch
94
+ ```
65
95
 
96
+ ```bash [bun]
66
97
  # Release new version
67
- npm run release
98
+ bun release
68
99
  ```
69
100
 
70
- </details>
101
+ Learn more in the [development guide](https://ui.nuxt.com/docs/getting-started/contribution#local-development).
102
+
103
+ ## Sponshorship
104
+
105
+
106
+ ## License
107
+
108
+ Licensed under the [MIT license](https://github.com/nuxt/ui/blob/v4/LICENSE.md).
71
109
 
72
110
  <!-- Badges -->
73
111
 
74
- [npm-version-src]: https://img.shields.io/npm/v/my-module/latest.svg?style=flat&colorA=020420&colorB=00DC82
75
- [npm-version-href]: https://npmjs.com/package/my-module
76
- [npm-downloads-src]: https://img.shields.io/npm/dm/my-module.svg?style=flat&colorA=020420&colorB=00DC82
77
- [npm-downloads-href]: https://npm.chart.dev/my-module
78
- [license-src]: https://img.shields.io/npm/l/my-module.svg?style=flat&colorA=020420&colorB=00DC82
79
- [license-href]: https://npmjs.com/package/my-module
112
+ [npm-version-src]: https://img.shields.io/npm/v/rimelight-components/latest.svg?style=flat&colorA=020420&colorB=00DC82
113
+ [npm-version-href]: https://npmjs.com/package/rimelight-components
114
+ [npm-downloads-src]: https://img.shields.io/npm/dm/rimelight-components.svg?style=flat&colorA=020420&colorB=00DC82
115
+ [npm-downloads-href]: https://npm.chart.dev/rimelight-components
116
+ [license-src]: https://img.shields.io/npm/l/rimelight-components.svg?style=flat&colorA=020420&colorB=00DC82
117
+ [license-href]: https://npmjs.com/package/rimelight-components
80
118
  [nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
81
119
  [nuxt-href]: https://nuxt.com
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rimelight-components",
3
- "version": "2.0.9",
3
+ "version": "2.0.11",
4
4
  "docs": "https://rimelight.com/tools/rimelight-components",
5
5
  "configKey": "rimelightComponents",
6
6
  "compatibility": {
package/dist/module.mjs CHANGED
@@ -4,7 +4,7 @@ import { readdirSync } from 'node:fs';
4
4
  import { basename } from 'node:path';
5
5
 
6
6
  const name = "rimelight-components";
7
- const version = "2.0.9";
7
+ const version = "2.0.11";
8
8
  const homepage = "https://rimelight.com/tools/rimelight-components";
9
9
 
10
10
  const defaultOptions = {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "type": "module",
3
3
  "name": "rimelight-components",
4
4
  "description": "A component library by Rimelight Entertainment.",
5
- "version": "2.0.9",
5
+ "version": "2.0.11",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/Rimelight-Entertainment/rimelight-components.git"