Merge branch 'renovate/stylelint-config-standard-38.x' into 'develop'
Update dependency stylelint-config-standard to v38 See merge request pleroma/pleroma-fe!2139
This commit is contained in:
commit
2be826c763
5 changed files with 36 additions and 27 deletions
|
|
@ -107,7 +107,7 @@
|
||||||
"stylelint-config-recommended": "^16.0.0",
|
"stylelint-config-recommended": "^16.0.0",
|
||||||
"stylelint-config-recommended-scss": "^14.0.0",
|
"stylelint-config-recommended-scss": "^14.0.0",
|
||||||
"stylelint-config-recommended-vue": "^1.6.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": "^6.1.0",
|
||||||
"vite-plugin-eslint2": "^5.0.3",
|
"vite-plugin-eslint2": "^5.0.3",
|
||||||
"vite-plugin-stylelint": "^6.0.0",
|
"vite-plugin-stylelint": "^6.0.0",
|
||||||
|
|
|
||||||
|
|
@ -199,7 +199,7 @@ export default {
|
||||||
inset: 0;
|
inset: 0;
|
||||||
display: grid;
|
display: grid;
|
||||||
place-items: center center;
|
place-items: center center;
|
||||||
background-color: rgba(100 0 0 / 50%);
|
background-color: rgb(100 0 0 / 50%);
|
||||||
|
|
||||||
.alert {
|
.alert {
|
||||||
padding: 0.5em 1em;
|
padding: 0.5em 1em;
|
||||||
|
|
@ -261,14 +261,14 @@ export default {
|
||||||
.preview-window {
|
.preview-window {
|
||||||
--__grid-color1: rgb(102 102 102);
|
--__grid-color1: rgb(102 102 102);
|
||||||
--__grid-color2: rgb(153 153 153);
|
--__grid-color2: rgb(153 153 153);
|
||||||
--__grid-color1-disabled: rgba(102 102 102 / 20%);
|
--__grid-color1-disabled: rgb(102 102 102 / 20%);
|
||||||
--__grid-color2-disabled: rgba(153 153 153 / 20%);
|
--__grid-color2-disabled: rgb(153 153 153 / 20%);
|
||||||
|
|
||||||
&.-light-grid {
|
&.-light-grid {
|
||||||
--__grid-color1: rgb(205 205 205);
|
--__grid-color1: rgb(205 205 205);
|
||||||
--__grid-color2: rgb(255 255 255);
|
--__grid-color2: rgb(255 255 255);
|
||||||
--__grid-color1-disabled: rgba(205 205 205 / 20%);
|
--__grid-color1-disabled: rgb(205 205 205 / 20%);
|
||||||
--__grid-color2-disabled: rgba(255 255 255 / 20%);
|
--__grid-color2-disabled: rgb(255 255 255 / 20%);
|
||||||
}
|
}
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
||||||
|
|
@ -2,21 +2,24 @@
|
||||||
<div class="image-cropper">
|
<div class="image-cropper">
|
||||||
<div v-if="dataUrl">
|
<div v-if="dataUrl">
|
||||||
<cropper-canvas
|
<cropper-canvas
|
||||||
|
ref="cropperCanvas"
|
||||||
background
|
background
|
||||||
class="image-cropper-canvas"
|
class="image-cropper-canvas"
|
||||||
ref="cropperCanvas"
|
|
||||||
height="25em"
|
height="25em"
|
||||||
>
|
>
|
||||||
<cropper-image
|
<cropper-image
|
||||||
|
ref="cropperImage"
|
||||||
:src="dataUrl"
|
:src="dataUrl"
|
||||||
alt="Picture"
|
alt="Picture"
|
||||||
ref="cropperImage"
|
|
||||||
class="image-cropper-image"
|
class="image-cropper-image"
|
||||||
translatable
|
translatable
|
||||||
scalable
|
scalable
|
||||||
/>
|
/>
|
||||||
<cropper-shade hidden />
|
<cropper-shade hidden />
|
||||||
<cropper-handle action="select" plain />
|
<cropper-handle
|
||||||
|
action="select"
|
||||||
|
plain
|
||||||
|
/>
|
||||||
<cropper-selection
|
<cropper-selection
|
||||||
ref="cropperSelection"
|
ref="cropperSelection"
|
||||||
initial-coverage="1"
|
initial-coverage="1"
|
||||||
|
|
@ -25,17 +28,23 @@
|
||||||
resizable
|
resizable
|
||||||
@change="onCropperSelectionChange"
|
@change="onCropperSelectionChange"
|
||||||
>
|
>
|
||||||
<cropper-grid role="grid" covered></cropper-grid>
|
<cropper-grid
|
||||||
<cropper-crosshair centered></cropper-crosshair>
|
role="grid"
|
||||||
<cropper-handle action="move" theme-color="rgba(255, 255, 255, 0.35)"></cropper-handle>
|
covered
|
||||||
<cropper-handle action="n-resize"></cropper-handle>
|
/>
|
||||||
<cropper-handle action="e-resize"></cropper-handle>
|
<cropper-crosshair centered />
|
||||||
<cropper-handle action="s-resize"></cropper-handle>
|
<cropper-handle
|
||||||
<cropper-handle action="w-resize"></cropper-handle>
|
action="move"
|
||||||
<cropper-handle action="ne-resize"></cropper-handle>
|
theme-color="rgba(255, 255, 255, 0.35)"
|
||||||
<cropper-handle action="nw-resize"></cropper-handle>
|
/>
|
||||||
<cropper-handle action="se-resize"></cropper-handle>
|
<cropper-handle action="n-resize" />
|
||||||
<cropper-handle action="sw-resize"></cropper-handle>
|
<cropper-handle action="e-resize" />
|
||||||
|
<cropper-handle action="s-resize" />
|
||||||
|
<cropper-handle action="w-resize" />
|
||||||
|
<cropper-handle action="ne-resize" />
|
||||||
|
<cropper-handle action="nw-resize" />
|
||||||
|
<cropper-handle action="se-resize" />
|
||||||
|
<cropper-handle action="sw-resize" />
|
||||||
</cropper-selection>
|
</cropper-selection>
|
||||||
</cropper-canvas>
|
</cropper-canvas>
|
||||||
<div class="image-cropper-buttons-wrapper">
|
<div class="image-cropper-buttons-wrapper">
|
||||||
|
|
|
||||||
|
|
@ -93,4 +93,4 @@
|
||||||
|
|
||||||
<script src="./login_form.js"></script>
|
<script src="./login_form.js"></script>
|
||||||
|
|
||||||
<style src="./login_form.scss"/>
|
<style src="./login_form.scss" />
|
||||||
|
|
|
||||||
12
yarn.lock
12
yarn.lock
|
|
@ -7089,7 +7089,7 @@ stylelint-config-recommended-vue@^1.6.0:
|
||||||
stylelint-config-html ">=1.0.0"
|
stylelint-config-html ">=1.0.0"
|
||||||
stylelint-config-recommended ">=6.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"
|
version "15.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-15.0.0.tgz#93d48db401215708b724f078533864e52085a07b"
|
resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-15.0.0.tgz#93d48db401215708b724f078533864e52085a07b"
|
||||||
integrity sha512-9LejMFsat7L+NXttdHdTq94byn25TD+82bzGRiV1Pgasl99pWnwipXS5DguTpp3nP1XjvLXVnEJIuYBfsRjRkA==
|
integrity sha512-9LejMFsat7L+NXttdHdTq94byn25TD+82bzGRiV1Pgasl99pWnwipXS5DguTpp3nP1XjvLXVnEJIuYBfsRjRkA==
|
||||||
|
|
@ -7104,12 +7104,12 @@ stylelint-config-recommended@^16.0.0:
|
||||||
resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-16.0.0.tgz#0221f19902816fe7d53d9a01eb0be4cc7b4fe80a"
|
resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-16.0.0.tgz#0221f19902816fe7d53d9a01eb0be4cc7b4fe80a"
|
||||||
integrity sha512-4RSmPjQegF34wNcK1e1O3Uz91HN8P1aFdFzio90wNK9mjgAI19u5vsU868cVZboKzCaa5XbpvtTzAAGQAxpcXA==
|
integrity sha512-4RSmPjQegF34wNcK1e1O3Uz91HN8P1aFdFzio90wNK9mjgAI19u5vsU868cVZboKzCaa5XbpvtTzAAGQAxpcXA==
|
||||||
|
|
||||||
stylelint-config-standard@37.0.0:
|
stylelint-config-standard@38.0.0:
|
||||||
version "37.0.0"
|
version "38.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-37.0.0.tgz#55e75c7215d5398b096d2f75af6a16693c18532d"
|
resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-38.0.0.tgz#9d673ec1f35d7569476ee4b0582e7dd5faebf036"
|
||||||
integrity sha512-+6eBlbSTrOn/il2RlV0zYGQwRTkr+WtzuVSs1reaWGObxnxLpbcspCUYajVQHonVfxVw2U+h42azGhrBvcg8OA==
|
integrity sha512-uj3JIX+dpFseqd/DJx8Gy3PcRAJhlEZ2IrlFOc4LUxBX/PNMEQ198x7LCOE2Q5oT9Vw8nyc4CIL78xSqPr6iag==
|
||||||
dependencies:
|
dependencies:
|
||||||
stylelint-config-recommended "^15.0.0"
|
stylelint-config-recommended "^16.0.0"
|
||||||
|
|
||||||
stylelint-scss@^6.4.0:
|
stylelint-scss@^6.4.0:
|
||||||
version "6.11.1"
|
version "6.11.1"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue