mirror of
https://github.com/penpot/penpot.git
synced 2025-05-10 14:46:38 +02:00
Merge pull request #3576 from penpot/niwinz-develop-update-deps
⬆️ Update dependencies
This commit is contained in:
commit
722ad5216f
22 changed files with 747 additions and 738 deletions
|
@ -36,9 +36,9 @@
|
|||
:dev
|
||||
{:extra-paths ["dev"]
|
||||
:extra-deps
|
||||
{thheller/shadow-cljs {:mvn/version "2.20.16"}
|
||||
{thheller/shadow-cljs {:mvn/version "2.25.3"}
|
||||
org.clojure/tools.namespace {:mvn/version "RELEASE"}
|
||||
cider/cider-nrepl {:mvn/version "0.29.0"}}}
|
||||
cider/cider-nrepl {:mvn/version "0.37.0"}}}
|
||||
|
||||
:shadow-cljs
|
||||
{:main-opts ["-m" "shadow.cljs.devtools.cli"]}
|
||||
|
|
|
@ -15,7 +15,7 @@ const autoprefixer = require("autoprefixer")
|
|||
const modules = require("postcss-modules");
|
||||
|
||||
const clean = require("postcss-clean");
|
||||
const mkdirp = require("mkdirp");
|
||||
const {mkdirp} = require("mkdirp");
|
||||
const rimraf = require("rimraf");
|
||||
const sass = require("sass");
|
||||
const gettext = require("gettext-parser");
|
||||
|
|
|
@ -26,10 +26,10 @@
|
|||
"test:e2e-gui": "cypress open"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.4.13",
|
||||
"autoprefixer": "^10.4.15",
|
||||
"cypress": "^10.3.0",
|
||||
"cypress-file-upload": "^5.0.8",
|
||||
"gettext-parser": "^5.1.2",
|
||||
"gettext-parser": "^7.0.1",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-gzip": "^1.4.2",
|
||||
|
@ -38,18 +38,18 @@
|
|||
"gulp-rename": "^2.0.0",
|
||||
"gulp-sass": "^5.1.0",
|
||||
"gulp-sourcemaps": "^3.0.0",
|
||||
"gulp-svg-sprite": "^1.5.0",
|
||||
"gulp-svg-sprite": "^2.0.3",
|
||||
"map-stream": "0.0.7",
|
||||
"marked": "^4.2.5",
|
||||
"mkdirp": "^1.0.4",
|
||||
"nodemon": "^2.0.20",
|
||||
"marked": "^7.0.5",
|
||||
"mkdirp": "^3.0.1",
|
||||
"nodemon": "^3.0.1",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"postcss": "^8.4.20",
|
||||
"postcss": "^8.4.29",
|
||||
"postcss-clean": "^1.2.2",
|
||||
"prettier": "^2.8.1",
|
||||
"rimraf": "^3.0.0",
|
||||
"sass": "^1.57.1",
|
||||
"shadow-cljs": "2.20.16"
|
||||
"prettier": "^3.0.3",
|
||||
"rimraf": "^5.0.1",
|
||||
"sass": "^1.66.1",
|
||||
"shadow-cljs": "2.25.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sentry/browser": "^6.17.4",
|
||||
|
@ -57,9 +57,9 @@
|
|||
"date-fns": "^2.30.0",
|
||||
"draft-js": "^0.11.7",
|
||||
"highlight.js": "^11.8.0",
|
||||
"js-beautify": "^1.14.7",
|
||||
"js-beautify": "^1.14.9",
|
||||
"jszip": "^3.10.1",
|
||||
"luxon": "^3.3.0",
|
||||
"luxon": "^3.4.2",
|
||||
"mousetrap": "^1.6.5",
|
||||
"opentype.js": "^1.3.4",
|
||||
"postcss-modules": "^6.0.0",
|
||||
|
|
|
@ -116,7 +116,9 @@ $bp-min-2556: "(min-width: 2556px)";
|
|||
$filepath: "/fonts/" + $file;
|
||||
@font-face {
|
||||
font-family: "#{$style-name}";
|
||||
src: url($filepath + ".woff2") format("woff2"), url($filepath + ".ttf") format("truetype");
|
||||
src:
|
||||
url($filepath + ".woff2") format("woff2"),
|
||||
url($filepath + ".ttf") format("truetype");
|
||||
font-weight: unquote($weight);
|
||||
font-style: unquote($style);
|
||||
}
|
||||
|
|
|
@ -632,7 +632,9 @@ input.element-name {
|
|||
|
||||
&:before {
|
||||
border-radius: $br99;
|
||||
transition: box-shadow 0.2s linear 0s, color 0.2s linear 0s;
|
||||
transition:
|
||||
box-shadow 0.2s linear 0s,
|
||||
color 0.2s linear 0s;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -692,13 +694,17 @@ input[type="radio"]:checked + label:before {
|
|||
}
|
||||
|
||||
label {
|
||||
transition: border 0.2s linear 0s, color 0.2s linear 0s;
|
||||
transition:
|
||||
border 0.2s linear 0s,
|
||||
color 0.2s linear 0s;
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
top: 1.4px;
|
||||
border-radius: $br3;
|
||||
transition: border 0.2s linear 0s, color 0.2s linear 0s;
|
||||
transition:
|
||||
border 0.2s linear 0s,
|
||||
color 0.2s linear 0s;
|
||||
}
|
||||
|
||||
&::after {
|
||||
|
@ -709,7 +715,9 @@ input[type="radio"]:checked + label:before {
|
|||
left: 3.2px;
|
||||
top: 0;
|
||||
font-size: $fs12;
|
||||
transition: border 0.2s linear 0s, color 0.2s linear 0s;
|
||||
transition:
|
||||
border 0.2s linear 0s,
|
||||
color 0.2s linear 0s;
|
||||
}
|
||||
|
||||
&:after {
|
||||
|
@ -844,13 +852,17 @@ input[type="range"]::-webkit-slider-runnable-track {
|
|||
height: 6px;
|
||||
cursor: pointer;
|
||||
animate: 0.2s;
|
||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||
box-shadow:
|
||||
0px 0px 0px #000000,
|
||||
0px 0px 0px #0d0d0d;
|
||||
background: $color-gray-60;
|
||||
border-radius: $br25;
|
||||
border: 0px solid #000101;
|
||||
}
|
||||
input[type="range"]::-webkit-slider-thumb {
|
||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||
box-shadow:
|
||||
0px 0px 0px #000000,
|
||||
0px 0px 0px #0d0d0d;
|
||||
border: 0px solid #000000;
|
||||
height: 18px;
|
||||
width: 6px;
|
||||
|
@ -868,13 +880,17 @@ input[type="range"]::-moz-range-track {
|
|||
height: 8px;
|
||||
cursor: pointer;
|
||||
animate: 0.2s;
|
||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||
box-shadow:
|
||||
0px 0px 0px #000000,
|
||||
0px 0px 0px #0d0d0d;
|
||||
background: $color-gray-60;
|
||||
border-radius: $br25;
|
||||
border: 0px solid #000101;
|
||||
}
|
||||
input[type="range"]::-moz-range-thumb {
|
||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||
box-shadow:
|
||||
0px 0px 0px #000000,
|
||||
0px 0px 0px #0d0d0d;
|
||||
border: 0px solid #000000;
|
||||
height: 24px;
|
||||
width: 8px;
|
||||
|
@ -896,16 +912,22 @@ input[type="range"]::-ms-fill-lower {
|
|||
background: $color-gray-60;
|
||||
border: 0px solid #000101;
|
||||
border-radius: $br50;
|
||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||
box-shadow:
|
||||
0px 0px 0px #000000,
|
||||
0px 0px 0px #0d0d0d;
|
||||
}
|
||||
input[type="range"]::-ms-fill-upper {
|
||||
background: $color-gray-60;
|
||||
border: 0px solid #000101;
|
||||
border-radius: $br50;
|
||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||
box-shadow:
|
||||
0px 0px 0px #000000,
|
||||
0px 0px 0px #0d0d0d;
|
||||
}
|
||||
input[type="range"]::-ms-thumb {
|
||||
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
|
||||
box-shadow:
|
||||
0px 0px 0px #000000,
|
||||
0px 0px 0px #0d0d0d;
|
||||
border: 0px solid #000000;
|
||||
height: 24px;
|
||||
width: 8px;
|
||||
|
|
|
@ -232,7 +232,9 @@
|
|||
border-radius: $br6;
|
||||
z-index: 1;
|
||||
border: 1px solid $color-white;
|
||||
box-shadow: rgb(255, 255, 255) 0px 0px 0px 1px inset, rgb(0 0 0 / 0.25) 0px 4px 4px inset,
|
||||
box-shadow:
|
||||
rgb(255, 255, 255) 0px 0px 0px 1px inset,
|
||||
rgb(0 0 0 / 0.25) 0px 4px 4px inset,
|
||||
rgb(0 0 0 / 0.25) 0px 4px 4px;
|
||||
transform: translate(-6px, -6px);
|
||||
left: 50%;
|
||||
|
@ -381,7 +383,9 @@
|
|||
border-radius: $br6;
|
||||
z-index: 1;
|
||||
border: 1px solid $color-white;
|
||||
box-shadow: rgb(255, 255, 255) 0px 0px 0px 1px inset, rgb(0 0 0 / 0.25) 0px 4px 4px inset,
|
||||
box-shadow:
|
||||
rgb(255, 255, 255) 0px 0px 0px 1px inset,
|
||||
rgb(0 0 0 / 0.25) 0px 4px 4px inset,
|
||||
rgb(0 0 0 / 0.25) 0px 4px 4px;
|
||||
transform: translate(-6px, -6px);
|
||||
left: 50%;
|
||||
|
|
|
@ -467,7 +467,9 @@
|
|||
}
|
||||
&.libs {
|
||||
background-image: url(/images/ph-left.svg), url(/images/ph-right.svg);
|
||||
background-position: 15% bottom, 85% top;
|
||||
background-position:
|
||||
15% bottom,
|
||||
85% top;
|
||||
background-repeat: no-repeat;
|
||||
align-items: center;
|
||||
border: 1px dashed #b1b2b5;
|
||||
|
|
|
@ -1204,7 +1204,9 @@
|
|||
|
||||
.go-to-lib-button {
|
||||
color: $color-white;
|
||||
transition: border 0.3s, color 0.3s;
|
||||
transition:
|
||||
border 0.3s,
|
||||
color 0.3s;
|
||||
text-align: center;
|
||||
background: $color-gray-50;
|
||||
padding: 0.5rem;
|
||||
|
|
|
@ -18,7 +18,10 @@
|
|||
border-radius: $s-8;
|
||||
z-index: $z-index-2;
|
||||
background-color: var(--color-background-primary);
|
||||
transition: top 0.3s, height 0.3s, opacity 0.3s;
|
||||
transition:
|
||||
top 0.3s,
|
||||
height 0.3s,
|
||||
opacity 0.3s;
|
||||
|
||||
.main-toolbar-options {
|
||||
position: relative;
|
||||
|
|
|
@ -30,7 +30,10 @@
|
|||
padding: $s-0 $s-0 $s-8 $s-8;
|
||||
border-radius: $br-8;
|
||||
background-color: var(--palette-background-color);
|
||||
transition: right 0.3s, opacity 0.2s, width 0.3s;
|
||||
transition:
|
||||
right 0.3s,
|
||||
opacity 0.2s,
|
||||
width 0.3s;
|
||||
&.wide {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
(progress! context type file nil nil))
|
||||
|
||||
([context type current total]
|
||||
(keyword? type)
|
||||
(assert (keyword? type))
|
||||
(assert (number? current))
|
||||
(assert (number? total))
|
||||
(progress! context type nil current total))
|
||||
|
|
1171
frontend/yarn.lock
1171
frontend/yarn.lock
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue