septima-widget 3.4.4 → 3.4.5

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.4",
3
+ "version": "3.4.5",
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.4'
8
+ VERSION = '3.4.5'
9
9
 
10
10
  constructor(target, config, options) {
11
11
  this._target = target
@@ -13,7 +13,7 @@ export default class WidgetAPI {
13
13
  }
14
14
 
15
15
  async _load(target, config, options) {
16
- const { load } = await import('https://widget.cdn.septima.dk/3.4.4/core/load.mjs')
16
+ const { load } = await import('https://widget.cdn.septima.dk/3.4.5/core/load.mjs')
17
17
  this._widget = await load(target, config, options, this)
18
18
  this.on('controlsready', () => {
19
19
  this._controlsReady()
@@ -199,7 +199,7 @@ export default class WidgetAPI {
199
199
 
200
200
  transform(geojson, options, callback) {
201
201
  this._controlsReady(async () => {
202
- const { transform } = await import('https://widget.cdn.septima.dk/3.4.4/core/utils.mjs')
202
+ const { transform } = await import('https://widget.cdn.septima.dk/3.4.5/core/utils.mjs')
203
203
  if (callback) {
204
204
  callback(transform(geojson, options))
205
205
  } else {