prismic-slicemachine-to-hydrogen-jrhcn 0.1.609 → 0.1.610-alpha.1

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.
@@ -6373,6 +6373,64 @@ 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
+ }
6423
+ .accordion .accordionItem .accordionItemContent > :first-child {
6424
+ margin: 0;
6425
+ }
6426
+ .accordion .accordionItem .accordionItemContent > :last-child {
6427
+ margin-bottom: 20px;
6428
+ }
6429
+ .accordion .accordionItem button.accordionItemTitle.active + .accordionItemContent {
6430
+ opacity: 1;
6431
+ max-height: max-content;
6432
+ }
6433
+
6376
6434
  .banner {
6377
6435
  align-items: center;
6378
6436
  display: flex;
@@ -6373,6 +6373,64 @@ 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
+ }
6423
+ .accordion .accordionItem .accordionItemContent > :first-child {
6424
+ margin: 0;
6425
+ }
6426
+ .accordion .accordionItem .accordionItemContent > :last-child {
6427
+ margin-bottom: 20px;
6428
+ }
6429
+ .accordion .accordionItem button.accordionItemTitle.active + .accordionItemContent {
6430
+ opacity: 1;
6431
+ max-height: max-content;
6432
+ }
6433
+
6376
6434
  .banner {
6377
6435
  align-items: center;
6378
6436
  display: flex;
@@ -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
@@ -37478,51 +37481,18 @@ export interface LensTintsSliceDefaultPrimaryLensesItem {
37478
37481
  }
37479
37482
 
37480
37483
  /**
37481
- * Item in *LensTints → Unified → Primary → Available Lenses Order*
37484
+ * Item in *LensTints → Unified → Primary → Available Lenses*
37482
37485
  */
37483
37486
  export interface LensTintsSliceUnifiedPrimaryLensesItem {
37484
37487
  /**
37485
- * Lens field in *LensTints → Unified → Primary → Available Lenses Order*
37488
+ * Lens field in *LensTints → Unified → Primary → Available Lenses*
37486
37489
  *
37487
- * - **Field Type**: Select
37490
+ * - **Field Type**: Integration Fields (Catalog: `roka--lens_catalog`)
37488
37491
  * - **Placeholder**: *None*
37489
37492
  * - **API ID Path**: lens_tints.unified.primary.lenses[].lens
37490
- * - **Documentation**: https://prismic.io/docs/field#select
37493
+ * - **Documentation**: https://prismic.io/docs/field#integration
37491
37494
  */
37492
- lens: prismic.SelectField<
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
- >
37495
+ lens: prismic.IntegrationField
37526
37496
  }
37527
37497
 
37528
37498
  /**
@@ -37606,7 +37576,7 @@ export interface LensTintsSliceUnifiedPrimary {
37606
37576
  title: prismic.KeyTextField
37607
37577
 
37608
37578
  /**
37609
- * Available Lenses Order field in *LensTints → Unified → Primary*
37579
+ * Available Lenses field in *LensTints → Unified → Primary*
37610
37580
  *
37611
37581
  * - **Field Type**: Group
37612
37582
  * - **Placeholder**: *None*
@@ -39360,6 +39330,61 @@ export type ProductCoreTechSlice = prismic.SharedSlice<
39360
39330
  ProductCoreTechSliceVariation
39361
39331
  >
39362
39332
 
39333
+ /**
39334
+ * Primary content in *ProductFaq → Default → Primary*
39335
+ */
39336
+ export interface ProductFaqSliceDefaultPrimary {
39337
+ /**
39338
+ * Title field in *ProductFaq → Default → Primary*
39339
+ *
39340
+ * - **Field Type**: Text
39341
+ * - **Placeholder**: FAQ
39342
+ * - **API ID Path**: product_faq.default.primary.title
39343
+ * - **Documentation**: https://prismic.io/docs/field#key-text
39344
+ */
39345
+ title: prismic.KeyTextField
39346
+
39347
+ /**
39348
+ * FAQ Group field in *ProductFaq → Default → Primary*
39349
+ *
39350
+ * - **Field Type**: Integration Fields (Catalog: `roka--faq_group`)
39351
+ * - **Placeholder**: *None*
39352
+ * - **API ID Path**: product_faq.default.primary.faq_group
39353
+ * - **Documentation**: https://prismic.io/docs/field#integration
39354
+ */
39355
+ faq_group: prismic.IntegrationField
39356
+ }
39357
+
39358
+ /**
39359
+ * Default variation for ProductFaq Slice
39360
+ *
39361
+ * - **API ID**: `default`
39362
+ * - **Description**: Default
39363
+ * - **Documentation**: https://prismic.io/docs/slice
39364
+ */
39365
+ export type ProductFaqSliceDefault = prismic.SharedSliceVariation<
39366
+ 'default',
39367
+ Simplify<ProductFaqSliceDefaultPrimary>,
39368
+ never
39369
+ >
39370
+
39371
+ /**
39372
+ * Slice variation for *ProductFaq*
39373
+ */
39374
+ type ProductFaqSliceVariation = ProductFaqSliceDefault
39375
+
39376
+ /**
39377
+ * ProductFaq Shared Slice
39378
+ *
39379
+ * - **API ID**: `product_faq`
39380
+ * - **Description**: ProductFaq
39381
+ * - **Documentation**: https://prismic.io/docs/slice
39382
+ */
39383
+ export type ProductFaqSlice = prismic.SharedSlice<
39384
+ 'product_faq',
39385
+ ProductFaqSliceVariation
39386
+ >
39387
+
39363
39388
  /**
39364
39389
  * Item in *ProductInfo → Default → Primary → Items*
39365
39390
  */
@@ -41231,6 +41256,10 @@ declare module '@prismicio/client' {
41231
41256
  ProductCoreTechSliceVariation,
41232
41257
  ProductCoreTechSliceProductCoreTechGrid,
41233
41258
  ProductCoreTechSliceProductCoreTechCarousel,
41259
+ ProductFaqSlice,
41260
+ ProductFaqSliceDefaultPrimary,
41261
+ ProductFaqSliceVariation,
41262
+ ProductFaqSliceDefault,
41234
41263
  ProductInfoSlice,
41235
41264
  ProductInfoSliceDefaultPrimaryItemsItem,
41236
41265
  ProductInfoSliceDefaultPrimary,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prismic-slicemachine-to-hydrogen-jrhcn",
3
- "version": "0.1.609",
3
+ "version": "0.1.610-alpha.1",
4
4
  "private": false,
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",