@awes-io/ui 2.56.2 → 2.56.3
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/nuxt/templates/store.plugin.js +8 -0
- package/package.json +2 -2
- package/store/awesIo.js +9 -0
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.56.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.2...@awes-io/ui@2.56.3) (2022-07-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* added full logo into config ([7f38422](https://github.com/awes-io/client/commit/7f384223484d5bc989278fa2311cd3eff2143523))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.56.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.1...@awes-io/ui@2.56.2) (2022-07-18)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -12,6 +12,14 @@ export default ({ store, app }) => {
|
|
|
12
12
|
default: JSON.parse('<%= JSON.stringify(options.default.logo) %>'),
|
|
13
13
|
dark: JSON.parse('<%= JSON.stringify(options.dark.logo) %>')
|
|
14
14
|
})
|
|
15
|
+
|
|
16
|
+
// Set default logo
|
|
17
|
+
store.commit('awesIo/SET_FULL_LOGO', {
|
|
18
|
+
default: JSON.parse(
|
|
19
|
+
'<%= JSON.stringify(options.default.fullLogo) %>'
|
|
20
|
+
),
|
|
21
|
+
dark: JSON.parse('<%= JSON.stringify(options.dark.fullLogo) %>')
|
|
22
|
+
})
|
|
15
23
|
}
|
|
16
24
|
|
|
17
25
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.56.
|
|
3
|
+
"version": "2.56.3",
|
|
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": "ed63959468c36e3690233fdce4a5b23b99af1fb3"
|
|
126
126
|
}
|
package/store/awesIo.js
CHANGED
|
@@ -193,6 +193,15 @@ export const mutations = {
|
|
|
193
193
|
}
|
|
194
194
|
},
|
|
195
195
|
|
|
196
|
+
SET_FULL_LOGO(state, fullLogo) {
|
|
197
|
+
if (typeof fullLogo === 'string') {
|
|
198
|
+
state.fullLogo = mergeDeepRight(state.fullLogo, {
|
|
199
|
+
default: { src: fullLogo },
|
|
200
|
+
dark: { src: fullLogo }
|
|
201
|
+
})
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
|
|
196
205
|
SET_BEFORE_MOBILE_MENU(state, payload) {
|
|
197
206
|
if (payload && payload.component) {
|
|
198
207
|
state.beforeMobileMenu = payload.component
|