ng-miam 8.6.4 → 8.7.0

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 (58) hide show
  1. package/bundles/ng-miam.umd.js +828 -398
  2. package/bundles/ng-miam.umd.js.map +1 -1
  3. package/bundles/ng-miam.umd.min.js +1 -1
  4. package/bundles/ng-miam.umd.min.js.map +1 -1
  5. package/esm2015/lib/_components/components.module.js +2 -2
  6. package/esm2015/lib/_components/store-locator/store-locator.component.js +3 -3
  7. package/esm2015/lib/_services/analytics.service.js +4 -14
  8. package/esm2015/lib/_services/basket-transfer.service.js +10 -5
  9. package/esm2015/lib/_services/context.service.js +12 -5
  10. package/esm2015/lib/_services/interceptor.service.js +2 -2
  11. package/esm2015/lib/_services/point-of-sales.service.js +4 -2
  12. package/esm2015/lib/_services/recipes.service.js +2 -2
  13. package/esm2015/lib/_services/store-locator.service.js +39 -8
  14. package/esm2015/lib/_types/builded/miam-interface.js +1 -1
  15. package/esm2015/lib/_types/event-trace.js +1 -1
  16. package/esm2015/lib/_web-components/basket-preview/basket-preview-block/basket-preview-block.component.js +8 -3
  17. package/esm2015/lib/_web-components/index.js +3 -1
  18. package/esm2015/lib/_web-components/no-supplier-onboarding/no-supplier-onboarding.component.js +268 -0
  19. package/esm2015/lib/_web-components/recipe-details/recipe-details.component.js +15 -5
  20. package/esm2015/lib/_web-components/recipe-details/store-locator-link/store-locator-link.component.js +2 -2
  21. package/esm2015/lib/_web-components/recipe-modal/recipe-modal.component.js +16 -10
  22. package/esm2015/lib/_web-components/recipe-pricing/recipe-pricing.component.js +3 -2
  23. package/esm2015/lib/_web-components/warning-store-locator/warning-store-locator.component.js +60 -0
  24. package/esm2015/lib/_web-components/web-components.module.js +15 -5
  25. package/esm2015/lib/ng-miam.module.js +15 -39
  26. package/fesm2015/ng-miam.js +449 -92
  27. package/fesm2015/ng-miam.js.map +1 -1
  28. package/lib/_components/components.module.d.ts.map +1 -1
  29. package/lib/_services/analytics.service.d.ts +2 -2
  30. package/lib/_services/analytics.service.d.ts.map +1 -1
  31. package/lib/_services/basket-transfer.service.d.ts.map +1 -1
  32. package/lib/_services/context.service.d.ts +1 -0
  33. package/lib/_services/context.service.d.ts.map +1 -1
  34. package/lib/_services/point-of-sales.service.d.ts +1 -2
  35. package/lib/_services/point-of-sales.service.d.ts.map +1 -1
  36. package/lib/_services/store-locator.service.d.ts +13 -2
  37. package/lib/_services/store-locator.service.d.ts.map +1 -1
  38. package/lib/_types/builded/miam-interface.d.ts +12 -1
  39. package/lib/_types/builded/miam-interface.d.ts.map +1 -1
  40. package/lib/_types/event-trace.d.ts +1 -0
  41. package/lib/_types/event-trace.d.ts.map +1 -1
  42. package/lib/_web-components/basket-preview/basket-preview-block/basket-preview-block.component.d.ts +2 -1
  43. package/lib/_web-components/basket-preview/basket-preview-block/basket-preview-block.component.d.ts.map +1 -1
  44. package/lib/_web-components/index.d.ts +2 -0
  45. package/lib/_web-components/index.d.ts.map +1 -1
  46. package/lib/_web-components/no-supplier-onboarding/no-supplier-onboarding.component.d.ts +20 -0
  47. package/lib/_web-components/no-supplier-onboarding/no-supplier-onboarding.component.d.ts.map +1 -0
  48. package/lib/_web-components/recipe-details/recipe-details.component.d.ts +1 -0
  49. package/lib/_web-components/recipe-details/recipe-details.component.d.ts.map +1 -1
  50. package/lib/_web-components/recipe-modal/recipe-modal.component.d.ts.map +1 -1
  51. package/lib/_web-components/recipe-pricing/recipe-pricing.component.d.ts.map +1 -1
  52. package/lib/_web-components/warning-store-locator/warning-store-locator.component.d.ts +16 -0
  53. package/lib/_web-components/warning-store-locator/warning-store-locator.component.d.ts.map +1 -0
  54. package/lib/_web-components/web-components.module.d.ts +20 -16
  55. package/lib/_web-components/web-components.module.d.ts.map +1 -1
  56. package/lib/ng-miam.module.d.ts +1 -4
  57. package/lib/ng-miam.module.d.ts.map +1 -1
  58. package/package.json +1 -1
@@ -2021,7 +2021,6 @@
2021
2021
  _this.type = 'point-of-sales';
2022
2022
  _this.pos$ = new rxjs.BehaviorSubject(undefined);
2023
2023
  _this.basketLoadedForNewPos$ = new rxjs.Subject();
2024
- _this.openStoreLocators$ = new rxjs.Subject();
2025
2024
  _this.posIsLoading$ = new rxjs.BehaviorSubject(false);
2026
2025
  _this.register();
2027
2026
  _this.navigateToCachedRecipeOnPosChange();
@@ -2113,6 +2112,9 @@
2113
2112
  if (selectedPosId) {
2114
2113
  this.loadPos(selectedPosId).pipe(operators.take(1)).subscribe();
2115
2114
  }
2115
+ else {
2116
+ this.loadPosWithExtId(null);
2117
+ }
2116
2118
  };
2117
2119
  PointOfSalesService.prototype.getByAddress = function (address, radius, suppliers, includeSupplier) {
2118
2120
  if (includeSupplier === void 0) { includeSupplier = true; }
@@ -3012,12 +3014,13 @@
3012
3014
  this.EVENT_BASKET_TRANSFER = 'basket.transfer';
3013
3015
  this.EVENT_MEALS_PLANNER_CONFIRMED = 'planner.confirmed';
3014
3016
  this.EVENT_POS_SELECTED = 'pos.selected';
3017
+ this.EVENT_SEARCH_STORE = 'search.store';
3015
3018
  this.ready$ = new rxjs.BehaviorSubject(false);
3016
3019
  this.eventEmitter = new i0.EventEmitter();
3017
3020
  }
3018
- AnalyticsService.prototype.init = function (domain, optimizeKey) {
3021
+ // DEPRECATED: optimizeKey parameter to be removed with next major version
3022
+ AnalyticsService.prototype.init = function (domain, _optimizeKey) {
3019
3023
  this._injectPlausible(domain);
3020
- this._injectOptimize(optimizeKey);
3021
3024
  };
3022
3025
  /**
3023
3026
  * Set the identifier of the ABTest experience if one is running
@@ -3077,17 +3080,6 @@
3077
3080
  };
3078
3081
  document.head.appendChild(script);
3079
3082
  };
3080
- AnalyticsService.prototype._injectOptimize = function (key) {
3081
- if (!key || key.length < 0) {
3082
- // eslint-disable-next-line no-console
3083
- console.info("[Miam] Google Optimize not initialized (no key) " + JSON.stringify(key));
3084
- return;
3085
- }
3086
- var script = document.createElement('script');
3087
- script.src = "https://www.googleoptimize.com/optimize.js?id=" + key;
3088
- script.onload = function () { return console.debug("[Miam] Optimize ready for key: " + JSON.stringify(key)); };
3089
- document.head.appendChild(script);
3090
- };
3091
3083
  /** ************************************************* SEND EVENT FOR BASKET ACTIONS ************************************************* **/
3092
3084
  AnalyticsService.prototype.sendRemoveRecipesEvents = function (actions) {
3093
3085
  var _this = this;
@@ -3669,27 +3661,59 @@
3669
3661
  this.storeLocatorOpened$ = new rxjs.BehaviorSubject(false);
3670
3662
  this.newStoreSelected$ = new rxjs.Subject();
3671
3663
  this.closeModalOnSelected = false;
3664
+ this.showStoreLocatorWarning = new rxjs.BehaviorSubject(false);
3665
+ this.showNoSupplierOnboarding = new rxjs.BehaviorSubject(false);
3672
3666
  }
3673
3667
  StoreLocatorService.prototype.changePosAndSupplier = function (e, eventTrace) {
3674
- var _this = this;
3675
3668
  var _a, _b;
3676
3669
  console.debug('[Miam] posIdChange received from store locator', e.detail.posId);
3677
3670
  if (((_b = (_a = this.posService.pos$) === null || _a === void 0 ? void 0 : _a.value) === null || _b === void 0 ? void 0 : _b.id) === e.detail.posId) {
3678
- this.storeLocatorOpened$.next(false);
3671
+ this.closeStoreLocator();
3679
3672
  return;
3680
3673
  }
3681
- this.subscriptions.push(this.posService.loadPos(e.detail.posId).pipe(operators.skipWhile(function (pos) { return !pos || pos.id !== e.detail.posId; }), operators.switchMap(function (pos) {
3682
- _this.analyticsService.sendEventWhenReady(_this.analyticsService.EVENT_POS_SELECTED, eventTrace.originPath, { pos_name: pos.attributes.name, pos_id: pos.id });
3674
+ this.selectedPosId = e.detail.posId;
3675
+ this.storeLocatorEventTrace = eventTrace;
3676
+ // The following check is supposed to be temporary TODO remove
3677
+ if (/Mobi|Android|iPhone/i.test(navigator.userAgent) && e.detail.supplierId === '7') {
3678
+ // Current device is a mobile device and the chosen supplier has not deactivated deep links
3679
+ this.showStoreLocatorWarning.next(true);
3680
+ }
3681
+ else {
3682
+ this.changePos();
3683
+ }
3684
+ };
3685
+ StoreLocatorService.prototype.changePos = function () {
3686
+ var _this = this;
3687
+ this.subscriptions.push(this.posService.loadPos(this.selectedPosId).pipe(operators.skipWhile(function (pos) { return !pos || pos.id !== _this.selectedPosId; }), operators.switchMap(function (pos) {
3688
+ _this.analyticsService.sendEventWhenReady(_this.analyticsService.EVENT_POS_SELECTED, _this.storeLocatorEventTrace.originPath, { pos_name: pos.attributes.name, pos_id: pos.id });
3683
3689
  localStorage.setItem('_miam/noSupplier/posId', pos.id);
3684
3690
  return _this.posService.basketLoadedForNewPos();
3685
3691
  }), operators.map(function () {
3686
3692
  _this.newStoreSelected$.next();
3687
- _this.storeLocatorOpened$.next(false);
3693
+ _this.closeStoreLocator();
3688
3694
  })).subscribe());
3689
3695
  };
3696
+ StoreLocatorService.prototype.openStoreLocator = function (skipOnboarding) {
3697
+ if (skipOnboarding === void 0) { skipOnboarding = false; }
3698
+ if (!localStorage.getItem('_miam/noSupplier/posId') && !skipOnboarding) {
3699
+ this.showNoSupplierOnboarding.next(true);
3700
+ }
3701
+ this.storeLocatorOpened$.next(true);
3702
+ };
3703
+ StoreLocatorService.prototype.closeStoreLocator = function () {
3704
+ this.storeLocatorOpened$.next(false);
3705
+ };
3690
3706
  StoreLocatorService.prototype.showChange = function (e) {
3691
- console.debug('[Miam] showChange received from store locator', e.detail.show);
3692
- this.storeLocatorOpened$.next(e.detail.show);
3707
+ if (e.detail.show) {
3708
+ this.openStoreLocator();
3709
+ }
3710
+ else {
3711
+ this.closeStoreLocator();
3712
+ }
3713
+ };
3714
+ StoreLocatorService.prototype.searchChange = function (e, eventTrace) {
3715
+ console.debug('[Miam] searchChange received from store locator', e.detail.searchTerm);
3716
+ this.analyticsService.sendEventWhenReady(this.analyticsService.EVENT_SEARCH_STORE, eventTrace.originPath, { search_term: e.detail.searchTerm, stores_found_count: e.detail.storesFoundCount });
3693
3717
  };
3694
3718
  StoreLocatorService.prototype.unsubscribe = function () {
3695
3719
  this.subscriptions.forEach(function (sub) { return sub.unsubscribe(); });
@@ -3965,7 +3989,7 @@
3965
3989
  };
3966
3990
  RecipesService.prototype.openStoreLocator = function () {
3967
3991
  this.storeLocatorService.closeModalOnSelected = true;
3968
- this.storeLocatorService.storeLocatorOpened$.next(true);
3992
+ this.storeLocatorService.openStoreLocator(true);
3969
3993
  this.displayedRecipe$.next({
3970
3994
  previewAllowed: false,
3971
3995
  recipe: null,
@@ -5602,10 +5626,12 @@
5602
5626
  _this.onBasketAndPosSendEvent(_this.analyticsService.EVENT_PAYMENT_STARTED, totalPrice);
5603
5627
  },
5604
5628
  analytics: {
5605
- init: function (domain, optimizeKey) {
5606
- _this.analyticsService.init(domain, optimizeKey);
5629
+ // DEPRECATED: optimizeKey parameter to be removed with next major version
5630
+ init: function (domain, _optimizeKey) {
5631
+ _this.analyticsService.init(domain);
5607
5632
  },
5608
- eventSent$: this.analyticsService.eventEmitter
5633
+ eventSent$: this.analyticsService.eventEmitter,
5634
+ setAbTestKey: function (key) { return _this.analyticsService.setAbTestKey(key); }
5609
5635
  },
5610
5636
  basket: {
5611
5637
  basketIsReady$: this.basketsService.basketStats$.pipe(operators.skipWhile(function (stats) { return !stats; }), operators.take(1), operators.map(function () { return true; })),
@@ -5621,6 +5647,11 @@
5621
5647
  updatePricebook: function (pricebookName) { return _this.basketsService.updatePricebook(pricebookName); },
5622
5648
  recipeCount: function () { return _this.basketsService.waitForBasket.pipe(operators.switchMap(function () { return _this.basketsService.basketStats$; }), operators.skipWhile(function (bs) { return !bs; }), operators.map(function (bs) { return bs.recipesCount; }), operators.distinctUntilChanged()); },
5623
5649
  openPreview: function () { return _this.recipesService.openBasket({ originPath: '', props: null }); },
5650
+ overrideTransferUrl: function (url) {
5651
+ if (_this.noSupplier && url) {
5652
+ _this.transferUrlBaseOverride = url;
5653
+ }
5654
+ }
5624
5655
  },
5625
5656
  basketSync: {
5626
5657
  definePushProductsToBasket: function (pushProductsToBasket) {
@@ -5914,7 +5945,7 @@
5914
5945
  ContextService.prototype.loadStoreLocatorPackage = function () {
5915
5946
  var storeLocatorScript = document.createElement('script');
5916
5947
  storeLocatorScript.setAttribute('type', 'module');
5917
- storeLocatorScript.setAttribute('src', 'https://unpkg.com/mealz-components@0.2/dist/store-locator/store-locator.min.js');
5948
+ storeLocatorScript.setAttribute('src', 'https://unpkg.com/mealz-components@0.5/dist/store-locator/store-locator.min.js');
5918
5949
  document.head.appendChild(storeLocatorScript);
5919
5950
  };
5920
5951
  ContextService.prototype.generateAuthlessIdIfNecessary = function () {
@@ -7066,7 +7097,7 @@
7066
7097
  i18n_0 = MSG_EXTERNAL_292185335888732433$$LIB__COMPONENTS_ACTIONS_POPIN_ACTIONS_POPIN_COMPONENT_TS_1;
7067
7098
  }
7068
7099
  else {
7069
- i18n_0 = $localize(templateObject_1$R || (templateObject_1$R = __makeTemplateObject([":\u241F5f51b68aa17dd3a5265302cfb7674b502820d761\u241F292185335888732433:\u00C9diter"], [":\u241F5f51b68aa17dd3a5265302cfb7674b502820d761\u241F292185335888732433:\u00C9diter"])));
7100
+ i18n_0 = $localize(templateObject_1$T || (templateObject_1$T = __makeTemplateObject([":\u241F5f51b68aa17dd3a5265302cfb7674b502820d761\u241F292185335888732433:\u00C9diter"], [":\u241F5f51b68aa17dd3a5265302cfb7674b502820d761\u241F292185335888732433:\u00C9diter"])));
7070
7101
  }
7071
7102
  var i18n_2;
7072
7103
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -7074,7 +7105,7 @@
7074
7105
  i18n_2 = MSG_EXTERNAL_180879386399550529$$LIB__COMPONENTS_ACTIONS_POPIN_ACTIONS_POPIN_COMPONENT_TS_3;
7075
7106
  }
7076
7107
  else {
7077
- i18n_2 = $localize(templateObject_2$H || (templateObject_2$H = __makeTemplateObject([":\u241Fe32da846622c2c2eb7a59b745110dbbdb05407b7\u241F180879386399550529:Supprimer"], [":\u241Fe32da846622c2c2eb7a59b745110dbbdb05407b7\u241F180879386399550529:Supprimer"])));
7108
+ i18n_2 = $localize(templateObject_2$J || (templateObject_2$J = __makeTemplateObject([":\u241Fe32da846622c2c2eb7a59b745110dbbdb05407b7\u241F180879386399550529:Supprimer"], [":\u241Fe32da846622c2c2eb7a59b745110dbbdb05407b7\u241F180879386399550529:Supprimer"])));
7078
7109
  }
7079
7110
  return [[1, "miam-actions-popin"], [1, "miam-actions-popin__actions"], [1, "miam-actions-popin__action", 3, "click"], ["primaryColor", "var(--m-color-primary)", 3, "iconName"], i18n_0, [3, "iconName"], i18n_2];
7080
7111
  }, template: function ActionsPopinComponent_Template(rf, ctx) {
@@ -7124,7 +7155,7 @@
7124
7155
  args: ['document:click', ['$event']]
7125
7156
  }] });
7126
7157
  })();
7127
- var templateObject_1$R, templateObject_2$H;
7158
+ var templateObject_1$T, templateObject_2$J;
7128
7159
 
7129
7160
  function AddonLinkComponent_span_2_Template(rf, ctx) {
7130
7161
  if (rf & 1) {
@@ -7196,7 +7227,7 @@
7196
7227
  i18n_0 = MSG_EXTERNAL_346178670015862382$$LIB__COMPONENTS_ADDON_LINK_ADDON_LINK_COMPONENT_TS__1;
7197
7228
  }
7198
7229
  else {
7199
- i18n_0 = $localize(templateObject_1$Q || (templateObject_1$Q = __makeTemplateObject([":\u241F592a6ddb645d9971d03862cb6b8b323a3d9a0be2\u241F346178670015862382:Cette recette vous est propos\u00E9e par notre partenaire"], [":\u241F592a6ddb645d9971d03862cb6b8b323a3d9a0be2\u241F346178670015862382:Cette recette vous est propos\u00E9e par notre partenaire"])));
7230
+ i18n_0 = $localize(templateObject_1$S || (templateObject_1$S = __makeTemplateObject([":\u241F592a6ddb645d9971d03862cb6b8b323a3d9a0be2\u241F346178670015862382:Cette recette vous est propos\u00E9e par notre partenaire"], [":\u241F592a6ddb645d9971d03862cb6b8b323a3d9a0be2\u241F346178670015862382:Cette recette vous est propos\u00E9e par notre partenaire"])));
7200
7231
  }
7201
7232
  var i18n_2;
7202
7233
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -7204,7 +7235,7 @@
7204
7235
  i18n_2 = MSG_EXTERNAL_6125042438179034490$$LIB__COMPONENTS_ADDON_LINK_ADDON_LINK_COMPONENT_TS__3;
7205
7236
  }
7206
7237
  else {
7207
- i18n_2 = $localize(templateObject_2$G || (templateObject_2$G = __makeTemplateObject([":\u241F21743cbace12f161ebbf8c79731b476336c1fe7a\u241F6125042438179034490: En savoir plus "], [":\u241F21743cbace12f161ebbf8c79731b476336c1fe7a\u241F6125042438179034490: En savoir plus "])));
7238
+ i18n_2 = $localize(templateObject_2$I || (templateObject_2$I = __makeTemplateObject([":\u241F21743cbace12f161ebbf8c79731b476336c1fe7a\u241F6125042438179034490: En savoir plus "], [":\u241F21743cbace12f161ebbf8c79731b476336c1fe7a\u241F6125042438179034490: En savoir plus "])));
7208
7239
  }
7209
7240
  return [[1, "miam-addon-link"], [1, "miam-addon-link__info"], [4, "ngIf", "ngIfElse"], ["sponsorsedLink", ""], ["class", "miam-addon-link__link", 3, "click", 4, "ngIf"], ["class", "miam-addon-link__logo", 4, "ngIf"], i18n_0, [1, "miam-addon-link__sponsor-name"], [1, "miam-addon-link__link", 3, "click"], i18n_2, [1, "miam-addon-link__logo"], [3, "src", "alt"]];
7210
7241
  }, template: function AddonLinkComponent_Template(rf, ctx) {
@@ -7246,7 +7277,7 @@
7246
7277
  type: i0.Output
7247
7278
  }] });
7248
7279
  })();
7249
- var templateObject_1$Q, templateObject_2$G;
7280
+ var templateObject_1$S, templateObject_2$I;
7250
7281
 
7251
7282
  var CardCreateRecipeComponent = /** @class */ (function () {
7252
7283
  function CardCreateRecipeComponent() {
@@ -7263,7 +7294,7 @@
7263
7294
  i18n_0 = MSG_EXTERNAL_632875815727209694$$LIB__COMPONENTS_CARD_CREATE_RECIPE_CARD_CREATE_RECIPE_COMPONENT_TS_1;
7264
7295
  }
7265
7296
  else {
7266
- i18n_0 = $localize(templateObject_1$P || (templateObject_1$P = __makeTemplateObject([":\u241Fda95ac9568ebaa0d417c7960d25b42ca166467b2\u241F632875815727209694:Nouvelle recette"], [":\u241Fda95ac9568ebaa0d417c7960d25b42ca166467b2\u241F632875815727209694:Nouvelle recette"])));
7297
+ i18n_0 = $localize(templateObject_1$R || (templateObject_1$R = __makeTemplateObject([":\u241Fda95ac9568ebaa0d417c7960d25b42ca166467b2\u241F632875815727209694:Nouvelle recette"], [":\u241Fda95ac9568ebaa0d417c7960d25b42ca166467b2\u241F632875815727209694:Nouvelle recette"])));
7267
7298
  }
7268
7299
  return [[1, "card-create-recipe"], [1, "card-create-recipe__icon"], ["primaryColor", "var(--m-color-primary)", 3, "width", "height", "iconName"], [1, "card-create-recipe__button", "m-button-primary", 3, "click"], i18n_0, ["primaryColor", "var(--m-color-white)", 3, "width", "height", "iconName"]];
7269
7300
  }, template: function CardCreateRecipeComponent_Template(rf, ctx) {
@@ -7302,7 +7333,7 @@
7302
7333
  type: i0.Output
7303
7334
  }] });
7304
7335
  })();
7305
- var templateObject_1$P;
7336
+ var templateObject_1$R;
7306
7337
 
7307
7338
  var CORSOverlayComponent = /** @class */ (function () {
7308
7339
  function CORSOverlayComponent() {
@@ -8100,7 +8131,7 @@
8100
8131
  i18n_2 = MSG_EXTERNAL_4137288559015719180$$LIB__COMPONENTS_DRAG_DROP_INPUT_DRAG_DROP_INPUT_COMPONENT_TS__3;
8101
8132
  }
8102
8133
  else {
8103
- i18n_2 = $localize(templateObject_1$O || (templateObject_1$O = __makeTemplateObject([":\u241F16215e9534430da4b0c376e733eb20a53bd56326\u241F4137288559015719180: Si vous ne changez pas la photo, celle par d\u00E9faut sera appliqu\u00E9e "], [":\u241F16215e9534430da4b0c376e733eb20a53bd56326\u241F4137288559015719180: Si vous ne changez pas la photo, celle par d\u00E9faut sera appliqu\u00E9e "])));
8134
+ i18n_2 = $localize(templateObject_1$Q || (templateObject_1$Q = __makeTemplateObject([":\u241F16215e9534430da4b0c376e733eb20a53bd56326\u241F4137288559015719180: Si vous ne changez pas la photo, celle par d\u00E9faut sera appliqu\u00E9e "], [":\u241F16215e9534430da4b0c376e733eb20a53bd56326\u241F4137288559015719180: Si vous ne changez pas la photo, celle par d\u00E9faut sera appliqu\u00E9e "])));
8104
8135
  }
8105
8136
  return [[1, "miam-uploader", 3, "ngClass"], ["multiple", "multiple", "type", "file", 3, "change", 4, "ngIf", "ngIfElse"], ["photoInput", ""], [1, "m-button-secondary", 3, "click"], [4, "ngTemplateOutlet"], ["primaryColor", "var(--m-color-white)", 3, "iconName"], ["class", "miam-uploader__default__photo", 3, "click", 4, "ngIf"], [1, "miam-uploader__drop__overlay", 3, "dragover", "dragleave", "drop", "click"], ["multiple", "multiple", "type", "file", 3, "change"], ["fileInput", ""], ["accept", "image/jpeg, image/png, image/webp", "type", "file", 3, "change", 4, "ngIf"], [3, "src"], ["accept", "image/jpeg, image/png, image/webp", "type", "file", 3, "change"], [1, "miam-uploader__default__photo", 3, "click"], i18n_2];
8106
8137
  }, template: function DragDropInputComponent_Template(rf, ctx) {
@@ -8166,7 +8197,7 @@
8166
8197
  args: ['buttonText', { static: false }]
8167
8198
  }] });
8168
8199
  })();
8169
- var templateObject_1$O;
8200
+ var templateObject_1$Q;
8170
8201
 
8171
8202
  function GuestsDropdownComponent_div_7_div_2_Template(rf, ctx) {
8172
8203
  if (rf & 1) {
@@ -8483,10 +8514,15 @@
8483
8514
  this.subscriptions.push(this.posService.waitForPos.pipe(operators.take(1), operators.switchMap(function (pos) {
8484
8515
  var startTransferUrl = environment$1.miamAPI + "/api/v1/baskets/start_transfer?point_of_sale_id=" + pos.id;
8485
8516
  return _this.http.patch(startTransferUrl, {});
8486
- }), operators.switchMap(function (transferResponse) { return _this.basketsService.refreshCurrentBasket().pipe(operators.skipWhile(function (basket) { return !basket; }), operators.take(1), operators.switchMap(function (basket) {
8487
- _this.analyticsService.sendEventWhenReady(_this.analyticsService.EVENT_BASKET_TRANSFER, null, _this.eventProps(basket));
8488
- return rxjs.of(transferResponse);
8489
- })); }), operators.switchMap(function (transferResponse) {
8517
+ }), operators.switchMap(function (transferResponse) {
8518
+ var _b = __read(transferResponse.transfer_url.split('?'), 2), baseUrl = _b[0], queryParams = _b[1];
8519
+ transferResponse.transfer_url =
8520
+ (_this.contextService.transferUrlBaseOverride || baseUrl) + (queryParams ? ('?' + queryParams) : '');
8521
+ return _this.basketsService.refreshCurrentBasket().pipe(operators.skipWhile(function (basket) { return !basket; }), operators.take(1), operators.switchMap(function (basket) {
8522
+ _this.analyticsService.sendEventWhenReady(_this.analyticsService.EVENT_BASKET_TRANSFER, null, _this.eventProps(basket));
8523
+ return rxjs.of(transferResponse);
8524
+ }));
8525
+ }), operators.switchMap(function (transferResponse) {
8490
8526
  sessionStorage.setItem('_miam/transferUrl', transferResponse.transfer_url);
8491
8527
  _this.navigateTotranferUrl();
8492
8528
  _this.recipesService.hide();
@@ -8789,7 +8825,7 @@
8789
8825
  MiamInterceptor.prototype.setMiamHeaders = function (request) {
8790
8826
  var headersToAdd = {
8791
8827
  'miam-origin': this.context.origin.value,
8792
- 'miam-front-version': '8.6.4',
8828
+ 'miam-front-version': '8.7.0',
8793
8829
  'miam-front-type': 'web',
8794
8830
  'miam-api-version': '4.7.0'
8795
8831
  };
@@ -9836,7 +9872,7 @@
9836
9872
  i18n_0 = MSG_EXTERNAL_3775647930168967606$$LIB__COMPONENTS_MODAL_MODAL_COMPONENT_TS___1;
9837
9873
  }
9838
9874
  else {
9839
- i18n_0 = $localize(templateObject_1$N || (templateObject_1$N = __makeTemplateObject([":\u241F77ab0a692c428421d89ca45e8f244219959d2913\u241F3775647930168967606:Utilis\u00E9 dans "], [":\u241F77ab0a692c428421d89ca45e8f244219959d2913\u241F3775647930168967606:Utilis\u00E9 dans "])));
9875
+ i18n_0 = $localize(templateObject_1$P || (templateObject_1$P = __makeTemplateObject([":\u241F77ab0a692c428421d89ca45e8f244219959d2913\u241F3775647930168967606:Utilis\u00E9 dans "], [":\u241F77ab0a692c428421d89ca45e8f244219959d2913\u241F3775647930168967606:Utilis\u00E9 dans "])));
9840
9876
  }
9841
9877
  var i18n_2;
9842
9878
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -9844,7 +9880,7 @@
9844
9880
  i18n_2 = MSG_EXTERNAL_8253051398336962047$$LIB__COMPONENTS_MODAL_MODAL_COMPONENT_TS___3;
9845
9881
  }
9846
9882
  else {
9847
- i18n_2 = $localize(templateObject_2$F || (templateObject_2$F = __makeTemplateObject([":\u241Ff0ee2f84e20252199737bc9757b04e75979cb9fe\u241F8253051398336962047: repas"], [":\u241Ff0ee2f84e20252199737bc9757b04e75979cb9fe\u241F8253051398336962047: repas"])));
9883
+ i18n_2 = $localize(templateObject_2$H || (templateObject_2$H = __makeTemplateObject([":\u241Ff0ee2f84e20252199737bc9757b04e75979cb9fe\u241F8253051398336962047: repas"], [":\u241Ff0ee2f84e20252199737bc9757b04e75979cb9fe\u241F8253051398336962047: repas"])));
9848
9884
  }
9849
9885
  var i18n_4;
9850
9886
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -9852,7 +9888,7 @@
9852
9888
  i18n_4 = MSG_EXTERNAL_4122997114884311871$$LIB__COMPONENTS_MODAL_MODAL_COMPONENT_TS____5;
9853
9889
  }
9854
9890
  else {
9855
- i18n_4 = $localize(templateObject_3$v || (templateObject_3$v = __makeTemplateObject([":\u241Fddc8d487566c6a50356eb269a281761ef8ccffa8\u241F4122997114884311871:dans mon panier"], [":\u241Fddc8d487566c6a50356eb269a281761ef8ccffa8\u241F4122997114884311871:dans mon panier"])));
9891
+ i18n_4 = $localize(templateObject_3$w || (templateObject_3$w = __makeTemplateObject([":\u241Fddc8d487566c6a50356eb269a281761ef8ccffa8\u241F4122997114884311871:dans mon panier"], [":\u241Fddc8d487566c6a50356eb269a281761ef8ccffa8\u241F4122997114884311871:dans mon panier"])));
9856
9892
  }
9857
9893
  var i18n_6;
9858
9894
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -9860,7 +9896,7 @@
9860
9896
  i18n_6 = MSG_EXTERNAL_6395936232189121511$$LIB__COMPONENTS_MODAL_MODAL_COMPONENT_TS____7;
9861
9897
  }
9862
9898
  else {
9863
- i18n_6 = $localize(templateObject_4$q || (templateObject_4$q = __makeTemplateObject([":\u241Fd3276a66cd37a042eef60b47ad3ac37a6935cb08\u241F6395936232189121511:Passer commande"], [":\u241Fd3276a66cd37a042eef60b47ad3ac37a6935cb08\u241F6395936232189121511:Passer commande"])));
9899
+ i18n_6 = $localize(templateObject_4$r || (templateObject_4$r = __makeTemplateObject([":\u241Fd3276a66cd37a042eef60b47ad3ac37a6935cb08\u241F6395936232189121511:Passer commande"], [":\u241Fd3276a66cd37a042eef60b47ad3ac37a6935cb08\u241F6395936232189121511:Passer commande"])));
9864
9900
  }
9865
9901
  return [[4, "ngIf"], [1, "miam-modal__container", 3, "ngClass"], [1, "miam-shadow-overlay", 3, "click"], [1, "miam-modal", "miam-ds-text", 3, "ngClass"], [1, "miam-modal__content-container"], [1, "miam-modal__header-container"], [1, "miam-modal__header"], ["class", "miam-modal__title miam-ds-text size-xl weight-xxl", 4, "ngIf"], ["class", "miam-modal__title miam-ds-text", 4, "ngIf"], [1, "miam-modal__close-icon", "miam-ds-button", "ghost", 3, "click"], [1, "miam-modal__content__scroll-protection"], [1, "miam-modal__content", "miam-ds-text"], ["class", "miam-modal__actions", 4, "ngIf"], [1, "miam-modal__title", "miam-ds-text", "size-xl", "weight-xxl"], [1, "miam-modal__title", "miam-ds-text"], i18n_0, i18n_2, [1, "miam-modal__actions"], [1, "miam-modal__interactions"], ["class", "miam-ds-button secondary", 3, "disabled", "click", 4, "ngIf"], [1, "miam-ds-button", 3, "disabled", "ngClass", "click"], ["class", "miam-ds-loader", 4, "ngIf"], [1, "miam-ds-button", "secondary", 3, "disabled", "click"], [1, "miam-ds-loader"], [1, "miam-modal__place-order"], [1, "miam-modal__place-order-price"], [1, "miam-modal__total-price", "miam-ds-text", "size-l", "weight-xxl"], [1, "miam-modal__total-price-label", "miam-ds-text", "size-s"], i18n_4, [1, "miam-modal__place-order-cta", "miam-ds-button", 3, "ngClass", "click"], i18n_6];
9866
9902
  }, template: function ModalComponent_Template(rf, ctx) {
@@ -9921,7 +9957,7 @@
9921
9957
  args: ['window:keydown.escape']
9922
9958
  }] });
9923
9959
  })();
9924
- var templateObject_1$N, templateObject_2$F, templateObject_3$v, templateObject_4$q;
9960
+ var templateObject_1$P, templateObject_2$H, templateObject_3$w, templateObject_4$r;
9925
9961
 
9926
9962
  function ListInputComponent_div_2_Template(rf, ctx) {
9927
9963
  if (rf & 1) {
@@ -10632,7 +10668,7 @@
10632
10668
  i18n_0 = MSG_EXTERNAL_6695434073227826027$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS_1;
10633
10669
  }
10634
10670
  else {
10635
- i18n_0 = $localize(templateObject_1$M || (templateObject_1$M = __makeTemplateObject([":\u241F168aaaefb82a049ba50e371f90edc3cf717dbe18\u241F6695434073227826027:Exemple :\\n500g de farine\\n250g de beurre\\nhuile d\\'olive\\n4 tranches de jambon"], [":\u241F168aaaefb82a049ba50e371f90edc3cf717dbe18\u241F6695434073227826027:Exemple :\\\\n500g de farine\\\\n250g de beurre\\\\nhuile d\\\\'olive\\\\n4 tranches de jambon"])));
10671
+ i18n_0 = $localize(templateObject_1$O || (templateObject_1$O = __makeTemplateObject([":\u241F168aaaefb82a049ba50e371f90edc3cf717dbe18\u241F6695434073227826027:Exemple :\\n500g de farine\\n250g de beurre\\nhuile d\\'olive\\n4 tranches de jambon"], [":\u241F168aaaefb82a049ba50e371f90edc3cf717dbe18\u241F6695434073227826027:Exemple :\\\\n500g de farine\\\\n250g de beurre\\\\nhuile d\\\\'olive\\\\n4 tranches de jambon"])));
10636
10672
  }
10637
10673
  var i18n_2;
10638
10674
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10640,7 +10676,7 @@
10640
10676
  i18n_2 = MSG_EXTERNAL_2018023587834470484$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS_3;
10641
10677
  }
10642
10678
  else {
10643
- i18n_2 = $localize(templateObject_2$E || (templateObject_2$E = __makeTemplateObject([":\u241F3877c3dcbb65966da0eec0fc397768e4b8cb4c0a\u241F2018023587834470484:Exemple :\\nHacher grossi\u00E8rement le c\u00E9leri et l'oignon.\\nCouper le chou-fleur en petits bouquets."], [":\u241F3877c3dcbb65966da0eec0fc397768e4b8cb4c0a\u241F2018023587834470484:Exemple :\\\\nHacher grossi\u00E8rement le c\u00E9leri et l'oignon.\\\\nCouper le chou-fleur en petits bouquets."])));
10679
+ i18n_2 = $localize(templateObject_2$G || (templateObject_2$G = __makeTemplateObject([":\u241F3877c3dcbb65966da0eec0fc397768e4b8cb4c0a\u241F2018023587834470484:Exemple :\\nHacher grossi\u00E8rement le c\u00E9leri et l'oignon.\\nCouper le chou-fleur en petits bouquets."], [":\u241F3877c3dcbb65966da0eec0fc397768e4b8cb4c0a\u241F2018023587834470484:Exemple :\\\\nHacher grossi\u00E8rement le c\u00E9leri et l'oignon.\\\\nCouper le chou-fleur en petits bouquets."])));
10644
10680
  }
10645
10681
  var i18n_4;
10646
10682
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10648,7 +10684,7 @@
10648
10684
  i18n_4 = MSG_EXTERNAL_5408671121354947038$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS_5;
10649
10685
  }
10650
10686
  else {
10651
- i18n_4 = $localize(templateObject_3$u || (templateObject_3$u = __makeTemplateObject([":\u241F6f4549745b3359819ca94563488f5ccd66a5c7a7\u241F5408671121354947038:Ajouter "], [":\u241F6f4549745b3359819ca94563488f5ccd66a5c7a7\u241F5408671121354947038:Ajouter "])));
10687
+ i18n_4 = $localize(templateObject_3$v || (templateObject_3$v = __makeTemplateObject([":\u241F6f4549745b3359819ca94563488f5ccd66a5c7a7\u241F5408671121354947038:Ajouter "], [":\u241F6f4549745b3359819ca94563488f5ccd66a5c7a7\u241F5408671121354947038:Ajouter "])));
10652
10688
  }
10653
10689
  var i18n_6;
10654
10690
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10656,7 +10692,7 @@
10656
10692
  i18n_6 = MSG_EXTERNAL_4078662097036588656$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS_7;
10657
10693
  }
10658
10694
  else {
10659
- i18n_6 = $localize(templateObject_4$p || (templateObject_4$p = __makeTemplateObject([":\u241F49375178588cf9deb7d988b78a2c8f00026e7285\u241F4078662097036588656:Image trop volumineuse"], [":\u241F49375178588cf9deb7d988b78a2c8f00026e7285\u241F4078662097036588656:Image trop volumineuse"])));
10695
+ i18n_6 = $localize(templateObject_4$q || (templateObject_4$q = __makeTemplateObject([":\u241F49375178588cf9deb7d988b78a2c8f00026e7285\u241F4078662097036588656:Image trop volumineuse"], [":\u241F49375178588cf9deb7d988b78a2c8f00026e7285\u241F4078662097036588656:Image trop volumineuse"])));
10660
10696
  }
10661
10697
  var i18n_8;
10662
10698
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10664,7 +10700,7 @@
10664
10700
  i18n_8 = MSG_EXTERNAL_5233517838396324976$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS__9;
10665
10701
  }
10666
10702
  else {
10667
- i18n_8 = $localize(templateObject_5$m || (templateObject_5$m = __makeTemplateObject([":\u241F94ad94596b2f40b07222d1e40355a44b6a1af29a\u241F5233517838396324976:Ingr\u00E9dients"], [":\u241F94ad94596b2f40b07222d1e40355a44b6a1af29a\u241F5233517838396324976:Ingr\u00E9dients"])));
10703
+ i18n_8 = $localize(templateObject_5$n || (templateObject_5$n = __makeTemplateObject([":\u241F94ad94596b2f40b07222d1e40355a44b6a1af29a\u241F5233517838396324976:Ingr\u00E9dients"], [":\u241F94ad94596b2f40b07222d1e40355a44b6a1af29a\u241F5233517838396324976:Ingr\u00E9dients"])));
10668
10704
  }
10669
10705
  var i18n_10;
10670
10706
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10672,7 +10708,7 @@
10672
10708
  i18n_10 = MSG_EXTERNAL_1766110989620382170$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS__11;
10673
10709
  }
10674
10710
  else {
10675
- i18n_10 = $localize(templateObject_6$i || (templateObject_6$i = __makeTemplateObject([":\u241Fb6d5d35bf18eb39d9f9e538b8f3c108262d1ebd6\u241F1766110989620382170:\u00C9tapes"], [":\u241Fb6d5d35bf18eb39d9f9e538b8f3c108262d1ebd6\u241F1766110989620382170:\u00C9tapes"])));
10711
+ i18n_10 = $localize(templateObject_6$j || (templateObject_6$j = __makeTemplateObject([":\u241Fb6d5d35bf18eb39d9f9e538b8f3c108262d1ebd6\u241F1766110989620382170:\u00C9tapes"], [":\u241Fb6d5d35bf18eb39d9f9e538b8f3c108262d1ebd6\u241F1766110989620382170:\u00C9tapes"])));
10676
10712
  }
10677
10713
  var i18n_12;
10678
10714
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10680,7 +10716,7 @@
10680
10716
  i18n_12 = MSG_EXTERNAL_6937054015625775665$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS_______13;
10681
10717
  }
10682
10718
  else {
10683
- i18n_12 = $localize(templateObject_7$f || (templateObject_7$f = __makeTemplateObject([":\u241Fe336f56ee5c65fc7405818982e6700e092a7baa2\u241F6937054015625775665:Primordial"], [":\u241Fe336f56ee5c65fc7405818982e6700e092a7baa2\u241F6937054015625775665:Primordial"])));
10719
+ i18n_12 = $localize(templateObject_7$g || (templateObject_7$g = __makeTemplateObject([":\u241Fe336f56ee5c65fc7405818982e6700e092a7baa2\u241F6937054015625775665:Primordial"], [":\u241Fe336f56ee5c65fc7405818982e6700e092a7baa2\u241F6937054015625775665:Primordial"])));
10684
10720
  }
10685
10721
  var i18n_14;
10686
10722
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10688,7 +10724,7 @@
10688
10724
  i18n_14 = MSG_EXTERNAL_4559730461211482390$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS_______15;
10689
10725
  }
10690
10726
  else {
10691
- i18n_14 = $localize(templateObject_8$b || (templateObject_8$b = __makeTemplateObject([":\u241F3722651f49e2d7f2824c2e31de6afe53570141ba\u241F4559730461211482390:Secondaire"], [":\u241F3722651f49e2d7f2824c2e31de6afe53570141ba\u241F4559730461211482390:Secondaire"])));
10727
+ i18n_14 = $localize(templateObject_8$c || (templateObject_8$c = __makeTemplateObject([":\u241F3722651f49e2d7f2824c2e31de6afe53570141ba\u241F4559730461211482390:Secondaire"], [":\u241F3722651f49e2d7f2824c2e31de6afe53570141ba\u241F4559730461211482390:Secondaire"])));
10692
10728
  }
10693
10729
  var i18n_16;
10694
10730
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10696,7 +10732,7 @@
10696
10732
  i18n_16 = MSG_EXTERNAL_1057361115522168873$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS_______17;
10697
10733
  }
10698
10734
  else {
10699
- i18n_16 = $localize(templateObject_9$7 || (templateObject_9$7 = __makeTemplateObject([":\u241Fd3b0e0a8c23b3e238f2920c0c42d8fe5be68384f\u241F1057361115522168873:Facultatif"], [":\u241Fd3b0e0a8c23b3e238f2920c0c42d8fe5be68384f\u241F1057361115522168873:Facultatif"])));
10735
+ i18n_16 = $localize(templateObject_9$8 || (templateObject_9$8 = __makeTemplateObject([":\u241Fd3b0e0a8c23b3e238f2920c0c42d8fe5be68384f\u241F1057361115522168873:Facultatif"], [":\u241Fd3b0e0a8c23b3e238f2920c0c42d8fe5be68384f\u241F1057361115522168873:Facultatif"])));
10700
10736
  }
10701
10737
  var i18n_19;
10702
10738
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10704,7 +10740,7 @@
10704
10740
  i18n_19 = MSG_EXTERNAL_5063758185397051816$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS__20;
10705
10741
  }
10706
10742
  else {
10707
- i18n_19 = $localize(templateObject_10$5 || (templateObject_10$5 = __makeTemplateObject([":\u241F8bf11ac957bb9c1d67052f048a5a711f3fb32bab\u241F5063758185397051816:Oups... c\u2019est vide, commencez \u00E0 ajouter des "], [":\u241F8bf11ac957bb9c1d67052f048a5a711f3fb32bab\u241F5063758185397051816:Oups... c\u2019est vide, commencez \u00E0 ajouter des "])));
10743
+ i18n_19 = $localize(templateObject_10$6 || (templateObject_10$6 = __makeTemplateObject([":\u241F8bf11ac957bb9c1d67052f048a5a711f3fb32bab\u241F5063758185397051816:Oups... c\u2019est vide, commencez \u00E0 ajouter des "], [":\u241F8bf11ac957bb9c1d67052f048a5a711f3fb32bab\u241F5063758185397051816:Oups... c\u2019est vide, commencez \u00E0 ajouter des "])));
10708
10744
  }
10709
10745
  var i18n_21;
10710
10746
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10712,7 +10748,7 @@
10712
10748
  i18n_21 = MSG_EXTERNAL_4347184803525916259$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS___22;
10713
10749
  }
10714
10750
  else {
10715
- i18n_21 = $localize(templateObject_11$5 || (templateObject_11$5 = __makeTemplateObject([":\u241Fb8a7b7a3ce2589afbc881feafa155635e9eb817a\u241F4347184803525916259:ingr\u00E9dients !"], [":\u241Fb8a7b7a3ce2589afbc881feafa155635e9eb817a\u241F4347184803525916259:ingr\u00E9dients !"])));
10751
+ i18n_21 = $localize(templateObject_11$6 || (templateObject_11$6 = __makeTemplateObject([":\u241Fb8a7b7a3ce2589afbc881feafa155635e9eb817a\u241F4347184803525916259:ingr\u00E9dients !"], [":\u241Fb8a7b7a3ce2589afbc881feafa155635e9eb817a\u241F4347184803525916259:ingr\u00E9dients !"])));
10716
10752
  }
10717
10753
  var i18n_23;
10718
10754
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10720,7 +10756,7 @@
10720
10756
  i18n_23 = MSG_EXTERNAL_3708398059077083147$$LIB__COMPONENTS_LIST_INPUT_LIST_INPUT_COMPONENT_TS___24;
10721
10757
  }
10722
10758
  else {
10723
- i18n_23 = $localize(templateObject_12$4 || (templateObject_12$4 = __makeTemplateObject([":\u241F50e4583edfd98e9319f6e06ac9f12373fa29fbc9\u241F3708398059077083147:\u00E9tapes !"], [":\u241F50e4583edfd98e9319f6e06ac9f12373fa29fbc9\u241F3708398059077083147:\u00E9tapes !"])));
10759
+ i18n_23 = $localize(templateObject_12$5 || (templateObject_12$5 = __makeTemplateObject([":\u241F50e4583edfd98e9319f6e06ac9f12373fa29fbc9\u241F3708398059077083147:\u00E9tapes !"], [":\u241F50e4583edfd98e9319f6e06ac9f12373fa29fbc9\u241F3708398059077083147:\u00E9tapes !"])));
10724
10760
  }
10725
10761
  var i18n_25;
10726
10762
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10845,7 +10881,7 @@
10845
10881
  type: i0.Output
10846
10882
  }] });
10847
10883
  })();
10848
- var templateObject_1$M, templateObject_2$E, templateObject_3$u, templateObject_4$p, templateObject_5$m, templateObject_6$i, templateObject_7$f, templateObject_8$b, templateObject_9$7, templateObject_10$5, templateObject_11$5, templateObject_12$4, templateObject_13$4, templateObject_14$3, templateObject_15$3, templateObject_16$2, templateObject_17$2;
10884
+ var templateObject_1$O, templateObject_2$G, templateObject_3$v, templateObject_4$q, templateObject_5$n, templateObject_6$j, templateObject_7$g, templateObject_8$c, templateObject_9$8, templateObject_10$6, templateObject_11$6, templateObject_12$5, templateObject_13$4, templateObject_14$3, templateObject_15$3, templateObject_16$2, templateObject_17$2;
10849
10885
 
10850
10886
  var LoaderComponent = /** @class */ (function () {
10851
10887
  function LoaderComponent() {
@@ -10889,7 +10925,7 @@
10889
10925
  i18n_0 = MSG_EXTERNAL_7941873496647081087$$LIB__COMPONENTS_MEALS_PLANNER_LINK_MEALS_PLANNER_LINK_COMPONENT_TS_1;
10890
10926
  }
10891
10927
  else {
10892
- i18n_0 = $localize(templateObject_1$L || (templateObject_1$L = __makeTemplateObject([":\u241F31447cf300f37b6f8ae96281c427b49242c801e5\u241F7941873496647081087:Je planifie mes repas"], [":\u241F31447cf300f37b6f8ae96281c427b49242c801e5\u241F7941873496647081087:Je planifie mes repas"])));
10928
+ i18n_0 = $localize(templateObject_1$N || (templateObject_1$N = __makeTemplateObject([":\u241F31447cf300f37b6f8ae96281c427b49242c801e5\u241F7941873496647081087:Je planifie mes repas"], [":\u241F31447cf300f37b6f8ae96281c427b49242c801e5\u241F7941873496647081087:Je planifie mes repas"])));
10893
10929
  }
10894
10930
  var i18n_2;
10895
10931
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10897,7 +10933,7 @@
10897
10933
  i18n_2 = MSG_EXTERNAL_5328674089466195959$$LIB__COMPONENTS_MEALS_PLANNER_LINK_MEALS_PLANNER_LINK_COMPONENT_TS_3;
10898
10934
  }
10899
10935
  else {
10900
- i18n_2 = $localize(templateObject_2$D || (templateObject_2$D = __makeTemplateObject([":\u241Fb1c4690366792b0d9b9034d6b35d974cdfaf2eea\u241F5328674089466195959:Je renseigne mon budget, le nombre de convives et de repas, et j'obtiens des id\u00E9es repas"], [":\u241Fb1c4690366792b0d9b9034d6b35d974cdfaf2eea\u241F5328674089466195959:Je renseigne mon budget, le nombre de convives et de repas, et j'obtiens des id\u00E9es repas"])));
10936
+ i18n_2 = $localize(templateObject_2$F || (templateObject_2$F = __makeTemplateObject([":\u241Fb1c4690366792b0d9b9034d6b35d974cdfaf2eea\u241F5328674089466195959:Je renseigne mon budget, le nombre de convives et de repas, et j'obtiens des id\u00E9es repas"], [":\u241Fb1c4690366792b0d9b9034d6b35d974cdfaf2eea\u241F5328674089466195959:Je renseigne mon budget, le nombre de convives et de repas, et j'obtiens des id\u00E9es repas"])));
10901
10937
  }
10902
10938
  var i18n_4;
10903
10939
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -10905,7 +10941,7 @@
10905
10941
  i18n_4 = MSG_EXTERNAL_6105149763216124630$$LIB__COMPONENTS_MEALS_PLANNER_LINK_MEALS_PLANNER_LINK_COMPONENT_TS_5;
10906
10942
  }
10907
10943
  else {
10908
- i18n_4 = $localize(templateObject_3$t || (templateObject_3$t = __makeTemplateObject([":\u241F54db9980698d46d77cbe00eb3a20ac4d5407c95d\u241F6105149763216124630:Planifier"], [":\u241F54db9980698d46d77cbe00eb3a20ac4d5407c95d\u241F6105149763216124630:Planifier"])));
10944
+ i18n_4 = $localize(templateObject_3$u || (templateObject_3$u = __makeTemplateObject([":\u241F54db9980698d46d77cbe00eb3a20ac4d5407c95d\u241F6105149763216124630:Planifier"], [":\u241F54db9980698d46d77cbe00eb3a20ac4d5407c95d\u241F6105149763216124630:Planifier"])));
10909
10945
  }
10910
10946
  return [[1, "miam-meals-planner-link", 3, "click"], [1, "miam-meals-planner-link__gradient"], [1, "miam-meals-planner-link__content"], [1, "miam-meals-planner-link__title"], i18n_0, [1, "miam-meals-planner-link__description"], i18n_2, [1, "miam-meals-planner-link__cta"], [1, "miam-ds-button", "primary", "reverse"], i18n_4, ["width", "24", "height", "24", 3, "iconName"]];
10911
10947
  }, template: function MealsPlannerLinkComponent_Template(rf, ctx) {
@@ -10951,7 +10987,7 @@
10951
10987
  }]
10952
10988
  }], function () { return [{ type: ContextService }]; }, null);
10953
10989
  })();
10954
- var templateObject_1$L, templateObject_2$D, templateObject_3$t;
10990
+ var templateObject_1$N, templateObject_2$F, templateObject_3$u;
10955
10991
 
10956
10992
  var _c0$n = ["miamPrice"];
10957
10993
  var PriceComponent = /** @class */ (function () {
@@ -11784,7 +11820,7 @@
11784
11820
  i18n_0 = MSG_EXTERNAL_5491081266313732174$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS_1;
11785
11821
  }
11786
11822
  else {
11787
- i18n_0 = $localize(templateObject_1$K || (templateObject_1$K = __makeTemplateObject([":\u241F47e7dbf996c20e48f8f5f7235432acbe1ddb8441\u241F5491081266313732174:Filtres"], [":\u241F47e7dbf996c20e48f8f5f7235432acbe1ddb8441\u241F5491081266313732174:Filtres"])));
11823
+ i18n_0 = $localize(templateObject_1$M || (templateObject_1$M = __makeTemplateObject([":\u241F47e7dbf996c20e48f8f5f7235432acbe1ddb8441\u241F5491081266313732174:Filtres"], [":\u241F47e7dbf996c20e48f8f5f7235432acbe1ddb8441\u241F5491081266313732174:Filtres"])));
11788
11824
  }
11789
11825
  var i18n_2;
11790
11826
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11792,7 +11828,7 @@
11792
11828
  i18n_2 = MSG_EXTERNAL_4359053901144852078$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS_3;
11793
11829
  }
11794
11830
  else {
11795
- i18n_2 = $localize(templateObject_2$C || (templateObject_2$C = __makeTemplateObject([":\u241F515812e22dc3f7668cb6ad93e54740e5c1a140b0\u241F4359053901144852078:R\u00E9initialiser"], [":\u241F515812e22dc3f7668cb6ad93e54740e5c1a140b0\u241F4359053901144852078:R\u00E9initialiser"])));
11831
+ i18n_2 = $localize(templateObject_2$E || (templateObject_2$E = __makeTemplateObject([":\u241F515812e22dc3f7668cb6ad93e54740e5c1a140b0\u241F4359053901144852078:R\u00E9initialiser"], [":\u241F515812e22dc3f7668cb6ad93e54740e5c1a140b0\u241F4359053901144852078:R\u00E9initialiser"])));
11796
11832
  }
11797
11833
  var i18n_4;
11798
11834
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11800,7 +11836,7 @@
11800
11836
  i18n_4 = MSG_EXTERNAL_3088922289163197887$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS_5;
11801
11837
  }
11802
11838
  else {
11803
- i18n_4 = $localize(templateObject_3$s || (templateObject_3$s = __makeTemplateObject([":\u241F05233ae9fe87602db5d05c330c57200f3e63fad9\u241F3088922289163197887:Voir "], [":\u241F05233ae9fe87602db5d05c330c57200f3e63fad9\u241F3088922289163197887:Voir "])));
11839
+ i18n_4 = $localize(templateObject_3$t || (templateObject_3$t = __makeTemplateObject([":\u241F05233ae9fe87602db5d05c330c57200f3e63fad9\u241F3088922289163197887:Voir "], [":\u241F05233ae9fe87602db5d05c330c57200f3e63fad9\u241F3088922289163197887:Voir "])));
11804
11840
  }
11805
11841
  var i18n_6;
11806
11842
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11808,7 +11844,7 @@
11808
11844
  i18n_6 = MSG_EXTERNAL_3809820644785537818$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS_7;
11809
11845
  }
11810
11846
  else {
11811
- i18n_6 = $localize(templateObject_4$o || (templateObject_4$o = __makeTemplateObject([":\u241F2b5c164efaa4ab2f43d98ed7cb742d3424135de9\u241F3809820644785537818:recettes"], [":\u241F2b5c164efaa4ab2f43d98ed7cb742d3424135de9\u241F3809820644785537818:recettes"])));
11847
+ i18n_6 = $localize(templateObject_4$p || (templateObject_4$p = __makeTemplateObject([":\u241F2b5c164efaa4ab2f43d98ed7cb742d3424135de9\u241F3809820644785537818:recettes"], [":\u241F2b5c164efaa4ab2f43d98ed7cb742d3424135de9\u241F3809820644785537818:recettes"])));
11812
11848
  }
11813
11849
  var i18n_8;
11814
11850
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11816,7 +11852,7 @@
11816
11852
  i18n_8 = MSG_EXTERNAL_4572808970531890280$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS__9;
11817
11853
  }
11818
11854
  else {
11819
- i18n_8 = $localize(templateObject_5$l || (templateObject_5$l = __makeTemplateObject([":\u241F1bf4b0fad491a1a0e696a667d19d9d3dc115e765\u241F4572808970531890280:Temps de pr\u00E9paration"], [":\u241F1bf4b0fad491a1a0e696a667d19d9d3dc115e765\u241F4572808970531890280:Temps de pr\u00E9paration"])));
11855
+ i18n_8 = $localize(templateObject_5$m || (templateObject_5$m = __makeTemplateObject([":\u241F1bf4b0fad491a1a0e696a667d19d9d3dc115e765\u241F4572808970531890280:Temps de pr\u00E9paration"], [":\u241F1bf4b0fad491a1a0e696a667d19d9d3dc115e765\u241F4572808970531890280:Temps de pr\u00E9paration"])));
11820
11856
  }
11821
11857
  var i18n_10;
11822
11858
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11824,7 +11860,7 @@
11824
11860
  i18n_10 = MSG_EXTERNAL_4676538037472110629$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS____11;
11825
11861
  }
11826
11862
  else {
11827
- i18n_10 = $localize(templateObject_6$h || (templateObject_6$h = __makeTemplateObject([":\u241Fec309bd5fe08b5e60282f9927da7af45191bed46\u241F4676538037472110629:Moins de 15 min"], [":\u241Fec309bd5fe08b5e60282f9927da7af45191bed46\u241F4676538037472110629:Moins de 15 min"])));
11863
+ i18n_10 = $localize(templateObject_6$i || (templateObject_6$i = __makeTemplateObject([":\u241Fec309bd5fe08b5e60282f9927da7af45191bed46\u241F4676538037472110629:Moins de 15 min"], [":\u241Fec309bd5fe08b5e60282f9927da7af45191bed46\u241F4676538037472110629:Moins de 15 min"])));
11828
11864
  }
11829
11865
  var i18n_12;
11830
11866
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11832,7 +11868,7 @@
11832
11868
  i18n_12 = MSG_EXTERNAL_2987005241567363499$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS____13;
11833
11869
  }
11834
11870
  else {
11835
- i18n_12 = $localize(templateObject_7$e || (templateObject_7$e = __makeTemplateObject([":\u241F06a1a41b1f201e9c0039e7a5a4a6412a1bc3665f\u241F2987005241567363499:Moins de 30 min"], [":\u241F06a1a41b1f201e9c0039e7a5a4a6412a1bc3665f\u241F2987005241567363499:Moins de 30 min"])));
11871
+ i18n_12 = $localize(templateObject_7$f || (templateObject_7$f = __makeTemplateObject([":\u241F06a1a41b1f201e9c0039e7a5a4a6412a1bc3665f\u241F2987005241567363499:Moins de 30 min"], [":\u241F06a1a41b1f201e9c0039e7a5a4a6412a1bc3665f\u241F2987005241567363499:Moins de 30 min"])));
11836
11872
  }
11837
11873
  var i18n_14;
11838
11874
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11840,7 +11876,7 @@
11840
11876
  i18n_14 = MSG_EXTERNAL_6215037527102325488$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS____15;
11841
11877
  }
11842
11878
  else {
11843
- i18n_14 = $localize(templateObject_8$a || (templateObject_8$a = __makeTemplateObject([":\u241F1621eb3798ceefdacca0efee8561de66c85229df\u241F6215037527102325488:Moins de 1 h"], [":\u241F1621eb3798ceefdacca0efee8561de66c85229df\u241F6215037527102325488:Moins de 1 h"])));
11879
+ i18n_14 = $localize(templateObject_8$b || (templateObject_8$b = __makeTemplateObject([":\u241F1621eb3798ceefdacca0efee8561de66c85229df\u241F6215037527102325488:Moins de 1 h"], [":\u241F1621eb3798ceefdacca0efee8561de66c85229df\u241F6215037527102325488:Moins de 1 h"])));
11844
11880
  }
11845
11881
  var i18n_16;
11846
11882
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11848,7 +11884,7 @@
11848
11884
  i18n_16 = MSG_EXTERNAL_8130680565015962867$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS____17;
11849
11885
  }
11850
11886
  else {
11851
- i18n_16 = $localize(templateObject_9$6 || (templateObject_9$6 = __makeTemplateObject([":\u241F1a2b98827dd9dffbad8f1dabcd0d7bf228899a4e\u241F8130680565015962867:Moins de 2 h"], [":\u241F1a2b98827dd9dffbad8f1dabcd0d7bf228899a4e\u241F8130680565015962867:Moins de 2 h"])));
11887
+ i18n_16 = $localize(templateObject_9$7 || (templateObject_9$7 = __makeTemplateObject([":\u241F1a2b98827dd9dffbad8f1dabcd0d7bf228899a4e\u241F8130680565015962867:Moins de 2 h"], [":\u241F1a2b98827dd9dffbad8f1dabcd0d7bf228899a4e\u241F8130680565015962867:Moins de 2 h"])));
11852
11888
  }
11853
11889
  var i18n_18;
11854
11890
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11856,7 +11892,7 @@
11856
11892
  i18n_18 = MSG_EXTERNAL_2877853972557702593$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS__19;
11857
11893
  }
11858
11894
  else {
11859
- i18n_18 = $localize(templateObject_10$4 || (templateObject_10$4 = __makeTemplateObject([":\u241Fdc6b8f21ea2f0969bbb711d6d261babaab678179\u241F2877853972557702593:Difficult\u00E9"], [":\u241Fdc6b8f21ea2f0969bbb711d6d261babaab678179\u241F2877853972557702593:Difficult\u00E9"])));
11895
+ i18n_18 = $localize(templateObject_10$5 || (templateObject_10$5 = __makeTemplateObject([":\u241Fdc6b8f21ea2f0969bbb711d6d261babaab678179\u241F2877853972557702593:Difficult\u00E9"], [":\u241Fdc6b8f21ea2f0969bbb711d6d261babaab678179\u241F2877853972557702593:Difficult\u00E9"])));
11860
11896
  }
11861
11897
  var i18n_20;
11862
11898
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11864,7 +11900,7 @@
11864
11900
  i18n_20 = MSG_EXTERNAL_3684169623116339825$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS____21;
11865
11901
  }
11866
11902
  else {
11867
- i18n_20 = $localize(templateObject_11$4 || (templateObject_11$4 = __makeTemplateObject([":\u241F96cca7cb17582a9b01053a242ca907b721fad7fe\u241F3684169623116339825:Chef d\u00E9butant"], [":\u241F96cca7cb17582a9b01053a242ca907b721fad7fe\u241F3684169623116339825:Chef d\u00E9butant"])));
11903
+ i18n_20 = $localize(templateObject_11$5 || (templateObject_11$5 = __makeTemplateObject([":\u241F96cca7cb17582a9b01053a242ca907b721fad7fe\u241F3684169623116339825:Chef d\u00E9butant"], [":\u241F96cca7cb17582a9b01053a242ca907b721fad7fe\u241F3684169623116339825:Chef d\u00E9butant"])));
11868
11904
  }
11869
11905
  var i18n_22;
11870
11906
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -11872,7 +11908,7 @@
11872
11908
  i18n_22 = MSG_EXTERNAL_7733455880752157102$$LIB__COMPONENTS_RECIPE_FILTERS_RECIPE_FILTERS_COMPONENT_TS____23;
11873
11909
  }
11874
11910
  else {
11875
- i18n_22 = $localize(templateObject_12$3 || (templateObject_12$3 = __makeTemplateObject([":\u241Fccfd103e2bbd9a80c6d3a226332a77c93c88d871\u241F7733455880752157102:Chef interm\u00E9diaire"], [":\u241Fccfd103e2bbd9a80c6d3a226332a77c93c88d871\u241F7733455880752157102:Chef interm\u00E9diaire"])));
11911
+ i18n_22 = $localize(templateObject_12$4 || (templateObject_12$4 = __makeTemplateObject([":\u241Fccfd103e2bbd9a80c6d3a226332a77c93c88d871\u241F7733455880752157102:Chef interm\u00E9diaire"], [":\u241Fccfd103e2bbd9a80c6d3a226332a77c93c88d871\u241F7733455880752157102:Chef interm\u00E9diaire"])));
11876
11912
  }
11877
11913
  var i18n_24;
11878
11914
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -12011,7 +12047,7 @@
12011
12047
  type: i0.Output
12012
12048
  }] });
12013
12049
  })();
12014
- var templateObject_1$K, templateObject_2$C, templateObject_3$s, templateObject_4$o, templateObject_5$l, templateObject_6$h, templateObject_7$e, templateObject_8$a, templateObject_9$6, templateObject_10$4, templateObject_11$4, templateObject_12$3, templateObject_13$3, templateObject_14$2, templateObject_15$2, templateObject_16$1, templateObject_17$1, templateObject_18$1, templateObject_19$1;
12050
+ var templateObject_1$M, templateObject_2$E, templateObject_3$t, templateObject_4$p, templateObject_5$m, templateObject_6$i, templateObject_7$f, templateObject_8$b, templateObject_9$7, templateObject_10$5, templateObject_11$5, templateObject_12$4, templateObject_13$3, templateObject_14$2, templateObject_15$2, templateObject_16$1, templateObject_17$1, templateObject_18$1, templateObject_19$1;
12015
12051
 
12016
12052
  var SelectPosButtonDirective = /** @class */ (function () {
12017
12053
  function SelectPosButtonDirective(el, contextService, posService) {
@@ -12191,7 +12227,8 @@
12191
12227
  if (changes.serves) {
12192
12228
  var previousGuests = this.guests$.value;
12193
12229
  this.guests$.next(this.serves);
12194
- if (this.recipeId && previousGuests > 0 && previousGuests !== this.serves) {
12230
+ // The pricing only needs to update the guests if called standalone -> with a recipeExtId && recipe was fetched && guests have changed
12231
+ if (this.recipeExtId && this.recipeId && previousGuests > 0 && previousGuests !== this.serves) {
12195
12232
  this.updateRecipeGuests();
12196
12233
  }
12197
12234
  }
@@ -12314,7 +12351,7 @@
12314
12351
  i18n_0 = MSG_EXTERNAL_2218803795065127471$$LIB__WEB_COMPONENTS_RECIPE_PRICING_RECIPE_PRICING_COMPONENT_TS__1;
12315
12352
  }
12316
12353
  else {
12317
- i18n_0 = $localize(templateObject_1$J || (templateObject_1$J = __makeTemplateObject([":\u241F6cbbde0e661ae9f5f19f865ba802214c7432be8f\u241F2218803795065127471:Afficher le prix"], [":\u241F6cbbde0e661ae9f5f19f865ba802214c7432be8f\u241F2218803795065127471:Afficher le prix"])));
12354
+ i18n_0 = $localize(templateObject_1$L || (templateObject_1$L = __makeTemplateObject([":\u241F6cbbde0e661ae9f5f19f865ba802214c7432be8f\u241F2218803795065127471:Afficher le prix"], [":\u241F6cbbde0e661ae9f5f19f865ba802214c7432be8f\u241F2218803795065127471:Afficher le prix"])));
12318
12355
  }
12319
12356
  var i18n_2;
12320
12357
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -12322,7 +12359,7 @@
12322
12359
  i18n_2 = MSG_EXTERNAL_8418532136889699301$$LIB__WEB_COMPONENTS_RECIPE_PRICING_RECIPE_PRICING_COMPONENT_TS___3;
12323
12360
  }
12324
12361
  else {
12325
- i18n_2 = $localize(templateObject_2$B || (templateObject_2$B = __makeTemplateObject([":\u241Fa46e2443e6b0e54d02427631e80b76a326ee6fb3\u241F8418532136889699301:Soit"], [":\u241Fa46e2443e6b0e54d02427631e80b76a326ee6fb3\u241F8418532136889699301:Soit"])));
12362
+ i18n_2 = $localize(templateObject_2$D || (templateObject_2$D = __makeTemplateObject([":\u241Fa46e2443e6b0e54d02427631e80b76a326ee6fb3\u241F8418532136889699301:Soit"], [":\u241Fa46e2443e6b0e54d02427631e80b76a326ee6fb3\u241F8418532136889699301:Soit"])));
12326
12363
  }
12327
12364
  var i18n_4;
12328
12365
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -12330,7 +12367,7 @@
12330
12367
  i18n_4 = MSG_EXTERNAL_435913562251126057$$LIB__WEB_COMPONENTS_RECIPE_PRICING_RECIPE_PRICING_COMPONENT_TS_____5;
12331
12368
  }
12332
12369
  else {
12333
- i18n_4 = $localize(templateObject_3$r || (templateObject_3$r = __makeTemplateObject([":\u241Fa42043c93efe6e7c1206218147891026d3496f33\u241F435913562251126057:/personne"], [":\u241Fa42043c93efe6e7c1206218147891026d3496f33\u241F435913562251126057:/personne"])));
12370
+ i18n_4 = $localize(templateObject_3$s || (templateObject_3$s = __makeTemplateObject([":\u241Fa42043c93efe6e7c1206218147891026d3496f33\u241F435913562251126057:/personne"], [":\u241Fa42043c93efe6e7c1206218147891026d3496f33\u241F435913562251126057:/personne"])));
12334
12371
  }
12335
12372
  var i18n_6;
12336
12373
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -12338,7 +12375,7 @@
12338
12375
  i18n_6 = MSG_EXTERNAL_8969810584578915685$$LIB__WEB_COMPONENTS_RECIPE_PRICING_RECIPE_PRICING_COMPONENT_TS____7;
12339
12376
  }
12340
12377
  else {
12341
- i18n_6 = $localize(templateObject_4$n || (templateObject_4$n = __makeTemplateObject([":\u241Fd1284fc0cb4f023efce4ec7e899c9ae8ab78d0d3\u241F8969810584578915685:/pers."], [":\u241Fd1284fc0cb4f023efce4ec7e899c9ae8ab78d0d3\u241F8969810584578915685:/pers."])));
12378
+ i18n_6 = $localize(templateObject_4$o || (templateObject_4$o = __makeTemplateObject([":\u241Fd1284fc0cb4f023efce4ec7e899c9ae8ab78d0d3\u241F8969810584578915685:/pers."], [":\u241Fd1284fc0cb4f023efce4ec7e899c9ae8ab78d0d3\u241F8969810584578915685:/pers."])));
12342
12379
  }
12343
12380
  return [["class", "miam-recipe-pricing", "ngMiamSelectPosButton", "", 4, "ngIf"], ["ngMiamSelectPosButton", "", 1, "miam-recipe-pricing"], ["class", "miam-recipe-pricing__with-pos", 4, "ngIf"], [1, "miam-recipe-pricing__without-pos"], [1, "miam-ds-button", "ghost", "miam-select-pos-button__open-store-selector-button", 3, "click"], i18n_0, [1, "miam-recipe-pricing__with-pos"], [1, "miam-recipe-pricing__wrapper"], [1, "miam-recipe-pricing__wrapper__price", "miam-ds-text", "size-l", "weight-xxl"], ["class", "miam-recipe-pricing__wrapper__subline miam-ds-text size-xs weight-m", 4, "ngIf", "ngIfElse"], ["defaultGuestsText", ""], [1, "miam-recipe-pricing__total"], i18n_2, [1, "miam-recipe-pricing__wrapper__subline", "miam-ds-text", "size-xs", "weight-m"], [4, "ngIf"], i18n_4, [1, "miam-recipe-pricing__wrapper__subline", "miam-ds-text", "size-m", "weight-m"], i18n_6];
12344
12381
  }, template: function RecipePricingComponent_Template(rf, ctx) {
@@ -12373,7 +12410,7 @@
12373
12410
  type: i0.Input
12374
12411
  }] });
12375
12412
  })();
12376
- var templateObject_1$J, templateObject_2$B, templateObject_3$r, templateObject_4$n;
12413
+ var templateObject_1$L, templateObject_2$D, templateObject_3$s, templateObject_4$o;
12377
12414
 
12378
12415
  var _c6$1 = function (a0) { return { "font-weight": a0 }; };
12379
12416
  var RecipeTypeChooserComponent = /** @class */ (function () {
@@ -12418,7 +12455,7 @@
12418
12455
  i18n_0 = MSG_EXTERNAL_591007413954103680$$LIB__COMPONENTS_RECIPE_TYPE_CHOOSER_RECIPE_TYPE_CHOOSER_COMPONENT_TS_1;
12419
12456
  }
12420
12457
  else {
12421
- i18n_0 = $localize(templateObject_1$I || (templateObject_1$I = __makeTemplateObject([":\u241Fad5651a8fed9db2d35ebfb77175c87ed1f148410\u241F591007413954103680:Une entr\u00E9e"], [":\u241Fad5651a8fed9db2d35ebfb77175c87ed1f148410\u241F591007413954103680:Une entr\u00E9e"])));
12458
+ i18n_0 = $localize(templateObject_1$K || (templateObject_1$K = __makeTemplateObject([":\u241Fad5651a8fed9db2d35ebfb77175c87ed1f148410\u241F591007413954103680:Une entr\u00E9e"], [":\u241Fad5651a8fed9db2d35ebfb77175c87ed1f148410\u241F591007413954103680:Une entr\u00E9e"])));
12422
12459
  }
12423
12460
  var i18n_2;
12424
12461
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -12426,7 +12463,7 @@
12426
12463
  i18n_2 = MSG_EXTERNAL_2940644147071008715$$LIB__COMPONENTS_RECIPE_TYPE_CHOOSER_RECIPE_TYPE_CHOOSER_COMPONENT_TS_3;
12427
12464
  }
12428
12465
  else {
12429
- i18n_2 = $localize(templateObject_2$A || (templateObject_2$A = __makeTemplateObject([":\u241Fad33d88eafaca2ef5d4a71c9caea22d8f0ee581c\u241F2940644147071008715:Un plat principal"], [":\u241Fad33d88eafaca2ef5d4a71c9caea22d8f0ee581c\u241F2940644147071008715:Un plat principal"])));
12466
+ i18n_2 = $localize(templateObject_2$C || (templateObject_2$C = __makeTemplateObject([":\u241Fad33d88eafaca2ef5d4a71c9caea22d8f0ee581c\u241F2940644147071008715:Un plat principal"], [":\u241Fad33d88eafaca2ef5d4a71c9caea22d8f0ee581c\u241F2940644147071008715:Un plat principal"])));
12430
12467
  }
12431
12468
  var i18n_4;
12432
12469
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -12434,7 +12471,7 @@
12434
12471
  i18n_4 = MSG_EXTERNAL_8322335486568562833$$LIB__COMPONENTS_RECIPE_TYPE_CHOOSER_RECIPE_TYPE_CHOOSER_COMPONENT_TS_5;
12435
12472
  }
12436
12473
  else {
12437
- i18n_4 = $localize(templateObject_3$q || (templateObject_3$q = __makeTemplateObject([":\u241Ffebb2f4f5330f0c670f2ac0d004bdd19758f57e2\u241F8322335486568562833:Un dessert"], [":\u241Ffebb2f4f5330f0c670f2ac0d004bdd19758f57e2\u241F8322335486568562833:Un dessert"])));
12474
+ i18n_4 = $localize(templateObject_3$r || (templateObject_3$r = __makeTemplateObject([":\u241Ffebb2f4f5330f0c670f2ac0d004bdd19758f57e2\u241F8322335486568562833:Un dessert"], [":\u241Ffebb2f4f5330f0c670f2ac0d004bdd19758f57e2\u241F8322335486568562833:Un dessert"])));
12438
12475
  }
12439
12476
  return [[1, "recipe-type-chooser"], [1, "recipe-type-chooser__item"], [3, "height", "width", "iconName", "click"], [3, "ngStyle"], i18n_0, i18n_2, i18n_4];
12440
12477
  }, template: function RecipeTypeChooserComponent_Template(rf, ctx) {
@@ -12495,7 +12532,7 @@
12495
12532
  type: i0.Input
12496
12533
  }] });
12497
12534
  })();
12498
- var templateObject_1$I, templateObject_2$A, templateObject_3$q;
12535
+ var templateObject_1$K, templateObject_2$C, templateObject_3$r;
12499
12536
 
12500
12537
  var _c0$j = ["miamLeftOfSliderTrack"];
12501
12538
  var _c1$b = ["miamSliderColored"];
@@ -13016,7 +13053,7 @@
13016
13053
  i18n_1 = MSG_EXTERNAL_8398233202919865612$$LIB__COMPONENTS_TIME_PICKER_TIME_PICKER_COMPONENT_TS_2;
13017
13054
  }
13018
13055
  else {
13019
- i18n_1 = $localize(templateObject_1$H || (templateObject_1$H = __makeTemplateObject([":\u241Fdb0ffbb13aa0ec193b8664c627359e86274d15fa\u241F8398233202919865612:h"], [":\u241Fdb0ffbb13aa0ec193b8664c627359e86274d15fa\u241F8398233202919865612:h"])));
13056
+ i18n_1 = $localize(templateObject_1$J || (templateObject_1$J = __makeTemplateObject([":\u241Fdb0ffbb13aa0ec193b8664c627359e86274d15fa\u241F8398233202919865612:h"], [":\u241Fdb0ffbb13aa0ec193b8664c627359e86274d15fa\u241F8398233202919865612:h"])));
13020
13057
  }
13021
13058
  var i18n_3;
13022
13059
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -13024,7 +13061,7 @@
13024
13061
  i18n_3 = MSG_EXTERNAL_3901733599428143571$$LIB__COMPONENTS_TIME_PICKER_TIME_PICKER_COMPONENT_TS_4;
13025
13062
  }
13026
13063
  else {
13027
- i18n_3 = $localize(templateObject_2$z || (templateObject_2$z = __makeTemplateObject([":\u241F7b4524d65d87a53c32b788d68b49e9b83e3b42b2\u241F3901733599428143571:min"], [":\u241F7b4524d65d87a53c32b788d68b49e9b83e3b42b2\u241F3901733599428143571:min"])));
13064
+ i18n_3 = $localize(templateObject_2$B || (templateObject_2$B = __makeTemplateObject([":\u241F7b4524d65d87a53c32b788d68b49e9b83e3b42b2\u241F3901733599428143571:min"], [":\u241F7b4524d65d87a53c32b788d68b49e9b83e3b42b2\u241F3901733599428143571:min"])));
13028
13065
  }
13029
13066
  return [[1, "miam-time-picker", "m-default-card", "m-small-typo"], [1, "miam-time-picker__label"], [4, "ngTemplateOutlet"], [1, "miam-time-picker__container", 3, "formGroup"], ["primaryColor", "var( --m-color-light-slate)", 3, "iconName"], ["formControlName", "hours", "onClick", "this.select();", 1, "miam-time-picker__container__input", 3, "maxLength", "blur"], [1, "miam-time-picker__container__label"], i18n_1, ["formControlName", "minutes", "onClick", "this.select();", 1, "miam-time-picker__container__input", 3, "maxLength", "blur"], i18n_3];
13030
13067
  }, template: function TimePickerComponent_Template(rf, ctx) {
@@ -13084,7 +13121,7 @@
13084
13121
  args: ['title', { static: false }]
13085
13122
  }] });
13086
13123
  })();
13087
- var templateObject_1$H, templateObject_2$z;
13124
+ var templateObject_1$J, templateObject_2$B;
13088
13125
 
13089
13126
  function ToasterComponent_div_2_Template(rf, ctx) {
13090
13127
  if (rf & 1) {
@@ -14120,7 +14157,7 @@
14120
14157
  i18n_0 = MSG_EXTERNAL_4705093661060921903$$LIB__COMPONENTS_PRODUCT_CARD_PRODUCT_CARD_COMPONENT_TS___1;
14121
14158
  }
14122
14159
  else {
14123
- i18n_0 = $localize(templateObject_1$G || (templateObject_1$G = __makeTemplateObject([":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"], [":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"])));
14160
+ i18n_0 = $localize(templateObject_1$I || (templateObject_1$I = __makeTemplateObject([":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"], [":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"])));
14124
14161
  }
14125
14162
  var i18n_2;
14126
14163
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14128,7 +14165,7 @@
14128
14165
  i18n_2 = MSG_EXTERNAL_8545968125113919212$$LIB__COMPONENTS_PRODUCT_CARD_PRODUCT_CARD_COMPONENT_TS____3;
14129
14166
  }
14130
14167
  else {
14131
- i18n_2 = $localize(templateObject_2$y || (templateObject_2$y = __makeTemplateObject([":\u241F5eb3efea30c37fe427894692cd5e01d298767657\u241F8545968125113919212:Sponsoris\u00E9"], [":\u241F5eb3efea30c37fe427894692cd5e01d298767657\u241F8545968125113919212:Sponsoris\u00E9"])));
14168
+ i18n_2 = $localize(templateObject_2$A || (templateObject_2$A = __makeTemplateObject([":\u241F5eb3efea30c37fe427894692cd5e01d298767657\u241F8545968125113919212:Sponsoris\u00E9"], [":\u241F5eb3efea30c37fe427894692cd5e01d298767657\u241F8545968125113919212:Sponsoris\u00E9"])));
14132
14169
  }
14133
14170
  var i18n_4;
14134
14171
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14136,7 +14173,7 @@
14136
14173
  i18n_4 = MSG_EXTERNAL_5442623736103363122$$LIB__COMPONENTS_PRODUCT_CARD_PRODUCT_CARD_COMPONENT_TS____5;
14137
14174
  }
14138
14175
  else {
14139
- i18n_4 = $localize(templateObject_3$p || (templateObject_3$p = __makeTemplateObject([":\u241F2c8c419dc34f3be07156ad9249f03aeb31d34872\u241F5442623736103363122:Ignorer ce produit"], [":\u241F2c8c419dc34f3be07156ad9249f03aeb31d34872\u241F5442623736103363122:Ignorer ce produit"])));
14176
+ i18n_4 = $localize(templateObject_3$q || (templateObject_3$q = __makeTemplateObject([":\u241F2c8c419dc34f3be07156ad9249f03aeb31d34872\u241F5442623736103363122:Ignorer ce produit"], [":\u241F2c8c419dc34f3be07156ad9249f03aeb31d34872\u241F5442623736103363122:Ignorer ce produit"])));
14140
14177
  }
14141
14178
  var i18n_6;
14142
14179
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14144,7 +14181,7 @@
14144
14181
  i18n_6 = MSG_EXTERNAL_4434991115235641711$$LIB__COMPONENTS_PRODUCT_CARD_PRODUCT_CARD_COMPONENT_TS____7;
14145
14182
  }
14146
14183
  else {
14147
- i18n_6 = $localize(templateObject_4$m || (templateObject_4$m = __makeTemplateObject([":\u241F0b2d6b8f0c4150bdc5313f3dc99139dc482a9265\u241F4434991115235641711: Cet ingr\u00E9dient ne sera pas ajout\u00E9 \u00E0 votre panier "], [":\u241F0b2d6b8f0c4150bdc5313f3dc99139dc482a9265\u241F4434991115235641711: Cet ingr\u00E9dient ne sera pas ajout\u00E9 \u00E0 votre panier "])));
14184
+ i18n_6 = $localize(templateObject_4$n || (templateObject_4$n = __makeTemplateObject([":\u241F0b2d6b8f0c4150bdc5313f3dc99139dc482a9265\u241F4434991115235641711: Cet ingr\u00E9dient ne sera pas ajout\u00E9 \u00E0 votre panier "], [":\u241F0b2d6b8f0c4150bdc5313f3dc99139dc482a9265\u241F4434991115235641711: Cet ingr\u00E9dient ne sera pas ajout\u00E9 \u00E0 votre panier "])));
14148
14185
  }
14149
14186
  var i18n_8;
14150
14187
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14152,7 +14189,7 @@
14152
14189
  i18n_8 = MSG_EXTERNAL_6789864402883222370$$LIB__COMPONENTS_PRODUCT_CARD_PRODUCT_CARD_COMPONENT_TS____9;
14153
14190
  }
14154
14191
  else {
14155
- i18n_8 = $localize(templateObject_5$k || (templateObject_5$k = __makeTemplateObject([":\u241F9588c99a79ba5d4038da2cd8e448a1cdb8dfc949\u241F6789864402883222370:Choisir un produit"], [":\u241F9588c99a79ba5d4038da2cd8e448a1cdb8dfc949\u241F6789864402883222370:Choisir un produit"])));
14192
+ i18n_8 = $localize(templateObject_5$l || (templateObject_5$l = __makeTemplateObject([":\u241F9588c99a79ba5d4038da2cd8e448a1cdb8dfc949\u241F6789864402883222370:Choisir un produit"], [":\u241F9588c99a79ba5d4038da2cd8e448a1cdb8dfc949\u241F6789864402883222370:Choisir un produit"])));
14156
14193
  }
14157
14194
  var i18n_10;
14158
14195
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14160,7 +14197,7 @@
14160
14197
  i18n_10 = MSG_EXTERNAL_8961751313716268502$$LIB__COMPONENTS_PRODUCT_CARD_PRODUCT_CARD_COMPONENT_TS____11;
14161
14198
  }
14162
14199
  else {
14163
- i18n_10 = $localize(templateObject_6$g || (templateObject_6$g = __makeTemplateObject([":\u241Fd195c9823cf6f3a7d9f2520d9814b18dda696d64\u241F8961751313716268502: Cet ingr\u00E9dient n\u2019est pas disponible "], [":\u241Fd195c9823cf6f3a7d9f2520d9814b18dda696d64\u241F8961751313716268502: Cet ingr\u00E9dient n\u2019est pas disponible "])));
14200
+ i18n_10 = $localize(templateObject_6$h || (templateObject_6$h = __makeTemplateObject([":\u241Fd195c9823cf6f3a7d9f2520d9814b18dda696d64\u241F8961751313716268502: Cet ingr\u00E9dient n\u2019est pas disponible "], [":\u241Fd195c9823cf6f3a7d9f2520d9814b18dda696d64\u241F8961751313716268502: Cet ingr\u00E9dient n\u2019est pas disponible "])));
14164
14201
  }
14165
14202
  var i18n_12;
14166
14203
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14168,7 +14205,7 @@
14168
14205
  i18n_12 = MSG_EXTERNAL_7389019358817586225$$LIB__COMPONENTS_PRODUCT_CARD_PRODUCT_CARD_COMPONENT_TS___13;
14169
14206
  }
14170
14207
  else {
14171
- i18n_12 = $localize(templateObject_7$d || (templateObject_7$d = __makeTemplateObject([":\u241Fb4469d81103a2a9875dcf6e019a952b9bca3c117\u241F7389019358817586225:Calcul\u00E9 pour "], [":\u241Fb4469d81103a2a9875dcf6e019a952b9bca3c117\u241F7389019358817586225:Calcul\u00E9 pour "])));
14208
+ i18n_12 = $localize(templateObject_7$e || (templateObject_7$e = __makeTemplateObject([":\u241Fb4469d81103a2a9875dcf6e019a952b9bca3c117\u241F7389019358817586225:Calcul\u00E9 pour "], [":\u241Fb4469d81103a2a9875dcf6e019a952b9bca3c117\u241F7389019358817586225:Calcul\u00E9 pour "])));
14172
14209
  }
14173
14210
  var i18n_14;
14174
14211
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14176,7 +14213,7 @@
14176
14213
  i18n_14 = MSG_EXTERNAL_8253051398336962047$$LIB__COMPONENTS_PRODUCT_CARD_PRODUCT_CARD_COMPONENT_TS___15;
14177
14214
  }
14178
14215
  else {
14179
- i18n_14 = $localize(templateObject_8$9 || (templateObject_8$9 = __makeTemplateObject([":\u241Ff0ee2f84e20252199737bc9757b04e75979cb9fe\u241F8253051398336962047: repas"], [":\u241Ff0ee2f84e20252199737bc9757b04e75979cb9fe\u241F8253051398336962047: repas"])));
14216
+ i18n_14 = $localize(templateObject_8$a || (templateObject_8$a = __makeTemplateObject([":\u241Ff0ee2f84e20252199737bc9757b04e75979cb9fe\u241F8253051398336962047: repas"], [":\u241Ff0ee2f84e20252199737bc9757b04e75979cb9fe\u241F8253051398336962047: repas"])));
14180
14217
  }
14181
14218
  return [["class", "miam-product-card__container", 3, "ngClass", 4, "ngIf"], [1, "miam-product-card__container", 3, "ngClass"], [1, "miam-product-card__header", 3, "ngClass"], [1, "miam-product-card__header-name", "miam-ds-text", "size-l", "weight-xxl", 3, "ngClass"], [1, "miam-product-card__header-quantity", "miam-ds-text", "size-s", "weight-l", 3, "ngClass"], [1, "miam-product-card__content", 3, "ngClass"], [4, "ngIf", "ngIfElse"], ["disabledProduct", ""], ["class", "miam-product-card__footer", 4, "ngIf"], [1, "miam-product-card__selected-product"], [1, "miam-product-card__picture-column"], ["alt", "product picture", 1, "miam-product-card__picture", 3, "src", "error"], [1, "miam-product-card__info-column"], [1, "miam-ds-text", "size-xs", "weight-xl", "miam-product-card__details", "product-brand"], [1, "miam-ds-text", "size-xs", "miam-product-card__details", "product-fullname"], [1, "miam-product-card__badges"], [1, "miam-ds-badge"], ["class", "miam-ds-badge outline", 4, "ngIf"], [1, "miam-product-card__replace-product", "miam-ds-button", "ghost", 3, "click"], i18n_0, [1, "miam-product-card__lower-action"], [1, "miam-product-card__price", "miam-ds-text", "size-l", "weight-xxl", 3, "price"], [1, "miam-product-card__cta"], [4, "ngIf"], [1, "miam-ds-badge", "outline"], i18n_2, [1, "miam-ds-button", "miam-product-card__ignore-product", "ghost", "small", 3, "click"], [1, "miam-product-card__disabled-text"], i18n_4, ["class", "miam-ds-button miam-product-card__add-product square primary", 3, "disabled", "click", 4, "ngIf"], ["class", "miam-ds-button miam-product-card__loading-button square primary", 4, "ngIf"], [1, "miam-ds-button", "miam-product-card__add-product", "square", "primary", 3, "disabled", "click"], ["alt", "basket icon", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Basket.svg"], [1, "miam-ds-button", "miam-product-card__loading-button", "square", "primary"], [1, "miam-ds-loader"], ["minRange", "0", 3, "value", "minusLoading", "valueChange"], [1, "miam-ds-text", "miam-product-card__disabled-text"], i18n_6, [1, "miam-product-card__select-product", "miam-ds-button", "ghost", 3, "click"], i18n_8, i18n_10, [1, "miam-product-card__footer"], [1, "miam-ds-text", "size-xs", "weight-xl", "light-text"], i18n_12, i18n_14];
14182
14219
  }, template: function ProductCardComponent_Template(rf, ctx) {
@@ -14201,7 +14238,7 @@
14201
14238
  type: i0.Input
14202
14239
  }] });
14203
14240
  })();
14204
- var templateObject_1$G, templateObject_2$y, templateObject_3$p, templateObject_4$m, templateObject_5$k, templateObject_6$g, templateObject_7$d, templateObject_8$9;
14241
+ var templateObject_1$I, templateObject_2$A, templateObject_3$q, templateObject_4$n, templateObject_5$l, templateObject_6$h, templateObject_7$e, templateObject_8$a;
14205
14242
 
14206
14243
  function ProductsPickerComponent_ng_container_3_span_3_Template(rf, ctx) {
14207
14244
  if (rf & 1) {
@@ -14452,7 +14489,7 @@
14452
14489
  i18n_0 = MSG_EXTERNAL_605370619355451874$$LIB__COMPONENTS_PRODUCTS_PICKER_PRODUCTS_PICKER_COMPONENT_TS___1;
14453
14490
  }
14454
14491
  else {
14455
- i18n_0 = $localize(templateObject_1$F || (templateObject_1$F = __makeTemplateObject([":\u241Ff2568064e2473c7c3d8d97951a6972d1ff930a96\u241F605370619355451874: ingr\u00E9dients"], [":\u241Ff2568064e2473c7c3d8d97951a6972d1ff930a96\u241F605370619355451874: ingr\u00E9dients"])));
14492
+ i18n_0 = $localize(templateObject_1$H || (templateObject_1$H = __makeTemplateObject([":\u241Ff2568064e2473c7c3d8d97951a6972d1ff930a96\u241F605370619355451874: ingr\u00E9dients"], [":\u241Ff2568064e2473c7c3d8d97951a6972d1ff930a96\u241F605370619355451874: ingr\u00E9dients"])));
14456
14493
  }
14457
14494
  var i18n_2;
14458
14495
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14460,7 +14497,7 @@
14460
14497
  i18n_2 = MSG_EXTERNAL_2503766562931300230$$LIB__COMPONENTS_PRODUCTS_PICKER_PRODUCTS_PICKER_COMPONENT_TS___3;
14461
14498
  }
14462
14499
  else {
14463
- i18n_2 = $localize(templateObject_2$x || (templateObject_2$x = __makeTemplateObject([":\u241Fe75af30c885be857c622a937ed16d2420bb56573\u241F2503766562931300230: ingr\u00E9dient"], [":\u241Fe75af30c885be857c622a937ed16d2420bb56573\u241F2503766562931300230: ingr\u00E9dient"])));
14500
+ i18n_2 = $localize(templateObject_2$z || (templateObject_2$z = __makeTemplateObject([":\u241Fe75af30c885be857c622a937ed16d2420bb56573\u241F2503766562931300230: ingr\u00E9dient"], [":\u241Fe75af30c885be857c622a937ed16d2420bb56573\u241F2503766562931300230: ingr\u00E9dient"])));
14464
14501
  }
14465
14502
  var i18n_4;
14466
14503
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14468,7 +14505,7 @@
14468
14505
  i18n_4 = MSG_EXTERNAL_2731668650375138999$$LIB__COMPONENTS_PRODUCTS_PICKER_PRODUCTS_PICKER_COMPONENT_TS__5;
14469
14506
  }
14470
14507
  else {
14471
- i18n_4 = $localize(templateObject_3$o || (templateObject_3$o = __makeTemplateObject([":\u241Fe41275de6f81d16eaa6e8a189c3dc4667c046e6e\u241F2731668650375138999: D\u00E9j\u00E0 dans le placard "], [":\u241Fe41275de6f81d16eaa6e8a189c3dc4667c046e6e\u241F2731668650375138999: D\u00E9j\u00E0 dans le placard "])));
14508
+ i18n_4 = $localize(templateObject_3$p || (templateObject_3$p = __makeTemplateObject([":\u241Fe41275de6f81d16eaa6e8a189c3dc4667c046e6e\u241F2731668650375138999: D\u00E9j\u00E0 dans le placard "], [":\u241Fe41275de6f81d16eaa6e8a189c3dc4667c046e6e\u241F2731668650375138999: D\u00E9j\u00E0 dans le placard "])));
14472
14509
  }
14473
14510
  var i18n_6;
14474
14511
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14476,7 +14513,7 @@
14476
14513
  i18n_6 = MSG_EXTERNAL_7578478170177927970$$LIB__COMPONENTS_PRODUCTS_PICKER_PRODUCTS_PICKER_COMPONENT_TS__7;
14477
14514
  }
14478
14515
  else {
14479
- i18n_6 = $localize(templateObject_4$l || (templateObject_4$l = __makeTemplateObject([":\u241F197e633392ff553015c1931947781d9ebba476b9\u241F7578478170177927970:Articles indisponibles"], [":\u241F197e633392ff553015c1931947781d9ebba476b9\u241F7578478170177927970:Articles indisponibles"])));
14516
+ i18n_6 = $localize(templateObject_4$m || (templateObject_4$m = __makeTemplateObject([":\u241F197e633392ff553015c1931947781d9ebba476b9\u241F7578478170177927970:Articles indisponibles"], [":\u241F197e633392ff553015c1931947781d9ebba476b9\u241F7578478170177927970:Articles indisponibles"])));
14480
14517
  }
14481
14518
  var i18n_8;
14482
14519
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14484,7 +14521,7 @@
14484
14521
  i18n_8 = MSG_EXTERNAL_7935172570546041466$$LIB__COMPONENTS_PRODUCTS_PICKER_PRODUCTS_PICKER_COMPONENT_TS__9;
14485
14522
  }
14486
14523
  else {
14487
- i18n_8 = $localize(templateObject_5$j || (templateObject_5$j = __makeTemplateObject([":\u241Fe98c28a19e26d5768391fd181582d011334dac18\u241F7935172570546041466:Voir plus d'id\u00E9es repas"], [":\u241Fe98c28a19e26d5768391fd181582d011334dac18\u241F7935172570546041466:Voir plus d'id\u00E9es repas"])));
14524
+ i18n_8 = $localize(templateObject_5$k || (templateObject_5$k = __makeTemplateObject([":\u241Fe98c28a19e26d5768391fd181582d011334dac18\u241F7935172570546041466:Voir plus d'id\u00E9es repas"], [":\u241Fe98c28a19e26d5768391fd181582d011334dac18\u241F7935172570546041466:Voir plus d'id\u00E9es repas"])));
14488
14525
  }
14489
14526
  var i18n_10;
14490
14527
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14492,7 +14529,7 @@
14492
14529
  i18n_10 = MSG_EXTERNAL_7935172570546041466$$LIB__COMPONENTS_PRODUCTS_PICKER_PRODUCTS_PICKER_COMPONENT_TS__11;
14493
14530
  }
14494
14531
  else {
14495
- i18n_10 = $localize(templateObject_6$f || (templateObject_6$f = __makeTemplateObject([":\u241Fe98c28a19e26d5768391fd181582d011334dac18\u241F7935172570546041466:Voir plus d'id\u00E9es repas"], [":\u241Fe98c28a19e26d5768391fd181582d011334dac18\u241F7935172570546041466:Voir plus d'id\u00E9es repas"])));
14532
+ i18n_10 = $localize(templateObject_6$g || (templateObject_6$g = __makeTemplateObject([":\u241Fe98c28a19e26d5768391fd181582d011334dac18\u241F7935172570546041466:Voir plus d'id\u00E9es repas"], [":\u241Fe98c28a19e26d5768391fd181582d011334dac18\u241F7935172570546041466:Voir plus d'id\u00E9es repas"])));
14496
14533
  }
14497
14534
  var i18n_12;
14498
14535
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14500,7 +14537,7 @@
14500
14537
  i18n_12 = MSG_EXTERNAL_7164540129836416689$$LIB__COMPONENTS_PRODUCTS_PICKER_PRODUCTS_PICKER_COMPONENT_TS__13;
14501
14538
  }
14502
14539
  else {
14503
- i18n_12 = $localize(templateObject_7$c || (templateObject_7$c = __makeTemplateObject([":\u241F9915a302120305a1048e661fa028815cc83db69d\u241F7164540129836416689:Mentions l\u00E9gales"], [":\u241F9915a302120305a1048e661fa028815cc83db69d\u241F7164540129836416689:Mentions l\u00E9gales"])));
14540
+ i18n_12 = $localize(templateObject_7$d || (templateObject_7$d = __makeTemplateObject([":\u241F9915a302120305a1048e661fa028815cc83db69d\u241F7164540129836416689:Mentions l\u00E9gales"], [":\u241F9915a302120305a1048e661fa028815cc83db69d\u241F7164540129836416689:Mentions l\u00E9gales"])));
14504
14541
  }
14505
14542
  var i18n_14;
14506
14543
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14508,7 +14545,7 @@
14508
14545
  i18n_14 = MSG_EXTERNAL_2791054456946858131$$LIB__COMPONENTS_PRODUCTS_PICKER_PRODUCTS_PICKER_COMPONENT_TS__15;
14509
14546
  }
14510
14547
  else {
14511
- i18n_14 = $localize(templateObject_8$8 || (templateObject_8$8 = __makeTemplateObject([":\u241Ff363139a8ec757d4ac80573845002c3e462c4bca\u241F2791054456946858131:L'abus d'alcool est dangereux pour la sant\u00E9. A consommer avec mod\u00E9ration. Vente interdite aux mineurs."], [":\u241Ff363139a8ec757d4ac80573845002c3e462c4bca\u241F2791054456946858131:L'abus d'alcool est dangereux pour la sant\u00E9. A consommer avec mod\u00E9ration. Vente interdite aux mineurs."])));
14548
+ i18n_14 = $localize(templateObject_8$9 || (templateObject_8$9 = __makeTemplateObject([":\u241Ff363139a8ec757d4ac80573845002c3e462c4bca\u241F2791054456946858131:L'abus d'alcool est dangereux pour la sant\u00E9. A consommer avec mod\u00E9ration. Vente interdite aux mineurs."], [":\u241Ff363139a8ec757d4ac80573845002c3e462c4bca\u241F2791054456946858131:L'abus d'alcool est dangereux pour la sant\u00E9. A consommer avec mod\u00E9ration. Vente interdite aux mineurs."])));
14512
14549
  }
14513
14550
  return [[1, "miam-products-picker__container"], [1, "miam-products-picker__header"], [1, "miam-products-picker__header-text", "miam-ds-text", "weight-xxl"], [4, "ngIf"], ["class", "miam-recipe-details__guest-counter", 3, "floating", "value", "minRange", "valueChange", 4, "ngIf"], ["class", " miam-ds-loader miam-products-picker__loader", 4, "ngIf"], ["class", "miam-products-picker__list", 4, "ngIf"], [1, "miam-products-picker__secondary-list"], [1, "miam-products-picker__more"], ["class", "miam-products-picker__more-anchor", 3, "href", 4, "ngIf", "ngIfElse"], ["noAnchor", ""], ["class", "miam-products-picker__legal-notices", 4, "ngIf"], i18n_0, i18n_2, [1, "miam-recipe-details__guest-counter", 3, "floating", "value", "minRange", "valueChange"], [1, "miam-ds-loader", "miam-products-picker__loader"], [1, "miam-products-picker__list"], ["class", "miam-products-picker__items", 3, "id", "product", "originTrace", 4, "ngFor", "ngForOf", "ngForTrackBy"], [1, "miam-products-picker__items", 3, "id", "product", "originTrace"], [1, "miam-products-picker__often-ignored-list", 3, "isCollapsed", "isCollapsedChange"], [1, "miam-ds-text", "weight-xxl"], i18n_4, [1, "miam-products-picker__unavailable-list", 3, "isCollapsed", "isCollapsedChange"], i18n_6, [1, "miam-products-picker__more-anchor", 3, "href"], [1, "miam-products-picker__go-to-catalog-button", "miam-ds-button", "secondary"], i18n_8, [1, "miam-products-picker__close-modal-button", "miam-ds-button", "secondary", 3, "click"], i18n_10, [1, "miam-products-picker__legal-notices"], [1, "miam-ds-text", "weight-xxl", "miam-products-picker__legal-notices-header"], i18n_12, [1, "miam-products-picker__legal-notices-content"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/recipe-details/recipe-details-legal-notices.svg"], i18n_14];
14514
14551
  }, template: function ProductsPickerComponent_Template(rf, ctx) {
@@ -14571,7 +14608,7 @@
14571
14608
  type: i0.Output
14572
14609
  }] });
14573
14610
  })();
14574
- var templateObject_1$F, templateObject_2$x, templateObject_3$o, templateObject_4$l, templateObject_5$j, templateObject_6$f, templateObject_7$c, templateObject_8$8;
14611
+ var templateObject_1$H, templateObject_2$z, templateObject_3$p, templateObject_4$m, templateObject_5$k, templateObject_6$g, templateObject_7$d, templateObject_8$9;
14575
14612
 
14576
14613
  function NoPosSelectedComponent_ng_container_1_Template(rf, ctx) {
14577
14614
  if (rf & 1) {
@@ -14620,7 +14657,7 @@
14620
14657
  i18n_0 = MSG_EXTERNAL_951171230257254217$$LIB__COMPONENTS_NO_POS_SELECTED_NO_POS_SELECTED_COMPONENT_TS_1;
14621
14658
  }
14622
14659
  else {
14623
- i18n_0 = $localize(templateObject_1$E || (templateObject_1$E = __makeTemplateObject([":\u241Fc8f80d9888c20c5fefa1a4273529366bdb421476\u241F951171230257254217:S\u00E9lectionner un magasin"], [":\u241Fc8f80d9888c20c5fefa1a4273529366bdb421476\u241F951171230257254217:S\u00E9lectionner un magasin"])));
14660
+ i18n_0 = $localize(templateObject_1$G || (templateObject_1$G = __makeTemplateObject([":\u241Fc8f80d9888c20c5fefa1a4273529366bdb421476\u241F951171230257254217:S\u00E9lectionner un magasin"], [":\u241Fc8f80d9888c20c5fefa1a4273529366bdb421476\u241F951171230257254217:S\u00E9lectionner un magasin"])));
14624
14661
  }
14625
14662
  var i18n_2;
14626
14663
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14628,7 +14665,7 @@
14628
14665
  i18n_2 = MSG_EXTERNAL_4902959158996033$$LIB__COMPONENTS_NO_POS_SELECTED_NO_POS_SELECTED_COMPONENT_TS__3;
14629
14666
  }
14630
14667
  else {
14631
- i18n_2 = $localize(templateObject_2$w || (templateObject_2$w = __makeTemplateObject([":\u241F510e53ffe7595eaaef4ee1c3821c11808214a699\u241F4902959158996033: D\u00E9sol\u00E9, ce magasin ne permet pas de s\u00E9lectionner des repas "], [":\u241F510e53ffe7595eaaef4ee1c3821c11808214a699\u241F4902959158996033: D\u00E9sol\u00E9, ce magasin ne permet pas de s\u00E9lectionner des repas "])));
14668
+ i18n_2 = $localize(templateObject_2$y || (templateObject_2$y = __makeTemplateObject([":\u241F510e53ffe7595eaaef4ee1c3821c11808214a699\u241F4902959158996033: D\u00E9sol\u00E9, ce magasin ne permet pas de s\u00E9lectionner des repas "], [":\u241F510e53ffe7595eaaef4ee1c3821c11808214a699\u241F4902959158996033: D\u00E9sol\u00E9, ce magasin ne permet pas de s\u00E9lectionner des repas "])));
14632
14669
  }
14633
14670
  var i18n_4;
14634
14671
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14636,7 +14673,7 @@
14636
14673
  i18n_4 = MSG_EXTERNAL_2921598154093258344$$LIB__COMPONENTS_NO_POS_SELECTED_NO_POS_SELECTED_COMPONENT_TS__5;
14637
14674
  }
14638
14675
  else {
14639
- i18n_4 = $localize(templateObject_3$n || (templateObject_3$n = __makeTemplateObject([":\u241Fd6ca42e0c08ef48759f6fde25c12964a02a6c502\u241F2921598154093258344: Vous pouvez s\u00E9lectionner un autre magasin ou consulter la fiche recette "], [":\u241Fd6ca42e0c08ef48759f6fde25c12964a02a6c502\u241F2921598154093258344: Vous pouvez s\u00E9lectionner un autre magasin ou consulter la fiche recette "])));
14676
+ i18n_4 = $localize(templateObject_3$o || (templateObject_3$o = __makeTemplateObject([":\u241Fd6ca42e0c08ef48759f6fde25c12964a02a6c502\u241F2921598154093258344: Vous pouvez s\u00E9lectionner un autre magasin ou consulter la fiche recette "], [":\u241Fd6ca42e0c08ef48759f6fde25c12964a02a6c502\u241F2921598154093258344: Vous pouvez s\u00E9lectionner un autre magasin ou consulter la fiche recette "])));
14640
14677
  }
14641
14678
  var i18n_6;
14642
14679
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14644,7 +14681,7 @@
14644
14681
  i18n_6 = MSG_EXTERNAL_6530301909461759819$$LIB__COMPONENTS_NO_POS_SELECTED_NO_POS_SELECTED_COMPONENT_TS__7;
14645
14682
  }
14646
14683
  else {
14647
- i18n_6 = $localize(templateObject_4$k || (templateObject_4$k = __makeTemplateObject([":\u241F0289bb85752fb91a75d87fa9e26df1d4647099ab\u241F6530301909461759819: Vous n\u2019avez pas s\u00E9lectionn\u00E9 de magasin "], [":\u241F0289bb85752fb91a75d87fa9e26df1d4647099ab\u241F6530301909461759819: Vous n\u2019avez pas s\u00E9lectionn\u00E9 de magasin "])));
14684
+ i18n_6 = $localize(templateObject_4$l || (templateObject_4$l = __makeTemplateObject([":\u241F0289bb85752fb91a75d87fa9e26df1d4647099ab\u241F6530301909461759819: Vous n\u2019avez pas s\u00E9lectionn\u00E9 de magasin "], [":\u241F0289bb85752fb91a75d87fa9e26df1d4647099ab\u241F6530301909461759819: Vous n\u2019avez pas s\u00E9lectionn\u00E9 de magasin "])));
14648
14685
  }
14649
14686
  var i18n_8;
14650
14687
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14652,7 +14689,7 @@
14652
14689
  i18n_8 = MSG_EXTERNAL_1950335304622346416$$LIB__COMPONENTS_NO_POS_SELECTED_NO_POS_SELECTED_COMPONENT_TS__9;
14653
14690
  }
14654
14691
  else {
14655
- i18n_8 = $localize(templateObject_5$i || (templateObject_5$i = __makeTemplateObject([":\u241F88974623a3e9dc18bb91128257de4e5f0c5c2303\u241F1950335304622346416: Vous devez s\u00E9lectionner un magasin pour visualiser les produits de cette recette "], [":\u241F88974623a3e9dc18bb91128257de4e5f0c5c2303\u241F1950335304622346416: Vous devez s\u00E9lectionner un magasin pour visualiser les produits de cette recette "])));
14692
+ i18n_8 = $localize(templateObject_5$j || (templateObject_5$j = __makeTemplateObject([":\u241F88974623a3e9dc18bb91128257de4e5f0c5c2303\u241F1950335304622346416: Vous devez s\u00E9lectionner un magasin pour visualiser les produits de cette recette "], [":\u241F88974623a3e9dc18bb91128257de4e5f0c5c2303\u241F1950335304622346416: Vous devez s\u00E9lectionner un magasin pour visualiser les produits de cette recette "])));
14656
14693
  }
14657
14694
  return [[1, "miam-no-pos-selected"], [4, "ngIf", "ngIfElse"], ["noPos", ""], [1, "miam-ds-button", "miam-no-pos-selected__select-pos-button", "primary", 3, "click"], i18n_0, ["src", "https://storage.googleapis.com/assets.miam.tech/generic/images/product-issue.png", "alt", "No pos selected", 1, "miam-no-pos-selected__picture"], [1, "miam-ds-text", "miam-no-pos-selected__title", "size-l", "weight-xl"], i18n_2, [1, "miam-ds-text", "miam-no-pos-selected__description"], i18n_4, ["src", "https://storage.googleapis.com/assets.miam.tech/generic/images/pos.svg", "alt", "No pos selected", 1, "miam-no-pos-selected__picture"], i18n_6, i18n_8];
14658
14695
  }, template: function NoPosSelectedComponent_Template(rf, ctx) {
@@ -14690,7 +14727,7 @@
14690
14727
  type: i0.Output
14691
14728
  }] });
14692
14729
  })();
14693
- var templateObject_1$E, templateObject_2$w, templateObject_3$n, templateObject_4$k, templateObject_5$i;
14730
+ var templateObject_1$G, templateObject_2$y, templateObject_3$o, templateObject_4$l, templateObject_5$j;
14694
14731
 
14695
14732
  var ProductAdditionCardComponent = /** @class */ (function () {
14696
14733
  function ProductAdditionCardComponent(productAdditionService) {
@@ -14706,7 +14743,7 @@
14706
14743
  i18n_0 = MSG_EXTERNAL_1525113191484251425$$LIB__COMPONENTS_PRODUCT_ADDITION_CARD_PRODUCT_ADDITION_CARD_COMPONENT_TS_1;
14707
14744
  }
14708
14745
  else {
14709
- i18n_0 = $localize(templateObject_1$D || (templateObject_1$D = __makeTemplateObject([":\u241Ff6a73fdf0e43fb78d2badaca50e79f1f5f496258\u241F1525113191484251425:Besoin de quelque chose en particulier ?"], [":\u241Ff6a73fdf0e43fb78d2badaca50e79f1f5f496258\u241F1525113191484251425:Besoin de quelque chose en particulier ?"])));
14746
+ i18n_0 = $localize(templateObject_1$F || (templateObject_1$F = __makeTemplateObject([":\u241Ff6a73fdf0e43fb78d2badaca50e79f1f5f496258\u241F1525113191484251425:Besoin de quelque chose en particulier ?"], [":\u241Ff6a73fdf0e43fb78d2badaca50e79f1f5f496258\u241F1525113191484251425:Besoin de quelque chose en particulier ?"])));
14710
14747
  }
14711
14748
  var i18n_2;
14712
14749
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -14714,7 +14751,7 @@
14714
14751
  i18n_2 = MSG_EXTERNAL_3600300940826652542$$LIB__COMPONENTS_PRODUCT_ADDITION_CARD_PRODUCT_ADDITION_CARD_COMPONENT_TS_3;
14715
14752
  }
14716
14753
  else {
14717
- i18n_2 = $localize(templateObject_2$v || (templateObject_2$v = __makeTemplateObject([":\u241F02d62e50d45d9f9373ea25239767f0e2ae57e34d\u241F3600300940826652542:Ajouter un produit"], [":\u241F02d62e50d45d9f9373ea25239767f0e2ae57e34d\u241F3600300940826652542:Ajouter un produit"])));
14754
+ i18n_2 = $localize(templateObject_2$x || (templateObject_2$x = __makeTemplateObject([":\u241F02d62e50d45d9f9373ea25239767f0e2ae57e34d\u241F3600300940826652542:Ajouter un produit"], [":\u241F02d62e50d45d9f9373ea25239767f0e2ae57e34d\u241F3600300940826652542:Ajouter un produit"])));
14718
14755
  }
14719
14756
  return [[1, "miam-product-addition-card"], [1, "miam-product-addition-card__title"], i18n_0, [1, "miam-product-addition-card__button", "miam-ds-button", "secondary", "small", 3, "click"], i18n_2];
14720
14757
  }, template: function ProductAdditionCardComponent_Template(rf, ctx) {
@@ -14744,7 +14781,7 @@
14744
14781
  }]
14745
14782
  }], function () { return [{ type: ProductAdditionService }]; }, null);
14746
14783
  })();
14747
- var templateObject_1$D, templateObject_2$v;
14784
+ var templateObject_1$F, templateObject_2$x;
14748
14785
 
14749
14786
  var StoreLocatorComponent = /** @class */ (function (_super) {
14750
14787
  __extends(StoreLocatorComponent, _super);
@@ -14777,10 +14814,10 @@
14777
14814
  return StoreLocatorComponent;
14778
14815
  }(EventTracerComponent));
14779
14816
  StoreLocatorComponent.ɵfac = function StoreLocatorComponent_Factory(t) { return new (t || StoreLocatorComponent)(i0__namespace.ɵɵdirectiveInject(AnalyticsService), i0__namespace.ɵɵdirectiveInject(StoreLocatorService), i0__namespace.ɵɵdirectiveInject(UserService), i0__namespace.ɵɵdirectiveInject(i0__namespace.ChangeDetectorRef)); };
14780
- StoreLocatorComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: StoreLocatorComponent, selectors: [["ng-miam-store-locator"]], features: [i0__namespace.ɵɵInheritDefinitionFeature], decls: 2, vars: 4, consts: [[3, "show", "geolocationCoordinates", "posIdChange", "showChange"]], template: function StoreLocatorComponent_Template(rf, ctx) {
14817
+ StoreLocatorComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: StoreLocatorComponent, selectors: [["ng-miam-store-locator"]], features: [i0__namespace.ɵɵInheritDefinitionFeature], decls: 2, vars: 4, consts: [[3, "show", "geolocationCoordinates", "posIdChange", "searchChange", "showChange"]], template: function StoreLocatorComponent_Template(rf, ctx) {
14781
14818
  if (rf & 1) {
14782
14819
  i0__namespace.ɵɵelementStart(0, "mealz-store-locator", 0);
14783
- i0__namespace.ɵɵlistener("posIdChange", function StoreLocatorComponent_Template_mealz_store_locator_posIdChange_0_listener($event) { return ctx.storeLocatorService.changePosAndSupplier($event, ctx.eventTrace()); })("showChange", function StoreLocatorComponent_Template_mealz_store_locator_showChange_0_listener($event) { return ctx.storeLocatorService.showChange($event); });
14820
+ i0__namespace.ɵɵlistener("posIdChange", function StoreLocatorComponent_Template_mealz_store_locator_posIdChange_0_listener($event) { return ctx.storeLocatorService.changePosAndSupplier($event, ctx.eventTrace()); })("searchChange", function StoreLocatorComponent_Template_mealz_store_locator_searchChange_0_listener($event) { return ctx.storeLocatorService.searchChange($event, ctx.eventTrace()); })("showChange", function StoreLocatorComponent_Template_mealz_store_locator_showChange_0_listener($event) { return ctx.storeLocatorService.showChange($event); });
14784
14821
  i0__namespace.ɵɵpipe(1, "async");
14785
14822
  i0__namespace.ɵɵelementEnd();
14786
14823
  }
@@ -15245,7 +15282,7 @@
15245
15282
  i18n_0 = MSG_EXTERNAL_5279571682523834027$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_DISABLED_BASKET_PREVIEW_DISABLED_COMPONENT_TS__1;
15246
15283
  }
15247
15284
  else {
15248
- i18n_0 = $localize(templateObject_1$C || (templateObject_1$C = __makeTemplateObject([":\u241Fcf4f536e5a68ceab8fbe420ae968c0c7d0f63e0e\u241F5279571682523834027: Article(s) indisponible(s) "], [":\u241Fcf4f536e5a68ceab8fbe420ae968c0c7d0f63e0e\u241F5279571682523834027: Article(s) indisponible(s) "])));
15285
+ i18n_0 = $localize(templateObject_1$E || (templateObject_1$E = __makeTemplateObject([":\u241Fcf4f536e5a68ceab8fbe420ae968c0c7d0f63e0e\u241F5279571682523834027: Article(s) indisponible(s) "], [":\u241Fcf4f536e5a68ceab8fbe420ae968c0c7d0f63e0e\u241F5279571682523834027: Article(s) indisponible(s) "])));
15249
15286
  }
15250
15287
  var i18n_2;
15251
15288
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -15253,7 +15290,7 @@
15253
15290
  i18n_2 = MSG_EXTERNAL_7543346336065618825$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_DISABLED_BASKET_PREVIEW_DISABLED_COMPONENT_TS__3;
15254
15291
  }
15255
15292
  else {
15256
- i18n_2 = $localize(templateObject_2$u || (templateObject_2$u = __makeTemplateObject([":\u241Fe9c0f99c9b8cf81911ed3f238e2203c6ce78b89b\u241F7543346336065618825: Article(s) retir\u00E9(s) du panier "], [":\u241Fe9c0f99c9b8cf81911ed3f238e2203c6ce78b89b\u241F7543346336065618825: Article(s) retir\u00E9(s) du panier "])));
15293
+ i18n_2 = $localize(templateObject_2$w || (templateObject_2$w = __makeTemplateObject([":\u241Fe9c0f99c9b8cf81911ed3f238e2203c6ce78b89b\u241F7543346336065618825: Article(s) retir\u00E9(s) du panier "], [":\u241Fe9c0f99c9b8cf81911ed3f238e2203c6ce78b89b\u241F7543346336065618825: Article(s) retir\u00E9(s) du panier "])));
15257
15294
  }
15258
15295
  var i18n_4;
15259
15296
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -15261,7 +15298,7 @@
15261
15298
  i18n_4 = MSG_EXTERNAL_6646707544911031345$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_DISABLED_BASKET_PREVIEW_DISABLED_COMPONENT_TS__5;
15262
15299
  }
15263
15300
  else {
15264
- i18n_4 = $localize(templateObject_3$m || (templateObject_3$m = __makeTemplateObject([":\u241F147ab826fc3478c8b4429cc972679cf659bb8100\u241F6646707544911031345: D\u00E9j\u00E0 dans vos placards ? "], [":\u241F147ab826fc3478c8b4429cc972679cf659bb8100\u241F6646707544911031345: D\u00E9j\u00E0 dans vos placards ? "])));
15301
+ i18n_4 = $localize(templateObject_3$n || (templateObject_3$n = __makeTemplateObject([":\u241F147ab826fc3478c8b4429cc972679cf659bb8100\u241F6646707544911031345: D\u00E9j\u00E0 dans vos placards ? "], [":\u241F147ab826fc3478c8b4429cc972679cf659bb8100\u241F6646707544911031345: D\u00E9j\u00E0 dans vos placards ? "])));
15265
15302
  }
15266
15303
  var i18n_6;
15267
15304
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -15269,7 +15306,7 @@
15269
15306
  i18n_6 = MSG_EXTERNAL_70397346439942337$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_DISABLED_BASKET_PREVIEW_DISABLED_COMPONENT_TS_____7;
15270
15307
  }
15271
15308
  else {
15272
- i18n_6 = $localize(templateObject_4$j || (templateObject_4$j = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
15309
+ i18n_6 = $localize(templateObject_4$k || (templateObject_4$k = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
15273
15310
  }
15274
15311
  var i18n_8;
15275
15312
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -15277,7 +15314,7 @@
15277
15314
  i18n_8 = MSG_EXTERNAL_7632520172633395699$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_DISABLED_BASKET_PREVIEW_DISABLED_COMPONENT_TS_____9;
15278
15315
  }
15279
15316
  else {
15280
- i18n_8 = $localize(templateObject_5$h || (templateObject_5$h = __makeTemplateObject([":\u241Fe31c09107c2be79ac21e40a68b0f4ab125f4ab8b\u241F7632520172633395699: au panier"], [":\u241Fe31c09107c2be79ac21e40a68b0f4ab125f4ab8b\u241F7632520172633395699: au panier"])));
15317
+ i18n_8 = $localize(templateObject_5$i || (templateObject_5$i = __makeTemplateObject([":\u241Fe31c09107c2be79ac21e40a68b0f4ab125f4ab8b\u241F7632520172633395699: au panier"], [":\u241Fe31c09107c2be79ac21e40a68b0f4ab125f4ab8b\u241F7632520172633395699: au panier"])));
15281
15318
  }
15282
15319
  return [[1, "miam-basket-preview-disabled"], [1, "miam-basket-preview-disabled__header", 3, "ngClass", "click"], [1, "miam-basket-preview-disabled__header__caption"], ["class", "miam-basket-preview-disabled__header__caption__text", 4, "ngIf"], [1, "miam-basket-preview-disabled__header__caption__number"], [1, "miam-basket-preview-disabled__header__chevron", 3, "ngClass"], ["height", "32", "width", "32", "primaryColor", "#fff", 3, "iconName"], [4, "ngIf"], [1, "miam-basket-preview-disabled__header__caption__text"], i18n_0, i18n_2, i18n_4, ["class", "miam-basket-preview-disabled__entry", 4, "ngFor", "ngForOf"], [1, "miam-basket-preview-disabled__entry"], [1, "text-muted"], ["class", "m-button-grey", 3, "ngClass", "click", 4, "ngIf"], [1, "m-button-grey", 3, "ngClass", "click"], i18n_6, i18n_8];
15283
15320
  }, template: function BasketPreviewDisabledComponent_Template(rf, ctx) {
@@ -15343,7 +15380,7 @@
15343
15380
  args: ['window:resize', ['$event']]
15344
15381
  }] });
15345
15382
  })();
15346
- var templateObject_1$C, templateObject_2$u, templateObject_3$m, templateObject_4$j, templateObject_5$h;
15383
+ var templateObject_1$E, templateObject_2$w, templateObject_3$n, templateObject_4$k, templateObject_5$i;
15347
15384
 
15348
15385
  function BasketPreviewLineComponent_ng_container_0_div_5_Template(rf, ctx) {
15349
15386
  if (rf & 1) {
@@ -16229,7 +16266,7 @@
16229
16266
  i18n_0 = MSG_EXTERNAL_6749102764655247912$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS__1;
16230
16267
  }
16231
16268
  else {
16232
- i18n_0 = $localize(templateObject_1$B || (templateObject_1$B = __makeTemplateObject([":\u241Fd68184b8cb73679ad3ecea9935d57f739bea4871\u241F6749102764655247912:Voir les produits"], [":\u241Fd68184b8cb73679ad3ecea9935d57f739bea4871\u241F6749102764655247912:Voir les produits"])));
16269
+ i18n_0 = $localize(templateObject_1$D || (templateObject_1$D = __makeTemplateObject([":\u241Fd68184b8cb73679ad3ecea9935d57f739bea4871\u241F6749102764655247912:Voir les produits"], [":\u241Fd68184b8cb73679ad3ecea9935d57f739bea4871\u241F6749102764655247912:Voir les produits"])));
16233
16270
  }
16234
16271
  var i18n_2;
16235
16272
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16237,7 +16274,7 @@
16237
16274
  i18n_2 = MSG_EXTERNAL_5144484951400113194$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS___3;
16238
16275
  }
16239
16276
  else {
16240
- i18n_2 = $localize(templateObject_2$t || (templateObject_2$t = __makeTemplateObject([":\u241F84c216d92afc9edd2b3bd2175d38197737ff86c5\u241F5144484951400113194:produit"], [":\u241F84c216d92afc9edd2b3bd2175d38197737ff86c5\u241F5144484951400113194:produit"])));
16277
+ i18n_2 = $localize(templateObject_2$v || (templateObject_2$v = __makeTemplateObject([":\u241F84c216d92afc9edd2b3bd2175d38197737ff86c5\u241F5144484951400113194:produit"], [":\u241F84c216d92afc9edd2b3bd2175d38197737ff86c5\u241F5144484951400113194:produit"])));
16241
16278
  }
16242
16279
  var i18n_4;
16243
16280
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16245,7 +16282,7 @@
16245
16282
  i18n_4 = MSG_EXTERNAL_1112144680738962826$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS___5;
16246
16283
  }
16247
16284
  else {
16248
- i18n_4 = $localize(templateObject_3$l || (templateObject_3$l = __makeTemplateObject([":\u241F2571d7fbaeed8646df6ee852fb5d94185b0efd88\u241F1112144680738962826:produits"], [":\u241F2571d7fbaeed8646df6ee852fb5d94185b0efd88\u241F1112144680738962826:produits"])));
16285
+ i18n_4 = $localize(templateObject_3$m || (templateObject_3$m = __makeTemplateObject([":\u241F2571d7fbaeed8646df6ee852fb5d94185b0efd88\u241F1112144680738962826:produits"], [":\u241F2571d7fbaeed8646df6ee852fb5d94185b0efd88\u241F1112144680738962826:produits"])));
16249
16286
  }
16250
16287
  var i18n_6;
16251
16288
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16253,7 +16290,7 @@
16253
16290
  i18n_6 = MSG_EXTERNAL_2861269811387022272$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS___7;
16254
16291
  }
16255
16292
  else {
16256
- i18n_6 = $localize(templateObject_4$i || (templateObject_4$i = __makeTemplateObject([":\u241F2706048545fce399fb75b672add0eb745e09ada5\u241F2861269811387022272:soit "], [":\u241F2706048545fce399fb75b672add0eb745e09ada5\u241F2861269811387022272:soit "])));
16293
+ i18n_6 = $localize(templateObject_4$j || (templateObject_4$j = __makeTemplateObject([":\u241F2706048545fce399fb75b672add0eb745e09ada5\u241F2861269811387022272:soit "], [":\u241F2706048545fce399fb75b672add0eb745e09ada5\u241F2861269811387022272:soit "])));
16257
16294
  }
16258
16295
  var i18n_8;
16259
16296
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16261,7 +16298,7 @@
16261
16298
  i18n_8 = MSG_EXTERNAL_795612159703082771$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS___9;
16262
16299
  }
16263
16300
  else {
16264
- i18n_8 = $localize(templateObject_5$g || (templateObject_5$g = __makeTemplateObject([":\u241F1c70617413b748533642488f2e142c2f06296f8f\u241F795612159703082771:/pers"], [":\u241F1c70617413b748533642488f2e142c2f06296f8f\u241F795612159703082771:/pers"])));
16301
+ i18n_8 = $localize(templateObject_5$h || (templateObject_5$h = __makeTemplateObject([":\u241F1c70617413b748533642488f2e142c2f06296f8f\u241F795612159703082771:/pers"], [":\u241F1c70617413b748533642488f2e142c2f06296f8f\u241F795612159703082771:/pers"])));
16265
16302
  }
16266
16303
  var i18n_13;
16267
16304
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16269,7 +16306,7 @@
16269
16306
  i18n_13 = MSG_EXTERNAL_8545968125113919212$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS___14;
16270
16307
  }
16271
16308
  else {
16272
- i18n_13 = $localize(templateObject_6$e || (templateObject_6$e = __makeTemplateObject([":\u241F5eb3efea30c37fe427894692cd5e01d298767657\u241F8545968125113919212:Sponsoris\u00E9"], [":\u241F5eb3efea30c37fe427894692cd5e01d298767657\u241F8545968125113919212:Sponsoris\u00E9"])));
16309
+ i18n_13 = $localize(templateObject_6$f || (templateObject_6$f = __makeTemplateObject([":\u241F5eb3efea30c37fe427894692cd5e01d298767657\u241F8545968125113919212:Sponsoris\u00E9"], [":\u241F5eb3efea30c37fe427894692cd5e01d298767657\u241F8545968125113919212:Sponsoris\u00E9"])));
16273
16310
  }
16274
16311
  var i18n_15;
16275
16312
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16277,7 +16314,7 @@
16277
16314
  i18n_15 = MSG_EXTERNAL_943969525955903510$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS___16;
16278
16315
  }
16279
16316
  else {
16280
- i18n_15 = $localize(templateObject_7$b || (templateObject_7$b = __makeTemplateObject([":\u241F464df96417b29e18e7c92bd6bbe85ec8ae81101a\u241F943969525955903510: personne "], [":\u241F464df96417b29e18e7c92bd6bbe85ec8ae81101a\u241F943969525955903510: personne "])));
16317
+ i18n_15 = $localize(templateObject_7$c || (templateObject_7$c = __makeTemplateObject([":\u241F464df96417b29e18e7c92bd6bbe85ec8ae81101a\u241F943969525955903510: personne "], [":\u241F464df96417b29e18e7c92bd6bbe85ec8ae81101a\u241F943969525955903510: personne "])));
16281
16318
  }
16282
16319
  var i18n_17;
16283
16320
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16285,7 +16322,7 @@
16285
16322
  i18n_17 = MSG_EXTERNAL_7216398619205393425$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS____18;
16286
16323
  }
16287
16324
  else {
16288
- i18n_17 = $localize(templateObject_8$7 || (templateObject_8$7 = __makeTemplateObject([":\u241F4785d2ed6aa646690f46eb4fe02a1916a39cdbb8\u241F7216398619205393425:Masquer le d\u00E9tail"], [":\u241F4785d2ed6aa646690f46eb4fe02a1916a39cdbb8\u241F7216398619205393425:Masquer le d\u00E9tail"])));
16325
+ i18n_17 = $localize(templateObject_8$8 || (templateObject_8$8 = __makeTemplateObject([":\u241F4785d2ed6aa646690f46eb4fe02a1916a39cdbb8\u241F7216398619205393425:Masquer le d\u00E9tail"], [":\u241F4785d2ed6aa646690f46eb4fe02a1916a39cdbb8\u241F7216398619205393425:Masquer le d\u00E9tail"])));
16289
16326
  }
16290
16327
  var i18n_19;
16291
16328
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16293,7 +16330,7 @@
16293
16330
  i18n_19 = MSG_EXTERNAL_1356308905753232069$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS____20;
16294
16331
  }
16295
16332
  else {
16296
- i18n_19 = $localize(templateObject_9$5 || (templateObject_9$5 = __makeTemplateObject([":\u241F1afb0c360aa8eb58699c70b4f81b79db9b304633\u241F1356308905753232069:Voir le d\u00E9tail"], [":\u241F1afb0c360aa8eb58699c70b4f81b79db9b304633\u241F1356308905753232069:Voir le d\u00E9tail"])));
16333
+ i18n_19 = $localize(templateObject_9$6 || (templateObject_9$6 = __makeTemplateObject([":\u241F1afb0c360aa8eb58699c70b4f81b79db9b304633\u241F1356308905753232069:Voir le d\u00E9tail"], [":\u241F1afb0c360aa8eb58699c70b4f81b79db9b304633\u241F1356308905753232069:Voir le d\u00E9tail"])));
16297
16334
  }
16298
16335
  var i18n_22;
16299
16336
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16301,7 +16338,7 @@
16301
16338
  i18n_22 = MSG_EXTERNAL_5882806197320246536$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS___23;
16302
16339
  }
16303
16340
  else {
16304
- i18n_22 = $localize(templateObject_10$3 || (templateObject_10$3 = __makeTemplateObject([":\u241Fb13efa64234089d6652cd83ff1b3dc829f22a13e\u241F5882806197320246536: Voir la recette "], [":\u241Fb13efa64234089d6652cd83ff1b3dc829f22a13e\u241F5882806197320246536: Voir la recette "])));
16341
+ i18n_22 = $localize(templateObject_10$4 || (templateObject_10$4 = __makeTemplateObject([":\u241Fb13efa64234089d6652cd83ff1b3dc829f22a13e\u241F5882806197320246536: Voir la recette "], [":\u241Fb13efa64234089d6652cd83ff1b3dc829f22a13e\u241F5882806197320246536: Voir la recette "])));
16305
16342
  }
16306
16343
  var i18n_24;
16307
16344
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16309,7 +16346,7 @@
16309
16346
  i18n_24 = MSG_EXTERNAL_2014297263214357463$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS___25;
16310
16347
  }
16311
16348
  else {
16312
- i18n_24 = $localize(templateObject_11$3 || (templateObject_11$3 = __makeTemplateObject([":\u241Fc0482d798065c40279036142ef812ebf3942d280\u241F2014297263214357463:Changer d'article"], [":\u241Fc0482d798065c40279036142ef812ebf3942d280\u241F2014297263214357463:Changer d'article"])));
16349
+ i18n_24 = $localize(templateObject_11$4 || (templateObject_11$4 = __makeTemplateObject([":\u241Fc0482d798065c40279036142ef812ebf3942d280\u241F2014297263214357463:Changer d'article"], [":\u241Fc0482d798065c40279036142ef812ebf3942d280\u241F2014297263214357463:Changer d'article"])));
16313
16350
  }
16314
16351
  var i18n_27;
16315
16352
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16317,7 +16354,7 @@
16317
16354
  i18n_27 = MSG_EXTERNAL_6410345110451741598$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_LINE_BASKET_PREVIEW_LINE_COMPONENT_TS___28;
16318
16355
  }
16319
16356
  else {
16320
- i18n_27 = $localize(templateObject_12$2 || (templateObject_12$2 = __makeTemplateObject([":\u241F1987d6d2d7b60e267f6d65eb3c4cdb5c975d5f54\u241F6410345110451741598:pour"], [":\u241F1987d6d2d7b60e267f6d65eb3c4cdb5c975d5f54\u241F6410345110451741598:pour"])));
16357
+ i18n_27 = $localize(templateObject_12$3 || (templateObject_12$3 = __makeTemplateObject([":\u241F1987d6d2d7b60e267f6d65eb3c4cdb5c975d5f54\u241F6410345110451741598:pour"], [":\u241F1987d6d2d7b60e267f6d65eb3c4cdb5c975d5f54\u241F6410345110451741598:pour"])));
16321
16358
  }
16322
16359
  var i18n_29;
16323
16360
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -16392,7 +16429,7 @@
16392
16429
  type: i0.Output
16393
16430
  }] });
16394
16431
  })();
16395
- var templateObject_1$B, templateObject_2$t, templateObject_3$l, templateObject_4$i, templateObject_5$g, templateObject_6$e, templateObject_7$b, templateObject_8$7, templateObject_9$5, templateObject_10$3, templateObject_11$3, templateObject_12$2, templateObject_13$2, templateObject_14$1, templateObject_15$1;
16432
+ var templateObject_1$D, templateObject_2$v, templateObject_3$m, templateObject_4$j, templateObject_5$h, templateObject_6$f, templateObject_7$c, templateObject_8$8, templateObject_9$6, templateObject_10$4, templateObject_11$4, templateObject_12$3, templateObject_13$2, templateObject_14$1, templateObject_15$1;
16396
16433
 
16397
16434
  function BasketPreviewProductComponent_div_0_div_15_Template(rf, ctx) {
16398
16435
  if (rf & 1) {
@@ -16597,7 +16634,7 @@
16597
16634
  i18n_0 = MSG_EXTERNAL_4705093661060921903$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_PRODUCT_BASKET_PREVIEW_PRODUCT_COMPONENT_TS___1;
16598
16635
  }
16599
16636
  else {
16600
- i18n_0 = $localize(templateObject_1$A || (templateObject_1$A = __makeTemplateObject([":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"], [":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"])));
16637
+ i18n_0 = $localize(templateObject_1$C || (templateObject_1$C = __makeTemplateObject([":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"], [":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"])));
16601
16638
  }
16602
16639
  return [["class", "miam-basket-preview-product", 3, "id", 4, "ngIf"], [1, "miam-basket-preview-product", 3, "id"], [1, "miam-basket-preview-product__infos-container"], [1, "miam-basket-preview-product__picture-container"], [1, "miam-basket-preview-product__picture"], ["alt", "product picture", 3, "src", "error"], [1, "miam-basket-preview-product__infos-and-actions"], [1, "miam-basket-preview-product__infos"], [1, "miam-basket-preview-product__title", "miam-ds-text", "weight-l", "size-s"], [1, "miam-product-card__badges"], [1, "miam-basket-preview-product__capacity", "miam-ds-badge"], ["class", "miam-basket-preview-product__sponsorised miam-ds-badge", 4, "ngIf"], ["class", "miam-basket-preview-product__replace-button miam-ds-button ghost", 3, "disabled", "click", 4, "ngIf"], [1, "miam-basket-preview-line__remove", "miam-ds-button", "ghost", 3, "ngClass", "click"], ["class", "miam-ds-loader", 4, "ngIf"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/trash.svg", "alt", "remove recipe", 4, "ngIf"], [1, "miam-basket-preview-product__price-and-action"], ["ngMiamInViewport", "", 1, "miam-basket-preview-product__price", "miam-ds-text", "size-l", "weight-xl", 3, "threshold", "debounceTime", "inViewport"], ["minRange", "0", 3, "value", "minusLoading", "disable", "valueChange"], [1, "miam-basket-preview-product__sponsorised", "miam-ds-badge"], [1, "miam-basket-preview-product__replace-button", "miam-ds-button", "ghost", 3, "disabled", "click"], i18n_0, [1, "miam-ds-loader"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/trash.svg", "alt", "remove recipe"]];
16603
16640
  }, template: function BasketPreviewProductComponent_Template(rf, ctx) {
@@ -16630,7 +16667,7 @@
16630
16667
  type: i0.Output
16631
16668
  }] });
16632
16669
  })();
16633
- var templateObject_1$A;
16670
+ var templateObject_1$C;
16634
16671
 
16635
16672
  function ReplaceItemComponent_span_3_Template(rf, ctx) {
16636
16673
  if (rf & 1) {
@@ -17103,7 +17140,7 @@
17103
17140
  i18n_0 = MSG_EXTERNAL_6950029358283595645$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS_1;
17104
17141
  }
17105
17142
  else {
17106
- i18n_0 = $localize(templateObject_1$z || (templateObject_1$z = __makeTemplateObject([":\u241Ff077b7f13b9ff18b98843b6451b95b52e2e0416b\u241F6950029358283595645:Rechercher un produit de substitution"], [":\u241Ff077b7f13b9ff18b98843b6451b95b52e2e0416b\u241F6950029358283595645:Rechercher un produit de substitution"])));
17143
+ i18n_0 = $localize(templateObject_1$B || (templateObject_1$B = __makeTemplateObject([":\u241Ff077b7f13b9ff18b98843b6451b95b52e2e0416b\u241F6950029358283595645:Rechercher un produit de substitution"], [":\u241Ff077b7f13b9ff18b98843b6451b95b52e2e0416b\u241F6950029358283595645:Rechercher un produit de substitution"])));
17107
17144
  }
17108
17145
  var i18n_2;
17109
17146
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17111,7 +17148,7 @@
17111
17148
  i18n_2 = MSG_EXTERNAL_7424968407033822919$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS_3;
17112
17149
  }
17113
17150
  else {
17114
- i18n_2 = $localize(templateObject_2$s || (templateObject_2$s = __makeTemplateObject([":\u241F4348f48d35623f4d4d03de11b852c5da5a5daff9\u241F7424968407033822919:Je cherche un produit"], [":\u241F4348f48d35623f4d4d03de11b852c5da5a5daff9\u241F7424968407033822919:Je cherche un produit"])));
17151
+ i18n_2 = $localize(templateObject_2$u || (templateObject_2$u = __makeTemplateObject([":\u241F4348f48d35623f4d4d03de11b852c5da5a5daff9\u241F7424968407033822919:Je cherche un produit"], [":\u241F4348f48d35623f4d4d03de11b852c5da5a5daff9\u241F7424968407033822919:Je cherche un produit"])));
17115
17152
  }
17116
17153
  var i18n_4;
17117
17154
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17119,7 +17156,7 @@
17119
17156
  i18n_4 = MSG_EXTERNAL_2371976043497937004$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS__5;
17120
17157
  }
17121
17158
  else {
17122
- i18n_4 = $localize(templateObject_3$k || (templateObject_3$k = __makeTemplateObject([":\u241Fbcaa24028639b753617e2d3e0462eac9dc2ae4de\u241F2371976043497937004:Remplacer un produit"], [":\u241Fbcaa24028639b753617e2d3e0462eac9dc2ae4de\u241F2371976043497937004:Remplacer un produit"])));
17159
+ i18n_4 = $localize(templateObject_3$l || (templateObject_3$l = __makeTemplateObject([":\u241Fbcaa24028639b753617e2d3e0462eac9dc2ae4de\u241F2371976043497937004:Remplacer un produit"], [":\u241Fbcaa24028639b753617e2d3e0462eac9dc2ae4de\u241F2371976043497937004:Remplacer un produit"])));
17123
17160
  }
17124
17161
  var i18n_6;
17125
17162
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17127,7 +17164,7 @@
17127
17164
  i18n_6 = MSG_EXTERNAL_3600300940826652542$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS__7;
17128
17165
  }
17129
17166
  else {
17130
- i18n_6 = $localize(templateObject_4$h || (templateObject_4$h = __makeTemplateObject([":\u241F02d62e50d45d9f9373ea25239767f0e2ae57e34d\u241F3600300940826652542:Ajouter un produit"], [":\u241F02d62e50d45d9f9373ea25239767f0e2ae57e34d\u241F3600300940826652542:Ajouter un produit"])));
17167
+ i18n_6 = $localize(templateObject_4$i || (templateObject_4$i = __makeTemplateObject([":\u241F02d62e50d45d9f9373ea25239767f0e2ae57e34d\u241F3600300940826652542:Ajouter un produit"], [":\u241F02d62e50d45d9f9373ea25239767f0e2ae57e34d\u241F3600300940826652542:Ajouter un produit"])));
17131
17168
  }
17132
17169
  var i18n_8;
17133
17170
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17135,7 +17172,7 @@
17135
17172
  i18n_8 = MSG_EXTERNAL_6170250983123691695$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS______9;
17136
17173
  }
17137
17174
  else {
17138
- i18n_8 = $localize(templateObject_5$f || (templateObject_5$f = __makeTemplateObject([":\u241Fed4f6783bab9c5ba85a78b7ed6c13143a6784ee7\u241F6170250983123691695:S\u00E9lectionn\u00E9"], [":\u241Fed4f6783bab9c5ba85a78b7ed6c13143a6784ee7\u241F6170250983123691695:S\u00E9lectionn\u00E9"])));
17175
+ i18n_8 = $localize(templateObject_5$g || (templateObject_5$g = __makeTemplateObject([":\u241Fed4f6783bab9c5ba85a78b7ed6c13143a6784ee7\u241F6170250983123691695:S\u00E9lectionn\u00E9"], [":\u241Fed4f6783bab9c5ba85a78b7ed6c13143a6784ee7\u241F6170250983123691695:S\u00E9lectionn\u00E9"])));
17139
17176
  }
17140
17177
  var i18n_10;
17141
17178
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17143,7 +17180,7 @@
17143
17180
  i18n_10 = MSG_EXTERNAL_7595911884418843153$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS______11;
17144
17181
  }
17145
17182
  else {
17146
- i18n_10 = $localize(templateObject_6$d || (templateObject_6$d = __makeTemplateObject([":\u241Fdd2163aebf2872c37a21e0b46046b72c67b05084\u241F7595911884418843153:S\u00E9lectionner"], [":\u241Fdd2163aebf2872c37a21e0b46046b72c67b05084\u241F7595911884418843153:S\u00E9lectionner"])));
17183
+ i18n_10 = $localize(templateObject_6$e || (templateObject_6$e = __makeTemplateObject([":\u241Fdd2163aebf2872c37a21e0b46046b72c67b05084\u241F7595911884418843153:S\u00E9lectionner"], [":\u241Fdd2163aebf2872c37a21e0b46046b72c67b05084\u241F7595911884418843153:S\u00E9lectionner"])));
17147
17184
  }
17148
17185
  var i18n_12;
17149
17186
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17151,7 +17188,7 @@
17151
17188
  i18n_12 = MSG_EXTERNAL_6492937435856655320$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS_____13;
17152
17189
  }
17153
17190
  else {
17154
- i18n_12 = $localize(templateObject_7$a || (templateObject_7$a = __makeTemplateObject([":\u241Fcf955ad994f631ae1ff32197521404b7f0223157\u241F6492937435856655320:Ajouter au panier"], [":\u241Fcf955ad994f631ae1ff32197521404b7f0223157\u241F6492937435856655320:Ajouter au panier"])));
17191
+ i18n_12 = $localize(templateObject_7$b || (templateObject_7$b = __makeTemplateObject([":\u241Fcf955ad994f631ae1ff32197521404b7f0223157\u241F6492937435856655320:Ajouter au panier"], [":\u241Fcf955ad994f631ae1ff32197521404b7f0223157\u241F6492937435856655320:Ajouter au panier"])));
17155
17192
  }
17156
17193
  var i18n_15;
17157
17194
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17159,7 +17196,7 @@
17159
17196
  i18n_15 = MSG_EXTERNAL_8285910377236394164$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS__16;
17160
17197
  }
17161
17198
  else {
17162
- i18n_15 = $localize(templateObject_8$6 || (templateObject_8$6 = __makeTemplateObject([":\u241Fae6cf922f776e02624d28a771a147bf6e096eade\u241F8285910377236394164:Aucun produit de substitution trouv\u00E9"], [":\u241Fae6cf922f776e02624d28a771a147bf6e096eade\u241F8285910377236394164:Aucun produit de substitution trouv\u00E9"])));
17199
+ i18n_15 = $localize(templateObject_8$7 || (templateObject_8$7 = __makeTemplateObject([":\u241Fae6cf922f776e02624d28a771a147bf6e096eade\u241F8285910377236394164:Aucun produit de substitution trouv\u00E9"], [":\u241Fae6cf922f776e02624d28a771a147bf6e096eade\u241F8285910377236394164:Aucun produit de substitution trouv\u00E9"])));
17163
17200
  }
17164
17201
  var i18n_17;
17165
17202
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17167,7 +17204,7 @@
17167
17204
  i18n_17 = MSG_EXTERNAL_5283848724505507806$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS__18;
17168
17205
  }
17169
17206
  else {
17170
- i18n_17 = $localize(templateObject_9$4 || (templateObject_9$4 = __makeTemplateObject([":\u241Fd87667a5f5d41ae926764adb44c443719bb4e919\u241F5283848724505507806:Aucun produit trouv\u00E9 pour cette recherche"], [":\u241Fd87667a5f5d41ae926764adb44c443719bb4e919\u241F5283848724505507806:Aucun produit trouv\u00E9 pour cette recherche"])));
17207
+ i18n_17 = $localize(templateObject_9$5 || (templateObject_9$5 = __makeTemplateObject([":\u241Fd87667a5f5d41ae926764adb44c443719bb4e919\u241F5283848724505507806:Aucun produit trouv\u00E9 pour cette recherche"], [":\u241Fd87667a5f5d41ae926764adb44c443719bb4e919\u241F5283848724505507806:Aucun produit trouv\u00E9 pour cette recherche"])));
17171
17208
  }
17172
17209
  var i18n_19;
17173
17210
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17175,7 +17212,7 @@
17175
17212
  i18n_19 = MSG_EXTERNAL_4424868866602221395$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS__20;
17176
17213
  }
17177
17214
  else {
17178
- i18n_19 = $localize(templateObject_10$2 || (templateObject_10$2 = __makeTemplateObject([":\u241F88ec6efcd6abcc9b26d01ce7731af8f8e727aef8\u241F4424868866602221395:Essayez avec un autre mot-cl\u00E9"], [":\u241F88ec6efcd6abcc9b26d01ce7731af8f8e727aef8\u241F4424868866602221395:Essayez avec un autre mot-cl\u00E9"])));
17215
+ i18n_19 = $localize(templateObject_10$3 || (templateObject_10$3 = __makeTemplateObject([":\u241F88ec6efcd6abcc9b26d01ce7731af8f8e727aef8\u241F4424868866602221395:Essayez avec un autre mot-cl\u00E9"], [":\u241F88ec6efcd6abcc9b26d01ce7731af8f8e727aef8\u241F4424868866602221395:Essayez avec un autre mot-cl\u00E9"])));
17179
17216
  }
17180
17217
  var i18n_21;
17181
17218
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17183,7 +17220,7 @@
17183
17220
  i18n_21 = MSG_EXTERNAL_3094902783246996897$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_REPLACE_ITEM_REPLACE_ITEM_COMPONENT_TS__22;
17184
17221
  }
17185
17222
  else {
17186
- i18n_21 = $localize(templateObject_11$2 || (templateObject_11$2 = __makeTemplateObject([":\u241F796be7ef70e6714417dffe1ff46622824ce81a03\u241F3094902783246996897:Trouver une liste de produit en effectuant votre recherche"], [":\u241F796be7ef70e6714417dffe1ff46622824ce81a03\u241F3094902783246996897:Trouver une liste de produit en effectuant votre recherche"])));
17223
+ i18n_21 = $localize(templateObject_11$3 || (templateObject_11$3 = __makeTemplateObject([":\u241F796be7ef70e6714417dffe1ff46622824ce81a03\u241F3094902783246996897:Trouver une liste de produit en effectuant votre recherche"], [":\u241F796be7ef70e6714417dffe1ff46622824ce81a03\u241F3094902783246996897:Trouver une liste de produit en effectuant votre recherche"])));
17187
17224
  }
17188
17225
  return [[1, "miam-replace-item__header", "miam-ds-text", "weight-xxl"], [1, "miam-ds-button", "ghost", "square", 3, "click"], ["width", "24", "height", "24", "primaryColor", "var(--miam-ds-color-primary-500)", 3, "iconName"], [4, "ngIf", "ngIfElse"], ["addProduct", ""], [1, "miam-replace-item__top-container"], [1, "miam-replace-item__searchbar"], ["width", "20", "height", "20", 3, "iconName"], ["type", "text", "placeholder", i18n_0, "class", "miam-replace-item__searchbar__input miam-ds-text size-m weight-l", 3, "ngModel", "ngModelChange", 4, "ngIf"], ["type", "text", "placeholder", i18n_2, "class", "miam-replace-item__searchbar__input miam-ds-text size-m weight-l", 3, "ngModel", "ngModelChange", 4, "ngIf"], [1, "miam-ds-loader"], ["class", "miam-replace-item__product-banner", 4, "ngIf"], [1, "miam-replace-item__product-list"], ["class", "miam-replace-item__product-item", 3, "ngClass", 4, "ngFor", "ngForOf"], [4, "ngIf"], i18n_4, i18n_6, ["type", "text", "placeholder", i18n_0, 1, "miam-replace-item__searchbar__input", "miam-ds-text", "size-m", "weight-l", 3, "ngModel", "ngModelChange"], ["type", "text", "placeholder", i18n_2, 1, "miam-replace-item__searchbar__input", "miam-ds-text", "size-m", "weight-l", 3, "ngModel", "ngModelChange"], [1, "miam-replace-item__product-banner"], [1, "miam-replace-item__banner-product-name", "miam-ds-text", "size-s"], [1, "miam-replace-item__banner-quantity", "miam-ds-text", "weight-xxl"], [1, "miam-replace-item__product-item", 3, "ngClass"], [1, "miam-replace-item__card-upper-section"], [1, "miam-replace-item__product-image-container"], ["alt", "product to replace", 1, "miam-replace-item__product-image", 3, "src", "error"], [1, "miam-replace-item__product-info"], [1, "miam-replace-item__product-brand", "miam-ds-text", "size-xs", "weight-xl"], [1, "miam-replace-item__product-brand-text"], [1, "miam-replace-item__product-name", "miam-ds-text", "size-xs"], [1, "miam-replace-item__product-name-text"], [1, "miam-ds-badge"], [1, "miam-replace-item__product-quantity", "miam-ds-text", "size-xs"], [1, "miam-replace-item__card-lower-section"], [1, "miam-replace-item__product-price", "miam-ds-text", "size-l", "weight-xxl", 3, "price"], [1, "miam-replace-item__cta", "miam-ds-button", "small", "primary", 3, "disabled", "click"], ["class", "miam-ds-loader", 4, "ngIf", "ngIfElse"], ["defaultSelectButton", ""], ["withSupplier", ""], i18n_8, i18n_10, i18n_12, [1, "miam-replace-item__error"], [1, "miam-replace-item__error-image-container", "small-img"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/images/product-issue.png", "alt", "issue with product", 1, "miam-replace-item__error-image"], [1, "miam-replace-item__issue-entry-name"], [1, "miam-replace-item__issue-title", "miam-replace-item__issue-title__no-substitution"], i18n_15, [1, "miam-replace-item__error-image-container"], [1, "miam-replace-item__issue-search-string"], [1, "miam-replace-item__issue-title", "miam-replace-item__issue-title__not-found"], i18n_17, [1, "miam-replace-item__issue-description", "miam-ds-text", "weight-xxl"], i18n_19, [1, "miam-replace-item__add-product-default"], [1, "miam-replace-item__add-product-image-container"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Search.svg", "alt", "search icon", 1, "miam-replace-item__add-product-image"], [1, "miam-replace-item__add-product-title"], i18n_21];
17189
17226
  }, template: function ReplaceItemComponent_Template(rf, ctx) {
@@ -17296,7 +17333,7 @@
17296
17333
  args: ['@slide']
17297
17334
  }] });
17298
17335
  })();
17299
- var templateObject_1$z, templateObject_2$s, templateObject_3$k, templateObject_4$h, templateObject_5$f, templateObject_6$d, templateObject_7$a, templateObject_8$6, templateObject_9$4, templateObject_10$2, templateObject_11$2;
17336
+ var templateObject_1$B, templateObject_2$u, templateObject_3$l, templateObject_4$i, templateObject_5$g, templateObject_6$e, templateObject_7$b, templateObject_8$7, templateObject_9$5, templateObject_10$3, templateObject_11$3;
17300
17337
 
17301
17338
  function BasketPreviewBlockComponent_div_2_ng_container_1_div_2_Template(rf, ctx) {
17302
17339
  if (rf & 1) {
@@ -17558,6 +17595,7 @@
17558
17595
  _this.analyticsService = analyticsService;
17559
17596
  _this.productReplacementService = productReplacementService;
17560
17597
  _this.showNotice = false;
17598
+ _this.isStoreLocatorDisplayed = false;
17561
17599
  _this.recipesAlwaysExpanded = false;
17562
17600
  _this.itemsAlwaysExpanded = false;
17563
17601
  _this.displayItemsUnitaryPrice = false;
@@ -17599,7 +17637,9 @@
17599
17637
  if (Object.keys(changes).includes('recipeId')) {
17600
17638
  this.loading.next(true);
17601
17639
  }
17602
- this.pageview();
17640
+ if (!this.isStoreLocatorDisplayed) {
17641
+ this.pageview();
17642
+ }
17603
17643
  this.removeFromOriginPath('/basket-preview/detail');
17604
17644
  };
17605
17645
  BasketPreviewBlockComponent.prototype.ngAfterViewInit = function () {
@@ -17759,14 +17799,14 @@
17759
17799
  i0__namespace.ɵɵqueryRefresh(_t = i0__namespace.ɵɵloadQuery()) && (ctx.basketPreviewRecipeRows = _t);
17760
17800
  i0__namespace.ɵɵqueryRefresh(_t = i0__namespace.ɵɵloadQuery()) && (ctx.productsElements = _t);
17761
17801
  }
17762
- }, inputs: { recipeId: "recipeId", showNotice: "showNotice", recipesAlwaysExpanded: "recipesAlwaysExpanded", itemsAlwaysExpanded: "itemsAlwaysExpanded", displayItemsUnitaryPrice: "displayItemsUnitaryPrice", recipesIds: "recipesIds", legacyMode: "legacyMode" }, outputs: { statsUpdated: "statsUpdated", guestCountChanged: "guestCountChanged", loading: "loading" }, features: [i0__namespace.ɵɵInheritDefinitionFeature, i0__namespace.ɵɵNgOnChangesFeature], decls: 7, vars: 2, consts: function () {
17802
+ }, inputs: { recipeId: "recipeId", showNotice: "showNotice", isStoreLocatorDisplayed: "isStoreLocatorDisplayed", recipesAlwaysExpanded: "recipesAlwaysExpanded", itemsAlwaysExpanded: "itemsAlwaysExpanded", displayItemsUnitaryPrice: "displayItemsUnitaryPrice", recipesIds: "recipesIds", legacyMode: "legacyMode" }, outputs: { statsUpdated: "statsUpdated", guestCountChanged: "guestCountChanged", loading: "loading" }, features: [i0__namespace.ɵɵInheritDefinitionFeature, i0__namespace.ɵɵNgOnChangesFeature], decls: 7, vars: 2, consts: function () {
17763
17803
  var i18n_0;
17764
17804
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
17765
17805
  var MSG_EXTERNAL_8629591622298910251$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_BLOCK_BASKET_PREVIEW_BLOCK_COMPONENT_TS___1 = goog.getMsg("Recettes, Produits");
17766
17806
  i18n_0 = MSG_EXTERNAL_8629591622298910251$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_BLOCK_BASKET_PREVIEW_BLOCK_COMPONENT_TS___1;
17767
17807
  }
17768
17808
  else {
17769
- i18n_0 = $localize(templateObject_1$y || (templateObject_1$y = __makeTemplateObject([":\u241Fe5550a57e3cc37b6956342b99fb7e0ab9534db7a\u241F8629591622298910251:Recettes, Produits"], [":\u241Fe5550a57e3cc37b6956342b99fb7e0ab9534db7a\u241F8629591622298910251:Recettes, Produits"])));
17809
+ i18n_0 = $localize(templateObject_1$A || (templateObject_1$A = __makeTemplateObject([":\u241Fe5550a57e3cc37b6956342b99fb7e0ab9534db7a\u241F8629591622298910251:Recettes, Produits"], [":\u241Fe5550a57e3cc37b6956342b99fb7e0ab9534db7a\u241F8629591622298910251:Recettes, Produits"])));
17770
17810
  }
17771
17811
  var i18n_2;
17772
17812
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17774,7 +17814,7 @@
17774
17814
  i18n_2 = MSG_EXTERNAL_9113580200567550319$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_BLOCK_BASKET_PREVIEW_BLOCK_COMPONENT_TS____3;
17775
17815
  }
17776
17816
  else {
17777
- i18n_2 = $localize(templateObject_2$r || (templateObject_2$r = __makeTemplateObject([":\u241Fb925ed1ff7370deb1c9d7c752727b9b3b9d032d2\u241F9113580200567550319:repas dans votre panier"], [":\u241Fb925ed1ff7370deb1c9d7c752727b9b3b9d032d2\u241F9113580200567550319:repas dans votre panier"])));
17817
+ i18n_2 = $localize(templateObject_2$t || (templateObject_2$t = __makeTemplateObject([":\u241Fb925ed1ff7370deb1c9d7c752727b9b3b9d032d2\u241F9113580200567550319:repas dans votre panier"], [":\u241Fb925ed1ff7370deb1c9d7c752727b9b3b9d032d2\u241F9113580200567550319:repas dans votre panier"])));
17778
17818
  }
17779
17819
  var i18n_5;
17780
17820
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17782,7 +17822,7 @@
17782
17822
  i18n_5 = MSG_EXTERNAL_288551008191807939$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_BLOCK_BASKET_PREVIEW_BLOCK_COMPONENT_TS_____6;
17783
17823
  }
17784
17824
  else {
17785
- i18n_5 = $localize(templateObject_3$j || (templateObject_3$j = __makeTemplateObject([":\u241F93545d51c80c9c31f09ed7ebf3bd9f3a7a8faac4\u241F288551008191807939:Vous n'avez pas encore s\u00E9lectionn\u00E9 de repas."], [":\u241F93545d51c80c9c31f09ed7ebf3bd9f3a7a8faac4\u241F288551008191807939:Vous n'avez pas encore s\u00E9lectionn\u00E9 de repas."])));
17825
+ i18n_5 = $localize(templateObject_3$k || (templateObject_3$k = __makeTemplateObject([":\u241F93545d51c80c9c31f09ed7ebf3bd9f3a7a8faac4\u241F288551008191807939:Vous n'avez pas encore s\u00E9lectionn\u00E9 de repas."], [":\u241F93545d51c80c9c31f09ed7ebf3bd9f3a7a8faac4\u241F288551008191807939:Vous n'avez pas encore s\u00E9lectionn\u00E9 de repas."])));
17786
17826
  }
17787
17827
  var i18n_7;
17788
17828
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17790,7 +17830,7 @@
17790
17830
  i18n_7 = MSG_EXTERNAL_4236077440019410708$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_BLOCK_BASKET_PREVIEW_BLOCK_COMPONENT_TS______8;
17791
17831
  }
17792
17832
  else {
17793
- i18n_7 = $localize(templateObject_4$g || (templateObject_4$g = __makeTemplateObject([":\u241Ff2dbdf98d72d476636f801e65966528b783d1688\u241F4236077440019410708:Naviguez vers la page d'une recette, puis cliquez sur \"Commander les ingr\u00E9dients\"."], [":\u241Ff2dbdf98d72d476636f801e65966528b783d1688\u241F4236077440019410708:Naviguez vers la page d'une recette, puis cliquez sur \"Commander les ingr\u00E9dients\"."])));
17833
+ i18n_7 = $localize(templateObject_4$h || (templateObject_4$h = __makeTemplateObject([":\u241Ff2dbdf98d72d476636f801e65966528b783d1688\u241F4236077440019410708:Naviguez vers la page d'une recette, puis cliquez sur \"Commander les ingr\u00E9dients\"."], [":\u241Ff2dbdf98d72d476636f801e65966528b783d1688\u241F4236077440019410708:Naviguez vers la page d'une recette, puis cliquez sur \"Commander les ingr\u00E9dients\"."])));
17794
17834
  }
17795
17835
  var i18n_9;
17796
17836
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17798,7 +17838,7 @@
17798
17838
  i18n_9 = MSG_EXTERNAL_5143648071312042408$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_BLOCK_BASKET_PREVIEW_BLOCK_COMPONENT_TS_____10;
17799
17839
  }
17800
17840
  else {
17801
- i18n_9 = $localize(templateObject_5$e || (templateObject_5$e = __makeTemplateObject([":\u241F523c6748d32ce2079498ff4de01387f2d6515c44\u241F5143648071312042408:Chargement du repas..."], [":\u241F523c6748d32ce2079498ff4de01387f2d6515c44\u241F5143648071312042408:Chargement du repas..."])));
17841
+ i18n_9 = $localize(templateObject_5$f || (templateObject_5$f = __makeTemplateObject([":\u241F523c6748d32ce2079498ff4de01387f2d6515c44\u241F5143648071312042408:Chargement du repas..."], [":\u241F523c6748d32ce2079498ff4de01387f2d6515c44\u241F5143648071312042408:Chargement du repas..."])));
17802
17842
  }
17803
17843
  var i18n_11;
17804
17844
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17806,7 +17846,7 @@
17806
17846
  i18n_11 = MSG_EXTERNAL_6011677334812397725$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_BLOCK_BASKET_PREVIEW_BLOCK_COMPONENT_TS_____12;
17807
17847
  }
17808
17848
  else {
17809
- i18n_11 = $localize(templateObject_6$c || (templateObject_6$c = __makeTemplateObject([":\u241F424117ab4a286734aad0d346b2d892aebddb5927\u241F6011677334812397725:Chargement des repas..."], [":\u241F424117ab4a286734aad0d346b2d892aebddb5927\u241F6011677334812397725:Chargement des repas..."])));
17849
+ i18n_11 = $localize(templateObject_6$d || (templateObject_6$d = __makeTemplateObject([":\u241F424117ab4a286734aad0d346b2d892aebddb5927\u241F6011677334812397725:Chargement des repas..."], [":\u241F424117ab4a286734aad0d346b2d892aebddb5927\u241F6011677334812397725:Chargement des repas..."])));
17810
17850
  }
17811
17851
  var i18n_13;
17812
17852
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17814,7 +17854,7 @@
17814
17854
  i18n_13 = MSG_EXTERNAL_4182983336835891106$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_BLOCK_BASKET_PREVIEW_BLOCK_COMPONENT_TS__14;
17815
17855
  }
17816
17856
  else {
17817
- i18n_13 = $localize(templateObject_7$9 || (templateObject_7$9 = __makeTemplateObject([":\u241Fdf6602bf298f29976aa1fc43e12e25e9a677a51d\u241F4182983336835891106:D\u00E9sol\u00E9, ce magasin ne permet pas de s\u00E9lectionner des repas."], [":\u241Fdf6602bf298f29976aa1fc43e12e25e9a677a51d\u241F4182983336835891106:D\u00E9sol\u00E9, ce magasin ne permet pas de s\u00E9lectionner des repas."])));
17857
+ i18n_13 = $localize(templateObject_7$a || (templateObject_7$a = __makeTemplateObject([":\u241Fdf6602bf298f29976aa1fc43e12e25e9a677a51d\u241F4182983336835891106:D\u00E9sol\u00E9, ce magasin ne permet pas de s\u00E9lectionner des repas."], [":\u241Fdf6602bf298f29976aa1fc43e12e25e9a677a51d\u241F4182983336835891106:D\u00E9sol\u00E9, ce magasin ne permet pas de s\u00E9lectionner des repas."])));
17818
17858
  }
17819
17859
  var i18n_15;
17820
17860
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -17822,7 +17862,7 @@
17822
17862
  i18n_15 = MSG_EXTERNAL_5055873666849956816$$LIB__WEB_COMPONENTS_BASKET_PREVIEW_BASKET_PREVIEW_BLOCK_BASKET_PREVIEW_BLOCK_COMPONENT_TS__16;
17823
17863
  }
17824
17864
  else {
17825
- i18n_15 = $localize(templateObject_8$5 || (templateObject_8$5 = __makeTemplateObject([":\u241Fbbc408c854684447d02f0dd5b027598d8d31ab18\u241F5055873666849956816:Veuillez s\u00E9lectionner un autre magasin"], [":\u241Fbbc408c854684447d02f0dd5b027598d8d31ab18\u241F5055873666849956816:Veuillez s\u00E9lectionner un autre magasin"])));
17865
+ i18n_15 = $localize(templateObject_8$6 || (templateObject_8$6 = __makeTemplateObject([":\u241Fbbc408c854684447d02f0dd5b027598d8d31ab18\u241F5055873666849956816:Veuillez s\u00E9lectionner un autre magasin"], [":\u241Fbbc408c854684447d02f0dd5b027598d8d31ab18\u241F5055873666849956816:Veuillez s\u00E9lectionner un autre magasin"])));
17826
17866
  }
17827
17867
  return [[1, "miam-basket-preview-block__anchor"], ["previewBlockTop", ""], ["class", "miam-basket-preview-block", 4, "ngIf", "ngIfElse"], ["cors", ""], ["noPos", ""], [1, "miam-basket-preview-block"], [4, "ngIf", "ngIfElse"], [1, "miam-basket-preview-block__header"], ["class", "miam-basket-preview-block__title miam-ds-text", 3, "ngClass", 4, "ngIf"], ["tabs", i18n_0, 3, "selectedTabIndex", "selectedTabIndexChange", 4, "ngIf"], ["class", "miam-basket-preview-block__lines", 4, "ngIf"], ["class", "miam-basket-preview-block__products", 4, "ngIf"], ["class", "miam-basket-preview-block__lines__loader", 4, "ngIf"], [1, "miam-basket-preview-block__title", "miam-ds-text", 3, "ngClass"], [1, "number"], i18n_2, ["tabs", i18n_0, 3, "selectedTabIndex", "selectedTabIndexChange"], [1, "miam-basket-preview-block__lines"], [4, "ngIf"], [3, "line", "blockStates", "recipesAlwaysExpanded", "itemsAlwaysExpanded", "displayItemsUnitaryPrice", "legacyMode", "originTrace", "ngStyle", "removed", "countChanged", "replaceItem", 4, "ngFor", "ngForOf", "ngForTrackBy"], [3, "originTrace", "recipe", "ingredient", "basketEntry", "loadOnSelect", "selected", 4, "ngIf"], ["class", "miam-basket-preview-block__lines__not-found", 4, "ngIf"], [3, "line", "blockStates", "recipesAlwaysExpanded", "itemsAlwaysExpanded", "displayItemsUnitaryPrice", "legacyMode", "originTrace", "ngStyle", "removed", "countChanged", "replaceItem"], [3, "originTrace", "recipe", "ingredient", "basketEntry", "loadOnSelect", "selected"], [1, "miam-basket-preview-block__lines__not-found"], i18n_5, i18n_7, [1, "miam-basket-preview-block__products"], [4, "ngFor", "ngForOf", "ngForTrackBy"], [3, "basketEntry", "replaceButtonClicked"], ["class", "miam-basket-preview-block__products-separator", 4, "ngIf"], [1, "miam-basket-preview-block__products-separator"], [1, "miam-basket-preview-block__lines__loader"], i18n_9, i18n_11, [1, "miam-basket-preview-block__noPos"], i18n_13, i18n_15];
17828
17868
  }, template: function BasketPreviewBlockComponent_Template(rf, ctx) {
@@ -17852,6 +17892,8 @@
17852
17892
  type: i0.Input
17853
17893
  }], showNotice: [{
17854
17894
  type: i0.Input
17895
+ }], isStoreLocatorDisplayed: [{
17896
+ type: i0.Input
17855
17897
  }], recipesAlwaysExpanded: [{
17856
17898
  type: i0.Input
17857
17899
  }], itemsAlwaysExpanded: [{
@@ -17879,7 +17921,7 @@
17879
17921
  args: [BasketPreviewProductComponent]
17880
17922
  }] });
17881
17923
  })();
17882
- var templateObject_1$y, templateObject_2$r, templateObject_3$j, templateObject_4$g, templateObject_5$e, templateObject_6$c, templateObject_7$9, templateObject_8$5;
17924
+ var templateObject_1$A, templateObject_2$t, templateObject_3$k, templateObject_4$h, templateObject_5$f, templateObject_6$d, templateObject_7$a, templateObject_8$6;
17883
17925
 
17884
17926
  var BasketPreviewModule = /** @class */ (function () {
17885
17927
  // Create custom elements so the WebComponents can be interpreted by the browser regardless of the js framework used
@@ -18024,7 +18066,7 @@
18024
18066
  i18n_0 = MSG_EXTERNAL_7845121959018697970$$LIB__WEB_COMPONENTS_BASKET_TRANSFER_MODAL_BASKET_TRANSFER_MODAL_COMPONENT_TS_1;
18025
18067
  }
18026
18068
  else {
18027
- i18n_0 = $localize(templateObject_1$x || (templateObject_1$x = __makeTemplateObject([":\u241F4abb753a4e37ab5b459185f2e89e9e81c219a253\u241F7845121959018697970:Transfert du panier"], [":\u241F4abb753a4e37ab5b459185f2e89e9e81c219a253\u241F7845121959018697970:Transfert du panier"])));
18069
+ i18n_0 = $localize(templateObject_1$z || (templateObject_1$z = __makeTemplateObject([":\u241F4abb753a4e37ab5b459185f2e89e9e81c219a253\u241F7845121959018697970:Transfert du panier"], [":\u241F4abb753a4e37ab5b459185f2e89e9e81c219a253\u241F7845121959018697970:Transfert du panier"])));
18028
18070
  }
18029
18071
  var i18n_2;
18030
18072
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18032,7 +18074,7 @@
18032
18074
  i18n_2 = MSG_EXTERNAL_8998179362936748717$$LIB__WEB_COMPONENTS_BASKET_TRANSFER_MODAL_BASKET_TRANSFER_MODAL_COMPONENT_TS_3;
18033
18075
  }
18034
18076
  else {
18035
- i18n_2 = $localize(templateObject_2$q || (templateObject_2$q = __makeTemplateObject([":\u241F7e6c975ebea8b5f8b120905ca7acf9f8edf59d8e\u241F8998179362936748717:OK"], [":\u241F7e6c975ebea8b5f8b120905ca7acf9f8edf59d8e\u241F8998179362936748717:OK"])));
18077
+ i18n_2 = $localize(templateObject_2$s || (templateObject_2$s = __makeTemplateObject([":\u241F7e6c975ebea8b5f8b120905ca7acf9f8edf59d8e\u241F8998179362936748717:OK"], [":\u241F7e6c975ebea8b5f8b120905ca7acf9f8edf59d8e\u241F8998179362936748717:OK"])));
18036
18078
  }
18037
18079
  var i18n_4;
18038
18080
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18040,7 +18082,7 @@
18040
18082
  i18n_4 = MSG_EXTERNAL_541716919875697840$$LIB__WEB_COMPONENTS_BASKET_TRANSFER_MODAL_BASKET_TRANSFER_MODAL_COMPONENT_TS_5;
18041
18083
  }
18042
18084
  else {
18043
- i18n_4 = $localize(templateObject_3$i || (templateObject_3$i = __makeTemplateObject([":\u241F69d78ec60dc2f2fa4583209c13f8c3f59a8626d9\u241F541716919875697840:Nous transf\u00E9rons votre panier vers"], [":\u241F69d78ec60dc2f2fa4583209c13f8c3f59a8626d9\u241F541716919875697840:Nous transf\u00E9rons votre panier vers"])));
18085
+ i18n_4 = $localize(templateObject_3$j || (templateObject_3$j = __makeTemplateObject([":\u241F69d78ec60dc2f2fa4583209c13f8c3f59a8626d9\u241F541716919875697840:Nous transf\u00E9rons votre panier vers"], [":\u241F69d78ec60dc2f2fa4583209c13f8c3f59a8626d9\u241F541716919875697840:Nous transf\u00E9rons votre panier vers"])));
18044
18086
  }
18045
18087
  var i18n_6;
18046
18088
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18048,7 +18090,7 @@
18048
18090
  i18n_6 = MSG_EXTERNAL_7845121959018697970$$LIB__WEB_COMPONENTS_BASKET_TRANSFER_MODAL_BASKET_TRANSFER_MODAL_COMPONENT_TS_7;
18049
18091
  }
18050
18092
  else {
18051
- i18n_6 = $localize(templateObject_4$f || (templateObject_4$f = __makeTemplateObject([":\u241F4abb753a4e37ab5b459185f2e89e9e81c219a253\u241F7845121959018697970:Transfert du panier"], [":\u241F4abb753a4e37ab5b459185f2e89e9e81c219a253\u241F7845121959018697970:Transfert du panier"])));
18093
+ i18n_6 = $localize(templateObject_4$g || (templateObject_4$g = __makeTemplateObject([":\u241F4abb753a4e37ab5b459185f2e89e9e81c219a253\u241F7845121959018697970:Transfert du panier"], [":\u241F4abb753a4e37ab5b459185f2e89e9e81c219a253\u241F7845121959018697970:Transfert du panier"])));
18052
18094
  }
18053
18095
  var i18n_8;
18054
18096
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18056,7 +18098,7 @@
18056
18098
  i18n_8 = MSG_EXTERNAL_4207918560099388002$$LIB__WEB_COMPONENTS_BASKET_TRANSFER_MODAL_BASKET_TRANSFER_MODAL_COMPONENT_TS_9;
18057
18099
  }
18058
18100
  else {
18059
- i18n_8 = $localize(templateObject_5$d || (templateObject_5$d = __makeTemplateObject([":\u241F237e4de631cdfe28439048304429a6549e0f10b0\u241F4207918560099388002:Continuer"], [":\u241F237e4de631cdfe28439048304429a6549e0f10b0\u241F4207918560099388002:Continuer"])));
18101
+ i18n_8 = $localize(templateObject_5$e || (templateObject_5$e = __makeTemplateObject([":\u241F237e4de631cdfe28439048304429a6549e0f10b0\u241F4207918560099388002:Continuer"], [":\u241F237e4de631cdfe28439048304429a6549e0f10b0\u241F4207918560099388002:Continuer"])));
18060
18102
  }
18061
18103
  var i18n_10;
18062
18104
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18064,7 +18106,7 @@
18064
18106
  i18n_10 = MSG_EXTERNAL_2301331841798252546$$LIB__WEB_COMPONENTS_BASKET_TRANSFER_MODAL_BASKET_TRANSFER_MODAL_COMPONENT_TS_11;
18065
18107
  }
18066
18108
  else {
18067
- i18n_10 = $localize(templateObject_6$b || (templateObject_6$b = __makeTemplateObject([":\u241F3c82243384cd7c24acaf9799b0b8e684e6e6f3ef\u241F2301331841798252546:Abandonner"], [":\u241F3c82243384cd7c24acaf9799b0b8e684e6e6f3ef\u241F2301331841798252546:Abandonner"])));
18109
+ i18n_10 = $localize(templateObject_6$c || (templateObject_6$c = __makeTemplateObject([":\u241F3c82243384cd7c24acaf9799b0b8e684e6e6f3ef\u241F2301331841798252546:Abandonner"], [":\u241F3c82243384cd7c24acaf9799b0b8e684e6e6f3ef\u241F2301331841798252546:Abandonner"])));
18068
18110
  }
18069
18111
  var i18n_12;
18070
18112
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18072,7 +18114,7 @@
18072
18114
  i18n_12 = MSG_EXTERNAL_4869108346013323377$$LIB__WEB_COMPONENTS_BASKET_TRANSFER_MODAL_BASKET_TRANSFER_MODAL_COMPONENT_TS_13;
18073
18115
  }
18074
18116
  else {
18075
- i18n_12 = $localize(templateObject_7$8 || (templateObject_7$8 = __makeTemplateObject([":\u241F3fabb86327f68f35a0dd322581980d71eab9664f\u241F4869108346013323377:Votre panier est toujours en cours de transfert vers"], [":\u241F3fabb86327f68f35a0dd322581980d71eab9664f\u241F4869108346013323377:Votre panier est toujours en cours de transfert vers"])));
18117
+ i18n_12 = $localize(templateObject_7$9 || (templateObject_7$9 = __makeTemplateObject([":\u241F3fabb86327f68f35a0dd322581980d71eab9664f\u241F4869108346013323377:Votre panier est toujours en cours de transfert vers"], [":\u241F3fabb86327f68f35a0dd322581980d71eab9664f\u241F4869108346013323377:Votre panier est toujours en cours de transfert vers"])));
18076
18118
  }
18077
18119
  var i18n_14;
18078
18120
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18080,7 +18122,7 @@
18080
18122
  i18n_14 = MSG_EXTERNAL_2348141528865624185$$LIB__WEB_COMPONENTS_BASKET_TRANSFER_MODAL_BASKET_TRANSFER_MODAL_COMPONENT_TS_15;
18081
18123
  }
18082
18124
  else {
18083
- i18n_14 = $localize(templateObject_8$4 || (templateObject_8$4 = __makeTemplateObject([":\u241F265ba421f32deaf9e30505e150140a6bbca3d88f\u241F2348141528865624185:Voulez-vous continuer ou abandonner le transfert ?"], [":\u241F265ba421f32deaf9e30505e150140a6bbca3d88f\u241F2348141528865624185:Voulez-vous continuer ou abandonner le transfert ?"])));
18125
+ i18n_14 = $localize(templateObject_8$5 || (templateObject_8$5 = __makeTemplateObject([":\u241F265ba421f32deaf9e30505e150140a6bbca3d88f\u241F2348141528865624185:Voulez-vous continuer ou abandonner le transfert ?"], [":\u241F265ba421f32deaf9e30505e150140a6bbca3d88f\u241F2348141528865624185:Voulez-vous continuer ou abandonner le transfert ?"])));
18084
18126
  }
18085
18127
  return [["title", i18n_0, "confirmButtonText", i18n_2, 3, "display", "noHeaderMode", "confirm", "close"], [1, "basket-transfer-modal__content"], [1, "basket-transfer-modal__content__inline"], i18n_4, ["title", i18n_6, "confirmButtonText", i18n_8, "cancelButtonText", i18n_10, 3, "display", "noHeaderMode", "cancel", "confirm", "close"], i18n_12, i18n_14];
18086
18128
  }, template: function BasketTransferModalComponent_Template(rf, ctx) {
@@ -18137,7 +18179,7 @@
18137
18179
  }]
18138
18180
  }], function () { return [{ type: BasketTransferService }, { type: BasketsService }, { type: PointOfSalesService }, { type: i0__namespace.ChangeDetectorRef }]; }, null);
18139
18181
  })();
18140
- var templateObject_1$x, templateObject_2$q, templateObject_3$i, templateObject_4$f, templateObject_5$d, templateObject_6$b, templateObject_7$8, templateObject_8$4;
18182
+ var templateObject_1$z, templateObject_2$s, templateObject_3$j, templateObject_4$g, templateObject_5$e, templateObject_6$c, templateObject_7$9, templateObject_8$5;
18141
18183
 
18142
18184
  function ListScanBasketPreviewComponent_ng_container_2_ng_miam_basket_preview_product_6_Template(rf, ctx) {
18143
18185
  if (rf & 1) {
@@ -18241,7 +18283,7 @@
18241
18283
  i18n_0 = MSG_EXTERNAL_4239310127006405587$$LIB__WEB_COMPONENTS_LIST_SCAN_BASKET_PREVIEW_BASKET_PREVIEW_COMPONENT_TS___1;
18242
18284
  }
18243
18285
  else {
18244
- i18n_0 = $localize(templateObject_1$w || (templateObject_1$w = __makeTemplateObject([":\u241F0a58fc3a6ac920982fd6c8f172549f6166609cda\u241F4239310127006405587:Le produit est indisponible."], [":\u241F0a58fc3a6ac920982fd6c8f172549f6166609cda\u241F4239310127006405587:Le produit est indisponible."])));
18286
+ i18n_0 = $localize(templateObject_1$y || (templateObject_1$y = __makeTemplateObject([":\u241F0a58fc3a6ac920982fd6c8f172549f6166609cda\u241F4239310127006405587:Le produit est indisponible."], [":\u241F0a58fc3a6ac920982fd6c8f172549f6166609cda\u241F4239310127006405587:Le produit est indisponible."])));
18245
18287
  }
18246
18288
  var i18n_2;
18247
18289
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18249,7 +18291,7 @@
18249
18291
  i18n_2 = MSG_EXTERNAL_4705093661060921903$$LIB__WEB_COMPONENTS_LIST_SCAN_BASKET_PREVIEW_BASKET_PREVIEW_COMPONENT_TS___3;
18250
18292
  }
18251
18293
  else {
18252
- i18n_2 = $localize(templateObject_2$p || (templateObject_2$p = __makeTemplateObject([":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"], [":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"])));
18294
+ i18n_2 = $localize(templateObject_2$r || (templateObject_2$r = __makeTemplateObject([":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"], [":\u241F8e4fa20cb8b77c41c980ba077b80bc8ea128239a\u241F4705093661060921903:Remplacer"])));
18253
18295
  }
18254
18296
  return [[1, "miam-list-scan__basket-preview"], [4, "ngFor", "ngForOf", "ngForTrackBy"], [1, "miam-list-scan__basket-preview__product"], [1, "miam-list-scan__basket-preview__product__name"], [1, "miam-ds-text", "size-s", "weight-xl"], [3, "basketEntry", "displayReplace", "replaceButtonClicked", 4, "ngIf", "ngIfElse"], ["noItem", ""], [3, "basketEntry", "displayReplace", "replaceButtonClicked"], [1, "miam-list-scan__basket-preview__product__no-item"], [1, "miam-ds-text", "size-s", "weight-m"], i18n_0, [1, "miam-basket-preview-product__replace-button", "miam-ds-button", "ghost", 3, "click"], i18n_2];
18255
18297
  }, template: function ListScanBasketPreviewComponent_Template(rf, ctx) {
@@ -18280,7 +18322,7 @@
18280
18322
  type: i0.Output
18281
18323
  }] });
18282
18324
  })();
18283
- var templateObject_1$w, templateObject_2$p;
18325
+ var templateObject_1$y, templateObject_2$r;
18284
18326
 
18285
18327
  function ListScanFilesInputsComponent_div_1_ng_container_4_Template(rf, ctx) {
18286
18328
  if (rf & 1) {
@@ -18385,7 +18427,7 @@
18385
18427
  i18n_0 = MSG_EXTERNAL_3102383292942643907$$LIB__WEB_COMPONENTS_LIST_SCAN_FILES_INPUTS_FILES_INPUTS_COMPONENT_TS___1;
18386
18428
  }
18387
18429
  else {
18388
- i18n_0 = $localize(templateObject_1$v || (templateObject_1$v = __makeTemplateObject([":\u241F0d34d321e3c6aa810d833ba95ed446bcdd84903a\u241F3102383292942643907:Scanner ma liste"], [":\u241F0d34d321e3c6aa810d833ba95ed446bcdd84903a\u241F3102383292942643907:Scanner ma liste"])));
18430
+ i18n_0 = $localize(templateObject_1$x || (templateObject_1$x = __makeTemplateObject([":\u241F0d34d321e3c6aa810d833ba95ed446bcdd84903a\u241F3102383292942643907:Scanner ma liste"], [":\u241F0d34d321e3c6aa810d833ba95ed446bcdd84903a\u241F3102383292942643907:Scanner ma liste"])));
18389
18431
  }
18390
18432
  var i18n_3;
18391
18433
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18393,7 +18435,7 @@
18393
18435
  i18n_3 = MSG_EXTERNAL_8936498507024821269$$LIB__WEB_COMPONENTS_LIST_SCAN_FILES_INPUTS_FILES_INPUTS_COMPONENT_TS___4;
18394
18436
  }
18395
18437
  else {
18396
- i18n_3 = $localize(templateObject_2$o || (templateObject_2$o = __makeTemplateObject([":\u241Ff609f2fd28615425afab0e9ac43aca8d99c16d47\u241F8936498507024821269:Importer ma liste"], [":\u241Ff609f2fd28615425afab0e9ac43aca8d99c16d47\u241F8936498507024821269:Importer ma liste"])));
18438
+ i18n_3 = $localize(templateObject_2$q || (templateObject_2$q = __makeTemplateObject([":\u241Ff609f2fd28615425afab0e9ac43aca8d99c16d47\u241F8936498507024821269:Importer ma liste"], [":\u241Ff609f2fd28615425afab0e9ac43aca8d99c16d47\u241F8936498507024821269:Importer ma liste"])));
18397
18439
  }
18398
18440
  return [[1, "miam-files-inputs"], [4, "ngIf", "ngIfElse"], ["desktop", ""], ["loader", ""], ["type", "file", "name", "photo", "id", "photo", "accept", "image/*", "capture", "environment", 1, "miam-files-inputs__inputfile", 3, "disabled", "change"], ["for", "photo"], [1, "miam-ds-button", "primary", 3, "ngClass"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/ListScanner.svg", "alt", "take a photo"], [1, "miam-ds-text", "size-m", "weight-xl"], i18n_0, ["type", "file", "name", "file", "id", "file", "accept", "image/*,application/pdf", 1, "miam-files-inputs__inputfile", 3, "disabled", "change"], ["for", "file"], [1, "miam-ds-button", "secondary", 3, "ngClass"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Upload.svg", "alt", "upload"], i18n_3, [1, "miam-ds-loader"]];
18399
18441
  }, template: function ListScanFilesInputsComponent_Template(rf, ctx) {
@@ -18424,7 +18466,7 @@
18424
18466
  type: i0.Input
18425
18467
  }] });
18426
18468
  })();
18427
- var templateObject_1$v, templateObject_2$o;
18469
+ var templateObject_1$x, templateObject_2$q;
18428
18470
 
18429
18471
  var ListScanComponent = /** @class */ (function (_super) {
18430
18472
  __extends(ListScanComponent, _super);
@@ -18511,7 +18553,7 @@
18511
18553
  i18n_0 = MSG_EXTERNAL_5810732921987905942$$LIB__WEB_COMPONENTS_LIST_SCAN_LIST_SCAN_COMPONENT_TS_1;
18512
18554
  }
18513
18555
  else {
18514
- i18n_0 = $localize(templateObject_1$u || (templateObject_1$u = __makeTemplateObject([":\u241F6e111f99537e44fa87a07a5d0c1cf5c4ed092aa6\u241F5810732921987905942:Nous avons trouv\u00E9 pour vous"], [":\u241F6e111f99537e44fa87a07a5d0c1cf5c4ed092aa6\u241F5810732921987905942:Nous avons trouv\u00E9 pour vous"])));
18556
+ i18n_0 = $localize(templateObject_1$w || (templateObject_1$w = __makeTemplateObject([":\u241F6e111f99537e44fa87a07a5d0c1cf5c4ed092aa6\u241F5810732921987905942:Nous avons trouv\u00E9 pour vous"], [":\u241F6e111f99537e44fa87a07a5d0c1cf5c4ed092aa6\u241F5810732921987905942:Nous avons trouv\u00E9 pour vous"])));
18515
18557
  }
18516
18558
  var i18n_2;
18517
18559
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18519,7 +18561,7 @@
18519
18561
  i18n_2 = MSG_EXTERNAL_5858088760260847694$$LIB__WEB_COMPONENTS_LIST_SCAN_LIST_SCAN_COMPONENT_TS_3;
18520
18562
  }
18521
18563
  else {
18522
- i18n_2 = $localize(templateObject_2$n || (templateObject_2$n = __makeTemplateObject([":\u241F2702a2d27ee6aab74ad04132b4acf466f7589b2f\u241F5858088760260847694:Abandonner ma liste"], [":\u241F2702a2d27ee6aab74ad04132b4acf466f7589b2f\u241F5858088760260847694:Abandonner ma liste"])));
18564
+ i18n_2 = $localize(templateObject_2$p || (templateObject_2$p = __makeTemplateObject([":\u241F2702a2d27ee6aab74ad04132b4acf466f7589b2f\u241F5858088760260847694:Abandonner ma liste"], [":\u241F2702a2d27ee6aab74ad04132b4acf466f7589b2f\u241F5858088760260847694:Abandonner ma liste"])));
18523
18565
  }
18524
18566
  var i18n_4;
18525
18567
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18527,7 +18569,7 @@
18527
18569
  i18n_4 = MSG_EXTERNAL_6492937435856655320$$LIB__WEB_COMPONENTS_LIST_SCAN_LIST_SCAN_COMPONENT_TS_5;
18528
18570
  }
18529
18571
  else {
18530
- i18n_4 = $localize(templateObject_3$h || (templateObject_3$h = __makeTemplateObject([":\u241Fcf955ad994f631ae1ff32197521404b7f0223157\u241F6492937435856655320:Ajouter au panier"], [":\u241Fcf955ad994f631ae1ff32197521404b7f0223157\u241F6492937435856655320:Ajouter au panier"])));
18572
+ i18n_4 = $localize(templateObject_3$i || (templateObject_3$i = __makeTemplateObject([":\u241Fcf955ad994f631ae1ff32197521404b7f0223157\u241F6492937435856655320:Ajouter au panier"], [":\u241Fcf955ad994f631ae1ff32197521404b7f0223157\u241F6492937435856655320:Ajouter au panier"])));
18531
18573
  }
18532
18574
  var i18n_6;
18533
18575
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18535,7 +18577,7 @@
18535
18577
  i18n_6 = MSG_EXTERNAL_5858088760260847694$$LIB__WEB_COMPONENTS_LIST_SCAN_LIST_SCAN_COMPONENT_TS_7;
18536
18578
  }
18537
18579
  else {
18538
- i18n_6 = $localize(templateObject_4$e || (templateObject_4$e = __makeTemplateObject([":\u241F2702a2d27ee6aab74ad04132b4acf466f7589b2f\u241F5858088760260847694:Abandonner ma liste"], [":\u241F2702a2d27ee6aab74ad04132b4acf466f7589b2f\u241F5858088760260847694:Abandonner ma liste"])));
18580
+ i18n_6 = $localize(templateObject_4$f || (templateObject_4$f = __makeTemplateObject([":\u241F2702a2d27ee6aab74ad04132b4acf466f7589b2f\u241F5858088760260847694:Abandonner ma liste"], [":\u241F2702a2d27ee6aab74ad04132b4acf466f7589b2f\u241F5858088760260847694:Abandonner ma liste"])));
18539
18581
  }
18540
18582
  var i18n_8;
18541
18583
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18543,7 +18585,7 @@
18543
18585
  i18n_8 = MSG_EXTERNAL_1711750570766225138$$LIB__WEB_COMPONENTS_LIST_SCAN_LIST_SCAN_COMPONENT_TS_9;
18544
18586
  }
18545
18587
  else {
18546
- i18n_8 = $localize(templateObject_5$c || (templateObject_5$c = __makeTemplateObject([":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"], [":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"])));
18588
+ i18n_8 = $localize(templateObject_5$d || (templateObject_5$d = __makeTemplateObject([":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"], [":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"])));
18547
18589
  }
18548
18590
  var i18n_10;
18549
18591
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18551,7 +18593,7 @@
18551
18593
  i18n_10 = MSG_EXTERNAL_2301331841798252546$$LIB__WEB_COMPONENTS_LIST_SCAN_LIST_SCAN_COMPONENT_TS_11;
18552
18594
  }
18553
18595
  else {
18554
- i18n_10 = $localize(templateObject_6$a || (templateObject_6$a = __makeTemplateObject([":\u241F3c82243384cd7c24acaf9799b0b8e684e6e6f3ef\u241F2301331841798252546:Abandonner"], [":\u241F3c82243384cd7c24acaf9799b0b8e684e6e6f3ef\u241F2301331841798252546:Abandonner"])));
18596
+ i18n_10 = $localize(templateObject_6$b || (templateObject_6$b = __makeTemplateObject([":\u241F3c82243384cd7c24acaf9799b0b8e684e6e6f3ef\u241F2301331841798252546:Abandonner"], [":\u241F3c82243384cd7c24acaf9799b0b8e684e6e6f3ef\u241F2301331841798252546:Abandonner"])));
18555
18597
  }
18556
18598
  var i18n_12;
18557
18599
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18559,7 +18601,7 @@
18559
18601
  i18n_12 = MSG_EXTERNAL_8748233983301350015$$LIB__WEB_COMPONENTS_LIST_SCAN_LIST_SCAN_COMPONENT_TS_13;
18560
18602
  }
18561
18603
  else {
18562
- i18n_12 = $localize(templateObject_7$7 || (templateObject_7$7 = __makeTemplateObject([":\u241Fa9903fc890d9d8680ad01355e929d4ba7e54ef15\u241F8748233983301350015:Souhaitez-vous vraiment abandonner votre liste ?"], [":\u241Fa9903fc890d9d8680ad01355e929d4ba7e54ef15\u241F8748233983301350015:Souhaitez-vous vraiment abandonner votre liste ?"])));
18604
+ i18n_12 = $localize(templateObject_7$8 || (templateObject_7$8 = __makeTemplateObject([":\u241Fa9903fc890d9d8680ad01355e929d4ba7e54ef15\u241F8748233983301350015:Souhaitez-vous vraiment abandonner votre liste ?"], [":\u241Fa9903fc890d9d8680ad01355e929d4ba7e54ef15\u241F8748233983301350015:Souhaitez-vous vraiment abandonner votre liste ?"])));
18563
18605
  }
18564
18606
  return [[1, "miam-list-scan"], [3, "isSchoolList"], ["title", i18n_0, "cancelButtonText", i18n_2, "confirmButtonText", i18n_4, "modalStyle", "right", 1, "miam-list-scan__result", 3, "noHeaderMode", "display", "cancel", "close", "confirm"], [1, "miam-list-scan__content", 3, "closed", "cancelled"], ["title", i18n_6, "cancelButtonText", i18n_8, "confirmButtonText", i18n_10, 1, "miam-list-scan__confirmation", 3, "display", "noHeaderMode", "confirmButtonDisabled", "confirmButtonIsLoading", "cancelButtonDisabled", "displayChange", "close", "cancel", "confirm"], [1, "miam-ds-text", "size-m", "weight-m"], i18n_12];
18565
18607
  }, template: function ListScanComponent_Template(rf, ctx) {
@@ -18607,7 +18649,7 @@
18607
18649
  type: i0.Output
18608
18650
  }] });
18609
18651
  })();
18610
- var templateObject_1$u, templateObject_2$n, templateObject_3$h, templateObject_4$e, templateObject_5$c, templateObject_6$a, templateObject_7$7;
18652
+ var templateObject_1$w, templateObject_2$p, templateObject_3$i, templateObject_4$f, templateObject_5$d, templateObject_6$b, templateObject_7$8;
18611
18653
 
18612
18654
  var ListScanModule = /** @class */ (function () {
18613
18655
  // Create custom elements so the WebComponents can be interpreted by the browser regardless of the js framework used
@@ -18929,7 +18971,7 @@
18929
18971
  i18n_0 = MSG_EXTERNAL_5479681205645032650$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS_1;
18930
18972
  }
18931
18973
  else {
18932
- i18n_0 = $localize(templateObject_1$t || (templateObject_1$t = __makeTemplateObject([":\u241Fd3a78c7021318707f0e59efb16f7489c0f68bf70\u241F5479681205645032650:Je d\u00E9finis mes crit\u00E8res"], [":\u241Fd3a78c7021318707f0e59efb16f7489c0f68bf70\u241F5479681205645032650:Je d\u00E9finis mes crit\u00E8res"])));
18974
+ i18n_0 = $localize(templateObject_1$v || (templateObject_1$v = __makeTemplateObject([":\u241Fd3a78c7021318707f0e59efb16f7489c0f68bf70\u241F5479681205645032650:Je d\u00E9finis mes crit\u00E8res"], [":\u241Fd3a78c7021318707f0e59efb16f7489c0f68bf70\u241F5479681205645032650:Je d\u00E9finis mes crit\u00E8res"])));
18933
18975
  }
18934
18976
  var i18n_2;
18935
18977
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18937,7 +18979,7 @@
18937
18979
  i18n_2 = MSG_EXTERNAL_9195396517901234430$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS_3;
18938
18980
  }
18939
18981
  else {
18940
- i18n_2 = $localize(templateObject_2$m || (templateObject_2$m = __makeTemplateObject([":\u241Fc8009b564461da8ddf805b0096612c69af86e34a\u241F9195396517901234430:Budget total"], [":\u241Fc8009b564461da8ddf805b0096612c69af86e34a\u241F9195396517901234430:Budget total"])));
18982
+ i18n_2 = $localize(templateObject_2$o || (templateObject_2$o = __makeTemplateObject([":\u241Fc8009b564461da8ddf805b0096612c69af86e34a\u241F9195396517901234430:Budget total"], [":\u241Fc8009b564461da8ddf805b0096612c69af86e34a\u241F9195396517901234430:Budget total"])));
18941
18983
  }
18942
18984
  var i18n_4;
18943
18985
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18945,7 +18987,7 @@
18945
18987
  i18n_4 = MSG_EXTERNAL_7945563559620286178$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS_5;
18946
18988
  }
18947
18989
  else {
18948
- i18n_4 = $localize(templateObject_3$g || (templateObject_3$g = __makeTemplateObject([":\u241Fe824dd6dbf067af3319961f1e9f3a05e00986fcd\u241F7945563559620286178:EUR"], [":\u241Fe824dd6dbf067af3319961f1e9f3a05e00986fcd\u241F7945563559620286178:EUR"])));
18990
+ i18n_4 = $localize(templateObject_3$h || (templateObject_3$h = __makeTemplateObject([":\u241Fe824dd6dbf067af3319961f1e9f3a05e00986fcd\u241F7945563559620286178:EUR"], [":\u241Fe824dd6dbf067af3319961f1e9f3a05e00986fcd\u241F7945563559620286178:EUR"])));
18949
18991
  }
18950
18992
  var i18n_6;
18951
18993
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18953,7 +18995,7 @@
18953
18995
  i18n_6 = MSG_EXTERNAL_980939234227251011$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS_7;
18954
18996
  }
18955
18997
  else {
18956
- i18n_6 = $localize(templateObject_4$d || (templateObject_4$d = __makeTemplateObject([":\u241Fb5462e8e9bfa6bb68b925926189d10a75d115a6d\u241F980939234227251011:Nombre de personnes"], [":\u241Fb5462e8e9bfa6bb68b925926189d10a75d115a6d\u241F980939234227251011:Nombre de personnes"])));
18998
+ i18n_6 = $localize(templateObject_4$e || (templateObject_4$e = __makeTemplateObject([":\u241Fb5462e8e9bfa6bb68b925926189d10a75d115a6d\u241F980939234227251011:Nombre de personnes"], [":\u241Fb5462e8e9bfa6bb68b925926189d10a75d115a6d\u241F980939234227251011:Nombre de personnes"])));
18957
18999
  }
18958
19000
  var i18n_8;
18959
19001
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18961,7 +19003,7 @@
18961
19003
  i18n_8 = MSG_EXTERNAL_801119367320602480$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS_9;
18962
19004
  }
18963
19005
  else {
18964
- i18n_8 = $localize(templateObject_5$b || (templateObject_5$b = __makeTemplateObject([":\u241Fa700a10e15f1a9ea25a0a8c083a0f76b6e50a560\u241F801119367320602480:Nombre de repas"], [":\u241Fa700a10e15f1a9ea25a0a8c083a0f76b6e50a560\u241F801119367320602480:Nombre de repas"])));
19006
+ i18n_8 = $localize(templateObject_5$c || (templateObject_5$c = __makeTemplateObject([":\u241Fa700a10e15f1a9ea25a0a8c083a0f76b6e50a560\u241F801119367320602480:Nombre de repas"], [":\u241Fa700a10e15f1a9ea25a0a8c083a0f76b6e50a560\u241F801119367320602480:Nombre de repas"])));
18965
19007
  }
18966
19008
  var i18n_10;
18967
19009
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18969,7 +19011,7 @@
18969
19011
  i18n_10 = MSG_EXTERNAL_6105149763216124630$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS_11;
18970
19012
  }
18971
19013
  else {
18972
- i18n_10 = $localize(templateObject_6$9 || (templateObject_6$9 = __makeTemplateObject([":\u241F54db9980698d46d77cbe00eb3a20ac4d5407c95d\u241F6105149763216124630:Planifier"], [":\u241F54db9980698d46d77cbe00eb3a20ac4d5407c95d\u241F6105149763216124630:Planifier"])));
19014
+ i18n_10 = $localize(templateObject_6$a || (templateObject_6$a = __makeTemplateObject([":\u241F54db9980698d46d77cbe00eb3a20ac4d5407c95d\u241F6105149763216124630:Planifier"], [":\u241F54db9980698d46d77cbe00eb3a20ac4d5407c95d\u241F6105149763216124630:Planifier"])));
18973
19015
  }
18974
19016
  var i18n_12;
18975
19017
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18977,7 +19019,7 @@
18977
19019
  i18n_12 = MSG_EXTERNAL_2058601653972871945$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS_13;
18978
19020
  }
18979
19021
  else {
18980
- i18n_12 = $localize(templateObject_7$6 || (templateObject_7$6 = __makeTemplateObject([":\u241F2a5bb5293ba76232497595ad82a270597096ae4c\u241F2058601653972871945:Changer les repas"], [":\u241F2a5bb5293ba76232497595ad82a270597096ae4c\u241F2058601653972871945:Changer les repas"])));
19022
+ i18n_12 = $localize(templateObject_7$7 || (templateObject_7$7 = __makeTemplateObject([":\u241F2a5bb5293ba76232497595ad82a270597096ae4c\u241F2058601653972871945:Changer les repas"], [":\u241F2a5bb5293ba76232497595ad82a270597096ae4c\u241F2058601653972871945:Changer les repas"])));
18981
19023
  }
18982
19024
  var i18n_15;
18983
19025
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18985,7 +19027,7 @@
18985
19027
  i18n_15 = MSG_EXTERNAL_7595911884418843153$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS__16;
18986
19028
  }
18987
19029
  else {
18988
- i18n_15 = $localize(templateObject_8$3 || (templateObject_8$3 = __makeTemplateObject([":\u241Fdd2163aebf2872c37a21e0b46046b72c67b05084\u241F7595911884418843153:S\u00E9lectionner"], [":\u241Fdd2163aebf2872c37a21e0b46046b72c67b05084\u241F7595911884418843153:S\u00E9lectionner"])));
19030
+ i18n_15 = $localize(templateObject_8$4 || (templateObject_8$4 = __makeTemplateObject([":\u241Fdd2163aebf2872c37a21e0b46046b72c67b05084\u241F7595911884418843153:S\u00E9lectionner"], [":\u241Fdd2163aebf2872c37a21e0b46046b72c67b05084\u241F7595911884418843153:S\u00E9lectionner"])));
18989
19031
  }
18990
19032
  var i18n_17;
18991
19033
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -18993,7 +19035,7 @@
18993
19035
  i18n_17 = MSG_EXTERNAL_126587895083911997$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS__18;
18994
19036
  }
18995
19037
  else {
18996
- i18n_17 = $localize(templateObject_9$3 || (templateObject_9$3 = __makeTemplateObject([":\u241Fab855a6a5f5cc9e7a5cfb0cfc6e2fcc2242c8bff\u241F126587895083911997:Aucune id\u00E9e repas ne pourrait \u00EAtre planifi\u00E9e pour le budget demand\u00E9."], [":\u241Fab855a6a5f5cc9e7a5cfb0cfc6e2fcc2242c8bff\u241F126587895083911997:Aucune id\u00E9e repas ne pourrait \u00EAtre planifi\u00E9e pour le budget demand\u00E9."])));
19038
+ i18n_17 = $localize(templateObject_9$4 || (templateObject_9$4 = __makeTemplateObject([":\u241Fab855a6a5f5cc9e7a5cfb0cfc6e2fcc2242c8bff\u241F126587895083911997:Aucune id\u00E9e repas ne pourrait \u00EAtre planifi\u00E9e pour le budget demand\u00E9."], [":\u241Fab855a6a5f5cc9e7a5cfb0cfc6e2fcc2242c8bff\u241F126587895083911997:Aucune id\u00E9e repas ne pourrait \u00EAtre planifi\u00E9e pour le budget demand\u00E9."])));
18997
19039
  }
18998
19040
  var i18n_19;
18999
19041
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -19001,7 +19043,7 @@
19001
19043
  i18n_19 = MSG_EXTERNAL_6893194938999563957$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS__20;
19002
19044
  }
19003
19045
  else {
19004
- i18n_19 = $localize(templateObject_10$1 || (templateObject_10$1 = __makeTemplateObject([":\u241F50b3396becd6af8e717b75056a468fc7fe7efabc\u241F6893194938999563957:Nos id\u00E9es repas anti-inflation (prix par personne) "], [":\u241F50b3396becd6af8e717b75056a468fc7fe7efabc\u241F6893194938999563957:Nos id\u00E9es repas anti-inflation (prix par personne) "])));
19046
+ i18n_19 = $localize(templateObject_10$2 || (templateObject_10$2 = __makeTemplateObject([":\u241F50b3396becd6af8e717b75056a468fc7fe7efabc\u241F6893194938999563957:Nos id\u00E9es repas anti-inflation (prix par personne) "], [":\u241F50b3396becd6af8e717b75056a468fc7fe7efabc\u241F6893194938999563957:Nos id\u00E9es repas anti-inflation (prix par personne) "])));
19005
19047
  }
19006
19048
  var i18n_21;
19007
19049
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -19009,7 +19051,7 @@
19009
19051
  i18n_21 = MSG_EXTERNAL_4814452544539254182$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS__22;
19010
19052
  }
19011
19053
  else {
19012
- i18n_21 = $localize(templateObject_11$1 || (templateObject_11$1 = __makeTemplateObject([":\u241Faccc28b865e2129ac770d6de43f141e5416d01f1\u241F4814452544539254182:Recettes \u00E0 moins de 3 \u20AC"], [":\u241Faccc28b865e2129ac770d6de43f141e5416d01f1\u241F4814452544539254182:Recettes \u00E0 moins de 3 \u20AC"])));
19054
+ i18n_21 = $localize(templateObject_11$2 || (templateObject_11$2 = __makeTemplateObject([":\u241Faccc28b865e2129ac770d6de43f141e5416d01f1\u241F4814452544539254182:Recettes \u00E0 moins de 3 \u20AC"], [":\u241Faccc28b865e2129ac770d6de43f141e5416d01f1\u241F4814452544539254182:Recettes \u00E0 moins de 3 \u20AC"])));
19013
19055
  }
19014
19056
  var i18n_23;
19015
19057
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -19017,7 +19059,7 @@
19017
19059
  i18n_23 = MSG_EXTERNAL_613741958181449144$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_FORM_MEALS_PLANNER_FORM_COMPONENT_TS__24;
19018
19060
  }
19019
19061
  else {
19020
- i18n_23 = $localize(templateObject_12$1 || (templateObject_12$1 = __makeTemplateObject([":\u241F823229645f8c9028aa1dfdce03560009fb03fe04\u241F613741958181449144:Recettes \u00E0 moins de 5 \u20AC"], [":\u241F823229645f8c9028aa1dfdce03560009fb03fe04\u241F613741958181449144:Recettes \u00E0 moins de 5 \u20AC"])));
19062
+ i18n_23 = $localize(templateObject_12$2 || (templateObject_12$2 = __makeTemplateObject([":\u241F823229645f8c9028aa1dfdce03560009fb03fe04\u241F613741958181449144:Recettes \u00E0 moins de 5 \u20AC"], [":\u241F823229645f8c9028aa1dfdce03560009fb03fe04\u241F613741958181449144:Recettes \u00E0 moins de 5 \u20AC"])));
19021
19063
  }
19022
19064
  var i18n_25;
19023
19065
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -19177,7 +19219,7 @@
19177
19219
  type: i0.Output
19178
19220
  }] });
19179
19221
  })();
19180
- var templateObject_1$t, templateObject_2$m, templateObject_3$g, templateObject_4$d, templateObject_5$b, templateObject_6$9, templateObject_7$6, templateObject_8$3, templateObject_9$3, templateObject_10$1, templateObject_11$1, templateObject_12$1, templateObject_13$1;
19222
+ var templateObject_1$v, templateObject_2$o, templateObject_3$h, templateObject_4$e, templateObject_5$c, templateObject_6$a, templateObject_7$7, templateObject_8$4, templateObject_9$4, templateObject_10$2, templateObject_11$2, templateObject_12$2, templateObject_13$1;
19181
19223
 
19182
19224
  function RecipeCardCtaComponent_div_0_ng_container_2_Template(rf, ctx) {
19183
19225
  if (rf & 1) {
@@ -19886,7 +19928,7 @@
19886
19928
  i18n_0 = MSG_EXTERNAL_9004334984468055592$$LIB__WEB_COMPONENTS_RECIPE_CARDS_RECIPE_CARD_RECIPE_CARD_COMPONENT_TS___1;
19887
19929
  }
19888
19930
  else {
19889
- i18n_0 = $localize(templateObject_1$s || (templateObject_1$s = __makeTemplateObject([":\u241Fc368921f313712ef19fa1f7d05697982582598ef\u241F9004334984468055592:Changer"], [":\u241Fc368921f313712ef19fa1f7d05697982582598ef\u241F9004334984468055592:Changer"])));
19931
+ i18n_0 = $localize(templateObject_1$u || (templateObject_1$u = __makeTemplateObject([":\u241Fc368921f313712ef19fa1f7d05697982582598ef\u241F9004334984468055592:Changer"], [":\u241Fc368921f313712ef19fa1f7d05697982582598ef\u241F9004334984468055592:Changer"])));
19890
19932
  }
19891
19933
  var i18n_2;
19892
19934
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -19894,7 +19936,7 @@
19894
19936
  i18n_2 = MSG_EXTERNAL_70397346439942337$$LIB__WEB_COMPONENTS_RECIPE_CARDS_RECIPE_CARD_RECIPE_CARD_COMPONENT_TS___3;
19895
19937
  }
19896
19938
  else {
19897
- i18n_2 = $localize(templateObject_2$l || (templateObject_2$l = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
19939
+ i18n_2 = $localize(templateObject_2$n || (templateObject_2$n = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
19898
19940
  }
19899
19941
  return [["ngMiamInViewport", "", 1, "miam-recipe-card", 3, "condition", "ngClass", "inViewport"], ["class", "miam-recipe-card__container", "ngMiamInViewport", "", 3, "threshold", "debounceTime", "inViewport", 4, "ngIf"], [3, "close", "actionTriggered", 4, "ngIf"], ["ngMiamInViewport", "", 1, "miam-recipe-card__container", 3, "threshold", "debounceTime", "inViewport"], [1, "miam-recipe-card__top", 3, "click"], [1, "miam-recipe-card__picture"], ["loading", "lazy", 3, "src", "alt", "error"], [1, "miam-recipe-card__gradient"], [1, "miam-recipe-card__content"], [1, "miam-recipe-card__top-container"], ["class", "miam-recipe-card__like", 4, "ngIf"], ["class", "miam-recipe-card__sponsor-container", 4, "ngIf"], ["class", "miam-recipe-card__badge-container", 4, "ngIf"], [1, "miam-recipe-card__picture__bottom"], [1, "miam-recipe-card__title", "miam-ds-text", "weight-xxl", "size-m"], [1, "miam-recipe-card__counter"], [1, "miam-ds-text", "weight-xxl", "size-m"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/recipe-counter.svg", "alt", "people"], [1, "miam-recipe-card__bottom", 3, "click"], ["class", "miam-recipe-card__ingredients__pictures", 4, "ngIf"], [1, "miam-recipe-card__actions"], [1, "miam-recipe-card__infos"], ["class", "miam-recipe-card__difficulty-and-time", 4, "ngIf"], ["class", "miam-recipe-card__price", 4, "ngIf"], [1, "miam-recipe-card__cta"], ["class", "miam-recipe-card__actions__icon", 3, "recipe", "originTrace", 4, "ngIf"], [3, "recipe", "previewAllowed", "displayGuests", "helpButtonAllowed", "originTrace", "displayed", "clicked", 4, "ngIf"], ["class", "miam-recipe-card__actions__replace", 4, "ngIf"], ["class", "miam-ds-button ghost", 3, "click", 4, "ngIf"], [1, "miam-recipe-card__like"], ["class", "miam-recipe-card__actions__icon", 3, "click", 4, "ngIf", "ngIfElse"], ["like", ""], [1, "miam-recipe-card__actions__icon", 3, "click"], ["primaryColor", "var(--m-color-primary)", 3, "iconName"], [1, "miam-recipe-card__actions__icon", 3, "recipe", "originTrace"], [1, "miam-recipe-card__sponsor-container"], ["alt", "sponsor picture", 1, "miam-recipe-card__sponsor-picture", 3, "src"], [1, "miam-recipe-card__badge-container"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/images/recipe_card-badge.svg", "alt", "recipe badge", 1, "miam-recipe-card__badge"], [1, "miam-recipe-card__ingredients__pictures"], [1, "miam-recipe-card__ingredients__picture"], ["alt", "first ingredient picture", 3, "src", "error"], ["alt", "second ingredient picture", 3, "src", "error"], ["class", "miam-recipe-card__ingredients__more", 4, "ngIf"], [1, "miam-recipe-card__ingredients__more"], [1, "miam-recipe-card__difficulty-and-time"], ["class", "miam-recipe-card__difficulty", 4, "ngIf"], ["class", "miam-recipe-card__time", 4, "ngIf"], [1, "miam-recipe-card__difficulty"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/ChefHat.svg", "alt", "difficulty"], [1, "miam-ds-text", "size-s", "weight-m"], [1, "miam-recipe-card__time"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Clock.svg", "alt", "time"], [1, "miam-recipe-card__price"], [1, "miam-ds-text", "weight-xxl", 3, "recipeId", "serves", "inViewport"], [3, "recipe", "previewAllowed", "displayGuests", "helpButtonAllowed", "originTrace", "displayed", "clicked"], [1, "miam-recipe-card__actions__replace"], [1, "miam-ds-button", "ghost", 3, "click"], i18n_0, [1, "miam-ds-button", "ghost", "square", 3, "click"], i18n_2, [3, "close", "actionTriggered"]];
19900
19942
  }, template: function RecipeCardComponent_Template(rf, ctx) {
@@ -19965,7 +20007,7 @@
19965
20007
  type: i0.Output
19966
20008
  }] });
19967
20009
  })();
19968
- var templateObject_1$s, templateObject_2$l;
20010
+ var templateObject_1$u, templateObject_2$n;
19969
20011
 
19970
20012
  /**
19971
20013
  * This is an angular component design to be a web component
@@ -19991,7 +20033,7 @@
19991
20033
  i18n_0 = MSG_EXTERNAL_1931799427977453728$$LIB__WEB_COMPONENTS_RECIPE_CARDS_ADD_RECIPE_CARD_ADD_RECIPE_CARD_COMPONENT_TS_1;
19992
20034
  }
19993
20035
  else {
19994
- i18n_0 = $localize(templateObject_1$r || (templateObject_1$r = __makeTemplateObject([":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"], [":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"])));
20036
+ i18n_0 = $localize(templateObject_1$t || (templateObject_1$t = __makeTemplateObject([":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"], [":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"])));
19995
20037
  }
19996
20038
  return [[1, "miam-add-recipe-card", 3, "click"], [1, "m-button-primary"], ["width", "14", "height", "14", 3, "iconName"], [1, "miam-add-recipe-card__label"], i18n_0];
19997
20039
  }, template: function AddRecipeCardComponent_Template(rf, ctx) {
@@ -20025,7 +20067,7 @@
20025
20067
  type: i0.Output
20026
20068
  }] });
20027
20069
  })();
20028
- var templateObject_1$r;
20070
+ var templateObject_1$t;
20029
20071
 
20030
20072
  function MealsPlannerResultComponent_div_6_div_1_div_1_Template(rf, ctx) {
20031
20073
  if (rf & 1) {
@@ -20163,7 +20205,7 @@
20163
20205
  i18n_0 = MSG_EXTERNAL_4657629567820612951$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_RESULT_MEALS_PLANNER_RESULT_COMPONENT_TS_1;
20164
20206
  }
20165
20207
  else {
20166
- i18n_0 = $localize(templateObject_1$q || (templateObject_1$q = __makeTemplateObject([":\u241Fd1a8da9503639b520a52cbb853f5a36c1df4c92f\u241F4657629567820612951: id\u00E9es repas pour vous"], [":\u241Fd1a8da9503639b520a52cbb853f5a36c1df4c92f\u241F4657629567820612951: id\u00E9es repas pour vous"])));
20208
+ i18n_0 = $localize(templateObject_1$s || (templateObject_1$s = __makeTemplateObject([":\u241Fd1a8da9503639b520a52cbb853f5a36c1df4c92f\u241F4657629567820612951: id\u00E9es repas pour vous"], [":\u241Fd1a8da9503639b520a52cbb853f5a36c1df4c92f\u241F4657629567820612951: id\u00E9es repas pour vous"])));
20167
20209
  }
20168
20210
  var i18n_2;
20169
20211
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -20171,7 +20213,7 @@
20171
20213
  i18n_2 = MSG_EXTERNAL_1290005437956785602$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_RESULT_MEALS_PLANNER_RESULT_COMPONENT_TS_3;
20172
20214
  }
20173
20215
  else {
20174
- i18n_2 = $localize(templateObject_2$k || (templateObject_2$k = __makeTemplateObject([":\u241Fcbd8320aa840fa217e5711e1e1a23bbc04cddacb\u241F1290005437956785602:Ajouter tous les ingr\u00E9dients"], [":\u241Fcbd8320aa840fa217e5711e1e1a23bbc04cddacb\u241F1290005437956785602:Ajouter tous les ingr\u00E9dients"])));
20216
+ i18n_2 = $localize(templateObject_2$m || (templateObject_2$m = __makeTemplateObject([":\u241Fcbd8320aa840fa217e5711e1e1a23bbc04cddacb\u241F1290005437956785602:Ajouter tous les ingr\u00E9dients"], [":\u241Fcbd8320aa840fa217e5711e1e1a23bbc04cddacb\u241F1290005437956785602:Ajouter tous les ingr\u00E9dients"])));
20175
20217
  }
20176
20218
  return [[1, "miam-meals-planner-result"], [1, "miam-meals-planner-result__header"], i18n_0, ["class", "miam-meals-planner-result__recipes", 4, "ngIf", "ngIfElse"], ["isLoading", ""], [1, "miam-meals-planner-result__cta"], ["class", "miam-meals-planner-result__progress-bar", 3, "unit", "value", "max", 4, "ngIf"], [1, "m-button-primary", 3, "disabled", "click"], ["width", "24", "height", "24", 3, "iconName", 4, "ngIf", "ngIfElse"], i18n_2, [1, "miam-meals-planner-result__recipes"], ["class", "miam-meals-planner-result__recipe", 4, "ngFor", "ngForOf"], [1, "miam-meals-planner-result__recipe"], [4, "ngIf", "ngIfElse"], ["addRecipeTemplate", ""], [3, "recipe", "originTrace", "displayPricing", "displayGuests", "previewAllowed", "helpButtonAllowed", "replaceMode", "openCatalog", "removeFromMealsPlanner"], [3, "addRecipe"], [1, "miam-meals-planner-result__progress-bar", 3, "unit", "value", "max"], ["width", "24", "height", "24", 3, "iconName"]];
20177
20219
  }, template: function MealsPlannerResultComponent_Template(rf, ctx) {
@@ -20240,7 +20282,7 @@
20240
20282
  type: i0.Output
20241
20283
  }] });
20242
20284
  })();
20243
- var templateObject_1$q, templateObject_2$k;
20285
+ var templateObject_1$s, templateObject_2$m;
20244
20286
 
20245
20287
  function MealsPlannerBasketPreviewComponent_div_0_div_7_Template(rf, ctx) {
20246
20288
  if (rf & 1) {
@@ -20396,7 +20438,7 @@
20396
20438
  i18n_0 = MSG_EXTERNAL_2700281655709788634$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_BASKET_PREVIEW_MEALS_PLANNER_BASKET_PREVIEW_COMPONENT_TS__1;
20397
20439
  }
20398
20440
  else {
20399
- i18n_0 = $localize(templateObject_1$p || (templateObject_1$p = __makeTemplateObject([":\u241Fcf2dceac3301fce2fb063db095043efd636f8af9\u241F2700281655709788634:repas ajout\u00E9s \u00E0 votre panier"], [":\u241Fcf2dceac3301fce2fb063db095043efd636f8af9\u241F2700281655709788634:repas ajout\u00E9s \u00E0 votre panier"])));
20441
+ i18n_0 = $localize(templateObject_1$r || (templateObject_1$r = __makeTemplateObject([":\u241Fcf2dceac3301fce2fb063db095043efd636f8af9\u241F2700281655709788634:repas ajout\u00E9s \u00E0 votre panier"], [":\u241Fcf2dceac3301fce2fb063db095043efd636f8af9\u241F2700281655709788634:repas ajout\u00E9s \u00E0 votre panier"])));
20400
20442
  }
20401
20443
  var i18n_2;
20402
20444
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -20404,7 +20446,7 @@
20404
20446
  i18n_2 = MSG_EXTERNAL_349368051595787077$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_BASKET_PREVIEW_MEALS_PLANNER_BASKET_PREVIEW_COMPONENT_TS___3;
20405
20447
  }
20406
20448
  else {
20407
- i18n_2 = $localize(templateObject_2$j || (templateObject_2$j = __makeTemplateObject([":\u241Fa0d1fe7eaa09916660fc5082c77b25044a39a100\u241F349368051595787077:Les ingr\u00E9dients partageant plusieurs recettes ont \u00E9t\u00E9 regroup\u00E9s"], [":\u241Fa0d1fe7eaa09916660fc5082c77b25044a39a100\u241F349368051595787077:Les ingr\u00E9dients partageant plusieurs recettes ont \u00E9t\u00E9 regroup\u00E9s"])));
20449
+ i18n_2 = $localize(templateObject_2$l || (templateObject_2$l = __makeTemplateObject([":\u241Fa0d1fe7eaa09916660fc5082c77b25044a39a100\u241F349368051595787077:Les ingr\u00E9dients partageant plusieurs recettes ont \u00E9t\u00E9 regroup\u00E9s"], [":\u241Fa0d1fe7eaa09916660fc5082c77b25044a39a100\u241F349368051595787077:Les ingr\u00E9dients partageant plusieurs recettes ont \u00E9t\u00E9 regroup\u00E9s"])));
20408
20450
  }
20409
20451
  var i18n_4;
20410
20452
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -20412,7 +20454,7 @@
20412
20454
  i18n_4 = MSG_EXTERNAL_2597486146640590065$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_BASKET_PREVIEW_MEALS_PLANNER_BASKET_PREVIEW_COMPONENT_TS___5;
20413
20455
  }
20414
20456
  else {
20415
- i18n_4 = $localize(templateObject_3$f || (templateObject_3$f = __makeTemplateObject([":\u241F36b57ca9ce912938699424cf85d5cac2a6bfa738\u241F2597486146640590065:Aller \u00E0 mon panier"], [":\u241F36b57ca9ce912938699424cf85d5cac2a6bfa738\u241F2597486146640590065:Aller \u00E0 mon panier"])));
20457
+ i18n_4 = $localize(templateObject_3$g || (templateObject_3$g = __makeTemplateObject([":\u241F36b57ca9ce912938699424cf85d5cac2a6bfa738\u241F2597486146640590065:Aller \u00E0 mon panier"], [":\u241F36b57ca9ce912938699424cf85d5cac2a6bfa738\u241F2597486146640590065:Aller \u00E0 mon panier"])));
20416
20458
  }
20417
20459
  var i18n_6;
20418
20460
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -20420,7 +20462,7 @@
20420
20462
  i18n_6 = MSG_EXTERNAL_4645762297074474087$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_BASKET_PREVIEW_MEALS_PLANNER_BASKET_PREVIEW_COMPONENT_TS___7;
20421
20463
  }
20422
20464
  else {
20423
- i18n_6 = $localize(templateObject_4$c || (templateObject_4$c = __makeTemplateObject([":\u241Fd8ccc910c8536280f86357456fb751e967f3041f\u241F4645762297074474087:Continuer mes achats"], [":\u241Fd8ccc910c8536280f86357456fb751e967f3041f\u241F4645762297074474087:Continuer mes achats"])));
20465
+ i18n_6 = $localize(templateObject_4$d || (templateObject_4$d = __makeTemplateObject([":\u241Fd8ccc910c8536280f86357456fb751e967f3041f\u241F4645762297074474087:Continuer mes achats"], [":\u241Fd8ccc910c8536280f86357456fb751e967f3041f\u241F4645762297074474087:Continuer mes achats"])));
20424
20466
  }
20425
20467
  var i18n_8;
20426
20468
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -20428,7 +20470,7 @@
20428
20470
  i18n_8 = MSG_EXTERNAL_3503734824800029552$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_BASKET_PREVIEW_MEALS_PLANNER_BASKET_PREVIEW_COMPONENT_TS___9;
20429
20471
  }
20430
20472
  else {
20431
- i18n_8 = $localize(templateObject_5$a || (templateObject_5$a = __makeTemplateObject([":\u241F4f168d78d73759138d43c58ec329dc9a1cfcd316\u241F3503734824800029552:Finaliser"], [":\u241F4f168d78d73759138d43c58ec329dc9a1cfcd316\u241F3503734824800029552:Finaliser"])));
20473
+ i18n_8 = $localize(templateObject_5$b || (templateObject_5$b = __makeTemplateObject([":\u241F4f168d78d73759138d43c58ec329dc9a1cfcd316\u241F3503734824800029552:Finaliser"], [":\u241F4f168d78d73759138d43c58ec329dc9a1cfcd316\u241F3503734824800029552:Finaliser"])));
20432
20474
  }
20433
20475
  return [["class", "miam-meals-planner-basket-preview", 4, "ngIf"], [1, "miam-meals-planner-basket-preview"], [1, "miam-meals-planner-basket-preview__content"], [1, "miam-meals-planner-basket-preview__title"], i18n_0, ["class", "miam-meals-planner-basket-preview__ingredients-regrouped", 4, "ngIf"], [3, "originTrace", "recipesIds", "displayItemsUnitaryPrice", "legacyMode", "loading"], [1, "miam-meals-planner-basket-preview__actions"], ["class", "miam-meals-planner-basket-preview__progress-bar", 3, "unit", "value", "max", 4, "ngIf"], ["class", "m-button-primary reverse", 3, "disabled", 4, "ngIf"], [1, "m-button-primary", 3, "disabled"], ["href", "/", 4, "ngIf", "ngIfElse"], ["antiInflation", ""], [1, "miam-meals-planner-basket-preview__ingredients-regrouped"], [1, "miam-meals-planner-basket-preview__ingredients-regrouped__title"], i18n_2, [1, "miam-meals-planner-basket-preview__progress-bar", 3, "unit", "value", "max"], [1, "m-button-primary", "reverse", 3, "disabled"], [3, "href"], [1, "miam-meals-planner-basket-preview__button-text"], i18n_4, ["href", "/"], i18n_6, [3, "click"], i18n_8];
20434
20476
  }, template: function MealsPlannerBasketPreviewComponent_Template(rf, ctx) {
@@ -20461,7 +20503,7 @@
20461
20503
  type: i0.Output
20462
20504
  }] });
20463
20505
  })();
20464
- var templateObject_1$p, templateObject_2$j, templateObject_3$f, templateObject_4$c, templateObject_5$a;
20506
+ var templateObject_1$r, templateObject_2$l, templateObject_3$g, templateObject_4$d, templateObject_5$b;
20465
20507
 
20466
20508
  var RecipeFilters = /** @class */ (function () {
20467
20509
  function RecipeFilters(filters) {
@@ -20619,7 +20661,7 @@
20619
20661
  i18n_0 = MSG_EXTERNAL_211763042876194117$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_ARTICLE_CARD_CATALOG_ARTICLE_CARD_COMPONENT_TS_1;
20620
20662
  }
20621
20663
  else {
20622
- i18n_0 = $localize(templateObject_1$o || (templateObject_1$o = __makeTemplateObject([":\u241F1100513985b01c08c9ecd4ea99055b73af000d3b\u241F211763042876194117:Voir l'article"], [":\u241F1100513985b01c08c9ecd4ea99055b73af000d3b\u241F211763042876194117:Voir l'article"])));
20664
+ i18n_0 = $localize(templateObject_1$q || (templateObject_1$q = __makeTemplateObject([":\u241F1100513985b01c08c9ecd4ea99055b73af000d3b\u241F211763042876194117:Voir l'article"], [":\u241F1100513985b01c08c9ecd4ea99055b73af000d3b\u241F211763042876194117:Voir l'article"])));
20623
20665
  }
20624
20666
  return [[1, "miam-catalog-article-card", 3, "click"], [1, "miam-catalog-card__picture"], [1, "miam-catalog-card__picture__gradient"], ["loading", "lazy", 1, "miam-catalog-card__picture__img", 3, "src"], ["class", "miam-catalog-card__picture__sponsor", 3, "src", 4, "ngIf"], [1, "miam-catalog-card__attributes"], [1, "miam-catalog-article-card__attributes__title"], [1, "miam-catalog-card__attributes__infos"], [1, "miam-catalog-card__attributes__info"], [1, "miam-catalog-card__info__label"], ["target", "_blank", 3, "href"], i18n_0, [1, "miam-catalog-card__picture__sponsor", 3, "src"]];
20625
20667
  }, template: function CatalogArticleCardComponent_Template(rf, ctx) {
@@ -20680,7 +20722,7 @@
20680
20722
  type: i0.Input
20681
20723
  }] });
20682
20724
  })();
20683
- var templateObject_1$o;
20725
+ var templateObject_1$q;
20684
20726
 
20685
20727
  var _d;
20686
20728
  function CatalogListComponent_div_1_div_2_ng_container_4_Template(rf, ctx) {
@@ -21103,7 +21145,7 @@
21103
21145
  i18n_0 = MSG_EXTERNAL_2565683500171826824$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_LIST_CATALOG_LIST_COMPONENT_TS___1;
21104
21146
  }
21105
21147
  else {
21106
- i18n_0 = $localize(templateObject_1$n || (templateObject_1$n = __makeTemplateObject([":\u241F76ee44f7935807cf4d6b8ff1607b028ce2be19e7\u241F2565683500171826824:D\u00E9sol\u00E9, aucune proposition trouv\u00E9e"], [":\u241F76ee44f7935807cf4d6b8ff1607b028ce2be19e7\u241F2565683500171826824:D\u00E9sol\u00E9, aucune proposition trouv\u00E9e"])));
21148
+ i18n_0 = $localize(templateObject_1$p || (templateObject_1$p = __makeTemplateObject([":\u241F76ee44f7935807cf4d6b8ff1607b028ce2be19e7\u241F2565683500171826824:D\u00E9sol\u00E9, aucune proposition trouv\u00E9e"], [":\u241F76ee44f7935807cf4d6b8ff1607b028ce2be19e7\u241F2565683500171826824:D\u00E9sol\u00E9, aucune proposition trouv\u00E9e"])));
21107
21149
  }
21108
21150
  var i18n_2;
21109
21151
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21111,7 +21153,7 @@
21111
21153
  i18n_2 = MSG_EXTERNAL_5723427117816878191$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_LIST_CATALOG_LIST_COMPONENT_TS___3;
21112
21154
  }
21113
21155
  else {
21114
- i18n_2 = $localize(templateObject_2$i || (templateObject_2$i = __makeTemplateObject([":\u241Ff351918bf85f7f5deab0f77feb0e39d2ee85958f\u241F5723427117816878191:Veuillez modifier les termes de votre recherche ou r\u00E9gler les filtres"], [":\u241Ff351918bf85f7f5deab0f77feb0e39d2ee85958f\u241F5723427117816878191:Veuillez modifier les termes de votre recherche ou r\u00E9gler les filtres"])));
21156
+ i18n_2 = $localize(templateObject_2$k || (templateObject_2$k = __makeTemplateObject([":\u241Ff351918bf85f7f5deab0f77feb0e39d2ee85958f\u241F5723427117816878191:Veuillez modifier les termes de votre recherche ou r\u00E9gler les filtres"], [":\u241Ff351918bf85f7f5deab0f77feb0e39d2ee85958f\u241F5723427117816878191:Veuillez modifier les termes de votre recherche ou r\u00E9gler les filtres"])));
21115
21157
  }
21116
21158
  var i18n_4;
21117
21159
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21119,7 +21161,7 @@
21119
21161
  i18n_4 = MSG_EXTERNAL_6410345110451741598$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_LIST_CATALOG_LIST_COMPONENT_TS____5;
21120
21162
  }
21121
21163
  else {
21122
- i18n_4 = $localize(templateObject_3$e || (templateObject_3$e = __makeTemplateObject([":\u241F1987d6d2d7b60e267f6d65eb3c4cdb5c975d5f54\u241F6410345110451741598:pour"], [":\u241F1987d6d2d7b60e267f6d65eb3c4cdb5c975d5f54\u241F6410345110451741598:pour"])));
21164
+ i18n_4 = $localize(templateObject_3$f || (templateObject_3$f = __makeTemplateObject([":\u241F1987d6d2d7b60e267f6d65eb3c4cdb5c975d5f54\u241F6410345110451741598:pour"], [":\u241F1987d6d2d7b60e267f6d65eb3c4cdb5c975d5f54\u241F6410345110451741598:pour"])));
21123
21165
  }
21124
21166
  var i18n_6;
21125
21167
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21127,7 +21169,7 @@
21127
21169
  i18n_6 = MSG_EXTERNAL_2399216061429613805$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_LIST_CATALOG_LIST_COMPONENT_TS____7;
21128
21170
  }
21129
21171
  else {
21130
- i18n_6 = $localize(templateObject_4$b || (templateObject_4$b = __makeTemplateObject([":\u241Fdb458c8ad589c2c8f67365423c366fba69c29b72\u241F2399216061429613805:D\u00E9sol\u00E9, vous n'avez pas encore d'id\u00E9es repas sauvegard\u00E9es"], [":\u241Fdb458c8ad589c2c8f67365423c366fba69c29b72\u241F2399216061429613805:D\u00E9sol\u00E9, vous n'avez pas encore d'id\u00E9es repas sauvegard\u00E9es"])));
21172
+ i18n_6 = $localize(templateObject_4$c || (templateObject_4$c = __makeTemplateObject([":\u241Fdb458c8ad589c2c8f67365423c366fba69c29b72\u241F2399216061429613805:D\u00E9sol\u00E9, vous n'avez pas encore d'id\u00E9es repas sauvegard\u00E9es"], [":\u241Fdb458c8ad589c2c8f67365423c366fba69c29b72\u241F2399216061429613805:D\u00E9sol\u00E9, vous n'avez pas encore d'id\u00E9es repas sauvegard\u00E9es"])));
21131
21173
  }
21132
21174
  var i18n_8;
21133
21175
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21135,7 +21177,7 @@
21135
21177
  i18n_8 = MSG_EXTERNAL_4851375363781203983$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_LIST_CATALOG_LIST_COMPONENT_TS___9;
21136
21178
  }
21137
21179
  else {
21138
- i18n_8 = $localize(templateObject_5$9 || (templateObject_5$9 = __makeTemplateObject([":\u241Fcdf437ced0967505680ee7fbb9fe6583203edb25\u241F4851375363781203983:D\u00E9sol\u00E9, vous devez \u00EAtre connect\u00E9 pour acc\u00E9der au contenu de cette page."], [":\u241Fcdf437ced0967505680ee7fbb9fe6583203edb25\u241F4851375363781203983:D\u00E9sol\u00E9, vous devez \u00EAtre connect\u00E9 pour acc\u00E9der au contenu de cette page."])));
21180
+ i18n_8 = $localize(templateObject_5$a || (templateObject_5$a = __makeTemplateObject([":\u241Fcdf437ced0967505680ee7fbb9fe6583203edb25\u241F4851375363781203983:D\u00E9sol\u00E9, vous devez \u00EAtre connect\u00E9 pour acc\u00E9der au contenu de cette page."], [":\u241Fcdf437ced0967505680ee7fbb9fe6583203edb25\u241F4851375363781203983:D\u00E9sol\u00E9, vous devez \u00EAtre connect\u00E9 pour acc\u00E9der au contenu de cette page."])));
21139
21181
  }
21140
21182
  var i18n_11;
21141
21183
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21143,7 +21185,7 @@
21143
21185
  i18n_11 = MSG_EXTERNAL_1875448131572248295$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_LIST_CATALOG_LIST_COMPONENT_TS__12;
21144
21186
  }
21145
21187
  else {
21146
- i18n_11 = $localize(templateObject_6$8 || (templateObject_6$8 = __makeTemplateObject([":\u241F834498e5698b366d53cba7a7f98b06a12967862c\u241F1875448131572248295: Chargement des r\u00E9sultats... "], [":\u241F834498e5698b366d53cba7a7f98b06a12967862c\u241F1875448131572248295: Chargement des r\u00E9sultats... "])));
21188
+ i18n_11 = $localize(templateObject_6$9 || (templateObject_6$9 = __makeTemplateObject([":\u241F834498e5698b366d53cba7a7f98b06a12967862c\u241F1875448131572248295: Chargement des r\u00E9sultats... "], [":\u241F834498e5698b366d53cba7a7f98b06a12967862c\u241F1875448131572248295: Chargement des r\u00E9sultats... "])));
21147
21189
  }
21148
21190
  return [[1, "miam-catalog-list"], ["class", "miam-catalog-list__notFound", 4, "ngIf"], ["class", "miam-catalog-list__loader", 4, "ngIf"], [1, "miam-catalog-list__cards"], ["class", "miam-catalog-list__card", 3, "clicked", 4, "ngIf"], ["recipeCard", ""], [4, "ngFor", "ngForOf", "ngForTrackBy"], [3, "article", 4, "ngFor", "ngForOf"], [1, "miam-catalog-list__notFound"], [1, "miam-catalog-list__notFound__icon", 3, "width", "height", "iconName", "ngClass"], [4, "ngIf", "ngIfElse"], ["notFiltering", ""], ["notLogged", ""], [1, "miam-catalog-list__notFound__title1", "filtering"], i18n_0, [4, "ngIf"], [1, "miam-catalog-list__notFound__title2"], i18n_2, i18n_4, [1, "miam-catalog-list__notFound__title1", "not-filtering"], i18n_6, [1, "miam-catalog-list__notFound__title1", "not-logged"], i18n_8, [1, "miam-catalog-list__loader"], i18n_11, [1, "miam-catalog-list__card", 3, "clicked"], [3, "recipe", "originTrace", "displayPricing", "previewAllowed", "addRecipeMode", "displayGuests", "displayVariant", "helpButtonAllowed", "addToMealsPlanner", "actionTriggered"], [3, "ngTemplateOutlet", "ngTemplateOutletContext", 4, "ngIf"], ["ngMiamLoadOnScroll", "", "marginRoot", "600px", 3, "isLoading", "loadMore"], [3, "ngTemplateOutlet", "ngTemplateOutletContext"], [3, "article"]];
21149
21191
  }, template: function CatalogListComponent_Template(rf, ctx) {
@@ -21219,7 +21261,7 @@
21219
21261
  args: [RecipeCardComponent]
21220
21262
  }] });
21221
21263
  })();
21222
- var templateObject_1$n, templateObject_2$i, templateObject_3$e, templateObject_4$b, templateObject_5$9, templateObject_6$8;
21264
+ var templateObject_1$p, templateObject_2$k, templateObject_3$f, templateObject_4$c, templateObject_5$a, templateObject_6$9;
21223
21265
 
21224
21266
  function MealsPlannerCatalogComponent_div_14_Template(rf, ctx) {
21225
21267
  if (rf & 1) {
@@ -21305,7 +21347,7 @@
21305
21347
  i18n_0 = MSG_EXTERNAL_2741573127118604046$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_CATALOG_MEALS_PLANNER_CATALOG_COMPONENT_TS_1;
21306
21348
  }
21307
21349
  else {
21308
- i18n_0 = $localize(templateObject_1$m || (templateObject_1$m = __makeTemplateObject([":\u241F6cb5a8804ba593a77922c959033124fb565416bb\u241F2741573127118604046:Notre catalogue"], [":\u241F6cb5a8804ba593a77922c959033124fb565416bb\u241F2741573127118604046:Notre catalogue"])));
21350
+ i18n_0 = $localize(templateObject_1$o || (templateObject_1$o = __makeTemplateObject([":\u241F6cb5a8804ba593a77922c959033124fb565416bb\u241F2741573127118604046:Notre catalogue"], [":\u241F6cb5a8804ba593a77922c959033124fb565416bb\u241F2741573127118604046:Notre catalogue"])));
21309
21351
  }
21310
21352
  var i18n_2;
21311
21353
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21313,7 +21355,7 @@
21313
21355
  i18n_2 = MSG_EXTERNAL_4373423141595793013$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_CATALOG_MEALS_PLANNER_CATALOG_COMPONENT_TS_3;
21314
21356
  }
21315
21357
  else {
21316
- i18n_2 = $localize(templateObject_2$h || (templateObject_2$h = __makeTemplateObject([":\u241F6b1b3304924780b971d5ab5a03ef36bb1f9903dc\u241F4373423141595793013:Rechercher un ingr\u00E9dient, un repas..."], [":\u241F6b1b3304924780b971d5ab5a03ef36bb1f9903dc\u241F4373423141595793013:Rechercher un ingr\u00E9dient, un repas..."])));
21358
+ i18n_2 = $localize(templateObject_2$j || (templateObject_2$j = __makeTemplateObject([":\u241F6b1b3304924780b971d5ab5a03ef36bb1f9903dc\u241F4373423141595793013:Rechercher un ingr\u00E9dient, un repas..."], [":\u241F6b1b3304924780b971d5ab5a03ef36bb1f9903dc\u241F4373423141595793013:Rechercher un ingr\u00E9dient, un repas..."])));
21317
21359
  }
21318
21360
  var i18n_4;
21319
21361
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21321,7 +21363,7 @@
21321
21363
  i18n_4 = MSG_EXTERNAL_673430564078029527$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_CATALOG_MEALS_PLANNER_CATALOG_COMPONENT_TS_5;
21322
21364
  }
21323
21365
  else {
21324
- i18n_4 = $localize(templateObject_3$d || (templateObject_3$d = __makeTemplateObject([":\u241F43a5be6775550e305fdcc873e3fe93fe756b2340\u241F673430564078029527:Filtrer"], [":\u241F43a5be6775550e305fdcc873e3fe93fe756b2340\u241F673430564078029527:Filtrer"])));
21366
+ i18n_4 = $localize(templateObject_3$e || (templateObject_3$e = __makeTemplateObject([":\u241F43a5be6775550e305fdcc873e3fe93fe756b2340\u241F673430564078029527:Filtrer"], [":\u241F43a5be6775550e305fdcc873e3fe93fe756b2340\u241F673430564078029527:Filtrer"])));
21325
21367
  }
21326
21368
  return [[1, "miam-meals-planner-catalog"], [1, "miam-meals-planner-catalog__title", 3, "click"], ["width", "24", "height", "24", 3, "iconName"], i18n_0, [1, "miam-meals-planner-catalog__search-and-filters"], [1, "miam-meals-planner-catalog__searchbar"], ["type", "text", "placeholder", i18n_2, 1, "miam-meals-planner-catalog__searchbar__input", 3, "ngModel", "ngModelChange", "keydown.enter", "blur"], [1, "miam-meals-planner-catalog__searchbar__button", "m-button-primary"], ["width", "20", "height", "20", 3, "iconName", "click"], [1, "miam-meals-planner-catalog__controls__filter", "m-button-primary", 3, "click"], ["width", "18", "height", "18", 3, "iconName"], i18n_4, ["class", "miam-meals-planner-catalog__controls__filter-badge", 4, "ngIf"], [3, "filters", "isFilterCollapsed", "modifiedGuests", "position", "excludedRecipesIds", "filterChanged", "filterCollapsed"], [3, "displayPricing", "addRecipeMode", "modifiedGuests", "originTrace", "filters", "displayGuests", "helpButtonAllowed", "excludedRecipesIds", "addToMealsPlanner"], [1, "miam-meals-planner-catalog__controls__filter-badge"]];
21327
21369
  }, template: function MealsPlannerCatalogComponent_Template(rf, ctx) {
@@ -21403,7 +21445,7 @@
21403
21445
  type: i0.Output
21404
21446
  }] });
21405
21447
  })();
21406
- var templateObject_1$m, templateObject_2$h, templateObject_3$d;
21448
+ var templateObject_1$o, templateObject_2$j, templateObject_3$e;
21407
21449
 
21408
21450
  var MealsPlannerBasketConfirmationComponent = /** @class */ (function (_super) {
21409
21451
  __extends(MealsPlannerBasketConfirmationComponent, _super);
@@ -21437,7 +21479,7 @@
21437
21479
  i18n_0 = MSG_EXTERNAL_978176854081714634$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_BASKET_CONFIRMATION_MEALS_PLANNER_BASKET_CONFIRMATION_COMPONENT_TS_1;
21438
21480
  }
21439
21481
  else {
21440
- i18n_0 = $localize(templateObject_1$l || (templateObject_1$l = __makeTemplateObject([":\u241F070863459779ec17a5df3cd63552750ac395fcff\u241F978176854081714634:Les produits associ\u00E9s ont bien \u00E9t\u00E9 ajout\u00E9s au panier."], [":\u241F070863459779ec17a5df3cd63552750ac395fcff\u241F978176854081714634:Les produits associ\u00E9s ont bien \u00E9t\u00E9 ajout\u00E9s au panier."])));
21482
+ i18n_0 = $localize(templateObject_1$n || (templateObject_1$n = __makeTemplateObject([":\u241F070863459779ec17a5df3cd63552750ac395fcff\u241F978176854081714634:Les produits associ\u00E9s ont bien \u00E9t\u00E9 ajout\u00E9s au panier."], [":\u241F070863459779ec17a5df3cd63552750ac395fcff\u241F978176854081714634:Les produits associ\u00E9s ont bien \u00E9t\u00E9 ajout\u00E9s au panier."])));
21441
21483
  }
21442
21484
  var i18n_2;
21443
21485
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21445,7 +21487,7 @@
21445
21487
  i18n_2 = MSG_EXTERNAL_4036486395657962105$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_BASKET_CONFIRMATION_MEALS_PLANNER_BASKET_CONFIRMATION_COMPONENT_TS_3;
21446
21488
  }
21447
21489
  else {
21448
- i18n_2 = $localize(templateObject_2$g || (templateObject_2$g = __makeTemplateObject([":\u241Fb816d5230adee4e60776b057a7144fc5efd1b7a3\u241F4036486395657962105:repas pour"], [":\u241Fb816d5230adee4e60776b057a7144fc5efd1b7a3\u241F4036486395657962105:repas pour"])));
21490
+ i18n_2 = $localize(templateObject_2$i || (templateObject_2$i = __makeTemplateObject([":\u241Fb816d5230adee4e60776b057a7144fc5efd1b7a3\u241F4036486395657962105:repas pour"], [":\u241Fb816d5230adee4e60776b057a7144fc5efd1b7a3\u241F4036486395657962105:repas pour"])));
21449
21491
  }
21450
21492
  var i18n_4;
21451
21493
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21453,7 +21495,7 @@
21453
21495
  i18n_4 = MSG_EXTERNAL_4292207916107004711$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_BASKET_CONFIRMATION_MEALS_PLANNER_BASKET_CONFIRMATION_COMPONENT_TS_5;
21454
21496
  }
21455
21497
  else {
21456
- i18n_4 = $localize(templateObject_3$c || (templateObject_3$c = __makeTemplateObject([":\u241Fed84d683f4ccdd851df9aed7dcb8283a1e374245\u241F4292207916107004711:D\u00E9couvrez aussi :"], [":\u241Fed84d683f4ccdd851df9aed7dcb8283a1e374245\u241F4292207916107004711:D\u00E9couvrez aussi :"])));
21498
+ i18n_4 = $localize(templateObject_3$d || (templateObject_3$d = __makeTemplateObject([":\u241Fed84d683f4ccdd851df9aed7dcb8283a1e374245\u241F4292207916107004711:D\u00E9couvrez aussi :"], [":\u241Fed84d683f4ccdd851df9aed7dcb8283a1e374245\u241F4292207916107004711:D\u00E9couvrez aussi :"])));
21457
21499
  }
21458
21500
  var i18n_6;
21459
21501
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21461,7 +21503,7 @@
21461
21503
  i18n_6 = MSG_EXTERNAL_7677197880949375688$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_BASKET_CONFIRMATION_MEALS_PLANNER_BASKET_CONFIRMATION_COMPONENT_TS_7;
21462
21504
  }
21463
21505
  else {
21464
- i18n_6 = $localize(templateObject_4$a || (templateObject_4$a = __makeTemplateObject([":\u241F0b2493727f9ebd25d711a2206c44146a7b585828\u241F7677197880949375688:Nos promotions"], [":\u241F0b2493727f9ebd25d711a2206c44146a7b585828\u241F7677197880949375688:Nos promotions"])));
21506
+ i18n_6 = $localize(templateObject_4$b || (templateObject_4$b = __makeTemplateObject([":\u241F0b2493727f9ebd25d711a2206c44146a7b585828\u241F7677197880949375688:Nos promotions"], [":\u241F0b2493727f9ebd25d711a2206c44146a7b585828\u241F7677197880949375688:Nos promotions"])));
21465
21507
  }
21466
21508
  return [[1, "meals-planner-basket-confirmation"], [1, "meals-planner-basket-confirmation__content"], [1, "meals-planner-basket-confirmation__result"], [1, "meals-planner-basket-confirmation__title"], i18n_0, [1, "meals-planner-basket-confirmation__price"], [1, "meals-planner-basket-confirmation__meal-count"], i18n_2, [1, "meals-planner-basket-confirmation__price-value"], [1, "meals-planner-basket-confirmation__discover"], i18n_4, [1, "m-button-secondary"], [3, "href"], [1, "meals-planner-basket-confirmation__button-text"], i18n_6];
21467
21509
  }, template: function MealsPlannerBasketConfirmationComponent_Template(rf, ctx) {
@@ -21534,7 +21576,7 @@
21534
21576
  type: i0.Input
21535
21577
  }] });
21536
21578
  })();
21537
- var templateObject_1$l, templateObject_2$g, templateObject_3$c, templateObject_4$a;
21579
+ var templateObject_1$n, templateObject_2$i, templateObject_3$d, templateObject_4$b;
21538
21580
 
21539
21581
  var _b;
21540
21582
  var _c0$5 = ["miamMealsPlannerTopAnchor"];
@@ -21960,7 +22002,7 @@
21960
22002
  i18n_1 = MSG_EXTERNAL_8408582562313036652$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_COMPONENT_TS__2;
21961
22003
  }
21962
22004
  else {
21963
- i18n_1 = $localize(templateObject_1$k || (templateObject_1$k = __makeTemplateObject([":\u241F3f30012e0912f74e7f63e47637dea7a01f9521fa\u241F8408582562313036652:Id\u00E9es repas"], [":\u241F3f30012e0912f74e7f63e47637dea7a01f9521fa\u241F8408582562313036652:Id\u00E9es repas"])));
22005
+ i18n_1 = $localize(templateObject_1$m || (templateObject_1$m = __makeTemplateObject([":\u241F3f30012e0912f74e7f63e47637dea7a01f9521fa\u241F8408582562313036652:Id\u00E9es repas"], [":\u241F3f30012e0912f74e7f63e47637dea7a01f9521fa\u241F8408582562313036652:Id\u00E9es repas"])));
21964
22006
  }
21965
22007
  var i18n_3;
21966
22008
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21968,7 +22010,7 @@
21968
22010
  i18n_3 = MSG_EXTERNAL_406825433402702343$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_COMPONENT_TS__4;
21969
22011
  }
21970
22012
  else {
21971
- i18n_3 = $localize(templateObject_2$f || (templateObject_2$f = __makeTemplateObject([":\u241F1699ac3b921e6d286c72605705ac342f122b2652\u241F406825433402702343:Planifier mes repas"], [":\u241F1699ac3b921e6d286c72605705ac342f122b2652\u241F406825433402702343:Planifier mes repas"])));
22013
+ i18n_3 = $localize(templateObject_2$h || (templateObject_2$h = __makeTemplateObject([":\u241F1699ac3b921e6d286c72605705ac342f122b2652\u241F406825433402702343:Planifier mes repas"], [":\u241F1699ac3b921e6d286c72605705ac342f122b2652\u241F406825433402702343:Planifier mes repas"])));
21972
22014
  }
21973
22015
  var i18n_5;
21974
22016
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -21976,7 +22018,7 @@
21976
22018
  i18n_5 = MSG_EXTERNAL_1931799427977453728$$LIB__WEB_COMPONENTS_MEALS_PLANNER_MEALS_PLANNER_COMPONENT_TS___6;
21977
22019
  }
21978
22020
  else {
21979
- i18n_5 = $localize(templateObject_3$b || (templateObject_3$b = __makeTemplateObject([":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"], [":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"])));
22021
+ i18n_5 = $localize(templateObject_3$c || (templateObject_3$c = __makeTemplateObject([":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"], [":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"])));
21980
22022
  }
21981
22023
  return [[1, "miam-meals-planner-anchor"], ["miamMealsPlannerTopAnchor", ""], ["class", "miam-meals-planner", 4, "ngIf"], [1, "miam-meals-planner"], [1, "miam-meals-planner__header"], [1, "miam-meals-planner__header__breadcrumb", 3, "ngClass"], ["href", "/"], ["width", "18", "height", "18", "primaryColor", "#1F3543", 3, "iconName"], ["width", "24", "height", "24", 1, "chevron-right", 3, "iconName"], [1, "inactive", 3, "href"], i18n_1, ["href", "javascript:void(0)", 1, "active"], i18n_3, ["class", "chevron-right", "width", "24", "height", "24", 3, "iconName", 4, "ngIf"], ["href", "javascript:void(0)", "class", "subCategory", 4, "ngIf"], ["class", "miam-meals-planner__content", 4, "ngIf"], ["href", "javascript:void(0)", 1, "subCategory"], i18n_5, [1, "miam-meals-planner__content"], [3, "originTrace", "reduced", "form", "loading", "ngClass", "submitted", 4, "ngIf"], [3, "originTrace", "recipes", "usedBudget", "maxBudget", "loading", "recipeRemoval", "confirmed", "openCatalog", 4, "ngIf"], [3, "recipesIds", "usedBudget", "maxBudget", "ingredientsRegrouped", "originTrace", "ngClass", "closed", 4, "ngIf"], [3, "modifiedGuests", "originTrace", "remainingBudget", "remainingRecipesNumber", "excludedRecipesIds", "editRecipe", "canceled", 4, "ngIf"], [3, "recipesIds", "originTrace", "budget", 4, "ngIf"], [3, "originTrace", "reduced", "form", "loading", "ngClass", "submitted"], [3, "originTrace", "recipes", "usedBudget", "maxBudget", "loading", "recipeRemoval", "confirmed", "openCatalog"], [3, "recipesIds", "usedBudget", "maxBudget", "ingredientsRegrouped", "originTrace", "ngClass", "closed"], [3, "modifiedGuests", "originTrace", "remainingBudget", "remainingRecipesNumber", "excludedRecipesIds", "editRecipe", "canceled"], [3, "recipesIds", "originTrace", "budget"]];
21982
22024
  }, template: function MealsPlannerComponent_Template(rf, ctx) {
@@ -22004,7 +22046,7 @@
22004
22046
  args: ['miamMealsPlannerTopAnchor']
22005
22047
  }] });
22006
22048
  })();
22007
- var templateObject_1$k, templateObject_2$f, templateObject_3$b;
22049
+ var templateObject_1$m, templateObject_2$h, templateObject_3$c;
22008
22050
 
22009
22051
  var _c;
22010
22052
  var _c0$4 = ["categoryContent"];
@@ -22203,7 +22245,7 @@
22203
22245
  i18n_2 = MSG_EXTERNAL_8874543985358049965$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_CATEGORY_CATALOG_CATEGORY_COMPONENT_TS__3;
22204
22246
  }
22205
22247
  else {
22206
- i18n_2 = $localize(templateObject_1$j || (templateObject_1$j = __makeTemplateObject([":\u241Fab6947c0f33ef4dbeb1a52af1db5d1bf6b3a7ea2\u241F8874543985358049965:Voir tout"], [":\u241Fab6947c0f33ef4dbeb1a52af1db5d1bf6b3a7ea2\u241F8874543985358049965:Voir tout"])));
22248
+ i18n_2 = $localize(templateObject_1$l || (templateObject_1$l = __makeTemplateObject([":\u241Fab6947c0f33ef4dbeb1a52af1db5d1bf6b3a7ea2\u241F8874543985358049965:Voir tout"], [":\u241Fab6947c0f33ef4dbeb1a52af1db5d1bf6b3a7ea2\u241F8874543985358049965:Voir tout"])));
22207
22249
  }
22208
22250
  var i18n_4;
22209
22251
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22211,7 +22253,7 @@
22211
22253
  i18n_4 = MSG_EXTERNAL_5011068305185462335$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_CATEGORY_CATALOG_CATEGORY_COMPONENT_TS___5;
22212
22254
  }
22213
22255
  else {
22214
- i18n_4 = $localize(templateObject_2$e || (templateObject_2$e = __makeTemplateObject([":\u241F8f2c8f66fed7cbda7649b4ba2320375ff7526dbb\u241F5011068305185462335: Chargement des r\u00E9sultats... "], [":\u241F8f2c8f66fed7cbda7649b4ba2320375ff7526dbb\u241F5011068305185462335: Chargement des r\u00E9sultats... "])));
22256
+ i18n_4 = $localize(templateObject_2$g || (templateObject_2$g = __makeTemplateObject([":\u241F8f2c8f66fed7cbda7649b4ba2320375ff7526dbb\u241F5011068305185462335: Chargement des r\u00E9sultats... "], [":\u241F8f2c8f66fed7cbda7649b4ba2320375ff7526dbb\u241F5011068305185462335: Chargement des r\u00E9sultats... "])));
22215
22257
  }
22216
22258
  return [["class", "miam-catalog-category", 4, "ngIf"], [1, "miam-catalog-category"], [1, "miam-catalog-category__header"], [1, "miam-catalog-category__title", 3, "click"], [1, "miam-catalog-category__header__bottom"], [1, "miam-catalog-category__subtitle", "miam-ds-text", "size-s", "weight-l"], [1, "miam-catalog-category__link", "miam-ds-text", "size-s", "weight-xl", 3, "click"], i18n_2, ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/arrow-right.svg", "alt", "Arrow"], [1, "miam-catalog-category__content"], ["categoryContent", ""], [1, "miam-catalog-category__cards"], ["categoryCards", ""], ["class", "miam-catalog-category__loader", 4, "ngIf"], [3, "recipe", "displayInfos", "displayPricing", "displayVariant", "originTrace", 4, "ngFor", "ngForOf"], [3, "article", 4, "ngFor", "ngForOf"], [1, "miam-catalog-category__loader"], i18n_4, [3, "recipe", "displayInfos", "displayPricing", "displayVariant", "originTrace"], [3, "article"]];
22217
22259
  }, template: function CatalogCategoryComponent_Template(rf, ctx) {
@@ -22265,7 +22307,7 @@
22265
22307
  args: [RecipeCardComponent]
22266
22308
  }] });
22267
22309
  })();
22268
- var templateObject_1$j, templateObject_2$e;
22310
+ var templateObject_1$l, templateObject_2$g;
22269
22311
 
22270
22312
  var _c2$4 = function (a0) { return { "active": a0 }; };
22271
22313
  function CatalogHeaderComponent_a_6_Template(rf, ctx) {
@@ -22468,7 +22510,7 @@
22468
22510
  i18n_0 = MSG_EXTERNAL_8408582562313036652$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_HEADER_CATALOG_HEADER_COMPONENT_TS__1;
22469
22511
  }
22470
22512
  else {
22471
- i18n_0 = $localize(templateObject_1$i || (templateObject_1$i = __makeTemplateObject([":\u241F3f30012e0912f74e7f63e47637dea7a01f9521fa\u241F8408582562313036652:Id\u00E9es repas"], [":\u241F3f30012e0912f74e7f63e47637dea7a01f9521fa\u241F8408582562313036652:Id\u00E9es repas"])));
22513
+ i18n_0 = $localize(templateObject_1$k || (templateObject_1$k = __makeTemplateObject([":\u241F3f30012e0912f74e7f63e47637dea7a01f9521fa\u241F8408582562313036652:Id\u00E9es repas"], [":\u241F3f30012e0912f74e7f63e47637dea7a01f9521fa\u241F8408582562313036652:Id\u00E9es repas"])));
22472
22514
  }
22473
22515
  var i18n_3;
22474
22516
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22476,7 +22518,7 @@
22476
22518
  i18n_3 = MSG_EXTERNAL_7217545850499052803$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_HEADER_CATALOG_HEADER_COMPONENT_TS___4;
22477
22519
  }
22478
22520
  else {
22479
- i18n_3 = $localize(templateObject_2$d || (templateObject_2$d = __makeTemplateObject([":\u241Ff396be5757e2439b5c112e5aec33b2d2cf2ff554\u241F7217545850499052803:Votre recherche :\u00A0"], [":\u241Ff396be5757e2439b5c112e5aec33b2d2cf2ff554\u241F7217545850499052803:Votre recherche :\u00A0"])));
22521
+ i18n_3 = $localize(templateObject_2$f || (templateObject_2$f = __makeTemplateObject([":\u241Ff396be5757e2439b5c112e5aec33b2d2cf2ff554\u241F7217545850499052803:Votre recherche :\u00A0"], [":\u241Ff396be5757e2439b5c112e5aec33b2d2cf2ff554\u241F7217545850499052803:Votre recherche :\u00A0"])));
22480
22522
  }
22481
22523
  var i18n_5;
22482
22524
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22484,7 +22526,7 @@
22484
22526
  i18n_5 = MSG_EXTERNAL_588207140585847047$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_HEADER_CATALOG_HEADER_COMPONENT_TS___6;
22485
22527
  }
22486
22528
  else {
22487
- i18n_5 = $localize(templateObject_3$a || (templateObject_3$a = __makeTemplateObject([":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"], [":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"])));
22529
+ i18n_5 = $localize(templateObject_3$b || (templateObject_3$b = __makeTemplateObject([":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"], [":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"])));
22488
22530
  }
22489
22531
  var i18n_7;
22490
22532
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22492,7 +22534,7 @@
22492
22534
  i18n_7 = MSG_EXTERNAL_3472368054805241582$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_HEADER_CATALOG_HEADER_COMPONENT_TS___8;
22493
22535
  }
22494
22536
  else {
22495
- i18n_7 = $localize(templateObject_4$9 || (templateObject_4$9 = __makeTemplateObject([":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"], [":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"])));
22537
+ i18n_7 = $localize(templateObject_4$a || (templateObject_4$a = __makeTemplateObject([":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"], [":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"])));
22496
22538
  }
22497
22539
  var i18n_9;
22498
22540
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22500,7 +22542,7 @@
22500
22542
  i18n_9 = MSG_EXTERNAL_7387753154079259338$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_HEADER_CATALOG_HEADER_COMPONENT_TS___10;
22501
22543
  }
22502
22544
  else {
22503
- i18n_9 = $localize(templateObject_5$8 || (templateObject_5$8 = __makeTemplateObject([":\u241F1e0415ec0e248029811bbeb6a2892c6bf701f9be\u241F7387753154079259338:Votre s\u00E9lection"], [":\u241F1e0415ec0e248029811bbeb6a2892c6bf701f9be\u241F7387753154079259338:Votre s\u00E9lection"])));
22545
+ i18n_9 = $localize(templateObject_5$9 || (templateObject_5$9 = __makeTemplateObject([":\u241F1e0415ec0e248029811bbeb6a2892c6bf701f9be\u241F7387753154079259338:Votre s\u00E9lection"], [":\u241F1e0415ec0e248029811bbeb6a2892c6bf701f9be\u241F7387753154079259338:Votre s\u00E9lection"])));
22504
22546
  }
22505
22547
  var i18n_11;
22506
22548
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22508,7 +22550,7 @@
22508
22550
  i18n_11 = MSG_EXTERNAL_8529048627562842272$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_HEADER_CATALOG_HEADER_COMPONENT_TS___12;
22509
22551
  }
22510
22552
  else {
22511
- i18n_11 = $localize(templateObject_6$7 || (templateObject_6$7 = __makeTemplateObject([":\u241Fc3f91aba0ecfc75cb49a3b7424823664075a1df8\u241F8529048627562842272:Id\u00E9es repas en 1 clic"], [":\u241Fc3f91aba0ecfc75cb49a3b7424823664075a1df8\u241F8529048627562842272:Id\u00E9es repas en 1 clic"])));
22553
+ i18n_11 = $localize(templateObject_6$8 || (templateObject_6$8 = __makeTemplateObject([":\u241Fc3f91aba0ecfc75cb49a3b7424823664075a1df8\u241F8529048627562842272:Id\u00E9es repas en 1 clic"], [":\u241Fc3f91aba0ecfc75cb49a3b7424823664075a1df8\u241F8529048627562842272:Id\u00E9es repas en 1 clic"])));
22512
22554
  }
22513
22555
  return [[1, "miam-catalog-header", 3, "ngClass"], [1, "miam-catalog-header__left"], [1, "miam-catalog-header__nav"], ["href", "/"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Home.svg", "alt", "Home"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Caret.svg", "alt", "Caret"], ["href", "javascript:void(0)", "class", "miam-ds-text size-s weight-l", 3, "ngClass", "click", 4, "ngIf"], ["href", "javascript:void(0)", 3, "ngClass", "click", 4, "ngIf"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Caret.svg", "alt", "Caret", 4, "ngIf"], ["href", "javascript:void(0)", "class", "miam-ds-text size-s weight-xxl", 3, "ngClass", 4, "ngIf"], ["class", "miam-catalog-header__title-container", 4, "ngIf"], ["class", "miam-catalog-header__right", 3, "background-image", 4, "ngIf"], ["href", "javascript:void(0)", 1, "miam-ds-text", "size-s", "weight-l", 3, "ngClass", "click"], i18n_0, ["href", "javascript:void(0)", 3, "ngClass", "click"], ["href", "javascript:void(0)", 1, "miam-ds-text", "size-s", "weight-xxl", 3, "ngClass"], ["class", "miam-catalog-header__search-label", 4, "ngIf"], [4, "ngIf"], ["class", "miam-catalog-header__favorites-label", 4, "ngIf"], ["class", "miam-catalog-header__personal-label", 4, "ngIf"], ["class", "miam-catalog-header__category-label", 4, "ngIf"], ["class", "miam-catalog-header__default-label", 4, "ngIf"], [1, "miam-catalog-header__search-label"], i18n_3, [1, "miam-catalog-header__favorites-label"], i18n_5, [1, "miam-catalog-header__personal-label"], i18n_7, [1, "miam-catalog-header__category-label"], [1, "miam-catalog-header__default-label"], i18n_9, [1, "miam-catalog-header__title-container"], [1, "miam-catalog-header__title"], [4, "ngIf", "ngIfElse"], ["baseTitle", ""], i18n_11, [1, "miam-catalog-header__right"]];
22514
22556
  }, template: function CatalogHeaderComponent_Template(rf, ctx) {
@@ -22572,7 +22614,7 @@
22572
22614
  type: i0.Output
22573
22615
  }] });
22574
22616
  })();
22575
- var templateObject_1$i, templateObject_2$d, templateObject_3$a, templateObject_4$9, templateObject_5$8, templateObject_6$7;
22617
+ var templateObject_1$k, templateObject_2$f, templateObject_3$b, templateObject_4$a, templateObject_5$9, templateObject_6$8;
22576
22618
 
22577
22619
  function CatalogToolbarComponent_input_5_Template(rf, ctx) {
22578
22620
  if (rf & 1) {
@@ -22765,7 +22807,7 @@
22765
22807
  i18n_0 = MSG_EXTERNAL_9174301238530403624$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_TOOLBAR_CATALOG_TOOLBAR_COMPONENT_TS_1;
22766
22808
  }
22767
22809
  else {
22768
- i18n_0 = $localize(templateObject_1$h || (templateObject_1$h = __makeTemplateObject([":\u241F06dc8ebc29adf50996bc1248febbc1793af51f9c\u241F9174301238530403624:Je cherche mon repas pr\u00E9f\u00E9r\u00E9"], [":\u241F06dc8ebc29adf50996bc1248febbc1793af51f9c\u241F9174301238530403624:Je cherche mon repas pr\u00E9f\u00E9r\u00E9"])));
22810
+ i18n_0 = $localize(templateObject_1$j || (templateObject_1$j = __makeTemplateObject([":\u241F06dc8ebc29adf50996bc1248febbc1793af51f9c\u241F9174301238530403624:Je cherche mon repas pr\u00E9f\u00E9r\u00E9"], [":\u241F06dc8ebc29adf50996bc1248febbc1793af51f9c\u241F9174301238530403624:Je cherche mon repas pr\u00E9f\u00E9r\u00E9"])));
22769
22811
  }
22770
22812
  var i18n_2;
22771
22813
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22773,7 +22815,7 @@
22773
22815
  i18n_2 = MSG_EXTERNAL_140134066175509828$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_TOOLBAR_CATALOG_TOOLBAR_COMPONENT_TS_3;
22774
22816
  }
22775
22817
  else {
22776
- i18n_2 = $localize(templateObject_2$c || (templateObject_2$c = __makeTemplateObject([":\u241F163d8165cbdd63855b00156be6328830a422815a\u241F140134066175509828:Je cherche un ingr\u00E9dient ou un repas"], [":\u241F163d8165cbdd63855b00156be6328830a422815a\u241F140134066175509828:Je cherche un ingr\u00E9dient ou un repas"])));
22818
+ i18n_2 = $localize(templateObject_2$e || (templateObject_2$e = __makeTemplateObject([":\u241F163d8165cbdd63855b00156be6328830a422815a\u241F140134066175509828:Je cherche un ingr\u00E9dient ou un repas"], [":\u241F163d8165cbdd63855b00156be6328830a422815a\u241F140134066175509828:Je cherche un ingr\u00E9dient ou un repas"])));
22777
22819
  }
22778
22820
  var i18n_4;
22779
22821
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22781,7 +22823,7 @@
22781
22823
  i18n_4 = MSG_EXTERNAL_7018050884147735331$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_TOOLBAR_CATALOG_TOOLBAR_COMPONENT_TS__5;
22782
22824
  }
22783
22825
  else {
22784
- i18n_4 = $localize(templateObject_3$9 || (templateObject_3$9 = __makeTemplateObject([":\u241F9c1ee9470393e19cd9dc0dac8c351c7115e89332\u241F7018050884147735331:Pr\u00E9f\u00E9rences"], [":\u241F9c1ee9470393e19cd9dc0dac8c351c7115e89332\u241F7018050884147735331:Pr\u00E9f\u00E9rences"])));
22826
+ i18n_4 = $localize(templateObject_3$a || (templateObject_3$a = __makeTemplateObject([":\u241F9c1ee9470393e19cd9dc0dac8c351c7115e89332\u241F7018050884147735331:Pr\u00E9f\u00E9rences"], [":\u241F9c1ee9470393e19cd9dc0dac8c351c7115e89332\u241F7018050884147735331:Pr\u00E9f\u00E9rences"])));
22785
22827
  }
22786
22828
  var i18n_6;
22787
22829
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22789,7 +22831,7 @@
22789
22831
  i18n_6 = MSG_EXTERNAL_588207140585847047$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_TOOLBAR_CATALOG_TOOLBAR_COMPONENT_TS__7;
22790
22832
  }
22791
22833
  else {
22792
- i18n_6 = $localize(templateObject_4$8 || (templateObject_4$8 = __makeTemplateObject([":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"], [":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"])));
22834
+ i18n_6 = $localize(templateObject_4$9 || (templateObject_4$9 = __makeTemplateObject([":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"], [":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"])));
22793
22835
  }
22794
22836
  var i18n_8;
22795
22837
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22797,7 +22839,7 @@
22797
22839
  i18n_8 = MSG_EXTERNAL_3472368054805241582$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_CATALOG_TOOLBAR_CATALOG_TOOLBAR_COMPONENT_TS___9;
22798
22840
  }
22799
22841
  else {
22800
- i18n_8 = $localize(templateObject_5$7 || (templateObject_5$7 = __makeTemplateObject([":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"], [":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"])));
22842
+ i18n_8 = $localize(templateObject_5$8 || (templateObject_5$8 = __makeTemplateObject([":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"], [":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"])));
22801
22843
  }
22802
22844
  return [[1, "miam-catalog-toolbar"], [1, "miam-catalog-toolbar__searchbar-container"], [1, "miam-catalog-toolbar__searchbar", 3, "ngClass"], [1, "miam-ds-button", "ghost", "small", "square", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Search.svg", "alt", "Search"], ["type", "text", "placeholder", i18n_0, "class", "miam-ds-text size-s weight-l", 3, "ngModel", "ngModelChange", "keydown.enter", "blur", 4, "ngIf"], ["type", "text", "placeholder", i18n_2, "class", "miam-ds-text size-s weight-l", 3, "ngModel", "ngModelChange", "keydown.enter", "blur", 4, "ngIf"], ["class", "miam-catalog-toolbar__controls__filter miam-ds-button ghost square", 3, "click", 4, "ngIf"], ["class", "miam-recipe-toolbar__return-button miam-ds-button ghost square", 3, "click", 4, "ngIf"], [1, "miam-catalog-toolbar__buttons-container"], [1, "miam-ds-button", "miam-catalog-toolbar__controls__preferences", 3, "ngClass", "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/cog_neutral.svg", "alt", "preference icon"], ["class", "miam-catalog-toolbar__controls__preferences-label", 4, "ngIf"], ["class", "miam-catalog-toolbar__controls__filter-badge", 4, "ngIf"], [1, "miam-ds-button", "miam-catalog-toolbar__controls__favorites", 3, "ngClass", "disabled", "click"], ["alt", "Heart", 3, "src"], ["class", "miam-catalog-toolbar__controls__favorites-label", 4, "ngIf"], ["class", "miam-ds-button miam-catalog-toolbar__controls__personal", 3, "ngClass", "click", 4, "ngIf"], ["type", "text", "placeholder", i18n_0, 1, "miam-ds-text", "size-s", "weight-l", 3, "ngModel", "ngModelChange", "keydown.enter", "blur"], ["type", "text", "placeholder", i18n_2, 1, "miam-ds-text", "size-s", "weight-l", 3, "ngModel", "ngModelChange", "keydown.enter", "blur"], [1, "miam-catalog-toolbar__controls__filter", "miam-ds-button", "ghost", "square", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Filters.svg", "alt", "Filters"], [1, "miam-catalog-toolbar__controls__filter-badge"], [1, "miam-recipe-toolbar__return-button", "miam-ds-button", "ghost", "square", 3, "click"], ["alt", "return", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/ArrowLeft_dark.svg"], [1, "miam-catalog-toolbar__controls__preferences-label"], i18n_4, [1, "miam-catalog-toolbar__controls__favorites-label"], i18n_6, [1, "miam-ds-button", "miam-catalog-toolbar__controls__personal", 3, "ngClass", "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/ChefHat.svg", "alt", "Chef hat"], ["class", "miam-catalog-toolbar__controls__personal-label", 4, "ngIf"], [1, "miam-catalog-toolbar__controls__personal-label"], i18n_8];
22803
22845
  }, template: function CatalogToolbarComponent_Template(rf, ctx) {
@@ -22900,7 +22942,7 @@
22900
22942
  type: i0.Output
22901
22943
  }] });
22902
22944
  })();
22903
- var templateObject_1$h, templateObject_2$c, templateObject_3$9, templateObject_4$8, templateObject_5$7;
22945
+ var templateObject_1$j, templateObject_2$e, templateObject_3$a, templateObject_4$9, templateObject_5$8;
22904
22946
 
22905
22947
  function PreferencesSearchComponent_button_6_Template(rf, ctx) {
22906
22948
  if (rf & 1) {
@@ -22979,7 +23021,7 @@
22979
23021
  i18n_0 = MSG_EXTERNAL_9021248963263785450$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_SEARCH_PREFERENCES_SEARCH_COMPONENT_TS_1;
22980
23022
  }
22981
23023
  else {
22982
- i18n_0 = $localize(templateObject_1$g || (templateObject_1$g = __makeTemplateObject([":\u241F73a5a020ba7825b2f8aef4e6b0f9b6d19642376b\u241F9021248963263785450:Je n'aime pas..."], [":\u241F73a5a020ba7825b2f8aef4e6b0f9b6d19642376b\u241F9021248963263785450:Je n'aime pas..."])));
23024
+ i18n_0 = $localize(templateObject_1$i || (templateObject_1$i = __makeTemplateObject([":\u241F73a5a020ba7825b2f8aef4e6b0f9b6d19642376b\u241F9021248963263785450:Je n'aime pas..."], [":\u241F73a5a020ba7825b2f8aef4e6b0f9b6d19642376b\u241F9021248963263785450:Je n'aime pas..."])));
22983
23025
  }
22984
23026
  var i18n_2;
22985
23027
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -22987,7 +23029,7 @@
22987
23029
  i18n_2 = MSG_EXTERNAL_9128422682433667832$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_SEARCH_PREFERENCES_SEARCH_COMPONENT_TS__3;
22988
23030
  }
22989
23031
  else {
22990
- i18n_2 = $localize(templateObject_2$b || (templateObject_2$b = __makeTemplateObject([":\u241F38065386474cc9d4fe2e88d29c68a73a845e1aaf\u241F9128422682433667832:Pas de panique, nous ne trouvons pas cet ingr\u00E9dient. Aucun risque de le retrouver dans votre assiette."], [":\u241F38065386474cc9d4fe2e88d29c68a73a845e1aaf\u241F9128422682433667832:Pas de panique, nous ne trouvons pas cet ingr\u00E9dient. Aucun risque de le retrouver dans votre assiette."])));
23032
+ i18n_2 = $localize(templateObject_2$d || (templateObject_2$d = __makeTemplateObject([":\u241F38065386474cc9d4fe2e88d29c68a73a845e1aaf\u241F9128422682433667832:Pas de panique, nous ne trouvons pas cet ingr\u00E9dient. Aucun risque de le retrouver dans votre assiette."], [":\u241F38065386474cc9d4fe2e88d29c68a73a845e1aaf\u241F9128422682433667832:Pas de panique, nous ne trouvons pas cet ingr\u00E9dient. Aucun risque de le retrouver dans votre assiette."])));
22991
23033
  }
22992
23034
  return [[1, "preferences__search"], [1, "preferences__search-bar"], ["alt", "search input", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Search.svg", 1, "preferences__search-img"], ["type", "text", "placeholder", i18n_0, 1, "preferences__search-bar-input", 3, "ngModel", "keyup"], [1, "miam-ds-button", "ghost", "small", "square", "preferences__clear-input-button", 3, "click"], ["alt", "clear input", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Cross_neutralBlack.svg", 1, "preferences__clear-input-img"], ["class", "preferences__suggested__tag", 3, "click", 4, "ngFor", "ngForOf"], ["class", "preferences__not-found", 4, "ngIf"], [1, "preferences__suggested__tag", 3, "click"], [1, "preferences__not-found"], i18n_2];
22993
23035
  }, template: function PreferencesSearchComponent_Template(rf, ctx) {
@@ -23032,7 +23074,7 @@
23032
23074
  type: i0.Output
23033
23075
  }] });
23034
23076
  })();
23035
- var templateObject_1$g, templateObject_2$b;
23077
+ var templateObject_1$i, templateObject_2$d;
23036
23078
 
23037
23079
  function PreferencesComponent_ng_container_3_Template(rf, ctx) {
23038
23080
  if (rf & 1) {
@@ -23420,7 +23462,7 @@
23420
23462
  i18n_0 = MSG_EXTERNAL_5401047837790415175$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_COMPONENT_TS__1;
23421
23463
  }
23422
23464
  else {
23423
- i18n_0 = $localize(templateObject_1$f || (templateObject_1$f = __makeTemplateObject([":\u241F3cd64c67f5fdb9c118c39a9d44e787d728cf6635\u241F5401047837790415175:Mes pr\u00E9f\u00E9rences"], [":\u241F3cd64c67f5fdb9c118c39a9d44e787d728cf6635\u241F5401047837790415175:Mes pr\u00E9f\u00E9rences"])));
23465
+ i18n_0 = $localize(templateObject_1$h || (templateObject_1$h = __makeTemplateObject([":\u241F3cd64c67f5fdb9c118c39a9d44e787d728cf6635\u241F5401047837790415175:Mes pr\u00E9f\u00E9rences"], [":\u241F3cd64c67f5fdb9c118c39a9d44e787d728cf6635\u241F5401047837790415175:Mes pr\u00E9f\u00E9rences"])));
23424
23466
  }
23425
23467
  var i18n_2;
23426
23468
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -23428,7 +23470,7 @@
23428
23470
  i18n_2 = MSG_EXTERNAL_905346266832710189$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_COMPONENT_TS__3;
23429
23471
  }
23430
23472
  else {
23431
- i18n_2 = $localize(templateObject_2$a || (templateObject_2$a = __makeTemplateObject([":\u241Fe2950f2d6627f941e2020bd3c5d8d39d603c95d5\u241F905346266832710189:Je n'aime pas"], [":\u241Fe2950f2d6627f941e2020bd3c5d8d39d603c95d5\u241F905346266832710189:Je n'aime pas"])));
23473
+ i18n_2 = $localize(templateObject_2$c || (templateObject_2$c = __makeTemplateObject([":\u241Fe2950f2d6627f941e2020bd3c5d8d39d603c95d5\u241F905346266832710189:Je n'aime pas"], [":\u241Fe2950f2d6627f941e2020bd3c5d8d39d603c95d5\u241F905346266832710189:Je n'aime pas"])));
23432
23474
  }
23433
23475
  var i18n_4;
23434
23476
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -23436,7 +23478,7 @@
23436
23478
  i18n_4 = MSG_EXTERNAL_980939234227251011$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_COMPONENT_TS__5;
23437
23479
  }
23438
23480
  else {
23439
- i18n_4 = $localize(templateObject_3$8 || (templateObject_3$8 = __makeTemplateObject([":\u241Fb5462e8e9bfa6bb68b925926189d10a75d115a6d\u241F980939234227251011:Nombre de personnes"], [":\u241Fb5462e8e9bfa6bb68b925926189d10a75d115a6d\u241F980939234227251011:Nombre de personnes"])));
23481
+ i18n_4 = $localize(templateObject_3$9 || (templateObject_3$9 = __makeTemplateObject([":\u241Fb5462e8e9bfa6bb68b925926189d10a75d115a6d\u241F980939234227251011:Nombre de personnes"], [":\u241Fb5462e8e9bfa6bb68b925926189d10a75d115a6d\u241F980939234227251011:Nombre de personnes"])));
23440
23482
  }
23441
23483
  var i18n_6;
23442
23484
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -23444,7 +23486,7 @@
23444
23486
  i18n_6 = MSG_EXTERNAL_6845852566956999721$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_COMPONENT_TS__7;
23445
23487
  }
23446
23488
  else {
23447
- i18n_6 = $localize(templateObject_4$7 || (templateObject_4$7 = __makeTemplateObject([":\u241F8529f4d811af3225e63076b81598965dd9927c29\u241F6845852566956999721: Avez-vous un r\u00E9gime particulier ? "], [":\u241F8529f4d811af3225e63076b81598965dd9927c29\u241F6845852566956999721: Avez-vous un r\u00E9gime particulier ? "])));
23489
+ i18n_6 = $localize(templateObject_4$8 || (templateObject_4$8 = __makeTemplateObject([":\u241F8529f4d811af3225e63076b81598965dd9927c29\u241F6845852566956999721: Avez-vous un r\u00E9gime particulier ? "], [":\u241F8529f4d811af3225e63076b81598965dd9927c29\u241F6845852566956999721: Avez-vous un r\u00E9gime particulier ? "])));
23448
23490
  }
23449
23491
  var i18n_8;
23450
23492
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -23452,7 +23494,7 @@
23452
23494
  i18n_8 = MSG_EXTERNAL_428330970509638390$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_COMPONENT_TS__9;
23453
23495
  }
23454
23496
  else {
23455
- i18n_8 = $localize(templateObject_5$6 || (templateObject_5$6 = __makeTemplateObject([":\u241F6625d9519b65462bd5c19dd4b51b1a5d786e46d0\u241F428330970509638390: Je n'aime pas "], [":\u241F6625d9519b65462bd5c19dd4b51b1a5d786e46d0\u241F428330970509638390: Je n'aime pas "])));
23497
+ i18n_8 = $localize(templateObject_5$7 || (templateObject_5$7 = __makeTemplateObject([":\u241F6625d9519b65462bd5c19dd4b51b1a5d786e46d0\u241F428330970509638390: Je n'aime pas "], [":\u241F6625d9519b65462bd5c19dd4b51b1a5d786e46d0\u241F428330970509638390: Je n'aime pas "])));
23456
23498
  }
23457
23499
  var i18n_10;
23458
23500
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -23460,7 +23502,7 @@
23460
23502
  i18n_10 = MSG_EXTERNAL_70397346439942337$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_COMPONENT_TS__11;
23461
23503
  }
23462
23504
  else {
23463
- i18n_10 = $localize(templateObject_6$6 || (templateObject_6$6 = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
23505
+ i18n_10 = $localize(templateObject_6$7 || (templateObject_6$7 = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
23464
23506
  }
23465
23507
  var i18n_12;
23466
23508
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -23468,7 +23510,7 @@
23468
23510
  i18n_12 = MSG_EXTERNAL_4054406048657760914$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_COMPONENT_TS__13;
23469
23511
  }
23470
23512
  else {
23471
- i18n_12 = $localize(templateObject_7$5 || (templateObject_7$5 = __makeTemplateObject([":\u241F35c66edf53e6f56428e31f120e16be7b6b666ebc\u241F4054406048657760914: Mes \u00E9quipements "], [":\u241F35c66edf53e6f56428e31f120e16be7b6b666ebc\u241F4054406048657760914: Mes \u00E9quipements "])));
23513
+ i18n_12 = $localize(templateObject_7$6 || (templateObject_7$6 = __makeTemplateObject([":\u241F35c66edf53e6f56428e31f120e16be7b6b666ebc\u241F4054406048657760914: Mes \u00E9quipements "], [":\u241F35c66edf53e6f56428e31f120e16be7b6b666ebc\u241F4054406048657760914: Mes \u00E9quipements "])));
23472
23514
  }
23473
23515
  var i18n_14;
23474
23516
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -23476,7 +23518,7 @@
23476
23518
  i18n_14 = MSG_EXTERNAL_4359053901144852078$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_COMPONENT_TS__15;
23477
23519
  }
23478
23520
  else {
23479
- i18n_14 = $localize(templateObject_8$2 || (templateObject_8$2 = __makeTemplateObject([":\u241F515812e22dc3f7668cb6ad93e54740e5c1a140b0\u241F4359053901144852078:R\u00E9initialiser"], [":\u241F515812e22dc3f7668cb6ad93e54740e5c1a140b0\u241F4359053901144852078:R\u00E9initialiser"])));
23521
+ i18n_14 = $localize(templateObject_8$3 || (templateObject_8$3 = __makeTemplateObject([":\u241F515812e22dc3f7668cb6ad93e54740e5c1a140b0\u241F4359053901144852078:R\u00E9initialiser"], [":\u241F515812e22dc3f7668cb6ad93e54740e5c1a140b0\u241F4359053901144852078:R\u00E9initialiser"])));
23480
23522
  }
23481
23523
  var i18n_16;
23482
23524
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -23484,7 +23526,7 @@
23484
23526
  i18n_16 = MSG_EXTERNAL_4160637687093543290$$LIB__WEB_COMPONENTS_PREFERENCES_PREFERENCES_COMPONENT_TS__17;
23485
23527
  }
23486
23528
  else {
23487
- i18n_16 = $localize(templateObject_9$2 || (templateObject_9$2 = __makeTemplateObject([":\u241Fd52eb7599c75829bf96401d33dfdad4f9857822b\u241F4160637687093543290:Appliquer"], [":\u241Fd52eb7599c75829bf96401d33dfdad4f9857822b\u241F4160637687093543290:Appliquer"])));
23529
+ i18n_16 = $localize(templateObject_9$3 || (templateObject_9$3 = __makeTemplateObject([":\u241Fd52eb7599c75829bf96401d33dfdad4f9857822b\u241F4160637687093543290:Appliquer"], [":\u241Fd52eb7599c75829bf96401d33dfdad4f9857822b\u241F4160637687093543290:Appliquer"])));
23488
23530
  }
23489
23531
  return [["modalStyle", "right", 3, "noHeaderMode", "display", "close"], [1, "miam-preferences"], [1, "miam-preferences__header"], [4, "ngIf"], ["class", "miam-preferences_nav-and-title", 4, "ngIf"], [1, "miam-ds-button", "ghost", "square", "miam-preferences__back-button", 3, "click"], ["alt", "go back", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/arrow-right.svg", 1, "miam-preferences__back-image"], [1, "miam-ds-text", "size-l", "weight-xxl", "miam-preferences__title"], i18n_0, [1, "miam-ds-button", "ghost", "square", "miam-preferences__close-button", 3, "click"], ["alt", "close modal", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Cross_primary.svg", 1, "miam-preferences__close-image"], [1, "miam-preferences_nav-and-title"], [1, "miam-ds-button", "ghost", "square", "miam-preferences__search-back-button", 3, "click"], i18n_2, [1, "miam-preferences__guests"], [1, "miam-ds-text", "miam-preferences_guest-label"], i18n_4, [1, "miam-preferences_guest-counter", 3, "value", "valueChange"], [1, "miam-preferences__diet-section", 3, "isCollapsed", "isCollapsedChange"], [1, "miam-ds-text", "weight-xl"], i18n_6, [1, "miam-preferences__list"], ["class", "miam-preferences__list__item miam-ds-checkbox", 3, "click", 4, "ngFor", "ngForOf"], [1, "miam-preferences__dislikes-section", 3, "isCollapsed", "isCollapsedChange"], i18n_8, ["class", "miam-ds-badge miam-preferences__badge", 3, "ngClass", "click", 4, "ngFor", "ngForOf"], [1, "miam-ds-badge", "miam-preferences__badge", 3, "click"], [1, "miam-preferences__badge_label"], i18n_10, ["alt", "add dislikes", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/plus-neutral-black.svg"], [1, "miam-preferences__equipments-section", 3, "isCollapsed", "isCollapsedChange"], i18n_12, [1, "miam-preferences__footer"], [1, "miam-ds-button", "secondary", "miam-preferences__footer__reset", 3, "click"], i18n_14, [1, "miam-ds-button", "primary", "miam-preferences__footer__recipes", 3, "click"], i18n_16, [1, "miam-preferences__list__item", "miam-ds-checkbox", 3, "click"], [1, "miam-ds-text", "miam-preferences__list__item__name"], ["type", "checkbox", 3, "checked"], [1, "miam-ds-badge", "miam-preferences__badge", 3, "ngClass", "click"], ["class", "miam-preferences__remove-tag", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Cross.svg", 3, "alt", 4, "ngIf"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Cross.svg", 1, "miam-preferences__remove-tag", 3, "alt"], [1, "miam-preferences__list__item__name"], [3, "backAndReload"]];
23490
23532
  }, template: function PreferencesComponent_Template(rf, ctx) {
@@ -23533,7 +23575,7 @@
23533
23575
  type: i0.Input
23534
23576
  }] });
23535
23577
  })();
23536
- var templateObject_1$f, templateObject_2$a, templateObject_3$8, templateObject_4$7, templateObject_5$6, templateObject_6$6, templateObject_7$5, templateObject_8$2, templateObject_9$2;
23578
+ var templateObject_1$h, templateObject_2$c, templateObject_3$9, templateObject_4$8, templateObject_5$7, templateObject_6$7, templateObject_7$6, templateObject_8$3, templateObject_9$3;
23537
23579
 
23538
23580
  function RecipeFormComponent_form_0_ng_template_3_Template(rf, ctx) {
23539
23581
  if (rf & 1) {
@@ -24022,7 +24064,7 @@
24022
24064
  i18n_0 = MSG_EXTERNAL_1711750570766225138$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_FORM_RECIPE_FORM_COMPONENT_TS_1;
24023
24065
  }
24024
24066
  else {
24025
- i18n_0 = $localize(templateObject_1$e || (templateObject_1$e = __makeTemplateObject([":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"], [":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"])));
24067
+ i18n_0 = $localize(templateObject_1$g || (templateObject_1$g = __makeTemplateObject([":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"], [":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"])));
24026
24068
  }
24027
24069
  var i18n_2;
24028
24070
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24030,7 +24072,7 @@
24030
24072
  i18n_2 = MSG_EXTERNAL_1017260045497969686$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_FORM_RECIPE_FORM_COMPONENT_TS_3;
24031
24073
  }
24032
24074
  else {
24033
- i18n_2 = $localize(templateObject_2$9 || (templateObject_2$9 = __makeTemplateObject([":\u241F96f1d34531cffd53eb8ac83937bc5301e8c882c2\u241F1017260045497969686: Enregistrer la recette "], [":\u241F96f1d34531cffd53eb8ac83937bc5301e8c882c2\u241F1017260045497969686: Enregistrer la recette "])));
24075
+ i18n_2 = $localize(templateObject_2$b || (templateObject_2$b = __makeTemplateObject([":\u241F96f1d34531cffd53eb8ac83937bc5301e8c882c2\u241F1017260045497969686: Enregistrer la recette "], [":\u241F96f1d34531cffd53eb8ac83937bc5301e8c882c2\u241F1017260045497969686: Enregistrer la recette "])));
24034
24076
  }
24035
24077
  var i18n_4;
24036
24078
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24038,7 +24080,7 @@
24038
24080
  i18n_4 = MSG_EXTERNAL_71394326071133031$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_FORM_RECIPE_FORM_COMPONENT_TS__5;
24039
24081
  }
24040
24082
  else {
24041
- i18n_4 = $localize(templateObject_3$7 || (templateObject_3$7 = __makeTemplateObject([":\u241F9ea7d16d4d768d931934d11267eab0fa2465b9af\u241F71394326071133031:Nombre de convives"], [":\u241F9ea7d16d4d768d931934d11267eab0fa2465b9af\u241F71394326071133031:Nombre de convives"])));
24083
+ i18n_4 = $localize(templateObject_3$8 || (templateObject_3$8 = __makeTemplateObject([":\u241F9ea7d16d4d768d931934d11267eab0fa2465b9af\u241F71394326071133031:Nombre de convives"], [":\u241F9ea7d16d4d768d931934d11267eab0fa2465b9af\u241F71394326071133031:Nombre de convives"])));
24042
24084
  }
24043
24085
  var i18n_6;
24044
24086
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24046,7 +24088,7 @@
24046
24088
  i18n_6 = MSG_EXTERNAL_2356701248526522547$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_FORM_RECIPE_FORM_COMPONENT_TS___7;
24047
24089
  }
24048
24090
  else {
24049
- i18n_6 = $localize(templateObject_4$6 || (templateObject_4$6 = __makeTemplateObject([":\u241F312a5f684a61a21bb47b38ff2975a5cb745bc3ec\u241F2356701248526522547:Titre de la recette"], [":\u241F312a5f684a61a21bb47b38ff2975a5cb745bc3ec\u241F2356701248526522547:Titre de la recette"])));
24091
+ i18n_6 = $localize(templateObject_4$7 || (templateObject_4$7 = __makeTemplateObject([":\u241F312a5f684a61a21bb47b38ff2975a5cb745bc3ec\u241F2356701248526522547:Titre de la recette"], [":\u241F312a5f684a61a21bb47b38ff2975a5cb745bc3ec\u241F2356701248526522547:Titre de la recette"])));
24050
24092
  }
24051
24093
  var i18n_8;
24052
24094
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24054,7 +24096,7 @@
24054
24096
  i18n_8 = MSG_EXTERNAL_4142863621251590306$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_FORM_RECIPE_FORM_COMPONENT_TS___9;
24055
24097
  }
24056
24098
  else {
24057
- i18n_8 = $localize(templateObject_5$5 || (templateObject_5$5 = __makeTemplateObject([":\u241Ffb8b4b6668befda8fc42e047c9b246d4777a881b\u241F4142863621251590306:Ajouter une photo"], [":\u241Ffb8b4b6668befda8fc42e047c9b246d4777a881b\u241F4142863621251590306:Ajouter une photo"])));
24099
+ i18n_8 = $localize(templateObject_5$6 || (templateObject_5$6 = __makeTemplateObject([":\u241Ffb8b4b6668befda8fc42e047c9b246d4777a881b\u241F4142863621251590306:Ajouter une photo"], [":\u241Ffb8b4b6668befda8fc42e047c9b246d4777a881b\u241F4142863621251590306:Ajouter une photo"])));
24058
24100
  }
24059
24101
  var i18n_10;
24060
24102
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24062,7 +24104,7 @@
24062
24104
  i18n_10 = MSG_EXTERNAL_4572808970531890280$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_FORM_RECIPE_FORM_COMPONENT_TS____11;
24063
24105
  }
24064
24106
  else {
24065
- i18n_10 = $localize(templateObject_6$5 || (templateObject_6$5 = __makeTemplateObject([":\u241F1bf4b0fad491a1a0e696a667d19d9d3dc115e765\u241F4572808970531890280:Temps de pr\u00E9paration"], [":\u241F1bf4b0fad491a1a0e696a667d19d9d3dc115e765\u241F4572808970531890280:Temps de pr\u00E9paration"])));
24107
+ i18n_10 = $localize(templateObject_6$6 || (templateObject_6$6 = __makeTemplateObject([":\u241F1bf4b0fad491a1a0e696a667d19d9d3dc115e765\u241F4572808970531890280:Temps de pr\u00E9paration"], [":\u241F1bf4b0fad491a1a0e696a667d19d9d3dc115e765\u241F4572808970531890280:Temps de pr\u00E9paration"])));
24066
24108
  }
24067
24109
  var i18n_12;
24068
24110
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24070,7 +24112,7 @@
24070
24112
  i18n_12 = MSG_EXTERNAL_2393638591256907077$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_FORM_RECIPE_FORM_COMPONENT_TS____13;
24071
24113
  }
24072
24114
  else {
24073
- i18n_12 = $localize(templateObject_7$4 || (templateObject_7$4 = __makeTemplateObject([":\u241Fa07c8ead07ddd40255963068a22a49f100921fdc\u241F2393638591256907077:Temps de cuisson"], [":\u241Fa07c8ead07ddd40255963068a22a49f100921fdc\u241F2393638591256907077:Temps de cuisson"])));
24115
+ i18n_12 = $localize(templateObject_7$5 || (templateObject_7$5 = __makeTemplateObject([":\u241Fa07c8ead07ddd40255963068a22a49f100921fdc\u241F2393638591256907077:Temps de cuisson"], [":\u241Fa07c8ead07ddd40255963068a22a49f100921fdc\u241F2393638591256907077:Temps de cuisson"])));
24074
24116
  }
24075
24117
  var i18n_14;
24076
24118
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24078,7 +24120,7 @@
24078
24120
  i18n_14 = MSG_EXTERNAL_6072926011312884563$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_FORM_RECIPE_FORM_COMPONENT_TS____15;
24079
24121
  }
24080
24122
  else {
24081
- i18n_14 = $localize(templateObject_8$1 || (templateObject_8$1 = __makeTemplateObject([":\u241Fe40e4ebcc3a18cd368968dc4398614113b47b366\u241F6072926011312884563:Temps de repos"], [":\u241Fe40e4ebcc3a18cd368968dc4398614113b47b366\u241F6072926011312884563:Temps de repos"])));
24123
+ i18n_14 = $localize(templateObject_8$2 || (templateObject_8$2 = __makeTemplateObject([":\u241Fe40e4ebcc3a18cd368968dc4398614113b47b366\u241F6072926011312884563:Temps de repos"], [":\u241Fe40e4ebcc3a18cd368968dc4398614113b47b366\u241F6072926011312884563:Temps de repos"])));
24082
24124
  }
24083
24125
  var i18n_16;
24084
24126
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24086,7 +24128,7 @@
24086
24128
  i18n_16 = MSG_EXTERNAL_4124824446230222423$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_FORM_RECIPE_FORM_COMPONENT_TS____17;
24087
24129
  }
24088
24130
  else {
24089
- i18n_16 = $localize(templateObject_9$1 || (templateObject_9$1 = __makeTemplateObject([":\u241Ff959874631711aa56d6caaaa49ad684b4ba32ed0\u241F4124824446230222423:Temps de pr\u00E9chauffage"], [":\u241Ff959874631711aa56d6caaaa49ad684b4ba32ed0\u241F4124824446230222423:Temps de pr\u00E9chauffage"])));
24131
+ i18n_16 = $localize(templateObject_9$2 || (templateObject_9$2 = __makeTemplateObject([":\u241Ff959874631711aa56d6caaaa49ad684b4ba32ed0\u241F4124824446230222423:Temps de pr\u00E9chauffage"], [":\u241Ff959874631711aa56d6caaaa49ad684b4ba32ed0\u241F4124824446230222423:Temps de pr\u00E9chauffage"])));
24090
24132
  }
24091
24133
  return [["class", "form-container", 3, "formGroup", 4, "ngIf"], [1, "button-row"], [1, "m-button-secondary", 3, "click"], i18n_0, [1, "m-button-primary", 3, "disabled", "click"], i18n_2, [1, "form-container", 3, "formGroup"], [3, "formGroup"], ["ngDefaultControl", "", 1, "m-title-text-input", 3, "formControl"], ["placeholder", ""], [1, "row-container"], [1, "input-container"], ["ngDefaultControl", "", 3, "formControl", "imageUrl", "photoMode"], ["buttonText", ""], [1, "recipe-form__guests", "m-default-card"], [1, "recipe-form__guests__label"], i18n_4, ["ngDefaultControl", "", "formControlName", "number-of-guests", "value", "4", "minRange", "0", "maxRange", "999", 3, "formControl"], [1, "recipe-form__attibutes"], [1, "recipe-form__attibutes__sliders"], [1, "recipe-form__attibutes__slider"], ["ngDefaultControl", "", 3, "steps", "formControl", "icons"], ["class", "recipe-form__attibutes__times", 4, "ngIf"], ["ngDefaultControl", "", "formArrayName", "ingredients", 3, "ingredientMode", "list", "deleteId"], ["ngDefaultControl", "", "formArrayName", "steps", 3, "list", "deleteId"], i18n_6, i18n_8, [1, "recipe-form__attibutes__times"], ["ngDefaultControl", "", 3, "formControl", "icon"], ["title", ""], i18n_10, i18n_12, i18n_14, i18n_16];
24092
24134
  }, template: function RecipeFormComponent_Template(rf, ctx) {
@@ -24135,7 +24177,7 @@
24135
24177
  type: i0.Output
24136
24178
  }] });
24137
24179
  })();
24138
- var templateObject_1$e, templateObject_2$9, templateObject_3$7, templateObject_4$6, templateObject_5$5, templateObject_6$5, templateObject_7$4, templateObject_8$1, templateObject_9$1;
24180
+ var templateObject_1$g, templateObject_2$b, templateObject_3$8, templateObject_4$7, templateObject_5$6, templateObject_6$6, templateObject_7$5, templateObject_8$2, templateObject_9$2;
24139
24181
 
24140
24182
  function TagsCreatorComponent_ng_miam_modal_0_Template(rf, ctx) {
24141
24183
  if (rf & 1) {
@@ -24196,7 +24238,7 @@
24196
24238
  i18n_0 = MSG_EXTERNAL_3391792799402335783$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_CREATOR_TAGS_CREATOR_COMPONENT_TS_1;
24197
24239
  }
24198
24240
  else {
24199
- i18n_0 = $localize(templateObject_1$d || (templateObject_1$d = __makeTemplateObject([":\u241F49ccc54d840caf7373bf84c67fbd8dee146321e1\u241F3391792799402335783:Nouveau Tag"], [":\u241F49ccc54d840caf7373bf84c67fbd8dee146321e1\u241F3391792799402335783:Nouveau Tag"])));
24241
+ i18n_0 = $localize(templateObject_1$f || (templateObject_1$f = __makeTemplateObject([":\u241F49ccc54d840caf7373bf84c67fbd8dee146321e1\u241F3391792799402335783:Nouveau Tag"], [":\u241F49ccc54d840caf7373bf84c67fbd8dee146321e1\u241F3391792799402335783:Nouveau Tag"])));
24200
24242
  }
24201
24243
  var i18n_2;
24202
24244
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24204,7 +24246,7 @@
24204
24246
  i18n_2 = MSG_EXTERNAL_1711750570766225138$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_CREATOR_TAGS_CREATOR_COMPONENT_TS_3;
24205
24247
  }
24206
24248
  else {
24207
- i18n_2 = $localize(templateObject_2$8 || (templateObject_2$8 = __makeTemplateObject([":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"], [":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"])));
24249
+ i18n_2 = $localize(templateObject_2$a || (templateObject_2$a = __makeTemplateObject([":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"], [":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"])));
24208
24250
  }
24209
24251
  var i18n_4;
24210
24252
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24212,7 +24254,7 @@
24212
24254
  i18n_4 = MSG_EXTERNAL_9222330152375559662$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_CREATOR_TAGS_CREATOR_COMPONENT_TS_5;
24213
24255
  }
24214
24256
  else {
24215
- i18n_4 = $localize(templateObject_3$6 || (templateObject_3$6 = __makeTemplateObject([":\u241F30a34083240dc18e84ba37513fa6a1cf320f443c\u241F9222330152375559662:Cr\u00E9er"], [":\u241F30a34083240dc18e84ba37513fa6a1cf320f443c\u241F9222330152375559662:Cr\u00E9er"])));
24257
+ i18n_4 = $localize(templateObject_3$7 || (templateObject_3$7 = __makeTemplateObject([":\u241F30a34083240dc18e84ba37513fa6a1cf320f443c\u241F9222330152375559662:Cr\u00E9er"], [":\u241F30a34083240dc18e84ba37513fa6a1cf320f443c\u241F9222330152375559662:Cr\u00E9er"])));
24216
24258
  }
24217
24259
  var i18n_6;
24218
24260
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24220,7 +24262,7 @@
24220
24262
  i18n_6 = MSG_EXTERNAL_2085089061823165347$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_CREATOR_TAGS_CREATOR_COMPONENT_TS__7;
24221
24263
  }
24222
24264
  else {
24223
- i18n_6 = $localize(templateObject_4$5 || (templateObject_4$5 = __makeTemplateObject([":\u241F387f7490e7233f6df0794d40c96af50417d823d4\u241F2085089061823165347:Nom du tag"], [":\u241F387f7490e7233f6df0794d40c96af50417d823d4\u241F2085089061823165347:Nom du tag"])));
24265
+ i18n_6 = $localize(templateObject_4$6 || (templateObject_4$6 = __makeTemplateObject([":\u241F387f7490e7233f6df0794d40c96af50417d823d4\u241F2085089061823165347:Nom du tag"], [":\u241F387f7490e7233f6df0794d40c96af50417d823d4\u241F2085089061823165347:Nom du tag"])));
24224
24266
  }
24225
24267
  return [["title", i18n_0, "cancelButtonText", i18n_2, "confirmButtonText", i18n_4, "modalStyle", "right", 3, "noHeaderMode", "display", "confirmButtonIsLoading", "close", "cancel", "confirm", 4, "ngIf"], ["title", i18n_0, "cancelButtonText", i18n_2, "confirmButtonText", i18n_4, "modalStyle", "right", 3, "noHeaderMode", "display", "confirmButtonIsLoading", "close", "cancel", "confirm"], [1, "tags-creator"], ["for", "tag-name"], i18n_6, ["type", "text", "id", "tag-name", "name", "tag-name", 3, "ngModel", "ngModelChange"]];
24226
24268
  }, template: function TagsCreatorComponent_Template(rf, ctx) {
@@ -24253,7 +24295,7 @@
24253
24295
  type: i0.Output
24254
24296
  }] });
24255
24297
  })();
24256
- var templateObject_1$d, templateObject_2$8, templateObject_3$6, templateObject_4$5;
24298
+ var templateObject_1$f, templateObject_2$a, templateObject_3$7, templateObject_4$6;
24257
24299
 
24258
24300
  function TagsSelectorComponent_ng_miam_modal_0_div_12_Template(rf, ctx) {
24259
24301
  if (rf & 1) {
@@ -24467,7 +24509,7 @@
24467
24509
  i18n_0 = MSG_EXTERNAL_2886222452920795806$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_SELECTOR_TAGS_SELECTOR_COMPONENT_TS_1;
24468
24510
  }
24469
24511
  else {
24470
- i18n_0 = $localize(templateObject_1$c || (templateObject_1$c = __makeTemplateObject([":\u241F1b42feb0ddb0cd94b0ece9294f1d94d0db1b1b75\u241F2886222452920795806:Ajoutez des tags \u00E0 la recette"], [":\u241F1b42feb0ddb0cd94b0ece9294f1d94d0db1b1b75\u241F2886222452920795806:Ajoutez des tags \u00E0 la recette"])));
24512
+ i18n_0 = $localize(templateObject_1$e || (templateObject_1$e = __makeTemplateObject([":\u241F1b42feb0ddb0cd94b0ece9294f1d94d0db1b1b75\u241F2886222452920795806:Ajoutez des tags \u00E0 la recette"], [":\u241F1b42feb0ddb0cd94b0ece9294f1d94d0db1b1b75\u241F2886222452920795806:Ajoutez des tags \u00E0 la recette"])));
24471
24513
  }
24472
24514
  var i18n_2;
24473
24515
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24475,7 +24517,7 @@
24475
24517
  i18n_2 = MSG_EXTERNAL_1711750570766225138$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_SELECTOR_TAGS_SELECTOR_COMPONENT_TS_3;
24476
24518
  }
24477
24519
  else {
24478
- i18n_2 = $localize(templateObject_2$7 || (templateObject_2$7 = __makeTemplateObject([":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"], [":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"])));
24520
+ i18n_2 = $localize(templateObject_2$9 || (templateObject_2$9 = __makeTemplateObject([":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"], [":\u241F12380235948088ddf227ad226ce8a2ae63878fe5\u241F1711750570766225138:Annuler"])));
24479
24521
  }
24480
24522
  var i18n_4;
24481
24523
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24483,7 +24525,7 @@
24483
24525
  i18n_4 = MSG_EXTERNAL_70397346439942337$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_SELECTOR_TAGS_SELECTOR_COMPONENT_TS_5;
24484
24526
  }
24485
24527
  else {
24486
- i18n_4 = $localize(templateObject_3$5 || (templateObject_3$5 = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
24528
+ i18n_4 = $localize(templateObject_3$6 || (templateObject_3$6 = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
24487
24529
  }
24488
24530
  var i18n_6;
24489
24531
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24491,7 +24533,7 @@
24491
24533
  i18n_6 = MSG_EXTERNAL_3382889714979906141$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_SELECTOR_TAGS_SELECTOR_COMPONENT_TS__7;
24492
24534
  }
24493
24535
  else {
24494
- i18n_6 = $localize(templateObject_4$4 || (templateObject_4$4 = __makeTemplateObject([":\u241F1f162c229c7251bff76c426e1996ec2e8027a614\u241F3382889714979906141: Type de plat "], [":\u241F1f162c229c7251bff76c426e1996ec2e8027a614\u241F3382889714979906141: Type de plat "])));
24536
+ i18n_6 = $localize(templateObject_4$5 || (templateObject_4$5 = __makeTemplateObject([":\u241F1f162c229c7251bff76c426e1996ec2e8027a614\u241F3382889714979906141: Type de plat "], [":\u241F1f162c229c7251bff76c426e1996ec2e8027a614\u241F3382889714979906141: Type de plat "])));
24495
24537
  }
24496
24538
  var i18n_8;
24497
24539
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24499,7 +24541,7 @@
24499
24541
  i18n_8 = MSG_EXTERNAL_2575761888491507638$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_SELECTOR_TAGS_SELECTOR_COMPONENT_TS__9;
24500
24542
  }
24501
24543
  else {
24502
- i18n_8 = $localize(templateObject_5$4 || (templateObject_5$4 = __makeTemplateObject([":\u241F13a158067c29e5c5211ea07d687c286c5ba99516\u241F2575761888491507638: Famille d'ingr\u00E9dients "], [":\u241F13a158067c29e5c5211ea07d687c286c5ba99516\u241F2575761888491507638: Famille d'ingr\u00E9dients "])));
24544
+ i18n_8 = $localize(templateObject_5$5 || (templateObject_5$5 = __makeTemplateObject([":\u241F13a158067c29e5c5211ea07d687c286c5ba99516\u241F2575761888491507638: Famille d'ingr\u00E9dients "], [":\u241F13a158067c29e5c5211ea07d687c286c5ba99516\u241F2575761888491507638: Famille d'ingr\u00E9dients "])));
24503
24545
  }
24504
24546
  var i18n_10;
24505
24547
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24507,7 +24549,7 @@
24507
24549
  i18n_10 = MSG_EXTERNAL_562570764080840354$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_SELECTOR_TAGS_SELECTOR_COMPONENT_TS__11;
24508
24550
  }
24509
24551
  else {
24510
- i18n_10 = $localize(templateObject_6$4 || (templateObject_6$4 = __makeTemplateObject([":\u241F94277b31f832a31dde2e1753c80b41b29ca0b80c\u241F562570764080840354: \u00C9quipements "], [":\u241F94277b31f832a31dde2e1753c80b41b29ca0b80c\u241F562570764080840354: \u00C9quipements "])));
24552
+ i18n_10 = $localize(templateObject_6$5 || (templateObject_6$5 = __makeTemplateObject([":\u241F94277b31f832a31dde2e1753c80b41b29ca0b80c\u241F562570764080840354: \u00C9quipements "], [":\u241F94277b31f832a31dde2e1753c80b41b29ca0b80c\u241F562570764080840354: \u00C9quipements "])));
24511
24553
  }
24512
24554
  var i18n_12;
24513
24555
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -24515,7 +24557,7 @@
24515
24557
  i18n_12 = MSG_EXTERNAL_4451987513851412958$$LIB__WEB_COMPONENTS_RECIPE_CREATION_TAGS_SELECTOR_TAGS_SELECTOR_COMPONENT_TS__13;
24516
24558
  }
24517
24559
  else {
24518
- i18n_12 = $localize(templateObject_7$3 || (templateObject_7$3 = __makeTemplateObject([":\u241Fd2b1f31f9c08d4d9ad0ac015b42eee66c7165a4e\u241F4451987513851412958: R\u00E9gimes alimentaires "], [":\u241Fd2b1f31f9c08d4d9ad0ac015b42eee66c7165a4e\u241F4451987513851412958: R\u00E9gimes alimentaires "])));
24560
+ i18n_12 = $localize(templateObject_7$4 || (templateObject_7$4 = __makeTemplateObject([":\u241Fd2b1f31f9c08d4d9ad0ac015b42eee66c7165a4e\u241F4451987513851412958: R\u00E9gimes alimentaires "], [":\u241Fd2b1f31f9c08d4d9ad0ac015b42eee66c7165a4e\u241F4451987513851412958: R\u00E9gimes alimentaires "])));
24519
24561
  }
24520
24562
  return [["title", i18n_0, "cancelButtonText", i18n_2, "confirmButtonText", i18n_4, "modalStyle", "right", 3, "noHeaderMode", "display", "close", "cancel", "confirm", 4, "ngIf", "ngIfElse"], ["tagsCreator", ""], ["title", i18n_0, "cancelButtonText", i18n_2, "confirmButtonText", i18n_4, "modalStyle", "right", 3, "noHeaderMode", "display", "close", "cancel", "confirm"], [1, "tags-selector"], [1, "tags-selector__selectors"], [1, "tags-selector__selector", 3, "ngClass", "click"], i18n_6, i18n_8, i18n_10, i18n_12, [1, "tags-selector__tags"], ["class", "tags-selector__tag", 3, "ngClass", "click", 4, "ngFor", "ngForOf"], ["class", "tags-selector__tag", 3, "click", 4, "ngIf"], [1, "tags-selector__tag", 3, "ngClass", "click"], [1, "tags-selector__tag", 3, "click"], [3, "iconName"], [3, "display", "currentRecipe", "currentTagType", "close", "submit", 4, "ngIf"], [3, "display", "currentRecipe", "currentTagType", "close", "submit"]];
24521
24563
  }, template: function TagsSelectorComponent_Template(rf, ctx) {
@@ -24550,7 +24592,7 @@
24550
24592
  type: i0.Output
24551
24593
  }] });
24552
24594
  })();
24553
- var templateObject_1$c, templateObject_2$7, templateObject_3$5, templateObject_4$4, templateObject_5$4, templateObject_6$4, templateObject_7$3;
24595
+ var templateObject_1$e, templateObject_2$9, templateObject_3$6, templateObject_4$5, templateObject_5$5, templateObject_6$5, templateObject_7$4;
24554
24596
 
24555
24597
  var _c0$3 = ["topAnchor"];
24556
24598
  var _c1$2 = ["stepperLinks"];
@@ -25035,7 +25077,7 @@
25035
25077
  i18n_3 = MSG_EXTERNAL_8168765646794661881$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS_4;
25036
25078
  }
25037
25079
  else {
25038
- i18n_3 = $localize(templateObject_1$b || (templateObject_1$b = __makeTemplateObject([":\u241F7582755e46cff3b0d29465ce750a51c9b841ae9f\u241F8168765646794661881:Retour"], [":\u241F7582755e46cff3b0d29465ce750a51c9b841ae9f\u241F8168765646794661881:Retour"])));
25080
+ i18n_3 = $localize(templateObject_1$d || (templateObject_1$d = __makeTemplateObject([":\u241F7582755e46cff3b0d29465ce750a51c9b841ae9f\u241F8168765646794661881:Retour"], [":\u241F7582755e46cff3b0d29465ce750a51c9b841ae9f\u241F8168765646794661881:Retour"])));
25039
25081
  }
25040
25082
  var i18n_5;
25041
25083
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25043,7 +25085,7 @@
25043
25085
  i18n_5 = MSG_EXTERNAL_2366935786438666614$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS_6;
25044
25086
  }
25045
25087
  else {
25046
- i18n_5 = $localize(templateObject_2$6 || (templateObject_2$6 = __makeTemplateObject([":\u241Fbd154a9441096bace6ef74d094ac095223ff9a77\u241F2366935786438666614:Ma recette"], [":\u241Fbd154a9441096bace6ef74d094ac095223ff9a77\u241F2366935786438666614:Ma recette"])));
25088
+ i18n_5 = $localize(templateObject_2$8 || (templateObject_2$8 = __makeTemplateObject([":\u241Fbd154a9441096bace6ef74d094ac095223ff9a77\u241F2366935786438666614:Ma recette"], [":\u241Fbd154a9441096bace6ef74d094ac095223ff9a77\u241F2366935786438666614:Ma recette"])));
25047
25089
  }
25048
25090
  var i18n_7;
25049
25091
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25051,7 +25093,7 @@
25051
25093
  i18n_7 = MSG_EXTERNAL_4902817035128594900$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS_8;
25052
25094
  }
25053
25095
  else {
25054
- i18n_7 = $localize(templateObject_3$4 || (templateObject_3$4 = __makeTemplateObject([":\u241Feec715de352a6b114713b30b640d319fa78207a0\u241F4902817035128594900:Description"], [":\u241Feec715de352a6b114713b30b640d319fa78207a0\u241F4902817035128594900:Description"])));
25096
+ i18n_7 = $localize(templateObject_3$5 || (templateObject_3$5 = __makeTemplateObject([":\u241Feec715de352a6b114713b30b640d319fa78207a0\u241F4902817035128594900:Description"], [":\u241Feec715de352a6b114713b30b640d319fa78207a0\u241F4902817035128594900:Description"])));
25055
25097
  }
25056
25098
  var i18n_9;
25057
25099
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25059,7 +25101,7 @@
25059
25101
  i18n_9 = MSG_EXTERNAL_113705676033818564$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS_10;
25060
25102
  }
25061
25103
  else {
25062
- i18n_9 = $localize(templateObject_4$3 || (templateObject_4$3 = __makeTemplateObject([":\u241Fab3acd9b11f096a99bcf748296bb5b4fb11048be\u241F113705676033818564:Ingr\u00E9dients & \u00C9tapes"], [":\u241Fab3acd9b11f096a99bcf748296bb5b4fb11048be\u241F113705676033818564:Ingr\u00E9dients & \u00C9tapes"])));
25104
+ i18n_9 = $localize(templateObject_4$4 || (templateObject_4$4 = __makeTemplateObject([":\u241Fab3acd9b11f096a99bcf748296bb5b4fb11048be\u241F113705676033818564:Ingr\u00E9dients & \u00C9tapes"], [":\u241Fab3acd9b11f096a99bcf748296bb5b4fb11048be\u241F113705676033818564:Ingr\u00E9dients & \u00C9tapes"])));
25063
25105
  }
25064
25106
  var i18n_11;
25065
25107
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25067,7 +25109,7 @@
25067
25109
  i18n_11 = MSG_EXTERNAL_4078662097036588656$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS_12;
25068
25110
  }
25069
25111
  else {
25070
- i18n_11 = $localize(templateObject_5$3 || (templateObject_5$3 = __makeTemplateObject([":\u241F49375178588cf9deb7d988b78a2c8f00026e7285\u241F4078662097036588656:Image trop volumineuse"], [":\u241F49375178588cf9deb7d988b78a2c8f00026e7285\u241F4078662097036588656:Image trop volumineuse"])));
25112
+ i18n_11 = $localize(templateObject_5$4 || (templateObject_5$4 = __makeTemplateObject([":\u241F49375178588cf9deb7d988b78a2c8f00026e7285\u241F4078662097036588656:Image trop volumineuse"], [":\u241F49375178588cf9deb7d988b78a2c8f00026e7285\u241F4078662097036588656:Image trop volumineuse"])));
25071
25113
  }
25072
25114
  var i18n_13;
25073
25115
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25075,7 +25117,7 @@
25075
25117
  i18n_13 = MSG_EXTERNAL_9059155436017318544$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS_14;
25076
25118
  }
25077
25119
  else {
25078
- i18n_13 = $localize(templateObject_6$3 || (templateObject_6$3 = __makeTemplateObject([":\u241F1a7391c494239efe2ad440cff51f17e9a03bc6b0\u241F9059155436017318544:Fermer"], [":\u241F1a7391c494239efe2ad440cff51f17e9a03bc6b0\u241F9059155436017318544:Fermer"])));
25120
+ i18n_13 = $localize(templateObject_6$4 || (templateObject_6$4 = __makeTemplateObject([":\u241F1a7391c494239efe2ad440cff51f17e9a03bc6b0\u241F9059155436017318544:Fermer"], [":\u241F1a7391c494239efe2ad440cff51f17e9a03bc6b0\u241F9059155436017318544:Fermer"])));
25079
25121
  }
25080
25122
  var i18n_15;
25081
25123
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25083,7 +25125,7 @@
25083
25125
  i18n_15 = MSG_EXTERNAL_3282727732933154012$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS__16;
25084
25126
  }
25085
25127
  else {
25086
- i18n_15 = $localize(templateObject_7$2 || (templateObject_7$2 = __makeTemplateObject([":\u241F87c5e70b1624fcb3c2b2ccb937de1128495df83f\u241F3282727732933154012:* champs obligatoires"], [":\u241F87c5e70b1624fcb3c2b2ccb937de1128495df83f\u241F3282727732933154012:* champs obligatoires"])));
25128
+ i18n_15 = $localize(templateObject_7$3 || (templateObject_7$3 = __makeTemplateObject([":\u241F87c5e70b1624fcb3c2b2ccb937de1128495df83f\u241F3282727732933154012:* champs obligatoires"], [":\u241F87c5e70b1624fcb3c2b2ccb937de1128495df83f\u241F3282727732933154012:* champs obligatoires"])));
25087
25129
  }
25088
25130
  var i18n_17;
25089
25131
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25091,7 +25133,7 @@
25091
25133
  i18n_17 = MSG_EXTERNAL_3196451212397199710$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS__18;
25092
25134
  }
25093
25135
  else {
25094
- i18n_17 = $localize(templateObject_8 || (templateObject_8 = __makeTemplateObject([":\u241F69e064561c414aaa2bfb65a5d18a81afac86f282\u241F3196451212397199710:Ma recette est..."], [":\u241F69e064561c414aaa2bfb65a5d18a81afac86f282\u241F3196451212397199710:Ma recette est..."])));
25136
+ i18n_17 = $localize(templateObject_8$1 || (templateObject_8$1 = __makeTemplateObject([":\u241F69e064561c414aaa2bfb65a5d18a81afac86f282\u241F3196451212397199710:Ma recette est..."], [":\u241F69e064561c414aaa2bfb65a5d18a81afac86f282\u241F3196451212397199710:Ma recette est..."])));
25095
25137
  }
25096
25138
  var i18n_19;
25097
25139
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25099,7 +25141,7 @@
25099
25141
  i18n_19 = MSG_EXTERNAL_71394326071133031$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS__20;
25100
25142
  }
25101
25143
  else {
25102
- i18n_19 = $localize(templateObject_9 || (templateObject_9 = __makeTemplateObject([":\u241F9ea7d16d4d768d931934d11267eab0fa2465b9af\u241F71394326071133031:Nombre de convives"], [":\u241F9ea7d16d4d768d931934d11267eab0fa2465b9af\u241F71394326071133031:Nombre de convives"])));
25144
+ i18n_19 = $localize(templateObject_9$1 || (templateObject_9$1 = __makeTemplateObject([":\u241F9ea7d16d4d768d931934d11267eab0fa2465b9af\u241F71394326071133031:Nombre de convives"], [":\u241F9ea7d16d4d768d931934d11267eab0fa2465b9af\u241F71394326071133031:Nombre de convives"])));
25103
25145
  }
25104
25146
  var i18n_21;
25105
25147
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25107,7 +25149,7 @@
25107
25149
  i18n_21 = MSG_EXTERNAL_3871633483271028552$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS__22;
25108
25150
  }
25109
25151
  else {
25110
- i18n_21 = $localize(templateObject_10 || (templateObject_10 = __makeTemplateObject([":\u241Fcae61afdb3ceeca56e3ef0fcfd16185a99bd26b4\u241F3871633483271028552:L'image ne dispose d'aucun lien"], [":\u241Fcae61afdb3ceeca56e3ef0fcfd16185a99bd26b4\u241F3871633483271028552:L'image ne dispose d'aucun lien"])));
25152
+ i18n_21 = $localize(templateObject_10$1 || (templateObject_10$1 = __makeTemplateObject([":\u241Fcae61afdb3ceeca56e3ef0fcfd16185a99bd26b4\u241F3871633483271028552:L'image ne dispose d'aucun lien"], [":\u241Fcae61afdb3ceeca56e3ef0fcfd16185a99bd26b4\u241F3871633483271028552:L'image ne dispose d'aucun lien"])));
25111
25153
  }
25112
25154
  var i18n_23;
25113
25155
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25115,7 +25157,7 @@
25115
25157
  i18n_23 = MSG_EXTERNAL_3230183296193753148$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS__24;
25116
25158
  }
25117
25159
  else {
25118
- i18n_23 = $localize(templateObject_11 || (templateObject_11 = __makeTemplateObject([":\u241F130eba530aa81474422b1e98d9709219e560f308\u241F3230183296193753148:Description de ma recette"], [":\u241F130eba530aa81474422b1e98d9709219e560f308\u241F3230183296193753148:Description de ma recette"])));
25160
+ i18n_23 = $localize(templateObject_11$1 || (templateObject_11$1 = __makeTemplateObject([":\u241F130eba530aa81474422b1e98d9709219e560f308\u241F3230183296193753148:Description de ma recette"], [":\u241F130eba530aa81474422b1e98d9709219e560f308\u241F3230183296193753148:Description de ma recette"])));
25119
25161
  }
25120
25162
  var i18n_25;
25121
25163
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25123,7 +25165,7 @@
25123
25165
  i18n_25 = MSG_EXTERNAL_8796588647763794440$$LIB__WEB_COMPONENTS_RECIPE_CREATION_RECIPE_STEPPER_RECIPE_STEPPER_COMPONENT_TS__26;
25124
25166
  }
25125
25167
  else {
25126
- i18n_25 = $localize(templateObject_12 || (templateObject_12 = __makeTemplateObject([":\u241F493b33d1a738a86e7a76ef3f665b4663f9f34469\u241F8796588647763794440:Niveau de difficult\u00E9 de la recette"], [":\u241F493b33d1a738a86e7a76ef3f665b4663f9f34469\u241F8796588647763794440:Niveau de difficult\u00E9 de la recette"])));
25168
+ i18n_25 = $localize(templateObject_12$1 || (templateObject_12$1 = __makeTemplateObject([":\u241F493b33d1a738a86e7a76ef3f665b4663f9f34469\u241F8796588647763794440:Niveau de difficult\u00E9 de la recette"], [":\u241F493b33d1a738a86e7a76ef3f665b4663f9f34469\u241F8796588647763794440:Niveau de difficult\u00E9 de la recette"])));
25127
25169
  }
25128
25170
  var i18n_27;
25129
25171
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -25327,7 +25369,7 @@
25327
25369
  args: ['step']
25328
25370
  }] });
25329
25371
  })();
25330
- var templateObject_1$b, templateObject_2$6, templateObject_3$4, templateObject_4$3, templateObject_5$3, templateObject_6$3, templateObject_7$2, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14, templateObject_15, templateObject_16, templateObject_17, templateObject_18, templateObject_19, templateObject_20, templateObject_21, templateObject_22, templateObject_23;
25372
+ var templateObject_1$d, templateObject_2$8, templateObject_3$5, templateObject_4$4, templateObject_5$4, templateObject_6$4, templateObject_7$3, templateObject_8$1, templateObject_9$1, templateObject_10$1, templateObject_11$1, templateObject_12$1, templateObject_13, templateObject_14, templateObject_15, templateObject_16, templateObject_17, templateObject_18, templateObject_19, templateObject_20, templateObject_21, templateObject_22, templateObject_23;
25331
25373
 
25332
25374
  var _c0$2 = ["miamCatalogTopAnchor"];
25333
25375
  var _c1$1 = ["returnHomeButton"];
@@ -26115,7 +26157,7 @@
26115
26157
  i18n_2 = MSG_EXTERNAL_8364051788143087484$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_RECIPE_CATALOG_COMPONENT_TS___3;
26116
26158
  }
26117
26159
  else {
26118
- i18n_2 = $localize(templateObject_1$a || (templateObject_1$a = __makeTemplateObject([":\u241F7c740c47ef7c7eb8dffd4a0b2618491b77ce62cd\u241F8364051788143087484: repas dans votre panier"], [":\u241F7c740c47ef7c7eb8dffd4a0b2618491b77ce62cd\u241F8364051788143087484: repas dans votre panier"])));
26160
+ i18n_2 = $localize(templateObject_1$c || (templateObject_1$c = __makeTemplateObject([":\u241F7c740c47ef7c7eb8dffd4a0b2618491b77ce62cd\u241F8364051788143087484: repas dans votre panier"], [":\u241F7c740c47ef7c7eb8dffd4a0b2618491b77ce62cd\u241F8364051788143087484: repas dans votre panier"])));
26119
26161
  }
26120
26162
  var i18n_4;
26121
26163
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -26123,7 +26165,7 @@
26123
26165
  i18n_4 = MSG_EXTERNAL_5662079416005206400$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_RECIPE_CATALOG_COMPONENT_TS____5;
26124
26166
  }
26125
26167
  else {
26126
- i18n_4 = $localize(templateObject_2$5 || (templateObject_2$5 = __makeTemplateObject([":\u241F5c0cdf43c03194014ea2531acb78ce87c05a396b\u241F5662079416005206400:Votre recherche : "], [":\u241F5c0cdf43c03194014ea2531acb78ce87c05a396b\u241F5662079416005206400:Votre recherche : "])));
26168
+ i18n_4 = $localize(templateObject_2$7 || (templateObject_2$7 = __makeTemplateObject([":\u241F5c0cdf43c03194014ea2531acb78ce87c05a396b\u241F5662079416005206400:Votre recherche : "], [":\u241F5c0cdf43c03194014ea2531acb78ce87c05a396b\u241F5662079416005206400:Votre recherche : "])));
26127
26169
  }
26128
26170
  var i18n_6;
26129
26171
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -26131,7 +26173,7 @@
26131
26173
  i18n_6 = MSG_EXTERNAL_588207140585847047$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_RECIPE_CATALOG_COMPONENT_TS____7;
26132
26174
  }
26133
26175
  else {
26134
- i18n_6 = $localize(templateObject_3$3 || (templateObject_3$3 = __makeTemplateObject([":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"], [":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"])));
26176
+ i18n_6 = $localize(templateObject_3$4 || (templateObject_3$4 = __makeTemplateObject([":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"], [":\u241F90857fa8dc61f44c68e5e16dae900b3eb88f2888\u241F588207140585847047:Favoris"])));
26135
26177
  }
26136
26178
  var i18n_8;
26137
26179
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -26139,7 +26181,7 @@
26139
26181
  i18n_8 = MSG_EXTERNAL_3472368054805241582$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_RECIPE_CATALOG_COMPONENT_TS____9;
26140
26182
  }
26141
26183
  else {
26142
- i18n_8 = $localize(templateObject_4$2 || (templateObject_4$2 = __makeTemplateObject([":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"], [":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"])));
26184
+ i18n_8 = $localize(templateObject_4$3 || (templateObject_4$3 = __makeTemplateObject([":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"], [":\u241F8a1e056d8685c37c1de1b6bbcc961429bfd0e4ea\u241F3472368054805241582:Mon carnet perso"])));
26143
26185
  }
26144
26186
  var i18n_10;
26145
26187
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -26147,7 +26189,7 @@
26147
26189
  i18n_10 = MSG_EXTERNAL_7387753154079259338$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_RECIPE_CATALOG_COMPONENT_TS____11;
26148
26190
  }
26149
26191
  else {
26150
- i18n_10 = $localize(templateObject_5$2 || (templateObject_5$2 = __makeTemplateObject([":\u241F1e0415ec0e248029811bbeb6a2892c6bf701f9be\u241F7387753154079259338:Votre s\u00E9lection"], [":\u241F1e0415ec0e248029811bbeb6a2892c6bf701f9be\u241F7387753154079259338:Votre s\u00E9lection"])));
26192
+ i18n_10 = $localize(templateObject_5$3 || (templateObject_5$3 = __makeTemplateObject([":\u241F1e0415ec0e248029811bbeb6a2892c6bf701f9be\u241F7387753154079259338:Votre s\u00E9lection"], [":\u241F1e0415ec0e248029811bbeb6a2892c6bf701f9be\u241F7387753154079259338:Votre s\u00E9lection"])));
26151
26193
  }
26152
26194
  var i18n_12;
26153
26195
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -26155,7 +26197,7 @@
26155
26197
  i18n_12 = MSG_EXTERNAL_1931799427977453728$$LIB__WEB_COMPONENTS_RECIPE_CATALOG_RECIPE_CATALOG_COMPONENT_TS____13;
26156
26198
  }
26157
26199
  else {
26158
- i18n_12 = $localize(templateObject_6$2 || (templateObject_6$2 = __makeTemplateObject([":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"], [":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"])));
26200
+ i18n_12 = $localize(templateObject_6$3 || (templateObject_6$3 = __makeTemplateObject([":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"], [":\u241F3b0b12b85604af610c07cfbd5d4f74662b9a881a\u241F1931799427977453728:Ajouter une id\u00E9e repas"])));
26159
26201
  }
26160
26202
  return [[1, "miam-catalog-anchor"], ["miamCatalogTopAnchor", ""], ["class", "miam-recipe-catalog", 4, "ngIf", "ngIfElse"], ["creationPage", ""], [1, "miam-recipe-catalog"], [1, "miam-recipe-catalog__content"], [3, "home", "searchTerm", "additionalFiltersTitle", "homeLabel", "pictureUrl", "catalogSetting", "returnButtonPressed"], ["class", "miam-recipe-catalog__toolbar-container-anchor", 4, "ngIf"], ["class", "miam-recipe-catalog__toolbar-container", 4, "ngIf"], ["class", "miam-recipe-catalog__content__myMeal__button", 3, "click", 4, "ngIf"], ["class", "miam-recipe-catalog__list", 4, "ngIf", "ngIfElse"], [3, "filters", "isFilterCollapsed", "filterToRemove", "position", "originTrace", "filterChanged", "filterCollapsed", "preferencesChanged"], [3, "isOpen", "filters", "isOpenChange", "preferencesChanged"], ["categoriesComponents", ""], [1, "miam-recipe-catalog__toolbar-container-anchor"], [1, "miam-recipe-catalog__toolbar-container"], ["stickyToolbar", ""], [3, "home", "searchTerm", "additionalFiltersTitle", "favoritesButtonHidden", "personalButtonHidden", "filterBadgeCount", "reduced", "filterButtonPressed", "preferencesButtonPressed", "searchStringChanged", "personalButtonPressed", "favoritesButtonPressed", "returnHomePressed"], [1, "miam-recipe-catalog__content__myMeal__button", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/cutlery-white.svg", "alt", "Cutlery", 1, "miam-recipe-catalog__myMeal__first__icon"], [1, "miam-recipe-catalog__myMeal__button__text", "miam-ds-text", "weight-xl"], i18n_2, ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/chevron-down-white.svg", "alt", "Caret", 1, "miam-recipe-catalog__myMeal__second__icon"], [1, "miam-recipe-catalog__list"], [1, "miam-recipe-catalog__content__title"], [1, "miam-recipe-catalog__content__title-icon", "miam-ds-button", "primary", "square", 3, "click"], ["alt", "return", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/ArrowLeft_white.svg"], ["class", "miam-recipe-catalog__content__title__search__text", 4, "ngIf"], ["class", "miam-recipe-catalog__content__title__favorites__text", 4, "ngIf"], ["class", "miam-recipe-catalog__content__title__personal__text", 4, "ngIf"], ["class", "miam-recipe-catalog__content__title__category", 4, "ngIf"], ["class", "miam-recipe-catalog__content__default__text", 4, "ngIf"], ["stickyToolbarCollection", ""], ["class", "miam-recipe-catalog__list__create___button", 3, "click", 4, "ngIf"], [3, "ngClass", "filters", "originTrace", "displayPricing", "displayInfos", "modifiedGuests", "displayRecipeVariant", "filterRemoved", "recipeActionTriggered"], [1, "miam-recipe-catalog__content__title__search__text"], i18n_4, [1, "miam-recipe-catalog__content__title__favorites__text"], i18n_6, [1, "miam-recipe-catalog__content__title__personal__text"], i18n_8, [1, "miam-recipe-catalog__content__title__category"], [1, "miam-ds-text", "size-l", "weight-xxl"], ["class", "miam-ds-text size-s weight-l", 4, "ngIf"], [1, "miam-ds-text", "size-s", "weight-l"], [1, "miam-recipe-catalog__content__default__text"], i18n_10, [1, "miam-recipe-catalog__list__create___button", 3, "click"], ["width", "24", "height", "24", "primaryColor", "var(--m-color-primary)", 3, "iconName"], i18n_12, ["class", "miam-recipe-catalog__categories", 4, "ngIf"], [1, "miam-recipe-catalog__categories"], [4, "ngFor", "ngForOf"], [4, "ngIf", "ngIfElse"], ["firstCategory", ""], [3, "title", "subtitle", "filters", "maxRecipeNumber", "displayInfos", "displayPricing", "originTrace", "modifiedGuests", "displayRecipeVariant", "displayList"], [1, "miam-recipe-catalog__first-category"], [4, "ngIf"], [3, "title", "subtitle", "filters", "displayInfos", "displayPricing", "maxRecipeNumber", "modifiedGuests", "displayRecipeVariant", "originTrace", "displayList", "isHidden"], [3, "recipeToUpdate", "originTrace", "recipeChange", "canceled", 4, "ngIf"], [3, "recipeToUpdate", "originTrace", "recipeChange", "canceled"]];
26161
26203
  }, template: function RecipeCatalogComponent_Template(rf, ctx) {
@@ -26215,7 +26257,7 @@
26215
26257
  type: i0.Input
26216
26258
  }] });
26217
26259
  })();
26218
- var templateObject_1$a, templateObject_2$5, templateObject_3$3, templateObject_4$2, templateObject_5$2, templateObject_6$2;
26260
+ var templateObject_1$c, templateObject_2$7, templateObject_3$4, templateObject_4$3, templateObject_5$3, templateObject_6$3;
26219
26261
 
26220
26262
  var RecipeCreationModule = /** @class */ (function () {
26221
26263
  // Create custom elements so the WebComponents can be interpreted by the browser regardless of the js framework used
@@ -26636,7 +26678,7 @@
26636
26678
  i18n_0 = MSG_EXTERNAL_8168765646794661881$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_ADDON_RECIPE_ADDON_COMPONENT_TS__1;
26637
26679
  }
26638
26680
  else {
26639
- i18n_0 = $localize(templateObject_1$9 || (templateObject_1$9 = __makeTemplateObject([":\u241F7582755e46cff3b0d29465ce750a51c9b841ae9f\u241F8168765646794661881:Retour"], [":\u241F7582755e46cff3b0d29465ce750a51c9b841ae9f\u241F8168765646794661881:Retour"])));
26681
+ i18n_0 = $localize(templateObject_1$b || (templateObject_1$b = __makeTemplateObject([":\u241F7582755e46cff3b0d29465ce750a51c9b841ae9f\u241F8168765646794661881:Retour"], [":\u241F7582755e46cff3b0d29465ce750a51c9b841ae9f\u241F8168765646794661881:Retour"])));
26640
26682
  }
26641
26683
  return [["class", "miam-recipe-addon", 4, "ngIf", "ngIfElse"], ["isLoading", ""], [1, "miam-recipe-addon"], [1, "miam-recipe-addon__header"], [1, "m-button-secondary", 3, "click"], ["primaryColor", "var(--m-color-primary)", 3, "iconName"], i18n_0, [3, "src", 4, "ngIf"], [1, "miam-recipe-addon__content"], ["class", "miam-recipe-addon__content__iframe", "frameBorder", "0", 3, "src", 4, "ngIf", "ngIfElse"], ["storytelling", ""], [3, "src"], ["frameBorder", "0", 1, "miam-recipe-addon__content__iframe", 3, "src"], [3, "sponsorBlocks"], [1, "miam-recipe-addon__loader"]];
26642
26684
  }, template: function RecipeAddonComponent_Template(rf, ctx) {
@@ -26665,7 +26707,7 @@
26665
26707
  type: i0.Output
26666
26708
  }] });
26667
26709
  })();
26668
- var templateObject_1$9;
26710
+ var templateObject_1$b;
26669
26711
 
26670
26712
  function RecipeDetailsInfosComponent_ng_template_0_Template(rf, ctx) {
26671
26713
  if (rf & 1) {
@@ -26779,7 +26821,7 @@
26779
26821
  i18n_0 = MSG_EXTERNAL_195336627705819465$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_INFOS_RECIPE_DETAILS_INFOS_COMPONENT_TS__1;
26780
26822
  }
26781
26823
  else {
26782
- i18n_0 = $localize(templateObject_1$8 || (templateObject_1$8 = __makeTemplateObject([":\u241F84e98d87dff8af8336d3f5bd9e175e30ff76592b\u241F195336627705819465:0 min"], [":\u241F84e98d87dff8af8336d3f5bd9e175e30ff76592b\u241F195336627705819465:0 min"])));
26824
+ i18n_0 = $localize(templateObject_1$a || (templateObject_1$a = __makeTemplateObject([":\u241F84e98d87dff8af8336d3f5bd9e175e30ff76592b\u241F195336627705819465:0 min"], [":\u241F84e98d87dff8af8336d3f5bd9e175e30ff76592b\u241F195336627705819465:0 min"])));
26783
26825
  }
26784
26826
  return [["defaultTime", ""], ["defaultText", ""], [1, "miam-recipe-details-infos__container", 3, "ngClass"], [1, "miam-ds-badge", "size-l", "miam-recipe-details-infos__badge", "miam-recipe-details-infos__badge__preparation-time", 3, "ngClass"], ["alt", "preparation time icon", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/knife-primary.svg"], [4, "ngIf", "ngIfElse"], [1, "miam-ds-badge", "size-l", "miam-recipe-details-infos__badge", "miam-recipe-details-infos__badge__cooking-time", 3, "ngClass"], ["alt", "cooking time icon", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/pan-primary.svg"], ["class", "miam-ds-badge size-l miam-recipe-details-infos__badge miam-recipe-details-infos__badge__difficulty", 3, "ngClass", 4, "ngIf"], ["class", "miam-ds-badge size-l miam-recipe-details-infos__badge more-info", 3, "click", 4, "ngIf"], ["class", "miam-ds-badge size-l miam-recipe-details-infos__badge tag", 4, "ngFor", "ngForOf"], [1, "miam-recipe-details-infos__no-time-placeholder"], i18n_0, [1, "miam-recipe-details-infos__no-data-placeholder"], [1, "miam-ds-badge", "size-l", "miam-recipe-details-infos__badge", "miam-recipe-details-infos__badge__difficulty", 3, "ngClass"], ["alt", "difficulty icon", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/chef-hat-primary.svg"], [1, "miam-ds-badge", "size-l", "miam-recipe-details-infos__badge", "more-info", 3, "click"], ["alt", "more info icon", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/meatball-primary.svg"], [1, "miam-ds-badge", "size-l", "miam-recipe-details-infos__badge", "tag"]];
26785
26827
  }, template: function RecipeDetailsInfosComponent_Template(rf, ctx) {
@@ -26834,7 +26876,7 @@
26834
26876
  type: i0.Input
26835
26877
  }] });
26836
26878
  })();
26837
- var templateObject_1$8;
26879
+ var templateObject_1$a;
26838
26880
 
26839
26881
  function RecipeDetailsIngredientsComponent_div_0_span_5_Template(rf, ctx) {
26840
26882
  if (rf & 1) {
@@ -26924,7 +26966,7 @@
26924
26966
  i18n_0 = MSG_EXTERNAL_7521397528410775601$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_INGREDIENTS_RECIPE_DETAILS_INGREDIENTS_COMPONENT_TS___1;
26925
26967
  }
26926
26968
  else {
26927
- i18n_0 = $localize(templateObject_1$7 || (templateObject_1$7 = __makeTemplateObject([":\u241Fe859ba2d36a6f30bb3acdc80852d4e82a5411aa0\u241F7521397528410775601:ingr\u00E9dients"], [":\u241Fe859ba2d36a6f30bb3acdc80852d4e82a5411aa0\u241F7521397528410775601:ingr\u00E9dients"])));
26969
+ i18n_0 = $localize(templateObject_1$9 || (templateObject_1$9 = __makeTemplateObject([":\u241Fe859ba2d36a6f30bb3acdc80852d4e82a5411aa0\u241F7521397528410775601:ingr\u00E9dients"], [":\u241Fe859ba2d36a6f30bb3acdc80852d4e82a5411aa0\u241F7521397528410775601:ingr\u00E9dients"])));
26928
26970
  }
26929
26971
  var i18n_2;
26930
26972
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -26932,7 +26974,7 @@
26932
26974
  i18n_2 = MSG_EXTERNAL_6517018329453008605$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_INGREDIENTS_RECIPE_DETAILS_INGREDIENTS_COMPONENT_TS___3;
26933
26975
  }
26934
26976
  else {
26935
- i18n_2 = $localize(templateObject_2$4 || (templateObject_2$4 = __makeTemplateObject([":\u241F50bd24ece9d857e744e5647b7bfb3a637b6f2a44\u241F6517018329453008605:ingr\u00E9dient"], [":\u241F50bd24ece9d857e744e5647b7bfb3a637b6f2a44\u241F6517018329453008605:ingr\u00E9dient"])));
26977
+ i18n_2 = $localize(templateObject_2$6 || (templateObject_2$6 = __makeTemplateObject([":\u241F50bd24ece9d857e744e5647b7bfb3a637b6f2a44\u241F6517018329453008605:ingr\u00E9dient"], [":\u241F50bd24ece9d857e744e5647b7bfb3a637b6f2a44\u241F6517018329453008605:ingr\u00E9dient"])));
26936
26978
  }
26937
26979
  return [["class", "miam-recipe-details-ingredients", 4, "ngIf"], [1, "miam-recipe-details-ingredients"], [1, "miam-ds-text", "weight-xxl", "miam-recipe-details-ingredients__header"], [4, "ngIf"], [1, "miam-recipe-details-ingredients__list"], ["class", "miam-recipe-details-ingredients__item", 4, "ngFor", "ngForOf"], i18n_0, i18n_2, [1, "miam-recipe-details-ingredients__item"], [1, "miam-recipe-details-ingredients__picture_container"], [1, "miam-recipe-details-ingredients__picture", 3, "src", "alt"], [1, "miam-ds-text", "size-s", "weight-xxl", "miam-recipe-details-ingredients__name"], [1, "miam-ds-text", "size-s", "weight-l", "miam-recipe-details-ingredients__row__qty"]];
26938
26980
  }, template: function RecipeDetailsIngredientsComponent_Template(rf, ctx) {
@@ -26958,7 +27000,7 @@
26958
27000
  type: i0.Input
26959
27001
  }] });
26960
27002
  })();
26961
- var templateObject_1$7, templateObject_2$4;
27003
+ var templateObject_1$9, templateObject_2$6;
26962
27004
 
26963
27005
  function RecipeDetailsStepsComponent_span_4_Template(rf, ctx) {
26964
27006
  if (rf & 1) {
@@ -27009,7 +27051,7 @@
27009
27051
  i18n_0 = MSG_EXTERNAL_8637234547790461302$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_STEPS_RECIPE_DETAILS_STEPS_COMPONENT_TS__1;
27010
27052
  }
27011
27053
  else {
27012
- i18n_0 = $localize(templateObject_1$6 || (templateObject_1$6 = __makeTemplateObject([":\u241Fcc53912b673207fb8f211965ce70a6126839560c\u241F8637234547790461302:\u00E9tape"], [":\u241Fcc53912b673207fb8f211965ce70a6126839560c\u241F8637234547790461302:\u00E9tape"])));
27054
+ i18n_0 = $localize(templateObject_1$8 || (templateObject_1$8 = __makeTemplateObject([":\u241Fcc53912b673207fb8f211965ce70a6126839560c\u241F8637234547790461302:\u00E9tape"], [":\u241Fcc53912b673207fb8f211965ce70a6126839560c\u241F8637234547790461302:\u00E9tape"])));
27013
27055
  }
27014
27056
  var i18n_2;
27015
27057
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -27017,7 +27059,7 @@
27017
27059
  i18n_2 = MSG_EXTERNAL_2078952905340877546$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_STEPS_RECIPE_DETAILS_STEPS_COMPONENT_TS__3;
27018
27060
  }
27019
27061
  else {
27020
- i18n_2 = $localize(templateObject_2$3 || (templateObject_2$3 = __makeTemplateObject([":\u241F72dadcda5c07bc70b1fdafebbc6eade69922cc41\u241F2078952905340877546:\u00E9tapes"], [":\u241F72dadcda5c07bc70b1fdafebbc6eade69922cc41\u241F2078952905340877546:\u00E9tapes"])));
27062
+ i18n_2 = $localize(templateObject_2$5 || (templateObject_2$5 = __makeTemplateObject([":\u241F72dadcda5c07bc70b1fdafebbc6eade69922cc41\u241F2078952905340877546:\u00E9tapes"], [":\u241F72dadcda5c07bc70b1fdafebbc6eade69922cc41\u241F2078952905340877546:\u00E9tapes"])));
27021
27063
  }
27022
27064
  return [[1, "miam-recipe-details-steps"], [1, "miam-ds-text", "weight-xxl", "miam-recipe-details-steps__header"], [4, "ngIf"], [1, "miam-recipe-details-steps__list"], ["class", "miam-recipe-details-steps__step", 4, "ngFor", "ngForOf"], i18n_0, i18n_2, [1, "miam-recipe-details-steps__step"], [1, "miam-recipe-details-steps__step__idx"], [1, "miam-ds-text", "size-s", "weight-l"], [1, "miam-ds-text", "weight-l", "miam-recipe-details-steps__step__text"]];
27023
27065
  }, template: function RecipeDetailsStepsComponent_Template(rf, ctx) {
@@ -27060,7 +27102,7 @@
27060
27102
  type: i0.Input
27061
27103
  }] });
27062
27104
  })();
27063
- var templateObject_1$6, templateObject_2$3;
27105
+ var templateObject_1$8, templateObject_2$5;
27064
27106
 
27065
27107
  function StoreLocatorLinkComponent_div_0_span_1_Template(rf, ctx) {
27066
27108
  if (rf & 1) {
@@ -27080,7 +27122,7 @@
27080
27122
  i0__namespace.ɵɵelementStart(0, "div", 1);
27081
27123
  i0__namespace.ɵɵtemplate(1, StoreLocatorLinkComponent_div_0_span_1_Template, 2, 2, "span", 2);
27082
27124
  i0__namespace.ɵɵelementStart(2, "button", 3);
27083
- i0__namespace.ɵɵlistener("click", function StoreLocatorLinkComponent_div_0_Template_button_click_2_listener() { i0__namespace.ɵɵrestoreView(_r3_1); var ctx_r2 = i0__namespace.ɵɵnextContext(); return ctx_r2.storeLocatorService.storeLocatorOpened$.next(true); });
27125
+ i0__namespace.ɵɵlistener("click", function StoreLocatorLinkComponent_div_0_Template_button_click_2_listener() { i0__namespace.ɵɵrestoreView(_r3_1); var ctx_r2 = i0__namespace.ɵɵnextContext(); return ctx_r2.storeLocatorService.openStoreLocator(); });
27084
27126
  i0__namespace.ɵɵelement(3, "img", 4);
27085
27127
  i0__namespace.ɵɵelementStart(4, "span");
27086
27128
  i0__namespace.ɵɵi18n(5, 5);
@@ -27123,7 +27165,7 @@
27123
27165
  i18n_0 = MSG_EXTERNAL_9004334984468055592$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_STORE_LOCATOR_LINK_STORE_LOCATOR_LINK_COMPONENT_TS__1;
27124
27166
  }
27125
27167
  else {
27126
- i18n_0 = $localize(templateObject_1$5 || (templateObject_1$5 = __makeTemplateObject([":\u241Fc368921f313712ef19fa1f7d05697982582598ef\u241F9004334984468055592:Changer"], [":\u241Fc368921f313712ef19fa1f7d05697982582598ef\u241F9004334984468055592:Changer"])));
27168
+ i18n_0 = $localize(templateObject_1$7 || (templateObject_1$7 = __makeTemplateObject([":\u241Fc368921f313712ef19fa1f7d05697982582598ef\u241F9004334984468055592:Changer"], [":\u241Fc368921f313712ef19fa1f7d05697982582598ef\u241F9004334984468055592:Changer"])));
27127
27169
  }
27128
27170
  return [["class", "miam-store-locator-link", 4, "ngIf"], [1, "miam-store-locator-link"], ["class", "miam-store-locator-link__store-name miam-ds-text weight-xl size-s", 4, "ngIf"], [1, "miam-store-locator-link__swap-pos-button", "miam-ds-button", "primary", "reverse", "small", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Swap.svg", "alt", "swap point of sale", 1, "miam-store-locator-link__swap-pos-icon"], i18n_0, [1, "miam-store-locator-link__store-name", "miam-ds-text", "weight-xl", "size-s"]];
27129
27171
  }, template: function StoreLocatorLinkComponent_Template(rf, ctx) {
@@ -27147,7 +27189,7 @@
27147
27189
  }]
27148
27190
  }], function () { return [{ type: StoreLocatorService }, { type: PointOfSalesService }, { type: SuppliersService }, { type: i0__namespace.ChangeDetectorRef }]; }, null);
27149
27191
  })();
27150
- var templateObject_1$5;
27192
+ var templateObject_1$7;
27151
27193
 
27152
27194
  var _c0$1 = ["topContainerImg"];
27153
27195
  function RecipeDetailsComponent_div_0_div_1_Template(rf, ctx) {
@@ -27659,6 +27701,7 @@
27659
27701
  _this.displayTags = false;
27660
27702
  _this.showAddon = false;
27661
27703
  _this.showStoreSelector = false;
27704
+ _this.isRecipeFetched = false;
27662
27705
  _this.icon = exports.Icon;
27663
27706
  _this.primaryButtonClicked$ = new i0.EventEmitter();
27664
27707
  _this.addButtonLoading = false;
@@ -27681,6 +27724,9 @@
27681
27724
  }
27682
27725
  this.subscriptions.push(this.storeLocatorService.storeLocatorOpened$.subscribe(function (storeLocatorOpened) {
27683
27726
  _this.showStoreSelector = storeLocatorOpened;
27727
+ if (!storeLocatorOpened && _this.isRecipeFetched) {
27728
+ _this.pageview();
27729
+ }
27684
27730
  _this.cdr.detectChanges();
27685
27731
  }), this.storeLocatorService.newStoreSelected$.subscribe(function () {
27686
27732
  _this.fetchRecipe(_this.recipeId);
@@ -27695,7 +27741,11 @@
27695
27741
  if (this.contextService.noSupplier) {
27696
27742
  this.subscriptions.push(this.posService.isPosValid().subscribe(function (isPosValid) {
27697
27743
  if (!isPosValid) {
27698
- _this.storeLocatorService.storeLocatorOpened$.next(true);
27744
+ _this.storeLocatorService.openStoreLocator(true);
27745
+ }
27746
+ else {
27747
+ _this.recipeDetailsService.checkIfPosIsInitializedAndValid();
27748
+ setTimeout(function () { return _this.cdr.detectChanges(); }); // we need to detect a change that is in a subscribe and thus async
27699
27749
  }
27700
27750
  }));
27701
27751
  }
@@ -27762,7 +27812,10 @@
27762
27812
  }).pipe(operators.skipWhile(function (result) { return result.is_loading; }), operators.tap(function (result) { return _this.sponsorHasStorytelling = !!result.data.length; }));
27763
27813
  }
27764
27814
  return rxjs.of(null);
27765
- })).subscribe(function () { return _this.cdr.detectChanges(); }));
27815
+ })).subscribe(function () {
27816
+ _this.isRecipeFetched = true;
27817
+ _this.cdr.detectChanges();
27818
+ }));
27766
27819
  };
27767
27820
  RecipeDetailsComponent.prototype.setupYoutubePlayer = function () {
27768
27821
  var _this = this;
@@ -27832,7 +27885,7 @@
27832
27885
  this.recipeDetailsService.displayEventWasSent = false;
27833
27886
  this.removeFromOriginPath('/detail/basket-preview');
27834
27887
  var originPath = this.eventTrace().originPath;
27835
- this.storeLocatorService.storeLocatorOpened$.next(false);
27888
+ this.storeLocatorService.closeStoreLocator();
27836
27889
  this.closeDetails.emit();
27837
27890
  this.cdr.detectChanges();
27838
27891
  this.activeTabIndex = 0;
@@ -27851,7 +27904,6 @@
27851
27904
  if (!this.recipeDetailsService.displayEventWasSent) {
27852
27905
  this.recipeDetailsService.displayEventWasSent = true;
27853
27906
  this.analyticsService.sendEventWhenReady(this.analyticsService.EVENT_RECIPE_DISPLAY, this.originTrace.originPath, this.props());
27854
- this.pageview();
27855
27907
  }
27856
27908
  };
27857
27909
  RecipeDetailsComponent.prototype.showPrice = function () {
@@ -27891,7 +27943,7 @@
27891
27943
  i18n_1 = MSG_EXTERNAL_7351539410416117833$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_COMPONENT_TS____2;
27892
27944
  }
27893
27945
  else {
27894
- i18n_1 = $localize(templateObject_1$4 || (templateObject_1$4 = __makeTemplateObject([":\u241F0e74aab5b3701ead8f4185e43a9410b6a31b969e\u241F7351539410416117833:Je fais mes courses, Je cuisine"], [":\u241F0e74aab5b3701ead8f4185e43a9410b6a31b969e\u241F7351539410416117833:Je fais mes courses, Je cuisine"])));
27946
+ i18n_1 = $localize(templateObject_1$6 || (templateObject_1$6 = __makeTemplateObject([":\u241F0e74aab5b3701ead8f4185e43a9410b6a31b969e\u241F7351539410416117833:Je fais mes courses, Je cuisine"], [":\u241F0e74aab5b3701ead8f4185e43a9410b6a31b969e\u241F7351539410416117833:Je fais mes courses, Je cuisine"])));
27895
27947
  }
27896
27948
  var i18n_4;
27897
27949
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -27899,7 +27951,7 @@
27899
27951
  i18n_4 = MSG_EXTERNAL_70397346439942337$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_COMPONENT_TS______5;
27900
27952
  }
27901
27953
  else {
27902
- i18n_4 = $localize(templateObject_2$2 || (templateObject_2$2 = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
27954
+ i18n_4 = $localize(templateObject_2$4 || (templateObject_2$4 = __makeTemplateObject([":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"], [":\u241F8aa969e69241c7c5838b40348f913519d6349371\u241F70397346439942337:Ajouter"])));
27903
27955
  }
27904
27956
  var i18n_6;
27905
27957
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -27907,7 +27959,7 @@
27907
27959
  i18n_6 = MSG_EXTERNAL_5144484951400113194$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_COMPONENT_TS_______7;
27908
27960
  }
27909
27961
  else {
27910
- i18n_6 = $localize(templateObject_3$2 || (templateObject_3$2 = __makeTemplateObject([":\u241F84c216d92afc9edd2b3bd2175d38197737ff86c5\u241F5144484951400113194:produit"], [":\u241F84c216d92afc9edd2b3bd2175d38197737ff86c5\u241F5144484951400113194:produit"])));
27962
+ i18n_6 = $localize(templateObject_3$3 || (templateObject_3$3 = __makeTemplateObject([":\u241F84c216d92afc9edd2b3bd2175d38197737ff86c5\u241F5144484951400113194:produit"], [":\u241F84c216d92afc9edd2b3bd2175d38197737ff86c5\u241F5144484951400113194:produit"])));
27911
27963
  }
27912
27964
  var i18n_8;
27913
27965
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -27915,7 +27967,7 @@
27915
27967
  i18n_8 = MSG_EXTERNAL_1112144680738962826$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_COMPONENT_TS_______9;
27916
27968
  }
27917
27969
  else {
27918
- i18n_8 = $localize(templateObject_4$1 || (templateObject_4$1 = __makeTemplateObject([":\u241F2571d7fbaeed8646df6ee852fb5d94185b0efd88\u241F1112144680738962826:produits"], [":\u241F2571d7fbaeed8646df6ee852fb5d94185b0efd88\u241F1112144680738962826:produits"])));
27970
+ i18n_8 = $localize(templateObject_4$2 || (templateObject_4$2 = __makeTemplateObject([":\u241F2571d7fbaeed8646df6ee852fb5d94185b0efd88\u241F1112144680738962826:produits"], [":\u241F2571d7fbaeed8646df6ee852fb5d94185b0efd88\u241F1112144680738962826:produits"])));
27919
27971
  }
27920
27972
  var i18n_10;
27921
27973
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -27923,7 +27975,7 @@
27923
27975
  i18n_10 = MSG_EXTERNAL_2001694451572573558$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_COMPONENT_TS______11;
27924
27976
  }
27925
27977
  else {
27926
- i18n_10 = $localize(templateObject_5$1 || (templateObject_5$1 = __makeTemplateObject([":\u241F0e81a4e1efd31ae65483ef21f4fa59c2dce0e6f1\u241F2001694451572573558:Continuer mes courses"], [":\u241F0e81a4e1efd31ae65483ef21f4fa59c2dce0e6f1\u241F2001694451572573558:Continuer mes courses"])));
27978
+ i18n_10 = $localize(templateObject_5$2 || (templateObject_5$2 = __makeTemplateObject([":\u241F0e81a4e1efd31ae65483ef21f4fa59c2dce0e6f1\u241F2001694451572573558:Continuer mes courses"], [":\u241F0e81a4e1efd31ae65483ef21f4fa59c2dce0e6f1\u241F2001694451572573558:Continuer mes courses"])));
27927
27979
  }
27928
27980
  var i18n_12;
27929
27981
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -27931,7 +27983,7 @@
27931
27983
  i18n_12 = MSG_EXTERNAL_4608908823120687376$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_COMPONENT_TS_______13;
27932
27984
  }
27933
27985
  else {
27934
- i18n_12 = $localize(templateObject_6$1 || (templateObject_6$1 = __makeTemplateObject([":\u241Fca4bd838b53776d943e423b71318c2001a34ceb1\u241F4608908823120687376: Voir mon panier "], [":\u241Fca4bd838b53776d943e423b71318c2001a34ceb1\u241F4608908823120687376: Voir mon panier "])));
27986
+ i18n_12 = $localize(templateObject_6$2 || (templateObject_6$2 = __makeTemplateObject([":\u241Fca4bd838b53776d943e423b71318c2001a34ceb1\u241F4608908823120687376: Voir mon panier "], [":\u241Fca4bd838b53776d943e423b71318c2001a34ceb1\u241F4608908823120687376: Voir mon panier "])));
27935
27987
  }
27936
27988
  var i18n_14;
27937
27989
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -27939,7 +27991,7 @@
27939
27991
  i18n_14 = MSG_EXTERNAL_4122997114884311871$$LIB__WEB_COMPONENTS_RECIPE_DETAILS_RECIPE_DETAILS_COMPONENT_TS_____15;
27940
27992
  }
27941
27993
  else {
27942
- i18n_14 = $localize(templateObject_7$1 || (templateObject_7$1 = __makeTemplateObject([":\u241Fddc8d487566c6a50356eb269a281761ef8ccffa8\u241F4122997114884311871:dans mon panier"], [":\u241Fddc8d487566c6a50356eb269a281761ef8ccffa8\u241F4122997114884311871:dans mon panier"])));
27994
+ i18n_14 = $localize(templateObject_7$2 || (templateObject_7$2 = __makeTemplateObject([":\u241Fddc8d487566c6a50356eb269a281761ef8ccffa8\u241F4122997114884311871:dans mon panier"], [":\u241Fddc8d487566c6a50356eb269a281761ef8ccffa8\u241F4122997114884311871:dans mon panier"])));
27943
27995
  }
27944
27996
  return [["class", "miam-recipe-details", 3, "hidden", 4, "ngIf"], [3, "recipe", "hideAddon", 4, "ngIf"], [3, "recipe", "basketEntry", "ingredient", "ignoreSelected", "loadOnSelect", "originTrace", "selected", 4, "ngIf"], [1, "miam-recipe-details"], ["class", "miam-ds-loader miam-recipe-details__loader", 4, "ngIf"], ["class", "miam-recipe-details__container", 4, "ngIf"], [1, "miam-ds-loader", "miam-recipe-details__loader"], [1, "miam-recipe-details__container"], [1, "miam-recipe-details__picture"], ["topContainerImg", ""], [1, "miam-recipe-details__banner_buttons"], [1, "miam-recipe-details__top-button-wrapper"], [1, "miam-recipe-details__close-button", "miam-ds-button", "square", "primary", "reverse", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Cross_primary.svg", "alt", "modal close button", 1, "miam-recipe-details__close-icon"], [1, "miam-recipe-details__mobile-header-buttons"], [1, "miam-recipe-details__back-button", "miam-ds-button", "square", "primary", "reverse", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/chevron-down-primary.svg", "alt", "modal back button", 1, "miam-recipe-details__back-icon"], ["class", "miam-recipe-details__like-button", 3, "recipe", "originTrace", 4, "ngIf"], [1, "miam-recipe-details__guest-counter", 3, "floating", "value", "minRange", "valueChange"], ["alt", "recipe picture", "class", "miam-recipe-details__picture-img", 3, "src", "error", 4, "ngIf"], [3, "videoId", "width", "height", "playerVars", 4, "ngIf"], ["class", "miam-recipe-details__picture__filigrane", 4, "ngIf"], [1, "miam-recipe-details__sponsor"], [3, "hasStorytelling", "recipe", "showAddon", 4, "ngIf"], [1, "miam-recipe-details__sponsor-separator"], [1, "miam-recipe-details__sticky-header"], ["ngMiamReachTop", "", 1, "miam-recipe-details__title-container", 3, "stickyByDefault"], [1, "miam-recipe-details__back-button-mobile-container"], [1, "miam-recipe-details__back-button", "miam-ds-button", "small", "square", "ghost", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/chevron-down-primary.svg", "alt", "modal close button", 1, "miam-recipe-details__back-icon"], [1, "miam-recipe-details__title", "miam-ds-text", "size-xl", "weight-xxl"], [1, "miam-recipe-details__actions__icon"], [1, "miam-recipe-details__hideable-actions"], [1, "miam-recipe-details__close-button", "miam-ds-button", "square", "ghost", 3, "click"], ["alt", "modal close button", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Cross_primary.svg", 1, "miam-recipe-details__close-icon"], [4, "ngIf"], ["class", "miam-recipe-details__preparation-tab", 4, "ngIf"], ["class", "miam-recipe-details__footer", 3, "center", 4, "ngIf"], [1, "miam-recipe-details__like-button", 3, "recipe", "originTrace"], ["alt", "recipe picture", 1, "miam-recipe-details__picture-img", 3, "src", "error"], [3, "videoId", "width", "height", "playerVars"], [1, "miam-recipe-details__picture__filigrane"], ["alt", "filigrane logo", 3, "src"], [3, "hasStorytelling", "recipe", "showAddon"], [1, "miam-recipe-details__infos", 3, "recipe"], [1, "miam-recipe-details__tabs", 3, "ngClass"], ["tabs", i18n_1, 3, "selectedTabIndex", "selectedTabIndexChange"], ["class", "miam-recipe-details__products-picker", 3, "originTrace", "closeModal", "guestsChange", 4, "ngIf"], [3, "invalidPos", "posSelected", 4, "ngIf"], [1, "miam-recipe-details__products-picker", 3, "originTrace", "closeModal", "guestsChange"], [3, "invalidPos", "posSelected"], [1, "miam-recipe-details__preparation-tab"], [3, "ingredients"], [3, "recipe"], [1, "miam-recipe-details__footer"], ["class", "miam-recipe-details__price", 4, "ngIf"], ["class", "miam-recipe-details__add-to-basket-cta miam-ds-button primary", 3, "click", 4, "ngIf"], ["class", "miam-recipe-details__add-to-basket-cta miam-ds-button primary", 4, "ngIf"], ["class", "miam-recipe-details__recipe-is-in-basket-cta-container", 4, "ngIf"], [1, "miam-recipe-details__add-to-basket-cta", "miam-ds-button", "primary", 3, "click"], ["alt", "basket icon", "src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Basket.svg"], [1, "miam-recipe-details__add-to-basket-cta__text"], i18n_4, [1, "miam-recipe-details__add-to-basket-remaining-price"], [1, "miam-ds-loader"], i18n_6, i18n_8, [1, "miam-recipe-details__add-to-basket-cta", "miam-ds-button", "primary"], [1, "miam-recipe-details__recipe-is-in-basket-cta-container"], [1, "miam-ds-button", "secondary", "miam-recipe-details__continue-shopping-cta", 3, "click"], i18n_10, ["class", "miam-ds-button primary miam-recipe-details__see-basket-cta", 3, "click", 4, "ngIf"], [1, "miam-ds-button", "primary", "miam-recipe-details__see-basket-cta", 3, "click"], [1, "miam-recipe-details__see-basket__text"], i18n_12, [3, "recipeId", "serves", "fetchPricingOnScroll"], [1, "miam-recipe-details__price"], [1, "miam-recipe-details__price-label", "miam-ds-text", "size-l", "weight-xxl"], [3, "price"], [1, "miam-ds-loader", "primary"], [1, "miam-recipe-details__price-in-basket-label", "miam-ds-text", "size-xs"], i18n_14, [3, "recipe", "hideAddon"], [3, "recipe", "basketEntry", "ingredient", "ignoreSelected", "loadOnSelect", "originTrace", "selected"]];
27945
27997
  }, template: function RecipeDetailsComponent_Template(rf, ctx) {
@@ -28005,7 +28057,7 @@
28005
28057
  args: ['topContainerImg']
28006
28058
  }] });
28007
28059
  })();
28008
- var templateObject_1$4, templateObject_2$2, templateObject_3$2, templateObject_4$1, templateObject_5$1, templateObject_6$1, templateObject_7$1;
28060
+ var templateObject_1$6, templateObject_2$4, templateObject_3$3, templateObject_4$2, templateObject_5$2, templateObject_6$2, templateObject_7$2;
28009
28061
 
28010
28062
  var RecipeDetailsModule = /** @class */ (function () {
28011
28063
  // Create custom elements so the WebComponents can be interpreted by the browser regardless of the js framework used
@@ -28229,7 +28281,7 @@
28229
28281
  i18n_0 = MSG_EXTERNAL_2745229545355315372$$LIB__WEB_COMPONENTS_RECIPE_HELPER_RECIPE_HELPER_COMPONENT_TS__1;
28230
28282
  }
28231
28283
  else {
28232
- i18n_0 = $localize(templateObject_1$3 || (templateObject_1$3 = __makeTemplateObject([":\u241F7e92da6ffc9309858bc537f8c471f562a2c23ea2\u241F2745229545355315372:Faire mes courses \u00E0 partir de recettes"], [":\u241F7e92da6ffc9309858bc537f8c471f562a2c23ea2\u241F2745229545355315372:Faire mes courses \u00E0 partir de recettes"])));
28284
+ i18n_0 = $localize(templateObject_1$5 || (templateObject_1$5 = __makeTemplateObject([":\u241F7e92da6ffc9309858bc537f8c471f562a2c23ea2\u241F2745229545355315372:Faire mes courses \u00E0 partir de recettes"], [":\u241F7e92da6ffc9309858bc537f8c471f562a2c23ea2\u241F2745229545355315372:Faire mes courses \u00E0 partir de recettes"])));
28233
28285
  }
28234
28286
  var i18n_2;
28235
28287
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -28237,7 +28289,7 @@
28237
28289
  i18n_2 = MSG_EXTERNAL_875682303777018267$$LIB__WEB_COMPONENTS_RECIPE_HELPER_RECIPE_HELPER_COMPONENT_TS__3;
28238
28290
  }
28239
28291
  else {
28240
- i18n_2 = $localize(templateObject_2$1 || (templateObject_2$1 = __makeTemplateObject([":\u241Fc780da5a638e4882902bbfb1189214fd18e352b8\u241F875682303777018267:Dor\u00E9navant faites vos courses \u00E0 partir de recettes et ajoutez les ingr\u00E9dients en 1 clic !"], [":\u241Fc780da5a638e4882902bbfb1189214fd18e352b8\u241F875682303777018267:Dor\u00E9navant faites vos courses \u00E0 partir de recettes et ajoutez les ingr\u00E9dients en 1 clic !"])));
28292
+ i18n_2 = $localize(templateObject_2$3 || (templateObject_2$3 = __makeTemplateObject([":\u241Fc780da5a638e4882902bbfb1189214fd18e352b8\u241F875682303777018267:Dor\u00E9navant faites vos courses \u00E0 partir de recettes et ajoutez les ingr\u00E9dients en 1 clic !"], [":\u241Fc780da5a638e4882902bbfb1189214fd18e352b8\u241F875682303777018267:Dor\u00E9navant faites vos courses \u00E0 partir de recettes et ajoutez les ingr\u00E9dients en 1 clic !"])));
28241
28293
  }
28242
28294
  var i18n_4;
28243
28295
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -28245,7 +28297,7 @@
28245
28297
  i18n_4 = MSG_EXTERNAL_373143433767250089$$LIB__WEB_COMPONENTS_RECIPE_HELPER_RECIPE_HELPER_COMPONENT_TS__5;
28246
28298
  }
28247
28299
  else {
28248
- i18n_4 = $localize(templateObject_3$1 || (templateObject_3$1 = __makeTemplateObject([":\u241F6b3440183ef6e9a0959cf29ab136fc49d12f73c5\u241F373143433767250089:Comment \u00E7a marche ?"], [":\u241F6b3440183ef6e9a0959cf29ab136fc49d12f73c5\u241F373143433767250089:Comment \u00E7a marche ?"])));
28300
+ i18n_4 = $localize(templateObject_3$2 || (templateObject_3$2 = __makeTemplateObject([":\u241F6b3440183ef6e9a0959cf29ab136fc49d12f73c5\u241F373143433767250089:Comment \u00E7a marche ?"], [":\u241F6b3440183ef6e9a0959cf29ab136fc49d12f73c5\u241F373143433767250089:Comment \u00E7a marche ?"])));
28249
28301
  }
28250
28302
  var i18n_6;
28251
28303
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -28253,7 +28305,7 @@
28253
28305
  i18n_6 = MSG_EXTERNAL_4201906510803171506$$LIB__WEB_COMPONENTS_RECIPE_HELPER_RECIPE_HELPER_COMPONENT_TS__7;
28254
28306
  }
28255
28307
  else {
28256
- i18n_6 = $localize(templateObject_4 || (templateObject_4 = __makeTemplateObject([":\u241F9dbf18fe66bbecaa6af6687c2d2353c0d1a8f83f\u241F4201906510803171506:Retrouvez le d\u00E9tail de la recette en cliquant sur la carte."], [":\u241F9dbf18fe66bbecaa6af6687c2d2353c0d1a8f83f\u241F4201906510803171506:Retrouvez le d\u00E9tail de la recette en cliquant sur la carte."])));
28308
+ i18n_6 = $localize(templateObject_4$1 || (templateObject_4$1 = __makeTemplateObject([":\u241F9dbf18fe66bbecaa6af6687c2d2353c0d1a8f83f\u241F4201906510803171506:Retrouvez le d\u00E9tail de la recette en cliquant sur la carte."], [":\u241F9dbf18fe66bbecaa6af6687c2d2353c0d1a8f83f\u241F4201906510803171506:Retrouvez le d\u00E9tail de la recette en cliquant sur la carte."])));
28257
28309
  }
28258
28310
  var i18n_8;
28259
28311
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -28261,7 +28313,7 @@
28261
28313
  i18n_8 = MSG_EXTERNAL_8795484274290705925$$LIB__WEB_COMPONENTS_RECIPE_HELPER_RECIPE_HELPER_COMPONENT_TS__9;
28262
28314
  }
28263
28315
  else {
28264
- i18n_8 = $localize(templateObject_5 || (templateObject_5 = __makeTemplateObject([":\u241F1e93f602c861c1b1b382a7a30184216d862df758\u241F8795484274290705925:Ajustez le nombre de convives si n\u00E9cessaire."], [":\u241F1e93f602c861c1b1b382a7a30184216d862df758\u241F8795484274290705925:Ajustez le nombre de convives si n\u00E9cessaire."])));
28316
+ i18n_8 = $localize(templateObject_5$1 || (templateObject_5$1 = __makeTemplateObject([":\u241F1e93f602c861c1b1b382a7a30184216d862df758\u241F8795484274290705925:Ajustez le nombre de convives si n\u00E9cessaire."], [":\u241F1e93f602c861c1b1b382a7a30184216d862df758\u241F8795484274290705925:Ajustez le nombre de convives si n\u00E9cessaire."])));
28265
28317
  }
28266
28318
  var i18n_10;
28267
28319
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -28269,7 +28321,7 @@
28269
28321
  i18n_10 = MSG_EXTERNAL_5815399869678272559$$LIB__WEB_COMPONENTS_RECIPE_HELPER_RECIPE_HELPER_COMPONENT_TS__11;
28270
28322
  }
28271
28323
  else {
28272
- i18n_10 = $localize(templateObject_6 || (templateObject_6 = __makeTemplateObject([":\u241Fe6b557dabd98fdc8d4a2570c8e987bdbdbf09cc4\u241F5815399869678272559:Cliquez sur \"Ajouter les ingr\u00E9dients\" et ajustez les produits si besoin."], [":\u241Fe6b557dabd98fdc8d4a2570c8e987bdbdbf09cc4\u241F5815399869678272559:Cliquez sur \"Ajouter les ingr\u00E9dients\" et ajustez les produits si besoin."])));
28324
+ i18n_10 = $localize(templateObject_6$1 || (templateObject_6$1 = __makeTemplateObject([":\u241Fe6b557dabd98fdc8d4a2570c8e987bdbdbf09cc4\u241F5815399869678272559:Cliquez sur \"Ajouter les ingr\u00E9dients\" et ajustez les produits si besoin."], [":\u241Fe6b557dabd98fdc8d4a2570c8e987bdbdbf09cc4\u241F5815399869678272559:Cliquez sur \"Ajouter les ingr\u00E9dients\" et ajustez les produits si besoin."])));
28273
28325
  }
28274
28326
  var i18n_12;
28275
28327
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -28277,7 +28329,7 @@
28277
28329
  i18n_12 = MSG_EXTERNAL_269834836997346662$$LIB__WEB_COMPONENTS_RECIPE_HELPER_RECIPE_HELPER_COMPONENT_TS__13;
28278
28330
  }
28279
28331
  else {
28280
- i18n_12 = $localize(templateObject_7 || (templateObject_7 = __makeTemplateObject([":\u241F89bd8569b050f8b61a13bb8c80b42f2d51e4db1d\u241F269834836997346662:C'est tout, c'est ajout\u00E9 ! Retrouvez le d\u00E9tail"], [":\u241F89bd8569b050f8b61a13bb8c80b42f2d51e4db1d\u241F269834836997346662:C'est tout, c'est ajout\u00E9 ! Retrouvez le d\u00E9tail"])));
28332
+ i18n_12 = $localize(templateObject_7$1 || (templateObject_7$1 = __makeTemplateObject([":\u241F89bd8569b050f8b61a13bb8c80b42f2d51e4db1d\u241F269834836997346662:C'est tout, c'est ajout\u00E9 ! Retrouvez le d\u00E9tail"], [":\u241F89bd8569b050f8b61a13bb8c80b42f2d51e4db1d\u241F269834836997346662:C'est tout, c'est ajout\u00E9 ! Retrouvez le d\u00E9tail"])));
28281
28333
  }
28282
28334
  return [["class", "miam-recipe-helper__modal", 3, "display", "noHeaderMode", "close", 4, "ngIf"], [1, "miam-recipe-helper__modal", 3, "display", "noHeaderMode", "close"], [1, "miam-recipe-helper"], [1, "miam-recipe-helper__image"], [1, "miam-recipe-helper__content"], [1, "miam-recipe-helper__header"], [1, "miam-recipe-helper__title", "miam-ds-text", "size-xl", "weight-xxl"], i18n_0, [1, "miam-ds-text", "weight-l"], i18n_2, [1, "miam-recipe-helper__steps"], [1, "miam-recipe-helper__how", "miam-ds-text", "weight-xxl"], i18n_4, [1, "miam-recipe-helper__step"], [1, "miam-recipe-helper__step-number", "miam-ds-text", "size-s", "weight-xxl"], [1, "miam-recipe-helper__step-number__number"], [1, "miam-recipe-helper__step-description", "miam-ds-text", "size-s", "weight-l"], i18n_6, i18n_8, i18n_10, i18n_12];
28283
28335
  }, template: function RecipeHelperComponent_Template(rf, ctx) {
@@ -28304,7 +28356,7 @@
28304
28356
  type: i0.Output
28305
28357
  }] });
28306
28358
  })();
28307
- var templateObject_1$3, templateObject_2$1, templateObject_3$1, templateObject_4, templateObject_5, templateObject_6, templateObject_7;
28359
+ var templateObject_1$5, templateObject_2$3, templateObject_3$2, templateObject_4$1, templateObject_5$1, templateObject_6$1, templateObject_7$1;
28308
28360
 
28309
28361
  var _c0 = ["tag"];
28310
28362
  function RecipeTagsComponent_ng_container_0_div_1_div_2_Template(rf, ctx) {
@@ -28541,7 +28593,7 @@
28541
28593
  i18n_4 = MSG_EXTERNAL_8273924711540568207$$LIB__WEB_COMPONENTS_RECIPE_TAGS_RECIPE_TAGS_COMPONENT_TS___5;
28542
28594
  }
28543
28595
  else {
28544
- i18n_4 = $localize(templateObject_1$2 || (templateObject_1$2 = __makeTemplateObject([":\u241F3c5bb82ed6e0c7ec470e7e044e3d12f9642d5356\u241F8273924711540568207:repas"], [":\u241F3c5bb82ed6e0c7ec470e7e044e3d12f9642d5356\u241F8273924711540568207:repas"])));
28596
+ i18n_4 = $localize(templateObject_1$4 || (templateObject_1$4 = __makeTemplateObject([":\u241F3c5bb82ed6e0c7ec470e7e044e3d12f9642d5356\u241F8273924711540568207:repas"], [":\u241F3c5bb82ed6e0c7ec470e7e044e3d12f9642d5356\u241F8273924711540568207:repas"])));
28545
28597
  }
28546
28598
  return [[4, "ngIf", "ngIfElse"], ["reduced", ""], ["class", "miam-recipe-tags__container", 3, "ngStyle", 4, "ngIf"], [1, "miam-recipe-tags__container", 3, "ngStyle"], [1, "miam-recipe-tags__container__list"], ["class", "miam-recipe-tags__list__badge", 4, "ngFor", "ngForOf"], [1, "miam-recipe-tags__container__toggle", 3, "ngClass"], [1, "miam-recipe-tags__toggle__open", 3, "click"], [1, "miam-recipe-tags__toggle__ligne"], [1, "miam-recipe-tags__toggle__close", 3, "ngStyle", "click"], ["width", "24", "height", "24", "primaryColor", "var(--m-color-white)", 3, "iconName"], [1, "miam-recipe-tags__list__badge"], ["tag", ""], ["primaryColor", "var(--m-color-white)", 1, "miam-recipe-tags__badge__icon", 3, "iconName", "click"], [1, "miam-recipe-tag__badge__text", 3, "click"], ["class", "miam-recipe-tags__recipes", 3, "click", 4, "ngIf"], ["class", "miam-recipe-tags__modal", 3, "display", "noHeaderMode", "recipesCount", "close", 4, "ngIf"], [1, "miam-recipe-tags__recipes", 3, "click"], [1, "miam-recipe-tags__recipes__count"], i18n_4, [1, "miam-recipe-tags__modal", 3, "display", "noHeaderMode", "recipesCount", "close"]];
28547
28599
  }, template: function RecipeTagsComponent_Template(rf, ctx) {
@@ -28575,7 +28627,7 @@
28575
28627
  args: ['tag']
28576
28628
  }] });
28577
28629
  })();
28578
- var templateObject_1$2;
28630
+ var templateObject_1$4;
28579
28631
 
28580
28632
  var RecipeSelectionLog = /** @class */ (function (_super) {
28581
28633
  __extends(RecipeSelectionLog, _super);
@@ -28809,7 +28861,7 @@
28809
28861
  i18n_0 = MSG_EXTERNAL_3410334792873579856$$LIB__WEB_COMPONENTS_RECIPES_HISTORY_RECIPES_HISTORY_COMPONENT_TS_1;
28810
28862
  }
28811
28863
  else {
28812
- i18n_0 = $localize(templateObject_1$1 || (templateObject_1$1 = __makeTemplateObject([":\u241F57475cd8d9aa0563f913304441621bee29b5b1f2\u241F3410334792873579856:Mon historique de repas"], [":\u241F57475cd8d9aa0563f913304441621bee29b5b1f2\u241F3410334792873579856:Mon historique de repas"])));
28864
+ i18n_0 = $localize(templateObject_1$3 || (templateObject_1$3 = __makeTemplateObject([":\u241F57475cd8d9aa0563f913304441621bee29b5b1f2\u241F3410334792873579856:Mon historique de repas"], [":\u241F57475cd8d9aa0563f913304441621bee29b5b1f2\u241F3410334792873579856:Mon historique de repas"])));
28813
28865
  }
28814
28866
  var i18n_2;
28815
28867
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -28817,7 +28869,7 @@
28817
28869
  i18n_2 = MSG_EXTERNAL_9002871522056222346$$LIB__WEB_COMPONENTS_RECIPES_HISTORY_RECIPES_HISTORY_COMPONENT_TS__3;
28818
28870
  }
28819
28871
  else {
28820
- i18n_2 = $localize(templateObject_2 || (templateObject_2 = __makeTemplateObject([":\u241F216065a76eda382e233b8a2c032bd74da4947906\u241F9002871522056222346:page"], [":\u241F216065a76eda382e233b8a2c032bd74da4947906\u241F9002871522056222346:page"])));
28872
+ i18n_2 = $localize(templateObject_2$2 || (templateObject_2$2 = __makeTemplateObject([":\u241F216065a76eda382e233b8a2c032bd74da4947906\u241F9002871522056222346:page"], [":\u241F216065a76eda382e233b8a2c032bd74da4947906\u241F9002871522056222346:page"])));
28821
28873
  }
28822
28874
  var i18n_4;
28823
28875
  if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
@@ -28825,7 +28877,7 @@
28825
28877
  i18n_4 = MSG_EXTERNAL_6317414861786302811$$LIB__WEB_COMPONENTS_RECIPES_HISTORY_RECIPES_HISTORY_COMPONENT_TS__5;
28826
28878
  }
28827
28879
  else {
28828
- i18n_4 = $localize(templateObject_3 || (templateObject_3 = __makeTemplateObject([":\u241Fc452e641faa925d3d1e85e984181d96173e96ccd\u241F6317414861786302811:Vous n'avez aucun repas dans votre historique."], [":\u241Fc452e641faa925d3d1e85e984181d96173e96ccd\u241F6317414861786302811:Vous n'avez aucun repas dans votre historique."])));
28880
+ i18n_4 = $localize(templateObject_3$1 || (templateObject_3$1 = __makeTemplateObject([":\u241Fc452e641faa925d3d1e85e984181d96173e96ccd\u241F6317414861786302811:Vous n'avez aucun repas dans votre historique."], [":\u241Fc452e641faa925d3d1e85e984181d96173e96ccd\u241F6317414861786302811:Vous n'avez aucun repas dans votre historique."])));
28829
28881
  }
28830
28882
  return [[1, "miam-recipes-history"], [1, "miam-recipes-history__title"], i18n_0, ["class", "miam-recipes-history__title__pagination", 4, "ngIf"], [4, "ngIf"], ["class", "miam-recipes-history__groups", 4, "ngFor", "ngForOf"], [1, "miam-recipes-history__title__pagination"], ["height", "24", "width", "24", "primaryColor", "grey", 1, "left", 3, "iconName", "click"], i18n_2, ["height", "24", "width", "24", "primaryColor", "grey", 1, "right", 3, "iconName", "click"], i18n_4, [1, "miam-recipes-history__groups"], [1, "miam-recipes-history__groups__header", 3, "click"], [1, "miam-recipes-history__groups__header__date"], [1, "miam-recipes-history__groups__header__chevron", 3, "ngClass"], ["height", "32", "width", "32", 3, "iconName"], [1, "miam-recipes-history__groups__recipes", 3, "ngClass"], [4, "ngFor", "ngForOf"], ["class", "miam-recipes-history__groups__recipes__line", 3, "displayTotalPricing", "line", "originTrace", 4, "ngIf"], [1, "miam-recipes-history__groups__recipes__line", 3, "displayTotalPricing", "line", "originTrace"]];
28831
28883
  }, template: function RecipesHistoryComponent_Template(rf, ctx) {
@@ -28862,7 +28914,7 @@
28862
28914
  }]
28863
28915
  }], function () { return [{ type: i0__namespace.ChangeDetectorRef }, { type: RecipesService }, { type: RecipeSelectionLogsService }, { type: BasketsService }, { type: AnalyticsService }]; }, null);
28864
28916
  })();
28865
- var templateObject_1$1, templateObject_2, templateObject_3;
28917
+ var templateObject_1$3, templateObject_2$2, templateObject_3$1;
28866
28918
 
28867
28919
  /**
28868
28920
  * this service is made to add class miam-not-printable to root DOM's elements
@@ -28952,7 +29004,7 @@
28952
29004
  var ctx_r4 = i0__namespace.ɵɵnextContext(2);
28953
29005
  i0__namespace.ɵɵclassProp("hidden", ctx_r4.showStoreLocator);
28954
29006
  i0__namespace.ɵɵadvance(1);
28955
- i0__namespace.ɵɵproperty("recipeId", ctx_r4.recipe == null ? null : ctx_r4.recipe.id)("displayItemsUnitaryPrice", true)("originTrace", ctx_r4.eventTrace);
29007
+ i0__namespace.ɵɵproperty("recipeId", ctx_r4.recipe == null ? null : ctx_r4.recipe.id)("displayItemsUnitaryPrice", true)("isStoreLocatorDisplayed", ctx_r4.showStoreLocator)("originTrace", ctx_r4.eventTrace);
28956
29008
  }
28957
29009
  }
28958
29010
  function RecipeModalComponent_ng_miam_modal_0_ng_miam_recipe_details_8_Template(rf, ctx) {
@@ -28987,7 +29039,7 @@
28987
29039
  i0__namespace.ɵɵpipe(3, "async");
28988
29040
  i0__namespace.ɵɵtemplate(4, RecipeModalComponent_ng_miam_modal_0_ng_miam_store_locator_link_4_Template, 1, 0, "ng-miam-store-locator-link", 3);
28989
29041
  i0__namespace.ɵɵpipe(5, "async");
28990
- i0__namespace.ɵɵtemplate(6, RecipeModalComponent_ng_miam_modal_0_div_6_Template, 2, 5, "div", 4);
29042
+ i0__namespace.ɵɵtemplate(6, RecipeModalComponent_ng_miam_modal_0_div_6_Template, 2, 6, "div", 4);
28991
29043
  i0__namespace.ɵɵpipe(7, "async");
28992
29044
  i0__namespace.ɵɵtemplate(8, RecipeModalComponent_ng_miam_modal_0_ng_miam_recipe_details_8_Template, 2, 9, "ng-miam-recipe-details", 5);
28993
29045
  i0__namespace.ɵɵpipe(9, "async");
@@ -29097,7 +29149,12 @@
29097
29149
  _this.storeLocatorService.closeModalOnSelected = false;
29098
29150
  _this.hide();
29099
29151
  }
29100
- _this.cdr.detectChanges();
29152
+ else {
29153
+ if (!_this.showStoreLocator) {
29154
+ _this.storeLocatorService.closeModalOnSelected = false; // reset variable even if storeLocator was closed early
29155
+ }
29156
+ _this.cdr.detectChanges(); // hide does a detectChanges so we avoid a double change
29157
+ }
29101
29158
  }), this.productAdditionService.isModalOpen$.subscribe(function (isOpened) {
29102
29159
  _this.productAdditionModalOpened = isOpened;
29103
29160
  _this.cdr.detectChanges();
@@ -29118,9 +29175,10 @@
29118
29175
  _this.registerTrace(result === null || result === void 0 ? void 0 : result.eventTrace);
29119
29176
  if (!(result === null || result === void 0 ? void 0 : result.recipe)) {
29120
29177
  if (result === null || result === void 0 ? void 0 : result.force) {
29121
- _this.subscriptions.push(_this.posService.posWasInitialized().pipe(operators.take(1)).subscribe(function (wasInitialized) {
29122
- if (!wasInitialized) {
29123
- _this.storeLocatorService.storeLocatorOpened$.next(true);
29178
+ _this.subscriptions.push(_this.posService.isPosValid().pipe(operators.take(1)).subscribe(function (wasInitialized) {
29179
+ // if no pos and the modal wasn't opened from the pricing, open the store-locator
29180
+ if (!wasInitialized && !_this.storeLocatorService.closeModalOnSelected) {
29181
+ _this.storeLocatorService.openStoreLocator();
29124
29182
  }
29125
29183
  _this.previewMode.next(result.previewMode);
29126
29184
  _this.previewAllowed = result.previewAllowed;
@@ -29133,7 +29191,7 @@
29133
29191
  else {
29134
29192
  _this.show = false;
29135
29193
  _this._storeLocatorInit = false;
29136
- _this.storeLocatorService.storeLocatorOpened$.next(false);
29194
+ _this.storeLocatorService.closeStoreLocator();
29137
29195
  _this.cdr.detectChanges();
29138
29196
  }
29139
29197
  }
@@ -29180,7 +29238,7 @@
29180
29238
  this.productReplacementService.changeModalState(false);
29181
29239
  this.basketChangedSinceOpened = false;
29182
29240
  this._storeLocatorInit = false;
29183
- this.storeLocatorService.storeLocatorOpened$.next(false);
29241
+ this.storeLocatorService.closeStoreLocator();
29184
29242
  this.cdr.detectChanges();
29185
29243
  }
29186
29244
  };
@@ -29233,9 +29291,9 @@
29233
29291
  i18n_0 = MSG_EXTERNAL_171150506213829263$$LIB__WEB_COMPONENTS_RECIPE_MODAL_RECIPE_MODAL_COMPONENT_TS_1;
29234
29292
  }
29235
29293
  else {
29236
- i18n_0 = $localize(templateObject_1 || (templateObject_1 = __makeTemplateObject([":\u241Fd0309cdf7a6522949c4f145db5e71f70c9d9d66c\u241F171150506213829263:Mes repas"], [":\u241Fd0309cdf7a6522949c4f145db5e71f70c9d9d66c\u241F171150506213829263:Mes repas"])));
29294
+ i18n_0 = $localize(templateObject_1$2 || (templateObject_1$2 = __makeTemplateObject([":\u241Fd0309cdf7a6522949c4f145db5e71f70c9d9d66c\u241F171150506213829263:Mes repas"], [":\u241Fd0309cdf7a6522949c4f145db5e71f70c9d9d66c\u241F171150506213829263:Mes repas"])));
29237
29295
  }
29238
- return [["title", i18n_0, "modalStyle", "right", 3, "display", "noHeaderMode", "confirmButtonDisabled", "cancelButtonDisabled", "cancelButtonIsLoading", "placeOrderFooter", "totalPrice", "miam-recipe-modal__basket-preview-modal", "ngClass", "displayChange", "close", "cancel", "confirm", 4, "ngIf"], ["modalStyle", "right", 3, "noHeaderMode", "display", "cancelButtonDisabled", "cancelButtonIsLoading", "close", 4, "ngIf"], ["title", i18n_0, "modalStyle", "right", 3, "display", "noHeaderMode", "confirmButtonDisabled", "cancelButtonDisabled", "cancelButtonIsLoading", "placeOrderFooter", "totalPrice", "ngClass", "displayChange", "close", "cancel", "confirm"], ["header", "", 4, "ngIf"], ["class", "miam-wrapper-preview", 3, "hidden", 4, "ngIf"], [3, "recipeId", "guestNumber", "previewAllowed", "originTrace", "stepsOnLeftSide", "moreRecipesImageURL", "pricingGuestsText", "displayGuests", "helpButtonAllowed", "recipeAdded", "recipeError", "closeDetails", 4, "ngIf"], [3, "originTrace", 4, "ngIf"], ["header", ""], [1, "miam-wrapper-preview"], [3, "recipeId", "displayItemsUnitaryPrice", "originTrace"], [3, "recipeId", "guestNumber", "previewAllowed", "originTrace", "stepsOnLeftSide", "moreRecipesImageURL", "pricingGuestsText", "displayGuests", "helpButtonAllowed", "recipeAdded", "recipeError", "closeDetails"], ["details", ""], [3, "originTrace"], ["modalStyle", "right", 3, "noHeaderMode", "display", "cancelButtonDisabled", "cancelButtonIsLoading", "close"], [3, "addProductMode", "originTrace", "selected"], [3, "basketEntry", "loadOnSelect", "originTrace", "selected"]];
29296
+ return [["title", i18n_0, "modalStyle", "right", 3, "display", "noHeaderMode", "confirmButtonDisabled", "cancelButtonDisabled", "cancelButtonIsLoading", "placeOrderFooter", "totalPrice", "miam-recipe-modal__basket-preview-modal", "ngClass", "displayChange", "close", "cancel", "confirm", 4, "ngIf"], ["modalStyle", "right", 3, "noHeaderMode", "display", "cancelButtonDisabled", "cancelButtonIsLoading", "close", 4, "ngIf"], ["title", i18n_0, "modalStyle", "right", 3, "display", "noHeaderMode", "confirmButtonDisabled", "cancelButtonDisabled", "cancelButtonIsLoading", "placeOrderFooter", "totalPrice", "ngClass", "displayChange", "close", "cancel", "confirm"], ["header", "", 4, "ngIf"], ["class", "miam-wrapper-preview", 3, "hidden", 4, "ngIf"], [3, "recipeId", "guestNumber", "previewAllowed", "originTrace", "stepsOnLeftSide", "moreRecipesImageURL", "pricingGuestsText", "displayGuests", "helpButtonAllowed", "recipeAdded", "recipeError", "closeDetails", 4, "ngIf"], [3, "originTrace", 4, "ngIf"], ["header", ""], [1, "miam-wrapper-preview"], [3, "recipeId", "displayItemsUnitaryPrice", "isStoreLocatorDisplayed", "originTrace"], [3, "recipeId", "guestNumber", "previewAllowed", "originTrace", "stepsOnLeftSide", "moreRecipesImageURL", "pricingGuestsText", "displayGuests", "helpButtonAllowed", "recipeAdded", "recipeError", "closeDetails"], ["details", ""], [3, "originTrace"], ["modalStyle", "right", 3, "noHeaderMode", "display", "cancelButtonDisabled", "cancelButtonIsLoading", "close"], [3, "addProductMode", "originTrace", "selected"], [3, "basketEntry", "loadOnSelect", "originTrace", "selected"]];
29239
29297
  }, template: function RecipeModalComponent_Template(rf, ctx) {
29240
29298
  if (rf & 1) {
29241
29299
  i0__namespace.ɵɵtemplate(0, RecipeModalComponent_ng_miam_modal_0_Template, 11, 28, "ng-miam-modal", 0);
@@ -29270,7 +29328,7 @@
29270
29328
  type: i0.Output
29271
29329
  }] });
29272
29330
  })();
29273
- var templateObject_1;
29331
+ var templateObject_1$2;
29274
29332
 
29275
29333
  function ToasterStackComponent_ng_miam_toaster_1_Template(rf, ctx) {
29276
29334
  if (rf & 1) {
@@ -29334,13 +29392,402 @@
29334
29392
  }], function () { return [{ type: i0__namespace.ChangeDetectorRef }, { type: ToasterService }]; }, null);
29335
29393
  })();
29336
29394
 
29395
+ function NoSupplierOnboardingComponent_span_10_Template(rf, ctx) {
29396
+ if (rf & 1) {
29397
+ i0__namespace.ɵɵelementStart(0, "span", 19);
29398
+ i0__namespace.ɵɵi18n(1, 20);
29399
+ i0__namespace.ɵɵelementEnd();
29400
+ }
29401
+ }
29402
+ function NoSupplierOnboardingComponent_span_11_Template(rf, ctx) {
29403
+ if (rf & 1) {
29404
+ i0__namespace.ɵɵelementStart(0, "span", 21);
29405
+ i0__namespace.ɵɵelementStart(1, "span", 22);
29406
+ i0__namespace.ɵɵi18n(2, 23);
29407
+ i0__namespace.ɵɵelementEnd();
29408
+ i0__namespace.ɵɵelementStart(3, "span");
29409
+ i0__namespace.ɵɵi18n(4, 24);
29410
+ i0__namespace.ɵɵelementEnd();
29411
+ i0__namespace.ɵɵelementStart(5, "span", 22);
29412
+ i0__namespace.ɵɵi18n(6, 25);
29413
+ i0__namespace.ɵɵelementEnd();
29414
+ i0__namespace.ɵɵelementEnd();
29415
+ }
29416
+ }
29417
+ function NoSupplierOnboardingComponent_img_12_Template(rf, ctx) {
29418
+ if (rf & 1) {
29419
+ i0__namespace.ɵɵelement(0, "img", 26);
29420
+ }
29421
+ }
29422
+ function NoSupplierOnboardingComponent_span_13_Template(rf, ctx) {
29423
+ if (rf & 1) {
29424
+ i0__namespace.ɵɵelementStart(0, "span", 19);
29425
+ i0__namespace.ɵɵi18n(1, 27);
29426
+ i0__namespace.ɵɵelementEnd();
29427
+ }
29428
+ }
29429
+ function NoSupplierOnboardingComponent_span_14_Template(rf, ctx) {
29430
+ if (rf & 1) {
29431
+ i0__namespace.ɵɵelementStart(0, "span", 21);
29432
+ i0__namespace.ɵɵi18n(1, 28);
29433
+ i0__namespace.ɵɵelementEnd();
29434
+ }
29435
+ }
29436
+ function NoSupplierOnboardingComponent_span_15_Template(rf, ctx) {
29437
+ if (rf & 1) {
29438
+ i0__namespace.ɵɵelementStart(0, "span", 19);
29439
+ i0__namespace.ɵɵi18n(1, 29);
29440
+ i0__namespace.ɵɵelementEnd();
29441
+ }
29442
+ }
29443
+ function NoSupplierOnboardingComponent_span_16_Template(rf, ctx) {
29444
+ if (rf & 1) {
29445
+ i0__namespace.ɵɵelementStart(0, "span", 21);
29446
+ i0__namespace.ɵɵi18n(1, 30);
29447
+ i0__namespace.ɵɵelementEnd();
29448
+ }
29449
+ }
29450
+ function NoSupplierOnboardingComponent_span_17_Template(rf, ctx) {
29451
+ if (rf & 1) {
29452
+ i0__namespace.ɵɵelementStart(0, "span", 19);
29453
+ i0__namespace.ɵɵi18n(1, 31);
29454
+ i0__namespace.ɵɵelementEnd();
29455
+ }
29456
+ }
29457
+ function NoSupplierOnboardingComponent_span_18_Template(rf, ctx) {
29458
+ if (rf & 1) {
29459
+ i0__namespace.ɵɵelementStart(0, "span", 21);
29460
+ i0__namespace.ɵɵi18n(1, 32);
29461
+ i0__namespace.ɵɵelementEnd();
29462
+ }
29463
+ }
29464
+ function NoSupplierOnboardingComponent_button_24_Template(rf, ctx) {
29465
+ if (rf & 1) {
29466
+ var _r12_1 = i0__namespace.ɵɵgetCurrentView();
29467
+ i0__namespace.ɵɵelementStart(0, "button", 33);
29468
+ i0__namespace.ɵɵlistener("click", function NoSupplierOnboardingComponent_button_24_Template_button_click_0_listener() { i0__namespace.ɵɵrestoreView(_r12_1); var ctx_r11 = i0__namespace.ɵɵnextContext(); return ctx_r11.previousStep(); });
29469
+ i0__namespace.ɵɵelement(1, "img", 34);
29470
+ i0__namespace.ɵɵelementEnd();
29471
+ }
29472
+ }
29473
+ function NoSupplierOnboardingComponent_button_25_Template(rf, ctx) {
29474
+ if (rf & 1) {
29475
+ var _r14_1 = i0__namespace.ɵɵgetCurrentView();
29476
+ i0__namespace.ɵɵelementStart(0, "button", 35);
29477
+ i0__namespace.ɵɵlistener("click", function NoSupplierOnboardingComponent_button_25_Template_button_click_0_listener() { i0__namespace.ɵɵrestoreView(_r14_1); var ctx_r13 = i0__namespace.ɵɵnextContext(); return ctx_r13.nextStep(); });
29478
+ i0__namespace.ɵɵelement(1, "img", 36);
29479
+ i0__namespace.ɵɵelementEnd();
29480
+ }
29481
+ }
29482
+ var NoSupplierOnboardingComponent = /** @class */ (function () {
29483
+ function NoSupplierOnboardingComponent(storeLocatoreService, cdr) {
29484
+ this.storeLocatoreService = storeLocatoreService;
29485
+ this.cdr = cdr;
29486
+ this.display = false;
29487
+ this.step = 1;
29488
+ this.pictures = [
29489
+ 'https://storage.googleapis.com/assets.miam.tech/generic/images/8.7/noSupplierOnboardingStep1.png',
29490
+ 'https://storage.googleapis.com/assets.miam.tech/generic/images/8.7/noSupplierOnboardingStep2.png',
29491
+ 'https://storage.googleapis.com/assets.miam.tech/generic/images/8.7/noSupplierOnboardingStep3.png',
29492
+ 'https://storage.googleapis.com/assets.miam.tech/generic/images/8.7/noSupplierOnboardingStep4.png'
29493
+ ];
29494
+ this.subscriptions = [];
29495
+ }
29496
+ NoSupplierOnboardingComponent.prototype.ngOnInit = function () {
29497
+ var _this = this;
29498
+ this.subscriptions.push(this.storeLocatoreService.showNoSupplierOnboarding.subscribe(function (show) {
29499
+ _this.display = show;
29500
+ _this.cdr.detectChanges();
29501
+ }));
29502
+ };
29503
+ NoSupplierOnboardingComponent.prototype.ngOnDestroy = function () {
29504
+ this.subscriptions.forEach(function (s) { return s.unsubscribe(); });
29505
+ };
29506
+ NoSupplierOnboardingComponent.prototype.onConfirm = function () {
29507
+ this.storeLocatoreService.showNoSupplierOnboarding.next(false);
29508
+ };
29509
+ NoSupplierOnboardingComponent.prototype.previousStep = function () {
29510
+ this.step = Math.max(this.step - 1, 1);
29511
+ this.cdr.detectChanges();
29512
+ };
29513
+ NoSupplierOnboardingComponent.prototype.nextStep = function () {
29514
+ this.step = Math.min(this.step + 1, 4);
29515
+ this.cdr.detectChanges();
29516
+ };
29517
+ return NoSupplierOnboardingComponent;
29518
+ }());
29519
+ NoSupplierOnboardingComponent.ɵfac = function NoSupplierOnboardingComponent_Factory(t) { return new (t || NoSupplierOnboardingComponent)(i0__namespace.ɵɵdirectiveInject(StoreLocatorService), i0__namespace.ɵɵdirectiveInject(i0__namespace.ChangeDetectorRef)); };
29520
+ NoSupplierOnboardingComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: NoSupplierOnboardingComponent, selectors: [["ng-miam-no-supplier-onboarding"]], decls: 26, vars: 28, consts: function () {
29521
+ var i18n_0;
29522
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29523
+ var MSG_EXTERNAL_2816692981606991860$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS_1 = goog.getMsg("J'ai compris, je choisis un magasin !");
29524
+ i18n_0 = MSG_EXTERNAL_2816692981606991860$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS_1;
29525
+ }
29526
+ else {
29527
+ i18n_0 = $localize(templateObject_1$1 || (templateObject_1$1 = __makeTemplateObject([":\u241Fc4ad362fc9f0c9c22d1fd568d25aae97ee586a82\u241F2816692981606991860:J'ai compris, je choisis un magasin !"], [":\u241Fc4ad362fc9f0c9c22d1fd568d25aae97ee586a82\u241F2816692981606991860:J'ai compris, je choisis un magasin !"])));
29528
+ }
29529
+ var i18n_2;
29530
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29531
+ var MSG_EXTERNAL_1603121115579726702$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS_3 = goog.getMsg("NOUVEAU !");
29532
+ i18n_2 = MSG_EXTERNAL_1603121115579726702$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS_3;
29533
+ }
29534
+ else {
29535
+ i18n_2 = $localize(templateObject_2$1 || (templateObject_2$1 = __makeTemplateObject([":\u241Fc2443273b9a58e104cee8b97da0847f671e0bb19\u241F1603121115579726702:NOUVEAU !"], [":\u241Fc2443273b9a58e104cee8b97da0847f671e0bb19\u241F1603121115579726702:NOUVEAU !"])));
29536
+ }
29537
+ var i18n_4;
29538
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29539
+ var MSG_EXTERNAL_7092690753889758412$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__5 = goog.getMsg(" Nos recettes \u00E9voluent ! ");
29540
+ i18n_4 = MSG_EXTERNAL_7092690753889758412$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__5;
29541
+ }
29542
+ else {
29543
+ i18n_4 = $localize(templateObject_3 || (templateObject_3 = __makeTemplateObject([":\u241Fb07a5d39a9048c6a58c6d42808d744c0fdd8e46c\u241F7092690753889758412: Nos recettes \u00E9voluent ! "], [":\u241Fb07a5d39a9048c6a58c6d42808d744c0fdd8e46c\u241F7092690753889758412: Nos recettes \u00E9voluent ! "])));
29544
+ }
29545
+ var i18n_6;
29546
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29547
+ var MSG_EXTERNAL_5564097410576841229$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__7 = goog.getMsg("Commandez");
29548
+ i18n_6 = MSG_EXTERNAL_5564097410576841229$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__7;
29549
+ }
29550
+ else {
29551
+ i18n_6 = $localize(templateObject_4 || (templateObject_4 = __makeTemplateObject([":\u241Fd0761c4c3712e219f2ff2fbeab7f37f7b95926bc\u241F5564097410576841229:Commandez"], [":\u241Fd0761c4c3712e219f2ff2fbeab7f37f7b95926bc\u241F5564097410576841229:Commandez"])));
29552
+ }
29553
+ var i18n_8;
29554
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29555
+ var MSG_EXTERNAL_5871179754542290449$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__9 = goog.getMsg("d\u00E8s \u00E0 pr\u00E9sent les produits pour r\u00E9aliser nos recettes les plus populaires en cliquant sur le ");
29556
+ i18n_8 = MSG_EXTERNAL_5871179754542290449$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__9;
29557
+ }
29558
+ else {
29559
+ i18n_8 = $localize(templateObject_5 || (templateObject_5 = __makeTemplateObject([":\u241F0c5c49d35bdf0cf1bd425d50ef169f0b55d5bf17\u241F5871179754542290449:d\u00E8s \u00E0 pr\u00E9sent les produits pour r\u00E9aliser nos recettes les plus populaires en cliquant sur le "], [":\u241F0c5c49d35bdf0cf1bd425d50ef169f0b55d5bf17\u241F5871179754542290449:d\u00E8s \u00E0 pr\u00E9sent les produits pour r\u00E9aliser nos recettes les plus populaires en cliquant sur le "])));
29560
+ }
29561
+ var i18n_10;
29562
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29563
+ var MSG_EXTERNAL_9133667957593364481$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__11 = goog.getMsg("bouton :");
29564
+ i18n_10 = MSG_EXTERNAL_9133667957593364481$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__11;
29565
+ }
29566
+ else {
29567
+ i18n_10 = $localize(templateObject_6 || (templateObject_6 = __makeTemplateObject([":\u241Fc94e737b14e96e79cbf45f9f290387f5116e0a9f\u241F9133667957593364481:bouton :"], [":\u241Fc94e737b14e96e79cbf45f9f290387f5116e0a9f\u241F9133667957593364481:bouton :"])));
29568
+ }
29569
+ var i18n_12;
29570
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29571
+ var MSG_EXTERNAL_7245065393474850100$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__13 = goog.getMsg(" Choisissez un magasin ");
29572
+ i18n_12 = MSG_EXTERNAL_7245065393474850100$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__13;
29573
+ }
29574
+ else {
29575
+ i18n_12 = $localize(templateObject_7 || (templateObject_7 = __makeTemplateObject([":\u241F37a6f3a3c8f98dcbb08e05adf07f7e9cdbb8f7c0\u241F7245065393474850100: Choisissez un magasin "], [":\u241F37a6f3a3c8f98dcbb08e05adf07f7e9cdbb8f7c0\u241F7245065393474850100: Choisissez un magasin "])));
29576
+ }
29577
+ var i18n_14;
29578
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29579
+ var MSG_EXTERNAL_4355113013311350506$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__15 = goog.getMsg(" S\u00E9lectionnez un magasin parmi les enseignes participantes et disponibles proche de vous ");
29580
+ i18n_14 = MSG_EXTERNAL_4355113013311350506$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__15;
29581
+ }
29582
+ else {
29583
+ i18n_14 = $localize(templateObject_8 || (templateObject_8 = __makeTemplateObject([":\u241Fd85894a83b2bbb5017b10d88c0bb5f403c0c3475\u241F4355113013311350506: S\u00E9lectionnez un magasin parmi les enseignes participantes et disponibles proche de vous "], [":\u241Fd85894a83b2bbb5017b10d88c0bb5f403c0c3475\u241F4355113013311350506: S\u00E9lectionnez un magasin parmi les enseignes participantes et disponibles proche de vous "])));
29584
+ }
29585
+ var i18n_16;
29586
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29587
+ var MSG_EXTERNAL_1467011540921792116$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__17 = goog.getMsg(" Une recette, des produits ");
29588
+ i18n_16 = MSG_EXTERNAL_1467011540921792116$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__17;
29589
+ }
29590
+ else {
29591
+ i18n_16 = $localize(templateObject_9 || (templateObject_9 = __makeTemplateObject([":\u241F65885464cf4d7afd4902fe5c2a47e5956db9ff80\u241F1467011540921792116: Une recette, des produits "], [":\u241F65885464cf4d7afd4902fe5c2a47e5956db9ff80\u241F1467011540921792116: Une recette, des produits "])));
29592
+ }
29593
+ var i18n_18;
29594
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29595
+ var MSG_EXTERNAL_5086472943298816302$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__19 = goog.getMsg(" Ajoutez les produits de votre choix dans votre panier et ajustez les quantit\u00E9s. ");
29596
+ i18n_18 = MSG_EXTERNAL_5086472943298816302$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__19;
29597
+ }
29598
+ else {
29599
+ i18n_18 = $localize(templateObject_10 || (templateObject_10 = __makeTemplateObject([":\u241F375a7b05cf5e2aeb0d1492458220414e04b45633\u241F5086472943298816302: Ajoutez les produits de votre choix dans votre panier et ajustez les quantit\u00E9s. "], [":\u241F375a7b05cf5e2aeb0d1492458220414e04b45633\u241F5086472943298816302: Ajoutez les produits de votre choix dans votre panier et ajustez les quantit\u00E9s. "])));
29600
+ }
29601
+ var i18n_20;
29602
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29603
+ var MSG_EXTERNAL_1909477807174925261$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__21 = goog.getMsg(" Commande en 1 clic ");
29604
+ i18n_20 = MSG_EXTERNAL_1909477807174925261$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__21;
29605
+ }
29606
+ else {
29607
+ i18n_20 = $localize(templateObject_11 || (templateObject_11 = __makeTemplateObject([":\u241Fb088a78ffbfff3e8745b959e510ca57f54041a96\u241F1909477807174925261: Commande en 1 clic "], [":\u241Fb088a78ffbfff3e8745b959e510ca57f54041a96\u241F1909477807174925261: Commande en 1 clic "])));
29608
+ }
29609
+ var i18n_22;
29610
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29611
+ var MSG_EXTERNAL_3034721524441098149$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__23 = goog.getMsg(" Acc\u00E9dez \u00E0 votre panier et passez votre commande dans le magasin s\u00E9lectionn\u00E9. ");
29612
+ i18n_22 = MSG_EXTERNAL_3034721524441098149$$LIB__WEB_COMPONENTS_NO_SUPPLIER_ONBOARDING_NO_SUPPLIER_ONBOARDING_COMPONENT_TS__23;
29613
+ }
29614
+ else {
29615
+ i18n_22 = $localize(templateObject_12 || (templateObject_12 = __makeTemplateObject([":\u241F21f106b52a056618e02cbe6e46f923033841b836\u241F3034721524441098149: Acc\u00E9dez \u00E0 votre panier et passez votre commande dans le magasin s\u00E9lectionn\u00E9. "], [":\u241F21f106b52a056618e02cbe6e46f923033841b836\u241F3034721524441098149: Acc\u00E9dez \u00E0 votre panier et passez votre commande dans le magasin s\u00E9lectionn\u00E9. "])));
29616
+ }
29617
+ return [["modalStyle", "center", "confirmButtonText", i18n_0, 1, "miam-no-supplier-onboarding-modal", 3, "noHeaderMode", "display", "confirm", "close"], [1, "miam-no-supplier-onboarding"], [1, "miam-no-supplier-onboarding__header"], [1, "miam-no-supplier-onboarding__badge", "miam-ds-badge", "size-l"], i18n_2, [1, "miam-no-supplier-onboarding__close", "miam-ds-button", "square", "ghost", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/Cross_primary.svg", "alt", "modal close button"], [1, "miam-no-supplier-onboarding__body"], [1, "miam-no-supplier-onboarding__img", 3, "src"], ["class", "miam-no-supplier-onboarding__title miam-ds-text size-xl weight-xl", 4, "ngIf"], ["class", "miam-no-supplier-onboarding__text miam-ds-text size-s weight-m", 4, "ngIf"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/images/8.7/noSupplierOnboardingButton.png", "alt", "Illustration of button to click", "class", "miam-no-supplier-onboarding__fake-button", 4, "ngIf"], [1, "miam-no-supplier-onboarding__track"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/8.7/BulletPoint.svg", 1, "step1", 3, "alt"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/8.7/BulletPoint.svg", 1, "step2", 3, "alt"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/8.7/BulletPoint.svg", 1, "step3", 3, "alt"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/8.7/BulletPoint.svg", 1, "step4", 3, "alt"], ["class", "miam-ds-button primary ghost square miam-no-supplier-onboarding__previous", 3, "click", 4, "ngIf"], ["class", "miam-ds-button primary ghost square miam-no-supplier-onboarding__next", 3, "click", 4, "ngIf"], [1, "miam-no-supplier-onboarding__title", "miam-ds-text", "size-xl", "weight-xl"], i18n_4, [1, "miam-no-supplier-onboarding__text", "miam-ds-text", "size-s", "weight-m"], [1, "miam-no-supplier-onboarding__bold"], i18n_6, i18n_8, i18n_10, ["src", "https://storage.googleapis.com/assets.miam.tech/generic/images/8.7/noSupplierOnboardingButton.png", "alt", "Illustration of button to click", 1, "miam-no-supplier-onboarding__fake-button"], i18n_12, i18n_14, i18n_16, i18n_18, i18n_20, i18n_22, [1, "miam-ds-button", "primary", "ghost", "square", "miam-no-supplier-onboarding__previous", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/ArrowLeft_dark.svg", "alt", "previous step"], [1, "miam-ds-button", "primary", "ghost", "square", "miam-no-supplier-onboarding__next", 3, "click"], ["src", "https://storage.googleapis.com/assets.miam.tech/generic/icons/ArrowLeft_dark.svg", "alt", "next step"]];
29618
+ }, template: function NoSupplierOnboardingComponent_Template(rf, ctx) {
29619
+ if (rf & 1) {
29620
+ i0__namespace.ɵɵelementStart(0, "ng-miam-modal", 0);
29621
+ i0__namespace.ɵɵlistener("confirm", function NoSupplierOnboardingComponent_Template_ng_miam_modal_confirm_0_listener() { return ctx.onConfirm(); })("close", function NoSupplierOnboardingComponent_Template_ng_miam_modal_close_0_listener() { return ctx.onConfirm(); });
29622
+ i0__namespace.ɵɵelementStart(1, "div", 1);
29623
+ i0__namespace.ɵɵelementStart(2, "div", 2);
29624
+ i0__namespace.ɵɵelementStart(3, "span", 3);
29625
+ i0__namespace.ɵɵi18n(4, 4);
29626
+ i0__namespace.ɵɵelementEnd();
29627
+ i0__namespace.ɵɵelementStart(5, "button", 5);
29628
+ i0__namespace.ɵɵlistener("click", function NoSupplierOnboardingComponent_Template_button_click_5_listener() { return ctx.onConfirm(); });
29629
+ i0__namespace.ɵɵelement(6, "img", 6);
29630
+ i0__namespace.ɵɵelementEnd();
29631
+ i0__namespace.ɵɵelementEnd();
29632
+ i0__namespace.ɵɵelementStart(7, "div", 7);
29633
+ i0__namespace.ɵɵelementStart(8, "div");
29634
+ i0__namespace.ɵɵelement(9, "img", 8);
29635
+ i0__namespace.ɵɵtemplate(10, NoSupplierOnboardingComponent_span_10_Template, 2, 0, "span", 9);
29636
+ i0__namespace.ɵɵtemplate(11, NoSupplierOnboardingComponent_span_11_Template, 7, 0, "span", 10);
29637
+ i0__namespace.ɵɵtemplate(12, NoSupplierOnboardingComponent_img_12_Template, 1, 0, "img", 11);
29638
+ i0__namespace.ɵɵtemplate(13, NoSupplierOnboardingComponent_span_13_Template, 2, 0, "span", 9);
29639
+ i0__namespace.ɵɵtemplate(14, NoSupplierOnboardingComponent_span_14_Template, 2, 0, "span", 10);
29640
+ i0__namespace.ɵɵtemplate(15, NoSupplierOnboardingComponent_span_15_Template, 2, 0, "span", 9);
29641
+ i0__namespace.ɵɵtemplate(16, NoSupplierOnboardingComponent_span_16_Template, 2, 0, "span", 10);
29642
+ i0__namespace.ɵɵtemplate(17, NoSupplierOnboardingComponent_span_17_Template, 2, 0, "span", 9);
29643
+ i0__namespace.ɵɵtemplate(18, NoSupplierOnboardingComponent_span_18_Template, 2, 0, "span", 10);
29644
+ i0__namespace.ɵɵelementEnd();
29645
+ i0__namespace.ɵɵelementStart(19, "div", 12);
29646
+ i0__namespace.ɵɵelement(20, "img", 13);
29647
+ i0__namespace.ɵɵelement(21, "img", 14);
29648
+ i0__namespace.ɵɵelement(22, "img", 15);
29649
+ i0__namespace.ɵɵelement(23, "img", 16);
29650
+ i0__namespace.ɵɵelementEnd();
29651
+ i0__namespace.ɵɵelementEnd();
29652
+ i0__namespace.ɵɵtemplate(24, NoSupplierOnboardingComponent_button_24_Template, 2, 0, "button", 17);
29653
+ i0__namespace.ɵɵtemplate(25, NoSupplierOnboardingComponent_button_25_Template, 2, 0, "button", 18);
29654
+ i0__namespace.ɵɵelementEnd();
29655
+ i0__namespace.ɵɵelementEnd();
29656
+ }
29657
+ if (rf & 2) {
29658
+ i0__namespace.ɵɵproperty("noHeaderMode", true)("display", ctx.display);
29659
+ i0__namespace.ɵɵadvance(8);
29660
+ i0__namespace.ɵɵclassMap("miam-no-supplier-onboarding__content step" + ctx.step);
29661
+ i0__namespace.ɵɵadvance(1);
29662
+ i0__namespace.ɵɵproperty("src", ctx.pictures[ctx.step - 1], i0__namespace.ɵɵsanitizeUrl);
29663
+ i0__namespace.ɵɵadvance(1);
29664
+ i0__namespace.ɵɵproperty("ngIf", ctx.step === 1);
29665
+ i0__namespace.ɵɵadvance(1);
29666
+ i0__namespace.ɵɵproperty("ngIf", ctx.step === 1);
29667
+ i0__namespace.ɵɵadvance(1);
29668
+ i0__namespace.ɵɵproperty("ngIf", ctx.step === 1);
29669
+ i0__namespace.ɵɵadvance(1);
29670
+ i0__namespace.ɵɵproperty("ngIf", ctx.step === 2);
29671
+ i0__namespace.ɵɵadvance(1);
29672
+ i0__namespace.ɵɵproperty("ngIf", ctx.step === 2);
29673
+ i0__namespace.ɵɵadvance(1);
29674
+ i0__namespace.ɵɵproperty("ngIf", ctx.step === 3);
29675
+ i0__namespace.ɵɵadvance(1);
29676
+ i0__namespace.ɵɵproperty("ngIf", ctx.step === 3);
29677
+ i0__namespace.ɵɵadvance(1);
29678
+ i0__namespace.ɵɵproperty("ngIf", ctx.step === 4);
29679
+ i0__namespace.ɵɵadvance(1);
29680
+ i0__namespace.ɵɵproperty("ngIf", ctx.step === 4);
29681
+ i0__namespace.ɵɵadvance(2);
29682
+ i0__namespace.ɵɵclassMap(ctx.step === 1 ? "active" : "");
29683
+ i0__namespace.ɵɵproperty("alt", ctx.step === 1 ? "step 1" : "");
29684
+ i0__namespace.ɵɵadvance(1);
29685
+ i0__namespace.ɵɵclassMap(ctx.step === 2 ? "active" : "");
29686
+ i0__namespace.ɵɵproperty("alt", ctx.step === 2 ? "step 2" : "");
29687
+ i0__namespace.ɵɵadvance(1);
29688
+ i0__namespace.ɵɵclassMap(ctx.step === 3 ? "active" : "");
29689
+ i0__namespace.ɵɵproperty("alt", ctx.step === 3 ? "step 3" : "");
29690
+ i0__namespace.ɵɵadvance(1);
29691
+ i0__namespace.ɵɵclassMap(ctx.step === 4 ? "active" : "");
29692
+ i0__namespace.ɵɵproperty("alt", ctx.step === 4 ? "step 4" : "");
29693
+ i0__namespace.ɵɵadvance(1);
29694
+ i0__namespace.ɵɵproperty("ngIf", ctx.step > 1);
29695
+ i0__namespace.ɵɵadvance(1);
29696
+ i0__namespace.ɵɵproperty("ngIf", ctx.step < 4);
29697
+ }
29698
+ }, directives: [ModalComponent, i2__namespace$2.NgIf], styles: [".miam-no-supplier-onboarding-modal .miam-modal__container.center .miam-shadow-overlay{z-index:calc(var(--m-z-index-modal) + 1)}.miam-no-supplier-onboarding-modal .miam-modal__container.center .miam-modal{width:375px;min-width:375px;height:716px;z-index:calc(var(--m-z-index-modal) + 2);padding:0}.miam-no-supplier-onboarding-modal .miam-modal__container.center .miam-modal .miam-modal__content-container .miam-modal__interactions .miam-ds-button{width:100%;border-radius:0}@media (max-width:1023px){.miam-no-supplier-onboarding-modal .miam-modal__container.center .miam-modal .miam-modal__content-container .miam-modal__content{padding:0}.miam-no-supplier-onboarding-modal .miam-modal__container.center .miam-modal .miam-modal__content-container .miam-modal__interactions{justify-content:flex-end;padding:0}}@media (max-width:600px){.miam-no-supplier-onboarding-modal .miam-modal__container.center .miam-modal{min-width:320px;width:100vw;max-width:100vw;top:unset;bottom:0;transform:translateX(-50%)}}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding{display:flex;flex-direction:column;height:100%}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__header{display:flex;width:100%;box-sizing:border-box;justify-content:space-between;align-items:flex-start;margin-bottom:16px;padding:16px 16px 0}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__header .miam-no-supplier-onboarding__close{padding:4px}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body{display:flex;flex-direction:column;justify-content:space-between;align-items:center;flex:1}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__content{display:flex;flex-direction:column;justify-content:center;align-items:center;padding:0 16px 16px}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__content .miam-no-supplier-onboarding__img{width:343px;height:380px}@media (max-width:375px){.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__content .miam-no-supplier-onboarding__img{width:288px}}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__content .miam-no-supplier-onboarding__title{margin:16px 0}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__content .miam-no-supplier-onboarding__text{text-align:center}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__content .miam-no-supplier-onboarding__text span{display:inline;padding:0 4px 0 0}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__content .miam-no-supplier-onboarding__text .miam-no-supplier-onboarding__bold{font-weight:700}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__content .miam-no-supplier-onboarding__fake-button{margin-top:16px}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__track{display:flex;justify-content:space-between;width:60px;margin-bottom:16px}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__body .miam-no-supplier-onboarding__track img:not(.active){opacity:.2}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__next,.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__previous{position:absolute;top:230px;display:flex;width:48px;height:48px;justify-content:center;align-items:center;border-radius:1000px;box-shadow:0 4px 4px 0 rgba(0,0,0,.25)}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__next.miam-ds-button.primary.ghost,.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__previous.miam-ds-button.primary.ghost{background-color:#fff}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__previous{left:8px}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__next{right:8px}.miam-no-supplier-onboarding-modal .miam-no-supplier-onboarding .miam-no-supplier-onboarding__next img{transform:rotate(180deg)}"], encapsulation: 2, changeDetection: 0 });
29699
+ (function () {
29700
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(NoSupplierOnboardingComponent, [{
29701
+ type: i0.Component,
29702
+ args: [{
29703
+ selector: 'ng-miam-no-supplier-onboarding',
29704
+ templateUrl: './no-supplier-onboarding.component.html',
29705
+ styleUrls: ['./no-supplier-onboarding.component.scss'],
29706
+ encapsulation: i0.ViewEncapsulation.None,
29707
+ changeDetection: i0.ChangeDetectionStrategy.OnPush
29708
+ }]
29709
+ }], function () { return [{ type: StoreLocatorService }, { type: i0__namespace.ChangeDetectorRef }]; }, null);
29710
+ })();
29711
+ var templateObject_1$1, templateObject_2$1, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12;
29712
+
29713
+ var WarningStoreLocatorComponent = /** @class */ (function () {
29714
+ function WarningStoreLocatorComponent(storeLocatoreService, cdr) {
29715
+ this.storeLocatoreService = storeLocatoreService;
29716
+ this.cdr = cdr;
29717
+ this.display = false;
29718
+ this.subscriptions = [];
29719
+ }
29720
+ WarningStoreLocatorComponent.prototype.ngOnInit = function () {
29721
+ var _this = this;
29722
+ this.subscriptions.push(this.storeLocatoreService.showStoreLocatorWarning.subscribe(function (show) {
29723
+ _this.display = show;
29724
+ _this.cdr.detectChanges();
29725
+ }));
29726
+ };
29727
+ WarningStoreLocatorComponent.prototype.ngOnDestroy = function () {
29728
+ this.subscriptions.forEach(function (s) { return s.unsubscribe(); });
29729
+ };
29730
+ WarningStoreLocatorComponent.prototype.onConfirm = function () {
29731
+ this.storeLocatoreService.changePos();
29732
+ this.storeLocatoreService.showStoreLocatorWarning.next(false);
29733
+ };
29734
+ return WarningStoreLocatorComponent;
29735
+ }());
29736
+ WarningStoreLocatorComponent.ɵfac = function WarningStoreLocatorComponent_Factory(t) { return new (t || WarningStoreLocatorComponent)(i0__namespace.ɵɵdirectiveInject(StoreLocatorService), i0__namespace.ɵɵdirectiveInject(i0__namespace.ChangeDetectorRef)); };
29737
+ WarningStoreLocatorComponent.ɵcmp = i0__namespace.ɵɵdefineComponent({ type: WarningStoreLocatorComponent, selectors: [["ng-miam-warning-store-locator"]], decls: 3, vars: 2, consts: function () {
29738
+ var i18n_0;
29739
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29740
+ var MSG_EXTERNAL_3978328765105102624$$LIB__WEB_COMPONENTS_WARNING_STORE_LOCATOR_WARNING_STORE_LOCATOR_COMPONENT_TS_1 = goog.getMsg("Ok, compris !");
29741
+ i18n_0 = MSG_EXTERNAL_3978328765105102624$$LIB__WEB_COMPONENTS_WARNING_STORE_LOCATOR_WARNING_STORE_LOCATOR_COMPONENT_TS_1;
29742
+ }
29743
+ else {
29744
+ i18n_0 = $localize(templateObject_1 || (templateObject_1 = __makeTemplateObject([":\u241F63204a8ecd75c38c9ac2b4bd76d1b55d69720b15\u241F3978328765105102624:Ok, compris !"], [":\u241F63204a8ecd75c38c9ac2b4bd76d1b55d69720b15\u241F3978328765105102624:Ok, compris !"])));
29745
+ }
29746
+ var i18n_2;
29747
+ if (typeof ngI18nClosureMode !== "undefined" && ngI18nClosureMode) {
29748
+ var MSG_EXTERNAL_375270900922638068$$LIB__WEB_COMPONENTS_WARNING_STORE_LOCATOR_WARNING_STORE_LOCATOR_COMPONENT_TS_3 = goog.getMsg(" Si l'application CoursesU est install\u00E9e sur votre t\u00E9l\u00E9phone, il est pr\u00E9f\u00E9rable d'utiliser votre ordinateur pour commander les ingr\u00E9dients de vos recettes. ");
29749
+ i18n_2 = MSG_EXTERNAL_375270900922638068$$LIB__WEB_COMPONENTS_WARNING_STORE_LOCATOR_WARNING_STORE_LOCATOR_COMPONENT_TS_3;
29750
+ }
29751
+ else {
29752
+ i18n_2 = $localize(templateObject_2 || (templateObject_2 = __makeTemplateObject([":\u241Fa8112b11f26d29524e2a4d830ebada4f50f0e0ee\u241F375270900922638068: Si l'application CoursesU est install\u00E9e sur votre t\u00E9l\u00E9phone, il est pr\u00E9f\u00E9rable d'utiliser votre ordinateur pour commander les ingr\u00E9dients de vos recettes. "], [":\u241Fa8112b11f26d29524e2a4d830ebada4f50f0e0ee\u241F375270900922638068: Si l'application CoursesU est install\u00E9e sur votre t\u00E9l\u00E9phone, il est pr\u00E9f\u00E9rable d'utiliser votre ordinateur pour commander les ingr\u00E9dients de vos recettes. "])));
29753
+ }
29754
+ return [["modalStyle", "center", "confirmButtonText", i18n_0, 1, "miam-warning-store-locator", 3, "noHeaderMode", "display", "confirm", "close"], [1, "miam-warning-store-locator__content", "miam-ds-text", "size-s", "weight-m"], i18n_2];
29755
+ }, template: function WarningStoreLocatorComponent_Template(rf, ctx) {
29756
+ if (rf & 1) {
29757
+ i0__namespace.ɵɵelementStart(0, "ng-miam-modal", 0);
29758
+ i0__namespace.ɵɵlistener("confirm", function WarningStoreLocatorComponent_Template_ng_miam_modal_confirm_0_listener() { return ctx.onConfirm(); })("close", function WarningStoreLocatorComponent_Template_ng_miam_modal_close_0_listener() { return ctx.onConfirm(); });
29759
+ i0__namespace.ɵɵelementStart(1, "span", 1);
29760
+ i0__namespace.ɵɵi18n(2, 2);
29761
+ i0__namespace.ɵɵelementEnd();
29762
+ i0__namespace.ɵɵelementEnd();
29763
+ }
29764
+ if (rf & 2) {
29765
+ i0__namespace.ɵɵproperty("noHeaderMode", true)("display", ctx.display);
29766
+ }
29767
+ }, directives: [ModalComponent], styles: [".miam-warning-store-locator .miam-modal__container .miam-shadow-overlay{z-index:calc(var(--m-z-index-modal) + 1)}.miam-warning-store-locator .miam-modal__container .miam-modal{z-index:calc(var(--m-z-index-modal) + 2)}.miam-warning-store-locator .miam-warning-store-locator__content{text-align:center}"], encapsulation: 2, changeDetection: 0 });
29768
+ (function () {
29769
+ (typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(WarningStoreLocatorComponent, [{
29770
+ type: i0.Component,
29771
+ args: [{
29772
+ selector: 'ng-miam-warning-store-locator',
29773
+ templateUrl: './warning-store-locator.component.html',
29774
+ styleUrls: ['./warning-store-locator.component.scss'],
29775
+ encapsulation: i0.ViewEncapsulation.None,
29776
+ changeDetection: i0.ChangeDetectionStrategy.OnPush
29777
+ }]
29778
+ }], function () { return [{ type: StoreLocatorService }, { type: i0__namespace.ChangeDetectorRef }]; }, null);
29779
+ })();
29780
+ var templateObject_1, templateObject_2;
29781
+
29337
29782
  var WEB_COMPONENTS = [
29338
29783
  RecipeModalComponent,
29339
29784
  RecipesHistoryComponent,
29340
29785
  RecipeHelperComponent,
29341
29786
  RecipeTagsComponent,
29342
29787
  ToasterStackComponent,
29343
- BasketTransferModalComponent
29788
+ BasketTransferModalComponent,
29789
+ WarningStoreLocatorComponent,
29790
+ NoSupplierOnboardingComponent
29344
29791
  ];
29345
29792
  // Tag names as imported in client application
29346
29793
  // Warning : do not use caps, use dashed case only
@@ -29350,7 +29797,9 @@
29350
29797
  'recipe-helper',
29351
29798
  'recipe-tags',
29352
29799
  'toaster-stack',
29353
- 'basket-transfer-modal'
29800
+ 'basket-transfer-modal',
29801
+ 'warning-store-locator',
29802
+ 'no-supplier-onboarding'
29354
29803
  ];
29355
29804
  var WEBC_MODULES = [
29356
29805
  BasketPreviewModule,
@@ -29392,7 +29841,9 @@
29392
29841
  RecipeHelperComponent,
29393
29842
  RecipeTagsComponent,
29394
29843
  ToasterStackComponent,
29395
- BasketTransferModalComponent], imports: [i2$3.CommonModule,
29844
+ BasketTransferModalComponent,
29845
+ WarningStoreLocatorComponent,
29846
+ NoSupplierOnboardingComponent], imports: [i2$3.CommonModule,
29396
29847
  i3.FormsModule,
29397
29848
  i3.ReactiveFormsModule,
29398
29849
  ComponentsModule,
@@ -29418,7 +29869,9 @@
29418
29869
  RecipeHelperComponent,
29419
29870
  RecipeTagsComponent,
29420
29871
  ToasterStackComponent,
29421
- BasketTransferModalComponent] });
29872
+ BasketTransferModalComponent,
29873
+ WarningStoreLocatorComponent,
29874
+ NoSupplierOnboardingComponent] });
29422
29875
  })();
29423
29876
  (function () {
29424
29877
  (typeof ngDevMode === "undefined" || ngDevMode) && i0__namespace.ɵsetClassMetadata(WebComponentsModule, [{
@@ -29454,46 +29907,21 @@
29454
29907
  }
29455
29908
  // Inject RecipeDetailsModal component dynamically when lib starts
29456
29909
  NgMiamModule.prototype.injectModals = function () {
29457
- this.injectDetailsModal();
29458
- this.injectHelperModal();
29459
- this.injectToasterStackModal();
29460
- this.injectBasketTransferModal();
29461
- };
29462
- NgMiamModule.prototype.injectDetailsModal = function () {
29910
+ this.injectModal(RecipeModalComponent);
29911
+ this.injectModal(RecipeHelperComponent);
29912
+ this.injectModal(ToasterStackComponent);
29913
+ this.injectModal(BasketTransferModalComponent);
29914
+ this.injectModal(WarningStoreLocatorComponent);
29915
+ this.injectModal(NoSupplierOnboardingComponent);
29916
+ };
29917
+ NgMiamModule.prototype.injectModal = function (elementClass) {
29463
29918
  // Instantiate RecipeDetailsModalComponent & attach it to root view ref
29464
- var factoryRecipeModal = this.factoryResolver.resolveComponentFactory(RecipeModalComponent);
29465
- var componentRefRecipeModal = factoryRecipeModal.create(this.injector);
29466
- this.appRef.attachView(componentRefRecipeModal.hostView);
29467
- // Append corresponding elements to DOM
29468
- var rootDomElemRecipeModal = componentRefRecipeModal.hostView.rootNodes[0];
29469
- document.body.appendChild(rootDomElemRecipeModal);
29470
- };
29471
- NgMiamModule.prototype.injectHelperModal = function () {
29472
- // Instantiate RecipeHelperComponent & attach it to root view ref
29473
- var factoryHelper = this.factoryResolver.resolveComponentFactory(RecipeHelperComponent);
29474
- var componentRefHelper = factoryHelper.create(this.injector);
29475
- this.appRef.attachView(componentRefHelper.hostView);
29476
- // Append corresponding elements to DOM
29477
- var rootDomElemHelper = componentRefHelper.hostView.rootNodes[0];
29478
- document.body.appendChild(rootDomElemHelper);
29479
- };
29480
- NgMiamModule.prototype.injectToasterStackModal = function () {
29481
- // Instantiate ToasterStackComponent & attach it to root view ref
29482
- var factoryToasterStack = this.factoryResolver.resolveComponentFactory(ToasterStackComponent);
29483
- var componentRefToasterStack = factoryToasterStack.create(this.injector);
29484
- this.appRef.attachView(componentRefToasterStack.hostView);
29485
- // Append corresponding elements to DOM
29486
- var rootDomElemToasterStack = componentRefToasterStack.hostView.rootNodes[0];
29487
- document.body.appendChild(rootDomElemToasterStack);
29488
- };
29489
- NgMiamModule.prototype.injectBasketTransferModal = function () {
29490
- // Instantiate BasketTransferModalComponent & attach it to root view ref
29491
- var factoryBasketTransfer = this.factoryResolver.resolveComponentFactory(BasketTransferModalComponent);
29492
- var componentRefBasketTransfer = factoryBasketTransfer.create(this.injector);
29493
- this.appRef.attachView(componentRefBasketTransfer.hostView);
29919
+ var factoryModal = this.factoryResolver.resolveComponentFactory(elementClass);
29920
+ var componentRef = factoryModal.create(this.injector);
29921
+ this.appRef.attachView(componentRef.hostView);
29494
29922
  // Append corresponding elements to DOM
29495
- var rootDomElemBasketTransfer = componentRefBasketTransfer.hostView.rootNodes[0];
29496
- document.body.appendChild(rootDomElemBasketTransfer);
29923
+ var rootDomElem = componentRef.hostView.rootNodes[0];
29924
+ document.body.appendChild(rootDomElem);
29497
29925
  };
29498
29926
  return NgMiamModule;
29499
29927
  }());
@@ -29637,6 +30065,7 @@
29637
30065
  exports.ModalComponent = ModalComponent;
29638
30066
  exports.NgMiamModule = NgMiamModule;
29639
30067
  exports.NoPosSelectedComponent = NoPosSelectedComponent;
30068
+ exports.NoSupplierOnboardingComponent = NoSupplierOnboardingComponent;
29640
30069
  exports.Package = Package;
29641
30070
  exports.PackageService = PackageService;
29642
30071
  exports.PointOfSale = PointOfSale;
@@ -29728,6 +30157,7 @@
29728
30157
  exports.UserService = UserService;
29729
30158
  exports.WEB_COMPONENTS = WEB_COMPONENTS;
29730
30159
  exports.WEB_COMPONENTS_NAMES = WEB_COMPONENTS_NAMES;
30160
+ exports.WarningStoreLocatorComponent = WarningStoreLocatorComponent;
29731
30161
  exports.WebComponentsModule = WebComponentsModule;
29732
30162
 
29733
30163
  Object.defineProperty(exports, '__esModule', { value: true });