@abi-software/map-utilities 0.0.0-beta.4 → 0.0.0-beta.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/map-utilities",
3
- "version": "0.0.0-beta.4",
3
+ "version": "0.0.0-beta.5",
4
4
  "files": [
5
5
  "dist/*",
6
6
  "src/*",
@@ -171,7 +171,9 @@ export default {
171
171
  return scaffoldEl;
172
172
  },
173
173
  getCurrentMultiflatmap: function () {
174
+ console.log("🚀 ~ this.multiflatmapRef:", this.multiflatmapRef);
174
175
  const multiflatmapEl = this.multiflatmapRef?.$el || null;
176
+ console.log("🚀 ~ multiflatmapEl:", multiflatmapEl);
175
177
  return multiflatmapEl;
176
178
  },
177
179
  getCurrentFlatmap: function () {
@@ -182,6 +184,7 @@ export default {
182
184
  },
183
185
  toggleHelpModeHighlight: function (option) {
184
186
  const currentMultiflatmapEl = this.getCurrentMultiflatmap();
187
+ console.log("🚀 ~ currentMultiflatmapEl:", currentMultiflatmapEl);
185
188
  const currentFlatmapEl = this.getCurrentFlatmap();
186
189
  const currentScaffoldEl = this.getCurrentScaffold();
187
190
  const allHighlightedItems =
@@ -189,9 +192,25 @@ export default {
189
192
 
190
193
  if (currentMultiflatmapEl) {
191
194
  if (option) {
195
+ console.log(
196
+ "🚀 ~ currentMultiflatmapEl.classList:",
197
+ currentMultiflatmapEl.classList
198
+ );
192
199
  currentMultiflatmapEl.classList.add("in-help");
200
+ console.log(
201
+ "🚀 ~ currentMultiflatmapEl.classList:",
202
+ currentMultiflatmapEl.classList
203
+ );
193
204
  } else {
205
+ console.log(
206
+ "🚀 ~ currentMultiflatmapEl.classList:",
207
+ currentMultiflatmapEl.classList
208
+ );
194
209
  currentMultiflatmapEl.classList.remove("in-help");
210
+ console.log(
211
+ "🚀 ~ currentMultiflatmapEl.classList:",
212
+ currentMultiflatmapEl.classList
213
+ );
195
214
  }
196
215
  }
197
216
 
package/vite.config.js CHANGED
@@ -9,7 +9,7 @@ import { ElementPlusResolver } from "unplugin-vue-components/resolvers";
9
9
  // https://vitejs.dev/config/
10
10
  export default defineConfig({
11
11
  server: {
12
- port: 8081,
12
+ port: 8083,
13
13
  },
14
14
  plugins: [
15
15
  vue(),