@equinor/echo-framework 2.2.0 → 2.2.1

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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@equinor/echo-framework",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "peerDependencies": {
5
- "@equinor/echo-base": ">= 2.2.0 < 3.0.0",
6
- "@equinor/echo-components": ">= 2.2.0 < 3.0.0",
7
- "@equinor/echo-core": ">= 2.2.0 < 3.0.0",
8
- "@equinor/echo-search": ">= 2.2.0 < 3.0.0",
9
- "@equinor/echo-utils": ">= 2.2.0 < 3.0.0",
5
+ "@equinor/echo-base": ">= 2.2.1 < 3.0.0",
6
+ "@equinor/echo-components": ">= 2.2.1 < 3.0.0",
7
+ "@equinor/echo-core": ">= 2.2.1 < 3.0.0",
8
+ "@equinor/echo-search": ">= 2.2.1 < 3.0.0",
9
+ "@equinor/echo-utils": ">= 2.2.1 < 3.0.0",
10
10
  "@equinor/eds-core-react": "0.49.0",
11
11
  "@equinor/eds-icons": "0.22.0",
12
12
  "react": ">= 17.0.2",
@@ -18,14 +18,15 @@
18
18
  "lodash": "4.17.21",
19
19
  "react-router-dom": "5.3.4",
20
20
  "zustand": ">= 4.4.7 < 5",
21
- "immer": "10.1.3"
21
+ "immer": "10.1.3",
22
+ "msw": "2.11.6"
22
23
  },
23
24
  "dependencies": {
24
25
  "dexie": "4.2.1",
25
26
  "mark.js": "8.11.1",
26
- "ag-charts-community": "12.2.0",
27
- "ag-charts-react": "12.2.0",
28
- "ag-charts-enterprise": "12.2.0"
27
+ "ag-charts-community": "12.3.1",
28
+ "ag-charts-react": "12.3.1",
29
+ "ag-charts-enterprise": "12.3.1"
29
30
  },
30
31
  "main": "./index.cjs.js",
31
32
  "type": "commonjs",
@@ -1,5 +1,5 @@
1
1
  import LinksWrapper from './contextualAppLinks';
2
- import { ExternalAppsMenu } from './externalAppsMenu';
2
+ import { ExternalAppsMenu } from './ExternalAppsMenu';
3
3
  import { AllExternalLinks } from './externalLinkButtons/allExternalLinks';
4
4
  import { InternalAppLinks } from './internalAppLinks';
5
5
  import { LinkButton } from './linkButton';
@@ -48,7 +48,7 @@ export { UNIFIED_COLOR_POOL };
48
48
  * Returns the color associated with a given `GlobalSelectionItemType`.
49
49
  *
50
50
  * This function maps specific item types to their corresponding selection colors,
51
- * as defined in the `echoPrimitives.seletionColorsSelectioncolor*` constants.
51
+ * as defined in the `echoPrimitives.miscSelectionSelectioncolor*` constants.
52
52
  * If the provided `itemType` does not match any known type, a default color (`#FF6F00`) is returned.
53
53
  *
54
54
  * @param itemType - The type of the global selection item for which to retrieve the color.