Skip to content

Commit

Permalink
Merge pull request #272 from EvgenyOrekhov/update_dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
EvgenyOrekhov authored Nov 10, 2023
2 parents cb52969 + 026dce6 commit cd76d8b
Show file tree
Hide file tree
Showing 11 changed files with 4,002 additions and 3,086 deletions.
7,011 changes: 3,960 additions & 3,051 deletions package-lock.json

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,29 @@
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@storybook/addon-actions": "^7.0.7",
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-links": "^7.0.24",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/react": "^7.0.7",
"@storybook/react-webpack5": "^7.0.24",
"@twinscom/stylelint-config": "^9.0.0",
"babel-loader": "^9.1.2",
"chromatic": "^6.19.9",
"@storybook/react-webpack5": "^7.5.3",
"@twinscom/stylelint-config": "^10.0.0",
"babel-loader": "^9.1.3",
"chromatic": "^9.0.0",
"cross-env": "^7.0.3",
"highlight.js": "^11.8.0",
"highlight.js": "^11.9.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"lint-staged": "^15.0.2",
"modern-normalize": "^2.0.0",
"prettier": "^2.8.8",
"prettier": "^3.0.3",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"replace": "^1.2.2",
"storybook": "^7.0.24",
"stylelint": "^15.9.0"
"storybook": "^7.5.3",
"stylelint": "^15.11.0"
},
"lint-staged": {
"*.{js,css,json,yml,yaml,md,html}": "prettier --write",
Expand Down
11 changes: 9 additions & 2 deletions site/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,15 @@ Of course! Go ahead and create some!

.big-neon-button:focus,
.big-neon-button:enabled:hover {
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #49ff18,
0 0 30px #49ff18, 0 0 40px #49ff18, 0 0 55px #49ff18, 0 0 75px #49ff18;
text-shadow:
0 0 5px #fff,
0 0 10px #fff,
0 0 15px #fff,
0 0 20px #49ff18,
0 0 30px #49ff18,
0 0 40px #49ff18,
0 0 55px #49ff18,
0 0 75px #49ff18;
border-color: #fff;
}
```
Expand Down
6 changes: 3 additions & 3 deletions site/template.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down Expand Up @@ -60,11 +60,11 @@ <h1>
toggle.addEventListener("colorschemechange", () => {
document.documentElement.classList.toggle(
"holiday-css-dark",
toggle.mode === "dark"
toggle.mode === "dark",
);
document.documentElement.classList.toggle(
"holiday-css-light",
toggle.mode === "light"
toggle.mode === "light",
);
});
</script>
Expand Down
2 changes: 1 addition & 1 deletion src/code.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
2 changes: 2 additions & 0 deletions src/css/mobile.css
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ legend + label {
vertical-align: text-bottom;
}

/* stylelint-disable-next-line plugin/stylelint-group-selectors -- conflicts
with no-descending-specificity */
blockquote > p:first-child,
fieldset > label:first-child {
margin-top: 0;
Expand Down
14 changes: 6 additions & 8 deletions src/css/themes/bulma.css
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,10 @@ input:not([type]):disabled,
[type="url"]:disabled,
[type="week"]:disabled,
textarea:disabled,
select:disabled {
select:disabled,
thead > tr:nth-child(even),
tbody > tr:nth-child(even),
tfoot > tr:nth-child(even) {
background-color: var(--highlighted-background-color);
}

Expand Down Expand Up @@ -367,12 +370,6 @@ tfoot > tr:not(:first-child) {
border-top: var(--border-width) solid var(--border-color);
}

thead > tr:nth-child(even),
tbody > tr:nth-child(even),
tfoot > tr:nth-child(even) {
background-color: var(--highlighted-background-color);
}

kbd {
background-color: var(--highlighted-background-color);
border: var(--border-width) solid var(--border-hover-color);
Expand All @@ -383,7 +380,8 @@ kbd {
kbd kbd {
border: unset;
border-radius: 0;
box-shadow: inset 0 -0.2rem 0 0 var(--background-color),
box-shadow:
inset 0 -0.2rem 0 0 var(--background-color),
inset 0 0.2rem 0 0 var(--background-color);
}

Expand Down
6 changes: 3 additions & 3 deletions src/highlightjs.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand All @@ -17,7 +17,7 @@
<link rel="stylesheet" href="css/themes/bulma.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.7.0/build/styles/default.min.css"
href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/styles/default.min.css"
/>
</head>

Expand All @@ -30,7 +30,7 @@
}
</code></pre>
</main>
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.7.0/build/highlight.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/highlight.min.js"></script>
<script>
hljs.highlightAll();
</script>
Expand Down
6 changes: 3 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down Expand Up @@ -1651,11 +1651,11 @@ <h3>&lt;dialog&gt;</h3>
toggle.addEventListener("colorschemechange", () => {
document.documentElement.classList.toggle(
"holiday-css-dark",
toggle.mode === "dark"
toggle.mode === "dark",
);
document.documentElement.classList.toggle(
"holiday-css-light",
toggle.mode === "light"
toggle.mode === "light",
);
});
</script>
Expand Down
2 changes: 1 addition & 1 deletion src/prism.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
2 changes: 1 addition & 1 deletion src/stories/forms/input/radio.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const LabelWithMarkupAfterRadioTemplate = (args) => (
);

export const labelWithMarkupAfterRadio = LabelWithMarkupAfterRadioTemplate.bind(
{}
{},
);

labelWithMarkupAfterRadio.storyName = "<label> with markup after radio";
Expand Down

1 comment on commit cd76d8b

@vercel
Copy link

@vercel vercel bot commented on cd76d8b Nov 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.