spoko-design-system 0.9.5 → 0.9.6

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": "spoko-design-system",
3
- "version": "0.9.5",
3
+ "version": "0.9.6",
4
4
  "private": false,
5
5
  "main": "./index.ts",
6
6
  "module": "./index.ts",
@@ -41,12 +41,12 @@
41
41
  ],
42
42
  "dependencies": {
43
43
  "@algolia/client-search": "^5.37.0",
44
- "@astrojs/mdx": "^4.3.5",
45
- "@astrojs/node": "^9.4.3",
44
+ "@astrojs/mdx": "^4.3.6",
45
+ "@astrojs/node": "^9.4.4",
46
46
  "@astrojs/sitemap": "^3.6.0",
47
47
  "@astrojs/ts-plugin": "^1.10.4",
48
48
  "@astrojs/vue": "^5.1.1",
49
- "@docsearch/css": "^4.0.1",
49
+ "@docsearch/css": "^4.1.0",
50
50
  "@iconify-json/ant-design": "^1.2.5",
51
51
  "@iconify-json/bi": "^1.2.6",
52
52
  "@iconify-json/bx": "^1.2.2",
@@ -63,7 +63,7 @@
63
63
  "@iconify-json/icon-park-outline": "^1.2.4",
64
64
  "@iconify-json/la": "^1.2.1",
65
65
  "@iconify-json/lucide": "^1.2.68",
66
- "@iconify-json/material-symbols-light": "^1.2.36",
66
+ "@iconify-json/material-symbols-light": "^1.2.37",
67
67
  "@iconify-json/mdi": "^1.2.3",
68
68
  "@iconify-json/noto-v1": "^1.2.5",
69
69
  "@iconify-json/octicon": "^1.2.14",
@@ -71,7 +71,7 @@
71
71
  "@iconify-json/simple-icons": "^1.2.52",
72
72
  "@iconify-json/system-uicons": "^1.2.4",
73
73
  "@iconify-json/uil": "^1.2.3",
74
- "@iconify/json": "^2.2.385",
74
+ "@iconify/json": "^2.2.386",
75
75
  "@iconify/vue": "^5.0.0",
76
76
  "@playform/compress": "^0.2.0",
77
77
  "@playform/inline": "^0.1.2",
@@ -96,19 +96,19 @@
96
96
  "i18next-fs-backend": "^2.6.0",
97
97
  "i18next-http-backend": "^3.0.2",
98
98
  "i18next-vue": "^5.3.0",
99
- "swiper": "^12.0.1",
99
+ "swiper": "^12.0.2",
100
100
  "unocss": "66.5.1",
101
101
  "vue": "^3.5.21"
102
102
  },
103
103
  "devDependencies": {
104
104
  "@types/gtag.js": "^0.0.20",
105
- "@types/node": "^24.5.1",
105
+ "@types/node": "^24.5.2",
106
106
  "@unocss/transformer-variant-group": "66.5.1",
107
107
  "@vitejs/plugin-vue": "^6.0.1",
108
108
  "@vue/compiler-sfc": "^3.5.21",
109
- "astro": "^5.13.8",
109
+ "astro": "^5.13.10",
110
110
  "unocss": "^0.65.0",
111
- "vite": "^7.1.5"
111
+ "vite": "^7.1.7"
112
112
  },
113
113
  "packageManager": "pnpm@10.16.1",
114
114
  "pnpm": {
@@ -22,7 +22,7 @@ const props = defineProps({
22
22
  required: false,
23
23
  },
24
24
  breadcrumbs: {
25
- type: Object as PropType<Breadcrumb[]>,
25
+ type: Array as PropType<Breadcrumb[]>,
26
26
  required: true
27
27
  },
28
28
  productNumber: {
@@ -9,7 +9,7 @@ const props = defineProps({
9
9
  required: true,
10
10
  },
11
11
  caption: {
12
- type: Object as PropType<String | null>,
12
+ type: String as PropType<String | null>,
13
13
  default: null,
14
14
  required: false,
15
15
  }
@@ -3,7 +3,7 @@ import type { PropType } from 'vue'
3
3
 
4
4
  const props = defineProps({
5
5
  colors: {
6
- type: Object as PropType<{id: number, slug: string, name: string}[]>,
6
+ type: Array as PropType<{id: number, slug: string, name: string}[]>,
7
7
  default: null,
8
8
  required: true,
9
9
  },
@@ -1,8 +1,10 @@
1
1
  <script lang="ts" setup>
2
+ import type { PropType } from 'vue'
3
+
2
4
  const props = defineProps({
3
5
  modelIds: {
4
- type: Array,
5
- default: null,
6
+ type: Array as PropType<(string | number)[]>,
7
+ default: () => [],
6
8
  required: true,
7
9
  },
8
10
  })
@@ -4,7 +4,7 @@ import type { Position } from 'types/index'
4
4
  import type { PropType } from 'vue';
5
5
  const props = defineProps({
6
6
  positions: {
7
- type: Object as PropType<Position[]>,
7
+ type: Array as PropType<Position[]>,
8
8
  default: null,
9
9
  required: true,
10
10
  },
@@ -4,7 +4,7 @@ import PrCode from './PrCode.vue';
4
4
 
5
5
  const props = defineProps({
6
6
  prcodes: {
7
- type: Object as PropType<string[] | null>,
7
+ type: Array as PropType<string[] | null>,
8
8
  default: null,
9
9
  required: true,
10
10
  },