@simsustech/quasar-components 0.11.16 → 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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @simsustech/quasar-components
2
2
 
3
+ ## 0.11.18
4
+
5
+ ### Patch Changes
6
+
7
+ - 4012069: fix(components): fix Md3Layout fab button slot min height
8
+
9
+ ## 0.11.17
10
+
11
+ ### Patch Changes
12
+
13
+ - c4a67e8: fix(components): fix DateInput margins
14
+ - f10af4e: fix(components): fix CronScheduleInput margins
15
+
3
16
  ## 0.11.16
4
17
 
5
18
  ### Patch Changes
package/dist/form.js CHANGED
@@ -370,7 +370,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
370
370
  placeholder: lang.value.datePicker.YYYY,
371
371
  style: {
372
372
  "max-width": format.value === "YYYY-MM-DD" ? "8ch" : "7ch",
373
- "margin-top": "-1.75em",
373
+ "margin-top": "-1.7em",
374
374
  "margin-bottom": "-0.5em",
375
375
  background: "transparent",
376
376
  border: 0
@@ -386,7 +386,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
386
386
  placeholder: lang.value.datePicker.MM,
387
387
  style: {
388
388
  "max-width": "7ch",
389
- "margin-top": "-1.75em",
389
+ "margin-top": "-1.7em",
390
390
  "margin-bottom": "-0.5em",
391
391
  background: "transparent",
392
392
  border: 0
@@ -402,7 +402,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
402
402
  placeholder: lang.value.datePicker.DD,
403
403
  style: {
404
404
  "max-width": format.value === "DD-MM-YYYY" ? "7ch" : "4ch",
405
- "margin-top": "-1.75em",
405
+ "margin-top": "-1.7em",
406
406
  "margin-bottom": "-0.5em",
407
407
  background: "transparent",
408
408
  border: 0
@@ -971,12 +971,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
971
971
  }
972
972
  }
973
973
  const smallStyle = {
974
- "margin-top": "-1.75em",
975
- "margin-bottom": "-0.5em",
976
- background: "transparent",
977
- border: 0
978
- };
979
- const largeStyle = {
974
+ "margin-top": "-1.7em",
980
975
  "margin-bottom": "-0.5em",
981
976
  background: "transparent",
982
977
  border: 0
@@ -1086,7 +1081,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1086
1081
  outlined: false,
1087
1082
  standout: false,
1088
1083
  rounded: false,
1089
- style: largeStyle,
1084
+ style: smallStyle,
1090
1085
  "map-options": "",
1091
1086
  "emit-value": "",
1092
1087
  multiple: ""
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) => useEventListener(el, "click", noop, listenerOptions));
188
- useEventListener(window2.document.documentElement, "click", noop, listenerOptions);
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.16",
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.1.0",
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.17",
63
- "@types/validator": "^13.15.0",
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.13",
69
- "eslint": "^9.26.0",
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.5.0",
81
+ "unplugin-vue-components": "^28.7.0",
82
82
  "vite": "^6.3.5",
83
- "vue": "^3.5.13",
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"
@@ -86,7 +86,7 @@
86
86
  :outlined="false"
87
87
  :standout="false"
88
88
  :rounded="false"
89
- :style="largeStyle"
89
+ :style="smallStyle"
90
90
  map-options
91
91
  emit-value
92
92
  multiple
@@ -214,13 +214,7 @@ function setInternalCron(cronString: string) {
214
214
  }
215
215
 
216
216
  const smallStyle = {
217
- 'margin-top': '-1.75em',
218
- 'margin-bottom': '-0.5em',
219
- background: 'transparent',
220
- border: 0
221
- }
222
-
223
- const largeStyle = {
217
+ 'margin-top': '-1.7em',
224
218
  'margin-bottom': '-0.5em',
225
219
  background: 'transparent',
226
220
  border: 0
@@ -206,7 +206,7 @@ const dateProps = computed<Record<string, QInputProps>>(() => ({
206
206
  placeholder: lang.value.datePicker.YYYY,
207
207
  style: {
208
208
  'max-width': format.value === 'YYYY-MM-DD' ? '8ch' : '7ch',
209
- 'margin-top': '-1.75em',
209
+ 'margin-top': '-1.7em',
210
210
  'margin-bottom': '-0.5em',
211
211
  background: 'transparent',
212
212
  border: 0
@@ -222,7 +222,7 @@ const dateProps = computed<Record<string, QInputProps>>(() => ({
222
222
  placeholder: lang.value.datePicker.MM,
223
223
  style: {
224
224
  'max-width': '7ch',
225
- 'margin-top': '-1.75em',
225
+ 'margin-top': '-1.7em',
226
226
  'margin-bottom': '-0.5em',
227
227
  background: 'transparent',
228
228
  border: 0
@@ -238,7 +238,7 @@ const dateProps = computed<Record<string, QInputProps>>(() => ({
238
238
  placeholder: lang.value.datePicker.DD,
239
239
  style: {
240
240
  'max-width': format.value === 'DD-MM-YYYY' ? '7ch' : '4ch',
241
- 'margin-top': '-1.75em',
241
+ 'margin-top': '-1.7em',
242
242
  'margin-bottom': '-0.5em',
243
243
  background: 'transparent',
244
244
  border: 0
@@ -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>