@drax/audit-vue 3.13.0 → 3.14.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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.13.0",
6
+ "version": "3.14.0",
7
7
  "type": "module",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -26,7 +26,7 @@
26
26
  "dependencies": {
27
27
  "@drax/audit-front": "^3.11.0",
28
28
  "@drax/crud-front": "^3.11.0",
29
- "@drax/crud-share": "^3.13.0"
29
+ "@drax/crud-share": "^3.14.0"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "pinia": "^3.0.4",
@@ -51,5 +51,5 @@
51
51
  "vue-tsc": "^3.2.4",
52
52
  "vuetify": "^3.11.8"
53
53
  },
54
- "gitHead": "5f68eefbcb01c876471e387a815fee1040489c2c"
54
+ "gitHead": "cec0f824be0bfff0965d7bc7b95241406c53c04d"
55
55
  }
@@ -246,6 +246,14 @@ class AuditCrud extends EntityCrud implements IEntityCrud {
246
246
  return true
247
247
  }
248
248
 
249
+ get sortBy(){
250
+ return 'createdAt'
251
+ }
252
+
253
+ get sortOrder(): 'desc' | 'asc' {
254
+ return 'desc'
255
+ }
256
+
249
257
 
250
258
  }
251
259