Skip to content

Commit 1ba161c

Browse files
committed
upgrade version fix docs introduction
1 parent d737e22 commit 1ba161c

File tree

3 files changed

+42
-17
lines changed

3 files changed

+42
-17
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<h1 align="center">Vue CRUD</h1>
55
<div align="center">
66
<a><img alt="license" src="https://img.shields.io/badge/license-MIT-brightgreen.svg"></a>
7-
<a><img alt="version" src="https://img.shields.io/badge/version-v0.14.2-yellow.svg"></a>
7+
<a><img alt="version" src="https://img.shields.io/badge/version-v0.15.0-yellow.svg"></a>
88
<a><img alt="build" src="https://travis-ci.org/what-crud/vue-crud.svg?branch=master"></a>
99
<a><img alt="PRs" src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg"></a>
1010
</div>
@@ -34,9 +34,12 @@ Vue CRUD provides a set of utilities, from which you can compose your own applic
3434
- Show active/inactive records,
3535
- Search phrase in whole table,
3636
- Search phrase in selected column (exact, like and list mode)
37-
- versions:
38-
- client side (small tables)
37+
- items view versions:
38+
- client side (small tables),
3939
- server side (big tables)
40+
- items view types:
41+
- table,
42+
- **NEW!** tree
4043
- other functions and features:
4144
- datatable mechanism allows selection of the number of records per page, page transition and sorting,
4245
- management of a child table from the parent table module,

docs/guide/essentials/introduction.md

Lines changed: 35 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,12 @@ Vue CRUD provides a set of utilities, from which you can compose your own applic
2727
- Show active/inactive records,
2828
- Search phrase in whole table,
2929
- Search phrase in selected column (exact, like and list mode)
30-
- versions:
31-
- client side (small tables < 2000 records)
32-
- server side (> 2000 records)
30+
- items view versions:
31+
- client side (small tables),
32+
- server side (big tables)
33+
- items view types:
34+
- table,
35+
- **NEW!** tree
3336
- other functions and features:
3437
- datatable mechanism allows selection of the number of records per page, page transition and sorting,
3538
- management of a child table from the parent table module,
@@ -63,21 +66,40 @@ The record creation / editing form supports the following types of fields:
6366
* Decimal
6467
* Textarea,
6568
* Rich Text Box,
66-
* Select (list from related table),
69+
* Select (hardcoded list or obtained from API),
6770
* Datepicker,
6871
* Timepicker,
6972
* Checkbox,
70-
* Files
73+
* Files,
74+
* **NEW!** Dynamic (user can select field type separately for each record)
7175

72-
## Demo
76+
## Support for mobile devices
7377

74-
- **<a href="http://vue-crud-simple.id-a.pl" target="_blank">Simple CRUD demo</a>**
75-
- **<a href="http://vue-crud-crm.id-a.pl" target="_blank">CRM demo</a>**\
76-
Credentials with limited privileges (readonly):\
77-
78-
Pass: ajSGenC0\
79-
To get full user account, contact me (Szczepan Masny) on my
80-
<a href="http://id-a.pl" target="_blank">company site</a>.
78+
### App layout on desktop...
79+
<img
80+
width="auto"
81+
height="400"
82+
src="https://user-images.githubusercontent.com/18534115/68077595-9fed6d00-fdc6-11e9-9e52-37dad9bb4bc1.png"
83+
alt="app layout on desktop"
84+
/>
85+
86+
### ... and on mobile device
87+
<img
88+
width="auto"
89+
height="400"
90+
src="https://user-images.githubusercontent.com/18534115/68077552-3ff6c680-fdc6-11e9-9b8c-3e92dce596c5.png"
91+
alt="app layout on mobile device"
92+
/>
93+
94+
## Demo versions
95+
96+
#### <a href="http://vue-crud-demo.id-a.pl" target="_blank">DEMO / SANDBOX</a>
97+
98+
#### <a href="http://vue-crud-crm.id-a.pl" target="_blank">CRM DEMO</a>
99+
Credentials with limited privileges (readonly):\
100+
101+
Pass: ajSGenC0\
102+
To get full user account, contact me on my <a href="http://id-a.pl" target="_blank">company site</a>.
81103

82104
## License
83105
[MIT](https://opensource.org/licenses/MIT)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-crud",
3-
"version": "0.14.2",
3+
"version": "0.15.0",
44
"description": "Vue CRUD",
55
"author": "Szczepan Masny <[email protected]>",
66
"license": "MIT",

0 commit comments

Comments
 (0)