@mptw/skylens-ui 1.4.72 → 1.4.74

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.
@@ -7,6 +7,7 @@
7
7
  @click="onClicked"
8
8
  @mouseover="onMouseOvered"
9
9
  @mouseout="onMouseOuted"
10
+ @selectchanged="onSelectChanged"
10
11
  ref="chartComp"
11
12
  ).vchart
12
13
  </template>
@@ -99,7 +100,7 @@ export default defineComponent({
99
100
  default: false,
100
101
  },
101
102
  },
102
- emits: ["click", 'mouseover', 'mouseout'],
103
+ emits: ["click", 'mouseover', 'mouseout', 'selectchanged'],
103
104
  setup(props, { emit }) {
104
105
  const { option } = toRefs(props);
105
106
 
@@ -143,6 +144,10 @@ export default defineComponent({
143
144
  emit("mouseout", e);
144
145
  }
145
146
 
147
+ function onSelectChanged(e: any) {
148
+ emit("selectchanged", e);
149
+ }
150
+
146
151
  onMounted(() => {
147
152
  loadMapJson();
148
153
  });
@@ -152,6 +157,7 @@ export default defineComponent({
152
157
  onClicked,
153
158
  onMouseOvered,
154
159
  onMouseOuted,
160
+ onSelectChanged,
155
161
  };
156
162
  },
157
163
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mptw/skylens-ui",
3
3
  "type": "module",
4
- "version": "1.4.72",
4
+ "version": "1.4.74",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",
@@ -12,42 +12,42 @@
12
12
  "postinstall": "nuxt prepare .playground"
13
13
  },
14
14
  "devDependencies": {
15
- "@nuxt/eslint-config": "^1.2.0",
16
- "eslint": "^9.22.0",
17
- "nuxt": "^3.16.1",
18
- "typescript": "^5.8.2"
15
+ "@nuxt/eslint-config": "^1.7.1",
16
+ "eslint": "^9.32.0",
17
+ "nuxt": "^3.17.7",
18
+ "typescript": "^5.8.3"
19
19
  },
20
20
  "dependencies": {
21
21
  "@deck.gl/core": "^8.9.35",
22
22
  "@deck.gl/google-maps": "^8.9.35",
23
23
  "@deck.gl/layers": "^8.9.35",
24
- "@googlemaps/js-api-loader": "^1.16.8",
24
+ "@googlemaps/js-api-loader": "^1.16.10",
25
25
  "@gtm-support/vue-gtm": "^3.1.0",
26
- "@nuxtjs/tailwindcss": "^6.13.2",
26
+ "@nuxtjs/tailwindcss": "^6.14.0",
27
27
  "@popperjs/core": "^2.11.8",
28
- "@types/commonmark": "^0.27.9",
28
+ "@types/commonmark": "^0.27.10",
29
29
  "@types/dompurify": "^3.2.0",
30
30
  "@types/google.maps": "^3.58.1",
31
31
  "@types/lodash-es": "^4.17.12",
32
32
  "@types/sortablejs": "^1.15.8",
33
- "@vue/language-plugin-pug": "^2.2.8",
33
+ "@vue/language-plugin-pug": "^3.0.4",
34
34
  "commonmark": "^0.31.2",
35
35
  "date-fns": "^4.1.0",
36
- "dompurify": "^3.2.4",
36
+ "dompurify": "^3.2.6",
37
37
  "echarts": "^5.6.0",
38
38
  "echarts-wordcloud": "^2.1.0",
39
39
  "exceljs": "^4.4.0",
40
- "gsap": "^3.12.7",
40
+ "gsap": "^3.13.0",
41
41
  "html-to-image": "^1.11.13",
42
42
  "lodash-es": "^4.17.21",
43
43
  "pug": "^3.0.3",
44
44
  "rxjs": "^7.8.2",
45
45
  "sortablejs": "^1.15.6",
46
46
  "stylus": "^0.64.0",
47
- "swiper": "^11.2.6",
47
+ "swiper": "^11.2.10",
48
48
  "tailwindcss-textshadow": "^2.1.3",
49
49
  "v-calendar": "^3.1.2",
50
- "vue": "^3.5.13",
50
+ "vue": "^3.5.18",
51
51
  "vue-3-slider-component": "^1.0.2",
52
52
  "vue-echarts": "^7.0.3"
53
53
  }