@simsustech/quasar-components 0.1.0 → 0.1.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 +13 -0
- package/dist/QSubmitButton.vue_vue_type_script_setup_true_lang.fe90878f.js +93 -0
- package/dist/authentication.js +1633 -0
- package/dist/flags.js +217 -0
- package/dist/general.js +81 -0
- package/dist/icons.js +23 -0
- package/dist/nl.6b0aedb7.js +89 -0
- package/dist/nl.7787ff31.js +9 -0
- package/dist/nl.b1ad9de9.js +134 -0
- package/dist/style.css +4 -0
- package/dist/types/ui/authentication/ConsentList.vue.d.ts +85 -0
- package/dist/types/ui/authentication/EmailChangeForm.vue.d.ts +147 -0
- package/dist/types/ui/authentication/EmailChangeStepper.vue.d.ts +168 -0
- package/dist/types/ui/authentication/LoginButton.vue.d.ts +69 -0
- package/dist/types/ui/authentication/LoginForm.vue.d.ts +157 -0
- package/dist/types/ui/authentication/OtpInput.vue.d.ts +69 -0
- package/dist/types/ui/authentication/PasswordChangeForm.vue.d.ts +187 -0
- package/dist/types/ui/authentication/PasswordChangeStepper.vue.d.ts +168 -0
- package/dist/types/ui/authentication/RegisterForm.vue.d.ts +230 -0
- package/dist/types/ui/authentication/RequestOtpForm.vue.d.ts +132 -0
- package/dist/types/ui/authentication/UserMenuButton.vue.d.ts +82 -0
- package/dist/types/ui/authentication/VerificationSlider.vue.d.ts +77 -0
- package/dist/types/ui/authentication/index.d.ts +12 -0
- package/dist/types/ui/authentication/lang/en-US.d.ts +3 -0
- package/dist/types/ui/authentication/lang/index.d.ts +176 -0
- package/dist/types/ui/authentication/lang/nl.d.ts +3 -0
- package/dist/types/ui/flags/index.d.ts +3 -0
- package/dist/types/ui/flags/lang/en-US.d.ts +3 -0
- package/dist/types/ui/flags/lang/index.d.ts +266 -0
- package/dist/types/ui/flags/lang/nl.d.ts +3 -0
- package/dist/types/ui/general/QStyledCard.vue.d.ts +74 -0
- package/dist/types/ui/general/QStyledLayout.vue.d.ts +69 -0
- package/dist/types/ui/general/QSubmitButton.vue.d.ts +138 -0
- package/dist/types/ui/general/index.d.ts +2 -0
- package/dist/types/ui/general/lang/en-US.d.ts +3 -0
- package/dist/types/ui/general/lang/index.d.ts +16 -0
- package/dist/types/ui/general/lang/nl.d.ts +3 -0
- package/dist/types/ui/icons/icons.d.ts +6 -0
- package/dist/types/ui/icons/index.d.ts +2 -0
- package/dist/types/ui/index.d.ts +2 -0
- package/dist/types/vite-plugin.d.ts +2 -0
- package/dist/vite-plugin.d.ts +2 -0
- package/dist/vite-plugin.js +66 -0
- package/package.json +2 -2
- package/src/ui/authentication/EmailChangeForm.vue +2 -2
- package/src/ui/authentication/LoginForm.vue +2 -2
- package/src/ui/authentication/RegisterForm.vue +2 -2
- package/src/ui/authentication/RequestOtpForm.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simsustech/quasar-components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"author": "Stefan van Herwijnen",
|
|
5
5
|
"description": "High level components for Quasar Framework",
|
|
6
6
|
"license": "MIT",
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
"lint:fix": "eslint --ext .vue --ext .ts src --fix",
|
|
77
77
|
"format:check": "prettier --check .",
|
|
78
78
|
"format:write": "prettier --write .",
|
|
79
|
-
"test": "echo \"Error: no test specified\" && exit
|
|
79
|
+
"test": "echo \"Error: no test specified\" && exit 0"
|
|
80
80
|
}
|
|
81
81
|
}
|
|
@@ -106,8 +106,8 @@ const submit: InstanceType<typeof QSubmitButton>['$props']['onSubmit'] = (
|
|
|
106
106
|
formRef.value?.validate().then((success) => {
|
|
107
107
|
if (success) {
|
|
108
108
|
emit('submit', {
|
|
109
|
-
email: email.value,
|
|
110
|
-
newEmail: newEmail.value,
|
|
109
|
+
email: email.value.trim(),
|
|
110
|
+
newEmail: newEmail.value.trim(),
|
|
111
111
|
otp: otp.value,
|
|
112
112
|
done: evt.done
|
|
113
113
|
})
|
|
@@ -137,9 +137,9 @@ const submit: InstanceType<typeof QSubmitButton>['$props']['onSubmit'] = (
|
|
|
137
137
|
formRef.value?.validate().then((success) => {
|
|
138
138
|
if (success) {
|
|
139
139
|
emit('submit', {
|
|
140
|
-
email: email.value,
|
|
140
|
+
email: email.value.trim(),
|
|
141
141
|
password: password.value,
|
|
142
|
-
username: username.value,
|
|
142
|
+
username: username.value.trim(),
|
|
143
143
|
done: evt.done
|
|
144
144
|
})
|
|
145
145
|
} else evt.done()
|
|
@@ -191,9 +191,9 @@ const submit: InstanceType<typeof QSubmitButton>['$props']['onSubmit'] = (
|
|
|
191
191
|
formRef.value?.validate().then((success) => {
|
|
192
192
|
if (success) {
|
|
193
193
|
emit('submit', {
|
|
194
|
-
email: email.value,
|
|
194
|
+
email: email.value.trim(),
|
|
195
195
|
password: password.value,
|
|
196
|
-
username: username.value,
|
|
196
|
+
username: username.value.trim(),
|
|
197
197
|
extraFields: extraFieldValues.value,
|
|
198
198
|
done: evt.done
|
|
199
199
|
})
|