@rebuy/rebuy-hydrogen 3.0.0-beta.19 → 3.0.0-beta.20

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/README.md CHANGED
@@ -28,12 +28,10 @@ This distinction is important as different hooks/functions are used in each case
28
28
 
29
29
  ### Prerequisites
30
30
 
31
-
32
31
  - "@shopify/hydrogen": ">=2025.5.0",
33
32
  - If you are also using hydrogen-react along with just hydrogen: "@shopify/hydrogen-react": ">=2025.4.0"
34
33
  - Smart Cart V2. Legacy Smart Carts are not supported
35
34
 
36
-
37
35
  ### Installation Steps
38
36
 
39
37
  1. Install the beta version of our package from npm:
@@ -276,18 +274,40 @@ Dynamic widget that can be set up to display a widget that you have created in t
276
274
  | `variant` | The selected variant object. |
277
275
  | `variantId` | The selected variant ID. |
278
276
 
277
+ ### RebuyGiftWithPurchase
278
+
279
+ A headless widget that automatically manages Gift With Purchase functionality. This component monitors cart state and automatically adds/removes free gifts based on data source rules configured in the Rebuy Admin. No UI is rendered - all gift management happens automatically in the background.
280
+
281
+ **Properties:**
282
+
283
+ | Property | Description |
284
+ | :--------- | :-------------------------------------------------------------------------- |
285
+ | `widgetId` | The widget ID for the gift with purchase widget (found in the Rebuy Admin). |
286
+
287
+ **Usage Example:**
288
+
289
+ ```typescript
290
+ // Place in your root layout
291
+ <RebuyGiftWithPurchase widgetId="12345" />
292
+ ```
293
+
294
+ **Notes:**
295
+
296
+ - This component is best suited for single-variant gift products.
297
+ - If your gift qualifier is the cart subtotal, we recommend using the Tiered Progress Bar as it can be used for selectable multi-variant gifts.
298
+
279
299
  ### RebuyProductViewed
280
300
 
281
301
  Place this component on any page or element where you would like to record that a customer has viewed one of your products. You will need to pass in either the entire product object, productID, or just the productHandle. This component will generate a UUID for registering the viewed products if a customerId is not passed along as well. To record a customer viewing a product and have that record attached to their customerID you will need to pass in the customerId as a sting.
282
302
 
283
303
  **Properties:**
284
304
 
285
- | Property | Description |
286
- | :---- | :---- |
287
- | `productId` | The Shopify product ID |
288
- | `product` | The entire product object |
289
- | `productHandle` | The product's handle |
290
- | `customerId` | The ID of the customer viewing the product. If no customerId is passed a UUID will be used locally instead. |
305
+ | Property | Description |
306
+ | :-------------- | :---------------------------------------------------------------------------------------------------------- |
307
+ | `productId` | The Shopify product ID |
308
+ | `product` | The entire product object |
309
+ | `productHandle` | The product's handle |
310
+ | `customerId` | The ID of the customer viewing the product. If no customerId is passed a UUID will be used locally instead. |
291
311
 
292
312
  ### RebuyRecentlyViewedProducts
293
313
 
@@ -295,12 +315,12 @@ Component returns a list of the products that a customer has recently viewed bas
295
315
 
296
316
  **Properties:**
297
317
 
298
- | `customTitleLevel` | Sets the initial title level (e.g., if set to `h2`, other titles in the component will adjust to `h3` accordingly) |
299
- | :---- | :---- |
300
- | `customTitleStyle` | An object of custom styles for the title (e.g., text color, text align) |
301
- | `addToCartCallBack` | A callback function for custom functionality when items are added to the cart |
302
- | `addToCartBtnText` | Custom text for the Add To Cart button |
303
- | `productId` | If you pass in a shopify productId, then that product will be excluded from the list of returned products. Use case would be if on a product page and you do not want the product on that page also displaying in the recently viewed products component. |
318
+ | `customTitleLevel` | Sets the initial title level (e.g., if set to `h2`, other titles in the component will adjust to `h3` accordingly) |
319
+ | :------------------ | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
320
+ | `customTitleStyle` | An object of custom styles for the title (e.g., text color, text align) |
321
+ | `addToCartCallBack` | A callback function for custom functionality when items are added to the cart |
322
+ | `addToCartBtnText` | Custom text for the Add To Cart button |
323
+ | `productId` | If you pass in a shopify productId, then that product will be excluded from the list of returned products. Use case would be if on a product page and you do not want the product on that page also displaying in the recently viewed products component. |
304
324
 
305
325
  ### Using useRebuyWidget in Custom Components
306
326
 
@@ -335,21 +355,21 @@ const MyCustomComponent = () => {
335
355
 
336
356
  **Available Context Properties:**
337
357
 
338
- | Property | Type | Description |
339
- | :------- | :--- | :---------- |
340
- | `products` | `RebuyProduct[]` | Array of recommended products |
341
- | `isHydrogenReact` | `boolean` | Whether the app is using Hydrogen React |
342
- | `metadata` | `RebuyWidgetMetadata` | Widget metadata from Rebuy |
343
- | `product` | `HydrogenProduct \| undefined` | The main product if provided |
344
- | `variant` | `RebuyProductVariant \| undefined` | The selected variant if provided |
345
- | `productId` | `string \| undefined` | The product ID if provided |
346
- | `variantId` | `string \| undefined` | The variant ID if provided |
347
- | `dataSource` | `string` | The Rebuy API endpoint being used |
348
- | `limit` | `number` | Maximum number of products to return |
349
- | `options` | `Record<string, unknown>` | Additional Rebuy API options |
350
- | `key` | `string` | Unique key for the widget instance |
351
- | `cacheKey` | `string \| undefined` | The shop's cache key for Rebuy |
352
- | `apiKey` | `string \| undefined` | The Rebuy API key for the shop |
358
+ | Property | Type | Description |
359
+ | :---------------- | :--------------------------------- | :-------------------------------------- |
360
+ | `products` | `RebuyProduct[]` | Array of recommended products |
361
+ | `isHydrogenReact` | `boolean` | Whether the app is using Hydrogen React |
362
+ | `metadata` | `RebuyWidgetMetadata` | Widget metadata from Rebuy |
363
+ | `product` | `HydrogenProduct \| undefined` | The main product if provided |
364
+ | `variant` | `RebuyProductVariant \| undefined` | The selected variant if provided |
365
+ | `productId` | `string \| undefined` | The product ID if provided |
366
+ | `variantId` | `string \| undefined` | The variant ID if provided |
367
+ | `dataSource` | `string` | The Rebuy API endpoint being used |
368
+ | `limit` | `number` | Maximum number of products to return |
369
+ | `options` | `Record<string, unknown>` | Additional Rebuy API options |
370
+ | `key` | `string` | Unique key for the widget instance |
371
+ | `cacheKey` | `string \| undefined` | The shop's cache key for Rebuy |
372
+ | `apiKey` | `string \| undefined` | The Rebuy API key for the shop |
353
373
 
354
374
  ---
355
375
 
@@ -383,6 +403,7 @@ To replace Hydrogen's native cart drawer with Rebuy's Smart Cart, follow these s
383
403
  In your root layout file (`app/root.tsx`), add the `enableSmartCart` prop to your context provider and include the `RebuySmartCart` component:
384
404
 
385
405
  **For Hydrogen-only Applications:**
406
+
386
407
  ```typescript
387
408
  <RebuyHydrogenContextProvider
388
409
  cart={data.cart}
@@ -396,6 +417,7 @@ In your root layout file (`app/root.tsx`), add the `enableSmartCart` prop to you
396
417
  ```
397
418
 
398
419
  **For Hydrogen React Applications:**
420
+
399
421
  ```typescript
400
422
  <RebuyHydrogenReactContextProvider
401
423
  publicPrimaryDomain="example.com"
@@ -426,6 +448,7 @@ Comment out or remove the native `CartAside` component in your layout file (typi
426
448
  Replace the native cart toggle functionality with Rebuy's Smart Cart:
427
449
 
428
450
  **In your Header component:**
451
+
429
452
  ```typescript
430
453
  import { useSmartCart } from '@rebuy/rebuy-hydrogen';
431
454
 
@@ -454,13 +477,13 @@ After successful add to cart actions, open the Smart Cart:
454
477
  import { useSmartCart } from '@rebuy/rebuy-hydrogen';
455
478
 
456
479
  export function ProductForm() {
457
- const { toggleCart } = useSmartCart();
480
+ const { toggleCart } = useSmartCart();
458
481
 
459
- // After successful add to cart
460
- const handleAddToCart = async () => {
461
- // ... add to cart logic
462
- toggleCart(); // Opens Smart Cart after adding item
463
- };
482
+ // After successful add to cart
483
+ const handleAddToCart = async () => {
484
+ // ... add to cart logic
485
+ toggleCart(); // Opens Smart Cart after adding item
486
+ };
464
487
  }
465
488
  ```
466
489
 
@@ -469,6 +492,7 @@ export function ProductForm() {
469
492
  Here's a complete example of converting a cart badge component:
470
493
 
471
494
  **Before (Hydrogen):**
495
+
472
496
  ```typescript
473
497
  function CartBadge() {
474
498
  const { open } = useAside();
@@ -485,6 +509,7 @@ function CartBadge() {
485
509
  ```
486
510
 
487
511
  **After (Rebuy Smart Cart):**
512
+
488
513
  ```typescript
489
514
  import { useSmartCart } from '@rebuy/rebuy-hydrogen';
490
515
 
package/dist/index.css CHANGED
@@ -11,7 +11,7 @@
11
11
  clip: rect(0, 0, 0, 0);
12
12
  }
13
13
 
14
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/AnnouncementBar/AnnouncementBar.css */
14
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/AnnouncementBar/AnnouncementBar.css */
15
15
  .AnnouncementBar_rebuy-announcement-bar__container {
16
16
  position: relative;
17
17
  background-color: var(--rb-color-banner-background);
@@ -47,7 +47,7 @@
47
47
  overflow-wrap: break-word;
48
48
  }
49
49
 
50
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartItem/CartItem.css */
50
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartItem/CartItem.css */
51
51
  .CartItem_rebuy-cart-item {
52
52
  display: flex;
53
53
  position: relative;
@@ -562,7 +562,7 @@
562
562
  opacity: 0.5;
563
563
  }
564
564
 
565
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/EmptyCart/EmptyCart.css */
565
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/EmptyCart/EmptyCart.css */
566
566
  .EmptyCart_rebuy-empty-cart-message {
567
567
  flex: 0 0 auto;
568
568
  margin: 0;
@@ -583,7 +583,7 @@
583
583
  text-decoration: var(--rb-empty-cart-message-link-text-decoration-hover);
584
584
  }
585
585
 
586
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartItemList/CartItemList.css */
586
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartItemList/CartItemList.css */
587
587
  .CartItemList_rebuy-cart-item-list__container {
588
588
  display: flex;
589
589
  flex-flow: column nowrap;
@@ -605,7 +605,7 @@
605
605
  min-height: var(--rb-cart-item-list-min-height);
606
606
  }
607
607
 
608
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartNoteInput/CartNoteInput.css */
608
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartNoteInput/CartNoteInput.css */
609
609
  .CartNoteInput_rebuy-cart-note-input {
610
610
  display: flex;
611
611
  flex-direction: column;
@@ -815,7 +815,7 @@
815
815
  gap: var(--rb-cart-note-input-gap);
816
816
  }
817
817
 
818
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartSubtotal/CartSubtotal.css */
818
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartSubtotal/CartSubtotal.css */
819
819
  .CartSubtotal_rebuy-cart-subtotal {
820
820
  display: flex;
821
821
  margin: 0;
@@ -931,7 +931,7 @@
931
931
  font-weight: var(--rb-cart-subtotal-discount-summary-item-amount-font-weight);
932
932
  }
933
933
 
934
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartTitleBar/CartTitleBar.css */
934
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CartTitleBar/CartTitleBar.css */
935
935
  .CartTitleBar_rebuy-cart-title-bar {
936
936
  flex-grow: var(--rb-cart-title-bar-flex-grow);
937
937
  margin: 0;
@@ -947,7 +947,7 @@
947
947
  font-weight: var(--rb-cart-title-bar-font-weight);
948
948
  }
949
949
 
950
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CheckoutArea/CheckoutArea.css */
950
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/CheckoutArea/CheckoutArea.css */
951
951
  .CheckoutArea_rebuy-checkout-area {
952
952
  display: flex;
953
953
  flex-flow: column nowrap;
@@ -1138,7 +1138,7 @@
1138
1138
  text-decoration: none;
1139
1139
  }
1140
1140
 
1141
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/components/AddToCartBtn/AddToCartBtn.css */
1141
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/components/AddToCartBtn/AddToCartBtn.css */
1142
1142
  .AddToCartBtn_rebuy-cart-button {
1143
1143
  padding: var(--rb-spacing-unit-2x, 8px) var(--rb-spacing-unit-4x, 16px);
1144
1144
  border-radius: var(--rb-border-radius-button, 4px);
@@ -1190,7 +1190,7 @@
1190
1190
  max-width: 100%;
1191
1191
  }
1192
1192
 
1193
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/components/ProductPrice/ProductPrice.css */
1193
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/components/ProductPrice/ProductPrice.css */
1194
1194
  .ProductPrice_rebuy-product-price {
1195
1195
  display: flex;
1196
1196
  align-items: baseline;
@@ -1212,7 +1212,7 @@
1212
1212
  font-size: var(--rb-font-size-small, 0.875em);
1213
1213
  }
1214
1214
 
1215
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/components/QuantityInput/QuantityInput.css */
1215
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/components/QuantityInput/QuantityInput.css */
1216
1216
  .QuantityInput_rebuy-quantity__container {
1217
1217
  display: flex;
1218
1218
  align-items: center;
@@ -1230,7 +1230,7 @@
1230
1230
  appearance: auto;
1231
1231
  }
1232
1232
 
1233
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/components/VariantSelect/VariantSelect.css */
1233
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/components/VariantSelect/VariantSelect.css */
1234
1234
  .VariantSelect_rebuy-variant__container {
1235
1235
  position: relative;
1236
1236
  }
@@ -1296,7 +1296,7 @@
1296
1296
  border-color: #999;
1297
1297
  }
1298
1298
 
1299
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/components/Title/Title.css */
1299
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/components/Title/Title.css */
1300
1300
  .Title_rebuy-title {
1301
1301
  font-family: var(--rb-font-family-base);
1302
1302
  font-weight: var(--rb-font-weight-bold);
@@ -1306,7 +1306,7 @@
1306
1306
  padding: 0;
1307
1307
  }
1308
1308
 
1309
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/components/ProductCard/ProductCard.css */
1309
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/components/ProductCard/ProductCard.css */
1310
1310
  :root {
1311
1311
  --rb-product-card-gap: var(--rb-spacing-unit-2x, 8px);
1312
1312
  --rb-product-card-padding: var(--rb-spacing-unit-3x, 12px);
@@ -1546,7 +1546,7 @@
1546
1546
  margin-top: var(--rb-spacing-unit-1x, 0.5em);
1547
1547
  }
1548
1548
 
1549
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/components/ProductCarousel/ProductCarousel.css */
1549
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/components/ProductCarousel/ProductCarousel.css */
1550
1550
  .ProductCarousel_rebuy-carousel {
1551
1551
  position: relative;
1552
1552
  overflow: hidden;
@@ -1629,7 +1629,7 @@
1629
1629
  flex: 0 0 calc(16.66% - 1.25em);
1630
1630
  }
1631
1631
 
1632
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/components/Timer/Timer.css */
1632
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/components/Timer/Timer.css */
1633
1633
  .Timer_rebuy-timer__container {
1634
1634
  margin: 0 auto;
1635
1635
  padding: 10px;
@@ -1690,7 +1690,7 @@
1690
1690
  }
1691
1691
  }
1692
1692
 
1693
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/widgets/RebuyWidget/RebuyWidget.css */
1693
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/widgets/RebuyWidget/RebuyWidget.css */
1694
1694
  .RebuyWidget_rebuy-widget__container {
1695
1695
  width: 100%;
1696
1696
  padding: 0;
@@ -1793,7 +1793,7 @@
1793
1793
  align-items: flex-start;
1794
1794
  }
1795
1795
 
1796
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/DiscountCodeInput/DiscountCodeInput.css */
1796
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/DiscountCodeInput/DiscountCodeInput.css */
1797
1797
  .DiscountCodeInput_rebuy-discount-code-input {
1798
1798
  display: flex;
1799
1799
  flex-flow: row wrap;
@@ -2007,7 +2007,7 @@
2007
2007
  font-weight: var(--rb-discount-code-input-total-discount-amount-font-weight);
2008
2008
  }
2009
2009
 
2010
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/LoginButton/LoginButton.css */
2010
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/LoginButton/LoginButton.css */
2011
2011
  .LoginButton_rebuy-login-button {
2012
2012
  appearance: none;
2013
2013
  box-sizing: border-box;
@@ -2049,7 +2049,7 @@
2049
2049
  color: var(--rb-login-button-text-color-active);
2050
2050
  }
2051
2051
 
2052
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/TieredProgressBar/TieredProgressBar.css */
2052
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/TieredProgressBar/TieredProgressBar.css */
2053
2053
  .TieredProgressBar_rebuy-tiered-progress-bar {
2054
2054
  display: flex;
2055
2055
  flex-direction: column;
@@ -2324,7 +2324,7 @@
2324
2324
  border-color: var(--rb-tiered-progress-bar-gift-item-select-border-color-hover);
2325
2325
  }
2326
2326
 
2327
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/_Layouts/LayoutStyles.css */
2327
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/_Layouts/LayoutStyles.css */
2328
2328
  .LayoutStyles_rebuy-smart-cart-layout__anchor-goal-box {
2329
2329
  display: flex;
2330
2330
  flex-flow: column nowrap;
@@ -2459,7 +2459,7 @@ body.rebuy-smart-cart-open {
2459
2459
  box-sizing: border-box !important;
2460
2460
  }
2461
2461
 
2462
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/smart-cart/components/SmartCartContainer/SmartCartContainer.css */
2462
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/smart-cart/components/SmartCartContainer/SmartCartContainer.css */
2463
2463
  .SmartCartContainer_rebuy-smart-cart,
2464
2464
  .SmartCartContainer_rebuy-smart-cart *,
2465
2465
  .SmartCartContainer_rebuy-smart-cart *::before,
@@ -2613,7 +2613,7 @@ body.rebuy-smart-cart-open {
2613
2613
  }
2614
2614
  }
2615
2615
 
2616
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/widgets/RebuyCompleteTheLook/RebuyCompleteTheLook.css */
2616
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/widgets/RebuyCompleteTheLook/RebuyCompleteTheLook.css */
2617
2617
  .RebuyCompleteTheLook_container {
2618
2618
  padding: 32px 1em;
2619
2619
  margin: 1em 0;
@@ -2640,7 +2640,7 @@ body.rebuy-smart-cart-open {
2640
2640
  width: 100%;
2641
2641
  }
2642
2642
 
2643
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/widgets/RebuyDynamicBundleProducts/RebuyDynamicBundleProducts.css */
2643
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/widgets/RebuyDynamicBundleProducts/RebuyDynamicBundleProducts.css */
2644
2644
  .RebuyDynamicBundleProducts_container {
2645
2645
  padding: 32px 16px;
2646
2646
  background-color: #f0f4f8;
@@ -2729,7 +2729,7 @@ body.rebuy-smart-cart-open {
2729
2729
  opacity: 0.5;
2730
2730
  }
2731
2731
 
2732
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/widgets/RebuyProductAddOns/RebuyProductAddOns.css */
2732
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/widgets/RebuyProductAddOns/RebuyProductAddOns.css */
2733
2733
  .RebuyProductAddOns_container {
2734
2734
  display: flex;
2735
2735
  flex-direction: column;
@@ -2839,7 +2839,7 @@ body.rebuy-smart-cart-open {
2839
2839
  justify-content: center;
2840
2840
  }
2841
2841
 
2842
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/widgets/RebuyProductRecommendations/RebuyProductRecommendations.css */
2842
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/widgets/RebuyProductRecommendations/RebuyProductRecommendations.css */
2843
2843
  .RebuyProductRecommendations_container {
2844
2844
  padding: 32px 16px;
2845
2845
  background-color: #f0f4f8;
@@ -2857,7 +2857,7 @@ body.rebuy-smart-cart-open {
2857
2857
  list-style: none;
2858
2858
  }
2859
2859
 
2860
- /* ../../../../../tmp/tmp-165-PG4yN66KHu8v/opt/atlassian/pipelines/agent/build/src/widgets/RebuyRecentlyViewedProducts/RebuyRecentlyViewedProducts.css */
2860
+ /* ../../../../../tmp/tmp-165-6JKzb4aIuevv/opt/atlassian/pipelines/agent/build/src/widgets/RebuyRecentlyViewedProducts/RebuyRecentlyViewedProducts.css */
2861
2861
  .RebuyRecentlyViewedProducts_rebuy-recently-viewed-products-container {
2862
2862
  padding: 32px 16px;
2863
2863
  background-color: #f0f4f8;