@cooperco/cooper-component-library 0.1.126 → 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.
- package/dist/cms/0094-add-anchor-to-page-modules.cjs +114 -0
- package/dist/cms/carousel.query.ts +1 -0
- package/dist/cms/chartModule.query.ts +1 -0
- package/dist/cms/containerCollectionModule.query.ts +1 -0
- package/dist/cms/containerModule.query.ts +1 -0
- package/dist/cms/contentModule.query.ts +1 -0
- package/dist/cms/contentful/migrations/scripts/0094-add-anchor-to-page-modules.cjs +114 -0
- package/dist/cms/contentful/queries/carousel.query.js +1 -0
- package/dist/cms/contentful/queries/carousel.query.ts +1 -0
- package/dist/cms/contentful/queries/chartModule.query.js +1 -0
- package/dist/cms/contentful/queries/chartModule.query.ts +1 -0
- package/dist/cms/contentful/queries/containerCollectionModule.query.js +1 -0
- package/dist/cms/contentful/queries/containerCollectionModule.query.ts +1 -0
- package/dist/cms/contentful/queries/containerModule.query.js +1 -0
- package/dist/cms/contentful/queries/containerModule.query.ts +1 -0
- package/dist/cms/contentful/queries/contentModule.query.js +1 -0
- package/dist/cms/contentful/queries/contentModule.query.ts +1 -0
- package/dist/cms/contentful/queries/logoCollection.query.js +1 -0
- package/dist/cms/contentful/queries/logoCollection.query.ts +1 -0
- package/dist/cms/contentful/queries/page.query.js +11 -0
- package/dist/cms/contentful/queries/page.query.ts +11 -0
- package/dist/cms/contentful/queries/placeholderModule.query.js +2 -0
- package/dist/cms/contentful/queries/placeholderModule.query.ts +2 -0
- package/dist/cms/contentful/queries/productModule.query.js +2 -0
- package/dist/cms/contentful/queries/productModule.query.ts +2 -0
- package/dist/cms/contentful/queries/splitModule.query.js +2 -0
- package/dist/cms/contentful/queries/splitModule.query.ts +2 -0
- package/dist/cms/contentful/queries/testimonial.query.js +1 -0
- package/dist/cms/contentful/queries/testimonial.query.ts +1 -0
- package/dist/cms/contentful/queries/tileCollection.query.js +1 -0
- package/dist/cms/contentful/queries/tileCollection.query.ts +1 -0
- package/dist/cms/logoCollection.query.ts +1 -0
- package/dist/cms/migrations/scripts/0094-add-anchor-to-page-modules.cjs +114 -0
- package/dist/cms/page.query.ts +11 -0
- package/dist/cms/placeholderModule.query.ts +2 -0
- package/dist/cms/productModule.query.ts +2 -0
- package/dist/cms/queries/carousel.query.ts +1 -0
- package/dist/cms/queries/chartModule.query.ts +1 -0
- package/dist/cms/queries/containerCollectionModule.query.ts +1 -0
- package/dist/cms/queries/containerModule.query.ts +1 -0
- package/dist/cms/queries/contentModule.query.ts +1 -0
- package/dist/cms/queries/logoCollection.query.ts +1 -0
- package/dist/cms/queries/page.query.ts +11 -0
- package/dist/cms/queries/placeholderModule.query.ts +2 -0
- package/dist/cms/queries/productModule.query.ts +2 -0
- package/dist/cms/queries/splitModule.query.ts +2 -0
- package/dist/cms/queries/testimonial.query.ts +1 -0
- package/dist/cms/queries/tileCollection.query.ts +1 -0
- package/dist/cms/scripts/0094-add-anchor-to-page-modules.cjs +114 -0
- package/dist/cms/splitModule.query.ts +2 -0
- package/dist/cms/testimonial.query.ts +1 -0
- package/dist/cms/tileCollection.query.ts +1 -0
- package/dist/lib/component-lib.js +3886 -3848
- package/dist/lib/component-lib.umd.cjs +23 -23
- package/dist/lib/style.css +1 -1
- package/dist/types/src/index.d.ts +2 -1
- package/dist/types/src/types.d.ts +1 -0
- package/dist/types/src/utils/normalizeAnchor.d.ts +12 -0
- 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
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -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
|
}
|
|
@@ -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
|
`
|
|
@@ -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
|
}
|