@oslokommune/punkt-react 3.1.2 → 3.2.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
@@ -34,8 +34,8 @@ Ingen
34
34
  Ingen
35
35
 
36
36
  ### Chores
37
- * [670](https://github.com/oslokommune/punkt/issues/670) Generer changelog automatisk (#746). Changelog genereres nå automatisk utifra commits, så lenge de følger Convential commits malen.
38
-
37
+ * [670](https://github.com/oslokommune/punkt/issues/670) Generer changelog automatisk (#746). Changelog genereres nå automatisk utifra commits, så lenge de følger Convential commits malen.
38
+
39
39
  Dette er dokumentert i [CONTRIBUTING.md](https://github.com/oslokommune/punkt/blob/main/CONTRIBUTING.md) og i [scriptet som gjør dette ved publisering](https://github.com/oslokommune/punkt/blob/main/scripts/update-changelog.js).
40
40
 
41
41
 
package/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@ export { PktAlert } from './alert/Alert';
2
2
  export { PktButton } from './button/Button';
3
3
  export { PktHeader } from './header/Header';
4
4
  export { PktInput } from './input/Input';
5
+ export { PktLinkCard } from './linkcard/LinkCard';
5
6
  export { PktMessagebox } from './messagebox/Messagebox';
6
7
  export { PktTextarea } from './textarea/Textarea';
7
8
  export { PktRadio } from './radio/Radio';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IPktLinkCard extends React.HTMLAttributes<HTMLDivElement> {
3
+ skin?: 'normal' | 'blue' | 'beige' | 'beige-outline' | 'grey-outline';
4
+ title?: string;
5
+ href?: string;
6
+ iconName?: string;
7
+ }
8
+ export declare const PktLinkCard: React.FC<IPktLinkCard>;