@webilio-xyz/webilio-vue 1.0.2 → 1.0.4
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 +32 -0
- package/docs/index.html +29 -29
- package/package.json +3 -2
- package/src/Components/Component/index.js +5 -2
- package/src/Components/Input/DateComponent.vue +18 -24
- package/src/Components/Input/InputComponent.vue +5 -0
- package/src/Components/Input/InputGroupComponent.vue +5 -0
- package/src/Components/Input/SelectComponent.vue +103 -88
- package/src/Components/Layout/index.js +6 -2
- package/src/Components/Modal/index.js +5 -2
- package/src/Components/Table/index.js +9 -2
- package/src/Models/index.js +11 -0
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Webilio-Vue
|
|
2
|
+
|
|
3
|
+
A collection of reusable, accessible, and customizable Vue components to speed up your web development process. Webilio-Vue aims to be intuitive, flexible, and easy to integrate into any Vue.js project.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
### [Installation](#installation)
|
|
8
|
+
```bash
|
|
9
|
+
./wv up --build
|
|
10
|
+
```
|
|
11
|
+
```bash
|
|
12
|
+
./wv npm install
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### [Usage](#usage)
|
|
16
|
+
```bash
|
|
17
|
+
./wv npm run dev
|
|
18
|
+
```
|
|
19
|
+
Should be available at http://localhost:6060
|
|
20
|
+
|
|
21
|
+
### [Available Components](#available-components)
|
|
22
|
+
See https://webilio-xyz.github.io/webilio-vue/ for the list on components
|
|
23
|
+
|
|
24
|
+
### Publishing
|
|
25
|
+
To publish to npm
|
|
26
|
+
- Upgrade the version in package.json
|
|
27
|
+
- Run
|
|
28
|
+
```bash
|
|
29
|
+
./wv npm run build
|
|
30
|
+
```
|
|
31
|
+
- Push to main branch
|
|
32
|
+
- Create a release on github
|