@simsustech/quasar-components 0.1.0 → 0.1.1

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,12 @@
1
1
  # @simsustech/quasar-components
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 42ecef6: Trim email and username fields
8
+ - 5e00c31: Ignore test in components package.json
9
+
3
10
  ## 0.1.0
4
11
 
5
12
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simsustech/quasar-components",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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 1"
79
+ "test": "echo \"Error: no test specified\" && exit 0"
80
80
  }
81
81
  }
@@ -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
  })