Skip to content

Commit

Permalink
chore: update Version
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas H. Kelch committed Apr 26, 2024
1 parent 571dd4d commit 2577da6
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 15 deletions.
20 changes: 10 additions & 10 deletions admin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"@ckeditor/ckeditor5-vue": "^5.1.0",
"@viur/ckeditor5-build-classic": "^1.0.3-v38.0.1",
"@viur/shoelace": "^1.0.6-v2.15.0",
"@viur/vue-components": "^1.3.3",
"@viur/vue-utils": "^1.4.3",
"@viur/vue-components": "^1.3.5",
"@viur/vue-utils": "^1.4.4",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"vue": "^3.4.23",
Expand Down
11 changes: 10 additions & 1 deletion admin/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default defineComponent({
const appStore = useAppStore()
onMounted(() => {
appStore.state["vi.version"] = [4, 2, 4]
appStore.state["vi.version"] = [4, 2, 5]
})
function getPrimaryColor(lightness) {
Expand All @@ -41,11 +41,17 @@ export default defineComponent({
return colorStore.getSecondaryColor(lightness)
}
function getPrimaryAlphaColor(lightness,alpha) {
return colorStore.getAlphaColor("primaryColor", lightness, alpha)
}
return {
userStore,
appStore,
getPrimaryColor,
getSecondaryColor,
getPrimaryAlphaColor,
Utils
}
}
Expand Down Expand Up @@ -76,5 +82,8 @@ export default defineComponent({
--sl-color-secondary-800: v-bind(getSecondaryColor(0));
--sl-color-secondary-900: v-bind(getSecondaryColor(0));
--sl-color-secondary-950: v-bind(getSecondaryColor(0));
--sl-input-border-color-focus: var(--sl-color-primary-500);
--sl-input-focus-ring-color: v-bind(getPrimaryAlphaColor(43, 40));
}
</style>

0 comments on commit 2577da6

Please sign in to comment.