@helsenorge/datepicker 9.4.0 → 9.4.3

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,32 @@
1
+ ## [9.4.2](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv9.4.1&targetVersion=GTv9.4.2) (2024-12-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * avrundingsfeil på noen ikoner ([b23e4ae](https://github.com/helsenorge/designsystem/commit/b23e4aec495395cbf92642be6657b03cc5765a2b)), closes [#337174](https://github.com/helsenorge/designsystem/issues/337174)
7
+ * **expander:** sticky fungerer igjen ([0f179a1](https://github.com/helsenorge/designsystem/commit/0f179a12aa0d1da98cc3832ab2bf1cb60f2d1d75)), closes [#338697](https://github.com/helsenorge/designsystem/issues/338697)
8
+ * **tabs:** swipe og scrollintoview oppfører seg rart ([4d1c98f](https://github.com/helsenorge/designsystem/commit/4d1c98f92c728c4c83c4d89ca696990992f1f880)), closes [#328640](https://github.com/helsenorge/designsystem/issues/328640)
9
+ * **tile:** title spacing endringer ([28f852d](https://github.com/helsenorge/designsystem/commit/28f852dd361ff21bc77010d3d940677eaf82986f)), closes [#336171](https://github.com/helsenorge/designsystem/issues/336171)
10
+
11
+ ## [9.4.1](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv9.4.0&targetVersion=GTv9.4.1) (2024-11-25)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **tile:** compact title plasseres riktig ([72f7281](https://github.com/helsenorge/designsystem/commit/72f72818f9135d4489c29275ab4abbd746c324fd)), closes [#336170](https://github.com/helsenorge/designsystem/issues/336170)
17
+
18
+ ## [9.4.0](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv9.3.0&targetVersion=GTv9.4.0) (2024-11-22)
19
+
20
+
21
+ ### Features
22
+
23
+ * nye ikoner ([c18b15a](https://github.com/helsenorge/designsystem/commit/c18b15a31ad1109c23c72bffcafe41de2c795af2)), closes [#334685](https://github.com/helsenorge/designsystem/issues/334685)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * **datepicker:** sjekk for klikking utenfor popup fungerer ikke i webcomp ([7a831f9](https://github.com/helsenorge/designsystem/commit/7a831f929fd9b529e4e080e22db5cad1dbf6c2b8)), closes [#337485](https://github.com/helsenorge/designsystem/issues/337485)
29
+
1
30
  ## [9.3.0](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv9.2.0&targetVersion=GTv9.3.0) (2024-11-20)
2
31
 
3
32
 
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
2
  import { Locale } from 'date-fns';
3
3
  import { DayPickerSingleProps } from 'react-day-picker';
4
4
  import { ErrorWrapperClassNameProps } from '@helsenorge/designsystem-react/components/ErrorWrapper';
@@ -1 +0,0 @@
1
- import '@testing-library/jest-dom';
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
2
  import { DayPickerSingleProps } from 'react-day-picker';
3
3
  import { PopOverVariant } from '@helsenorge/designsystem-react/components/PopOver';
4
4
  interface DatePickerPopupProps extends Pick<DayPickerSingleProps, 'dir' | 'disabled' | 'footer' | 'fromDate' | 'initialFocus' | 'locale' | 'month' | 'selected' | 'onSelect' | 'onMonthChange' | 'toDate'> {
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
2
  import { ErrorWrapperClassNameProps } from '@helsenorge/designsystem-react/components/ErrorWrapper';
3
3
  export type TimeUnit = 'hours' | 'minutes';
4
4
  export interface DateTimeProps extends ErrorWrapperClassNameProps, Pick<React.InputHTMLAttributes<HTMLInputElement>, 'name' | 'aria-describedby' | 'aria-labelledby' | 'onBlur' | 'onChange' | 'disabled' | 'autoComplete'> {
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
2
  import { ErrorWrapperClassNameProps } from '@helsenorge/designsystem-react/components/ErrorWrapper';
3
3
  export type TimeUnits = 'hours' | 'minutes';
4
4
  interface DateTimePickerWrapperProps extends ErrorWrapperClassNameProps {