@dargmuesli/nuxt-vio 3.0.0-beta.1 → 3.0.0-beta.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 (63) hide show
  1. package/app.config.ts +34 -33
  2. package/components/{_ → vio/_}/VioApp.vue +20 -6
  3. package/components/{_ → vio/_}/VioError.vue +1 -1
  4. package/components/{_ → vio/_}/VioLink.vue +2 -2
  5. package/components/{layout → vio/layout}/VioLayout.vue +1 -1
  6. package/components/{page → vio/page}/VioPageLegalNotice.vue +9 -7
  7. package/components/{page → vio/page}/VioPagePrivacyPolicy.vue +18 -11
  8. package/composables/useAppLayout.ts +11 -17
  9. package/composables/useFavicons.ts +3 -31
  10. package/composables/useGetServiceHref.ts +2 -28
  11. package/composables/useHeadDefault.ts +13 -26
  12. package/error.vue +2 -0
  13. package/nuxt.config.ts +12 -10
  14. package/package.json +9 -12
  15. package/plugins/dayjs.ts +0 -12
  16. package/store/auth.ts +32 -0
  17. package/tailwind.config.ts +0 -2
  18. package/types/api.d.ts +7 -0
  19. package/types/fetch.d.ts +8 -0
  20. package/types/modules/gql.d.ts +6 -0
  21. package/types/modules/graphql.d.ts +6 -0
  22. package/utils/constants.ts +1 -0
  23. package/utils/networking.ts +26 -0
  24. package/LICENSE +0 -674
  25. package/composables/useHeadLayout.ts +0 -67
  26. /package/components/{button → vio/button}/VioButton.vue +0 -0
  27. /package/components/{button → vio/button}/VioButtonColored.vue +0 -0
  28. /package/components/{card → vio/card}/VioCard.vue +0 -0
  29. /package/components/{card → vio/card}/state/VioCardState.vue +0 -0
  30. /package/components/{card → vio/card}/state/VioCardStateAlert.vue +0 -0
  31. /package/components/{form → vio/form}/VioForm.vue +0 -0
  32. /package/components/{form → vio/form}/VioFormCheckbox.vue +0 -0
  33. /package/components/{form → vio/form}/input/VioFormInput.vue +0 -0
  34. /package/components/{form → vio/form}/input/VioFormInputIconWrapper.vue +0 -0
  35. /package/components/{form → vio/form}/input/VioFormInputUrl.vue +0 -0
  36. /package/components/{form → vio/form}/input/state/VioFormInputState.vue +0 -0
  37. /package/components/{form → vio/form}/input/state/VioFormInputStateError.vue +0 -0
  38. /package/components/{form → vio/form}/input/state/VioFormInputStateInfo.vue +0 -0
  39. /package/components/{icon → vio/icon}/IconArrowRight.vue +0 -0
  40. /package/components/{icon → vio/icon}/IconCalendar.vue +0 -0
  41. /package/components/{icon → vio/icon}/IconChatOutline.vue +0 -0
  42. /package/components/{icon → vio/icon}/IconChatSolid.vue +0 -0
  43. /package/components/{icon → vio/icon}/IconCheckCircle.vue +0 -0
  44. /package/components/{icon → vio/icon}/IconContainer.vue +0 -0
  45. /package/components/{icon → vio/icon}/IconDownload.vue +0 -0
  46. /package/components/{icon → vio/icon}/IconExclamationCircle.vue +0 -0
  47. /package/components/{icon → vio/icon}/IconHome.vue +0 -0
  48. /package/components/{icon → vio/icon}/IconHourglass.vue +0 -0
  49. /package/components/{icon → vio/icon}/IconLightbulb.vue +0 -0
  50. /package/components/{icon → vio/icon}/IconLogo.vue +0 -0
  51. /package/components/{icon → vio/icon}/IconMixcloud.vue +0 -0
  52. /package/components/{icon → vio/icon}/IconMusic.vue +0 -0
  53. /package/components/{icon → vio/icon}/IconPlay.vue +0 -0
  54. /package/components/{icon → vio/icon}/IconShare.vue +0 -0
  55. /package/components/{layout → vio/layout}/VioLayoutBreadcrumbs.vue +0 -0
  56. /package/components/{layout → vio/layout}/VioLayoutFooter.vue +0 -0
  57. /package/components/{layout → vio/layout}/VioLayoutFooterCategory.vue +0 -0
  58. /package/components/{layout → vio/layout}/VioLayoutHeader.vue +0 -0
  59. /package/components/{layout → vio/layout}/VioLayoutHr.vue +0 -0
  60. /package/components/{layout → vio/layout}/VioLayoutSpanList.vue +0 -0
  61. /package/components/{loader → vio/loader}/indicator/VioLoaderIndicator.vue +0 -0
  62. /package/components/{loader → vio/loader}/indicator/VioLoaderIndicatorPing.vue +0 -0
  63. /package/components/{loader → vio/loader}/indicator/VioLoaderIndicatorSpinner.vue +0 -0
@@ -1,67 +0,0 @@
1
- export const useHeadLayout = () => {
2
- const head = useLocaleHead({ addSeoAttributes: true })
3
-
4
- useServerHeadSafe(head.value)
5
- useServerHeadSafe({
6
- bodyAttrs: {
7
- class:
8
- 'bg-background-bright dark:bg-background-dark font-sans text-text-dark dark:text-text-bright',
9
- },
10
- // link: [
11
- // {
12
- // href: '/assets/static/favicon/apple-touch-icon.png?v=eEYRGn5b9R',
13
- // rel: 'apple-touch-icon',
14
- // sizes: '180x180',
15
- // },
16
- // {
17
- // href: '/assets/static/favicon/favicon-16x16.png?v=eEYRGn5b9R',
18
- // rel: 'icon',
19
- // sizes: '16x16',
20
- // type: 'image/png',
21
- // },
22
- // {
23
- // href: '/assets/static/favicon/favicon-32x32.png?v=eEYRGn5b9R',
24
- // rel: 'icon',
25
- // sizes: '32x32',
26
- // type: 'image/png',
27
- // },
28
- // {
29
- // href: '/favicon.ico?v=eEYRGn5b9R',
30
- // rel: 'icon',
31
- // type: 'image/x-icon',
32
- // },
33
- // {
34
- // href: '/assets/static/favicon/site.webmanifest?v=eEYRGn5b9R',
35
- // rel: 'manifest',
36
- // },
37
- // {
38
- // color: '#202020',
39
- // href: '/assets/static/favicon/safari-pinned-tab.svg?v=eEYRGn5b9R',
40
- // rel: 'mask-icon',
41
- // },
42
- // {
43
- // href: '/favicon.ico?v=eEYRGn5b9R',
44
- // rel: 'shortcut icon',
45
- // },
46
- // ],
47
- // meta: [
48
- // {
49
- // content: '/assets/static/favicon/browserconfig.xml?v=eEYRGn5b9R',
50
- // name: 'msapplication-config',
51
- // },
52
- // {
53
- // content: '#202020',
54
- // name: 'msapplication-TileColor',
55
- // },
56
- // {
57
- // content: '#202020',
58
- // name: 'theme-color',
59
- // },
60
- // ],
61
- // titleTemplate: (titleChunk?: string) => {
62
- // return titleChunk && titleChunk !== title
63
- // ? `${titleChunk} · ${title}`
64
- // : title
65
- // },
66
- })
67
- }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes