@equinor/eds-core-react 2.3.2 → 2.3.4-beta.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.
Files changed (41) hide show
  1. package/README.md +16 -1
  2. package/build/index.css +143 -277
  3. package/build/index.min.css +1 -5
  4. package/dist/eds-core-react.cjs +229 -30
  5. package/dist/esm/components/Autocomplete/AddNewOption.js +1 -1
  6. package/dist/esm/components/Autocomplete/Autocomplete.js +1 -1
  7. package/dist/esm/components/Autocomplete/MultipleInput.js +21 -5
  8. package/dist/esm/components/Autocomplete/Option.js +11 -2
  9. package/dist/esm/components/Autocomplete/SelectAllOption.js +1 -1
  10. package/dist/esm/components/Autocomplete/useAutocomplete.js +13 -2
  11. package/dist/esm/components/Banner/Banner.tokens.js +2 -10
  12. package/dist/esm/components/Chip/Chip.js +1 -1
  13. package/dist/esm/components/Chip/Chip.tokens.js +0 -2
  14. package/dist/esm/components/Datepicker/DatePicker.js +4 -1
  15. package/dist/esm/components/Datepicker/DateRangePicker.js +4 -1
  16. package/dist/esm/components/Datepicker/fields/DateFieldSegments.js +11 -2
  17. package/dist/esm/components/Datepicker/utils/get-calendar-date.js +1 -1
  18. package/dist/esm/components/Datepicker/utils/getLocalizedValidationErrors.js +164 -0
  19. package/dist/esm/components/EdsProvider/eds.context.js +1 -1
  20. package/dist/esm/components/Menu/Menu.context.js +1 -1
  21. package/dist/esm/components/SideBar/SideBar.context.js +1 -1
  22. package/dist/esm/components/Table/DataCell/DataCell.js +1 -1
  23. package/dist/esm/components/Table/FooterCell/FooterCell.js +1 -1
  24. package/dist/esm/components/Table/HeaderCell/HeaderCell.js +1 -1
  25. package/dist/esm/components/Typography/Typography.js +1 -1
  26. package/dist/esm/index.js +64 -64
  27. package/dist/esm-next/components/next/Button/Button.js +3 -5
  28. package/dist/esm-next/components/next/Input/Input.js +6 -11
  29. package/dist/esm-next/components/next/TextField/TextField.js +7 -2
  30. package/dist/esm-next/index.next.js +4 -4
  31. package/dist/index.next.cjs +15 -18
  32. package/dist/types/components/Autocomplete/Autocomplete.d.ts +1 -1
  33. package/dist/types/components/Autocomplete/AutocompleteContext.d.ts +2 -2
  34. package/dist/types/components/Autocomplete/useAutocomplete.d.ts +3 -2
  35. package/dist/types/components/Datepicker/DateRangePicker.d.ts +1 -1
  36. package/dist/types/components/Datepicker/utils/getLocalizedValidationErrors.d.ts +9 -0
  37. package/dist/types/components/SideBar/SideBarButton/index.d.ts +1 -1
  38. package/dist/types/components/Typography/index.d.ts +1 -0
  39. package/dist/types/components/next/Input/Input.types.d.ts +6 -4
  40. package/dist/types/components/next/TextField/TextField.d.ts +1 -0
  41. package/package.json +41 -34
@@ -106,18 +106,16 @@ const Button = /*#__PURE__*/react.forwardRef(function Button({
106
106
  "data-variant": variant,
107
107
  "data-selectable-space": selectableSpace,
108
108
  "data-space-proportions": "squished",
109
- "data-font-family": "ui",
110
- "data-font-size": typographySize,
111
- "data-line-height": "squished",
112
109
  "data-color-appearance": disabled ? 'neutral' : tone,
113
110
  "data-icon-only": icon || undefined,
114
111
  "data-round": icon && round ? true : undefined,
115
112
  ...rest,
116
- children: /*#__PURE__*/jsxRuntime.jsx(TypographyNext, {
113
+ children: icon ? children : /*#__PURE__*/jsxRuntime.jsx(TypographyNext, {
114
+ as: "span",
117
115
  family: "ui",
118
116
  size: typographySize,
119
- baseline: "center",
120
117
  lineHeight: "squished",
118
+ baseline: "center",
121
119
  children: children
122
120
  })
123
121
  });
@@ -533,6 +531,7 @@ Switch.displayName = 'Switch';
533
531
 
534
532
  const Input = /*#__PURE__*/react.forwardRef(function Input({
535
533
  invalid = false,
534
+ hideErrorIcon = false,
536
535
  disabled,
537
536
  readOnly,
538
537
  type = 'text',
@@ -545,8 +544,8 @@ const Input = /*#__PURE__*/react.forwardRef(function Input({
545
544
  as: Component = 'input',
546
545
  ...inputProps
547
546
  }, ref) {
548
- const tone = invalid && !disabled ? 'danger' : 'neutral';
549
- const showErrorIcon = invalid && !disabled;
547
+ const tone = invalid && !disabled && !readOnly ? 'danger' : 'neutral';
548
+ const displayErrorIcon = !hideErrorIcon && invalid && !disabled && !readOnly;
550
549
  const hasStartAdornment = startText || startAdornment;
551
550
  const hasEndAdornment = endText || endAdornment;
552
551
  const containerClasses = ['eds-input-container', containerClassName].filter(Boolean).join(' ');
@@ -559,7 +558,7 @@ const Input = /*#__PURE__*/react.forwardRef(function Input({
559
558
  "data-disabled": disabled || undefined,
560
559
  "data-readonly": readOnly || undefined,
561
560
  "data-invalid": invalid || undefined,
562
- children: [showErrorIcon && /*#__PURE__*/jsxRuntime.jsx("span", {
561
+ children: [displayErrorIcon && /*#__PURE__*/jsxRuntime.jsx("span", {
563
562
  className: "eds-error-icon",
564
563
  "data-font-size": "xs",
565
564
  "data-font-family": "ui",
@@ -569,10 +568,9 @@ const Input = /*#__PURE__*/react.forwardRef(function Input({
569
568
  })
570
569
  }), hasStartAdornment && /*#__PURE__*/jsxRuntime.jsxs("div", {
571
570
  className: "eds-adornment",
572
- "data-font-size": "xs",
571
+ "data-color-appearance": "neutral",
573
572
  children: [startText && /*#__PURE__*/jsxRuntime.jsx("span", {
574
573
  className: "eds-adornment__text",
575
- "data-color-appearance": "neutral",
576
574
  "data-font-family": "ui",
577
575
  "data-font-size": "xs",
578
576
  "data-baseline": "center",
@@ -580,8 +578,6 @@ const Input = /*#__PURE__*/react.forwardRef(function Input({
580
578
  }), startAdornment && /*#__PURE__*/jsxRuntime.jsx("span", {
581
579
  className: "eds-adornment__adornment",
582
580
  "data-font-size": "xs",
583
- "data-font-family": "ui",
584
- "data-baseline": "center",
585
581
  children: startAdornment
586
582
  })]
587
583
  }), /*#__PURE__*/jsxRuntime.jsx(Component, {
@@ -598,10 +594,9 @@ const Input = /*#__PURE__*/react.forwardRef(function Input({
598
594
  "aria-invalid": invalid || undefined
599
595
  }), hasEndAdornment && /*#__PURE__*/jsxRuntime.jsxs("div", {
600
596
  className: "eds-adornment",
601
- "data-font-size": "xs",
597
+ "data-color-appearance": "neutral",
602
598
  children: [endText && /*#__PURE__*/jsxRuntime.jsx("span", {
603
599
  className: "eds-adornment__text",
604
- "data-color-appearance": "neutral",
605
600
  "data-font-family": "ui",
606
601
  "data-font-size": "xs",
607
602
  "data-baseline": "center",
@@ -609,8 +604,6 @@ const Input = /*#__PURE__*/react.forwardRef(function Input({
609
604
  }), endAdornment && /*#__PURE__*/jsxRuntime.jsx("span", {
610
605
  className: "eds-adornment__adornment",
611
606
  "data-font-size": "xs",
612
- "data-font-family": "ui",
613
- "data-baseline": "center",
614
607
  children: endAdornment
615
608
  })]
616
609
  })]
@@ -845,8 +838,12 @@ const TextField = /*#__PURE__*/react.forwardRef(function TextField({
845
838
  }), labelInfo && /*#__PURE__*/jsxRuntime.jsx(Tooltip, {
846
839
  title: labelInfo,
847
840
  placement: "top",
848
- children: /*#__PURE__*/jsxRuntime.jsx("button", {
849
- type: "button",
841
+ children: /*#__PURE__*/jsxRuntime.jsx(Button, {
842
+ variant: "ghost",
843
+ icon: true,
844
+ round: true,
845
+ size: "small",
846
+ tone: "neutral",
850
847
  className: "eds-text-field__info",
851
848
  "aria-label": "More information",
852
849
  children: /*#__PURE__*/jsxRuntime.jsx(Icon, {
@@ -11,7 +11,7 @@ export declare const StyledButton: import("styled-components/dist/types").IStyle
11
11
  disabled?: boolean;
12
12
  type?: string;
13
13
  fullWidth?: boolean;
14
- } & import("react").ButtonHTMLAttributes<HTMLButtonElement> & Omit<any, "variant" | "href" | keyof import("react").ButtonHTMLAttributes<HTMLButtonElement> | "fullWidth">, never>> & string & Omit<import("@equinor/eds-utils").OverridableComponent<import("../Button").ButtonProps, HTMLButtonElement> & {
14
+ } & import("react").ButtonHTMLAttributes<HTMLButtonElement> & Omit<any, keyof import("react").ButtonHTMLAttributes<HTMLButtonElement> | "variant" | "href" | "fullWidth">, never>> & string & Omit<import("@equinor/eds-utils").OverridableComponent<import("../Button").ButtonProps, HTMLButtonElement> & {
15
15
  Group: typeof import("../Button").ButtonGroup;
16
16
  Toggle: typeof import("../Button").ToggleButton;
17
17
  }, keyof import("react").Component<any, {}, any>>;
@@ -94,7 +94,7 @@ export declare const AutocompleteContext: import("react").Context<{
94
94
  optionLabel?: (option: unknown) => string;
95
95
  } & {
96
96
  ref?: React.Ref<HTMLInputElement>;
97
- }, "meta" | "label" | "disabled" | "style" | "ref" | "className" | "multiple" | "variant" | "placeholder" | "readOnly" | "options" | "helperText" | "helperIcon" | "loading" | "optionDisabled" | "totalOptions" | "initialSelectedOptions" | "noOptionsText" | "hideClearButton" | "selectedOptions" | "selectionDisplay" | "onOptionsChange" | "onInputChange" | "onAddNewOption" | "allowSelectAll" | "optionComponent" | "optionsFilter" | "autoWidth" | "clearSearchOnChange" | "multiline" | "dropdownHeight" | "itemToKey" | "itemCompare" | "onClear" | "optionLabel">;
97
+ }, "disabled" | "className" | "style" | "meta" | "label" | "ref" | "multiple" | "variant" | "placeholder" | "readOnly" | "options" | "helperText" | "helperIcon" | "loading" | "optionDisabled" | "totalOptions" | "initialSelectedOptions" | "noOptionsText" | "hideClearButton" | "selectedOptions" | "selectionDisplay" | "onOptionsChange" | "onInputChange" | "onAddNewOption" | "allowSelectAll" | "optionComponent" | "optionsFilter" | "autoWidth" | "clearSearchOnChange" | "multiline" | "dropdownHeight" | "itemToKey" | "itemCompare" | "onClear" | "optionLabel">;
98
98
  highlightedIndex: number;
99
99
  selectedItem: unknown;
100
100
  isOpen: boolean;
@@ -208,7 +208,7 @@ export declare const useAutocompleteContext: () => {
208
208
  optionLabel?: (option: unknown) => string;
209
209
  } & {
210
210
  ref?: React.Ref<HTMLInputElement>;
211
- }, "meta" | "label" | "disabled" | "style" | "ref" | "className" | "multiple" | "variant" | "placeholder" | "readOnly" | "options" | "helperText" | "helperIcon" | "loading" | "optionDisabled" | "totalOptions" | "initialSelectedOptions" | "noOptionsText" | "hideClearButton" | "selectedOptions" | "selectionDisplay" | "onOptionsChange" | "onInputChange" | "onAddNewOption" | "allowSelectAll" | "optionComponent" | "optionsFilter" | "autoWidth" | "clearSearchOnChange" | "multiline" | "dropdownHeight" | "itemToKey" | "itemCompare" | "onClear" | "optionLabel">;
211
+ }, "disabled" | "className" | "style" | "meta" | "label" | "ref" | "multiple" | "variant" | "placeholder" | "readOnly" | "options" | "helperText" | "helperIcon" | "loading" | "optionDisabled" | "totalOptions" | "initialSelectedOptions" | "noOptionsText" | "hideClearButton" | "selectedOptions" | "selectionDisplay" | "onOptionsChange" | "onInputChange" | "onAddNewOption" | "allowSelectAll" | "optionComponent" | "optionsFilter" | "autoWidth" | "clearSearchOnChange" | "multiline" | "dropdownHeight" | "itemToKey" | "itemCompare" | "onClear" | "optionLabel">;
212
212
  highlightedIndex: number;
213
213
  selectedItem: unknown;
214
214
  isOpen: boolean;
@@ -1,3 +1,4 @@
1
+ import type { DOMAttributes } from 'react';
1
2
  import { AutocompleteProps } from './Autocomplete';
2
3
  import { AutocompleteToken } from './Autocomplete.tokens';
3
4
  export declare const useAutocomplete: <T>({ options, totalOptions, label, meta, className, style, disabled, readOnly, loading, hideClearButton, onOptionsChange, onAddNewOption, onInputChange, selectedOptions: _selectedOptions, selectionDisplay, multiple, itemToKey: _itemToKey, itemCompare: _itemCompare, allowSelectAll, initialSelectedOptions: _initialSelectedOptions, optionDisabled, optionsFilter, autoWidth, placeholder, optionLabel, clearSearchOnChange, multiline, dropdownHeight, optionComponent, helperText, helperIcon, noOptionsText, variant, onClear, ref, ...other }: AutocompleteProps<T> & {
@@ -26,7 +27,7 @@ export declare const useAutocomplete: <T>({ options, totalOptions, label, meta,
26
27
  disabled: boolean;
27
28
  ref: import("react").RefObject<HTMLInputElement>;
28
29
  }>, "preventKeyAction">>;
29
- consolidatedEvents: Partial<import("react").DOMAttributes<unknown>>;
30
+ consolidatedEvents: Partial<DOMAttributes<unknown>>;
30
31
  multiple: boolean;
31
32
  disabled: boolean;
32
33
  optionDisabled: (option: T) => boolean;
@@ -102,7 +103,7 @@ export declare const useAutocomplete: <T>({ options, totalOptions, label, meta,
102
103
  optionLabel?: (option: T) => string;
103
104
  }) & {
104
105
  ref?: React.Ref<HTMLInputElement>;
105
- }, "meta" | "label" | "disabled" | "style" | "ref" | "className" | "multiple" | "variant" | "placeholder" | "readOnly" | "options" | "helperText" | "helperIcon" | "loading" | "optionDisabled" | "totalOptions" | "initialSelectedOptions" | "noOptionsText" | "hideClearButton" | "selectedOptions" | "selectionDisplay" | "onOptionsChange" | "onInputChange" | "onAddNewOption" | "allowSelectAll" | "optionComponent" | "optionsFilter" | "autoWidth" | "clearSearchOnChange" | "multiline" | "dropdownHeight" | "itemToKey" | "itemCompare" | "onClear" | "optionLabel">;
106
+ }, "disabled" | "className" | "style" | "meta" | "label" | "ref" | "multiple" | "variant" | "placeholder" | "readOnly" | "options" | "helperText" | "helperIcon" | "loading" | "optionDisabled" | "totalOptions" | "initialSelectedOptions" | "noOptionsText" | "hideClearButton" | "selectedOptions" | "selectionDisplay" | "onOptionsChange" | "onInputChange" | "onAddNewOption" | "allowSelectAll" | "optionComponent" | "optionsFilter" | "autoWidth" | "clearSearchOnChange" | "multiline" | "dropdownHeight" | "itemToKey" | "itemCompare" | "onClear" | "optionLabel">;
106
107
  highlightedIndex: number;
107
108
  selectedItem: T;
108
109
  isOpen: boolean;
@@ -2,7 +2,7 @@
2
2
  * DateRangePicker component encapsulates the logic for selecting a range of dates
3
3
  * Either by accessible input fields or by a calendar.
4
4
  */
5
- export declare const DateRangePicker: import("react").ForwardRefExoticComponent<Omit<import("./props").DatePickerProps, "defaultValue" | "onChange" | "multiple" | "value" | "showTimeInput" | "stateRef"> & Partial<{
5
+ export declare const DateRangePicker: import("react").ForwardRefExoticComponent<Omit<import("./props").DatePickerProps, "value" | "defaultValue" | "onChange" | "multiple" | "showTimeInput" | "stateRef"> & Partial<{
6
6
  onChange: (range: {
7
7
  from: Date | null;
8
8
  to: Date | null;
@@ -0,0 +1,9 @@
1
+ import { DateValue } from '@internationalized/date';
2
+ /**
3
+ * Generates validation error messages using the provided locale instead of
4
+ * navigator.language (which is what react-stately uses internally).
5
+ *
6
+ * This fixes the issue where validation messages appear in the browser's
7
+ * language rather than the locale configured via I18nProvider.
8
+ */
9
+ export declare function getLocalizedValidationErrors(validationDetails: ValidityState, locale: string, minValue?: DateValue | null, maxValue?: DateValue | null, timezone?: string): string[];
@@ -7,4 +7,4 @@ export type SideBarButtonProps = {
7
7
  export declare const SideBarButton: import("react").ForwardRefExoticComponent<{
8
8
  label: string;
9
9
  icon: IconData;
10
- } & Omit<ButtonProps, "variant" | "href" | "type" | "fullWidth"> & import("react").RefAttributes<HTMLButtonElement>>;
10
+ } & Omit<ButtonProps, "type" | "variant" | "href" | "fullWidth"> & import("react").RefAttributes<HTMLButtonElement>>;
@@ -6,3 +6,4 @@ export type { TypographyNextProps } from './Typography.new.types';
6
6
  export type { HeadingProps } from './Heading.types';
7
7
  export type { ParagraphProps } from './Paragraph.types';
8
8
  export type { FontFamily, FontSize, LineHeight, BaselineAlignment, FontWeight, Tracking, } from './types';
9
+ export type { TypographyVariants, ColorVariants, TypographyGroups, } from './Typography.tokens';
@@ -2,13 +2,15 @@ import { InputHTMLAttributes, ReactNode } from 'react';
2
2
  export type InputProps = {
3
3
  /** Invalid state - shows error styling */
4
4
  invalid?: boolean;
5
- /** Text at the start (e.g., "$", "USD") - always neutral color */
5
+ /** Hide error icon when invalid - defaults to false (icon shows by default) */
6
+ hideErrorIcon?: boolean;
7
+ /** Text at the start (e.g., "https://", "NOK") */
6
8
  startText?: string;
7
- /** Adornment at the start (icons, buttons, etc.) - inherits state color (red when invalid) */
9
+ /** Adornment at the start (icons, buttons, etc.) */
8
10
  startAdornment?: ReactNode;
9
- /** Text at the end (e.g., "km", "%") - always neutral color */
11
+ /** Text at the end (e.g., "km", "%") */
10
12
  endText?: string;
11
- /** Adornment at the end (icons, buttons, etc.) - inherits state color (red when invalid) */
13
+ /** Adornment at the end (icons, buttons, etc.) */
12
14
  endAdornment?: ReactNode;
13
15
  /** Render as input or textarea */
14
16
  as?: 'input' | 'textarea';
@@ -8,6 +8,7 @@ export declare const TextField: import("react").ForwardRefExoticComponent<{
8
8
  id?: string;
9
9
  } & {
10
10
  invalid?: boolean;
11
+ hideErrorIcon?: boolean;
11
12
  startText?: string;
12
13
  startAdornment?: import("react").ReactNode;
13
14
  endText?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/eds-core-react",
3
- "version": "2.3.2",
3
+ "version": "2.3.4-beta.0",
4
4
  "description": "The React implementation of the Equinor Design System",
5
5
  "sideEffects": [
6
6
  "**/*.css"
@@ -31,7 +31,14 @@
31
31
  "types": "./dist/types/index.d.ts",
32
32
  "import": "./dist/esm/index.js",
33
33
  "require": "./dist/eds-core-react.cjs"
34
- }
34
+ },
35
+ "./next": {
36
+ "types": "./dist/types/index.next.d.ts",
37
+ "import": "./dist/esm-next/index.next.js",
38
+ "require": "./dist/index.next.cjs"
39
+ },
40
+ "./next/index.css": "./build/index.css",
41
+ "./next/index.min.css": "./build/index.min.css"
35
42
  },
36
43
  "keywords": [
37
44
  "eds",
@@ -40,27 +47,27 @@
40
47
  "react"
41
48
  ],
42
49
  "devDependencies": {
43
- "@figma/code-connect": "^1.3.12",
44
- "@playwright/test": "^1.57.0",
50
+ "@figma/code-connect": "^1.4.1",
51
+ "@playwright/test": "^1.58.2",
45
52
  "@rollup/plugin-babel": "^6.1.0",
46
- "@rollup/plugin-commonjs": "^28.0.8",
53
+ "@rollup/plugin-commonjs": "^29.0.0",
47
54
  "@rollup/plugin-node-resolve": "^16.0.3",
48
- "@storybook/addon-a11y": "^9.1.13",
49
- "@storybook/addon-docs": "^9.1.13",
50
- "@storybook/addon-links": "^9.1.13",
51
- "@storybook/react-vite": "^9.1.13",
55
+ "@storybook/addon-a11y": "^10.2.10",
56
+ "@storybook/addon-docs": "^10.2.10",
57
+ "@storybook/addon-links": "^10.2.10",
58
+ "@storybook/react-vite": "^10.2.10",
52
59
  "@testing-library/dom": "^10.4.1",
53
60
  "@testing-library/jest-dom": "^6.9.1",
54
- "@testing-library/react": "16.3.0",
61
+ "@testing-library/react": "16.3.2",
55
62
  "@testing-library/user-event": "14.6.1",
56
63
  "@types/jest": "^30.0.0",
57
64
  "@types/mdx": "^2.0.13",
58
- "@types/node": "^24.9.1",
65
+ "@types/node": "^25.3.0",
59
66
  "@types/ramda": "^0.31.1",
60
- "@types/react": "^19.2.2",
61
- "@types/react-dom": "^19.2.2",
67
+ "@types/react": "^19.2.14",
68
+ "@types/react-dom": "^19.2.3",
62
69
  "babel-plugin-styled-components": "^2.1.4",
63
- "eslint-plugin-storybook": "9.1.13",
70
+ "eslint-plugin-storybook": "10.2.10",
64
71
  "jest": "^30.2.0",
65
72
  "jest-environment-jsdom": "^30.2.0",
66
73
  "jest-styled-components": "^7.2.0",
@@ -68,16 +75,16 @@
68
75
  "postcss": "^8.5.6",
69
76
  "postcss-import": "^16.1.1",
70
77
  "ramda": "^0.32.0",
71
- "react": "^19.2.0",
72
- "react-dom": "^19.2.0",
73
- "react-hook-form": "^7.65.0",
74
- "react-router-dom": "^7.9.4",
75
- "rollup": "^4.52.5",
76
- "rollup-plugin-delete": "^3.0.1",
78
+ "react": "^19.2.4",
79
+ "react-dom": "^19.2.4",
80
+ "react-hook-form": "^7.71.2",
81
+ "react-router-dom": "^7.13.0",
82
+ "rollup": "^4.57.1",
83
+ "rollup-plugin-delete": "^3.0.2",
77
84
  "rollup-plugin-postcss": "^4.0.2",
78
85
  "rollup-preserve-directives": "^1.1.3",
79
- "storybook": "^9.1.13",
80
- "styled-components": "6.1.19",
86
+ "storybook": "^10.2.10",
87
+ "styled-components": "6.3.11",
81
88
  "tsc-watch": "^7.2.0",
82
89
  "typescript": "^5.9.3"
83
90
  },
@@ -87,18 +94,18 @@
87
94
  "styled-components": "^6"
88
95
  },
89
96
  "dependencies": {
90
- "@babel/runtime": "^7.28.4",
91
- "@floating-ui/react": "^0.27.16",
92
- "@internationalized/date": "^3.10.0",
93
- "@react-aria/utils": "^3.31.0",
94
- "@react-stately/calendar": "^3.9.0",
95
- "@react-stately/datepicker": "^3.15.2",
96
- "@react-types/shared": "^3.32.1",
97
- "@tanstack/react-virtual": "3.13.12",
98
- "downshift": "9.0.10",
99
- "react-aria": "^3.44.0",
100
- "@equinor/eds-tokens": "^2.1.1",
101
- "@equinor/eds-icons": "^1.2.0",
97
+ "@babel/runtime": "^7.28.6",
98
+ "@floating-ui/react": "^0.27.18",
99
+ "@internationalized/date": "^3.11.0",
100
+ "@react-aria/utils": "^3.33.0",
101
+ "@react-stately/calendar": "^3.9.2",
102
+ "@react-stately/datepicker": "^3.16.0",
103
+ "@react-types/shared": "^3.33.0",
104
+ "@tanstack/react-virtual": "3.13.18",
105
+ "downshift": "9.3.2",
106
+ "react-aria": "^3.46.0",
107
+ "@equinor/eds-icons": "^1.3.0",
108
+ "@equinor/eds-tokens": "^2.2.0",
102
109
  "@equinor/eds-utils": "^2.0.0"
103
110
  },
104
111
  "scripts": {