@oslokommune/punkt-react 12.42.4 → 12.42.5
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 +19 -0
- package/dist/index.d.ts +9 -0
- package/dist/punkt-react.es.js +7205 -7175
- package/dist/punkt-react.umd.js +174 -174
- package/package.json +4 -4
- package/src/components/footer/Footer.tsx +12 -0
- package/src/components/footerSimple/FooterSimple.tsx +22 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,25 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [12.42.5](https://github.com/oslokommune/punkt/compare/12.42.4...12.42.5) (2025-06-18)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* Consent: Oppdater UKE cookie banner og legg til nye features (#2641). Bonus: Kvitte oss med avhengighet til CookieEvents fra CookieManager
|
|
18
|
+
Bonus 2: Kjapp fiks på Safari 15-problemer med Combobox…
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Chores
|
|
22
|
+
Ingen
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
|
|
8
27
|
## [12.42.1](https://github.com/oslokommune/punkt/compare/12.42.0...12.42.1) (2025-06-12)
|
|
9
28
|
|
|
10
29
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED
|
@@ -230,6 +230,10 @@ export declare interface IPktFooter extends default_2.HTMLAttributes<HTMLDivElem
|
|
|
230
230
|
includeConsent?: boolean;
|
|
231
231
|
hotjarId?: string | null;
|
|
232
232
|
googleAnalyticsId?: string | null;
|
|
233
|
+
devMode?: boolean;
|
|
234
|
+
cookieDomain?: string | null;
|
|
235
|
+
cookieSecure?: string | null;
|
|
236
|
+
cookieExpiryDays?: string | null;
|
|
233
237
|
onToggleConsent?: (e: CustomEvent) => void;
|
|
234
238
|
}
|
|
235
239
|
|
|
@@ -246,6 +250,11 @@ export declare interface IPktFooterSimple extends default_2.HTMLAttributes<HTMLD
|
|
|
246
250
|
includeConsent?: boolean;
|
|
247
251
|
hotjarId?: string | null;
|
|
248
252
|
googleAnalyticsId?: string | null;
|
|
253
|
+
devMode?: boolean;
|
|
254
|
+
cookieDomain?: string | null;
|
|
255
|
+
cookieSecure?: string | null;
|
|
256
|
+
cookieExpiryDays?: string | null;
|
|
257
|
+
onToggleConsent?: (e: CustomEvent) => void;
|
|
249
258
|
}
|
|
250
259
|
|
|
251
260
|
export declare interface IPktHeader extends HTMLAttributes<HTMLDivElement> {
|