@modeltables/fontawesome-vuetify 3.7.0 → 3.9.0

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 +8 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -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"
@@ -49,17 +49,15 @@ export class ExampleModel {
49
49
 
50
50
  #Documentation
51
51
 
52
- Make a quick look at model table in your database.
52
+ Take a moment to thoughtfully design your model table to best represent your data. Before populating the table, carefully consider the appropriate types and the logical order of your model fields. Well-structured models not only improve clarity but also enhance the user experience.
53
53
 
54
- Before populating table, think about right types and order of models.
54
+ Each column in the table corresponds to a property in your data item model. The table automatically renders rows with suitable input controls based on the field type—currently supporting single input controls, with plans to introduce advanced options like range and multi-select controls in the near future.
55
55
 
56
- Columns are in bond with coresponding dataItem property, based on field type table renders rows with appropriate single input control, in near future with between and multiple controls.
56
+ For optimal usability, ensure your table always contains at least one virtual element at runtime, with filtering enabled to help users quickly find relevant data.
57
57
 
58
- Table should exsist with at least one virtual element at runtime with filter option enabled.
58
+ The table component provides built-in events such as `load` and `search`, each accompanied by filter parameters to streamline data coordination. While data items are being retrieved, the loading state is mandatory to keep users informed. You also have the flexibility to enable CRUD operations and leverage the right tools for managing your data efficiently.
59
59
 
60
- Default events for coordinated items are load and search with accompanying filter parameters.
61
-
62
- Loading is mandatory while data items are retreving with option to use crud operation and right tool.
60
+ By following these guidelines, you can create a modern, user-friendly table that adapts to your application's needs and delivers a seamless experience.
63
61
 
64
62
  License
65
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modeltables/fontawesome-vuetify",
3
- "version": "3.7.0",
3
+ "version": "3.9.0",
4
4
  "description": "",
5
5
  "main": "./components/index.d.ts",
6
6
  "type": "module",