@modeltables/fontawesome-vuetify 3.9.0 → 4.0.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.
- package/README.md +5 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,21 +46,14 @@ export class ExampleModel {
|
|
|
46
46
|
@search="search($event)"
|
|
47
47
|
@rowClick="rowClick($event)">
|
|
48
48
|
```
|
|
49
|
+
Documentation
|
|
49
50
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
51
|
+
Options data input key are required with optional data.
|
|
52
|
+
The table shows your data and lets you manage it easily. It has built-in `load` and `search` events for quick requests and updates.
|
|
53
|
+
Loading spinner appears while items and pagination changes.
|
|
54
|
+
CRUD features like add, edit, or delete are ready to use.
|
|
61
55
|
|
|
62
56
|
License
|
|
63
|
-
|
|
64
57
|
MIT
|
|
65
58
|
|
|
66
59
|
|