From 7ced58d89e29843b75a9856e17c5ae02b3054678 Mon Sep 17 00:00:00 2001 From: Pleroma Renovate Bot Date: Tue, 8 Apr 2025 09:05:48 +0000 Subject: [PATCH 1/2] Update dependency stylelint-config-standard to v38 --- package.json | 2 +- yarn.lock | 17 +++++++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 19fbd1514..daf8cc0ef 100644 --- a/package.json +++ b/package.json @@ -107,7 +107,7 @@ "stylelint-config-recommended": "^14.0.0", "stylelint-config-recommended-scss": "^14.0.0", "stylelint-config-recommended-vue": "^1.6.0", - "stylelint-config-standard": "37.0.0", + "stylelint-config-standard": "38.0.0", "vite": "^6.1.0", "vite-plugin-eslint2": "^5.0.3", "vite-plugin-stylelint": "^6.0.0", diff --git a/yarn.lock b/yarn.lock index 82115aaa2..538ad4a81 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7089,7 +7089,7 @@ stylelint-config-recommended-vue@^1.6.0: stylelint-config-html ">=1.0.0" stylelint-config-recommended ">=6.0.0" -stylelint-config-recommended@>=6.0.0, stylelint-config-recommended@^15.0.0: +stylelint-config-recommended@>=6.0.0: version "15.0.0" resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-15.0.0.tgz#93d48db401215708b724f078533864e52085a07b" integrity sha512-9LejMFsat7L+NXttdHdTq94byn25TD+82bzGRiV1Pgasl99pWnwipXS5DguTpp3nP1XjvLXVnEJIuYBfsRjRkA== @@ -7099,12 +7099,17 @@ stylelint-config-recommended@^14.0.0, stylelint-config-recommended@^14.0.1: resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-14.0.1.tgz#d25e86409aaf79ee6c6085c2c14b33c7e23c90c6" integrity sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg== -stylelint-config-standard@37.0.0: - version "37.0.0" - resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-37.0.0.tgz#55e75c7215d5398b096d2f75af6a16693c18532d" - integrity sha512-+6eBlbSTrOn/il2RlV0zYGQwRTkr+WtzuVSs1reaWGObxnxLpbcspCUYajVQHonVfxVw2U+h42azGhrBvcg8OA== +stylelint-config-recommended@^16.0.0: + version "16.0.0" + resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-16.0.0.tgz#0221f19902816fe7d53d9a01eb0be4cc7b4fe80a" + integrity sha512-4RSmPjQegF34wNcK1e1O3Uz91HN8P1aFdFzio90wNK9mjgAI19u5vsU868cVZboKzCaa5XbpvtTzAAGQAxpcXA== + +stylelint-config-standard@38.0.0: + version "38.0.0" + resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-38.0.0.tgz#9d673ec1f35d7569476ee4b0582e7dd5faebf036" + integrity sha512-uj3JIX+dpFseqd/DJx8Gy3PcRAJhlEZ2IrlFOc4LUxBX/PNMEQ198x7LCOE2Q5oT9Vw8nyc4CIL78xSqPr6iag== dependencies: - stylelint-config-recommended "^15.0.0" + stylelint-config-recommended "^16.0.0" stylelint-scss@^6.4.0: version "6.11.1" From d9e4a3a4a828ac3f886ae4c9d195b78ec40e05d6 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 8 Apr 2025 13:51:52 +0300 Subject: [PATCH 2/2] lint --fix + manual --- .../component_preview/component_preview.vue | 10 ++--- .../image_cropper/image_cropper.vue | 37 ++++++++++++------- src/components/login_form/login_form.vue | 2 +- 3 files changed, 29 insertions(+), 20 deletions(-) diff --git a/src/components/component_preview/component_preview.vue b/src/components/component_preview/component_preview.vue index 6a77d6c5d..be9d25ac5 100644 --- a/src/components/component_preview/component_preview.vue +++ b/src/components/component_preview/component_preview.vue @@ -199,7 +199,7 @@ export default { inset: 0; display: grid; place-items: center center; - background-color: rgba(100 0 0 / 50%); + background-color: rgb(100 0 0 / 50%); .alert { padding: 0.5em 1em; @@ -261,14 +261,14 @@ export default { .preview-window { --__grid-color1: rgb(102 102 102); --__grid-color2: rgb(153 153 153); - --__grid-color1-disabled: rgba(102 102 102 / 20%); - --__grid-color2-disabled: rgba(153 153 153 / 20%); + --__grid-color1-disabled: rgb(102 102 102 / 20%); + --__grid-color2-disabled: rgb(153 153 153 / 20%); &.-light-grid { --__grid-color1: rgb(205 205 205); --__grid-color2: rgb(255 255 255); - --__grid-color1-disabled: rgba(205 205 205 / 20%); - --__grid-color2-disabled: rgba(255 255 255 / 20%); + --__grid-color1-disabled: rgb(205 205 205 / 20%); + --__grid-color2-disabled: rgb(255 255 255 / 20%); } position: relative; diff --git a/src/components/image_cropper/image_cropper.vue b/src/components/image_cropper/image_cropper.vue index 6d11ad4ec..0122d1216 100644 --- a/src/components/image_cropper/image_cropper.vue +++ b/src/components/image_cropper/image_cropper.vue @@ -2,21 +2,24 @@
diff --git a/src/components/login_form/login_form.vue b/src/components/login_form/login_form.vue index acf3e82bd..eb5b3432d 100644 --- a/src/components/login_form/login_form.vue +++ b/src/components/login_form/login_form.vue @@ -93,4 +93,4 @@ -