@d-mok/quasar-app-extension-quasar-axe 2.1.76 → 2.1.78

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": "2.1.76",
3
+ "version": "2.1.78",
4
4
  "description": "A Quasar App Extension",
5
5
  "author": "d-mok <49301824+d-mok@users.noreply.github.com>",
6
6
  "license": "MIT",
@@ -16,13 +16,13 @@
16
16
  <script lang="ts" setup>
17
17
  import { ref } from 'vue'
18
18
 
19
- let modelValue = defineModel<string>()
19
+ let modelValue = defineModel<string>({ required: true })
20
20
 
21
21
  const props = defineProps<{
22
22
  autocomplete: string[]
23
23
  }>()
24
24
 
25
- if (!modelValue.value) modelValue.value = undefined
25
+ // if (!modelValue.value) modelValue.value = ''
26
26
 
27
27
  let options = ref<string[]>([])
28
28
 
@@ -20,6 +20,10 @@ export class MySupabaseClient extends SupabaseClient {
20
20
 
21
21
  constructor() {
22
22
  super(SUPABASE_URL, SUPABASE_KEY, {
23
+ db: {
24
+ // @ts-ignore
25
+ schema: process.env.SUPABASE_SCHEMA ?? 'public',
26
+ },
23
27
  auth: {
24
28
  autoRefreshToken: true,
25
29
  persistSession: true,