Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 10.8.6 #909

Merged
merged 2 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [10.8.5] - 25.08.2023
## \[10.8.6\] - 13.09.2023

## Bug Fixes

Expand All @@ -17,4 +17,4 @@

## Design System website

- expand components preview containers to full screen
- expand components preview containers to full screen (only in Topbar component for now)
62 changes: 31 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swedbankpay/design-guide",
"version": "10.8.5",
"version": "10.8.6",
"description": "Swedbank Pay Design Guide",
"main": "src/scripts/main/index.js",
"scripts": {
Expand Down Expand Up @@ -61,7 +61,7 @@
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "^7.18.6",
"@playwright/test": "^1.38.1",
"@playwright/test": "^1.39.0",
"@sentry/webpack-plugin": "^1.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exports[`ComponentsDocumentation: index renders 1`] = `
className="dg-current-version text-uppercase"
>
Design Guide – v.
10.8.5
10.8.6
</span>
</div>
`;
31 changes: 31 additions & 0 deletions src/App/Home/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,37 @@ import CodeTags from "@components/CodeTags";
const basename = process.env.basename;

export const changeLogs = [
{
version: "10.8.6",
title: "The one with little handy UI helpers",
text: (
<>
<p>We&apos;re back in action, armed with nifty UI helpers 🧰🚀🎁.</p>
<p>
Ever find yourself awake at night, sweating, pondering how life would
be better if there were a way to disable the icon rotation in the
dropdown toggle button when you open it? I know, right?
Comment on lines +14 to +16

Choose a reason for hiding this comment

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

Hahahah 😂

</p>
<p>
And what if I told you you could now style those bank-ID buttons as
secondary buttons? Isn&apos;t that something you&apos;ve been
daydreaming about for years?
Comment on lines +19 to +21

Choose a reason for hiding this comment

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

YES!

</p>
<p>
But wait, there&apos;s more! How about a magical button that
transforms your component&apos;s preview container into a full-screen
extravaganza, delivering the ultimate home-cinema experience for your
components? It&apos;s like fulfilling a lifelong dream you didn&apos;t
even know you had since you were a little kid! 👶🎁
<br />
<span className="font-italic">
(for now only enabled for the Topbar component, but if YOU public
like it then we&apos;ll expand it to the rest 🎤)
</span>
</p>
</>
),
},
{
version: "10.8.5",
title: "The CSS url / Import Patch 🐛🔨",
Expand Down
2 changes: 1 addition & 1 deletion src/App/Identity/__snapshots__/index.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exports[`Core: index renders 1`] = `
className="dg-current-version text-uppercase"
>
Design Guide – v.
10.8.5
10.8.6
</span>
</div>
`;
2 changes: 1 addition & 1 deletion src/App/Patterns/__snapshots__/index.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exports[`Patterns: index renders 1`] = `
className="dg-current-version text-uppercase"
>
Design Guide – v.
10.8.5
10.8.6
</span>
</div>
`;
2 changes: 1 addition & 1 deletion src/App/Utilities/__snapshots__/index.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exports[`Utilities: index renders 1`] = `
className="dg-current-version text-uppercase"
>
Design Guide - v.
10.8.5
10.8.6
</span>
<div
className="d-flex align-items-center"
Expand Down
Loading