@helsenorge/datepicker 8.2.0 → 8.3.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,24 @@
|
|
|
1
|
+
## [8.2.1](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv8.2.0&targetVersion=GTv8.2.1) (2024-08-28)
|
|
2
|
+
|
|
3
|
+
## [8.2.0](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv8.1.1&targetVersion=GTv8.2.0) (2024-08-28)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- nye ikoner ([f142728](https://github.com/helsenorge/designsystem/commit/f142728c1eb29c0742cfdddad183d116ca801537)), closes
|
|
8
|
+
[#330973](https://github.com/helsenorge/designsystem/issues/330973)
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- datovelger fungerer med klikk på dato i popup
|
|
13
|
+
([897302c](https://github.com/helsenorge/designsystem/commit/897302cd9cf4de3d1bea911e14ad8760d9401d41)), closes
|
|
14
|
+
[#326414](https://github.com/helsenorge/designsystem/issues/326414)
|
|
15
|
+
- expander large spacing matcher expander-list
|
|
16
|
+
([724f3ca](https://github.com/helsenorge/designsystem/commit/724f3cac605dbbe3bece97d93ee88524e8263411)), closes
|
|
17
|
+
[#326162](https://github.com/helsenorge/designsystem/issues/326162)
|
|
18
|
+
- useFocusableElements lytter bare på relevante DOM-endringer
|
|
19
|
+
([375303f](https://github.com/helsenorge/designsystem/commit/375303f1d20490c2d37f2cc997e4730cbee763b5)), closes
|
|
20
|
+
[#328890](https://github.com/helsenorge/designsystem/issues/328890)
|
|
21
|
+
|
|
1
22
|
## [8.1.1](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv8.1.0&targetVersion=GTv8.1.1) (2024-08-26)
|
|
2
23
|
|
|
3
24
|
### Bug Fixes
|
|
@@ -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 */
|