@maptiler/sdk 3.4.1-rc2 → 3.4.1-rc3
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/src/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { default as maplibregl } from 'maplibre-gl';
|
|
2
2
|
export type * from 'maplibre-gl';
|
|
3
|
+
export type { ColorRamp as ColorRampML } from 'maplibre-gl';
|
|
3
4
|
/**
|
|
4
5
|
* Get the version of MapTiler SDK, this is declared in the vite config
|
|
5
6
|
* to avoid importing the entire package.json
|
|
@@ -85,5 +86,6 @@ export * from './converters';
|
|
|
85
86
|
export * as helpers from './helpers';
|
|
86
87
|
export type * from './helpers';
|
|
87
88
|
export * from './custom-layers/index';
|
|
88
|
-
export
|
|
89
|
+
export { ColorRamp, ColorRampCollection } from './ColorRamp';
|
|
90
|
+
export type { RgbaColor, ColorStop, ArrayColor, ArrayColorRampStop, ArrayColorRamp, ColorRampOptions } from './ColorRamp';
|
|
89
91
|
export * from './utils';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maptiler/sdk",
|
|
3
|
-
"version": "3.4.1-
|
|
3
|
+
"version": "3.4.1-rc3",
|
|
4
4
|
"description": "The Javascript & TypeScript map SDK tailored for MapTiler Cloud",
|
|
5
5
|
"author": "MapTiler",
|
|
6
6
|
"module": "dist/maptiler-sdk.mjs",
|
|
@@ -86,12 +86,12 @@
|
|
|
86
86
|
"vitest": "^3.0.9"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@maplibre/maplibre-gl-style-spec": "
|
|
90
|
-
"@maptiler/client": "
|
|
89
|
+
"@maplibre/maplibre-gl-style-spec": "~23.3.0",
|
|
90
|
+
"@maptiler/client": "~2.3.2",
|
|
91
91
|
"events": "^3.3.0",
|
|
92
92
|
"gl-matrix": "^3.4.3",
|
|
93
93
|
"js-base64": "^3.7.7",
|
|
94
|
-
"maplibre-gl": "
|
|
94
|
+
"maplibre-gl": "~5.6.0",
|
|
95
95
|
"uuid": "^11.0.5"
|
|
96
96
|
}
|
|
97
97
|
}
|