@oslokommune/punkt-react 7.0.0 → 7.1.2

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,42 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
5
5
 
6
6
  ---
7
7
 
8
+ ## [7.1.2](https://github.com/oslokommune/punkt/compare/7.1.1...7.1.2) (2023-09-08)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ Ingen
15
+
16
+ ### Bug Fixes
17
+ * Fix value on textarea.
18
+
19
+
20
+ ### Chores
21
+ Ingen
22
+
23
+ ---
24
+
25
+
26
+ ## [7.1.0](https://github.com/oslokommune/punkt/compare/7.0.0...7.1.0) (2023-09-08)
27
+
28
+ ### ⚠ BREAKING CHANGES
29
+ Ingen
30
+
31
+ ### Features
32
+ * [1093](https://github.com/oslokommune/punkt/issues/1093) Backlink. Se dokumentasjonsnettstedet om Backlink
33
+
34
+
35
+ ### Bug Fixes
36
+ Ingen
37
+
38
+ ### Chores
39
+ Ingen
40
+
41
+ ---
42
+
43
+
8
44
  ## [7.0.0](https://github.com/oslokommune/punkt/compare/6.0.6...7.0.0) (2023-09-07)
9
45
 
10
46
  ### ⚠ BREAKING CHANGES
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ export interface IPktBackLink extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
3
+ href?: string;
4
+ text?: string;
5
+ onClick?: () => void;
6
+ className?: string;
7
+ }
8
+ export declare const PktBackLink: React.ForwardRefExoticComponent<IPktBackLink & React.RefAttributes<HTMLAnchorElement>>;
9
+ export default PktBackLink;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { PktAlert } from './alert/Alert';
2
+ export { PktBackLink } from './backlink/BackLink';
2
3
  export { PktButton } from './button/Button';
3
4
  export { PktFooter } from './footer/Footer';
4
5
  export { PktFooterSimple } from './footerSimple/FooterSimple';