@drax/audit-vue 0.39.0 → 0.39.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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.39.0",
6
+ "version": "0.39.1",
7
7
  "type": "module",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -62,5 +62,5 @@
62
62
  "vue-tsc": "^2.0.11",
63
63
  "vuetify": "^3.7.1"
64
64
  },
65
- "gitHead": "b019c40f954cf60e4ff61c53e27d5bafaea6f16c"
65
+ "gitHead": "f765e15e64c21dca72b8d4a8d2d6279c7fdb32d5"
66
66
  }
@@ -169,13 +169,13 @@ interface IAudit {
169
169
  id: string
170
170
  name: string
171
171
  }
172
- createdAt?: Date
173
- updatedAt?: Date
172
+ createdAt?: string
173
+ updatedAt?: string
174
174
  }
175
175
 
176
176
  const {t} = useI18n()
177
177
 
178
- const props = defineProps<{
178
+ defineProps<{
179
179
  audit: IAudit
180
180
  }>()
181
181