@oslokommune/punkt-react 14.3.0 → 14.4.0
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 +18 -0
- package/dist/index.d.ts +2 -0
- package/dist/punkt-react.es.js +3160 -2990
- package/dist/punkt-react.umd.js +205 -205
- package/package.json +3 -3
- package/src/components/header/HeaderService.tsx +2 -0
- package/src/components/header/types.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [14.3.1](https://github.com/oslokommune/punkt/compare/14.3.0...14.3.1) (2026-02-05)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* Støtte for className i PktHeader (#3228).
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
8
26
|
## [14.3.0](https://github.com/oslokommune/punkt/compare/14.2.0...14.3.0) (2026-02-04)
|
|
9
27
|
|
|
10
28
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED
|
@@ -297,6 +297,8 @@ export declare interface IPktFooterSimple extends HTMLAttributes<HTMLDivElement>
|
|
|
297
297
|
|
|
298
298
|
export declare interface IPktHeader {
|
|
299
299
|
children?: React.ReactNode;
|
|
300
|
+
/** Additional CSS class name(s) to apply to the header */
|
|
301
|
+
className?: string;
|
|
300
302
|
/** Set dark mode on the header */
|
|
301
303
|
'data-mode'?: 'dark';
|
|
302
304
|
/** Hide the Oslo logo. Default: false (logo is shown) */
|