@midas-ds/layout 0.0.41 → 0.0.42
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 +16 -0
- package/README.md +13 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## 0.0.42 (2026-04-07)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **layout, navbar:** add conditional rendering ([d7719091d7](https://github.com/migrationsverket/midas/commit/d7719091d7))
|
|
6
|
+
- **layout, mobile-menu:** support controlled state ([ec0e718648](https://github.com/migrationsverket/midas/commit/ec0e718648))
|
|
7
|
+
|
|
8
|
+
### 📖 Documentation changes
|
|
9
|
+
|
|
10
|
+
- **docs,layout:** add @midas-ds/layout documentation ([63a7eb4e46](https://github.com/migrationsverket/midas/commit/63a7eb4e46))
|
|
11
|
+
|
|
12
|
+
### 🔙 Rollback changes
|
|
13
|
+
|
|
14
|
+
- **layout,mobile-menu:** remove controlled state, update docs to reflect actual behavior ([9445142647](https://github.com/migrationsverket/midas/commit/9445142647))
|
|
15
|
+
- **layout, navbar:** Revert "fix(layout, navbar): add conditional rendering" ([a93b6719cf](https://github.com/migrationsverket/midas/commit/a93b6719cf))
|
|
16
|
+
|
|
1
17
|
## 0.0.41 (2026-04-07)
|
|
2
18
|
|
|
3
19
|
### 🧱 Updated Dependencies
|
package/README.md
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
|
-
# layout
|
|
1
|
+
# @midas-ds/layout
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@midas-ds/layout)
|
|
4
|
+
[](https://www.npmjs.com/package/@midas-ds/layout)
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
Modulärt layoutpaket för att sätta ihop sidstruktur med komponenter. Del av [Midas Design System](https://github.com/migrationsverket/midas).
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @midas-ds/layout
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Dokumentation
|
|
15
|
+
|
|
16
|
+
Se [midas.migrationsverket.se](https://midas.migrationsverket.se/dev/layout) för fullständig dokumentation, API-referens och exempelkod.
|
package/package.json
CHANGED