@map-colonies/react-components 3.10.3 → 3.10.4
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.10.4](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.10.3...@map-colonies/react-components@3.10.4) (2022-03-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* for poi ([#122](https://github.com/MapColonies/shared-components/issues/122)) ([ef849eb](https://github.com/MapColonies/shared-components/commit/ef849eb488a19a072e32de7af9d3038bc7e22656))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.10.3](https://github.com/MapColonies/shared-components/compare/@map-colonies/react-components@3.10.2...@map-colonies/react-components@3.10.3) (2022-02-22)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PolylineDashMaterialProperty, ConstantProperty, VerticalOrigin, LabelStyle, Cartesian2, Cartesian3, BoundingSphere, Ellipsoid, ConstantPositionProperty, GeographicTilingScheme } from 'cesium';
|
|
1
|
+
import { PolylineDashMaterialProperty, ConstantProperty, VerticalOrigin, LabelStyle, Cartesian2, Cartesian3, BoundingSphere, Ellipsoid, ConstantPositionProperty, GeographicTilingScheme, Cartographic } from 'cesium';
|
|
2
2
|
export declare class CesiumPolylineDashMaterialProperty extends PolylineDashMaterialProperty {
|
|
3
3
|
}
|
|
4
4
|
export declare class CesiumConstantProperty extends ConstantProperty {
|
|
@@ -9,6 +9,8 @@ export declare class CesiumCartesian2 extends Cartesian2 {
|
|
|
9
9
|
}
|
|
10
10
|
export declare class CesiumCartesian3 extends Cartesian3 {
|
|
11
11
|
}
|
|
12
|
+
export declare class CesiumCartographic extends Cartographic {
|
|
13
|
+
}
|
|
12
14
|
export declare class CesiumBoundingSphere extends BoundingSphere {
|
|
13
15
|
}
|
|
14
16
|
export declare class CesiumEllipsoid extends Ellipsoid {
|
|
@@ -17,3 +19,4 @@ export declare class CesiumGeographicTilingScheme extends GeographicTilingScheme
|
|
|
17
19
|
}
|
|
18
20
|
export declare const CesiumVerticalOrigin: typeof VerticalOrigin;
|
|
19
21
|
export declare const CesiumLabelStyle: typeof LabelStyle;
|
|
22
|
+
export { sampleTerrainMostDetailed as cesiumSampleTerrainMostDetailed } from 'cesium';
|
|
@@ -15,7 +15,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
15
15
|
};
|
|
16
16
|
})();
|
|
17
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
exports.CesiumLabelStyle = exports.CesiumVerticalOrigin = exports.CesiumGeographicTilingScheme = exports.CesiumEllipsoid = exports.CesiumBoundingSphere = exports.CesiumCartesian3 = exports.CesiumCartesian2 = exports.CesiumConstantPositionProperty = exports.CesiumConstantProperty = exports.CesiumPolylineDashMaterialProperty = void 0;
|
|
18
|
+
exports.cesiumSampleTerrainMostDetailed = exports.CesiumLabelStyle = exports.CesiumVerticalOrigin = exports.CesiumGeographicTilingScheme = exports.CesiumEllipsoid = exports.CesiumBoundingSphere = exports.CesiumCartographic = exports.CesiumCartesian3 = exports.CesiumCartesian2 = exports.CesiumConstantPositionProperty = exports.CesiumConstantProperty = exports.CesiumPolylineDashMaterialProperty = void 0;
|
|
19
19
|
var cesium_1 = require("cesium");
|
|
20
20
|
// PROXIED CLASSES
|
|
21
21
|
var CesiumPolylineDashMaterialProperty = /** @class */ (function (_super) {
|
|
@@ -58,6 +58,14 @@ var CesiumCartesian3 = /** @class */ (function (_super) {
|
|
|
58
58
|
return CesiumCartesian3;
|
|
59
59
|
}(cesium_1.Cartesian3));
|
|
60
60
|
exports.CesiumCartesian3 = CesiumCartesian3;
|
|
61
|
+
var CesiumCartographic = /** @class */ (function (_super) {
|
|
62
|
+
__extends(CesiumCartographic, _super);
|
|
63
|
+
function CesiumCartographic() {
|
|
64
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
65
|
+
}
|
|
66
|
+
return CesiumCartographic;
|
|
67
|
+
}(cesium_1.Cartographic));
|
|
68
|
+
exports.CesiumCartographic = CesiumCartographic;
|
|
61
69
|
var CesiumBoundingSphere = /** @class */ (function (_super) {
|
|
62
70
|
__extends(CesiumBoundingSphere, _super);
|
|
63
71
|
function CesiumBoundingSphere() {
|
|
@@ -87,3 +95,6 @@ exports.CesiumGeographicTilingScheme = CesiumGeographicTilingScheme;
|
|
|
87
95
|
exports.CesiumVerticalOrigin = cesium_1.VerticalOrigin;
|
|
88
96
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
89
97
|
exports.CesiumLabelStyle = cesium_1.LabelStyle;
|
|
98
|
+
// PROXIED FUNCTIONS
|
|
99
|
+
var cesium_2 = require("cesium");
|
|
100
|
+
Object.defineProperty(exports, "cesiumSampleTerrainMostDetailed", { enumerable: true, get: function () { return cesium_2.sampleTerrainMostDetailed; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@map-colonies/react-components",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.4",
|
|
4
4
|
"module": "dist/index.js",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"jest-enzyme": "^7.1.2",
|
|
94
94
|
"react-test-renderer": "^16.13.1"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "77edacc668fbc4fbdae5e5fb68630f79fb5250fd",
|
|
97
97
|
"jest": {
|
|
98
98
|
"coverageReporters": [
|
|
99
99
|
"text",
|
|
@@ -9,6 +9,7 @@ import {
|
|
|
9
9
|
Ellipsoid,
|
|
10
10
|
ConstantPositionProperty,
|
|
11
11
|
GeographicTilingScheme,
|
|
12
|
+
Cartographic,
|
|
12
13
|
} from 'cesium';
|
|
13
14
|
|
|
14
15
|
// PROXIED CLASSES
|
|
@@ -22,6 +23,8 @@ export class CesiumCartesian2 extends Cartesian2 {}
|
|
|
22
23
|
|
|
23
24
|
export class CesiumCartesian3 extends Cartesian3 {}
|
|
24
25
|
|
|
26
|
+
export class CesiumCartographic extends Cartographic {}
|
|
27
|
+
|
|
25
28
|
export class CesiumBoundingSphere extends BoundingSphere {}
|
|
26
29
|
|
|
27
30
|
export class CesiumEllipsoid extends Ellipsoid {}
|
|
@@ -34,3 +37,6 @@ export const CesiumVerticalOrigin = VerticalOrigin;
|
|
|
34
37
|
|
|
35
38
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
36
39
|
export const CesiumLabelStyle = LabelStyle;
|
|
40
|
+
|
|
41
|
+
// PROXIED FUNCTIONS
|
|
42
|
+
export { sampleTerrainMostDetailed as cesiumSampleTerrainMostDetailed } from 'cesium';
|