@simsustech/quasar-components 0.2.0 → 0.3.0

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.
Files changed (54) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/{QSubmitButton.vue_vue_type_script_setup_true_lang.65d6ac94.js → QSubmitButton.vue_vue_type_script_setup_true_lang-b5f452c6.js} +5 -2
  3. package/dist/authentication.js +52 -26
  4. package/dist/{en-US.d5751f99.js → en-US-6cc72154.js} +81 -72
  5. package/dist/flags.js +1 -1
  6. package/dist/form.js +75 -24
  7. package/dist/general.js +40 -19
  8. package/dist/icons.js +3 -1
  9. package/dist/nl-38cb2607.js +134 -0
  10. package/dist/{nl.7a710ba4.js → nl-ea9ab282.js} +4 -1
  11. package/dist/types/ui/authentication/ConsentList.vue.d.ts +2 -58
  12. package/dist/types/ui/authentication/EmailChangeForm.vue.d.ts +20 -112
  13. package/dist/types/ui/authentication/EmailChangeStepper.vue.d.ts +13 -131
  14. package/dist/types/ui/authentication/LoginButton.vue.d.ts +9 -54
  15. package/dist/types/ui/authentication/LoginForm.vue.d.ts +20 -118
  16. package/dist/types/ui/authentication/OtpInput.vue.d.ts +4 -56
  17. package/dist/types/ui/authentication/PasswordChangeForm.vue.d.ts +31 -140
  18. package/dist/types/ui/authentication/PasswordChangeStepper.vue.d.ts +13 -131
  19. package/dist/types/ui/authentication/RegisterForm.vue.d.ts +33 -167
  20. package/dist/types/ui/authentication/RequestOtpForm.vue.d.ts +18 -100
  21. package/dist/types/ui/authentication/UserMenuButton.vue.d.ts +11 -64
  22. package/dist/types/ui/authentication/VerificationSlider.vue.d.ts +4 -60
  23. package/dist/types/ui/form/BooleanItem.vue.d.ts +1 -43
  24. package/dist/types/ui/form/BooleanSelect.vue.d.ts +2 -50
  25. package/dist/types/ui/form/DateInput.vue.d.ts +1 -43
  26. package/dist/types/ui/form/EmailInput.vue.d.ts +24 -0
  27. package/dist/types/ui/form/FormInput.vue.d.ts +2 -44
  28. package/dist/types/ui/form/FormItem.vue.d.ts +10 -49
  29. package/dist/types/ui/form/GenderItem.vue.d.ts +1 -43
  30. package/dist/types/ui/form/GenderSelect.vue.d.ts +2 -50
  31. package/dist/types/ui/form/PostalCodeInput.vue.d.ts +2 -50
  32. package/dist/types/ui/form/TelephoneNumberInput.vue.d.ts +2 -50
  33. package/dist/types/ui/form/index.d.ts +1 -0
  34. package/dist/types/ui/form/lang/index.d.ts +8 -2
  35. package/dist/types/ui/general/QLanguageSelect.vue.d.ts +1 -43
  36. package/dist/types/ui/general/QStyledCard.vue.d.ts +13 -58
  37. package/dist/types/ui/general/QStyledLayout.vue.d.ts +9 -54
  38. package/dist/types/ui/general/QSubmitButton.vue.d.ts +23 -128
  39. package/dist/types/ui/general/ResourcePage.vue.d.ts +29 -127
  40. package/dist/types/ui/general/ResponsiveDialog.vue.d.ts +17 -88
  41. package/package.json +23 -23
  42. package/src/ui/authentication/EmailChangeStepper.vue +2 -2
  43. package/src/ui/authentication/PasswordChangeStepper.vue +2 -2
  44. package/src/ui/form/EmailInput.vue +50 -0
  45. package/src/ui/form/FormInput.vue +1 -1
  46. package/src/ui/form/FormItem.vue +1 -1
  47. package/src/ui/form/index.ts +1 -0
  48. package/src/ui/form/lang/en-US.ts +4 -1
  49. package/src/ui/form/lang/index.ts +4 -1
  50. package/src/ui/form/lang/nl.ts +4 -1
  51. package/src/ui/general/ResponsiveDialog.vue +7 -7
  52. package/dist/nl.b1ad9de9.js +0 -134
  53. /package/dist/{nl.7787ff31.js → nl-022c8c63.js} +0 -0
  54. /package/dist/{nl.1df15493.js → nl-710ec15d.js} +0 -0
package/dist/form.js CHANGED
@@ -1,5 +1,5 @@
1
- import { ref, defineComponent, useAttrs, watch, openBlock, createBlock, unref, mergeProps, normalizeProps, guardReactiveProps, withCtx, createVNode, createTextVNode, toDisplayString, computed, useSlots, renderSlot, createCommentVNode, resolveDirective, createElementVNode, withDirectives } from "vue";
2
- import { useQuasar, QSelect, QItem, QItemSection, QItemLabel, QInput, QIcon, QBtn, QDate, QPopupProxy } from "quasar";
1
+ import { ref, defineComponent, useAttrs, watch, openBlock, createBlock, unref, mergeProps, normalizeProps, guardReactiveProps, withCtx, createVNode, createTextVNode, toDisplayString, computed, useSlots, renderSlot, createCommentVNode, resolveDirective, createElementVNode, withDirectives, createElementBlock, Fragment } from "vue";
2
+ import { useQuasar, QSelect, QItem, QItemSection, QItemLabel, QInput, QIcon, QBtn, QDate, QPopupProxy, QEditor } from "quasar";
3
3
  const lang$1 = {
4
4
  isoName: "en-US",
5
5
  yes: "Yes",
@@ -7,10 +7,13 @@ const lang$1 = {
7
7
  buttons: {
8
8
  close: "Close"
9
9
  },
10
+ email: {
11
+ subject: "Subject"
12
+ },
10
13
  fields: {
11
14
  name: "Name",
12
15
  firstName: "First name",
13
- surname: "Surname",
16
+ lastName: "Last name",
14
17
  address: "Address",
15
18
  postalCode: "Postal code",
16
19
  city: "City",
@@ -37,7 +40,10 @@ const enUS = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty
37
40
  default: lang$1
38
41
  }, Symbol.toStringTag, { value: "Module" }));
39
42
  const lang = ref(lang$1);
40
- const locales = /* @__PURE__ */ Object.assign({ "./en-US.ts": () => Promise.resolve().then(() => enUS), "./nl.ts": () => import("./nl.7a710ba4.js") });
43
+ const locales = /* @__PURE__ */ Object.assign({
44
+ "./en-US.ts": () => Promise.resolve().then(() => enUS),
45
+ "./nl.ts": () => import("./nl-ea9ab282.js")
46
+ });
41
47
  const useLang = () => {
42
48
  return lang;
43
49
  };
@@ -51,7 +57,7 @@ const loadLang = async (isoName) => {
51
57
  lang.value = data;
52
58
  }
53
59
  } catch (e) {
54
- if ({ "BASE_URL": "/", "MODE": "production", "DEV": false, "PROD": true }.DEBUG)
60
+ if ({}.DEBUG)
55
61
  console.error(e);
56
62
  throw new Error(
57
63
  `[quasar-components] Failed to load ${isoName} language file.`
@@ -60,7 +66,7 @@ const loadLang = async (isoName) => {
60
66
  loadingLanguage = false;
61
67
  }
62
68
  };
63
- const _sfc_main$8 = /* @__PURE__ */ defineComponent({
69
+ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
64
70
  __name: "GenderSelect",
65
71
  props: {
66
72
  modelValue: null,
@@ -109,7 +115,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
109
115
  };
110
116
  }
111
117
  });
112
- const _sfc_main$7 = /* @__PURE__ */ defineComponent({
118
+ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
113
119
  __name: "GenderItem",
114
120
  props: {
115
121
  modelValue: null
@@ -149,7 +155,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
149
155
  };
150
156
  }
151
157
  });
152
- const _sfc_main$6 = /* @__PURE__ */ defineComponent({
158
+ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
153
159
  __name: "PostalCodeInput",
154
160
  props: {
155
161
  modelValue: null,
@@ -166,7 +172,8 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
166
172
  });
167
173
  const validations = ref({
168
174
  nl: [
169
- (val) => !val || /^[1-9][0-9]{3} ?(?!sa|sd|ss)[a-z]{2}$/i.test(val) || lang2.value.postalCode.validations.invalidPostalCode
175
+ (val) => !val || // Do not check an empty string
176
+ /^[1-9][0-9]{3} ?(?!sa|sd|ss)[a-z]{2}$/i.test(val) || lang2.value.postalCode.validations.invalidPostalCode
170
177
  ]
171
178
  });
172
179
  const computedValidations = computed(() => {
@@ -186,7 +193,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
186
193
  };
187
194
  }
188
195
  });
189
- const _sfc_main$5 = /* @__PURE__ */ defineComponent({
196
+ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
190
197
  __name: "FormItem",
191
198
  props: {
192
199
  modelValue: null,
@@ -247,7 +254,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
247
254
  };
248
255
  }
249
256
  });
250
- const _sfc_main$4 = /* @__PURE__ */ defineComponent({
257
+ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
251
258
  __name: "FormInput",
252
259
  props: {
253
260
  modelValue: null,
@@ -280,7 +287,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
280
287
  };
281
288
  }
282
289
  });
283
- const _sfc_main$3 = /* @__PURE__ */ defineComponent({
290
+ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
284
291
  __name: "TelephoneNumberInput",
285
292
  props: {
286
293
  modelValue: null,
@@ -307,7 +314,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
307
314
  }
308
315
  });
309
316
  const _hoisted_1 = { class: "row items-center justify-end" };
310
- const _sfc_main$2 = /* @__PURE__ */ defineComponent({
317
+ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
311
318
  __name: "DateInput",
312
319
  props: {
313
320
  modelValue: null,
@@ -392,7 +399,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
392
399
  };
393
400
  }
394
401
  });
395
- const _sfc_main$1 = /* @__PURE__ */ defineComponent({
402
+ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
396
403
  __name: "BooleanSelect",
397
404
  props: {
398
405
  modelValue: { type: Boolean },
@@ -438,7 +445,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
438
445
  };
439
446
  }
440
447
  });
441
- const _sfc_main = /* @__PURE__ */ defineComponent({
448
+ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
442
449
  __name: "BooleanItem",
443
450
  props: {
444
451
  modelValue: { type: Boolean },
@@ -479,14 +486,58 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
479
486
  };
480
487
  }
481
488
  });
489
+ const __default__ = {
490
+ name: "EmailInput"
491
+ };
492
+ const _sfc_main = /* @__PURE__ */ defineComponent({
493
+ ...__default__,
494
+ props: {
495
+ subject: null,
496
+ body: null
497
+ },
498
+ emits: ["update:subject", "update:body"],
499
+ setup(__props, { expose, emit }) {
500
+ useAttrs();
501
+ useQuasar();
502
+ const lang2 = useLang();
503
+ const variables = ref({
504
+ // header: lang.value.some.nested.prop
505
+ });
506
+ const functions = ref({
507
+ // submit
508
+ });
509
+ expose({
510
+ variables,
511
+ functions
512
+ });
513
+ return (_ctx, _cache) => {
514
+ const _component_q_input = QInput;
515
+ const _component_q_editor = QEditor;
516
+ return openBlock(), createElementBlock(Fragment, null, [
517
+ createVNode(_component_q_input, {
518
+ outlined: "",
519
+ placeholder: unref(lang2).email.subject,
520
+ "model-value": __props.subject,
521
+ type: "text",
522
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => emit("update:subject", $event))
523
+ }, null, 8, ["placeholder", "model-value"]),
524
+ createVNode(_component_q_editor, {
525
+ "model-value": __props.body,
526
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => emit("update:body", $event))
527
+ }, null, 8, ["model-value"])
528
+ ], 64);
529
+ };
530
+ }
531
+ });
482
532
  export {
483
- _sfc_main as BooleanItem,
484
- _sfc_main$1 as BooleanSelect,
485
- _sfc_main$2 as DateInput,
486
- _sfc_main$4 as FormInput,
487
- _sfc_main$5 as FormItem,
488
- _sfc_main$7 as GenderItem,
489
- _sfc_main$8 as GenderSelect,
490
- _sfc_main$6 as PostalCodeInput,
491
- _sfc_main$3 as TelephoneNumberInput
533
+ _sfc_main$1 as BooleanItem,
534
+ _sfc_main$2 as BooleanSelect,
535
+ _sfc_main$3 as DateInput,
536
+ _sfc_main as EmailInput,
537
+ _sfc_main$5 as FormInput,
538
+ _sfc_main$6 as FormItem,
539
+ _sfc_main$8 as GenderItem,
540
+ _sfc_main$9 as GenderSelect,
541
+ _sfc_main$7 as PostalCodeInput,
542
+ _sfc_main$4 as TelephoneNumberInput
492
543
  };
package/dist/general.js CHANGED
@@ -1,8 +1,7 @@
1
- import { l as loadLang, u as useLang, _ as _sfc_main$4 } from "./QSubmitButton.vue_vue_type_script_setup_true_lang.65d6ac94.js";
2
- import { _ } from "./QSubmitButton.vue_vue_type_script_setup_true_lang.65d6ac94.js";
3
- import { useQuasar, QCard, QCardSection, QCardActions, QBtn, QToolbarTitle, QToolbar, QHeader, QPage, QPageContainer, QLayout, QDialog, QSpace, QPageSticky, QSelect, QItemSection, QItemLabel, QItem } from "quasar";
1
+ import { l as loadLang, u as useLang, _ as _sfc_main$4 } from "./QSubmitButton.vue_vue_type_script_setup_true_lang-b5f452c6.js";
2
+ import { useQuasar, QCard, QCardSection, QCardActions, QDialog, QBtn, QToolbarTitle, QToolbar, QHeader, QPage, QPageContainer, QLayout, QSpace, QPageSticky, QSelect, QItemSection, QItemLabel, QItem } from "quasar";
4
3
  import { defineComponent, watch, ref, openBlock, createBlock, unref, withCtx, renderSlot, createVNode, createElementVNode, normalizeProps, guardReactiveProps, normalizeClass, createCommentVNode, toRefs, useAttrs, computed, mergeProps, createTextVNode, toDisplayString } from "vue";
5
- import { e as enUs, n as nl } from "./en-US.d5751f99.js";
4
+ import { e as enUs, n as nl } from "./en-US-6cc72154.js";
6
5
  const _hoisted_1$1 = { class: "text-h6" };
7
6
  const _hoisted_2 = { class: "text-subtitle2" };
8
7
  const __default__$2 = {
@@ -22,8 +21,12 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
22
21
  loadLang($q.lang.isoName);
23
22
  });
24
23
  const qCardRef = ref();
25
- const variables = ref({});
26
- const functions = ref({});
24
+ const variables = ref({
25
+ // header: lang.value.some.nested.prop
26
+ });
27
+ const functions = ref({
28
+ // submit
29
+ });
27
30
  expose({
28
31
  variables,
29
32
  functions
@@ -86,7 +89,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
86
89
  },
87
90
  emits: ["submit"],
88
91
  setup(__props, { expose, emit }) {
89
- const modelValue = ref(false);
92
+ ref(false);
90
93
  const $q = useQuasar();
91
94
  const lang = useLang();
92
95
  if (lang.value.isoName !== $q.lang.isoName)
@@ -97,16 +100,29 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
97
100
  const submit = (evt) => {
98
101
  emit("submit", {
99
102
  done: (success = true) => {
103
+ var _a;
100
104
  evt.done();
101
105
  if (success)
102
- modelValue.value = false;
106
+ (_a = dialogRef.value) == null ? void 0 : _a.hide();
103
107
  }
104
108
  });
105
109
  };
106
- const open = () => modelValue.value = true;
107
- const close = () => modelValue.value = false;
108
- const toggle = () => modelValue.value = !modelValue.value;
109
- const variables = ref({});
110
+ const dialogRef = ref();
111
+ const open = () => {
112
+ var _a;
113
+ return (_a = dialogRef.value) == null ? void 0 : _a.show();
114
+ };
115
+ const close = () => {
116
+ var _a;
117
+ return (_a = dialogRef.value) == null ? void 0 : _a.hide();
118
+ };
119
+ const toggle = () => {
120
+ var _a;
121
+ return (_a = dialogRef.value) == null ? void 0 : _a.toggle();
122
+ };
123
+ const variables = ref({
124
+ // header: lang.value.some.nested.prop
125
+ });
110
126
  const functions = ref({
111
127
  open,
112
128
  close,
@@ -124,9 +140,9 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
124
140
  const _component_q_page = QPage;
125
141
  const _component_q_page_container = QPageContainer;
126
142
  const _component_q_layout = QLayout;
127
- const _component_q_dialog = QDialog;
128
- return openBlock(), createBlock(_component_q_dialog, {
129
- "model-value": modelValue.value,
143
+ return openBlock(), createBlock(unref(QDialog), {
144
+ ref_key: "dialogRef",
145
+ ref: dialogRef,
130
146
  maximized: unref($q).screen.lt.md
131
147
  }, {
132
148
  default: withCtx(() => [
@@ -181,7 +197,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
181
197
  }, 8, ["class"])
182
198
  ]),
183
199
  _: 3
184
- }, 8, ["model-value", "maximized"]);
200
+ }, 8, ["maximized"]);
185
201
  };
186
202
  }
187
203
  });
@@ -211,8 +227,12 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
211
227
  } : emit("create", { done });
212
228
  const update = (evt) => disabled.value ? () => {
213
229
  } : emit("update", { done });
214
- const variables = ref({});
215
- const functions = ref({});
230
+ const variables = ref({
231
+ // header: lang.value.some.nested.prop
232
+ });
233
+ const functions = ref({
234
+ // submit
235
+ });
216
236
  expose({
217
237
  variables,
218
238
  functions
@@ -322,6 +342,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
322
342
  watch(modelValue, (langIso) => {
323
343
  try {
324
344
  props.languageImports[langIso]().then(
345
+ // langList[`../../../node_modules/quasar/lang/${langIso}.mjs`]().then(
325
346
  (lang) => {
326
347
  $q.lang.set(lang.default);
327
348
  }
@@ -404,7 +425,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
404
425
  export {
405
426
  _sfc_main as QLanguageSelect,
406
427
  QStyledCard,
407
- _ as QSubmitButton,
428
+ _sfc_main$4 as QSubmitButton,
408
429
  _sfc_main$1 as ResourcePage,
409
430
  _sfc_main$2 as ResponsiveDialog
410
431
  };
package/dist/icons.js CHANGED
@@ -10,7 +10,9 @@ const microsoft = {
10
10
  setup(props, context) {
11
11
  useQuasar();
12
12
  const variables = ref(labels["microsoft"]);
13
- const functions = ref({});
13
+ const functions = ref({
14
+ // submit
15
+ });
14
16
  context.expose({
15
17
  variables,
16
18
  functions
@@ -0,0 +1,134 @@
1
+ const lang = {
2
+ isoName: "nl",
3
+ countries: {
4
+ "ar-TN": "العربية (تونس)",
5
+ ar: "العربية",
6
+ "az-Latn": "Azerbaijan",
7
+ bg: "български език",
8
+ bn: "বাংলা",
9
+ ca: "Català",
10
+ cs: "Čeština",
11
+ da: "Denemarken",
12
+ de: "Duitsland",
13
+ el: "ελληνικά",
14
+ "en-GB": "Verenigd koninkrijk",
15
+ "en-US": "Verenigde staten van Amerika",
16
+ eo: "Esperanto",
17
+ es: "Spanje",
18
+ et: "Eesti",
19
+ eu: "Euskara",
20
+ "fa-IR": "فارسی",
21
+ fa: "فارسی",
22
+ fi: "Suomi",
23
+ fr: "Frankrijk",
24
+ gn: "Avañe'ẽ",
25
+ he: "עברית",
26
+ hr: "Hrvatski jezik",
27
+ hu: "Magyar",
28
+ id: "Bahasa Indonesia",
29
+ is: "Íslenska",
30
+ it: "Italië",
31
+ ja: "Japan",
32
+ km: "ខ្មែរ",
33
+ "ko-KR": "한국어",
34
+ "kur-CKB": "کوردی سۆرانی",
35
+ kz: "Қазақша",
36
+ lt: "Lithuanian",
37
+ lu: "Kiluba",
38
+ lv: "Latviešu valoda",
39
+ ml: "മലയാളം",
40
+ mm: "မြန်မာ(ဗမာ)",
41
+ ms: "Bahasa Melayu",
42
+ my: "Malaysia",
43
+ "nb-NO": "Norsk",
44
+ nl: "Nederland",
45
+ pl: "Polen",
46
+ "pt-BR": "Portugal",
47
+ pt: "Portugal",
48
+ ro: "Roemenië",
49
+ ru: "Rusland",
50
+ sk: "Slovenčina",
51
+ sl: "Slovenski Jezik",
52
+ sm: "Fa'asāmoa",
53
+ "sr-CYR": "српски језик",
54
+ sr: "srpski jezik",
55
+ sv: "Zweden",
56
+ ta: "தமிழ்",
57
+ th: "ไทย",
58
+ tr: "Turkijke",
59
+ ug: "ئۇيغۇرچە",
60
+ uk: "Українська",
61
+ "uz-Cyrl": "Ўзбекча (Кирил)",
62
+ "uz-Latn": "O'zbekcha (Lotin)",
63
+ vi: "Vietnam",
64
+ "zh-CN": "中文(简体)",
65
+ "zh-TW": "中文(繁體)"
66
+ },
67
+ languages: {
68
+ "ar-TN": "العربية (تونس)",
69
+ ar: "العربية",
70
+ "az-Latn": "Azerbaijani (latin)",
71
+ bg: "български език",
72
+ bn: "বাংলা",
73
+ ca: "Català",
74
+ cs: "Čeština",
75
+ da: "Dansk",
76
+ de: "Deutsch",
77
+ el: "ελληνικά",
78
+ "en-GB": "English (UK)",
79
+ "en-US": "English (US)",
80
+ eo: "Esperanto",
81
+ es: "Español",
82
+ et: "Eesti",
83
+ eu: "Euskara",
84
+ "fa-IR": "فارسی",
85
+ fa: "فارسی",
86
+ fi: "Suomi",
87
+ fr: "Français",
88
+ gn: "Avañe'ẽ",
89
+ he: "עברית",
90
+ hr: "Hrvatski jezik",
91
+ hu: "Magyar",
92
+ id: "Bahasa Indonesia",
93
+ is: "Íslenska",
94
+ it: "Italiano",
95
+ ja: "日本語 (にほんご)",
96
+ km: "ខ្មែរ",
97
+ "ko-KR": "한국어",
98
+ "kur-CKB": "کوردی سۆرانی",
99
+ kz: "Қазақша",
100
+ lt: "Lithuanian",
101
+ lu: "Kiluba",
102
+ lv: "Latviešu valoda",
103
+ ml: "മലയാളം",
104
+ mm: "မြန်မာ(ဗမာ)",
105
+ ms: "Bahasa Melayu",
106
+ my: "Malaysia",
107
+ "nb-NO": "Norsk",
108
+ nl: "Nederlands",
109
+ pl: "Polski",
110
+ "pt-BR": "Português (BR)",
111
+ pt: "Português",
112
+ ro: "Română",
113
+ ru: "русский",
114
+ sk: "Slovenčina",
115
+ sl: "Slovenski Jezik",
116
+ sm: "Fa'asāmoa",
117
+ "sr-CYR": "српски језик",
118
+ sr: "srpski jezik",
119
+ sv: "Svenska",
120
+ ta: "தமிழ்",
121
+ th: "ไทย",
122
+ tr: "Türkçe",
123
+ ug: "ئۇيغۇرچە",
124
+ uk: "Українська",
125
+ "uz-Cyrl": "Ўзбекча (Кирил)",
126
+ "uz-Latn": "O'zbekcha (Lotin)",
127
+ vi: "Tiếng Việt",
128
+ "zh-CN": "中文(简体)",
129
+ "zh-TW": "中文(繁體)"
130
+ }
131
+ };
132
+ export {
133
+ lang as default
134
+ };
@@ -5,10 +5,13 @@ const lang = {
5
5
  buttons: {
6
6
  close: "Sluiten"
7
7
  },
8
+ email: {
9
+ subject: "Onderwerp"
10
+ },
8
11
  fields: {
9
12
  name: "Naam",
10
13
  firstName: "Voornaam",
11
- surname: "Achternaam",
14
+ lastName: "Achternaam",
12
15
  address: "Adres",
13
16
  postalCode: "Postcode",
14
17
  city: "Woonplaats",
@@ -9,70 +9,14 @@ export interface Props {
9
9
  name: string;
10
10
  }[];
11
11
  }
12
- declare const _default: {
13
- new (...args: any[]): {
14
- $: import("vue").ComponentInternalInstance;
15
- $data: {};
16
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
17
- $attrs: {
18
- [x: string]: unknown;
19
- };
20
- $refs: {
21
- [x: string]: unknown;
22
- };
23
- $slots: Readonly<{
24
- [name: string]: import("vue").Slot | undefined;
25
- }>;
26
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
27
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
28
- $emit: (event: string, ...args: any[]) => void;
29
- $el: any;
30
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {
31
- variables: import("vue").Ref<{
32
- message: (name: string) => string;
33
- allow: string;
34
- deny: string;
35
- }>;
36
- functions: import("vue").Ref<{}>;
37
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
38
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
39
- created?: ((() => void) | (() => void)[]) | undefined;
40
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
41
- mounted?: ((() => void) | (() => void)[]) | undefined;
42
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
43
- updated?: ((() => void) | (() => void)[]) | undefined;
44
- activated?: ((() => void) | (() => void)[]) | undefined;
45
- deactivated?: ((() => void) | (() => void)[]) | undefined;
46
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
47
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
48
- destroyed?: ((() => void) | (() => void)[]) | undefined;
49
- unmounted?: ((() => void) | (() => void)[]) | undefined;
50
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
51
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
52
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
53
- };
54
- $forceUpdate: () => void;
55
- $nextTick: typeof import("vue").nextTick;
56
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
57
- } & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & import("vue").ShallowUnwrapRef<{
58
- variables: import("vue").Ref<{
59
- message: (name: string) => string;
60
- allow: string;
61
- deny: string;
62
- }>;
63
- functions: import("vue").Ref<{}>;
64
- }> & {} & import("vue").ComponentCustomProperties & {};
65
- __isFragment?: undefined;
66
- __isTeleport?: undefined;
67
- __isSuspense?: undefined;
68
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {
12
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
69
13
  variables: import("vue").Ref<{
70
14
  message: (name: string) => string;
71
15
  allow: string;
72
16
  deny: string;
73
17
  }>;
74
18
  functions: import("vue").Ref<{}>;
75
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
19
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}>;
76
20
  export default _default;
77
21
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
78
22
  type __VLS_TypePropsToRuntimeProps<T> = {