@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.
- package/README.md +16 -1
- package/build/index.css +143 -277
- package/build/index.min.css +1 -5
- package/dist/eds-core-react.cjs +229 -30
- package/dist/esm/components/Autocomplete/AddNewOption.js +1 -1
- package/dist/esm/components/Autocomplete/Autocomplete.js +1 -1
- package/dist/esm/components/Autocomplete/MultipleInput.js +21 -5
- package/dist/esm/components/Autocomplete/Option.js +11 -2
- package/dist/esm/components/Autocomplete/SelectAllOption.js +1 -1
- package/dist/esm/components/Autocomplete/useAutocomplete.js +13 -2
- package/dist/esm/components/Banner/Banner.tokens.js +2 -10
- package/dist/esm/components/Chip/Chip.js +1 -1
- package/dist/esm/components/Chip/Chip.tokens.js +0 -2
- package/dist/esm/components/Datepicker/DatePicker.js +4 -1
- package/dist/esm/components/Datepicker/DateRangePicker.js +4 -1
- package/dist/esm/components/Datepicker/fields/DateFieldSegments.js +11 -2
- package/dist/esm/components/Datepicker/utils/get-calendar-date.js +1 -1
- package/dist/esm/components/Datepicker/utils/getLocalizedValidationErrors.js +164 -0
- package/dist/esm/components/EdsProvider/eds.context.js +1 -1
- package/dist/esm/components/Menu/Menu.context.js +1 -1
- package/dist/esm/components/SideBar/SideBar.context.js +1 -1
- package/dist/esm/components/Table/DataCell/DataCell.js +1 -1
- package/dist/esm/components/Table/FooterCell/FooterCell.js +1 -1
- package/dist/esm/components/Table/HeaderCell/HeaderCell.js +1 -1
- package/dist/esm/components/Typography/Typography.js +1 -1
- package/dist/esm/index.js +64 -64
- package/dist/esm-next/components/next/Button/Button.js +3 -5
- package/dist/esm-next/components/next/Input/Input.js +6 -11
- package/dist/esm-next/components/next/TextField/TextField.js +7 -2
- package/dist/esm-next/index.next.js +4 -4
- package/dist/index.next.cjs +15 -18
- package/dist/types/components/Autocomplete/Autocomplete.d.ts +1 -1
- package/dist/types/components/Autocomplete/AutocompleteContext.d.ts +2 -2
- package/dist/types/components/Autocomplete/useAutocomplete.d.ts +3 -2
- package/dist/types/components/Datepicker/DateRangePicker.d.ts +1 -1
- package/dist/types/components/Datepicker/utils/getLocalizedValidationErrors.d.ts +9 -0
- package/dist/types/components/SideBar/SideBarButton/index.d.ts +1 -1
- package/dist/types/components/Typography/index.d.ts +1 -0
- package/dist/types/components/next/Input/Input.types.d.ts +6 -4
- package/dist/types/components/next/TextField/TextField.d.ts +1 -0
- package/package.json +41 -34
package/dist/index.next.cjs
CHANGED
|
@@ -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
|
|
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: [
|
|
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-
|
|
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-
|
|
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(
|
|
849
|
-
|
|
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,
|
|
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
|
-
}, "
|
|
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
|
-
}, "
|
|
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<
|
|
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
|
-
}, "
|
|
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, "
|
|
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, "
|
|
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
|
-
/**
|
|
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.)
|
|
9
|
+
/** Adornment at the start (icons, buttons, etc.) */
|
|
8
10
|
startAdornment?: ReactNode;
|
|
9
|
-
/** Text at the end (e.g., "km", "%")
|
|
11
|
+
/** Text at the end (e.g., "km", "%") */
|
|
10
12
|
endText?: string;
|
|
11
|
-
/** Adornment at the end (icons, buttons, etc.)
|
|
13
|
+
/** Adornment at the end (icons, buttons, etc.) */
|
|
12
14
|
endAdornment?: ReactNode;
|
|
13
15
|
/** Render as input or textarea */
|
|
14
16
|
as?: 'input' | 'textarea';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/eds-core-react",
|
|
3
|
-
"version": "2.3.
|
|
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.
|
|
44
|
-
"@playwright/test": "^1.
|
|
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": "^
|
|
53
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
47
54
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
48
|
-
"@storybook/addon-a11y": "^
|
|
49
|
-
"@storybook/addon-docs": "^
|
|
50
|
-
"@storybook/addon-links": "^
|
|
51
|
-
"@storybook/react-vite": "^
|
|
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.
|
|
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": "^
|
|
65
|
+
"@types/node": "^25.3.0",
|
|
59
66
|
"@types/ramda": "^0.31.1",
|
|
60
|
-
"@types/react": "^19.2.
|
|
61
|
-
"@types/react-dom": "^19.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": "
|
|
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.
|
|
72
|
-
"react-dom": "^19.2.
|
|
73
|
-
"react-hook-form": "^7.
|
|
74
|
-
"react-router-dom": "^7.
|
|
75
|
-
"rollup": "^4.
|
|
76
|
-
"rollup-plugin-delete": "^3.0.
|
|
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": "^
|
|
80
|
-
"styled-components": "6.
|
|
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.
|
|
91
|
-
"@floating-ui/react": "^0.27.
|
|
92
|
-
"@internationalized/date": "^3.
|
|
93
|
-
"@react-aria/utils": "^3.
|
|
94
|
-
"@react-stately/calendar": "^3.9.
|
|
95
|
-
"@react-stately/datepicker": "^3.
|
|
96
|
-
"@react-types/shared": "^3.
|
|
97
|
-
"@tanstack/react-virtual": "3.13.
|
|
98
|
-
"downshift": "9.
|
|
99
|
-
"react-aria": "^3.
|
|
100
|
-
"@equinor/eds-
|
|
101
|
-
"@equinor/eds-
|
|
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": {
|