@helsenorge/datepicker 8.2.1 → 8.4.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
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
## [8.3.0](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv8.2.1&targetVersion=GTv8.3.0) (2024-09-09)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- statusdot oppdaterer utseende ([18927ec](https://github.com/helsenorge/designsystem/commit/18927ec1e9a6ca18eb0f528798d17f2e4edaa4e0)),
|
|
6
|
+
closes [#328986](https://github.com/helsenorge/designsystem/issues/328986)
|
|
7
|
+
- **datepicker:** ny prop onDatePickerClosed
|
|
8
|
+
([11c1f3b](https://github.com/helsenorge/designsystem/commit/11c1f3b5dd8e186793d9e057385450385a1814ec)), closes
|
|
9
|
+
[#329586](https://github.com/helsenorge/designsystem/issues/329586)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- **datepicker:** datevalue fungerer for mobil
|
|
14
|
+
([7202ba8](https://github.com/helsenorge/designsystem/commit/7202ba8dca1f6101ed7987fd947b9e58824946db)), closes
|
|
15
|
+
[#331620](https://github.com/helsenorge/designsystem/issues/331620)
|
|
16
|
+
- **datepicker:** onblur skjer riktig uten focuseddatepickerpopup
|
|
17
|
+
([e1662ed](https://github.com/helsenorge/designsystem/commit/e1662edbb486340352e9012c1ba8aeae43dca27e)), closes
|
|
18
|
+
[#329586](https://github.com/helsenorge/designsystem/issues/329586)
|
|
19
|
+
- **datepicker:** popup valg trigger onblur
|
|
20
|
+
([6d886cb](https://github.com/helsenorge/designsystem/commit/6d886cbc3bcfe9b97c0247389ca0238f29dd9f0a)), closes
|
|
21
|
+
[#329586](https://github.com/helsenorge/designsystem/issues/329586)
|
|
22
|
+
- **designsystem:** badge i panel vises til høyre på mobil
|
|
23
|
+
([2b6d63e](https://github.com/helsenorge/designsystem/commit/2b6d63e1a36d63ad41159fb637f896636ae58672)), closes
|
|
24
|
+
[#329338](https://github.com/helsenorge/designsystem/issues/329338)
|
|
25
|
+
|
|
26
|
+
## [8.2.1](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv8.2.0&targetVersion=GTv8.2.1) (2024-08-28)
|
|
27
|
+
|
|
1
28
|
## [8.2.0](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv8.1.1&targetVersion=GTv8.2.0) (2024-08-28)
|
|
2
29
|
|
|
3
30
|
### Features
|
|
@@ -39,6 +39,8 @@ export interface DatePickerProps extends Pick<React.InputHTMLAttributes<HTMLInpu
|
|
|
39
39
|
minDate?: Date;
|
|
40
40
|
/** onChange callback triggered by change in chosen date */
|
|
41
41
|
onChange?: (event: React.ChangeEvent<HTMLInputElement> | React.MouseEvent<Element, MouseEvent>, date: Date | string | undefined) => void;
|
|
42
|
+
/** Only use this to trigger validation. Callback triggered by change in chosen date via the datepicker popup */
|
|
43
|
+
onDatePopupClosed?: (date: Date | string | undefined) => void;
|
|
42
44
|
/** Sets the data-testid attribute. */
|
|
43
45
|
testId?: string;
|
|
44
46
|
/** Overrides the default z-index of DatePicker */
|