@simsustech/quasar-components 0.11.16 → 0.11.17

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,12 @@
1
1
  # @simsustech/quasar-components
2
2
 
3
+ ## 0.11.17
4
+
5
+ ### Patch Changes
6
+
7
+ - c4a67e8: fix(components): fix DateInput margins
8
+ - f10af4e: fix(components): fix CronScheduleInput margins
9
+
3
10
  ## 0.11.16
4
11
 
5
12
  ### 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simsustech/quasar-components",
3
- "version": "0.11.16",
3
+ "version": "0.11.17",
4
4
  "author": "Stefan van Herwijnen",
5
5
  "description": "High level components for Quasar Framework",
6
6
  "license": "MIT",
@@ -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