Skip to content

Commit

Permalink
Dark fix toast (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
mosarabi committed Jan 16, 2024
1 parent 2c67445 commit 80b569c
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@youcan/ui",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"packageManager": "[email protected]",
"engines": {
"node": "^20.9.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@youcan/ui-core",
"type": "module",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"description": "",
"author": "YouCan <[email protected]> (https://github.com/youcan-shop/)",
"homepage": "https://github.com/youcan-shop/youcan-ui",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-all/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@youcan/eslint-config",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"description": "YouCan ESLint config",
"author": "YouCan <[email protected]> (https://github.com/youcan-shop/)",
"homepage": "https://github.com/youcan-shop/eslint-config",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-basic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@youcan/eslint-config-basic",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"description": "",
"author": "YouCan <[email protected]> (https://github.com/youcan-shop/)",
"homepage": "https://github.com/youcan-shop/eslint-config",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-youcan/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-youcan",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"homepage": "https://github.com/youcan-shop/eslint-config",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@youcan/eslint-config-ts",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"description": "",
"author": "YouCan <[email protected]> (https://github.com/youcan-shop/)",
"homepage": "https://github.com/youcan-shop/eslint-config",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@youcan/eslint-config-vue",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"description": "",
"author": "YouCan <[email protected]> (https://github.com/youcan-shop/)",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@youcan/ui-icons",
"type": "module",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"description": "YouCan icon set in Iconify JSON format",
"author": "YouCan <[email protected]> (https://github.com/youcan-shop/)",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/visuals/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@youcan/ui-visuals",
"type": "module",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"description": "YouCan visuals set in Iconify JSON format",
"author": "YouCan <[email protected]> (https://github.com/youcan-shop/)",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@youcan/ui-vue3",
"version": "2.5.7",
"version": "2.5.8-beta.0",
"description": "YouCan Vue3 components library",
"author": "YouCan <[email protected]> (https://github.com/youcan-shop/)",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ onMounted(() => {
@close="close(toast.id)"
>
<template v-if="toast.options?.title" #title>
{{ toast.options.title }} :: {{ index }}
{{ toast.options?.title }} :: {{ index }}
</template>
<template v-if="toast.options?.description" #description>
{{ toast.options.description }}
{{ toast.options?.description }}
</template>
</Toast>
</div>
Expand Down

0 comments on commit 80b569c

Please sign in to comment.