From 33f14802848e416cb7b083a89be2e36ea0deb598 Mon Sep 17 00:00:00 2001 From: renovate Date: Thu, 9 Sep 2021 16:17:12 +0000 Subject: [PATCH 01/10] chore(deps): update dependency esbuild to v0.12.26 (#729) Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/729 Co-authored-by: renovate Co-committed-by: renovate --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index be80935be..4a2d23577 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "babel-eslint": "10.1.0", "cypress": "8.3.1", "cypress-file-upload": "5.0.8", - "esbuild": "0.12.25", + "esbuild": "0.12.26", "eslint": "7.32.0", "eslint-plugin-vue": "7.17.0", "express": "4.17.1", diff --git a/yarn.lock b/yarn.lock index 0c1c8b3c3..d35b6f86b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3725,10 +3725,10 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -esbuild@0.12.25: - version "0.12.25" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.12.25.tgz#c2131cef022cf9fe94aaa5e00110b27fc976221a" - integrity sha512-woie0PosbRSoN8gQytrdCzUbS2ByKgO8nD1xCZkEup3D9q92miCze4PqEI9TZDYAuwn6CruEnQpJxgTRWdooAg== +esbuild@0.12.26: + version "0.12.26" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.12.26.tgz#35f2d58ac3fa4629df24aa4d6fd72feb5522e94b" + integrity sha512-YmTkhPKjvTJ+G5e96NyhGf69bP+hzO0DscqaVJTi5GM34uaD4Ecj7omu5lJO+NrxCUBRhy2chONLK1h/2LwoXA== esbuild@^0.12.17: version "0.12.20" From 0ed3cf25538d6f9546db0adf9b02bce9fd867329 Mon Sep 17 00:00:00 2001 From: dpschen Date: Thu, 9 Sep 2021 22:24:08 +0000 Subject: [PATCH 02/10] feat: import bulma utilities global (#718) Co-authored-by: Dominik Pschenitschni Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/718 Co-authored-by: dpschen Co-committed-by: dpschen --- src/styles/theme/theme.scss | 10 +++++++++- src/styles/variables/_all.scss | 2 ++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/styles/theme/theme.scss b/src/styles/theme/theme.scss index a94202c7a..b64c27a86 100644 --- a/src/styles/theme/theme.scss +++ b/src/styles/theme/theme.scss @@ -1,4 +1,12 @@ -@import "../../../node_modules/bulma/bulma"; +// utilities are imported in variables.scss +@import "../../../node_modules/bulma/sass/base/_all"; +@import "../../../node_modules/bulma/sass/elements/_all"; +@import "../../../node_modules/bulma/sass/form/_all"; +@import "../../../node_modules/bulma/sass/components/_all"; +@import "../../../node_modules/bulma/sass/grid/_all"; +@import "../../../node_modules/bulma/sass/helpers/_all"; +@import "../../../node_modules/bulma/sass/layout/_all"; + @import "fonts"; diff --git a/src/styles/variables/_all.scss b/src/styles/variables/_all.scss index bea5be250..8f19149e5 100644 --- a/src/styles/variables/_all.scss +++ b/src/styles/variables/_all.scss @@ -1,3 +1,5 @@ +@import "../../../node_modules/bulma/sass/utilities/_all"; + @import 'colors'; @import 'shadows'; @import 'variables'; \ No newline at end of file From d0e46e59e84ab85239a5878cf22f4ff556ffcdda Mon Sep 17 00:00:00 2001 From: dpschen Date: Thu, 9 Sep 2021 22:25:08 +0000 Subject: [PATCH 03/10] chore: make method event independent (#719) Co-authored-by: Dominik Pschenitschni Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/719 Co-authored-by: dpschen Co-committed-by: dpschen --- src/components/input/fancycheckbox.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/input/fancycheckbox.vue b/src/components/input/fancycheckbox.vue index a258ec016..7e7884956 100644 --- a/src/components/input/fancycheckbox.vue +++ b/src/components/input/fancycheckbox.vue @@ -4,7 +4,7 @@ :checked="checked" :disabled="disabled" :id="checkBoxId" - @change="updateData" + @change="(event) => updateData(event.target.checked)" style="display: none;" type="checkbox"/>