@oslokommune/punkt-elements 16.5.1 → 16.6.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 +17 -0
- package/dist/index.d.ts +10 -5
- package/package.json +2 -2
- package/src/components/progressbar/progressbar.ts +10 -7
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,23 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [16.6.0](https://github.com/oslokommune/punkt/compare/16.5.1...16.6.0) (2026-04-07)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
Ingen
|
|
18
|
+
|
|
19
|
+
### Chores
|
|
20
|
+
Ingen
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
|
|
8
25
|
## [16.5.0](https://github.com/oslokommune/punkt/compare/16.4.0...16.5.0) (2026-03-27)
|
|
9
26
|
|
|
10
27
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED
|
@@ -28,6 +28,11 @@ import { TLayout } from '../../../../../shared-types';
|
|
|
28
28
|
import { TMessageboxSkin } from '../../../../../shared-types';
|
|
29
29
|
import { TPktComboboxTagPlacement } from '../../../../../shared-types/combobox';
|
|
30
30
|
import { TLogOutButtonPlacement as TPktHeaderLogOutButtonPlacement } from '../../../../../shared-types';
|
|
31
|
+
import { TProgressbarRole } from '../../../../../shared-types';
|
|
32
|
+
import { TProgressbarSkin } from '../../../../../shared-types';
|
|
33
|
+
import { TProgressbarStatusPlacement } from '../../../../../shared-types';
|
|
34
|
+
import { TProgressbarStatusType } from '../../../../../shared-types';
|
|
35
|
+
import { TProgressbarTitlePosition } from '../../../../../shared-types';
|
|
31
36
|
import { TSlotMenuVariant } from '../../../../../shared-types';
|
|
32
37
|
import { User } from '../../../../../shared-types';
|
|
33
38
|
import { UserMenuItem } from '../../../../../shared-types';
|
|
@@ -1838,15 +1843,15 @@ export declare type TPktLoaderVariant = 'blue' | 'rainbow' | 'shapes';
|
|
|
1838
1843
|
|
|
1839
1844
|
declare type TPktSize = 'small' | 'medium' | 'large';
|
|
1840
1845
|
|
|
1841
|
-
export
|
|
1846
|
+
export { TProgressbarRole }
|
|
1842
1847
|
|
|
1843
|
-
export
|
|
1848
|
+
export { TProgressbarSkin }
|
|
1844
1849
|
|
|
1845
|
-
export
|
|
1850
|
+
export { TProgressbarStatusPlacement }
|
|
1846
1851
|
|
|
1847
|
-
export
|
|
1852
|
+
export { TProgressbarStatusType }
|
|
1848
1853
|
|
|
1849
|
-
export
|
|
1854
|
+
export { TProgressbarTitlePosition }
|
|
1850
1855
|
|
|
1851
1856
|
export declare type TSelectOption = {
|
|
1852
1857
|
value: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslokommune/punkt-elements",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0",
|
|
4
4
|
"description": "Komponentbiblioteket til Punkt, et designsystem laget av Oslo Origo",
|
|
5
5
|
"homepage": "https://punkt.oslo.kommune.no",
|
|
6
6
|
"author": "Team Designsystem, Oslo Origo",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"url": "https://github.com/oslokommune/punkt/issues"
|
|
80
80
|
},
|
|
81
81
|
"license": "MIT",
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "a5df0ac2434d55a4c73421d970a55cc9329fec0e"
|
|
83
83
|
}
|
|
@@ -7,13 +7,16 @@ import { styleMap } from 'lit/directives/style-map.js'
|
|
|
7
7
|
import { uuidish } from 'shared-utils/utils'
|
|
8
8
|
|
|
9
9
|
import '@/components/icon'
|
|
10
|
-
import type {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
import type {
|
|
11
|
+
TAriaLive,
|
|
12
|
+
TProgressbarRole,
|
|
13
|
+
TProgressbarSkin,
|
|
14
|
+
TProgressbarStatusPlacement,
|
|
15
|
+
TProgressbarStatusType,
|
|
16
|
+
TProgressbarTitlePosition,
|
|
17
|
+
} from 'shared-types'
|
|
18
|
+
|
|
19
|
+
export type { TProgressbarRole, TProgressbarSkin, TProgressbarStatusPlacement, TProgressbarStatusType, TProgressbarTitlePosition }
|
|
17
20
|
|
|
18
21
|
export interface IPktProgressbar {
|
|
19
22
|
ariaLabel?: string | null
|