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.12.2 #997

Merged
merged 2 commits into from
Aug 16, 2024
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
28 changes: 6 additions & 22 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,16 @@
# Changelog

## \[10.12.1\] - 21.06.2024
## \[10.12.2\] - 14.08.2024

## Component changes

- Dialog
- Typography

- if no invoker or close btn JS fails gracefully, providing helpful feedback in the console instead of throwing Error
- CSS support for old syntax now checks it is not picked up also by the new syntax (make sure not dialog.dialog)
- new dialog can have multiple invokers
- change font family of "title 6"/h6 from Arial to the brand's headline font (e.g. "SwedbankPay Headline Bold" or "Futura PT W08 Demi" depending on brand)

- Buttons
- Progress-steps

- loading spinner of buttons keep their aspect-ratio even if the buttons is squashed, when they're in overflow state

- Cards

- add support for div.illustration & picture elements in lieu of the img element as illustrations of used in the cards component (changes in documentation will come in a future release)
- default cards wide with no img and no text content -> align-items: center (better default when title wraps)
- fix UI of the horizontal yellow line when the 1st and last steps are in state “ongoing selected”

- Dropdown

- dropdown.init() method now accept `id` parameter to initialize specific dropdowns, instead of always all dropdowns found in the DOM

- Utility classes

- Add utility classes for display grid and inline grid

## Technical changes

- chore deps (update deps packages minor versions)
- fix script for initating for a specific `id` (`init(id)`)
16 changes: 8 additions & 8 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swedbankpay/design-guide",
"version": "10.12.1",
"version": "10.12.2",
"description": "Swedbank Pay Design Guide",
"main": "src/scripts/main/index.js",
"scripts": {
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.12.1
10.12.2
</span>
</div>
`;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions src/App/Home/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,40 @@ import CodeTags from "@components/CodeTags";
const basename = process.env.basename;

export const changeLogs = [
{
version: "10.12.2",
title: "We're back, fresh and tanned with a summer breeze",
text: (
<>
<p>
How are you lovely people? Us in the design-system galaxy we&apos;re
doing great, thanks for asking. And we&apos;re bringing with us some
nice patches.
</p>
<p>
<strong>Typography</strong>
<br />
"Title 6" font-family switches from Arial to the brand's headline font
(e.g. Swedbank Headline Bold)
</p>
<p>
<strong>Progress bar</strong>
<br />
We're fixing a UI bug spotted by our beloved Martina, namely the
horizontal lines for the 1st and last steps when they are in selected
state.
</p>
<p>
<strong>Dropdown</strong>
<br />A big thank you to Ludvik Lund for his contribution, fixing a
bug in the dropdown script when initiating a specific dropdown (using
the dropdown element id as param for the init function). It should
work fine now
</p>
<p>Enjoy 💫</p>
</>
),
},
{
version: "10.12.1",
title: "Minor Bug Fixes & Supports Increase",
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.12.1
10.12.2
</span>
</div>
`;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.12.1
10.12.2
</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.12.1
10.12.2
</span>
<div
className="d-flex align-items-center"
Expand Down
Loading