@mptw/skylens-ui 1.2.3 → 1.2.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/app.vue CHANGED
@@ -1,3 +1,3 @@
1
1
  <template lang="pug">
2
- SLPillLabel(label='Pill Label', color='secondary-new')
2
+ SLRangeInput
3
3
  </template>
@@ -14,21 +14,22 @@
14
14
  .range-input-accept-values
15
15
  span {{ min }}
16
16
  span {{ max }}
17
- VueSlider(
18
- v-model='modelValueProxy'
19
- :min='min'
20
- :max='max'
21
- :interval='step'
22
- :contained='true'
23
- :lazy='false',
24
- :disabled='disabled || beReadonly || min === max'
25
- :dotSize='12'
26
- :height='6'
27
- tooltip='none'
28
- :dotOptions='dotOptions'
29
- :railStyle='railStyle'
30
- :processStyle='processStyle'
31
- )
17
+ ClientOnly
18
+ VueSlider(
19
+ v-model='modelValueProxy'
20
+ :min='min'
21
+ :max='max'
22
+ :interval='step'
23
+ :contained='true'
24
+ :lazy='false',
25
+ :disabled='disabled || beReadonly || min === max'
26
+ :dotSize='12'
27
+ :height='6'
28
+ tooltip='none'
29
+ :dotOptions='dotOptions'
30
+ :railStyle='railStyle'
31
+ :processStyle='processStyle'
32
+ )
32
33
  input(
33
34
  type='text'
34
35
  :value='modelValue'
@@ -41,9 +42,8 @@
41
42
  </template>
42
43
 
43
44
  <script lang="ts">
44
- import "vue-slider-component/theme/default.css";
45
- import VueSlider from "vue-slider-component";
46
- import type { DotOption } from "vue-slider-component";
45
+ import VueSlider from "vue-3-slider-component";
46
+ import type { DotOption } from "vue-3-slider-component";
47
47
 
48
48
  export default defineComponent({
49
49
  name: "SLRangeInput",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mptw/skylens-ui",
3
3
  "type": "module",
4
- "version": "1.2.3",
4
+ "version": "1.2.5",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",
@@ -12,8 +12,8 @@
12
12
  "postinstall": "nuxt prepare .playground"
13
13
  },
14
14
  "devDependencies": {
15
- "@nuxt/eslint-config": "^0.3.7",
16
- "eslint": "^9.0.0",
15
+ "@nuxt/eslint-config": "^0.3.13",
16
+ "eslint": "^9.3.0",
17
17
  "nuxt": "^3.11.2",
18
18
  "typescript": "^5.4.5"
19
19
  },
@@ -23,17 +23,17 @@
23
23
  "@deck.gl/layers": "^8.9.35",
24
24
  "@googlemaps/js-api-loader": "^1.16.6",
25
25
  "@gtm-support/vue-gtm": "^2.2.0",
26
- "@nuxtjs/tailwindcss": "^6.11.4",
26
+ "@nuxtjs/tailwindcss": "^6.12.0",
27
27
  "@popperjs/core": "^2.11.8",
28
28
  "@types/commonmark": "^0.27.9",
29
29
  "@types/dompurify": "^3.0.5",
30
- "@types/google.maps": "^3.55.7",
30
+ "@types/google.maps": "^3.55.9",
31
31
  "@types/lodash-es": "^4.17.12",
32
32
  "@types/sortablejs": "^1.15.8",
33
- "@vue/language-plugin-pug": "^2.0.13",
33
+ "@vue/language-plugin-pug": "^2.0.19",
34
34
  "commonmark": "^0.31.0",
35
35
  "date-fns": "^3.6.0",
36
- "dompurify": "^3.1.0",
36
+ "dompurify": "^3.1.4",
37
37
  "echarts": "^5.5.0",
38
38
  "echarts-wordcloud": "^2.1.0",
39
39
  "exceljs": "^4.4.0",
@@ -44,11 +44,12 @@
44
44
  "rxjs": "^7.8.1",
45
45
  "sortablejs": "^1.15.2",
46
46
  "stylus": "^0.63.0",
47
- "swiper": "^11.1.1",
47
+ "swiper": "^11.1.3",
48
48
  "tailwindcss-textshadow": "^2.1.3",
49
49
  "v-calendar": "^3.1.2",
50
- "vue": "^3.4.22",
51
- "vue-echarts": "^6.6.9",
50
+ "vue": "^3.4.27",
51
+ "vue-3-slider-component": "^0.1.4",
52
+ "vue-echarts": "^6.7.2",
52
53
  "vue-slider-component": "^4.1.0-beta.7"
53
54
  }
54
55
  }