@cooperco/cooper-component-library 0.1.125 → 0.1.127

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 (60) hide show
  1. package/dist/cms/0094-add-anchor-to-page-modules.cjs +114 -0
  2. package/dist/cms/carousel.query.ts +1 -0
  3. package/dist/cms/chartModule.query.ts +1 -0
  4. package/dist/cms/containerCollectionModule.query.ts +1 -0
  5. package/dist/cms/containerModule.query.ts +1 -0
  6. package/dist/cms/contentModule.query.ts +1 -0
  7. package/dist/cms/contentful/migrations/scripts/0094-add-anchor-to-page-modules.cjs +114 -0
  8. package/dist/cms/contentful/queries/carousel.query.js +1 -0
  9. package/dist/cms/contentful/queries/carousel.query.ts +1 -0
  10. package/dist/cms/contentful/queries/chartModule.query.js +1 -0
  11. package/dist/cms/contentful/queries/chartModule.query.ts +1 -0
  12. package/dist/cms/contentful/queries/containerCollectionModule.query.js +1 -0
  13. package/dist/cms/contentful/queries/containerCollectionModule.query.ts +1 -0
  14. package/dist/cms/contentful/queries/containerModule.query.js +1 -0
  15. package/dist/cms/contentful/queries/containerModule.query.ts +1 -0
  16. package/dist/cms/contentful/queries/contentModule.query.js +1 -0
  17. package/dist/cms/contentful/queries/contentModule.query.ts +1 -0
  18. package/dist/cms/contentful/queries/logoCollection.query.js +1 -0
  19. package/dist/cms/contentful/queries/logoCollection.query.ts +1 -0
  20. package/dist/cms/contentful/queries/page.query.js +11 -0
  21. package/dist/cms/contentful/queries/page.query.ts +11 -0
  22. package/dist/cms/contentful/queries/placeholderModule.query.js +2 -0
  23. package/dist/cms/contentful/queries/placeholderModule.query.ts +2 -0
  24. package/dist/cms/contentful/queries/productModule.query.js +2 -0
  25. package/dist/cms/contentful/queries/productModule.query.ts +2 -0
  26. package/dist/cms/contentful/queries/splitModule.query.js +2 -0
  27. package/dist/cms/contentful/queries/splitModule.query.ts +2 -0
  28. package/dist/cms/contentful/queries/testimonial.query.js +1 -0
  29. package/dist/cms/contentful/queries/testimonial.query.ts +1 -0
  30. package/dist/cms/contentful/queries/tileCollection.query.js +1 -0
  31. package/dist/cms/contentful/queries/tileCollection.query.ts +1 -0
  32. package/dist/cms/logoCollection.query.ts +1 -0
  33. package/dist/cms/migrations/scripts/0094-add-anchor-to-page-modules.cjs +114 -0
  34. package/dist/cms/page.query.ts +11 -0
  35. package/dist/cms/placeholderModule.query.ts +2 -0
  36. package/dist/cms/productModule.query.ts +2 -0
  37. package/dist/cms/queries/carousel.query.ts +1 -0
  38. package/dist/cms/queries/chartModule.query.ts +1 -0
  39. package/dist/cms/queries/containerCollectionModule.query.ts +1 -0
  40. package/dist/cms/queries/containerModule.query.ts +1 -0
  41. package/dist/cms/queries/contentModule.query.ts +1 -0
  42. package/dist/cms/queries/logoCollection.query.ts +1 -0
  43. package/dist/cms/queries/page.query.ts +11 -0
  44. package/dist/cms/queries/placeholderModule.query.ts +2 -0
  45. package/dist/cms/queries/productModule.query.ts +2 -0
  46. package/dist/cms/queries/splitModule.query.ts +2 -0
  47. package/dist/cms/queries/testimonial.query.ts +1 -0
  48. package/dist/cms/queries/tileCollection.query.ts +1 -0
  49. package/dist/cms/scripts/0094-add-anchor-to-page-modules.cjs +114 -0
  50. package/dist/cms/splitModule.query.ts +2 -0
  51. package/dist/cms/testimonial.query.ts +1 -0
  52. package/dist/cms/tileCollection.query.ts +1 -0
  53. package/dist/lib/component-lib.js +3886 -3848
  54. package/dist/lib/component-lib.umd.cjs +23 -23
  55. package/dist/lib/css/main.css +0 -1
  56. package/dist/lib/style.css +1 -1
  57. package/dist/types/src/index.d.ts +2 -1
  58. package/dist/types/src/types.d.ts +1 -0
  59. package/dist/types/src/utils/normalizeAnchor.d.ts +12 -0
  60. package/package.json +1 -9
@@ -0,0 +1,114 @@
1
+ module.exports = {
2
+ /** @type { import('contentful-migration').MigrationFunction } */
3
+ up: function (migration) {
4
+ const carouselModule = migration.editContentType('carouselModule')
5
+ carouselModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
6
+ carouselModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
7
+ helpText: 'Set the anchor (#) for the page module.',
8
+ })
9
+
10
+ const chartModule = migration.editContentType('chartModule')
11
+ chartModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
12
+ chartModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
13
+ helpText: 'Set the anchor (#) for the page module.',
14
+ })
15
+
16
+ const containerCollectionModule = migration.editContentType('containerCollectionModule')
17
+ containerCollectionModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
18
+ containerCollectionModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
19
+ helpText: 'Set the anchor (#) for the page module.',
20
+ })
21
+
22
+ const containerModule = migration.editContentType('containerModule')
23
+ containerModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
24
+ containerModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
25
+ helpText: 'Set the anchor (#) for the page module.',
26
+ })
27
+
28
+ const contentModule = migration.editContentType('contentModule')
29
+ contentModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
30
+ contentModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
31
+ helpText: 'Set the anchor (#) for the page module.',
32
+ })
33
+
34
+ const logoCollectionModule = migration.editContentType('logoCollectionModule')
35
+ logoCollectionModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
36
+ logoCollectionModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
37
+ helpText: 'Set the anchor (#) for the page module.',
38
+ })
39
+
40
+ const placeholderModule = migration.editContentType('placeholderModule')
41
+ placeholderModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
42
+ placeholderModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
43
+ helpText: 'Set the anchor (#) for the page module.',
44
+ })
45
+
46
+ const productModule = migration.editContentType('productModule')
47
+ productModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
48
+ productModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
49
+ helpText: 'Set the anchor (#) for the page module.',
50
+ })
51
+
52
+ const splitModule = migration.editContentType('splitModule')
53
+ splitModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
54
+ splitModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
55
+ helpText: 'Set the anchor (#) for the page module.',
56
+ })
57
+
58
+ const tabModule = migration.editContentType('tabModule')
59
+ tabModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
60
+ tabModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
61
+ helpText: 'Set the anchor (#) for the page module.',
62
+ })
63
+
64
+ const testimonialModule = migration.editContentType('testimonialModule')
65
+ testimonialModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
66
+ testimonialModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
67
+ helpText: 'Set the anchor (#) for the page module.',
68
+ })
69
+
70
+ const tileCollectionModule = migration.editContentType('tileCollectionModule')
71
+ tileCollectionModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
72
+ tileCollectionModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
73
+ helpText: 'Set the anchor (#) for the page module.',
74
+ })
75
+ },
76
+
77
+ down: function (migration) {
78
+ const carouselModule = migration.editContentType('carouselModule')
79
+ carouselModule.deleteField('anchor')
80
+
81
+ const chartModule = migration.editContentType('chartModule')
82
+ chartModule.deleteField('anchor')
83
+
84
+ const containerCollectionModule = migration.editContentType('containerCollectionModule')
85
+ containerCollectionModule.deleteField('anchor')
86
+
87
+ const containerModule = migration.editContentType('containerModule')
88
+ containerModule.deleteField('anchor')
89
+
90
+ const contentModule = migration.editContentType('contentModule')
91
+ contentModule.deleteField('anchor')
92
+
93
+ const logoCollectionModule = migration.editContentType('logoCollectionModule')
94
+ logoCollectionModule.deleteField('anchor')
95
+
96
+ const placeholderModule = migration.editContentType('placeholderModule')
97
+ placeholderModule.deleteField('anchor')
98
+
99
+ const productModule = migration.editContentType('productModule')
100
+ productModule.deleteField('anchor')
101
+
102
+ const splitModule = migration.editContentType('splitModule')
103
+ splitModule.deleteField('anchor')
104
+
105
+ const tabModule = migration.editContentType('tabModule')
106
+ tabModule.deleteField('anchor')
107
+
108
+ const testimonialModule = migration.editContentType('testimonialModule')
109
+ testimonialModule.deleteField('anchor')
110
+
111
+ const tileCollectionModule = migration.editContentType('tileCollectionModule')
112
+ tileCollectionModule.deleteField('anchor')
113
+ },
114
+ }
@@ -12,6 +12,7 @@ export const getCarousel: DocumentNode = gql`
12
12
  headline
13
13
  backgroundColor
14
14
  variant
15
+ anchor
15
16
  backgroundImage {
16
17
  ...imageFragment
17
18
  }
@@ -21,6 +21,7 @@ export const getChartModule: DocumentNode = gql`
21
21
  chartType
22
22
  chartData
23
23
  backgroundColor
24
+ anchor
24
25
  }
25
26
  }
26
27
  `
@@ -26,6 +26,7 @@ export const getContainerCollectionModule: DocumentNode = gql`
26
26
  }
27
27
 
28
28
  backgroundColor
29
+ anchor
29
30
  }
30
31
  }
31
32
  `
@@ -146,6 +146,7 @@ export const getContainerModule: DocumentNode = gql`
146
146
  }
147
147
  backgroundColor
148
148
  variant
149
+ anchor
149
150
  mobileImagePosition
150
151
  testimonialTile {
151
152
  entryName
@@ -8,6 +8,7 @@ export const getContentModule: DocumentNode = gql`
8
8
  ${videoFragment}
9
9
  query contentModuleQuery($id: String!, $preview: Boolean = false) {
10
10
  contentModule(id: $id, preview: $preview) {
11
+ anchor
11
12
  alignment
12
13
  logo {
13
14
  ...imageFragment
@@ -0,0 +1,114 @@
1
+ module.exports = {
2
+ /** @type { import('contentful-migration').MigrationFunction } */
3
+ up: function (migration) {
4
+ const carouselModule = migration.editContentType('carouselModule')
5
+ carouselModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
6
+ carouselModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
7
+ helpText: 'Set the anchor (#) for the page module.',
8
+ })
9
+
10
+ const chartModule = migration.editContentType('chartModule')
11
+ chartModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
12
+ chartModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
13
+ helpText: 'Set the anchor (#) for the page module.',
14
+ })
15
+
16
+ const containerCollectionModule = migration.editContentType('containerCollectionModule')
17
+ containerCollectionModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
18
+ containerCollectionModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
19
+ helpText: 'Set the anchor (#) for the page module.',
20
+ })
21
+
22
+ const containerModule = migration.editContentType('containerModule')
23
+ containerModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
24
+ containerModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
25
+ helpText: 'Set the anchor (#) for the page module.',
26
+ })
27
+
28
+ const contentModule = migration.editContentType('contentModule')
29
+ contentModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
30
+ contentModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
31
+ helpText: 'Set the anchor (#) for the page module.',
32
+ })
33
+
34
+ const logoCollectionModule = migration.editContentType('logoCollectionModule')
35
+ logoCollectionModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
36
+ logoCollectionModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
37
+ helpText: 'Set the anchor (#) for the page module.',
38
+ })
39
+
40
+ const placeholderModule = migration.editContentType('placeholderModule')
41
+ placeholderModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
42
+ placeholderModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
43
+ helpText: 'Set the anchor (#) for the page module.',
44
+ })
45
+
46
+ const productModule = migration.editContentType('productModule')
47
+ productModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
48
+ productModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
49
+ helpText: 'Set the anchor (#) for the page module.',
50
+ })
51
+
52
+ const splitModule = migration.editContentType('splitModule')
53
+ splitModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
54
+ splitModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
55
+ helpText: 'Set the anchor (#) for the page module.',
56
+ })
57
+
58
+ const tabModule = migration.editContentType('tabModule')
59
+ tabModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
60
+ tabModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
61
+ helpText: 'Set the anchor (#) for the page module.',
62
+ })
63
+
64
+ const testimonialModule = migration.editContentType('testimonialModule')
65
+ testimonialModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
66
+ testimonialModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
67
+ helpText: 'Set the anchor (#) for the page module.',
68
+ })
69
+
70
+ const tileCollectionModule = migration.editContentType('tileCollectionModule')
71
+ tileCollectionModule.createField('anchor', { name: 'Anchor', type: 'Symbol', localized: true, })
72
+ tileCollectionModule.changeFieldControl('anchor', 'builtin', 'singleLine', {
73
+ helpText: 'Set the anchor (#) for the page module.',
74
+ })
75
+ },
76
+
77
+ down: function (migration) {
78
+ const carouselModule = migration.editContentType('carouselModule')
79
+ carouselModule.deleteField('anchor')
80
+
81
+ const chartModule = migration.editContentType('chartModule')
82
+ chartModule.deleteField('anchor')
83
+
84
+ const containerCollectionModule = migration.editContentType('containerCollectionModule')
85
+ containerCollectionModule.deleteField('anchor')
86
+
87
+ const containerModule = migration.editContentType('containerModule')
88
+ containerModule.deleteField('anchor')
89
+
90
+ const contentModule = migration.editContentType('contentModule')
91
+ contentModule.deleteField('anchor')
92
+
93
+ const logoCollectionModule = migration.editContentType('logoCollectionModule')
94
+ logoCollectionModule.deleteField('anchor')
95
+
96
+ const placeholderModule = migration.editContentType('placeholderModule')
97
+ placeholderModule.deleteField('anchor')
98
+
99
+ const productModule = migration.editContentType('productModule')
100
+ productModule.deleteField('anchor')
101
+
102
+ const splitModule = migration.editContentType('splitModule')
103
+ splitModule.deleteField('anchor')
104
+
105
+ const tabModule = migration.editContentType('tabModule')
106
+ tabModule.deleteField('anchor')
107
+
108
+ const testimonialModule = migration.editContentType('testimonialModule')
109
+ testimonialModule.deleteField('anchor')
110
+
111
+ const tileCollectionModule = migration.editContentType('tileCollectionModule')
112
+ tileCollectionModule.deleteField('anchor')
113
+ },
114
+ }
@@ -10,6 +10,7 @@ export const getCarousel = gql `
10
10
  headline
11
11
  backgroundColor
12
12
  variant
13
+ anchor
13
14
  backgroundImage {
14
15
  ...imageFragment
15
16
  }
@@ -12,6 +12,7 @@ export const getCarousel: DocumentNode = gql`
12
12
  headline
13
13
  backgroundColor
14
14
  variant
15
+ anchor
15
16
  backgroundImage {
16
17
  ...imageFragment
17
18
  }
@@ -19,6 +19,7 @@ export const getChartModule = gql `
19
19
  chartType
20
20
  chartData
21
21
  backgroundColor
22
+ anchor
22
23
  }
23
24
  }
24
25
  `;
@@ -21,6 +21,7 @@ export const getChartModule: DocumentNode = gql`
21
21
  chartType
22
22
  chartData
23
23
  backgroundColor
24
+ anchor
24
25
  }
25
26
  }
26
27
  `
@@ -24,6 +24,7 @@ export const getContainerCollectionModule = gql `
24
24
  }
25
25
 
26
26
  backgroundColor
27
+ anchor
27
28
  }
28
29
  }
29
30
  `;
@@ -26,6 +26,7 @@ export const getContainerCollectionModule: DocumentNode = gql`
26
26
  }
27
27
 
28
28
  backgroundColor
29
+ anchor
29
30
  }
30
31
  }
31
32
  `
@@ -144,6 +144,7 @@ export const getContainerModule = gql `
144
144
  }
145
145
  backgroundColor
146
146
  variant
147
+ anchor
147
148
  mobileImagePosition
148
149
  testimonialTile {
149
150
  entryName
@@ -146,6 +146,7 @@ export const getContainerModule: DocumentNode = gql`
146
146
  }
147
147
  backgroundColor
148
148
  variant
149
+ anchor
149
150
  mobileImagePosition
150
151
  testimonialTile {
151
152
  entryName
@@ -6,6 +6,7 @@ export const getContentModule = gql `
6
6
  ${videoFragment}
7
7
  query contentModuleQuery($id: String!, $preview: Boolean = false) {
8
8
  contentModule(id: $id, preview: $preview) {
9
+ anchor
9
10
  alignment
10
11
  logo {
11
12
  ...imageFragment
@@ -8,6 +8,7 @@ export const getContentModule: DocumentNode = gql`
8
8
  ${videoFragment}
9
9
  query contentModuleQuery($id: String!, $preview: Boolean = false) {
10
10
  contentModule(id: $id, preview: $preview) {
11
+ anchor
11
12
  alignment
12
13
  logo {
13
14
  ...imageFragment
@@ -6,6 +6,7 @@ export const getLogoCollection = gql `
6
6
  logoCollectionModule(id: $id, preview: $preview) {
7
7
  headline
8
8
  backgroundColor
9
+ anchor
9
10
  logosCollection {
10
11
  items {
11
12
  ...imageFragment
@@ -8,6 +8,7 @@ export const getLogoCollection: DocumentNode = gql`
8
8
  logoCollectionModule(id: $id, preview: $preview) {
9
9
  headline
10
10
  backgroundColor
11
+ anchor
11
12
  logosCollection {
12
13
  items {
13
14
  ...imageFragment
@@ -13,56 +13,67 @@ export const getPage = gql `
13
13
  sys {
14
14
  id
15
15
  }
16
+ anchor
16
17
  }
17
18
  ... on ChartModule {
18
19
  sys {
19
20
  id
20
21
  }
22
+ anchor
21
23
  }
22
24
  ... on ContainerCollectionModule {
23
25
  sys {
24
26
  id
25
27
  }
28
+ anchor
26
29
  }
27
30
  ... on ContainerModule {
28
31
  sys {
29
32
  id
30
33
  }
34
+ anchor
31
35
  }
32
36
  ... on ContentModule {
33
37
  sys {
34
38
  id
35
39
  }
40
+ anchor
36
41
  }
37
42
  ... on LogoCollectionModule {
38
43
  sys {
39
44
  id
40
45
  }
46
+ anchor
41
47
  }
42
48
  ... on PlaceholderModule {
43
49
  sys {
44
50
  id
45
51
  }
52
+ anchor
46
53
  }
47
54
  ... on ProductModule {
48
55
  sys {
49
56
  id
50
57
  }
58
+ anchor
51
59
  }
52
60
  ... on TabModule {
53
61
  sys {
54
62
  id
55
63
  }
64
+ anchor
56
65
  }
57
66
  ... on TestimonialModule {
58
67
  sys {
59
68
  id
60
69
  }
70
+ anchor
61
71
  }
62
72
  ... on TileCollectionModule {
63
73
  sys {
64
74
  id
65
75
  }
76
+ anchor
66
77
  }
67
78
  }
68
79
  }
@@ -15,56 +15,67 @@ export const getPage: DocumentNode = gql`
15
15
  sys {
16
16
  id
17
17
  }
18
+ anchor
18
19
  }
19
20
  ... on ChartModule {
20
21
  sys {
21
22
  id
22
23
  }
24
+ anchor
23
25
  }
24
26
  ... on ContainerCollectionModule {
25
27
  sys {
26
28
  id
27
29
  }
30
+ anchor
28
31
  }
29
32
  ... on ContainerModule {
30
33
  sys {
31
34
  id
32
35
  }
36
+ anchor
33
37
  }
34
38
  ... on ContentModule {
35
39
  sys {
36
40
  id
37
41
  }
42
+ anchor
38
43
  }
39
44
  ... on LogoCollectionModule {
40
45
  sys {
41
46
  id
42
47
  }
48
+ anchor
43
49
  }
44
50
  ... on PlaceholderModule {
45
51
  sys {
46
52
  id
47
53
  }
54
+ anchor
48
55
  }
49
56
  ... on ProductModule {
50
57
  sys {
51
58
  id
52
59
  }
60
+ anchor
53
61
  }
54
62
  ... on TabModule {
55
63
  sys {
56
64
  id
57
65
  }
66
+ anchor
58
67
  }
59
68
  ... on TestimonialModule {
60
69
  sys {
61
70
  id
62
71
  }
72
+ anchor
63
73
  }
64
74
  ... on TileCollectionModule {
65
75
  sys {
66
76
  id
67
77
  }
78
+ anchor
68
79
  }
69
80
  }
70
81
  }
@@ -6,6 +6,7 @@ export const getPlaceholderModule = gql `
6
6
  entryName
7
7
  moduleName
8
8
  customModuleName
9
+ anchor
9
10
  }
10
11
  }
11
12
  `;
@@ -15,5 +16,6 @@ export const placeholderModuleFragment = gql `
15
16
  entryName
16
17
  moduleName
17
18
  customModuleName
19
+ anchor
18
20
  }
19
21
  `;
@@ -8,6 +8,7 @@ export const getPlaceholderModule: DocumentNode = gql`
8
8
  entryName
9
9
  moduleName
10
10
  customModuleName
11
+ anchor
11
12
  }
12
13
  }
13
14
  `
@@ -18,5 +19,6 @@ export const placeholderModuleFragment = gql`
18
19
  entryName
19
20
  moduleName
20
21
  customModuleName
22
+ anchor
21
23
  }
22
24
  `
@@ -10,6 +10,7 @@ export const getProductModule = gql `
10
10
  entryName
11
11
  headerTitle
12
12
  subtitle
13
+ anchor
13
14
  headerLogo {
14
15
  ...imageFragment
15
16
  }
@@ -35,6 +36,7 @@ export const getProductModule = gql `
35
36
  page {
36
37
  slug
37
38
  }
39
+ anchor
38
40
  }
39
41
  }
40
42
  }
@@ -12,6 +12,7 @@ export const getProductModule: DocumentNode = gql`
12
12
  entryName
13
13
  headerTitle
14
14
  subtitle
15
+ anchor
15
16
  headerLogo {
16
17
  ...imageFragment
17
18
  }
@@ -37,6 +38,7 @@ export const getProductModule: DocumentNode = gql`
37
38
  page {
38
39
  slug
39
40
  }
41
+ anchor
40
42
  }
41
43
  }
42
44
  }
@@ -47,6 +47,8 @@ export const getSplitModule = gql `
47
47
  variant
48
48
 
49
49
  backgroundColor
50
+
51
+ anchor
50
52
  }
51
53
  }
52
54
  `;
@@ -49,6 +49,8 @@ export const getSplitModule: DocumentNode = gql`
49
49
  variant
50
50
 
51
51
  backgroundColor
52
+
53
+ anchor
52
54
  }
53
55
  }
54
56
  `
@@ -19,6 +19,7 @@ export const getTestimonialModule = gql `
19
19
  }
20
20
  }
21
21
  mediaPosition
22
+ anchor
22
23
  }
23
24
  }
24
25
  `;
@@ -21,6 +21,7 @@ export const getTestimonialModule: DocumentNode = gql`
21
21
  }
22
22
  }
23
23
  mediaPosition
24
+ anchor
24
25
  }
25
26
  }
26
27
  `
@@ -28,6 +28,7 @@ export const getTileCollection = gql `
28
28
  tileCollectionModule(id: $id, preview: $preview) {
29
29
  headline
30
30
  bodyCopy
31
+ anchor
31
32
  tilesCollection(limit: $limit, skip: $skip) {
32
33
  total
33
34
  items {
@@ -36,6 +36,7 @@ export const getTileCollection: DocumentNode = gql`
36
36
  tileCollectionModule(id: $id, preview: $preview) {
37
37
  headline
38
38
  bodyCopy
39
+ anchor
39
40
  tilesCollection(limit: $limit, skip: $skip) {
40
41
  total
41
42
  items {
@@ -8,6 +8,7 @@ export const getLogoCollection: DocumentNode = gql`
8
8
  logoCollectionModule(id: $id, preview: $preview) {
9
9
  headline
10
10
  backgroundColor
11
+ anchor
11
12
  logosCollection {
12
13
  items {
13
14
  ...imageFragment