@oslokommune/punkt-react 4.3.1 → 5.0.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/icon/Icon.d.ts +5 -5
- package/dist/punkt-react.es.js +445 -430
- package/dist/punkt-react.umd.js +11 -11
- package/package.json +4 -4
- package/src/components/alert/Alert.tsx +4 -3
- package/src/components/footer/Footer.tsx +10 -6
- package/src/components/header/Header.tsx +2 -9
- package/src/components/icon/Icon.tsx +55 -14
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
|
+
## [5.0.0](https://github.com/oslokommune/punkt/compare/4.3.2...5.0.0) (2023-05-30)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
* [809](https://github.com/oslokommune/punkt/issues/809) Endre SVG oppsett (#851). BREAKING CHANGE: Ny dokumentasjon straks vi har testet dette ferdig
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
Ingen
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
Ingen
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
Ingen
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
8
26
|
## [4.3.0](https://github.com/oslokommune/punkt/compare/4.2.1...4.3.0) (2023-05-24)
|
|
9
27
|
|
|
10
28
|
### ⚠ BREAKING CHANGES
|
package/dist/icon/Icon.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
interface
|
|
3
|
-
name
|
|
4
|
-
|
|
2
|
+
interface PktIconProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
3
|
+
name?: string;
|
|
4
|
+
path?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare const PktIcon: React.FC<
|
|
7
|
-
export
|
|
6
|
+
export declare const PktIcon: React.FC<PktIconProps>;
|
|
7
|
+
export default PktIcon;
|