@dargmuesli/nuxt-vio 8.2.2 → 8.2.3

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.
Files changed (39) hide show
  1. package/components/vio/_/VioApp.vue +1 -1
  2. package/components/vio/_/VioError.vue +1 -1
  3. package/components/vio/_/VioLink.vue +1 -1
  4. package/components/vio/button/VioButton.vue +1 -1
  5. package/components/vio/button/VioButtonColored.vue +1 -1
  6. package/components/vio/button/VioButtonIcon.vue +1 -1
  7. package/components/vio/button/VioButtonShare.vue +1 -1
  8. package/components/vio/card/VioCard.vue +1 -1
  9. package/components/vio/card/state/VioCardState.vue +1 -1
  10. package/components/vio/card/state/VioCardStateAlert.vue +1 -1
  11. package/components/vio/card/state/VioCardStateInfo.vue +1 -1
  12. package/components/vio/form/VioForm.vue +1 -1
  13. package/components/vio/form/VioFormCheckbox.vue +1 -1
  14. package/components/vio/form/input/VioFormInput.vue +1 -1
  15. package/components/vio/form/input/VioFormInputEmailAddress.vue +1 -1
  16. package/components/vio/form/input/VioFormInputUrl.vue +1 -1
  17. package/components/vio/form/input/state/VioFormInputStateError.vue +1 -1
  18. package/components/vio/form/input/state/VioFormInputStateInfo.vue +1 -1
  19. package/components/vio/icon/VioIconArrowRight.vue +1 -1
  20. package/components/vio/icon/VioIconCalendar.vue +1 -1
  21. package/components/vio/icon/VioIconChartBar.vue +1 -1
  22. package/components/vio/icon/VioIconCheckCircle.vue +1 -1
  23. package/components/vio/icon/VioIconContainer.vue +1 -1
  24. package/components/vio/icon/VioIconDownload.vue +1 -1
  25. package/components/vio/icon/VioIconExclamationCircle.vue +1 -1
  26. package/components/vio/icon/VioIconHeart.vue +1 -1
  27. package/components/vio/icon/VioIconHome.vue +1 -1
  28. package/components/vio/icon/VioIconHourglass.vue +1 -1
  29. package/components/vio/icon/VioIconShare.vue +1 -1
  30. package/components/vio/icon/VioIconSignIn.vue +1 -1
  31. package/components/vio/icon/VioIconTv.vue +1 -1
  32. package/components/vio/layout/VioLayoutBreadcrumbs.vue +1 -1
  33. package/components/vio/layout/VioLayoutFooterCategory.vue +1 -1
  34. package/components/vio/layout/VioLayoutSpanList.vue +1 -1
  35. package/components/vio/loader/Loader.vue +1 -1
  36. package/components/vio/loader/LoaderImage.vue +1 -1
  37. package/components/vio/page/VioPagePrivacyPolicy.vue +1 -1
  38. package/error.vue +1 -1
  39. package/package.json +7 -7
@@ -8,7 +8,7 @@
8
8
  </template>
9
9
 
10
10
  <script setup lang="ts">
11
- export interface Props {
11
+ interface Props {
12
12
  ogImageAlt: string
13
13
  ogImageComponent?: string
14
14
  }
@@ -14,7 +14,7 @@
14
14
  <script setup lang="ts">
15
15
  import { status } from '@http-util/status-i18n'
16
16
 
17
- export interface Props {
17
+ interface Props {
18
18
  statusCode?: number
19
19
  statusMessage?: string
20
20
  description: string
@@ -27,7 +27,7 @@
27
27
  <script setup lang="ts">
28
28
  import { NuxtLinkProps } from '#app'
29
29
 
30
- export interface Props {
30
+ interface Props {
31
31
  ariaLabel?: string
32
32
  isColored?: boolean
33
33
  isToRelative?: boolean
@@ -28,7 +28,7 @@
28
28
  </template>
29
29
 
30
30
  <script setup lang="ts">
31
- export interface Props {
31
+ interface Props {
32
32
  ariaLabel: string
33
33
  classes?: string
34
34
  disabled?: boolean
@@ -30,7 +30,7 @@
30
30
  </template>
31
31
 
32
32
  <script setup lang="ts">
33
- export interface Props {
33
+ interface Props {
34
34
  ariaLabel: string
35
35
  disabled?: boolean
36
36
  isPrimary?: boolean
@@ -13,7 +13,7 @@
13
13
  </template>
14
14
 
15
15
  <script setup lang="ts">
16
- export interface Props {
16
+ interface Props {
17
17
  ariaLabel: string
18
18
  disabled?: boolean
19
19
  to?: string
@@ -13,7 +13,7 @@
13
13
  </template>
14
14
 
15
15
  <script setup lang="ts">
16
- export interface Props {
16
+ interface Props {
17
17
  url: string
18
18
  }
19
19
  withDefaults(defineProps<Props>(), {})
@@ -8,7 +8,7 @@
8
8
  </template>
9
9
 
10
10
  <script setup lang="ts">
11
- export interface Props {
11
+ interface Props {
12
12
  backgroundColor?: string
13
13
  isHigh?: boolean
14
14
  }
@@ -9,7 +9,7 @@
9
9
  </template>
10
10
 
11
11
  <script setup lang="ts">
12
- export interface Props {
12
+ interface Props {
13
13
  backgroundColor?: string
14
14
  isEdgy?: boolean
15
15
  }
@@ -5,7 +5,7 @@
5
5
  </template>
6
6
 
7
7
  <script setup lang="ts">
8
- export interface Props {
8
+ interface Props {
9
9
  isEdgy?: boolean
10
10
  }
11
11
  withDefaults(defineProps<Props>(), {
@@ -5,7 +5,7 @@
5
5
  </template>
6
6
 
7
7
  <script setup lang="ts">
8
- export interface Props {
8
+ interface Props {
9
9
  isEdgy?: boolean
10
10
  }
11
11
  withDefaults(defineProps<Props>(), {
@@ -45,7 +45,7 @@ import type { BaseValidation } from '@vuelidate/core'
45
45
 
46
46
  import type { BackendError } from '../../../types/api'
47
47
 
48
- export interface Props {
48
+ interface Props {
49
49
  errors?: BackendError[]
50
50
  errorsPgIds?: Record<string, string>
51
51
  form: BaseValidation
@@ -12,7 +12,7 @@
12
12
  </template>
13
13
 
14
14
  <script setup lang="ts">
15
- export interface Props {
15
+ interface Props {
16
16
  formKey?: string
17
17
  value?: boolean
18
18
  }
@@ -119,7 +119,7 @@
119
119
  import type { BaseValidation } from '@vuelidate/core'
120
120
  import { consola } from 'consola'
121
121
 
122
- export interface Props {
122
+ interface Props {
123
123
  idLabel?: string
124
124
  isDisabled?: boolean
125
125
  isOptional?: boolean
@@ -36,7 +36,7 @@
36
36
  <script setup lang="ts">
37
37
  import type { BaseValidation } from '@vuelidate/core'
38
38
 
39
- export interface Props {
39
+ interface Props {
40
40
  formInput: BaseValidation
41
41
  id?: string
42
42
  isOptional?: boolean
@@ -29,7 +29,7 @@
29
29
  <script setup lang="ts">
30
30
  import type { BaseValidation } from '@vuelidate/core'
31
31
 
32
- export interface Props {
32
+ interface Props {
33
33
  formInput: BaseValidation
34
34
  id?: string
35
35
  isOptional?: boolean
@@ -19,7 +19,7 @@
19
19
  <script setup lang="ts">
20
20
  import type { BaseValidation } from '@vuelidate/core'
21
21
 
22
- export interface Props {
22
+ interface Props {
23
23
  formInput?: BaseValidation
24
24
  isValidationLive?: boolean
25
25
  validationProperty?: string
@@ -19,7 +19,7 @@
19
19
  <script setup lang="ts">
20
20
  import type { BaseValidation } from '@vuelidate/core'
21
21
 
22
- export interface Props {
22
+ interface Props {
23
23
  formInput?: BaseValidation
24
24
  isValidationLive?: boolean
25
25
  validationProperty?: string
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup lang="ts">
18
- export interface Props {
18
+ interface Props {
19
19
  title?: string // eslint-disable-line vue/require-default-prop
20
20
  }
21
21
  withDefaults(defineProps<Props>(), {})
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup lang="ts">
18
- export interface Props {
18
+ interface Props {
19
19
  title?: string // eslint-disable-line vue/require-default-prop
20
20
  }
21
21
  withDefaults(defineProps<Props>(), {})
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup lang="ts">
18
- export interface Props {
18
+ interface Props {
19
19
  title?: string // eslint-disable-line vue/require-default-prop
20
20
  }
21
21
  withDefaults(defineProps<Props>(), {})
@@ -13,7 +13,7 @@
13
13
  </template>
14
14
 
15
15
  <script setup lang="ts">
16
- export interface Props {
16
+ interface Props {
17
17
  title?: string // eslint-disable-line vue/require-default-prop
18
18
  }
19
19
  withDefaults(defineProps<Props>(), {})
@@ -5,7 +5,7 @@
5
5
  </template>
6
6
 
7
7
  <script setup lang="ts">
8
- export interface Props {
8
+ interface Props {
9
9
  classes?: string
10
10
  title?: string
11
11
  }
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup lang="ts">
18
- export interface Props {
18
+ interface Props {
19
19
  title?: string // eslint-disable-line vue/require-default-prop
20
20
  }
21
21
  withDefaults(defineProps<Props>(), {})
@@ -13,7 +13,7 @@
13
13
  </template>
14
14
 
15
15
  <script setup lang="ts">
16
- export interface Props {
16
+ interface Props {
17
17
  title?: string // eslint-disable-line vue/require-default-prop
18
18
  }
19
19
  withDefaults(defineProps<Props>(), {})
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup lang="ts">
18
- export interface Props {
18
+ interface Props {
19
19
  title?: string // eslint-disable-line vue/require-default-prop
20
20
  }
21
21
  withDefaults(defineProps<Props>(), {})
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup lang="ts">
18
- export interface Props {
18
+ interface Props {
19
19
  title?: string // eslint-disable-line vue/require-default-prop
20
20
  }
21
21
  withDefaults(defineProps<Props>(), {})
@@ -16,7 +16,7 @@
16
16
  </template>
17
17
 
18
18
  <script setup lang="ts">
19
- export interface Props {
19
+ interface Props {
20
20
  title?: string // eslint-disable-line vue/require-default-prop
21
21
  }
22
22
  withDefaults(defineProps<Props>(), {})
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup lang="ts">
18
- export interface Props {
18
+ interface Props {
19
19
  title?: string // eslint-disable-line vue/require-default-prop
20
20
  }
21
21
  withDefaults(defineProps<Props>(), {})
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup lang="ts">
18
- export interface Props {
18
+ interface Props {
19
19
  title?: string // eslint-disable-line vue/require-default-prop
20
20
  }
21
21
  withDefaults(defineProps<Props>(), {})
@@ -15,7 +15,7 @@
15
15
  </template>
16
16
 
17
17
  <script setup lang="ts">
18
- export interface Props {
18
+ interface Props {
19
19
  title?: string // eslint-disable-line vue/require-default-prop
20
20
  }
21
21
  withDefaults(defineProps<Props>(), {})
@@ -60,7 +60,7 @@ export interface Breadcrumb {
60
60
  to: string
61
61
  }
62
62
 
63
- export interface Props {
63
+ interface Props {
64
64
  prefixes?: Array<Breadcrumb>
65
65
  suffixes?: Array<Breadcrumb>
66
66
  }
@@ -10,7 +10,7 @@
10
10
  </template>
11
11
 
12
12
  <script setup lang="ts">
13
- export interface Props {
13
+ interface Props {
14
14
  heading: string
15
15
  }
16
16
  withDefaults(defineProps<Props>(), {})
@@ -13,7 +13,7 @@
13
13
  </template>
14
14
 
15
15
  <script setup lang="ts">
16
- export interface Props {
16
+ interface Props {
17
17
  span: Array<string | Array<string>>
18
18
  }
19
19
  withDefaults(defineProps<Props>(), {})
@@ -18,7 +18,7 @@ import { UnwrapRef } from 'vue'
18
18
 
19
19
  import { ApiData } from '@dargmuesli/nuxt-vio/types/api'
20
20
 
21
- export interface Props {
21
+ interface Props {
22
22
  api: UnwrapRef<ApiData>
23
23
  errorPgIds?: Record<string, string>
24
24
  classes?: string
@@ -19,7 +19,7 @@
19
19
  <script setup lang="ts">
20
20
  import { debounce } from 'lodash-es'
21
21
 
22
- export interface Props {
22
+ interface Props {
23
23
  alt: string
24
24
  aspect: string
25
25
  classes?: string
@@ -433,7 +433,7 @@
433
433
  </template>
434
434
 
435
435
  <script setup lang="ts">
436
- export interface Props {
436
+ interface Props {
437
437
  isEnabled?: {
438
438
  summary?: {
439
439
  generalNotes?: boolean
package/error.vue CHANGED
@@ -12,7 +12,7 @@
12
12
  <script setup lang="ts">
13
13
  import { NuxtError } from 'nuxt/app'
14
14
 
15
- export interface Props {
15
+ interface Props {
16
16
  error: NuxtError
17
17
  }
18
18
  const props = withDefaults(defineProps<Props>(), {})
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-vio",
3
- "version": "8.2.2",
3
+ "version": "8.2.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dargmuesli/vio.git"
@@ -12,7 +12,7 @@
12
12
  "engines": {
13
13
  "node": "20"
14
14
  },
15
- "packageManager": "pnpm@8.8.0",
15
+ "packageManager": "pnpm@8.9.0",
16
16
  "files": [
17
17
  "assets",
18
18
  "components",
@@ -76,7 +76,7 @@
76
76
  "@nuxtjs/html-validator": "1.5.2",
77
77
  "@nuxtjs/i18n": "8.0.0-rc.5",
78
78
  "@nuxtjs/tailwindcss": "6.8.0",
79
- "@nuxtseo/module": "2.0.0-beta.35",
79
+ "@nuxtseo/module": "2.0.0-beta.37",
80
80
  "@pinia/nuxt": "0.4.11",
81
81
  "@playwright/test": "1.38.1",
82
82
  "@tailwindcss/forms": "0.5.6",
@@ -93,12 +93,12 @@
93
93
  "cookie": "0.5.0",
94
94
  "cross-env": "7.0.3",
95
95
  "dayjs": "2.0.0-alpha.4",
96
- "eslint": "8.50.0",
96
+ "eslint": "8.51.0",
97
97
  "eslint-config-prettier": "9.0.0",
98
98
  "eslint-plugin-compat": "4.2.0",
99
99
  "eslint-plugin-nuxt": "4.0.0",
100
- "eslint-plugin-prettier": "5.0.0",
101
- "eslint-plugin-yml": "1.9.0",
100
+ "eslint-plugin-prettier": "5.0.1",
101
+ "eslint-plugin-yml": "1.10.0",
102
102
  "is-https": "4.0.0",
103
103
  "jiti": "1.20.0",
104
104
  "jose": "4.15.2",
@@ -117,7 +117,7 @@
117
117
  "tailwindcss": "3.3.3",
118
118
  "vue": "3.3.4",
119
119
  "vue-gtag": "2.0.1",
120
- "vue-tsc": "1.8.15"
120
+ "vue-tsc": "1.8.19"
121
121
  },
122
122
  "peerDependencies": {
123
123
  "playwright-core": "1.38.1"