@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.
Files changed (2) hide show
  1. package/README.md +15 -14
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  @modeltables/fontawesome-vuetify
2
2
 
3
- --Install
3
+ #Install
4
4
 
5
5
  ```bash
6
6
  pnpm add @modeltables/fontawesome-vuetify
7
7
  ```
8
8
 
9
- --Quick start
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
- Key: 'Id',
37
- Active: false,
38
- ShowKey: true
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
- --Documentation
51
-
52
- You should probably import main component and make a quick look at model table in your database.
50
+ Documentation
53
51
 
54
- Before populating table, think about right types and order of models.
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
- Default events for coordinated items are load and search with accompanying events for follow table data.
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 is mandatory while data items are retreving with option to use crud operation and right tool.
56
+ Loading spinner appears while items and pagination changes.
60
57
 
61
- License
58
+ Data items are organized in selections with two main events itemSelection and multiSelection to easy control your items.
62
59
 
63
- ISC
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.0",
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": "ISC",
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",