@d-mok/quasar-app-extension-quasar-axe 2.1.57 → 2.1.58
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
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
<q-page
|
|
77
77
|
padding
|
|
78
78
|
class="q-mx-auto q-gutter-md"
|
|
79
|
+
:style="{ 'max-width': globalControl.width + 'px' }"
|
|
79
80
|
>
|
|
80
81
|
<component
|
|
81
82
|
:is="Component"
|
|
@@ -91,7 +92,7 @@
|
|
|
91
92
|
|
|
92
93
|
<script lang="ts" setup>
|
|
93
94
|
import { ref } from 'vue'
|
|
94
|
-
|
|
95
|
+
import { globalControl } from '../../../utils'
|
|
95
96
|
type item = {
|
|
96
97
|
title: string
|
|
97
98
|
caption?: string
|
|
@@ -104,21 +104,6 @@ export class SupbaseBucket extends Map<string, string> {
|
|
|
104
104
|
return file
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
// async downloadMany(
|
|
108
|
-
// paths: string[],
|
|
109
|
-
// filenames: string[],
|
|
110
|
-
// zipName: string = this.bucketName
|
|
111
|
-
// ) {
|
|
112
|
-
// let urls = paths.map($ => this.get($) ?? '')
|
|
113
|
-
// let zip = await zipCreate(Object.fromEntries(filenames.zip(urls)))
|
|
114
|
-
// await zipDownload(zipName, zip)
|
|
115
|
-
// }
|
|
116
|
-
|
|
117
|
-
// async downloadAll(zipName: string = this.bucketName) {
|
|
118
|
-
// let zip = await zipCreate(Object.fromEntries(this))
|
|
119
|
-
// await zipDownload(zipName, zip)
|
|
120
|
-
// }
|
|
121
|
-
|
|
122
107
|
reactive(): this {
|
|
123
108
|
return reactive(this) as this
|
|
124
109
|
}
|