@ccrpc/webmapgl 0.18.1 → 0.18.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [0.18.2](https://gitlab.com/ccrpc/webmapgl/compare/v0.18.1...v0.18.2) (2024-08-26)
6
+
7
+
8
+ ### Features
9
+
10
+ * Adding Skaffold to the project ([d02baa2](https://gitlab.com/ccrpc/webmapgl/commit/d02baa2a2e36729b93656a501c4e499cfc0133db))
11
+ * Updating side menu to match previous versions ([6d6c7d8](https://gitlab.com/ccrpc/webmapgl/commit/6d6c7d8612c560ba872d5f70ae00fcb13435e5ca))
12
+
5
13
  ## [0.18.1](https://gitlab.com/ccrpc/webmapgl/compare/v0.18.0...v0.18.1) (2023-09-13)
6
14
 
7
15
  ## [0.18.0](https://gitlab.com/ccrpc/webmapgl/compare/v0.17.80...v0.18.0) (2023-09-13)
@@ -1 +1 @@
1
- {"file":"app-globals-62694daf.js","mappings":";;;;AAEY,MAAC,aAAa,GAAG,MAAM;AAEnC,EAAEA,sBAAqB,EAAE,CAAC;AAC1B;;;;","names":["ionicCoreGlobalScript"],"sources":["@stencil/core/internal/app-globals"],"sourcesContent":["import ionicCoreGlobalScript from '/opt/code/webmapgl/node_modules/@ionic/core/dist/collection/global/ionic-global.js';\nimport webmapglGlobalScript from '/opt/code/webmapgl/src/global/webmapgl.ts';\nexport const globalScripts = () => {\n webmapglGlobalScript();\n ionicCoreGlobalScript();\n};\n"],"version":3}
1
+ {"file":"app-globals-62694daf.js","mappings":";;;;AAEY,MAAC,aAAa,GAAG,MAAM;AAEnC,EAAEA,sBAAqB,EAAE,CAAC;AAC1B;;;;","names":["ionicCoreGlobalScript"],"sources":["@stencil/core/internal/app-globals"],"sourcesContent":["import ionicCoreGlobalScript from '/var/home/fj44404@co.champaign.il.us/.local/code/webmapgl/node_modules/@ionic/core/dist/collection/global/ionic-global.js';\nimport webmapglGlobalScript from '/var/home/fj44404@co.champaign.il.us/.local/code/webmapgl/src/global/webmapgl.ts';\nexport const globalScripts = () => {\n webmapglGlobalScript();\n ionicCoreGlobalScript();\n};\n"],"version":3}
@@ -196,13 +196,14 @@ const App$1 = class {
196
196
  this.menu = true;
197
197
  this.menuLabel = i18n._t("webmapgl.app.menulabel");
198
198
  this.splitPane = true;
199
+ this.menuType = "push";
199
200
  }
200
201
  componentDidLoad() {
201
202
  this.el.querySelector("gl-map").resizeMap();
202
203
  }
203
204
  getMenu() {
204
205
  if (this.menu === true) {
205
- return (index.h("ion-menu", { "content-id": "main", type: "push" }, index.h("ion-header", null, index.h("ion-toolbar", null, index.h("ion-title", null, this.menuLabel))), index.h("ion-content", null, index.h("div", { class: "gl-menu-content" }, index.h("slot", { name: "menu" })))));
206
+ return (index.h("ion-menu", { "content-id": "main", type: this.menuType }, index.h("ion-header", null, index.h("ion-toolbar", null, index.h("ion-title", null, this.menuLabel))), index.h("ion-content", null, index.h("div", { class: "gl-menu-content" }, index.h("slot", { name: "menu" })))));
206
207
  }
207
208
  else if (this.menu === "custom") {
208
209
  return index.h("slot", { name: "menu" });
@@ -210,7 +211,7 @@ const App$1 = class {
210
211
  }
211
212
  getMenuButton() {
212
213
  if (this.menu === true)
213
- return (index.h("ion-menu-toggle", null, index.h("ion-button", null, index.h("ion-icon", { slot: "icon-only", name: "options" }))));
214
+ return (index.h("ion-menu-toggle", null, index.h("ion-button", null, index.h("ion-icon", { slot: "icon-only", name: "menu" }))));
214
215
  }
215
216
  getMain() {
216
217
  return (index.h("div", { class: "pane-main", id: "main" }, index.h("ion-header", null, index.h("ion-toolbar", null, index.h("ion-buttons", { slot: "start" }, this.getMenuButton(), index.h("slot", { name: "start-buttons" })), index.h("ion-buttons", { slot: "end" }, index.h("slot", { name: "end-buttons" })), index.h("ion-title", null, this.label))), index.h("ion-content", { scrollX: false, scrollY: false, class: "map-content" }, index.h("div", { class: "fixed-content", slot: "fixed" }, index.h("slot", null))), index.h("slot", { name: "after-content" }), index.h("ion-footer", null, index.h("slot", { name: "footer" }))));