@soleil-se/config-svelte 1.20.0 → 1.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.20.1] - 2023-09-25
|
|
9
|
+
|
|
10
|
+
- Fix element containting title in [Modal](./components/Modal).
|
|
11
|
+
|
|
8
12
|
## [1.20.0] - 2023-09-25
|
|
9
13
|
|
|
10
14
|
- Add footer slot in [Modal](./components/Modal).
|
|
@@ -149,8 +149,9 @@
|
|
|
149
149
|
<div class="modal-header">
|
|
150
150
|
<button class="close" aria-label="Stäng" type="button" on:click={close}>
|
|
151
151
|
<span aria-hidden="true">×</span>
|
|
152
|
-
<
|
|
152
|
+
<span class="sr-only">{i18n('close')}</span>
|
|
153
153
|
</button>
|
|
154
|
+
<h1 id={titleId} class="modal-title">{title}</h1>
|
|
154
155
|
</div>
|
|
155
156
|
<div class="modal-body">
|
|
156
157
|
{#if renderContent}
|