@awes-io/ui 2.61.0 → 2.61.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
|
@@ -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.61.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.61.0...@awes-io/ui@2.61.1) (2023-01-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **aw-bottom-bar:** action button listeners application fixed ([bfa4057](https://github.com/awes-io/client/commit/bfa4057da6f7c9a5c3393b0a2483ba2bd6c5f97b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.61.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.60.0...@awes-io/ui@2.61.0) (2022-12-29)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -72,12 +72,12 @@ export default {
|
|
|
72
72
|
|
|
73
73
|
let result = { ...button, hideText: true }
|
|
74
74
|
|
|
75
|
-
if (!button.href
|
|
75
|
+
if (!button.href && !button.listeners?.click) {
|
|
76
76
|
result = {
|
|
77
77
|
...button,
|
|
78
78
|
listeners: {
|
|
79
79
|
...button.listeners,
|
|
80
|
-
click: this.$root.$emit(
|
|
80
|
+
click: () => this.$root.$emit(
|
|
81
81
|
'awes-io::bottom-bar-action:click'
|
|
82
82
|
)
|
|
83
83
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.1",
|
|
4
4
|
"description": "User Interface (UI) components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -122,5 +122,5 @@
|
|
|
122
122
|
"vue-template-compiler": "^2.6.10",
|
|
123
123
|
"webfonts-generator": "^0.4.0"
|
|
124
124
|
},
|
|
125
|
-
"gitHead": "
|
|
125
|
+
"gitHead": "7538abc47c20e50e20dcb1bfb33e29b2bfdca1ae"
|
|
126
126
|
}
|