@openglobus/openglobus-react 0.1.2 → 0.1.3
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/dist/index.js +818 -859
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +83 -132
- package/dist/index.umd.cjs.map +1 -1
- package/dist/types/Globe/GlobeContext.d.ts +0 -1
- package/dist/types/entity/Geometry/Geometry.d.ts +0 -1
- package/dist/types/index.d.ts +0 -1
- package/dist/types/layer/GeoImage/GeoImage.d.ts +0 -1
- package/dist/types/layer/GeoVideo/GeoVideo.d.ts +0 -1
- package/package.json +18 -18
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Geometry as GlobusGeometry } from '@openglobus/og';
|
|
2
2
|
import { GeometryTypeEnum, GeometryTypeToCoordinates, IGeometryParams } from '@openglobus/og/lib/js/entity/Geometry';
|
|
3
|
-
|
|
4
3
|
export interface GeometryParamsExtended<T extends keyof typeof GeometryTypeEnum = keyof typeof GeometryTypeEnum> extends Omit<IGeometryParams, 'style'> {
|
|
5
4
|
readonly type: T;
|
|
6
5
|
readonly coordinates: GeometryTypeToCoordinates[T];
|
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openglobus/openglobus-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Openglobus React Components",
|
|
5
5
|
"main": "./dist/index.umd.cjs",
|
|
6
6
|
"private": false,
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
16
16
|
"build": "vite build",
|
|
17
17
|
"build:watch": "vite build --watch && tsc",
|
|
18
|
-
"storybook": "storybook dev -p
|
|
18
|
+
"storybook": "storybook dev -p 8081",
|
|
19
19
|
"build-storybook": "storybook build"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
@@ -28,24 +28,24 @@
|
|
|
28
28
|
"author": "Pavel Sukhodolski",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@openglobus/og": "^0.20.
|
|
32
|
-
"react": "^18.
|
|
31
|
+
"@openglobus/og": "^0.20.4",
|
|
32
|
+
"react": "^18.3.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@chromatic-com/storybook": "^1.
|
|
36
|
-
"@storybook/addon-essentials": "^8.
|
|
37
|
-
"@storybook/addon-interactions": "^8.
|
|
38
|
-
"@storybook/addon-links": "^8.
|
|
39
|
-
"@storybook/blocks": "^8.
|
|
40
|
-
"@storybook/react": "^8.
|
|
41
|
-
"@storybook/react-vite": "^8.
|
|
42
|
-
"@storybook/test": "^8.
|
|
43
|
-
"@types/node": "^
|
|
44
|
-
"@types/react": "^18.3.
|
|
35
|
+
"@chromatic-com/storybook": "^1.7.0",
|
|
36
|
+
"@storybook/addon-essentials": "^8.2.9",
|
|
37
|
+
"@storybook/addon-interactions": "^8.2.9",
|
|
38
|
+
"@storybook/addon-links": "^8.2.9",
|
|
39
|
+
"@storybook/blocks": "^8.2.9",
|
|
40
|
+
"@storybook/react": "^8.2.9",
|
|
41
|
+
"@storybook/react-vite": "^8.2.9",
|
|
42
|
+
"@storybook/test": "^8.2.9",
|
|
43
|
+
"@types/node": "^22.5.0",
|
|
44
|
+
"@types/react": "^18.3.4",
|
|
45
45
|
"react": "^18.3.1",
|
|
46
|
-
"storybook": "^8.
|
|
47
|
-
"typescript": "^5.5.
|
|
48
|
-
"vite": "^5.
|
|
49
|
-
"vite-plugin-dts": "^
|
|
46
|
+
"storybook": "^8.2.9",
|
|
47
|
+
"typescript": "^5.5.4",
|
|
48
|
+
"vite": "^5.4.2",
|
|
49
|
+
"vite-plugin-dts": "^4.0.3"
|
|
50
50
|
}
|
|
51
51
|
}
|