@evergis/react 2.0.192 → 2.0.193
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/react.cjs.development.js +19 -5
- package/dist/react.cjs.development.js.map +1 -1
- package/dist/react.cjs.production.min.js +1 -1
- package/dist/react.cjs.production.min.js.map +1 -1
- package/dist/react.esm.js +19 -5
- package/dist/react.esm.js.map +1 -1
- package/dist/utils/legend.d.ts +5 -1
- package/package.json +2 -2
package/dist/utils/legend.d.ts
CHANGED
|
@@ -12,7 +12,11 @@ export declare const formatUniqueClassValue: (value: UniqueClass, formatValue?:
|
|
|
12
12
|
export declare const getRangeValues: ({ from, to }: Pick<RangeClass, 'from' | 'to'>, isDouble: boolean, isDate: boolean, index: number) => Pick<RangeClass, 'from' | 'to'>;
|
|
13
13
|
export declare const formatRangeClassValue: (value: RangeClass, formatValue: LegendProps['formatValue'], index: number) => string;
|
|
14
14
|
export declare const checkLayerHasLegend: (layerInfo: Pick<FeatureLayerServiceInfoDc, 'geometryType' | 'style'>) => boolean;
|
|
15
|
-
export declare const getTitleFromCondition: (condition
|
|
15
|
+
export declare const getTitleFromCondition: ({ condition, attribute, formatValue, }: {
|
|
16
|
+
condition?: string | undefined;
|
|
17
|
+
attribute?: LayerAttribute | null | undefined;
|
|
18
|
+
formatValue?: LegendProps['formatValue'];
|
|
19
|
+
}) => string;
|
|
16
20
|
export declare function createValueTitleFromCondition(paramValue: ParameterByAttributeValue<ParameterValueWithSymbol>, attribute: LayerAttribute | null, formatValue: LegendProps['formatValue'], index: number): string;
|
|
17
21
|
export declare const enum LegendSymbolTypes {
|
|
18
22
|
Point = 0,
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.0.
|
|
2
|
+
"version": "2.0.193",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"punycode": "^2.1.1",
|
|
80
80
|
"styled-components": "^5.3.5"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "d0c511a32bd555d1b0f7d15c44b2f1bb172b90b9"
|
|
83
83
|
}
|