@d-mok/quasar-app-extension-quasar-axe 1.0.3 → 1.0.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-mok/quasar-app-extension-quasar-axe",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A Quasar App Extension",
5
5
  "author": "d-mok <49301824+d-mok@users.noreply.github.com>",
6
6
  "license": "MIT",
@@ -172,12 +172,11 @@ export abstract class BasicTable<T extends R, R extends object> extends Sheet<T>
172
172
  }
173
173
 
174
174
 
175
- static new<Type>(): Type {
176
- return reactive(new (this.constructor as any)())
175
+ reactive(): this {
176
+ return reactive(this) as this
177
177
  }
178
178
 
179
179
 
180
-
181
180
  }
182
181
 
183
182