@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 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
@@ -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-ea9ab282.js")
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) => !!val || lang2.value.validations.fieldRequired
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), {
@@ -22,8 +22,8 @@ const lang = {
22
22
  },
23
23
  gender: {
24
24
  gender: "Geslacht",
25
- male: "Man",
26
- female: "Vrouw",
25
+ male: "Mannelijk",
26
+ female: "Vrouwelijk",
27
27
  other: "Anders"
28
28
  },
29
29
  postalCode: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simsustech/quasar-components",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "author": "Stefan van Herwijnen",
5
5
  "description": "High level components for Quasar Framework",
6
6
  "license": "MIT",
@@ -49,7 +49,7 @@
49
49
  </q-input>
50
50
  <q-btn
51
51
  v-if="passwordForgotUrl"
52
- class="q-pt-none"
52
+ class="q-pt-none text-primary"
53
53
  :label="lang.login.forgotPassword"
54
54
  size="sm"
55
55
  flat
@@ -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
- !!val || lang.value.validations.fieldRequired
52
+ val !== void 0 || lang.value.validations.fieldRequired
53
53
  )
54
54
  defineEmits(['update:modelValue'])
55
55
  </script>
@@ -24,8 +24,8 @@ const lang: Language = {
24
24
  },
25
25
  gender: {
26
26
  gender: 'Geslacht',
27
- male: 'Man',
28
- female: 'Vrouw',
27
+ male: 'Mannelijk',
28
+ female: 'Vrouwelijk',
29
29
  other: 'Anders'
30
30
  },
31
31
  postalCode: {