septima-widget 3.4.6 → 3.4.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/widgetapi.mjs +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "septima-widget",
3
- "version": "3.4.6",
3
+ "version": "3.4.8",
4
4
  "description": "Septima Widget API",
5
5
  "type": "module",
6
6
  "module": "./widgetapi.mjs",
package/widgetapi.mjs CHANGED
@@ -5,7 +5,7 @@ export default class WidgetAPI {
5
5
 
6
6
  _target = null
7
7
 
8
- VERSION = '3.4.6'
8
+ VERSION = '3.4.8'
9
9
 
10
10
  isReady = false
11
11
 
@@ -15,7 +15,7 @@ export default class WidgetAPI {
15
15
  }
16
16
 
17
17
  async _load(target, config, options) {
18
- const { load } = await import('https://widget.cdn.septima.dk/3.4.6/core/load.mjs')
18
+ const { load } = await import('https://widget.cdn.septima.dk/3.4.8/core/load.mjs')
19
19
  this._widget = await load(target, config, options, this)
20
20
  this.on('controlsready', () => {
21
21
  this._controlsReady()
@@ -202,7 +202,7 @@ export default class WidgetAPI {
202
202
 
203
203
  transform(geojson, options, callback) {
204
204
  this._controlsReady(async () => {
205
- const { transform } = await import('https://widget.cdn.septima.dk/3.4.6/core/utils.mjs')
205
+ const { transform } = await import('https://widget.cdn.septima.dk/3.4.8/core/utils.mjs')
206
206
  if (callback) {
207
207
  callback(transform(geojson, options))
208
208
  } else {