@evergis/react 3.1.125 → 3.1.126-alpha.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/LICENSE +21 -21
- package/README.md +7 -7
- package/dist/components/Dashboard/components/AddFeatureButton/index.d.ts +2 -2
- package/dist/components/Dashboard/hooks/useDataSources.d.ts +2 -2
- package/dist/components/Dashboard/types.d.ts +2 -2
- package/dist/components/Layer/types.d.ts +2 -2
- package/dist/components/Layer/utils/getClientStyleItemPrefixSuffix.d.ts +2 -2
- package/dist/core/index.d.ts +0 -1
- package/dist/hooks/map/useLayerParams.d.ts +1 -2
- package/dist/index.js +2378 -2384
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +2380 -2386
- package/dist/react.esm.js.map +1 -1
- package/dist/types/layer.d.ts +2 -2
- package/dist/utils/date.d.ts +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/metersPerPixel.d.ts +1 -0
- package/package.json +4 -4
- package/dist/core/feature/convertSpToTurfFeature.d.ts +0 -3
- package/dist/core/feature/index.d.ts +0 -1
package/dist/types/layer.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AttributeConfigurationDc,
|
|
1
|
+
import { AttributeConfigurationDc, OgcGeometryType, LayerDefinitionDc, PostgresTileCatalogServiceConfigurationDc, ProxyServiceInfoDc, QueryLayerServiceConfigurationDc, ServiceInfoDc } from '@evergis/api';
|
|
2
2
|
import { ClientStyle } from './index';
|
|
3
3
|
interface AttributeConfigurationParams {
|
|
4
4
|
idAttribute: string;
|
|
@@ -10,7 +10,7 @@ interface AttributeConfigurationParams {
|
|
|
10
10
|
export type PostgresLayerService = ServiceInfoDc & {
|
|
11
11
|
configuration?: QueryLayerServiceConfigurationDc | PostgresTileCatalogServiceConfigurationDc;
|
|
12
12
|
layerDefinition?: LayerDefinitionDc;
|
|
13
|
-
geometryType?:
|
|
13
|
+
geometryType?: OgcGeometryType | EditGeometryType;
|
|
14
14
|
};
|
|
15
15
|
type PostgresLayerServiceConfigurationParams = Pick<QueryLayerServiceConfigurationDc, "acl" | "condition">;
|
|
16
16
|
export type ProxyServiceInfo = Required<Omit<ProxyServiceInfoDc, keyof ServiceInfoDc>>;
|
package/dist/utils/date.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare enum DateFormat {
|
|
|
8
8
|
AxisTooltip = "d MMMM yyyy"
|
|
9
9
|
}
|
|
10
10
|
interface FormatDateOptions {
|
|
11
|
-
dateFormat?: DateFormat;
|
|
11
|
+
dateFormat?: DateFormat | string;
|
|
12
12
|
defaultValue?: RawDateType;
|
|
13
13
|
}
|
|
14
14
|
export declare const getDate: (rawDate?: RawDateType | null) => Date | null;
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const metersPerPixel: (zoom: number, lat: number) => number;
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.1.
|
|
2
|
+
"version": "3.1.126-alpha.1",
|
|
3
3
|
"name": "@evergis/react",
|
|
4
4
|
"author": "Everpoint",
|
|
5
5
|
"license": "MIT",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"storybook": "^7.6.14"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@evergis/api": "^4.1.
|
|
58
|
-
"@evergis/charts": "^3.1.
|
|
57
|
+
"@evergis/api": "^4.1.55-alpha.1",
|
|
58
|
+
"@evergis/charts": "^3.1.53-alpha.1",
|
|
59
59
|
"@evergis/color": "^1.0.0-alpha.1",
|
|
60
60
|
"@evergis/uilib-gl": "^1.0.74",
|
|
61
61
|
"@mapbox/mapbox-gl-draw": "^1.5.0",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"uuid": "^13.0.0",
|
|
88
88
|
"wkt": "^0.1.1"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "f3f82094ddc6cd4a6f261f1884973351c4412b2e"
|
|
91
91
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './convertSpToTurfFeature';
|