@visitscotland/component-library 3.1.8 → 3.2.0

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 (30) hide show
  1. package/CHANGELOG.md +1999 -0
  2. package/dist/client/manifest.json +21 -23
  3. package/dist/client/scripts/0fbda1b6956238680d5e.js +1 -0
  4. package/dist/client/scripts/4416faec254580e31810.js +1 -0
  5. package/dist/client/scripts/5986848b869848f6c8cd.js +1 -0
  6. package/dist/client/scripts/{8a376c197f08276236aa.js → 902bf1d40c29708e0cd7.js} +2 -2
  7. package/dist/client/scripts/{791b377fec08a7655d7e.js → 99f9d0e0e17c73089157.js} +1 -1
  8. package/dist/client/scripts/d8b558fcdec4b8aa0034.js +1 -0
  9. package/dist/client/styles/{b70a0ff0bbfde9e322b5.css → 4416faec254580e31810.css} +1 -1
  10. package/dist/client/styles/5986848b869848f6c8cd.css +1 -0
  11. package/dist/components/components/article/Article.vue.d.ts +17 -0
  12. package/dist/components/components/article/components/ArticleSection.vue.d.ts +10 -0
  13. package/dist/components/components/quote/Quote.vue.d.ts +14 -1
  14. package/dist/components/components/quote/index.d.ts +14 -1
  15. package/dist/components/components/video-caption/VideoCaption.vue.d.ts +1 -17
  16. package/dist/components/vs-component-library.css +1 -1
  17. package/dist/components/vs-component-library.js +166 -166
  18. package/dist/components/vs-component-library.mjs +8202 -8200
  19. package/dist/ssr/index.js +1 -1
  20. package/dist/ssr/manifest.json +1 -1
  21. package/dist/ssr/styles/{93e071858a0f2d109b89.css → e5ac22c436f98e242182.css} +2 -2
  22. package/package.json +230 -230
  23. package/dist/client/scripts/9a0913e2bb7e116e722a.js +0 -1
  24. package/dist/client/scripts/9cfa0f253a3aebd930a2.js +0 -1
  25. package/dist/client/scripts/a315cc3b2cadb61e66c3.js +0 -1
  26. package/dist/client/scripts/b70a0ff0bbfde9e322b5.js +0 -1
  27. package/dist/client/styles/a315cc3b2cadb61e66c3.css +0 -1
  28. /package/dist/client/scripts/{8a376c197f08276236aa.js.LICENSE.txt → 902bf1d40c29708e0cd7.js.LICENSE.txt} +0 -0
  29. /package/dist/client/styles/{9cfa0f253a3aebd930a2.css → 0fbda1b6956238680d5e.css} +0 -0
  30. /package/dist/client/styles/{9a0913e2bb7e116e722a.css → d8b558fcdec4b8aa0034.css} +0 -0
@@ -7,8 +7,13 @@ declare const _default: import('vue').DefineComponent<{
7
7
  default: string;
8
8
  validator: (value: unknown) => any;
9
9
  };
10
+ businessSupport: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
10
14
  }, any, any, {
11
15
  sidebarAlignClass(): "vs-article-section--sidebar-right" | "vs-article-section--sidebar-left";
16
+ hasSidebarSlot(): boolean;
12
17
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
18
  /**
14
19
  * This sets the alignment of the sidebar left or right of the section
@@ -18,7 +23,12 @@ declare const _default: import('vue').DefineComponent<{
18
23
  default: string;
19
24
  validator: (value: unknown) => any;
20
25
  };
26
+ businessSupport: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
21
30
  }>>, {
31
+ businessSupport: boolean;
22
32
  sidebarAlign: string;
23
33
  }, {}>;
24
34
  export default _default;
@@ -4,18 +4,31 @@ declare const _default: import('vue').DefineComponent<{
4
4
  default: string;
5
5
  validator: (value: unknown) => any;
6
6
  };
7
+ withBorder: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
7
11
  }, any, any, {
8
12
  hasAuthorName(): boolean;
9
13
  hasAuthorTitle(): boolean;
10
14
  hasAuthorImage(): boolean;
11
- variantClass(): string;
15
+ variantClass(): {
16
+ 'vs-quote--narrow': boolean;
17
+ 'vs-quote--wide': boolean;
18
+ 'vs-quote--with-border': any;
19
+ }[];
12
20
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
13
21
  variant: {
14
22
  type: StringConstructor;
15
23
  default: string;
16
24
  validator: (value: unknown) => any;
17
25
  };
26
+ withBorder: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
18
30
  }>>, {
19
31
  variant: string;
32
+ withBorder: boolean;
20
33
  }, {}>;
21
34
  export default _default;
@@ -5,19 +5,32 @@ declare const _default: {
5
5
  default: string;
6
6
  validator: (value: unknown) => any;
7
7
  };
8
+ withBorder: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
8
12
  }, any, any, {
9
13
  hasAuthorName(): boolean;
10
14
  hasAuthorTitle(): boolean;
11
15
  hasAuthorImage(): boolean;
12
- variantClass(): string;
16
+ variantClass(): {
17
+ 'vs-quote--narrow': boolean;
18
+ 'vs-quote--wide': boolean;
19
+ 'vs-quote--with-border': any;
20
+ }[];
13
21
  }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
14
22
  variant: {
15
23
  type: StringConstructor;
16
24
  default: string;
17
25
  validator: (value: unknown) => any;
18
26
  };
27
+ withBorder: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
19
31
  }>>, {
20
32
  variant: string;
33
+ withBorder: boolean;
21
34
  }, {}>;
22
35
  };
23
36
  export default _default;
@@ -44,7 +44,6 @@ declare const _default: import('vue').DefineComponent<{
44
44
  }): void;
45
45
  }>;
46
46
  }, {
47
- requiredCookies: string[];
48
47
  showErrorMessage: boolean;
49
48
  }, {
50
49
  videoDetails(): {
@@ -58,25 +57,10 @@ declare const _default: import('vue').DefineComponent<{
58
57
  };
59
58
  };
60
59
  videoLoaded(): boolean;
61
- showCookieMessage(): boolean;
62
60
  }, {
63
61
  emitToggle(): void;
64
62
  emitShowModal(): void;
65
- }, {
66
- data(): {
67
- bypassCookiesExist: boolean;
68
- };
69
- computed: {
70
- onetrustActiveGroups(): any;
71
- requiredCookiesExist(): any;
72
- cookiesInitStatus(): any;
73
- cookiesSet: () => string[];
74
- };
75
- mounted(): void; /**
76
- * Style variant based on caption container width
77
- * `wide|narrow`.
78
- */
79
- }, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
63
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
80
64
  /**
81
65
  * Text for the play video button
82
66
  */