@oslokommune/punkt-react 12.5.2 → 12.5.3

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,24 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
5
5
 
6
6
  ---
7
7
 
8
+ ## [12.5.3](https://github.com/oslokommune/punkt/compare/12.5.2...12.5.3) (2024-10-30)
9
+
10
+ ### ⚠ BREAKING CHANGES
11
+ Ingen
12
+
13
+ ### Features
14
+ Ingen
15
+
16
+ ### Bug Fixes
17
+ * Formattering for å trigge nytt React-bygg (type-problemer) (#1988).
18
+
19
+
20
+ ### Chores
21
+ Ingen
22
+
23
+ ---
24
+
25
+
8
26
  ## [12.5.1](https://github.com/oslokommune/punkt/compare/12.5.0...12.5.1) (2024-10-29)
9
27
 
10
28
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oslokommune/punkt-react",
3
- "version": "12.5.2",
3
+ "version": "12.5.3",
4
4
  "description": "React komponentbibliotek til Punkt, et designsystem laget av Oslo Origo",
5
5
  "homepage": "https://punkt.oslo.kommune.no",
6
6
  "author": "Team Designsystem, Oslo Origo",
@@ -111,5 +111,5 @@
111
111
  "url": "https://github.com/oslokommune/punkt/issues"
112
112
  },
113
113
  "license": "MIT",
114
- "gitHead": "424129e45652c610b061e04186913ce42d62ead6"
114
+ "gitHead": "6a9750cb54ebfb29b693dbb263eebaa73dd7f28d"
115
115
  }
@@ -3,12 +3,12 @@ import React, { ForwardedRef, forwardRef, useState } from 'react'
3
3
  import { PktIcon } from '../icon/Icon'
4
4
 
5
5
  export interface IPktTag extends React.ButtonHTMLAttributes<HTMLButtonElement> {
6
- skin?: 'blue' | 'green' | 'red' | 'beige' | 'yellow' | 'grey'| 'gray' | 'blue-light';
7
- textStyle?: 'normal-text' | 'thin-text';
8
- size?: 'small' | 'medium' | 'large';
9
- closeTag?: boolean;
10
- iconName?: string;
11
- ariaLabel?: string;
6
+ skin?: 'blue' | 'green' | 'red' | 'beige' | 'yellow' | 'grey' | 'gray' | 'blue-light'
7
+ textStyle?: 'normal-text' | 'thin-text'
8
+ size?: 'small' | 'medium' | 'large'
9
+ closeTag?: boolean
10
+ iconName?: string
11
+ ariaLabel?: string
12
12
  }
13
13
 
14
14
  export const PktTag = forwardRef(