@simsustech/quasar-components 0.3.0 → 0.3.2
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 +12 -0
- package/dist/authentication.js +1 -1
- package/dist/form.js +2 -2
- package/dist/{nl-ea9ab282.js → nl-a44ac91a.js} +2 -2
- package/package.json +1 -1
- package/src/ui/authentication/LoginForm.vue +1 -1
- package/src/ui/form/BooleanSelect.vue +1 -1
- package/src/ui/form/lang/nl.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @simsustech/quasar-components
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cb84832: fix(components): LoginComponent: set text color of password forgot and create account buttons to primary
|
|
8
|
+
|
|
9
|
+
## 0.3.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6d98116: fix: fix BooleanSelect input validation
|
|
14
|
+
|
|
3
15
|
## 0.3.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/authentication.js
CHANGED
|
@@ -1104,7 +1104,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
1104
1104
|
}, 16, ["modelValue", "type", "label", "rules"]),
|
|
1105
1105
|
__props.passwordForgotUrl ? (openBlock(), createBlock(_component_q_btn, {
|
|
1106
1106
|
key: 2,
|
|
1107
|
-
class: "q-pt-none",
|
|
1107
|
+
class: "q-pt-none text-primary",
|
|
1108
1108
|
label: unref(lang2).login.forgotPassword,
|
|
1109
1109
|
size: "sm",
|
|
1110
1110
|
flat: "",
|
package/dist/form.js
CHANGED
|
@@ -42,7 +42,7 @@ const enUS = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty
|
|
|
42
42
|
const lang = ref(lang$1);
|
|
43
43
|
const locales = /* @__PURE__ */ Object.assign({
|
|
44
44
|
"./en-US.ts": () => Promise.resolve().then(() => enUS),
|
|
45
|
-
"./nl.ts": () => import("./nl-
|
|
45
|
+
"./nl.ts": () => import("./nl-a44ac91a.js")
|
|
46
46
|
});
|
|
47
47
|
const useLang = () => {
|
|
48
48
|
return lang;
|
|
@@ -430,7 +430,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
430
430
|
const validations = ref([]);
|
|
431
431
|
if (props.required)
|
|
432
432
|
validations.value.push(
|
|
433
|
-
(val) =>
|
|
433
|
+
(val) => val !== void 0 || lang2.value.validations.fieldRequired
|
|
434
434
|
);
|
|
435
435
|
return (_ctx, _cache) => {
|
|
436
436
|
return openBlock(), createBlock(unref(QSelect), mergeProps(unref(attrs), {
|
package/package.json
CHANGED
|
@@ -49,7 +49,7 @@ const validations = ref<ValidationRule[]>([])
|
|
|
49
49
|
if (props.required)
|
|
50
50
|
validations.value.push(
|
|
51
51
|
(val: { label: string; value: string }) =>
|
|
52
|
-
|
|
52
|
+
val !== void 0 || lang.value.validations.fieldRequired
|
|
53
53
|
)
|
|
54
54
|
defineEmits(['update:modelValue'])
|
|
55
55
|
</script>
|