@awes-io/ui 2.41.0 → 2.42.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 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.42.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.41.0...@awes-io/ui@2.42.0) (2022-02-01)
7
+
8
+
9
+ ### Features
10
+
11
+ * modal appear fixed ([4838c87](https://github.com/awes-io/client/commit/4838c87fadc1b9303fa3c9a5e4ccee678c5bbcb6))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.41.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.40.1...@awes-io/ui@2.41.0) (2022-01-26)
7
18
 
8
19
 
@@ -10,7 +10,7 @@
10
10
  <!-- Customization of help icon -->
11
11
  <slot name="icon">
12
12
  <!-- question-circle icon -->
13
- <span v-if="help" v-tooltip:right="help">
13
+ <span v-if="help" v-tooltip:right.prepend="help">
14
14
  <AwIconSystemMono
15
15
  class="aw-info__help-icon"
16
16
  name="info-circle"
@@ -179,6 +179,10 @@ export default {
179
179
  isChecked: {
180
180
  handler(val) {
181
181
  this.isInternalChecked = val
182
+ this.isSwitched = val
183
+ if (this.$refs.element && this.$refs.element.checked !== val) {
184
+ this.$refs.element.checked = val
185
+ }
182
186
  },
183
187
  immediate: true
184
188
  }
@@ -2,7 +2,7 @@
2
2
  <Transition
3
3
  :name="`modal-transition-${theme}`"
4
4
  @before-enter="_preOpen"
5
- @before-appear="_preOpen"
5
+ @before-appear="$nextTick(_preOpen)"
6
6
  @after-enter="$emit('opened')"
7
7
  @after-appear="$emit('opened')"
8
8
  @after-leave="_afterLeave"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.41.0",
3
+ "version": "2.42.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": "7541d3d4f47c11602993afd6e8aec69187f90605"
127
+ "gitHead": "0e090b4bf9900be85106e5edc3940299809e5971"
128
128
  }