@antv/l7-layers 2.24.3 → 2.25.0

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.
@@ -47,7 +47,7 @@ export default abstract class Tile extends EventEmitter implements ITile {
47
47
  enablePropagation?: boolean | undefined;
48
48
  fitBoundsOptions?: unknown;
49
49
  name?: string | undefined;
50
- blend?: "normal" | "additive" | "subtractive" | "min" | "max" | "none" | undefined;
50
+ blend?: "normal" | "none" | "additive" | "subtractive" | "min" | "max" | undefined;
51
51
  depth?: boolean | undefined;
52
52
  pickedFeatureID?: number | undefined;
53
53
  enableMultiPassRenderer?: boolean | undefined;
@@ -1,5 +1,5 @@
1
1
  import LineLayer from '../../line';
2
2
  import PointLayer from '../../point/index';
3
3
  import PolygonLayer from '../../polygon';
4
- export declare function getTileLayer(type: string): typeof PolygonLayer | typeof LineLayer | typeof PointLayer;
4
+ export declare function getTileLayer(type: string): typeof PointLayer | typeof PolygonLayer | typeof LineLayer;
5
5
  export declare function isNeedMask(type: string): boolean;
@@ -47,7 +47,7 @@ export default abstract class Tile extends EventEmitter implements ITile {
47
47
  enablePropagation?: boolean | undefined;
48
48
  fitBoundsOptions?: unknown;
49
49
  name?: string | undefined;
50
- blend?: "normal" | "additive" | "subtractive" | "min" | "max" | "none" | undefined;
50
+ blend?: "normal" | "none" | "additive" | "subtractive" | "min" | "max" | undefined;
51
51
  depth?: boolean | undefined;
52
52
  pickedFeatureID?: number | undefined;
53
53
  enableMultiPassRenderer?: boolean | undefined;
@@ -1,5 +1,5 @@
1
1
  import LineLayer from '../../line';
2
2
  import PointLayer from '../../point/index';
3
3
  import PolygonLayer from '../../polygon';
4
- export declare function getTileLayer(type: string): typeof PolygonLayer | typeof LineLayer | typeof PointLayer;
4
+ export declare function getTileLayer(type: string): typeof PointLayer | typeof PolygonLayer | typeof LineLayer;
5
5
  export declare function isNeedMask(type: string): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antv/l7-layers",
3
- "version": "2.24.3",
3
+ "version": "2.25.0",
4
4
  "description": "L7's collection of built-in layers",
5
5
  "license": "MIT",
6
6
  "author": "https://github.com/orgs/antvis/people",
@@ -26,15 +26,15 @@
26
26
  "earcut": "^2.2.1",
27
27
  "eventemitter3": "^4.0.0",
28
28
  "gl-matrix": "^3.1.0",
29
- "@antv/l7-core": "2.24.3",
30
- "@antv/l7-maps": "2.24.3",
31
- "@antv/l7-source": "2.24.3",
32
- "@antv/l7-utils": "2.24.3"
29
+ "@antv/l7-source": "2.25.0",
30
+ "@antv/l7-core": "2.25.0",
31
+ "@antv/l7-utils": "2.25.0",
32
+ "@antv/l7-maps": "2.25.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/earcut": "^2.1.0",
36
36
  "@types/gl-matrix": "^2.4.5",
37
- "@antv/l7-test-utils": "^2.24.3"
37
+ "@antv/l7-test-utils": "^2.25.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public",