@equinor/echo-framework 0.14.1-beta-5 → 0.14.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/{f4c85313e79b1662.svg → 1bd97dd2170d0f64.svg} +850 -850
- package/{063009f06499d102.svg → 47deeba42768c5d1.svg} +8 -8
- package/README.md +71 -55
- package/index.cjs +1 -17391
- package/package.json +3 -3
- package/src/index.d.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/echo-framework",
|
|
3
|
-
"version": "0.14.1
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@equinor/echo-base": ">= 0.6.12 < 0.7.0",
|
|
6
6
|
"@equinor/echo-components": ">= 0.7.0 < 0.8.0",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"lodash": "4.17.21",
|
|
18
18
|
"react-router-dom": "5.3.4",
|
|
19
19
|
"ua-parser-js": "1.0.35",
|
|
20
|
-
"zustand": "4.
|
|
20
|
+
"zustand": "4.4.1"
|
|
21
21
|
},
|
|
22
22
|
"main": "./index.cjs",
|
|
23
23
|
"type": "commonjs",
|
|
24
|
-
"types": "./src
|
|
24
|
+
"types": "./src/index.d.ts",
|
|
25
25
|
"dependencies": {}
|
|
26
26
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -32,6 +32,14 @@ export declare const registerEchopediaComponent: ({ name, component }: {
|
|
|
32
32
|
name: import("./lib/services/componentRegistry/componentRegistry").RegisteredComponentName;
|
|
33
33
|
component: import("react").FunctionComponent<any>;
|
|
34
34
|
}) => void;
|
|
35
|
+
/**
|
|
36
|
+
* Use named exports here.
|
|
37
|
+
*/
|
|
38
|
+
export * from './lib/hooks';
|
|
39
|
+
/**
|
|
40
|
+
* Don't add any more default exports here - it may cause some import issues in other packages
|
|
41
|
+
* Let's stick to named imports
|
|
42
|
+
*/
|
|
35
43
|
declare const EchoFramework: Readonly<{
|
|
36
44
|
Utils: Readonly<{
|
|
37
45
|
Navigation: Readonly<{
|