@modeltables/fontawesome-vuetify 3.1.0 → 3.3.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 +23 -23
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -12,18 +12,18 @@ pnpm add @modeltables/fontawesome-vuetify
12
12
 
13
13
  ```ts
14
14
  export const header: HeaderModel[] = [
15
- {
16
- title: 'Name'
17
- },
18
- {
19
- title: 'Description'
20
- }
15
+ {
16
+ title: 'Name'
17
+ },
18
+ {
19
+ title: 'Description'
20
+ }
21
21
  ];
22
22
 
23
23
  export class ExampleModel {
24
- Id: number = 0;
25
- Name?: string;
26
- Description?: string;
24
+ Id: number = 0;
25
+ Name?: string;
26
+ Description?: string;
27
27
  }
28
28
  ```
29
29
 
@@ -31,20 +31,20 @@ export class ExampleModel {
31
31
 
32
32
  ```ts
33
33
  <Table
34
- v-if="dataItems.length"
35
- :options="{
36
- Key: 'Id',
37
- Active: false,
38
- ShowKey: true
39
- }"
40
- :dataheader="dataheader"
41
- :showFilters="true"
42
- :loading="loading"
43
- :dataItems="dataItems"
44
- :crud="false"
45
- @load="load($event)"
46
- @search="search($event)"
47
- @rowClick="rowClick($event)">
34
+ v-if="dataItems.length"
35
+ :options="{
36
+ Key: 'Id',
37
+ Active: false,
38
+ ShowKey: true
39
+ }"
40
+ :dataheader="dataheader"
41
+ :showFilters="true"
42
+ :loading="loading"
43
+ :dataItems="dataItems"
44
+ :crud="false"
45
+ @load="load($event)"
46
+ @search="search($event)"
47
+ @rowClick="rowClick($event)">
48
48
  ```
49
49
 
50
50
  --Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modeltables/fontawesome-vuetify",
3
- "version": "3.1.0",
3
+ "version": "3.3.0",
4
4
  "description": "",
5
5
  "main": "./components/index.d.ts",
6
6
  "type": "module",