@oslokommune/punkt-react 17.1.0 → 17.1.2
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/CONTRIBUTING.md +1 -1
- package/README.md +1 -1
- package/dist/components/timepicker/useTimepickerState.d.ts +1 -1
- package/dist/punkt-react.cjs +1 -1
- package/dist/punkt-react.js +1052 -1034
- package/dist/shared-utils/date-utils.d.ts +16 -16
- package/dist/shared-utils/datepicker-utils.d.ts +11 -11
- package/dist/shared-utils/device-utils.d.ts +1 -1
- package/dist/shared-utils/utils.d.ts +2 -2
- package/dist/shared-utils/value-utils.d.ts +2 -2
- package/package.json +8 -7
- package/src/components/breadcrumbs/Breadcrumbs.test.tsx +1 -13
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
|
+
## [17.1.2](https://github.com/oslokommune/punkt/compare/17.1.1...17.1.2) (2026-08-24)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
Ingen
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
Ingen
|
|
18
|
+
|
|
19
|
+
### Chores
|
|
20
|
+
* Oppdater Typescript til 7.0.2 og Node til 24.19 (#3605).
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
|
|
8
26
|
## [17.1.0](https://github.com/oslokommune/punkt/compare/17.0.10...17.1.0) (2026-08-24)
|
|
9
27
|
|
|
10
28
|
### ⚠ BREAKING CHANGES
|
package/CONTRIBUTING.md
CHANGED
|
@@ -8,7 +8,7 @@ er at vi høflig ber deg endre på noe. **Vi setter pris på alle hyggelige bidr
|
|
|
8
8
|
|
|
9
9
|
## 📝 Forutsetninger
|
|
10
10
|
|
|
11
|
-
- nodejs 24.
|
|
11
|
+
- nodejs 24.19.0
|
|
12
12
|
- Kunnskap om [Sass (SCSS)](https://sass-lang.com/) og [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS).
|
|
13
13
|
- Forståelse av [BEM-navnekonvensjoner](http://getbem.com/) som designsystemet følger.
|
|
14
14
|
- Noen skal ha designet komponenten i [Figma](https://www.figma.com/file/Eej5jm3jIUjeMfzLE0aOTB/Punkt---Origo-designsystem?node-id=0%3A1&t=VDbEaltk80wYiYn3-0) (Krever innlogging og tilgang).
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ export declare function useTimepickerState(props: IPktTimepicker, ref: React.For
|
|
|
6
6
|
containerRef: import('react').RefObject<HTMLDivElement | null>;
|
|
7
7
|
outerClasses: string;
|
|
8
8
|
inputSize: TPktInputSize;
|
|
9
|
-
strings: import('
|
|
9
|
+
strings: import('../../shared-types').ITimepickerStrings;
|
|
10
10
|
label: string;
|
|
11
11
|
disabled: boolean;
|
|
12
12
|
required: boolean;
|