@simsustech/quasar-components 0.11.17 → 0.11.18
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/CHANGELOG.md +6 -0
- package/dist/md3.js +3 -7
- package/package.json +8 -8
- package/src/ui/md3/Md3Layout.vue +1 -3
package/CHANGELOG.md
CHANGED
package/dist/md3.js
CHANGED
|
@@ -184,8 +184,8 @@ function onClickOutside(target, handler, options = {}) {
|
|
|
184
184
|
if (isIOS && !_iOSWorkaround) {
|
|
185
185
|
_iOSWorkaround = true;
|
|
186
186
|
const listenerOptions = { passive: true };
|
|
187
|
-
Array.from(window2.document.body.children).forEach((el) =>
|
|
188
|
-
|
|
187
|
+
Array.from(window2.document.body.children).forEach((el) => el.addEventListener("click", noop, listenerOptions));
|
|
188
|
+
window2.document.documentElement.addEventListener("click", noop, listenerOptions);
|
|
189
189
|
}
|
|
190
190
|
let shouldListen = true;
|
|
191
191
|
const shouldIgnore = (event) => {
|
|
@@ -268,7 +268,7 @@ function onClickOutside(target, handler, options = {}) {
|
|
|
268
268
|
}
|
|
269
269
|
const _hoisted_1 = {
|
|
270
270
|
id: "fabs",
|
|
271
|
-
class: "q-mb-md"
|
|
271
|
+
class: "q-mb-md min-h-56px"
|
|
272
272
|
};
|
|
273
273
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
274
274
|
__name: "Md3Layout",
|
|
@@ -384,10 +384,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
384
384
|
createElementVNode("div", _hoisted_1, [
|
|
385
385
|
renderSlot(_ctx.$slots, "fabs", { showSticky: false })
|
|
386
386
|
]),
|
|
387
|
-
_cache[3] || (_cache[3] = createElementVNode("div", {
|
|
388
|
-
id: "spacing",
|
|
389
|
-
class: "gt-md min-h-32px"
|
|
390
|
-
}, null, -1)),
|
|
391
387
|
renderSlot(_ctx.$slots, "drawer-mini-navigation")
|
|
392
388
|
], 2)
|
|
393
389
|
]),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simsustech/quasar-components",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.18",
|
|
4
4
|
"author": "Stefan van Herwijnen",
|
|
5
5
|
"description": "High level components for Quasar Framework",
|
|
6
6
|
"license": "MIT",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"bugs": "https://github.com/simsusech/quasar-components/issues",
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@vueuse/core": "^13.
|
|
54
|
+
"@vueuse/core": "^13.2.0",
|
|
55
55
|
"validator": "^13.15.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
@@ -59,14 +59,14 @@
|
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@iconify-json/flagpack": "^1.2.2",
|
|
62
|
-
"@types/node": "^22.15.
|
|
63
|
-
"@types/validator": "^13.15.
|
|
62
|
+
"@types/node": "^22.15.21",
|
|
63
|
+
"@types/validator": "^13.15.1",
|
|
64
64
|
"@types/ws": "^8.18.1",
|
|
65
65
|
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
66
66
|
"@typescript-eslint/parser": "^8.32.1",
|
|
67
67
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
68
|
-
"@vue/server-renderer": "^3.5.
|
|
69
|
-
"eslint": "^9.
|
|
68
|
+
"@vue/server-renderer": "^3.5.14",
|
|
69
|
+
"eslint": "^9.27.0",
|
|
70
70
|
"eslint-config-prettier": "^10.1.5",
|
|
71
71
|
"eslint-plugin-prettier": "^5.4.0",
|
|
72
72
|
"eslint-plugin-prettier-vue": "^5.0.0",
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
"rimraf": "^6.0.1",
|
|
79
79
|
"typescript": "5.8.3",
|
|
80
80
|
"typescript-eslint": "^8.32.1",
|
|
81
|
-
"unplugin-vue-components": "^28.
|
|
81
|
+
"unplugin-vue-components": "^28.7.0",
|
|
82
82
|
"vite": "^6.3.5",
|
|
83
|
-
"vue": "^3.5.
|
|
83
|
+
"vue": "^3.5.14",
|
|
84
84
|
"vue-eslint-parser": "^10.1.3",
|
|
85
85
|
"vue-router": "^4.5.1",
|
|
86
86
|
"vue-tsc": "^2.2.10"
|
package/src/ui/md3/Md3Layout.vue
CHANGED
|
@@ -47,12 +47,10 @@
|
|
|
47
47
|
@click="toggleLeftDrawer()"
|
|
48
48
|
>
|
|
49
49
|
</q-btn>
|
|
50
|
-
<div id="fabs" class="q-mb-md">
|
|
50
|
+
<div id="fabs" class="q-mb-md min-h-56px">
|
|
51
51
|
<slot name="fabs" :show-sticky="false" />
|
|
52
52
|
</div>
|
|
53
53
|
|
|
54
|
-
<div id="spacing" class="gt-md min-h-32px" />
|
|
55
|
-
|
|
56
54
|
<slot name="drawer-mini-navigation" />
|
|
57
55
|
</div>
|
|
58
56
|
</template>
|