@equinor/echo-components 6.2.1-edsv2-beta-1 → 6.2.2
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/{04852fb8014a9692.svg → 1dd428dbc8752224.svg} +19 -19
- package/{0a6a2110d0267d69.svg → 246374c510469011.svg} +142 -142
- package/{bb2d3aa591e687f9.svg → 8ddc7d44de9795fc.svg} +112 -112
- package/{fb72d3eecaa74688.svg → c283d1a6c49e1d97.svg} +82 -82
- package/index.cjs.js +1 -1
- package/index.d.ts +1 -1
- package/package.json +5 -5
- package/src/components/index.d.ts +1 -0
- package/src/components/linkText/LinkText.d.ts +6 -0
- package/src/components/selectTextOnFocusAutocomplete/SelectTextOnFocusAutocomplete.d.ts +2 -3
package/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./src
|
|
1
|
+
export * from "./src/index";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/echo-components",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.2",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"chart.js": "4.5.1",
|
|
6
6
|
"react-datepicker": "9.1.0",
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"react-window": "1.8.11"
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"@equinor/echo-utils": ">= 6.2.
|
|
12
|
-
"@equinor/eds-core-react": "
|
|
13
|
-
"@equinor/eds-icons": "
|
|
14
|
-
"@equinor/eds-tokens": "2.
|
|
11
|
+
"@equinor/echo-utils": ">= 6.2.2 < 7.0.0",
|
|
12
|
+
"@equinor/eds-core-react": "0.49.0",
|
|
13
|
+
"@equinor/eds-icons": "0.22.0",
|
|
14
|
+
"@equinor/eds-tokens": "2.1.0",
|
|
15
15
|
"classnames": "2.5.1",
|
|
16
16
|
"lodash": ">= 4.17.21 < 5",
|
|
17
17
|
"react": ">= 19.2.4",
|
|
@@ -41,6 +41,7 @@ export * from './legendSelector/LegendSelector';
|
|
|
41
41
|
export * from './legendSelectorAccordion/LegendSelectorAccordion';
|
|
42
42
|
export * from './legendSelectorMenu/LegendSelectorMenu';
|
|
43
43
|
export * from './linkIcon/LinkIcon';
|
|
44
|
+
export * from './linkText/LinkText';
|
|
44
45
|
export * from './listItem';
|
|
45
46
|
export * from './listRow/ListRow';
|
|
46
47
|
export * from './lozenge/LabelledLozenge';
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { Autocomplete } from '@equinor/eds-core-react';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
|
|
4
|
-
type SelectTextOnFocusAutocompleteProps<T> = Omit<AutocompleteProps<T>, 'ref'> & {
|
|
3
|
+
interface SelectTextOnFocusAutocompleteProps<T> extends Omit<React.ComponentProps<typeof Autocomplete<T>>, 'ref'> {
|
|
5
4
|
ariaPressed?: boolean;
|
|
6
5
|
style?: React.CSSProperties;
|
|
7
6
|
wrapperClassName?: string;
|
|
8
7
|
children?: React.ReactNode;
|
|
9
|
-
}
|
|
8
|
+
}
|
|
10
9
|
/**
|
|
11
10
|
* A reusable component that wraps the EDS Autocomplete in a button.
|
|
12
11
|
* When the button is clicked or activated with keyboard (Enter/Space),
|