@modeltables/fontawesome-vuetify 4.3.0 → 4.3.1
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 +15 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
@modeltables/fontawesome-vuetify
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
#Install
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
pnpm add @modeltables/fontawesome-vuetify
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
#Quick start
|
|
10
10
|
|
|
11
11
|
1. Create Header and DataItem Model
|
|
12
12
|
|
|
@@ -33,9 +33,9 @@ export class ExampleModel {
|
|
|
33
33
|
<Table
|
|
34
34
|
v-if="dataItems.length"
|
|
35
35
|
:options="{
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
Key: 'Id',
|
|
37
|
+
Active: true,
|
|
38
|
+
ShowKey: false
|
|
39
39
|
}"
|
|
40
40
|
:dataheader="dataheader"
|
|
41
41
|
:showFilters="true"
|
|
@@ -47,19 +47,20 @@ export class ExampleModel {
|
|
|
47
47
|
@rowClick="rowClick($event)">
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
You should probably import main component and make a quick look at model table in your database.
|
|
50
|
+
Documentation
|
|
53
51
|
|
|
54
|
-
|
|
55
|
-
Table should exsist with at least one virtual element at runtime with filter option enabled.
|
|
52
|
+
Options data input key are required with optional attributes.
|
|
56
53
|
|
|
57
|
-
|
|
54
|
+
The table shows your data and lets you manage it easily. It has built-in load and search events for quick requests and updates.
|
|
58
55
|
|
|
59
|
-
Loading
|
|
56
|
+
Loading spinner appears while items and pagination changes.
|
|
60
57
|
|
|
61
|
-
|
|
58
|
+
Data items are organized in selections with two main events itemSelection and multiSelection to easy control your items.
|
|
62
59
|
|
|
63
|
-
|
|
60
|
+
Using showFilters are essential with rowClick event when paginationModel mode is on for quick data changes.
|
|
61
|
+
|
|
62
|
+
CRUD features like add, edit, or delete are ready to use.
|
|
63
|
+
|
|
64
|
+
License MIT
|
|
64
65
|
|
|
65
66
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modeltables/fontawesome-vuetify",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./components/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"contributors": [
|
|
32
32
|
"Datamit"
|
|
33
33
|
],
|
|
34
|
-
"license": "
|
|
34
|
+
"license": "MIT",
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@fortawesome/fontawesome-svg-core": "^7.1.0",
|
|
37
37
|
"@fortawesome/free-regular-svg-icons": "^7.1.0",
|