@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 +7 -0
- package/dist/form.js +5 -10
- package/package.json +1 -1
- package/src/ui/form/CronScheduleInput.vue +2 -8
- package/src/ui/form/DateInput.vue +3 -3
package/CHANGELOG.md
CHANGED
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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:
|
|
1084
|
+
style: smallStyle,
|
|
1090
1085
|
"map-options": "",
|
|
1091
1086
|
"emit-value": "",
|
|
1092
1087
|
multiple: ""
|
package/package.json
CHANGED
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
:outlined="false"
|
|
87
87
|
:standout="false"
|
|
88
88
|
:rounded="false"
|
|
89
|
-
:style="
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
241
|
+
'margin-top': '-1.7em',
|
|
242
242
|
'margin-bottom': '-0.5em',
|
|
243
243
|
background: 'transparent',
|
|
244
244
|
border: 0
|