@awes-io/ui 2.117.0 → 2.118.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.118.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.117.0...@awes-io/ui@2.118.0) (2024-11-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add switcher in mobile menu ([338e4de](https://github.com/awes-io/client/commit/338e4de3c4ba952e7234f781f7447cbfc0ac428a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.117.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.116.0...@awes-io/ui@2.117.0) (2024-11-28)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -229,7 +229,7 @@ export default {
|
|
|
229
229
|
|
|
230
230
|
return acc.concat({
|
|
231
231
|
...pick(
|
|
232
|
-
'icon,iconBg,iconActive,class,expanded,target,rel,listeners,abstract,key,badge,back,isDivide,arrow,hideText',
|
|
232
|
+
'icon,iconBg,iconActive,class,expanded,target,rel,listeners,abstract,key,badge,switcher,back,isDivide,arrow,hideText',
|
|
233
233
|
props
|
|
234
234
|
),
|
|
235
235
|
text,
|
|
@@ -43,6 +43,12 @@
|
|
|
43
43
|
</span>
|
|
44
44
|
</span>
|
|
45
45
|
|
|
46
|
+
<AwSwitcher
|
|
47
|
+
v-if="switcher"
|
|
48
|
+
v-bind="switcher"
|
|
49
|
+
v-on="switcher.listeners"
|
|
50
|
+
/>
|
|
51
|
+
|
|
46
52
|
<AwBadge v-if="badge" v-bind="badge" />
|
|
47
53
|
|
|
48
54
|
<AwIconSystemMono
|
|
@@ -117,6 +123,11 @@ export default {
|
|
|
117
123
|
default: null
|
|
118
124
|
},
|
|
119
125
|
|
|
126
|
+
switcher: {
|
|
127
|
+
type: Object,
|
|
128
|
+
default: null
|
|
129
|
+
},
|
|
130
|
+
|
|
120
131
|
arrow: Boolean,
|
|
121
132
|
|
|
122
133
|
active: Boolean
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.118.0",
|
|
4
4
|
"description": "User Interface (UI) components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"rollup-plugin-visualizer": "^2.6.0",
|
|
115
115
|
"rollup-plugin-vue": "^5.0.1"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "9fac83b530a7826aea528e3823d0317e439133f6"
|
|
118
118
|
}
|