@midas-ds/layout 0.0.41 → 0.0.43

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/README.md +13 -4
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## 0.0.43 (2026-04-08)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated components to 17.11.0
6
+
7
+ ## 0.0.42 (2026-04-07)
8
+
9
+ ### 🩹 Fixes
10
+
11
+ - **layout, navbar:** add conditional rendering ([d7719091d7](https://github.com/migrationsverket/midas/commit/d7719091d7))
12
+ - **layout, mobile-menu:** support controlled state ([ec0e718648](https://github.com/migrationsverket/midas/commit/ec0e718648))
13
+
14
+ ### 📖 Documentation changes
15
+
16
+ - **docs,layout:** add @midas-ds/layout documentation ([63a7eb4e46](https://github.com/migrationsverket/midas/commit/63a7eb4e46))
17
+
18
+ ### 🔙 Rollback changes
19
+
20
+ - **layout,mobile-menu:** remove controlled state, update docs to reflect actual behavior ([9445142647](https://github.com/migrationsverket/midas/commit/9445142647))
21
+ - **layout, navbar:** Revert "fix(layout, navbar): add conditional rendering" ([a93b6719cf](https://github.com/migrationsverket/midas/commit/a93b6719cf))
22
+
1
23
  ## 0.0.41 (2026-04-07)
2
24
 
3
25
  ### 🧱 Updated Dependencies
package/README.md CHANGED
@@ -1,7 +1,16 @@
1
- # layout
1
+ # @midas-ds/layout
2
2
 
3
- This library was generated with [Nx](https://nx.dev).
3
+ [![npm version](https://img.shields.io/npm/v/@midas-ds/layout?style=flat-square&color=cb3837)](https://www.npmjs.com/package/@midas-ds/layout)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@midas-ds/layout?style=flat-square)](https://www.npmjs.com/package/@midas-ds/layout)
4
5
 
5
- ## Running unit tests
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
- Run `nx test layout` to execute the unit tests via [Vitest](https://vitest.dev/).
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
@@ -14,7 +14,7 @@
14
14
  "description": "Midas Layout components",
15
15
  "homepage": "https://designsystem.migrationsverket.se/",
16
16
  "license": "CC0-1.0",
17
- "version": "0.0.41",
17
+ "version": "0.0.43",
18
18
  "module": "./index.js",
19
19
  "type": "module",
20
20
  "main": "./index.js",
@@ -36,6 +36,6 @@
36
36
  "./*": "./*/index.js"
37
37
  },
38
38
  "dependencies": {
39
- "@midas-ds/components": "17.10.17"
39
+ "@midas-ds/components": "17.11.0"
40
40
  }
41
41
  }