@oslokommune/punkt-react 9.0.1 → 9.1.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 CHANGED
@@ -5,6 +5,27 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
5
5
 
6
6
  ---
7
7
 
8
+ ## [9.1.0](https://github.com/oslokommune/punkt/compare/9.0.1...9.1.0) (2023-10-05)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ * [1202](https://github.com/oslokommune/punkt/issues/1202) Valgfrie lenker i footer. Du har nå mulighet til å legge egen href i lenkene Personverns og informasjonskapsler, og tilgjengelighet.
15
+ Nye props i PktFooter og PktFooterSimple:
16
+ personvernOgInfoLink?: string
17
+ tilgjengelighetLink?: string
18
+
19
+
20
+ ### Bug Fixes
21
+ Ingen
22
+
23
+ ### Chores
24
+ Ingen
25
+
26
+ ---
27
+
28
+
8
29
  ## [9.0.1](https://github.com/oslokommune/punkt/compare/9.0.0...9.0.1) (2023-10-04)
9
30
 
10
31
  ### ⚠ BREAKING CHANGES
@@ -20,6 +20,8 @@ export interface IPktFooter extends React.HTMLAttributes<HTMLDivElement> {
20
20
  columnOne: Column;
21
21
  columnTwo: Column;
22
22
  socialLinks?: SocialLink[];
23
+ personvernOgInfoLink?: string;
24
+ tilgjengelighetLink?: string;
23
25
  }
24
26
  export declare const PktFooter: React.FC<IPktFooter>;
25
27
  export {};
@@ -6,5 +6,7 @@ export interface IPktFooterSimple extends React.HTMLAttributes<HTMLDivElement> {
6
6
  external?: boolean;
7
7
  openInNewTab?: boolean;
8
8
  }>;
9
+ personvernOgInfoLink?: string;
10
+ tilgjengelighetLink?: string;
9
11
  }
10
12
  export declare const PktFooterSimple: React.FC<IPktFooterSimple>;