prismic-slicemachine-to-hydrogen-jrhcn 0.1.610 → 0.1.612
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/styles.css +121 -66
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/styles.css +121 -66
- package/dist/prismicio-types.d.ts +113 -40
- package/package.json +1 -1
package/dist/esm/styles.css
CHANGED
|
@@ -6373,6 +6373,61 @@ it is unclear if all swatches from previous site are actively used
|
|
|
6373
6373
|
background-image: radial-gradient(circle farthest-corner at 8% 97%, rgb(233, 237, 152), rgb(245, 221, 129));
|
|
6374
6374
|
}
|
|
6375
6375
|
|
|
6376
|
+
.accordion {
|
|
6377
|
+
max-width: 1150px;
|
|
6378
|
+
margin: 0 auto;
|
|
6379
|
+
padding: 40px;
|
|
6380
|
+
}
|
|
6381
|
+
@media screen and (max-width: 760px) {
|
|
6382
|
+
.accordion {
|
|
6383
|
+
padding: 18px;
|
|
6384
|
+
}
|
|
6385
|
+
}
|
|
6386
|
+
.accordion .accordionTitle h2 {
|
|
6387
|
+
margin: 0;
|
|
6388
|
+
}
|
|
6389
|
+
.accordion .accordionItem {
|
|
6390
|
+
position: relative;
|
|
6391
|
+
}
|
|
6392
|
+
.accordion .accordionItem + .accordionItem {
|
|
6393
|
+
border-top: 1px solid #9b9b9b;
|
|
6394
|
+
}
|
|
6395
|
+
.accordion .accordionItem button.accordionItemTitle {
|
|
6396
|
+
font-family: "Galaxie Polaris Bold", sans-serif;
|
|
6397
|
+
font-weight: normal;
|
|
6398
|
+
letter-spacing: 0;
|
|
6399
|
+
text-transform: none;
|
|
6400
|
+
font-size: 1rem;
|
|
6401
|
+
background: transparent url("https://img.roka.com/hydrogen/public/img/symbol-plus-black.svg") right center no-repeat;
|
|
6402
|
+
border: none;
|
|
6403
|
+
cursor: pointer;
|
|
6404
|
+
padding: 20px 40px 20px 0;
|
|
6405
|
+
text-align: left;
|
|
6406
|
+
width: 100%;
|
|
6407
|
+
z-index: 1;
|
|
6408
|
+
}
|
|
6409
|
+
@media screen and (max-width: 760px) {
|
|
6410
|
+
.accordion .accordionItem button.accordionItemTitle {
|
|
6411
|
+
font-size: 1rem;
|
|
6412
|
+
}
|
|
6413
|
+
}
|
|
6414
|
+
.accordion .accordionItem button.accordionItemTitle.active {
|
|
6415
|
+
background: transparent url("https://img.roka.com/hydrogen/public/img/symbol-minus-black.svg") right center no-repeat;
|
|
6416
|
+
}
|
|
6417
|
+
.accordion .accordionItem .accordionItemContent {
|
|
6418
|
+
max-height: 0;
|
|
6419
|
+
max-width: 760px;
|
|
6420
|
+
opacity: 0;
|
|
6421
|
+
transition: all 0.333s ease-out;
|
|
6422
|
+
overflow: hidden;
|
|
6423
|
+
}
|
|
6424
|
+
.accordion .accordionItem .accordionItemContent > :first-child {
|
|
6425
|
+
margin: 0;
|
|
6426
|
+
}
|
|
6427
|
+
.accordion .accordionItem .accordionItemContent > :last-child {
|
|
6428
|
+
margin-bottom: 20px;
|
|
6429
|
+
}
|
|
6430
|
+
|
|
6376
6431
|
.banner {
|
|
6377
6432
|
align-items: center;
|
|
6378
6433
|
display: flex;
|
|
@@ -15035,6 +15090,72 @@ input#yoga:checked + label:before {
|
|
|
15035
15090
|
}
|
|
15036
15091
|
}
|
|
15037
15092
|
/* Slide styles end */
|
|
15093
|
+
:root {
|
|
15094
|
+
/*
|
|
15095
|
+
--swiper-scrollbar-border-radius: 10px;
|
|
15096
|
+
--swiper-scrollbar-top: auto;
|
|
15097
|
+
--swiper-scrollbar-bottom: 4px;
|
|
15098
|
+
--swiper-scrollbar-left: auto;
|
|
15099
|
+
--swiper-scrollbar-right: 4px;
|
|
15100
|
+
--swiper-scrollbar-sides-offset: 1%;
|
|
15101
|
+
--swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
|
|
15102
|
+
--swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
|
|
15103
|
+
--swiper-scrollbar-size: 4px;
|
|
15104
|
+
*/
|
|
15105
|
+
}
|
|
15106
|
+
|
|
15107
|
+
.swiper-scrollbar {
|
|
15108
|
+
border-radius: var(--swiper-scrollbar-border-radius, 10px);
|
|
15109
|
+
position: relative;
|
|
15110
|
+
touch-action: none;
|
|
15111
|
+
background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
|
|
15112
|
+
}
|
|
15113
|
+
|
|
15114
|
+
.swiper-scrollbar-disabled > .swiper-scrollbar,
|
|
15115
|
+
.swiper-scrollbar.swiper-scrollbar-disabled {
|
|
15116
|
+
display: none !important;
|
|
15117
|
+
}
|
|
15118
|
+
|
|
15119
|
+
.swiper-horizontal > .swiper-scrollbar,
|
|
15120
|
+
.swiper-scrollbar.swiper-scrollbar-horizontal {
|
|
15121
|
+
position: absolute;
|
|
15122
|
+
left: var(--swiper-scrollbar-sides-offset, 1%);
|
|
15123
|
+
bottom: var(--swiper-scrollbar-bottom, 4px);
|
|
15124
|
+
top: var(--swiper-scrollbar-top, auto);
|
|
15125
|
+
z-index: 50;
|
|
15126
|
+
height: var(--swiper-scrollbar-size, 4px);
|
|
15127
|
+
width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
|
|
15128
|
+
}
|
|
15129
|
+
|
|
15130
|
+
.swiper-vertical > .swiper-scrollbar,
|
|
15131
|
+
.swiper-scrollbar.swiper-scrollbar-vertical {
|
|
15132
|
+
position: absolute;
|
|
15133
|
+
left: var(--swiper-scrollbar-left, auto);
|
|
15134
|
+
right: var(--swiper-scrollbar-right, 4px);
|
|
15135
|
+
top: var(--swiper-scrollbar-sides-offset, 1%);
|
|
15136
|
+
z-index: 50;
|
|
15137
|
+
width: var(--swiper-scrollbar-size, 4px);
|
|
15138
|
+
height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
|
|
15139
|
+
}
|
|
15140
|
+
|
|
15141
|
+
.swiper-scrollbar-drag {
|
|
15142
|
+
height: 100%;
|
|
15143
|
+
width: 100%;
|
|
15144
|
+
position: relative;
|
|
15145
|
+
background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
|
|
15146
|
+
border-radius: var(--swiper-scrollbar-border-radius, 10px);
|
|
15147
|
+
left: 0;
|
|
15148
|
+
top: 0;
|
|
15149
|
+
}
|
|
15150
|
+
|
|
15151
|
+
.swiper-scrollbar-cursor-drag {
|
|
15152
|
+
cursor: move;
|
|
15153
|
+
}
|
|
15154
|
+
|
|
15155
|
+
.swiper-scrollbar-lock {
|
|
15156
|
+
display: none;
|
|
15157
|
+
}
|
|
15158
|
+
|
|
15038
15159
|
:root {
|
|
15039
15160
|
--swiper-navigation-size: 44px;
|
|
15040
15161
|
/*
|
|
@@ -15135,72 +15256,6 @@ input#yoga:checked + label:before {
|
|
|
15135
15256
|
}
|
|
15136
15257
|
|
|
15137
15258
|
/* Navigation font end */
|
|
15138
|
-
:root {
|
|
15139
|
-
/*
|
|
15140
|
-
--swiper-scrollbar-border-radius: 10px;
|
|
15141
|
-
--swiper-scrollbar-top: auto;
|
|
15142
|
-
--swiper-scrollbar-bottom: 4px;
|
|
15143
|
-
--swiper-scrollbar-left: auto;
|
|
15144
|
-
--swiper-scrollbar-right: 4px;
|
|
15145
|
-
--swiper-scrollbar-sides-offset: 1%;
|
|
15146
|
-
--swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
|
|
15147
|
-
--swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
|
|
15148
|
-
--swiper-scrollbar-size: 4px;
|
|
15149
|
-
*/
|
|
15150
|
-
}
|
|
15151
|
-
|
|
15152
|
-
.swiper-scrollbar {
|
|
15153
|
-
border-radius: var(--swiper-scrollbar-border-radius, 10px);
|
|
15154
|
-
position: relative;
|
|
15155
|
-
touch-action: none;
|
|
15156
|
-
background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
|
|
15157
|
-
}
|
|
15158
|
-
|
|
15159
|
-
.swiper-scrollbar-disabled > .swiper-scrollbar,
|
|
15160
|
-
.swiper-scrollbar.swiper-scrollbar-disabled {
|
|
15161
|
-
display: none !important;
|
|
15162
|
-
}
|
|
15163
|
-
|
|
15164
|
-
.swiper-horizontal > .swiper-scrollbar,
|
|
15165
|
-
.swiper-scrollbar.swiper-scrollbar-horizontal {
|
|
15166
|
-
position: absolute;
|
|
15167
|
-
left: var(--swiper-scrollbar-sides-offset, 1%);
|
|
15168
|
-
bottom: var(--swiper-scrollbar-bottom, 4px);
|
|
15169
|
-
top: var(--swiper-scrollbar-top, auto);
|
|
15170
|
-
z-index: 50;
|
|
15171
|
-
height: var(--swiper-scrollbar-size, 4px);
|
|
15172
|
-
width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
|
|
15173
|
-
}
|
|
15174
|
-
|
|
15175
|
-
.swiper-vertical > .swiper-scrollbar,
|
|
15176
|
-
.swiper-scrollbar.swiper-scrollbar-vertical {
|
|
15177
|
-
position: absolute;
|
|
15178
|
-
left: var(--swiper-scrollbar-left, auto);
|
|
15179
|
-
right: var(--swiper-scrollbar-right, 4px);
|
|
15180
|
-
top: var(--swiper-scrollbar-sides-offset, 1%);
|
|
15181
|
-
z-index: 50;
|
|
15182
|
-
width: var(--swiper-scrollbar-size, 4px);
|
|
15183
|
-
height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
|
|
15184
|
-
}
|
|
15185
|
-
|
|
15186
|
-
.swiper-scrollbar-drag {
|
|
15187
|
-
height: 100%;
|
|
15188
|
-
width: 100%;
|
|
15189
|
-
position: relative;
|
|
15190
|
-
background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
|
|
15191
|
-
border-radius: var(--swiper-scrollbar-border-radius, 10px);
|
|
15192
|
-
left: 0;
|
|
15193
|
-
top: 0;
|
|
15194
|
-
}
|
|
15195
|
-
|
|
15196
|
-
.swiper-scrollbar-cursor-drag {
|
|
15197
|
-
cursor: move;
|
|
15198
|
-
}
|
|
15199
|
-
|
|
15200
|
-
.swiper-scrollbar-lock {
|
|
15201
|
-
display: none;
|
|
15202
|
-
}
|
|
15203
|
-
|
|
15204
15259
|
:root {
|
|
15205
15260
|
/*
|
|
15206
15261
|
--swiper-pagination-color: var(--swiper-theme-color);
|
|
@@ -8728,6 +8728,7 @@ export type GlobalSettingsDocument<Lang extends string = string> =
|
|
|
8728
8728
|
>
|
|
8729
8729
|
|
|
8730
8730
|
type HeadlessCollectionDocumentDataSlicesSlice =
|
|
8731
|
+
| ProductFaqSlice
|
|
8731
8732
|
| BannerGridSlice
|
|
8732
8733
|
| FoursixtySliderSlice
|
|
8733
8734
|
| ProductCoreTechSlice
|
|
@@ -8822,6 +8823,7 @@ export type HeadlessCollectionDocument<Lang extends string = string> =
|
|
|
8822
8823
|
>
|
|
8823
8824
|
|
|
8824
8825
|
type HeadlessPageDocumentDataSlicesSlice =
|
|
8826
|
+
| ProductFaqSlice
|
|
8825
8827
|
| FoursixtySliderSlice
|
|
8826
8828
|
| VideoSlice
|
|
8827
8829
|
| EmailSignupSlice
|
|
@@ -8930,6 +8932,7 @@ export interface HeadlessProductDocumentDataSubheadersItem {
|
|
|
8930
8932
|
}
|
|
8931
8933
|
|
|
8932
8934
|
type HeadlessProductDocumentDataSlicesSlice =
|
|
8935
|
+
| ProductFaqSlice
|
|
8933
8936
|
| BannerGridSlice
|
|
8934
8937
|
| FoursixtySliderSlice
|
|
8935
8938
|
| VideoSlice
|
|
@@ -9055,6 +9058,17 @@ interface HeadlessProductDocumentData {
|
|
|
9055
9058
|
*/
|
|
9056
9059
|
show_hsa_fsa: prismic.BooleanField
|
|
9057
9060
|
|
|
9061
|
+
/**
|
|
9062
|
+
* HSA/FSA Title field in *Headless Product*
|
|
9063
|
+
*
|
|
9064
|
+
* - **Field Type**: Text
|
|
9065
|
+
* - **Placeholder**: How to Use Your Insurance or HSA/FSA
|
|
9066
|
+
* - **API ID Path**: headless_product.hsa_fsa_title
|
|
9067
|
+
* - **Tab**: Accordions
|
|
9068
|
+
* - **Documentation**: https://prismic.io/docs/field#key-text
|
|
9069
|
+
*/
|
|
9070
|
+
hsa_fsa_title: prismic.KeyTextField
|
|
9071
|
+
|
|
9058
9072
|
/**
|
|
9059
9073
|
* Show More Ways To Wear field in *Headless Product*
|
|
9060
9074
|
*
|
|
@@ -9067,6 +9081,17 @@ interface HeadlessProductDocumentData {
|
|
|
9067
9081
|
*/
|
|
9068
9082
|
show_more_ways_to_wear: prismic.BooleanField
|
|
9069
9083
|
|
|
9084
|
+
/**
|
|
9085
|
+
* More Ways To Wear Title field in *Headless Product*
|
|
9086
|
+
*
|
|
9087
|
+
* - **Field Type**: Text
|
|
9088
|
+
* - **Placeholder**: More Ways To Wear
|
|
9089
|
+
* - **API ID Path**: headless_product.more_ways_to_wear_title
|
|
9090
|
+
* - **Tab**: Accordions
|
|
9091
|
+
* - **Documentation**: https://prismic.io/docs/field#key-text
|
|
9092
|
+
*/
|
|
9093
|
+
more_ways_to_wear_title: prismic.KeyTextField
|
|
9094
|
+
|
|
9070
9095
|
/**
|
|
9071
9096
|
* More Ways to Wear Products field in *Headless Product*
|
|
9072
9097
|
*
|
|
@@ -9102,6 +9127,17 @@ interface HeadlessProductDocumentData {
|
|
|
9102
9127
|
*/
|
|
9103
9128
|
show_measurements: prismic.BooleanField
|
|
9104
9129
|
|
|
9130
|
+
/**
|
|
9131
|
+
* Measurements Title field in *Headless Product*
|
|
9132
|
+
*
|
|
9133
|
+
* - **Field Type**: Text
|
|
9134
|
+
* - **Placeholder**: Measurements
|
|
9135
|
+
* - **API ID Path**: headless_product.measurements_title
|
|
9136
|
+
* - **Tab**: Accordions
|
|
9137
|
+
* - **Documentation**: https://prismic.io/docs/field#key-text
|
|
9138
|
+
*/
|
|
9139
|
+
measurements_title: prismic.KeyTextField
|
|
9140
|
+
|
|
9105
9141
|
/**
|
|
9106
9142
|
* Measurements Image field in *Headless Product*
|
|
9107
9143
|
*
|
|
@@ -9134,7 +9170,18 @@ interface HeadlessProductDocumentData {
|
|
|
9134
9170
|
* - **Tab**: Accordions
|
|
9135
9171
|
* - **Documentation**: https://prismic.io/docs/field#rich-text-title
|
|
9136
9172
|
*/
|
|
9137
|
-
hto_content: prismic.RichTextField
|
|
9173
|
+
hto_content: prismic.RichTextField
|
|
9174
|
+
|
|
9175
|
+
/**
|
|
9176
|
+
* HTO Title field in *Headless Product*
|
|
9177
|
+
*
|
|
9178
|
+
* - **Field Type**: Text
|
|
9179
|
+
* - **Placeholder**: How to Tryout at Home
|
|
9180
|
+
* - **API ID Path**: headless_product.hto_title
|
|
9181
|
+
* - **Tab**: Accordions
|
|
9182
|
+
* - **Documentation**: https://prismic.io/docs/field#key-text
|
|
9183
|
+
*/
|
|
9184
|
+
hto_title: prismic.KeyTextField /**
|
|
9138
9185
|
* Is Enabled field in *Headless Product*
|
|
9139
9186
|
*
|
|
9140
9187
|
* - **Field Type**: Boolean
|
|
@@ -37478,51 +37525,18 @@ export interface LensTintsSliceDefaultPrimaryLensesItem {
|
|
|
37478
37525
|
}
|
|
37479
37526
|
|
|
37480
37527
|
/**
|
|
37481
|
-
* Item in *LensTints → Unified → Primary → Available Lenses
|
|
37528
|
+
* Item in *LensTints → Unified → Primary → Available Lenses*
|
|
37482
37529
|
*/
|
|
37483
37530
|
export interface LensTintsSliceUnifiedPrimaryLensesItem {
|
|
37484
37531
|
/**
|
|
37485
|
-
* Lens field in *LensTints → Unified → Primary → Available Lenses
|
|
37532
|
+
* Lens field in *LensTints → Unified → Primary → Available Lenses*
|
|
37486
37533
|
*
|
|
37487
|
-
* - **Field Type**:
|
|
37534
|
+
* - **Field Type**: Integration Fields (Catalog: `roka--lens_catalog`)
|
|
37488
37535
|
* - **Placeholder**: *None*
|
|
37489
37536
|
* - **API ID Path**: lens_tints.unified.primary.lenses[].lens
|
|
37490
|
-
* - **Documentation**: https://prismic.io/docs/field#
|
|
37537
|
+
* - **Documentation**: https://prismic.io/docs/field#integration
|
|
37491
37538
|
*/
|
|
37492
|
-
lens: prismic.
|
|
37493
|
-
| 'Black Mirror'
|
|
37494
|
-
| 'Bronze'
|
|
37495
|
-
| 'Bronze Ember'
|
|
37496
|
-
| 'Bronze Polarized'
|
|
37497
|
-
| 'Clear'
|
|
37498
|
-
| 'Dark Arctic Mirror'
|
|
37499
|
-
| 'Dark Arctic Mirror Polarized'
|
|
37500
|
-
| 'Dark Bronze Mirror'
|
|
37501
|
-
| 'Dark Carbon'
|
|
37502
|
-
| 'Dark Carbon Polarized'
|
|
37503
|
-
| 'Dark Glacier Mirror'
|
|
37504
|
-
| 'Fire Mirror'
|
|
37505
|
-
| 'Glacier Mirror'
|
|
37506
|
-
| 'Glacier Mirror Polarized'
|
|
37507
|
-
| 'Gold Mirror'
|
|
37508
|
-
| 'Gold Mirror Polarized'
|
|
37509
|
-
| 'Graphite'
|
|
37510
|
-
| 'Green Mirror'
|
|
37511
|
-
| 'HC Fusion Mirror'
|
|
37512
|
-
| 'HC Ion Mirror'
|
|
37513
|
-
| 'HC Octane Mirror'
|
|
37514
|
-
| 'HC Plasma 20'
|
|
37515
|
-
| 'HC Plasma 40'
|
|
37516
|
-
| 'SHIFT Photochromic Carbon'
|
|
37517
|
-
| 'Ranger Polarized'
|
|
37518
|
-
| 'Wind Down™️'
|
|
37519
|
-
| 'Rose Gold Mirror'
|
|
37520
|
-
| 'Silver Mirror'
|
|
37521
|
-
| 'Teal Mirror'
|
|
37522
|
-
| 'Teal Mirror Polarized'
|
|
37523
|
-
| 'Yellow'
|
|
37524
|
-
| 'ZX-3'
|
|
37525
|
-
>
|
|
37539
|
+
lens: prismic.IntegrationField
|
|
37526
37540
|
}
|
|
37527
37541
|
|
|
37528
37542
|
/**
|
|
@@ -37606,7 +37620,7 @@ export interface LensTintsSliceUnifiedPrimary {
|
|
|
37606
37620
|
title: prismic.KeyTextField
|
|
37607
37621
|
|
|
37608
37622
|
/**
|
|
37609
|
-
* Available Lenses
|
|
37623
|
+
* Available Lenses field in *LensTints → Unified → Primary*
|
|
37610
37624
|
*
|
|
37611
37625
|
* - **Field Type**: Group
|
|
37612
37626
|
* - **Placeholder**: *None*
|
|
@@ -39360,6 +39374,61 @@ export type ProductCoreTechSlice = prismic.SharedSlice<
|
|
|
39360
39374
|
ProductCoreTechSliceVariation
|
|
39361
39375
|
>
|
|
39362
39376
|
|
|
39377
|
+
/**
|
|
39378
|
+
* Primary content in *ProductFaq → Default → Primary*
|
|
39379
|
+
*/
|
|
39380
|
+
export interface ProductFaqSliceDefaultPrimary {
|
|
39381
|
+
/**
|
|
39382
|
+
* Title field in *ProductFaq → Default → Primary*
|
|
39383
|
+
*
|
|
39384
|
+
* - **Field Type**: Text
|
|
39385
|
+
* - **Placeholder**: FAQ
|
|
39386
|
+
* - **API ID Path**: product_faq.default.primary.title
|
|
39387
|
+
* - **Documentation**: https://prismic.io/docs/field#key-text
|
|
39388
|
+
*/
|
|
39389
|
+
title: prismic.KeyTextField
|
|
39390
|
+
|
|
39391
|
+
/**
|
|
39392
|
+
* FAQ Group field in *ProductFaq → Default → Primary*
|
|
39393
|
+
*
|
|
39394
|
+
* - **Field Type**: Integration Fields (Catalog: `roka--faq_groups`)
|
|
39395
|
+
* - **Placeholder**: *None*
|
|
39396
|
+
* - **API ID Path**: product_faq.default.primary.faq_group
|
|
39397
|
+
* - **Documentation**: https://prismic.io/docs/field#integration
|
|
39398
|
+
*/
|
|
39399
|
+
faq_group: prismic.IntegrationField
|
|
39400
|
+
}
|
|
39401
|
+
|
|
39402
|
+
/**
|
|
39403
|
+
* Default variation for ProductFaq Slice
|
|
39404
|
+
*
|
|
39405
|
+
* - **API ID**: `default`
|
|
39406
|
+
* - **Description**: Default
|
|
39407
|
+
* - **Documentation**: https://prismic.io/docs/slice
|
|
39408
|
+
*/
|
|
39409
|
+
export type ProductFaqSliceDefault = prismic.SharedSliceVariation<
|
|
39410
|
+
'default',
|
|
39411
|
+
Simplify<ProductFaqSliceDefaultPrimary>,
|
|
39412
|
+
never
|
|
39413
|
+
>
|
|
39414
|
+
|
|
39415
|
+
/**
|
|
39416
|
+
* Slice variation for *ProductFaq*
|
|
39417
|
+
*/
|
|
39418
|
+
type ProductFaqSliceVariation = ProductFaqSliceDefault
|
|
39419
|
+
|
|
39420
|
+
/**
|
|
39421
|
+
* ProductFaq Shared Slice
|
|
39422
|
+
*
|
|
39423
|
+
* - **API ID**: `product_faq`
|
|
39424
|
+
* - **Description**: ProductFaq
|
|
39425
|
+
* - **Documentation**: https://prismic.io/docs/slice
|
|
39426
|
+
*/
|
|
39427
|
+
export type ProductFaqSlice = prismic.SharedSlice<
|
|
39428
|
+
'product_faq',
|
|
39429
|
+
ProductFaqSliceVariation
|
|
39430
|
+
>
|
|
39431
|
+
|
|
39363
39432
|
/**
|
|
39364
39433
|
* Item in *ProductInfo → Default → Primary → Items*
|
|
39365
39434
|
*/
|
|
@@ -41231,6 +41300,10 @@ declare module '@prismicio/client' {
|
|
|
41231
41300
|
ProductCoreTechSliceVariation,
|
|
41232
41301
|
ProductCoreTechSliceProductCoreTechGrid,
|
|
41233
41302
|
ProductCoreTechSliceProductCoreTechCarousel,
|
|
41303
|
+
ProductFaqSlice,
|
|
41304
|
+
ProductFaqSliceDefaultPrimary,
|
|
41305
|
+
ProductFaqSliceVariation,
|
|
41306
|
+
ProductFaqSliceDefault,
|
|
41234
41307
|
ProductInfoSlice,
|
|
41235
41308
|
ProductInfoSliceDefaultPrimaryItemsItem,
|
|
41236
41309
|
ProductInfoSliceDefaultPrimary,
|