@trailstash/ultra 5.0.0 → 5.0.1

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/.gitlab-ci.yml CHANGED
@@ -16,6 +16,7 @@ pages:
16
16
  - npm run build:maplibre-examples-docs
17
17
  - npm run build:docs
18
18
  - npm run build:pages
19
+ - find public -type f -regex '.*\.\(htm\|html\|xml\|txt\|text\|js\|css\|svg\)$' -exec gzip -f -k {} \;
19
20
  artifacts:
20
21
  paths:
21
22
  - public
@@ -132,16 +132,6 @@ export class ShareModal extends HTMLElement {
132
132
  opts.center = this.center;
133
133
  opts.zoom = this.zoom;
134
134
  }
135
- let transform;
136
- try {
137
- ({ transform } = parseSettings(this.query));
138
- } catch {}
139
- if (transform) {
140
- this.refs.autoRunCheckBox.checked = false;
141
- this.refs.autoRunCheckBox.disabled = true;
142
- } else {
143
- this.refs.autoRunCheckBox.disabled = false;
144
- }
145
135
  opts.autoRun = this.refs.autoRunCheckBox.checked;
146
136
  this.refs.queryInput.value = toQueryParams(opts);
147
137
  delete opts.autoRun;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "5.0.0",
6
+ "version": "5.0.1",
7
7
  "description": "A web based tool for making MapLibre GL maps with data from sources such as Overpass, GeoJSON, GPX, KML, TCX, etc",
8
8
  "main": "index.js",
9
9
  "scripts": {