@deck.gl/core 9.2.8 → 9.2.9
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/dist.dev.js +628 -288
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/lib/attribute/data-column.d.ts +1 -1
- package/dist/lib/attribute/data-column.d.ts.map +1 -1
- package/dist/lib/init.js +2 -2
- package/dist/types/layer-props.d.ts +2 -2
- package/dist/types/layer-props.d.ts.map +1 -1
- package/dist.min.js +75 -75
- package/package.json +5 -5
- package/src/lib/attribute/data-column.ts +1 -1
- package/src/types/layer-props.ts +9 -5
package/dist/index.cjs
CHANGED
|
@@ -232,7 +232,7 @@ var json_loader_default = {
|
|
|
232
232
|
|
|
233
233
|
// dist/lib/init.js
|
|
234
234
|
function checkVersion() {
|
|
235
|
-
const version = true ? "9.2.
|
|
235
|
+
const version = true ? "9.2.9" : globalThis.DECK_VERSION || "untranspiled source";
|
|
236
236
|
const existingVersion = globalThis.deck && globalThis.deck.VERSION;
|
|
237
237
|
if (existingVersion && existingVersion !== version) {
|
|
238
238
|
throw new Error(`deck.gl - multiple versions detected: ${existingVersion} vs ${version}`);
|