vueless 1.2.3-beta.7 → 1.2.3-beta.9
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 +24 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Vueless UI
|
|
4
4
|
|
|
5
|
-
Vueless is an open-source UI library and design system framework for Vue.js 3 and Nuxt.js 3, built on top of Tailwind CSS v4.
|
|
5
|
+
Vueless is an open-source UI library and design system framework for Vue.js 3 and Nuxt.js 3 / 4, built on top of Tailwind CSS v4.
|
|
6
6
|
|
|
7
7
|
It’s completely styleless, allowing you to extend or override default styles without modifying the components themselves — only your custom styles are included in the final build.
|
|
8
8
|
|
|
@@ -40,6 +40,18 @@ Vueless is simple enough for everyday use and powerful enough for advanced scena
|
|
|
40
40
|
|
|
41
41
|
## Quick Start (Vue)
|
|
42
42
|
|
|
43
|
+
### New project
|
|
44
|
+
|
|
45
|
+
To get started with Vueless UI, simply paste the following code into your terminal:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
npm create vueless@latest
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
This command guides you through a few setup options, then generates a new scaffolded Vue + Vueless UI project with the complete application structure.
|
|
52
|
+
|
|
53
|
+
### Existing project
|
|
54
|
+
|
|
43
55
|
1. Install `vueless` UI library packages.
|
|
44
56
|
|
|
45
57
|
```bash
|
|
@@ -108,6 +120,14 @@ export default defineNuxtConfig({
|
|
|
108
120
|
@import "vueless";
|
|
109
121
|
```
|
|
110
122
|
|
|
123
|
+
## Ecosystem
|
|
124
|
+
|
|
125
|
+
* [@vueless/storybook](https://github.com/vuelessjs/vueless-storybook) - Storybook preset for Vueless UI component library [(docs)](https://docs.vueless.com/installation/storybook).
|
|
126
|
+
* [@vueless/nuxt](https://github.com/vuelessjs/vueless-module-nuxt) - Vueless UI module for Nuxt.js [(docs)](https://docs.vueless.com/installation/nuxt).
|
|
127
|
+
* [create-vueless](https://github.com/vuelessjs/vueless-create) - CLI tool to quickly start a Vueless UI project from a template [(docs)](https://docs.vueless.com/installation/vue).
|
|
128
|
+
* [vueless-quickstart](https://github.com/vuelessjs/vueless-quickstart) - Vue + Vueless UI + JavaScript project template.
|
|
129
|
+
* [vueless-quickstart-ts](https://github.com/vuelessjs/vueless-quickstart-ts) - Vue + Vueless UI + TypeScript project template.
|
|
130
|
+
|
|
111
131
|
## Contributing
|
|
112
132
|
|
|
113
133
|
* We encourage you to contribute to Vueless! Please check out the
|
|
@@ -120,5 +140,8 @@ check out our [security policy](SECURITY.md) for guidelines.
|
|
|
120
140
|
|
|
121
141
|
Vueless is released under the [MIT License](https://opensource.org/licenses/MIT).
|
|
122
142
|
|
|
143
|
+
---
|
|
144
|
+
From Ukrainians to a Peaceful World 🇺🇦
|
|
145
|
+
|
|
123
146
|
|
|
124
147
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "1.2.3-beta.
|
|
3
|
+
"version": "1.2.3-beta.9",
|
|
4
4
|
"description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
|
|
5
5
|
"author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
57
57
|
"@vue/test-utils": "^2.4.6",
|
|
58
58
|
"@vue/tsconfig": "^0.7.0",
|
|
59
|
-
"@vueless/storybook": "^1.2.1
|
|
59
|
+
"@vueless/storybook": "^1.2.1",
|
|
60
60
|
"eslint": "^9.32.0",
|
|
61
61
|
"eslint-plugin-storybook": "^9.0.18",
|
|
62
62
|
"eslint-plugin-vue": "^10.3.0",
|