@oslokommune/punkt-elements 13.7.0 → 13.8.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 +5 -5
- package/package.json +2 -2
- package/src/components/icon/icon.ts +1 -1
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
|
+
## [13.8.0](https://github.com/oslokommune/punkt/compare/13.7.0...13.8.0) (2025-10-15)
|
|
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
|
## [13.7.0](https://github.com/oslokommune/punkt/compare/13.6.16...13.7.0) (2025-10-14)
|
|
9
26
|
|
|
10
27
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED
|
@@ -1051,12 +1051,12 @@ declare class PktListbox extends PktElement implements IPktListbox {
|
|
|
1051
1051
|
updated(changedProperties: PropertyValues): void;
|
|
1052
1052
|
attributeChangedCallback(name: string, _old: string | null, value: string | null): void;
|
|
1053
1053
|
render(): TemplateResult<1>;
|
|
1054
|
-
renderCheckboxOrCheckIcon(option: IPktComboboxOption, index: number): TemplateResult<1
|
|
1054
|
+
renderCheckboxOrCheckIcon(option: IPktComboboxOption, index: number): typeof nothing | TemplateResult<1>;
|
|
1055
1055
|
renderList(): TemplateResult<1>;
|
|
1056
|
-
renderNewOptionBanner(): TemplateResult<1
|
|
1057
|
-
renderMaximumReachedBanner(): TemplateResult<1
|
|
1058
|
-
renderUserMessage(): TemplateResult<1
|
|
1059
|
-
renderSearch(): TemplateResult<1
|
|
1056
|
+
renderNewOptionBanner(): typeof nothing | TemplateResult<1>;
|
|
1057
|
+
renderMaximumReachedBanner(): typeof nothing | TemplateResult<1>;
|
|
1058
|
+
renderUserMessage(): typeof nothing | TemplateResult<1>;
|
|
1059
|
+
renderSearch(): typeof nothing | TemplateResult<1>;
|
|
1060
1060
|
handleSearchInput(e: InputEvent): void;
|
|
1061
1061
|
handleSearchKeydown(e: KeyboardEvent): void;
|
|
1062
1062
|
handleOptionKeydown(e: KeyboardEvent): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oslokommune/punkt-elements",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.8.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",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"url": "https://github.com/oslokommune/punkt/issues"
|
|
81
81
|
},
|
|
82
82
|
"license": "MIT",
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "291eaf91a93ce286149605e36547068da3bf90e9"
|
|
84
84
|
}
|
|
@@ -71,7 +71,7 @@ export class PktIcon extends PktElement<Props> {
|
|
|
71
71
|
name: PktIconName = ''
|
|
72
72
|
|
|
73
73
|
@property({ type: SVGElement })
|
|
74
|
-
private icon:
|
|
74
|
+
private icon: ReturnType<typeof unsafeSVG> = unsafeSVG(errorSvg)
|
|
75
75
|
|
|
76
76
|
@property({ type: Array, noAccessor: true })
|
|
77
77
|
private _updatedProps: string[] = []
|