Update packages

This commit is contained in:
Lucas Larroche 2021-10-25 10:22:22 +07:00
parent d68d7b86fa
commit 6cd0e06097
10 changed files with 565 additions and 586 deletions

View file

@ -1041,7 +1041,7 @@ textarea {
} }
input:not([type=checkbox]):not([type=radio]):not([type=range]) { input:not([type=checkbox]):not([type=radio]):not([type=range]) {
height: calc( (1rem * var(--line-height)) + (var(--form-element-spacing-vertical) * 2) + (var(--border-width) * 2) ); height: calc(1rem * var(--line-height) + var(--form-element-spacing-vertical) * 2 + var(--border-width) * 2);
} }
fieldset { fieldset {

File diff suppressed because one or more lines are too long

View file

@ -1220,7 +1220,7 @@ textarea {
} }
input:not([type=checkbox]):not([type=radio]):not([type=range]) { input:not([type=checkbox]):not([type=radio]):not([type=range]) {
height: calc( (1rem * var(--line-height)) + (var(--form-element-spacing-vertical) * 2) + (var(--border-width) * 2) ); height: calc(1rem * var(--line-height) + var(--form-element-spacing-vertical) * 2 + var(--border-width) * 2);
} }
fieldset { fieldset {

View file

@ -1011,7 +1011,7 @@ textarea {
} }
input:not([type=checkbox]):not([type=radio]):not([type=range]) { input:not([type=checkbox]):not([type=radio]):not([type=range]) {
height: calc( (1rem * var(--line-height)) + (var(--form-element-spacing-vertical) * 2) + (var(--border-width) * 2) ); height: calc(1rem * var(--line-height) + var(--form-element-spacing-vertical) * 2 + var(--border-width) * 2);
} }
fieldset { fieldset {

File diff suppressed because one or more lines are too long

2
css/pico.min.css vendored

File diff suppressed because one or more lines are too long

View file

@ -1165,7 +1165,7 @@ textarea {
} }
input:not([type=checkbox]):not([type=radio]):not([type=range]) { input:not([type=checkbox]):not([type=radio]):not([type=range]) {
height: calc( (1rem * var(--line-height)) + (var(--form-element-spacing-vertical) * 2) + (var(--border-width) * 2) ); height: calc(1rem * var(--line-height) + var(--form-element-spacing-vertical) * 2 + var(--border-width) * 2);
} }
fieldset { fieldset {

File diff suppressed because one or more lines are too long

1089
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -43,17 +43,17 @@
"watch": "npm-run-all --parallel watch:scss watch:scss:docs watch:js:docs" "watch": "npm-run-all --parallel watch:scss watch:scss:docs watch:js:docs"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.15.4", "@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5", "@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.6", "@babel/preset-env": "^7.15.8",
"autoprefixer": "^10.3.4", "autoprefixer": "^10.3.7",
"clean-css-cli": "^5.3.3", "clean-css-cli": "^5.4.2",
"nodemon": "^2.0.12", "nodemon": "^2.0.14",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"postcss": "^8.3.6", "postcss": "^8.3.6",
"postcss-cli": "^8.3.1", "postcss-cli": "^9.0.1",
"rollup": "^2.56.3", "rollup": "^2.58.0",
"sass": "^1.39.0", "sass": "^1.43.3",
"uglify-js": "^3.14.1" "uglify-js": "^3.14.2"
} }
} }