@awes-io/ui 2.42.1 → 2.43.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.
- package/CHANGELOG.md +11 -0
- package/components/3_organisms/AwDate.vue +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.43.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.42.1...@awes-io/ui@2.43.0) (2022-02-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* blocked twofactor auth ([dbef9a3](https://github.com/awes-io/client/commit/dbef9a3d9989d8a33ba276a73c3a32ec184b5e5e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.42.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.42.0...@awes-io/ui@2.42.1) (2022-02-10)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="aw-date" @click="onDateClick">
|
|
3
3
|
<AwInput
|
|
4
|
+
ref="input"
|
|
4
5
|
v-bind="{ ...$attrs, label, id }"
|
|
5
6
|
:value="inputValue"
|
|
6
7
|
:prefix="prefix"
|
|
@@ -192,6 +193,10 @@ export default {
|
|
|
192
193
|
|
|
193
194
|
watch: {
|
|
194
195
|
value(value) {
|
|
196
|
+
if (this.$refs.input && this.$refs.input.hasError) {
|
|
197
|
+
this.$refs.input.setError('')
|
|
198
|
+
}
|
|
199
|
+
|
|
195
200
|
if (value !== null && this.isOpened) {
|
|
196
201
|
this.isOpened = false
|
|
197
202
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.43.0",
|
|
4
4
|
"description": "User Interface (UI) components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -124,5 +124,5 @@
|
|
|
124
124
|
"vue-template-compiler": "^2.6.10",
|
|
125
125
|
"webfonts-generator": "^0.4.0"
|
|
126
126
|
},
|
|
127
|
-
"gitHead": "
|
|
127
|
+
"gitHead": "6d43cecd75903d0f328f138505003cf2020ac4c5"
|
|
128
128
|
}
|