@helsenorge/datepicker 7.10.0 → 7.12.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,26 @@
1
+ ## [7.11.0](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv7.10.0&targetVersion=GTv7.11.0) (2024-06-20)
2
+
3
+ ### Features
4
+
5
+ - **button:** textposition prop får centered type
6
+ ([46d7ae0](https://github.com/helsenorge/designsystem/commit/46d7ae09e6ac1ec954355ed81c7d17f3786a01e8)), closes
7
+ [#320973](https://github.com/helsenorge/designsystem/issues/320973)
8
+
9
+ ## [7.10.0](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv7.9.0&targetVersion=GTv7.10.0) (2024-06-19)
10
+
11
+ ### Features
12
+
13
+ - illustrasjon facialrecongitionfingerprint lagt til
14
+ ([64bff31](https://github.com/helsenorge/designsystem/commit/64bff313fa89b1602dd5198fa773d9baa29b0a32)), closes
15
+ [#320973](https://github.com/helsenorge/designsystem/issues/320973)
16
+ - **progressbar:** ny komponent ([9cdbd1b](https://github.com/helsenorge/designsystem/commit/9cdbd1bad9a701ed4a68bd84bb959b6785d518bd)),
17
+ closes [#297459](https://github.com/helsenorge/designsystem/issues/297459)
18
+
19
+ ### Bug Fixes
20
+
21
+ - **progressbar:** bedre uu ([1f2bcf0](https://github.com/helsenorge/designsystem/commit/1f2bcf01cd1fa88a5b4765013a17ec2e5ca05a67)), closes
22
+ [#297459](https://github.com/helsenorge/designsystem/issues/297459)
23
+
1
24
  ## [7.9.0](https://github.com/helsenorge/designsystem/branchCompare?baseVersion=GTv7.8.1&targetVersion=GTv7.9.0) (2024-06-12)
2
25
 
3
26
  ### Bug Fixes
@@ -13,6 +13,8 @@ export interface DatePickerProps extends Pick<React.InputHTMLAttributes<HTMLInpu
13
13
  dateValue?: Date;
14
14
  /** Sets the current month */
15
15
  defaultMonth?: Date;
16
+ /** Disables the datepicker */
17
+ disabled?: boolean;
16
18
  /** Disables the days in the datepicker */
17
19
  disableDays?: Date[];
18
20
  /** Disables weekends in the datepicker */
@@ -19,6 +19,7 @@ declare const meta: {
19
19
  args: {
20
20
  dateButtonAriaLabel: string;
21
21
  dateFormat: "dd.MM.yyyy";
22
+ disabled: false;
22
23
  disableWeekends: false;
23
24
  disableDays: never[];
24
25
  locale: import("date-fns").Locale;