@simsustech/quasar-components 0.11.23 → 0.11.25
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 +13 -0
- package/dist/{LocaleSelect.vue_vue_type_script_setup_true_lang-CMvTDKR3.js → LocaleSelect.vue_vue_type_script_setup_true_lang-DFwcmPnu.js} +7 -4
- package/dist/{QSubmitButton.vue_vue_type_script_setup_true_lang-UtpXkOh7.js → QSubmitButton.vue_vue_type_script_setup_true_lang-D-I0Gws4.js} +3 -3
- package/dist/authentication.js +95 -110
- package/dist/form.js +76 -87
- package/dist/general.js +23 -31
- package/dist/md3.js +87 -137
- package/dist/types/ui/authentication/AccountsTable.vue.d.ts +22 -17
- package/dist/types/ui/authentication/ConsentList.vue.d.ts +3 -2
- package/dist/types/ui/authentication/EmailChangeForm.vue.d.ts +3 -2
- package/dist/types/ui/authentication/EmailChangeStepper.vue.d.ts +3 -2
- package/dist/types/ui/authentication/LoginButton.vue.d.ts +3 -2
- package/dist/types/ui/authentication/LoginForm.vue.d.ts +3 -2
- package/dist/types/ui/authentication/LogoutButton.vue.d.ts +3 -2
- package/dist/types/ui/authentication/LogoutForm.vue.d.ts +3 -2
- package/dist/types/ui/authentication/OtpInput.vue.d.ts +2 -1
- package/dist/types/ui/authentication/PasswordChangeForm.vue.d.ts +3 -2
- package/dist/types/ui/authentication/PasswordChangeStepper.vue.d.ts +3 -2
- package/dist/types/ui/authentication/RegisterForm.vue.d.ts +3 -2
- package/dist/types/ui/authentication/RequestOtpForm.vue.d.ts +3 -2
- package/dist/types/ui/authentication/UserMenuButton.vue.d.ts +3 -2
- package/dist/types/ui/authentication/VerificationSlider.vue.d.ts +3 -2
- package/dist/types/ui/form/BooleanItem.vue.d.ts +2 -1
- package/dist/types/ui/form/BooleanSelect.vue.d.ts +2 -1
- package/dist/types/ui/form/CronScheduleInput.vue.d.ts +2 -1
- package/dist/types/ui/form/CurrencySelect.vue.d.ts +2 -1
- package/dist/types/ui/form/DateInput.vue.d.ts +5 -4
- package/dist/types/ui/form/DatePicker.vue.d.ts +2 -1
- package/dist/types/ui/form/EmailInput.vue.d.ts +3 -2
- package/dist/types/ui/form/FilteredModelSelect.vue.d.ts +19 -15
- package/dist/types/ui/form/FormInput.vue.d.ts +5 -4
- package/dist/types/ui/form/FormItem.vue.d.ts +6 -5
- package/dist/types/ui/form/GenderItem.vue.d.ts +2 -1
- package/dist/types/ui/form/GenderSelect.vue.d.ts +2 -1
- package/dist/types/ui/form/LocaleSelect.vue.d.ts +6 -1
- package/dist/types/ui/form/PostalCodeInput.vue.d.ts +2 -1
- package/dist/types/ui/form/TelephoneNumberInput.vue.d.ts +2 -1
- package/dist/types/ui/general/QDrawerList.vue.d.ts +5 -4
- package/dist/types/ui/general/QLanguageSelect.vue.d.ts +6 -1
- package/dist/types/ui/general/QStyledCard.vue.d.ts +3 -2
- package/dist/types/ui/general/QStyledLayout.vue.d.ts +3 -2
- package/dist/types/ui/general/QSubmitButton.vue.d.ts +3 -2
- package/dist/types/ui/general/ResourcePage.vue.d.ts +3 -2
- package/dist/types/ui/general/ResponsiveDialog.vue.d.ts +3 -2
- package/dist/types/ui/md3/Md3Layout.vue.d.ts +11 -10
- package/dist/types/ui/md3/NavigationRailFabs.vue.d.ts +2 -1
- package/dist/vite-plugin.js +2 -1
- package/package.json +28 -28
- package/src/ui/form/LocaleSelect.vue +2 -0
- package/src/ui/general/QLanguageSelect.vue +3 -1
- package/src/vite-plugin.ts +2 -1
package/dist/form.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineComponent, useAttrs, withAsyncContext, watch, ref,
|
|
1
|
+
import { defineComponent, useAttrs, withAsyncContext, watch, ref, openBlock, createBlock, unref, mergeProps, normalizeProps, guardReactiveProps, withCtx, createVNode, createTextVNode, toDisplayString, toRefs, computed, useSlots, renderSlot, createCommentVNode, createSlots, renderList, resolveDirective, createElementVNode, withDirectives, createElementBlock, Fragment, resolveDynamicComponent } from "vue";
|
|
2
2
|
import { useQuasar, QSelect, QItem, QItemSection, QItemLabel, QInput, QField, QIcon, QTooltip, QPopupProxy, QDate, QBtn, QEditor } from "quasar";
|
|
3
|
-
import {
|
|
4
|
-
import { _ } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-
|
|
3
|
+
import { l as loadLang, u as useLang } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-DFwcmPnu.js";
|
|
4
|
+
import { _ } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-DFwcmPnu.js";
|
|
5
5
|
const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
6
6
|
__name: "GenderSelect",
|
|
7
7
|
props: {
|
|
@@ -44,9 +44,9 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
44
44
|
return (_ctx, _cache) => {
|
|
45
45
|
return openBlock(), createBlock(unref(QSelect), mergeProps(unref(attrs), {
|
|
46
46
|
rules: validations.value,
|
|
47
|
-
"model-value":
|
|
47
|
+
"model-value": __props.modelValue,
|
|
48
48
|
options: genderOptions.value,
|
|
49
|
-
label: `${unref(lang).gender.gender}${
|
|
49
|
+
label: `${unref(lang).gender.gender}${__props.required ? "*" : ""}`,
|
|
50
50
|
"emit-value": "",
|
|
51
51
|
"map-options": "",
|
|
52
52
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.$emit("update:modelValue", $event))
|
|
@@ -80,7 +80,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
80
80
|
}),
|
|
81
81
|
createVNode(unref(QItemLabel), null, {
|
|
82
82
|
default: withCtx(() => [
|
|
83
|
-
createTextVNode(toDisplayString(
|
|
83
|
+
createTextVNode(toDisplayString(__props.modelValue ? unref(lang).gender[__props.modelValue] : ""), 1)
|
|
84
84
|
]),
|
|
85
85
|
_: 1
|
|
86
86
|
})
|
|
@@ -132,8 +132,8 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
132
132
|
return openBlock(), createBlock(unref(QInput), mergeProps(unref(attrs), {
|
|
133
133
|
mask: computedMask.value,
|
|
134
134
|
rules: computedValidations.value,
|
|
135
|
-
"model-value":
|
|
136
|
-
label: `${unref(lang).postalCode.postalCode}${
|
|
135
|
+
"model-value": __props.modelValue,
|
|
136
|
+
label: `${unref(lang).postalCode.postalCode}${__props.required ? "*" : ""}`,
|
|
137
137
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.$emit("update:modelValue", $event))
|
|
138
138
|
}), null, 16, ["mask", "rules", "model-value", "label"]);
|
|
139
139
|
};
|
|
@@ -171,13 +171,13 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
171
171
|
default: withCtx(() => [
|
|
172
172
|
createVNode(unref(QItemLabel), { overline: "" }, {
|
|
173
173
|
default: withCtx(() => [
|
|
174
|
-
createTextVNode(toDisplayString(
|
|
174
|
+
createTextVNode(toDisplayString(__props.label ? __props.label : __props.field ? unref(lang).fields[__props.field] : ""), 1)
|
|
175
175
|
]),
|
|
176
176
|
_: 1
|
|
177
177
|
}),
|
|
178
178
|
createVNode(unref(QItemLabel), { class: "break-all" }, {
|
|
179
179
|
default: withCtx(() => [
|
|
180
|
-
createTextVNode(toDisplayString(
|
|
180
|
+
createTextVNode(toDisplayString(__props.modelValue || "-"), 1)
|
|
181
181
|
]),
|
|
182
182
|
_: 1
|
|
183
183
|
})
|
|
@@ -224,8 +224,8 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
224
224
|
return (_ctx, _cache) => {
|
|
225
225
|
return openBlock(), createBlock(unref(QInput), mergeProps(unref(attrs), {
|
|
226
226
|
rules: validations.value,
|
|
227
|
-
"model-value":
|
|
228
|
-
label: `${
|
|
227
|
+
"model-value": __props.modelValue,
|
|
228
|
+
label: `${__props.field ? unref(lang).fields[__props.field] : __props.label ? __props.label : ""}${__props.required ? "*" : ""}`,
|
|
229
229
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.$emit("update:modelValue", $event))
|
|
230
230
|
}), createSlots({ _: 2 }, [
|
|
231
231
|
renderList(_ctx.$slots, (_2, slot) => {
|
|
@@ -259,8 +259,8 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
259
259
|
return (_ctx, _cache) => {
|
|
260
260
|
return openBlock(), createBlock(unref(QInput), mergeProps(unref(attrs), {
|
|
261
261
|
rules: validations.value,
|
|
262
|
-
"model-value":
|
|
263
|
-
label: `${unref(lang).fields.telephoneNumber}${
|
|
262
|
+
"model-value": __props.modelValue,
|
|
263
|
+
label: `${unref(lang).fields.telephoneNumber}${__props.required ? "*" : ""}`,
|
|
264
264
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.$emit("update:modelValue", $event))
|
|
265
265
|
}), null, 16, ["rules", "model-value", "label"]);
|
|
266
266
|
};
|
|
@@ -355,10 +355,9 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
355
355
|
});
|
|
356
356
|
setInternalDate(modelValue.value);
|
|
357
357
|
const goToNextElement = (e) => {
|
|
358
|
-
var _a, _b, _c, _d;
|
|
359
358
|
if (["Minus", "Slash"].includes(e.code)) {
|
|
360
359
|
e.preventDefault();
|
|
361
|
-
const next =
|
|
360
|
+
const next = e.currentTarget.parentElement?.parentElement?.parentElement?.parentElement?.nextElementSibling;
|
|
362
361
|
if (next) {
|
|
363
362
|
next.focus();
|
|
364
363
|
}
|
|
@@ -436,7 +435,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
436
435
|
"model-value": unref(modelValue),
|
|
437
436
|
"bottom-slots": "",
|
|
438
437
|
rules: validations.value,
|
|
439
|
-
label: `${
|
|
438
|
+
label: `${__props.label}${__props.required ? "*" : ""}`,
|
|
440
439
|
"stack-label": "",
|
|
441
440
|
"lazy-rules": ""
|
|
442
441
|
}, createSlots({
|
|
@@ -464,14 +463,14 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
464
463
|
])
|
|
465
464
|
]),
|
|
466
465
|
append: withCtx(() => [
|
|
467
|
-
|
|
466
|
+
__props.clearable ? (openBlock(), createBlock(_component_q_icon, {
|
|
468
467
|
key: 0,
|
|
469
|
-
name:
|
|
468
|
+
name: __props.icons.clear,
|
|
470
469
|
class: "cursor-pointer",
|
|
471
470
|
onClick: _cache[0] || (_cache[0] = ($event) => emit("update:modelValue", null))
|
|
472
471
|
}, null, 8, ["name"])) : createCommentVNode("", true),
|
|
473
472
|
createVNode(_component_q_icon, {
|
|
474
|
-
name:
|
|
473
|
+
name: __props.icons.event,
|
|
475
474
|
class: "cursor-pointer"
|
|
476
475
|
}, {
|
|
477
476
|
default: withCtx(() => [
|
|
@@ -486,28 +485,25 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
486
485
|
"transition-show": "scale",
|
|
487
486
|
"transition-hide": "scale"
|
|
488
487
|
}, {
|
|
489
|
-
default: withCtx(() =>
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
}, null, 8, ["label"]), [
|
|
503
|
-
[_directive_close_popup]
|
|
504
|
-
])
|
|
488
|
+
default: withCtx(() => [
|
|
489
|
+
createVNode(unref(QDate), mergeProps(__props.date, {
|
|
490
|
+
"model-value": unref(modelValue)?.replaceAll("-", "/"),
|
|
491
|
+
"onUpdate:modelValue": setDate
|
|
492
|
+
}), {
|
|
493
|
+
default: withCtx(() => [
|
|
494
|
+
createElementVNode("div", _hoisted_3, [
|
|
495
|
+
withDirectives(createVNode(_component_q_btn, {
|
|
496
|
+
label: unref(lang).buttons.close,
|
|
497
|
+
color: "primary",
|
|
498
|
+
flat: ""
|
|
499
|
+
}, null, 8, ["label"]), [
|
|
500
|
+
[_directive_close_popup]
|
|
505
501
|
])
|
|
506
|
-
])
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
]
|
|
510
|
-
|
|
502
|
+
])
|
|
503
|
+
]),
|
|
504
|
+
_: 1
|
|
505
|
+
}, 16, ["model-value"])
|
|
506
|
+
]),
|
|
511
507
|
_: 1
|
|
512
508
|
})
|
|
513
509
|
]),
|
|
@@ -563,9 +559,9 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
563
559
|
return (_ctx, _cache) => {
|
|
564
560
|
return openBlock(), createBlock(unref(QSelect), mergeProps(unref(attrs), {
|
|
565
561
|
rules: validations.value,
|
|
566
|
-
"model-value":
|
|
562
|
+
"model-value": __props.modelValue,
|
|
567
563
|
options: booleanOptions.value,
|
|
568
|
-
label: `${
|
|
564
|
+
label: `${__props.label}${__props.required ? "*" : ""}`,
|
|
569
565
|
"emit-value": "",
|
|
570
566
|
"map-options": "",
|
|
571
567
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.$emit("update:modelValue", $event))
|
|
@@ -594,13 +590,13 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
594
590
|
default: withCtx(() => [
|
|
595
591
|
createVNode(unref(QItemLabel), { overline: "" }, {
|
|
596
592
|
default: withCtx(() => [
|
|
597
|
-
createTextVNode(toDisplayString(
|
|
593
|
+
createTextVNode(toDisplayString(__props.label), 1)
|
|
598
594
|
]),
|
|
599
595
|
_: 1
|
|
600
596
|
}),
|
|
601
597
|
createVNode(unref(QItemLabel), null, {
|
|
602
598
|
default: withCtx(() => [
|
|
603
|
-
createTextVNode(toDisplayString(
|
|
599
|
+
createTextVNode(toDisplayString(__props.modelValue === null ? "-" : __props.modelValue ? unref(lang).yes : unref(lang).no), 1)
|
|
604
600
|
]),
|
|
605
601
|
_: 1
|
|
606
602
|
})
|
|
@@ -641,12 +637,12 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
641
637
|
createVNode(unref(QInput), {
|
|
642
638
|
outlined: "",
|
|
643
639
|
placeholder: unref(lang).email.subject,
|
|
644
|
-
"model-value":
|
|
640
|
+
"model-value": __props.subject,
|
|
645
641
|
type: "text",
|
|
646
642
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => emit("update:subject", $event))
|
|
647
643
|
}, null, 8, ["placeholder", "model-value"]),
|
|
648
644
|
createVNode(unref(QEditor), {
|
|
649
|
-
"model-value":
|
|
645
|
+
"model-value": __props.body,
|
|
650
646
|
toolbar: [
|
|
651
647
|
["left", "center", "right", "justify"],
|
|
652
648
|
["bold", "italic", "underline", "strike"],
|
|
@@ -676,11 +672,10 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
676
672
|
const lang = useLang();
|
|
677
673
|
const { periods, range, options: parentOptions } = toRefs(props);
|
|
678
674
|
const update = (val) => {
|
|
679
|
-
var _a;
|
|
680
675
|
if (val && typeof val !== "string") {
|
|
681
676
|
const parsedFrom = val.from.replaceAll("/", "-");
|
|
682
677
|
const parsedTo = val.to.replaceAll("/", "-");
|
|
683
|
-
const unavailablePeriods =
|
|
678
|
+
const unavailablePeriods = periods?.value?.filter(
|
|
684
679
|
(period) => period.type === "unavailable"
|
|
685
680
|
);
|
|
686
681
|
if (unavailablePeriods) {
|
|
@@ -697,11 +692,10 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
697
692
|
emit("update:modelValue", val);
|
|
698
693
|
};
|
|
699
694
|
const dateOptions = function(date) {
|
|
700
|
-
var _a;
|
|
701
695
|
let parentResult = true;
|
|
702
|
-
if (parentOptions
|
|
696
|
+
if (parentOptions?.value) parentResult = parentOptions.value(date);
|
|
703
697
|
const parsedDate = date.replaceAll("/", "-");
|
|
704
|
-
const unavailablePeriods =
|
|
698
|
+
const unavailablePeriods = periods?.value?.filter(
|
|
705
699
|
(period) => period.type === "unavailable"
|
|
706
700
|
);
|
|
707
701
|
if (unavailablePeriods) {
|
|
@@ -716,7 +710,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
716
710
|
return (_ctx, _cache) => {
|
|
717
711
|
const _component_q_date = QDate;
|
|
718
712
|
return openBlock(), createBlock(_component_q_date, mergeProps(unref(attrs), {
|
|
719
|
-
"model-value":
|
|
713
|
+
"model-value": __props.modelValue,
|
|
720
714
|
"onUpdate:modelValue": update,
|
|
721
715
|
options: dateOptions,
|
|
722
716
|
range: unref(range)
|
|
@@ -753,9 +747,9 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
753
747
|
return (_ctx, _cache) => {
|
|
754
748
|
return openBlock(), createBlock(unref(QSelect), mergeProps(unref(attrs), {
|
|
755
749
|
rules: validations.value,
|
|
756
|
-
"model-value":
|
|
750
|
+
"model-value": __props.modelValue,
|
|
757
751
|
options: currencyOptions.value,
|
|
758
|
-
label: `${unref(lang).currency.currency}${
|
|
752
|
+
label: `${unref(lang).currency.currency}${__props.required ? "*" : ""}`,
|
|
759
753
|
"emit-value": "",
|
|
760
754
|
"map-options": "",
|
|
761
755
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.$emit("update:modelValue", $event))
|
|
@@ -794,24 +788,20 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
794
788
|
extraFields
|
|
795
789
|
} = toRefs(props);
|
|
796
790
|
const options = computed(() => {
|
|
797
|
-
var _a;
|
|
798
791
|
if (filteredOptions.value.length) {
|
|
799
|
-
return
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
)
|
|
813
|
-
};
|
|
814
|
-
});
|
|
792
|
+
return filteredOptions.value?.map((option) => ({
|
|
793
|
+
label: labelFunction.value ? labelFunction.value(option) : option[labelKey.value],
|
|
794
|
+
value: option[valueKey.value || "id"],
|
|
795
|
+
extraFields: extraFields.value?.reduce(
|
|
796
|
+
(result, key) => {
|
|
797
|
+
if (option.hasOwnProperty(key)) {
|
|
798
|
+
result[key] = option[key];
|
|
799
|
+
}
|
|
800
|
+
return result;
|
|
801
|
+
},
|
|
802
|
+
{}
|
|
803
|
+
)
|
|
804
|
+
}));
|
|
815
805
|
}
|
|
816
806
|
return [];
|
|
817
807
|
});
|
|
@@ -838,8 +828,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
838
828
|
};
|
|
839
829
|
const selectRef = ref();
|
|
840
830
|
watch(modelValue, () => {
|
|
841
|
-
|
|
842
|
-
if (!((_a = options.value) == null ? void 0 : _a.find((val) => val.value === modelValue.value)))
|
|
831
|
+
if (!options.value?.find((val) => val.value === modelValue.value))
|
|
843
832
|
emit("filter", {
|
|
844
833
|
ids: selectedIds.value,
|
|
845
834
|
searchPhrase: "",
|
|
@@ -856,22 +845,22 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
856
845
|
}, unref(attrs), {
|
|
857
846
|
"model-value": unref(modelValue),
|
|
858
847
|
options: options.value,
|
|
859
|
-
label: `${
|
|
860
|
-
hint:
|
|
848
|
+
label: `${__props.label}${__props.required ? "*" : ""}`,
|
|
849
|
+
hint: __props.multiple ? unref(lang).selectMultiple : void 0,
|
|
861
850
|
"emit-value": "",
|
|
862
851
|
"map-options": "",
|
|
863
|
-
"fill-input": !
|
|
852
|
+
"fill-input": !__props.multiple,
|
|
864
853
|
"use-input": !!unref(onFilter),
|
|
865
|
-
"hide-selected": !
|
|
866
|
-
multiple:
|
|
867
|
-
"bottom-slots": !!
|
|
854
|
+
"hide-selected": !__props.multiple && !!unref(onFilter) || Number.isNaN(unref(modelValue)),
|
|
855
|
+
multiple: __props.multiple,
|
|
856
|
+
"bottom-slots": !!__props.hint,
|
|
868
857
|
"input-debounce": "500",
|
|
869
|
-
rules:
|
|
858
|
+
rules: __props.required ? [requiredValidation.value] : [],
|
|
870
859
|
onFilter: filterFn,
|
|
871
860
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.$emit("update:model-value", $event))
|
|
872
861
|
}), createSlots({
|
|
873
862
|
hint: withCtx(() => [
|
|
874
|
-
createTextVNode(toDisplayString(
|
|
863
|
+
createTextVNode(toDisplayString(__props.hint), 1)
|
|
875
864
|
]),
|
|
876
865
|
"no-option": withCtx(() => [
|
|
877
866
|
createVNode(_component_q_item, null, {
|
|
@@ -994,13 +983,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
994
983
|
return openBlock(), createBlock(_component_q_field, {
|
|
995
984
|
"model-value": unref(modelValue),
|
|
996
985
|
rules: validations.value,
|
|
997
|
-
label: `${unref(label)}${
|
|
986
|
+
label: `${unref(label)}${__props.required ? "*" : ""}`,
|
|
998
987
|
"stack-label": "",
|
|
999
988
|
borderless: ""
|
|
1000
989
|
}, {
|
|
1001
990
|
control: withCtx(() => [
|
|
1002
991
|
createElementVNode("div", _hoisted_1, [
|
|
1003
|
-
|
|
992
|
+
__props.showHour ? (openBlock(), createBlock(_component_q_select, {
|
|
1004
993
|
key: 0,
|
|
1005
994
|
modelValue: hour.value,
|
|
1006
995
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => hour.value = $event),
|
|
@@ -1023,7 +1012,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1023
1012
|
]),
|
|
1024
1013
|
_: 1
|
|
1025
1014
|
}, 8, ["modelValue", "options", "hint"])) : createCommentVNode("", true),
|
|
1026
|
-
|
|
1015
|
+
__props.showMinute ? (openBlock(), createBlock(_component_q_select, {
|
|
1027
1016
|
key: 1,
|
|
1028
1017
|
modelValue: minute.value,
|
|
1029
1018
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => minute.value = $event),
|
|
@@ -1092,8 +1081,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1092
1081
|
_: 1
|
|
1093
1082
|
}, 8, ["modelValue", "options", "hint", "placeholder"])
|
|
1094
1083
|
]),
|
|
1095
|
-
|
|
1096
|
-
|
|
1084
|
+
__props.showDayOfWeek ? (openBlock(), createElementBlock("div", _hoisted_2, [
|
|
1085
|
+
__props.showDayOfWeek ? (openBlock(), createBlock(_component_q_select, {
|
|
1097
1086
|
key: 0,
|
|
1098
1087
|
modelValue: dayOfWeek.value,
|
|
1099
1088
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => dayOfWeek.value = $event),
|
package/dist/general.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { l as loadLang, u as useLang, _ as _sfc_main$5 } from "./QSubmitButton.vue_vue_type_script_setup_true_lang-D-I0Gws4.js";
|
|
2
2
|
import { useQuasar, QCard, QCardSection, QCardActions, QDialog, QLayout, QHeader, QToolbar, QBtn, QToolbarTitle, QPageContainer, QPage, QPageSticky, QSpace, QList } from "quasar";
|
|
3
|
-
import { defineComponent, watch, ref,
|
|
4
|
-
import { _ as _sfc_main$6 } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-
|
|
3
|
+
import { defineComponent, watch, ref, openBlock, createBlock, unref, withCtx, renderSlot, createVNode, createElementVNode, normalizeProps, guardReactiveProps, createCommentVNode, toRefs, normalizeClass, createElementBlock } from "vue";
|
|
4
|
+
import { _ as _sfc_main$6 } from "./LocaleSelect.vue_vue_type_script_setup_true_lang-DFwcmPnu.js";
|
|
5
5
|
const _hoisted_1$1 = { class: "text-h6" };
|
|
6
6
|
const _hoisted_2$1 = { class: "text-subtitle2" };
|
|
7
7
|
const __default__$2 = {
|
|
@@ -57,7 +57,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
57
57
|
]),
|
|
58
58
|
_: 3
|
|
59
59
|
}),
|
|
60
|
-
createVNode(_component_q_card_actions, normalizeProps(guardReactiveProps(
|
|
60
|
+
createVNode(_component_q_card_actions, normalizeProps(guardReactiveProps(__props.actions)), {
|
|
61
61
|
default: withCtx(() => [
|
|
62
62
|
renderSlot(_ctx.$slots, "actions")
|
|
63
63
|
]),
|
|
@@ -94,25 +94,15 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
94
94
|
const submit = (evt) => {
|
|
95
95
|
emit("submit", {
|
|
96
96
|
done: (success = true) => {
|
|
97
|
-
var _a;
|
|
98
97
|
evt.done();
|
|
99
|
-
if (success)
|
|
98
|
+
if (success) dialogRef.value?.hide();
|
|
100
99
|
}
|
|
101
100
|
});
|
|
102
101
|
};
|
|
103
102
|
const dialogRef = ref();
|
|
104
|
-
const open = () =>
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
};
|
|
108
|
-
const close = () => {
|
|
109
|
-
var _a;
|
|
110
|
-
return (_a = dialogRef.value) == null ? void 0 : _a.hide();
|
|
111
|
-
};
|
|
112
|
-
const toggle = () => {
|
|
113
|
-
var _a;
|
|
114
|
-
return (_a = dialogRef.value) == null ? void 0 : _a.toggle();
|
|
115
|
-
};
|
|
103
|
+
const open = () => dialogRef.value?.show();
|
|
104
|
+
const close = () => dialogRef.value?.hide();
|
|
105
|
+
const toggle = () => dialogRef.value?.toggle();
|
|
116
106
|
const variables = ref({
|
|
117
107
|
// header: lang.value.some.nested.prop
|
|
118
108
|
});
|
|
@@ -151,7 +141,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
151
141
|
createVNode(_component_q_toolbar, null, {
|
|
152
142
|
default: withCtx(() => [
|
|
153
143
|
createVNode(_component_q_btn, {
|
|
154
|
-
icon:
|
|
144
|
+
icon: __props.icons.close,
|
|
155
145
|
class: "text-light-on-surface dark:text-dark-on-surface",
|
|
156
146
|
flat: "",
|
|
157
147
|
round: "",
|
|
@@ -164,11 +154,11 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
164
154
|
]),
|
|
165
155
|
_: 3
|
|
166
156
|
}),
|
|
167
|
-
!
|
|
157
|
+
!__props.display ? (openBlock(), createBlock(_sfc_main$5, {
|
|
168
158
|
key: 0,
|
|
169
159
|
flat: "",
|
|
170
160
|
class: "text-light-primary dark:text-dark-primary",
|
|
171
|
-
type:
|
|
161
|
+
type: __props.buttonType,
|
|
172
162
|
onSubmit: submit
|
|
173
163
|
}, null, 8, ["type"])) : createCommentVNode("", true)
|
|
174
164
|
]),
|
|
@@ -180,7 +170,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
180
170
|
createVNode(_component_q_page_container, { style: { "margin-bottom": "50px" } }, {
|
|
181
171
|
default: withCtx(() => [
|
|
182
172
|
createVNode(_component_q_page, {
|
|
183
|
-
padding:
|
|
173
|
+
padding: __props.padding,
|
|
184
174
|
class: "q-pb-xl"
|
|
185
175
|
}, {
|
|
186
176
|
default: withCtx(() => [
|
|
@@ -253,7 +243,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
253
243
|
class: normalizeClass(["shadow-2", { "bg-dark": unref($q).dark.isActive, "bg-white": !unref($q).dark.isActive }])
|
|
254
244
|
}, {
|
|
255
245
|
default: withCtx(() => [
|
|
256
|
-
|
|
246
|
+
__props.topBarFab ? (openBlock(), createElementBlock("div", _hoisted_2, [
|
|
257
247
|
renderSlot(_ctx.$slots, "fab"),
|
|
258
248
|
unref(type) === "create" ? (openBlock(), createBlock(_component_q_btn, {
|
|
259
249
|
key: 0,
|
|
@@ -263,7 +253,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
263
253
|
round: "",
|
|
264
254
|
size: "lg",
|
|
265
255
|
dense: "",
|
|
266
|
-
icon:
|
|
256
|
+
icon: __props.icons.add,
|
|
267
257
|
class: "q-mr-sm bg-primary text-white",
|
|
268
258
|
onClick: create
|
|
269
259
|
}, null, 8, ["disable", "icon"])) : unref(type) === "update" ? (openBlock(), createBlock(_component_q_btn, {
|
|
@@ -274,31 +264,31 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
274
264
|
round: "",
|
|
275
265
|
size: "lg",
|
|
276
266
|
dense: "",
|
|
277
|
-
icon:
|
|
267
|
+
icon: __props.icons.edit,
|
|
278
268
|
class: "q-mr-sm bg-primary text-white",
|
|
279
269
|
onClick: update
|
|
280
270
|
}, null, 8, ["disable", "icon"])) : createCommentVNode("", true)
|
|
281
271
|
])) : createCommentVNode("", true),
|
|
282
|
-
createVNode(_component_q_toolbar_title, { shrink:
|
|
272
|
+
createVNode(_component_q_toolbar_title, { shrink: __props.topBarShrink }, {
|
|
283
273
|
default: withCtx(() => [
|
|
284
274
|
renderSlot(_ctx.$slots, "header")
|
|
285
275
|
]),
|
|
286
276
|
_: 3
|
|
287
277
|
}, 8, ["shrink"]),
|
|
288
|
-
!
|
|
278
|
+
!__props.topBarFab ? (openBlock(), createElementBlock("div", _hoisted_3, [
|
|
289
279
|
renderSlot(_ctx.$slots, "top-bar-buttons"),
|
|
290
280
|
unref(type) === "create" ? (openBlock(), createBlock(_component_q_btn, {
|
|
291
281
|
key: 0,
|
|
292
282
|
disable: unref(disabled),
|
|
293
283
|
label: unref(lang).add,
|
|
294
|
-
icon:
|
|
284
|
+
icon: __props.icons.add,
|
|
295
285
|
outline: "",
|
|
296
286
|
onClick: create
|
|
297
287
|
}, null, 8, ["disable", "label", "icon"])) : unref(type) === "update" ? (openBlock(), createBlock(_component_q_btn, {
|
|
298
288
|
key: 1,
|
|
299
289
|
disable: unref(disabled),
|
|
300
290
|
label: unref(lang).edit,
|
|
301
|
-
icon:
|
|
291
|
+
icon: __props.icons.edit,
|
|
302
292
|
outline: "",
|
|
303
293
|
onClick: update
|
|
304
294
|
}, null, 8, ["disable", "label", "icon"])) : createCommentVNode("", true)
|
|
@@ -324,8 +314,10 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
324
314
|
languageImports: {},
|
|
325
315
|
locales: {}
|
|
326
316
|
},
|
|
327
|
-
|
|
317
|
+
emits: ["update:modelValue"],
|
|
318
|
+
setup(__props, { emit: __emit }) {
|
|
328
319
|
const props = __props;
|
|
320
|
+
const emit = __emit;
|
|
329
321
|
const { modelValue, languageImports, locales } = toRefs(props);
|
|
330
322
|
const $q = useQuasar();
|
|
331
323
|
watch(modelValue, (langIso) => {
|
|
@@ -344,7 +336,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
344
336
|
return openBlock(), createBlock(_sfc_main$6, {
|
|
345
337
|
"model-value": unref(modelValue),
|
|
346
338
|
locales: unref(locales),
|
|
347
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = (val) =>
|
|
339
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = (val) => emit("update:modelValue", val))
|
|
348
340
|
}, null, 8, ["model-value", "locales"]);
|
|
349
341
|
};
|
|
350
342
|
}
|