@yoobic/yobi 8.1.0-154 → 8.1.0-155

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.
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const yooIonSlides_entry = require('./yoo-ion-slides-823c9857.js');
3
+ const yooIonSlides_entry = require('./yoo-ion-slides-1df9388d.js');
4
4
  require('./index-19d6d7b7.js');
5
5
  require('./index-469352c4.js');
6
6
  require('./lodash-597bda6d.js');
@@ -145,8 +145,9 @@ const YooGridComponent = class {
145
145
  this.iconDisplayNext = 'grid-view';
146
146
  this.searchText = '';
147
147
  this.extraFetchParams = {};
148
- this.itemsSliding = [];
149
- this.itemOptions = [];
148
+ this.itemsSliding = {};
149
+ this.itemOptions = {};
150
+ this.blockUnhoveer = {};
150
151
  this.horizontalSlidesAnim = new index$1.HorizontalSlidesAnimation();
151
152
  this.maxPageCount = 0;
152
153
  this.itemList = [];
@@ -160,7 +161,6 @@ const YooGridComponent = class {
160
161
  freeMode: this.slidesFreeMode
161
162
  };
162
163
  this.areItemsDisabled = false;
163
- this.blockUnhoveer = [];
164
164
  this.isSearchBarHidden = false;
165
165
  this.columnHeaderElements = [];
166
166
  this.leftContainers = [];
@@ -424,13 +424,11 @@ const YooGridComponent = class {
424
424
  this.setCurrentPage(0);
425
425
  }
426
426
  async closeItemsSliding() {
427
- if (this.itemsSliding) {
428
- this.itemsSliding.forEach((itemSliding) => {
429
- if (itemSliding) {
430
- itemSliding.close();
431
- }
432
- });
433
- }
427
+ var _a;
428
+ (_a = Object.keys(this.itemsSliding)) === null || _a === void 0 ? void 0 : _a.forEach((id) => {
429
+ var _a;
430
+ (_a = this.itemsSliding[id]) === null || _a === void 0 ? void 0 : _a.close();
431
+ });
434
432
  }
435
433
  async resetSearchText() {
436
434
  this.searchText = '';
@@ -721,11 +719,11 @@ const YooGridComponent = class {
721
719
  * we insert/remove item from the list
722
720
  */
723
721
  updateItemsSliding() {
724
- if (this.itemsSliding && this.updateItemsSlidingOnUpdate) {
725
- this.itemsSliding.forEach((itemSliding) => {
726
- if (itemSliding) {
727
- itemSliding.updateOptions();
728
- }
722
+ const itemsSlidingIds = Object.keys(this.itemsSliding);
723
+ if (itemsSlidingIds && this.updateItemsSlidingOnUpdate) {
724
+ itemsSlidingIds.forEach((id) => {
725
+ var _a;
726
+ (_a = this.itemsSliding[id]) === null || _a === void 0 ? void 0 : _a.updateOptions();
729
727
  });
730
728
  this.updateItemsSlidingOnUpdate = false;
731
729
  }
@@ -1787,9 +1785,9 @@ const YooGridComponent = class {
1787
1785
  this.flyToPosition(selectedPosition, FOCUS_MAP_ZOOM);
1788
1786
  }
1789
1787
  }
1790
- async onItemSlidingDrag(item, index) {
1791
- if (this.itemsSliding[index]) {
1792
- const percent = await this.itemsSliding[index].getSlidingRatio();
1788
+ async onItemSlidingDrag(item, itemSlidingId) {
1789
+ if (this.itemsSliding[itemSlidingId]) {
1790
+ const percent = await this.itemsSliding[itemSlidingId].getSlidingRatio();
1793
1791
  if (percent >= 1) {
1794
1792
  this.swipeEnd.emit(item);
1795
1793
  }
@@ -2759,19 +2757,22 @@ const YooGridComponent = class {
2759
2757
  const slidingType = index$1.isWeb(this.host) ? itemSliding_interface.ItemSlidingType.hover : itemSliding_interface.ItemSlidingType.swipe;
2760
2758
  const itemSlidingStyle = this.secondaryActionsDropdown ? { position: 'relative', 'z-index': `${((_b = this.filteredItems) === null || _b === void 0 ? void 0 : _b.length) - index$2}` } : {};
2761
2759
  const hasMoreButton = (actions === null || actions === void 0 ? void 0 : actions.length) > 3;
2762
- this.blockUnhoveer[index$2] = false;
2760
+ const itemSlidingId = item[this.idAttributeName || '_id'] || `${index$2}`;
2761
+ this.blockUnhoveer[itemSlidingId] = false;
2763
2762
  if (index$1.isWeb(this.host)) {
2764
2763
  setTimeout(() => this.enableWebOptionsContainers(), 1000);
2765
2764
  }
2766
- return (index.h("yoo-ion-item-sliding", { key: item[this.idAttributeName || '_id'], itemSlidingType: slidingType, onIonDrag: async () => {
2767
- await this.onItemSlidingDrag(item, index$2);
2768
- }, class: { draggable: this.allowDragging }, ref: (el) => (this.itemsSliding[index$2] = el), style: itemSlidingStyle, onMouseEnter: () => { var _a; return (_a = this.itemsSliding[index$2]) === null || _a === void 0 ? void 0 : _a.classList.add('hovered'); }, onMouseLeave: () => {
2769
- if (!this.blockUnhoveer[index$2] && this.itemsSliding[index$2]) {
2770
- this.itemsSliding[index$2].classList.remove('hovered');
2765
+ return (index.h("yoo-ion-item-sliding", { key: itemSlidingId, itemSlidingType: slidingType, onIonDrag: async () => {
2766
+ await this.onItemSlidingDrag(item, itemSlidingId);
2767
+ }, class: { draggable: this.allowDragging }, ref: (el) => (this.itemsSliding[itemSlidingId] = el), style: itemSlidingStyle, onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2768
+ var _a, _b;
2769
+ if (!this.blockUnhoveer[itemSlidingId]) {
2770
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2771
2771
  }
2772
- } }, index.h("yoo-ion-item", { lines: "none", class: { [this.displayType]: true, 'selected': this.isSelected(item), 'overflow-visible': this.secondaryActionsDropdown, 'no-padding': (_d = (_c = this.host) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.contains('no-padding-item') } }, this.renderEntity(item, isLast, index$2)), (actions && actions.length > 0 && !this.secondaryActionsDropdown) || (index$1.isWeb(this.host) && this.keepSelection) ? (index.h("yoo-ion-item-options", { ref: (el) => (this.itemOptions[index$2] = el), onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemOptions[index$2]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2773
- if (!this.blockUnhoveer[index$2] && this.itemOptions && this.itemOptions[index$2] && this.itemOptions[index$2].classList) {
2774
- this.itemOptions[index$2].classList.remove('hovered');
2772
+ } }, index.h("yoo-ion-item", { lines: "none", class: { [this.displayType]: true, 'selected': this.isSelected(item), 'overflow-visible': this.secondaryActionsDropdown, 'no-padding': (_d = (_c = this.host) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.contains('no-padding-item') } }, this.renderEntity(item, isLast, index$2)), (actions && actions.length > 0 && !this.secondaryActionsDropdown) || (index$1.isWeb(this.host) && this.keepSelection) ? (index.h("yoo-ion-item-options", { ref: (el) => (this.itemOptions[itemSlidingId] = el), onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemOptions[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2773
+ var _a, _b;
2774
+ if (!this.blockUnhoveer[itemSlidingId]) {
2775
+ (_b = (_a = this.itemOptions[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2775
2776
  }
2776
2777
  } }, index.h("div", { class: { 'options-container': true, 'force-opacity': this.isSelectionMode || this.keepSelection, visible: this.displayActionsOnCard, web: index$1.isWeb(this.host) }, onClick: () => this.onItemSelect(item) }, !index$1.isWeb(this.host) && actions && actions.slice(0, hasMoreButton ? 2 : actions.length).map((action) => action && this.renderMobileItemOptionButtons(action, item)), !index$1.isWeb(this.host) && actions && hasMoreButton && (index.h("button", { class: "bg-stable-light", onClick: (ev) => {
2777
2778
  ev.stopPropagation();
@@ -2850,6 +2851,7 @@ const YooGridComponent = class {
2850
2851
  renderWebItemOptionButtons(actions, item, index$1) {
2851
2852
  const maxDisplay = this.displayActionsOnCard ? 3 : 2;
2852
2853
  const hasMore = actions && (actions.length > maxDisplay || actions.some((a) => (a === null || a === void 0 ? void 0 : a.forceInMoreMenu) && a.forceInMoreMenu(item)));
2854
+ const itemSlidingId = item[this.idAttributeName || '_id'] || `${index$1}`;
2853
2855
  return [
2854
2856
  (this.isSelectionMode || this.keepSelection) && !this.isSelected(item) && (index.h("yoo-icon", { class: "position", name: "circle", color: "stable", onClick: (ev) => this.onItemSelect(item, true, ev) })),
2855
2857
  actions && actions.length > 0 && this.renderWebItemOptionButton(actions[0], item),
@@ -2858,17 +2860,15 @@ const YooGridComponent = class {
2858
2860
  hasMore && (index.h("yoo-context-menu", { contentButtons: actions
2859
2861
  .filter((a, i) => i >= maxDisplay || (a.forceInMoreMenu && a.forceInMoreMenu(item)))
2860
2862
  .map((a) => ({ text: a.text(item), handler: () => a.handler(item) })), onContextMenuOpened: () => {
2861
- this.blockUnhoveer[index$1] = true;
2862
- this.itemsSliding[index$1].classList.add('hovered');
2863
- this.itemOptions[index$1].classList.add('hovered');
2863
+ var _a, _b, _c, _d;
2864
+ this.blockUnhoveer[itemSlidingId] = true;
2865
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered');
2866
+ (_d = (_c = this.itemOptions[itemSlidingId]) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.add('hovered');
2864
2867
  }, onContextMenuClosed: () => {
2865
- if (this.itemsSliding[index$1]) {
2866
- this.itemsSliding[index$1].classList.remove('hovered');
2867
- }
2868
- if (this.itemOptions && this.itemOptions[index$1] && this.itemOptions[index$1].classList) {
2869
- this.itemOptions[index$1].classList.remove('hovered');
2870
- }
2871
- this.blockUnhoveer[index$1] = false;
2868
+ var _a, _b, _c, _d;
2869
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2870
+ (_d = (_c = this.itemOptions[itemSlidingId]) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.remove('hovered');
2871
+ this.blockUnhoveer[itemSlidingId] = false;
2872
2872
  } }, index.h("yoo-button", { color: "light", size: "medium", shape: "square" }, index.h("yoo-icon", { size: "small", name: "more", color: "stable" }))))
2873
2873
  ];
2874
2874
  }
@@ -10716,7 +10716,7 @@ function EffectCards({
10716
10716
  *
10717
10717
  * Released under the MIT License
10718
10718
  *
10719
- * Released on: April 20, 2022
10719
+ * Released on: April 21, 2022
10720
10720
  */
10721
10721
 
10722
10722
  const slidesCss = ".swiper-container{position:relative;z-index:1;margin:0 auto;padding:0;overflow:hidden;list-style:none}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:content-box;box-sizing:content-box;width:100%;height:100%;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0px, 0, 0);transform:translate3d(0px, 0, 0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{margin:0 auto;-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-slide{position:relative;-webkit-flex-shrink:0;flex-shrink:0;width:100%;height:100%;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;-ms-flex-negative:0}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:height, -webkit-transform;-o-transition-property:transform, height;transition-property:height, -webkit-transform;transition-property:transform, height;transition-property:transform, height, -webkit-transform;-webkit-box-align:start;-ms-flex-align:start}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-wrapper,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-cube-shadow{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom{position:absolute;top:0;left:0;z-index:10;width:100%;height:100%;pointer-events:none}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-prev,.swiper-button-next{position:absolute;top:50%;z-index:10;width:27px;height:44px;margin-top:-22px;background-repeat:no-repeat;background-position:center;background-size:27px 44px;cursor:pointer}.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{cursor:auto;opacity:0.35;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{right:auto;left:10px;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;z-index:var(--pagination-z-index);text-align:center;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);-webkit-transition:300ms opacity;-o-transition:300ms opacity;transition:300ms opacity}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-pagination-bullets{bottom:var(--pagination-bottom-position);left:var(--pagination-left-position);width:var(--pagination-container-width);height:var(--pagination-container-height)}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullet{display:inline-block;width:8px;height:8px;background:var(--bullet-background);border-radius:100%;opacity:0.2}button.swiper-pagination-bullet{margin:0;padding:0;border:none;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{background:var(--bullet-background-active);opacity:1}.swiper-container-vertical>.swiper-pagination-bullets{top:50%;right:10px;-webkit-transform:translate3d(0px, -50%, 0);transform:translate3d(0px, -50%, 0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{display:block;margin:6px 0}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;width:8px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:200ms top, 200ms -webkit-transform;-o-transition:200ms transform, 200ms top;transition:200ms top, 200ms -webkit-transform;transition:200ms transform, 200ms top;transition:200ms transform, 200ms top, 200ms -webkit-transform}.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;white-space:nowrap;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms left, 200ms -webkit-transform;-o-transition:200ms transform, 200ms left;transition:200ms left, 200ms -webkit-transform;transition:200ms transform, 200ms left;transition:200ms transform, 200ms left, 200ms -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms right, 200ms -webkit-transform;-o-transition:200ms transform, 200ms right;transition:200ms right, 200ms -webkit-transform;transition:200ms transform, 200ms right;transition:200ms transform, 200ms right, 200ms -webkit-transform}.swiper-pagination-progressbar{position:absolute;background:var(--progress-bar-background)}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{position:absolute;top:0;left:0;width:100%;height:100%;background:var(--progress-bar-background-active);-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{top:0;left:0;width:100%;height:4px}.swiper-container-vertical>.swiper-pagination-progressbar,.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{top:0;left:0;width:4px;height:100%}.swiper-pagination-white .swiper-pagination-bullet-active{background:var(--light, #ffffff)}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255, 255, 255, 0.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:var(--light, #ffffff)}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0, 0, 0, 0.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{position:relative;background:var(--scroll-bar-background);border-radius:10px;-ms-touch-action:none}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;bottom:3px;left:1%;z-index:50;width:98%;height:5px}.swiper-container-vertical>.swiper-scrollbar{position:absolute;top:1%;right:3px;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{position:relative;top:0;left:0;width:100%;height:100%;background:var(--scroll-bar-background-active);border-radius:10px}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:100%;height:100%;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center}.swiper-zoom-container>img,.swiper-zoom-container>svg,.swiper-zoom-container>canvas{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{position:absolute;top:50%;left:50%;z-index:10;width:42px;height:42px;margin-top:-21px;margin-left:-21px;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12, end) infinite;animation:swiper-preloader-spin 1s steps(12, end) infinite}.swiper-lazy-preloader:after{display:block;width:100%;height:100%;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E\");background-repeat:no-repeat;background-position:50%;background-size:100%;content:\"\"}.swiper-lazy-preloader-white:after{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E\")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;top:0;left:0;z-index:-1000;opacity:0;pointer-events:none}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;pointer-events:none}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{z-index:1;width:100%;height:100%;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:hidden;pointer-events:none}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-prev,.swiper-container-cube .swiper-slide-next+.swiper-slide{visibility:visible;pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;bottom:0px;left:0;z-index:0;width:100%;height:100%;background:#000;opacity:0.6;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{z-index:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;pointer-events:none}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}:host{--host-background-color:unset;--bullet-background:var(--app-color, #5a30f4);--bullet-background-active:var(--app-color, #5a30f4);--swiper-container-height:100%;--progress-bar-background:rgba(var(--ion-text-color-rgb), 0.25);--progress-bar-background-active:ion-color(primary, shade);--scroll-bar-background:rgba(var(--ion-text-color-rgb), 0.1);--scroll-bar-background-active:rgba(var(--ion-text-color-rgb), 0.5);--pagination-bottom-position:var(--spacing-08, 0.5rem);--pagination-left-position:0;--pagination-container-width:100%;--pagination-container-height:2rem;--pagination-z-index:10;position:relative;display:block;height:100%;overflow:hidden}:host .slides{display:block;background-color:var(--host-background-color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host .swiper-container{height:var(--swiper-container-height)}:host .swiper-button-prev,:host .swiper-button-next{background-image:none !important}:host .swiper-button-prev.hidden,:host .swiper-button-next.hidden{display:none}:host .swiper-pagination-bullets{display:grid;grid-auto-flow:column;grid-gap:var(--spacing-08, 0.5rem);-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}:host .swiper-pagination-bullets>*{margin:0}:host(.entity-search-display) .scroll-inner,:host(.entity-search-display) .slides,:host(.entity-search-display) .swiper-container{height:100%}:host(.entity-search-display) .swiper-slide{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}:host(.outside-navigation-arrows){overflow:visible}:host(.outside-navigation-arrows) .swiper-button-prev,:host(.outside-navigation-arrows) .swiper-button-next{color:var(--light, #ffffff);font-size:var(--font-size-32, 2rem)}:host(.outside-navigation-arrows) .swiper-button-prev{left:-2.5rem}:host(.outside-navigation-arrows) .swiper-button-next{right:-2.5rem}:host(.web) .swiper-button-prev,:host(.web) .swiper-button-next{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:2rem;height:2rem;border-radius:50%}:host(.prevent-scroll-side-on-drag){overflow:unset}";
@@ -11033,7 +11033,7 @@ const YooIonSlidesComponent = class {
11033
11033
  async initSwiper() {
11034
11034
  const finalOptions = this.normalizeOptions();
11035
11035
  // init swiper core
11036
- const { Swiper } = await Promise.resolve().then(function () { return require('./swiper-4e183d88.js'); });
11036
+ const { Swiper } = await Promise.resolve().then(function () { return require('./swiper-aca8cfc9.js'); });
11037
11037
  await waitForSlides(this.el);
11038
11038
  const swiper = new Swiper(this.el, finalOptions);
11039
11039
  this.swiperReady = true;
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const yooIonSlides_entry = require('./yoo-ion-slides-823c9857.js');
5
+ const yooIonSlides_entry = require('./yoo-ion-slides-1df9388d.js');
6
6
  require('./index-19d6d7b7.js');
7
7
  require('./index-469352c4.js');
8
8
  require('./lodash-597bda6d.js');
@@ -102,7 +102,7 @@ const YooTabsComponent = class {
102
102
  componentWillLoad() {
103
103
  var _a;
104
104
  this.setTab(this.initialIndex);
105
- this.openedTabs = (_a = this.tabs) === null || _a === void 0 ? void 0 : _a.map((_tab, index) => this.initialIndex === index);
105
+ this.openedTabs = ((_a = this.tabs) === null || _a === void 0 ? void 0 : _a.map((_tab, index) => this.initialIndex === index)) || [];
106
106
  }
107
107
  onShowOptions(index) {
108
108
  index$1.showActionSheet(this.editableOptions(index));
@@ -96,7 +96,7 @@ export class YooTabsComponent {
96
96
  componentWillLoad() {
97
97
  var _a;
98
98
  this.setTab(this.initialIndex);
99
- this.openedTabs = (_a = this.tabs) === null || _a === void 0 ? void 0 : _a.map((_tab, index) => this.initialIndex === index);
99
+ this.openedTabs = ((_a = this.tabs) === null || _a === void 0 ? void 0 : _a.map((_tab, index) => this.initialIndex === index)) || [];
100
100
  }
101
101
  onShowOptions(index) {
102
102
  showActionSheet(this.editableOptions(index));
@@ -65,8 +65,9 @@ export class YooGridComponent {
65
65
  this.iconDisplayNext = 'grid-view';
66
66
  this.searchText = '';
67
67
  this.extraFetchParams = {};
68
- this.itemsSliding = [];
69
- this.itemOptions = [];
68
+ this.itemsSliding = {};
69
+ this.itemOptions = {};
70
+ this.blockUnhoveer = {};
70
71
  this.horizontalSlidesAnim = new HorizontalSlidesAnimation();
71
72
  this.maxPageCount = 0;
72
73
  this.itemList = [];
@@ -80,7 +81,6 @@ export class YooGridComponent {
80
81
  freeMode: this.slidesFreeMode
81
82
  };
82
83
  this.areItemsDisabled = false;
83
- this.blockUnhoveer = [];
84
84
  this.isSearchBarHidden = false;
85
85
  this.columnHeaderElements = [];
86
86
  this.leftContainers = [];
@@ -344,13 +344,11 @@ export class YooGridComponent {
344
344
  this.setCurrentPage(0);
345
345
  }
346
346
  async closeItemsSliding() {
347
- if (this.itemsSliding) {
348
- this.itemsSliding.forEach((itemSliding) => {
349
- if (itemSliding) {
350
- itemSliding.close();
351
- }
352
- });
353
- }
347
+ var _a;
348
+ (_a = Object.keys(this.itemsSliding)) === null || _a === void 0 ? void 0 : _a.forEach((id) => {
349
+ var _a;
350
+ (_a = this.itemsSliding[id]) === null || _a === void 0 ? void 0 : _a.close();
351
+ });
354
352
  }
355
353
  async resetSearchText() {
356
354
  this.searchText = '';
@@ -641,11 +639,11 @@ export class YooGridComponent {
641
639
  * we insert/remove item from the list
642
640
  */
643
641
  updateItemsSliding() {
644
- if (this.itemsSliding && this.updateItemsSlidingOnUpdate) {
645
- this.itemsSliding.forEach((itemSliding) => {
646
- if (itemSliding) {
647
- itemSliding.updateOptions();
648
- }
642
+ const itemsSlidingIds = Object.keys(this.itemsSliding);
643
+ if (itemsSlidingIds && this.updateItemsSlidingOnUpdate) {
644
+ itemsSlidingIds.forEach((id) => {
645
+ var _a;
646
+ (_a = this.itemsSliding[id]) === null || _a === void 0 ? void 0 : _a.updateOptions();
649
647
  });
650
648
  this.updateItemsSlidingOnUpdate = false;
651
649
  }
@@ -1707,9 +1705,9 @@ export class YooGridComponent {
1707
1705
  this.flyToPosition(selectedPosition, FOCUS_MAP_ZOOM);
1708
1706
  }
1709
1707
  }
1710
- async onItemSlidingDrag(item, index) {
1711
- if (this.itemsSliding[index]) {
1712
- const percent = await this.itemsSliding[index].getSlidingRatio();
1708
+ async onItemSlidingDrag(item, itemSlidingId) {
1709
+ if (this.itemsSliding[itemSlidingId]) {
1710
+ const percent = await this.itemsSliding[itemSlidingId].getSlidingRatio();
1713
1711
  if (percent >= 1) {
1714
1712
  this.swipeEnd.emit(item);
1715
1713
  }
@@ -2813,21 +2811,24 @@ export class YooGridComponent {
2813
2811
  const slidingType = isWeb(this.host) ? ItemSlidingType.hover : ItemSlidingType.swipe;
2814
2812
  const itemSlidingStyle = this.secondaryActionsDropdown ? { position: 'relative', 'z-index': `${((_b = this.filteredItems) === null || _b === void 0 ? void 0 : _b.length) - index}` } : {};
2815
2813
  const hasMoreButton = (actions === null || actions === void 0 ? void 0 : actions.length) > 3;
2816
- this.blockUnhoveer[index] = false;
2814
+ const itemSlidingId = item[this.idAttributeName || '_id'] || `${index}`;
2815
+ this.blockUnhoveer[itemSlidingId] = false;
2817
2816
  if (isWeb(this.host)) {
2818
2817
  setTimeout(() => this.enableWebOptionsContainers(), 1000);
2819
2818
  }
2820
- return (h("yoo-ion-item-sliding", { key: item[this.idAttributeName || '_id'], itemSlidingType: slidingType, onIonDrag: async () => {
2821
- await this.onItemSlidingDrag(item, index);
2822
- }, class: { draggable: this.allowDragging }, ref: (el) => (this.itemsSliding[index] = el), style: itemSlidingStyle, onMouseEnter: () => { var _a; return (_a = this.itemsSliding[index]) === null || _a === void 0 ? void 0 : _a.classList.add('hovered'); }, onMouseLeave: () => {
2823
- if (!this.blockUnhoveer[index] && this.itemsSliding[index]) {
2824
- this.itemsSliding[index].classList.remove('hovered');
2819
+ return (h("yoo-ion-item-sliding", { key: itemSlidingId, itemSlidingType: slidingType, onIonDrag: async () => {
2820
+ await this.onItemSlidingDrag(item, itemSlidingId);
2821
+ }, class: { draggable: this.allowDragging }, ref: (el) => (this.itemsSliding[itemSlidingId] = el), style: itemSlidingStyle, onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2822
+ var _a, _b;
2823
+ if (!this.blockUnhoveer[itemSlidingId]) {
2824
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2825
2825
  }
2826
2826
  } },
2827
2827
  h("yoo-ion-item", { lines: "none", class: { [this.displayType]: true, 'selected': this.isSelected(item), 'overflow-visible': this.secondaryActionsDropdown, 'no-padding': (_d = (_c = this.host) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.contains('no-padding-item') } }, this.renderEntity(item, isLast, index)),
2828
- (actions && actions.length > 0 && !this.secondaryActionsDropdown) || (isWeb(this.host) && this.keepSelection) ? (h("yoo-ion-item-options", { ref: (el) => (this.itemOptions[index] = el), onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemOptions[index]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2829
- if (!this.blockUnhoveer[index] && this.itemOptions && this.itemOptions[index] && this.itemOptions[index].classList) {
2830
- this.itemOptions[index].classList.remove('hovered');
2828
+ (actions && actions.length > 0 && !this.secondaryActionsDropdown) || (isWeb(this.host) && this.keepSelection) ? (h("yoo-ion-item-options", { ref: (el) => (this.itemOptions[itemSlidingId] = el), onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemOptions[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2829
+ var _a, _b;
2830
+ if (!this.blockUnhoveer[itemSlidingId]) {
2831
+ (_b = (_a = this.itemOptions[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2831
2832
  }
2832
2833
  } },
2833
2834
  h("div", { class: { 'options-container': true, 'force-opacity': this.isSelectionMode || this.keepSelection, visible: this.displayActionsOnCard, web: isWeb(this.host) }, onClick: () => this.onItemSelect(item) },
@@ -2924,6 +2925,7 @@ export class YooGridComponent {
2924
2925
  renderWebItemOptionButtons(actions, item, index) {
2925
2926
  const maxDisplay = this.displayActionsOnCard ? 3 : 2;
2926
2927
  const hasMore = actions && (actions.length > maxDisplay || actions.some((a) => (a === null || a === void 0 ? void 0 : a.forceInMoreMenu) && a.forceInMoreMenu(item)));
2928
+ const itemSlidingId = item[this.idAttributeName || '_id'] || `${index}`;
2927
2929
  return [
2928
2930
  (this.isSelectionMode || this.keepSelection) && !this.isSelected(item) && (h("yoo-icon", { class: "position", name: "circle", color: "stable", onClick: (ev) => this.onItemSelect(item, true, ev) })),
2929
2931
  actions && actions.length > 0 && this.renderWebItemOptionButton(actions[0], item),
@@ -2932,17 +2934,15 @@ export class YooGridComponent {
2932
2934
  hasMore && (h("yoo-context-menu", { contentButtons: actions
2933
2935
  .filter((a, i) => i >= maxDisplay || (a.forceInMoreMenu && a.forceInMoreMenu(item)))
2934
2936
  .map((a) => ({ text: a.text(item), handler: () => a.handler(item) })), onContextMenuOpened: () => {
2935
- this.blockUnhoveer[index] = true;
2936
- this.itemsSliding[index].classList.add('hovered');
2937
- this.itemOptions[index].classList.add('hovered');
2937
+ var _a, _b, _c, _d;
2938
+ this.blockUnhoveer[itemSlidingId] = true;
2939
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered');
2940
+ (_d = (_c = this.itemOptions[itemSlidingId]) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.add('hovered');
2938
2941
  }, onContextMenuClosed: () => {
2939
- if (this.itemsSliding[index]) {
2940
- this.itemsSliding[index].classList.remove('hovered');
2941
- }
2942
- if (this.itemOptions && this.itemOptions[index] && this.itemOptions[index].classList) {
2943
- this.itemOptions[index].classList.remove('hovered');
2944
- }
2945
- this.blockUnhoveer[index] = false;
2942
+ var _a, _b, _c, _d;
2943
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2944
+ (_d = (_c = this.itemOptions[itemSlidingId]) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.remove('hovered');
2945
+ this.blockUnhoveer[itemSlidingId] = false;
2946
2946
  } },
2947
2947
  h("yoo-button", { color: "light", size: "medium", shape: "square" },
2948
2948
  h("yoo-icon", { size: "small", name: "more", color: "stable" }))))
@@ -1,5 +1,5 @@
1
- import { S as Swiper, P as Pagination, A as Autoplay, a as Scrollbar } from './yoo-ion-slides-5fb03964.js';
2
- export { S as Swiper } from './yoo-ion-slides-5fb03964.js';
1
+ import { S as Swiper, P as Pagination, A as Autoplay, a as Scrollbar } from './yoo-ion-slides-61f4a627.js';
2
+ export { S as Swiper } from './yoo-ion-slides-61f4a627.js';
3
3
  import './index-3d00bad4.js';
4
4
  import './index-9b6f4e7b.js';
5
5
  import './lodash-eb23e844.js';
@@ -141,8 +141,9 @@ const YooGridComponent = class {
141
141
  this.iconDisplayNext = 'grid-view';
142
142
  this.searchText = '';
143
143
  this.extraFetchParams = {};
144
- this.itemsSliding = [];
145
- this.itemOptions = [];
144
+ this.itemsSliding = {};
145
+ this.itemOptions = {};
146
+ this.blockUnhoveer = {};
146
147
  this.horizontalSlidesAnim = new HorizontalSlidesAnimation();
147
148
  this.maxPageCount = 0;
148
149
  this.itemList = [];
@@ -156,7 +157,6 @@ const YooGridComponent = class {
156
157
  freeMode: this.slidesFreeMode
157
158
  };
158
159
  this.areItemsDisabled = false;
159
- this.blockUnhoveer = [];
160
160
  this.isSearchBarHidden = false;
161
161
  this.columnHeaderElements = [];
162
162
  this.leftContainers = [];
@@ -420,13 +420,11 @@ const YooGridComponent = class {
420
420
  this.setCurrentPage(0);
421
421
  }
422
422
  async closeItemsSliding() {
423
- if (this.itemsSliding) {
424
- this.itemsSliding.forEach((itemSliding) => {
425
- if (itemSliding) {
426
- itemSliding.close();
427
- }
428
- });
429
- }
423
+ var _a;
424
+ (_a = Object.keys(this.itemsSliding)) === null || _a === void 0 ? void 0 : _a.forEach((id) => {
425
+ var _a;
426
+ (_a = this.itemsSliding[id]) === null || _a === void 0 ? void 0 : _a.close();
427
+ });
430
428
  }
431
429
  async resetSearchText() {
432
430
  this.searchText = '';
@@ -717,11 +715,11 @@ const YooGridComponent = class {
717
715
  * we insert/remove item from the list
718
716
  */
719
717
  updateItemsSliding() {
720
- if (this.itemsSliding && this.updateItemsSlidingOnUpdate) {
721
- this.itemsSliding.forEach((itemSliding) => {
722
- if (itemSliding) {
723
- itemSliding.updateOptions();
724
- }
718
+ const itemsSlidingIds = Object.keys(this.itemsSliding);
719
+ if (itemsSlidingIds && this.updateItemsSlidingOnUpdate) {
720
+ itemsSlidingIds.forEach((id) => {
721
+ var _a;
722
+ (_a = this.itemsSliding[id]) === null || _a === void 0 ? void 0 : _a.updateOptions();
725
723
  });
726
724
  this.updateItemsSlidingOnUpdate = false;
727
725
  }
@@ -1783,9 +1781,9 @@ const YooGridComponent = class {
1783
1781
  this.flyToPosition(selectedPosition, FOCUS_MAP_ZOOM);
1784
1782
  }
1785
1783
  }
1786
- async onItemSlidingDrag(item, index) {
1787
- if (this.itemsSliding[index]) {
1788
- const percent = await this.itemsSliding[index].getSlidingRatio();
1784
+ async onItemSlidingDrag(item, itemSlidingId) {
1785
+ if (this.itemsSliding[itemSlidingId]) {
1786
+ const percent = await this.itemsSliding[itemSlidingId].getSlidingRatio();
1789
1787
  if (percent >= 1) {
1790
1788
  this.swipeEnd.emit(item);
1791
1789
  }
@@ -2755,19 +2753,22 @@ const YooGridComponent = class {
2755
2753
  const slidingType = isWeb(this.host) ? ItemSlidingType.hover : ItemSlidingType.swipe;
2756
2754
  const itemSlidingStyle = this.secondaryActionsDropdown ? { position: 'relative', 'z-index': `${((_b = this.filteredItems) === null || _b === void 0 ? void 0 : _b.length) - index}` } : {};
2757
2755
  const hasMoreButton = (actions === null || actions === void 0 ? void 0 : actions.length) > 3;
2758
- this.blockUnhoveer[index] = false;
2756
+ const itemSlidingId = item[this.idAttributeName || '_id'] || `${index}`;
2757
+ this.blockUnhoveer[itemSlidingId] = false;
2759
2758
  if (isWeb(this.host)) {
2760
2759
  setTimeout(() => this.enableWebOptionsContainers(), 1000);
2761
2760
  }
2762
- return (h("yoo-ion-item-sliding", { key: item[this.idAttributeName || '_id'], itemSlidingType: slidingType, onIonDrag: async () => {
2763
- await this.onItemSlidingDrag(item, index);
2764
- }, class: { draggable: this.allowDragging }, ref: (el) => (this.itemsSliding[index] = el), style: itemSlidingStyle, onMouseEnter: () => { var _a; return (_a = this.itemsSliding[index]) === null || _a === void 0 ? void 0 : _a.classList.add('hovered'); }, onMouseLeave: () => {
2765
- if (!this.blockUnhoveer[index] && this.itemsSliding[index]) {
2766
- this.itemsSliding[index].classList.remove('hovered');
2761
+ return (h("yoo-ion-item-sliding", { key: itemSlidingId, itemSlidingType: slidingType, onIonDrag: async () => {
2762
+ await this.onItemSlidingDrag(item, itemSlidingId);
2763
+ }, class: { draggable: this.allowDragging }, ref: (el) => (this.itemsSliding[itemSlidingId] = el), style: itemSlidingStyle, onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2764
+ var _a, _b;
2765
+ if (!this.blockUnhoveer[itemSlidingId]) {
2766
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2767
2767
  }
2768
- } }, h("yoo-ion-item", { lines: "none", class: { [this.displayType]: true, 'selected': this.isSelected(item), 'overflow-visible': this.secondaryActionsDropdown, 'no-padding': (_d = (_c = this.host) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.contains('no-padding-item') } }, this.renderEntity(item, isLast, index)), (actions && actions.length > 0 && !this.secondaryActionsDropdown) || (isWeb(this.host) && this.keepSelection) ? (h("yoo-ion-item-options", { ref: (el) => (this.itemOptions[index] = el), onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemOptions[index]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2769
- if (!this.blockUnhoveer[index] && this.itemOptions && this.itemOptions[index] && this.itemOptions[index].classList) {
2770
- this.itemOptions[index].classList.remove('hovered');
2768
+ } }, h("yoo-ion-item", { lines: "none", class: { [this.displayType]: true, 'selected': this.isSelected(item), 'overflow-visible': this.secondaryActionsDropdown, 'no-padding': (_d = (_c = this.host) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.contains('no-padding-item') } }, this.renderEntity(item, isLast, index)), (actions && actions.length > 0 && !this.secondaryActionsDropdown) || (isWeb(this.host) && this.keepSelection) ? (h("yoo-ion-item-options", { ref: (el) => (this.itemOptions[itemSlidingId] = el), onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemOptions[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2769
+ var _a, _b;
2770
+ if (!this.blockUnhoveer[itemSlidingId]) {
2771
+ (_b = (_a = this.itemOptions[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2771
2772
  }
2772
2773
  } }, h("div", { class: { 'options-container': true, 'force-opacity': this.isSelectionMode || this.keepSelection, visible: this.displayActionsOnCard, web: isWeb(this.host) }, onClick: () => this.onItemSelect(item) }, !isWeb(this.host) && actions && actions.slice(0, hasMoreButton ? 2 : actions.length).map((action) => action && this.renderMobileItemOptionButtons(action, item)), !isWeb(this.host) && actions && hasMoreButton && (h("button", { class: "bg-stable-light", onClick: (ev) => {
2773
2774
  ev.stopPropagation();
@@ -2846,6 +2847,7 @@ const YooGridComponent = class {
2846
2847
  renderWebItemOptionButtons(actions, item, index) {
2847
2848
  const maxDisplay = this.displayActionsOnCard ? 3 : 2;
2848
2849
  const hasMore = actions && (actions.length > maxDisplay || actions.some((a) => (a === null || a === void 0 ? void 0 : a.forceInMoreMenu) && a.forceInMoreMenu(item)));
2850
+ const itemSlidingId = item[this.idAttributeName || '_id'] || `${index}`;
2849
2851
  return [
2850
2852
  (this.isSelectionMode || this.keepSelection) && !this.isSelected(item) && (h("yoo-icon", { class: "position", name: "circle", color: "stable", onClick: (ev) => this.onItemSelect(item, true, ev) })),
2851
2853
  actions && actions.length > 0 && this.renderWebItemOptionButton(actions[0], item),
@@ -2854,17 +2856,15 @@ const YooGridComponent = class {
2854
2856
  hasMore && (h("yoo-context-menu", { contentButtons: actions
2855
2857
  .filter((a, i) => i >= maxDisplay || (a.forceInMoreMenu && a.forceInMoreMenu(item)))
2856
2858
  .map((a) => ({ text: a.text(item), handler: () => a.handler(item) })), onContextMenuOpened: () => {
2857
- this.blockUnhoveer[index] = true;
2858
- this.itemsSliding[index].classList.add('hovered');
2859
- this.itemOptions[index].classList.add('hovered');
2859
+ var _a, _b, _c, _d;
2860
+ this.blockUnhoveer[itemSlidingId] = true;
2861
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered');
2862
+ (_d = (_c = this.itemOptions[itemSlidingId]) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.add('hovered');
2860
2863
  }, onContextMenuClosed: () => {
2861
- if (this.itemsSliding[index]) {
2862
- this.itemsSliding[index].classList.remove('hovered');
2863
- }
2864
- if (this.itemOptions && this.itemOptions[index] && this.itemOptions[index].classList) {
2865
- this.itemOptions[index].classList.remove('hovered');
2866
- }
2867
- this.blockUnhoveer[index] = false;
2864
+ var _a, _b, _c, _d;
2865
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2866
+ (_d = (_c = this.itemOptions[itemSlidingId]) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.remove('hovered');
2867
+ this.blockUnhoveer[itemSlidingId] = false;
2868
2868
  } }, h("yoo-button", { color: "light", size: "medium", shape: "square" }, h("yoo-icon", { size: "small", name: "more", color: "stable" }))))
2869
2869
  ];
2870
2870
  }
@@ -10714,7 +10714,7 @@ function EffectCards({
10714
10714
  *
10715
10715
  * Released under the MIT License
10716
10716
  *
10717
- * Released on: April 20, 2022
10717
+ * Released on: April 21, 2022
10718
10718
  */
10719
10719
 
10720
10720
  const slidesCss = ".swiper-container{position:relative;z-index:1;margin:0 auto;padding:0;overflow:hidden;list-style:none}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:content-box;box-sizing:content-box;width:100%;height:100%;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0px, 0, 0);transform:translate3d(0px, 0, 0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{margin:0 auto;-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-slide{position:relative;-webkit-flex-shrink:0;flex-shrink:0;width:100%;height:100%;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;-ms-flex-negative:0}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:height, -webkit-transform;-o-transition-property:transform, height;transition-property:height, -webkit-transform;transition-property:transform, height;transition-property:transform, height, -webkit-transform;-webkit-box-align:start;-ms-flex-align:start}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-wrapper,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-cube-shadow{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom{position:absolute;top:0;left:0;z-index:10;width:100%;height:100%;pointer-events:none}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-prev,.swiper-button-next{position:absolute;top:50%;z-index:10;width:27px;height:44px;margin-top:-22px;background-repeat:no-repeat;background-position:center;background-size:27px 44px;cursor:pointer}.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{cursor:auto;opacity:0.35;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{right:auto;left:10px;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;z-index:var(--pagination-z-index);text-align:center;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);-webkit-transition:300ms opacity;-o-transition:300ms opacity;transition:300ms opacity}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-pagination-bullets{bottom:var(--pagination-bottom-position);left:var(--pagination-left-position);width:var(--pagination-container-width);height:var(--pagination-container-height)}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullet{display:inline-block;width:8px;height:8px;background:var(--bullet-background);border-radius:100%;opacity:0.2}button.swiper-pagination-bullet{margin:0;padding:0;border:none;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{background:var(--bullet-background-active);opacity:1}.swiper-container-vertical>.swiper-pagination-bullets{top:50%;right:10px;-webkit-transform:translate3d(0px, -50%, 0);transform:translate3d(0px, -50%, 0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{display:block;margin:6px 0}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;width:8px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:200ms top, 200ms -webkit-transform;-o-transition:200ms transform, 200ms top;transition:200ms top, 200ms -webkit-transform;transition:200ms transform, 200ms top;transition:200ms transform, 200ms top, 200ms -webkit-transform}.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;white-space:nowrap;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms left, 200ms -webkit-transform;-o-transition:200ms transform, 200ms left;transition:200ms left, 200ms -webkit-transform;transition:200ms transform, 200ms left;transition:200ms transform, 200ms left, 200ms -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms right, 200ms -webkit-transform;-o-transition:200ms transform, 200ms right;transition:200ms right, 200ms -webkit-transform;transition:200ms transform, 200ms right;transition:200ms transform, 200ms right, 200ms -webkit-transform}.swiper-pagination-progressbar{position:absolute;background:var(--progress-bar-background)}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{position:absolute;top:0;left:0;width:100%;height:100%;background:var(--progress-bar-background-active);-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{top:0;left:0;width:100%;height:4px}.swiper-container-vertical>.swiper-pagination-progressbar,.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{top:0;left:0;width:4px;height:100%}.swiper-pagination-white .swiper-pagination-bullet-active{background:var(--light, #ffffff)}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255, 255, 255, 0.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:var(--light, #ffffff)}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0, 0, 0, 0.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{position:relative;background:var(--scroll-bar-background);border-radius:10px;-ms-touch-action:none}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;bottom:3px;left:1%;z-index:50;width:98%;height:5px}.swiper-container-vertical>.swiper-scrollbar{position:absolute;top:1%;right:3px;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{position:relative;top:0;left:0;width:100%;height:100%;background:var(--scroll-bar-background-active);border-radius:10px}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:100%;height:100%;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center}.swiper-zoom-container>img,.swiper-zoom-container>svg,.swiper-zoom-container>canvas{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{position:absolute;top:50%;left:50%;z-index:10;width:42px;height:42px;margin-top:-21px;margin-left:-21px;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12, end) infinite;animation:swiper-preloader-spin 1s steps(12, end) infinite}.swiper-lazy-preloader:after{display:block;width:100%;height:100%;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E\");background-repeat:no-repeat;background-position:50%;background-size:100%;content:\"\"}.swiper-lazy-preloader-white:after{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E\")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;top:0;left:0;z-index:-1000;opacity:0;pointer-events:none}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;pointer-events:none}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{z-index:1;width:100%;height:100%;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:hidden;pointer-events:none}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-prev,.swiper-container-cube .swiper-slide-next+.swiper-slide{visibility:visible;pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;bottom:0px;left:0;z-index:0;width:100%;height:100%;background:#000;opacity:0.6;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{z-index:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;pointer-events:none}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}:host{--host-background-color:unset;--bullet-background:var(--app-color, #5a30f4);--bullet-background-active:var(--app-color, #5a30f4);--swiper-container-height:100%;--progress-bar-background:rgba(var(--ion-text-color-rgb), 0.25);--progress-bar-background-active:ion-color(primary, shade);--scroll-bar-background:rgba(var(--ion-text-color-rgb), 0.1);--scroll-bar-background-active:rgba(var(--ion-text-color-rgb), 0.5);--pagination-bottom-position:var(--spacing-08, 0.5rem);--pagination-left-position:0;--pagination-container-width:100%;--pagination-container-height:2rem;--pagination-z-index:10;position:relative;display:block;height:100%;overflow:hidden}:host .slides{display:block;background-color:var(--host-background-color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host .swiper-container{height:var(--swiper-container-height)}:host .swiper-button-prev,:host .swiper-button-next{background-image:none !important}:host .swiper-button-prev.hidden,:host .swiper-button-next.hidden{display:none}:host .swiper-pagination-bullets{display:grid;grid-auto-flow:column;grid-gap:var(--spacing-08, 0.5rem);-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}:host .swiper-pagination-bullets>*{margin:0}:host(.entity-search-display) .scroll-inner,:host(.entity-search-display) .slides,:host(.entity-search-display) .swiper-container{height:100%}:host(.entity-search-display) .swiper-slide{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}:host(.outside-navigation-arrows){overflow:visible}:host(.outside-navigation-arrows) .swiper-button-prev,:host(.outside-navigation-arrows) .swiper-button-next{color:var(--light, #ffffff);font-size:var(--font-size-32, 2rem)}:host(.outside-navigation-arrows) .swiper-button-prev{left:-2.5rem}:host(.outside-navigation-arrows) .swiper-button-next{right:-2.5rem}:host(.web) .swiper-button-prev,:host(.web) .swiper-button-next{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:2rem;height:2rem;border-radius:50%}:host(.prevent-scroll-side-on-drag){overflow:unset}";
@@ -11031,7 +11031,7 @@ const YooIonSlidesComponent = class {
11031
11031
  async initSwiper() {
11032
11032
  const finalOptions = this.normalizeOptions();
11033
11033
  // init swiper core
11034
- const { Swiper } = await import('./swiper-7938bf20.js');
11034
+ const { Swiper } = await import('./swiper-da649ab2.js');
11035
11035
  await waitForSlides(this.el);
11036
11036
  const swiper = new Swiper(this.el, finalOptions);
11037
11037
  this.swiperReady = true;
@@ -1,4 +1,4 @@
1
- export { Y as yoo_ion_slides } from './yoo-ion-slides-5fb03964.js';
1
+ export { Y as yoo_ion_slides } from './yoo-ion-slides-61f4a627.js';
2
2
  import './index-3d00bad4.js';
3
3
  import './index-9b6f4e7b.js';
4
4
  import './lodash-eb23e844.js';
@@ -98,7 +98,7 @@ const YooTabsComponent = class {
98
98
  componentWillLoad() {
99
99
  var _a;
100
100
  this.setTab(this.initialIndex);
101
- this.openedTabs = (_a = this.tabs) === null || _a === void 0 ? void 0 : _a.map((_tab, index) => this.initialIndex === index);
101
+ this.openedTabs = ((_a = this.tabs) === null || _a === void 0 ? void 0 : _a.map((_tab, index) => this.initialIndex === index)) || [];
102
102
  }
103
103
  onShowOptions(index) {
104
104
  showActionSheet(this.editableOptions(index));
@@ -1,5 +1,5 @@
1
- import { S as Swiper, P as Pagination, A as Autoplay, a as Scrollbar } from './yoo-ion-slides-5fb03964.js';
2
- export { S as Swiper } from './yoo-ion-slides-5fb03964.js';
1
+ import { S as Swiper, P as Pagination, A as Autoplay, a as Scrollbar } from './yoo-ion-slides-61f4a627.js';
2
+ export { S as Swiper } from './yoo-ion-slides-61f4a627.js';
3
3
  import './index-3d00bad4.js';
4
4
  import './index-9b6f4e7b.js';
5
5
  import './lodash-eb23e844.js';
@@ -141,8 +141,9 @@ const YooGridComponent = class {
141
141
  this.iconDisplayNext = 'grid-view';
142
142
  this.searchText = '';
143
143
  this.extraFetchParams = {};
144
- this.itemsSliding = [];
145
- this.itemOptions = [];
144
+ this.itemsSliding = {};
145
+ this.itemOptions = {};
146
+ this.blockUnhoveer = {};
146
147
  this.horizontalSlidesAnim = new HorizontalSlidesAnimation();
147
148
  this.maxPageCount = 0;
148
149
  this.itemList = [];
@@ -156,7 +157,6 @@ const YooGridComponent = class {
156
157
  freeMode: this.slidesFreeMode
157
158
  };
158
159
  this.areItemsDisabled = false;
159
- this.blockUnhoveer = [];
160
160
  this.isSearchBarHidden = false;
161
161
  this.columnHeaderElements = [];
162
162
  this.leftContainers = [];
@@ -420,13 +420,11 @@ const YooGridComponent = class {
420
420
  this.setCurrentPage(0);
421
421
  }
422
422
  async closeItemsSliding() {
423
- if (this.itemsSliding) {
424
- this.itemsSliding.forEach((itemSliding) => {
425
- if (itemSliding) {
426
- itemSliding.close();
427
- }
428
- });
429
- }
423
+ var _a;
424
+ (_a = Object.keys(this.itemsSliding)) === null || _a === void 0 ? void 0 : _a.forEach((id) => {
425
+ var _a;
426
+ (_a = this.itemsSliding[id]) === null || _a === void 0 ? void 0 : _a.close();
427
+ });
430
428
  }
431
429
  async resetSearchText() {
432
430
  this.searchText = '';
@@ -717,11 +715,11 @@ const YooGridComponent = class {
717
715
  * we insert/remove item from the list
718
716
  */
719
717
  updateItemsSliding() {
720
- if (this.itemsSliding && this.updateItemsSlidingOnUpdate) {
721
- this.itemsSliding.forEach((itemSliding) => {
722
- if (itemSliding) {
723
- itemSliding.updateOptions();
724
- }
718
+ const itemsSlidingIds = Object.keys(this.itemsSliding);
719
+ if (itemsSlidingIds && this.updateItemsSlidingOnUpdate) {
720
+ itemsSlidingIds.forEach((id) => {
721
+ var _a;
722
+ (_a = this.itemsSliding[id]) === null || _a === void 0 ? void 0 : _a.updateOptions();
725
723
  });
726
724
  this.updateItemsSlidingOnUpdate = false;
727
725
  }
@@ -1783,9 +1781,9 @@ const YooGridComponent = class {
1783
1781
  this.flyToPosition(selectedPosition, FOCUS_MAP_ZOOM);
1784
1782
  }
1785
1783
  }
1786
- async onItemSlidingDrag(item, index) {
1787
- if (this.itemsSliding[index]) {
1788
- const percent = await this.itemsSliding[index].getSlidingRatio();
1784
+ async onItemSlidingDrag(item, itemSlidingId) {
1785
+ if (this.itemsSliding[itemSlidingId]) {
1786
+ const percent = await this.itemsSliding[itemSlidingId].getSlidingRatio();
1789
1787
  if (percent >= 1) {
1790
1788
  this.swipeEnd.emit(item);
1791
1789
  }
@@ -2755,19 +2753,22 @@ const YooGridComponent = class {
2755
2753
  const slidingType = isWeb(this.host) ? ItemSlidingType.hover : ItemSlidingType.swipe;
2756
2754
  const itemSlidingStyle = this.secondaryActionsDropdown ? { position: 'relative', 'z-index': `${((_b = this.filteredItems) === null || _b === void 0 ? void 0 : _b.length) - index}` } : {};
2757
2755
  const hasMoreButton = (actions === null || actions === void 0 ? void 0 : actions.length) > 3;
2758
- this.blockUnhoveer[index] = false;
2756
+ const itemSlidingId = item[this.idAttributeName || '_id'] || `${index}`;
2757
+ this.blockUnhoveer[itemSlidingId] = false;
2759
2758
  if (isWeb(this.host)) {
2760
2759
  setTimeout(() => this.enableWebOptionsContainers(), 1000);
2761
2760
  }
2762
- return (h("yoo-ion-item-sliding", { key: item[this.idAttributeName || '_id'], itemSlidingType: slidingType, onIonDrag: async () => {
2763
- await this.onItemSlidingDrag(item, index);
2764
- }, class: { draggable: this.allowDragging }, ref: (el) => (this.itemsSliding[index] = el), style: itemSlidingStyle, onMouseEnter: () => { var _a; return (_a = this.itemsSliding[index]) === null || _a === void 0 ? void 0 : _a.classList.add('hovered'); }, onMouseLeave: () => {
2765
- if (!this.blockUnhoveer[index] && this.itemsSliding[index]) {
2766
- this.itemsSliding[index].classList.remove('hovered');
2761
+ return (h("yoo-ion-item-sliding", { key: itemSlidingId, itemSlidingType: slidingType, onIonDrag: async () => {
2762
+ await this.onItemSlidingDrag(item, itemSlidingId);
2763
+ }, class: { draggable: this.allowDragging }, ref: (el) => (this.itemsSliding[itemSlidingId] = el), style: itemSlidingStyle, onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2764
+ var _a, _b;
2765
+ if (!this.blockUnhoveer[itemSlidingId]) {
2766
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2767
2767
  }
2768
- } }, h("yoo-ion-item", { lines: "none", class: { [this.displayType]: true, 'selected': this.isSelected(item), 'overflow-visible': this.secondaryActionsDropdown, 'no-padding': (_d = (_c = this.host) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.contains('no-padding-item') } }, this.renderEntity(item, isLast, index)), (actions && actions.length > 0 && !this.secondaryActionsDropdown) || (isWeb(this.host) && this.keepSelection) ? (h("yoo-ion-item-options", { ref: (el) => (this.itemOptions[index] = el), onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemOptions[index]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2769
- if (!this.blockUnhoveer[index] && this.itemOptions && this.itemOptions[index] && this.itemOptions[index].classList) {
2770
- this.itemOptions[index].classList.remove('hovered');
2768
+ } }, h("yoo-ion-item", { lines: "none", class: { [this.displayType]: true, 'selected': this.isSelected(item), 'overflow-visible': this.secondaryActionsDropdown, 'no-padding': (_d = (_c = this.host) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.contains('no-padding-item') } }, this.renderEntity(item, isLast, index)), (actions && actions.length > 0 && !this.secondaryActionsDropdown) || (isWeb(this.host) && this.keepSelection) ? (h("yoo-ion-item-options", { ref: (el) => (this.itemOptions[itemSlidingId] = el), onMouseEnter: () => { var _a, _b; return (_b = (_a = this.itemOptions[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered'); }, onMouseLeave: () => {
2769
+ var _a, _b;
2770
+ if (!this.blockUnhoveer[itemSlidingId]) {
2771
+ (_b = (_a = this.itemOptions[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2771
2772
  }
2772
2773
  } }, h("div", { class: { 'options-container': true, 'force-opacity': this.isSelectionMode || this.keepSelection, visible: this.displayActionsOnCard, web: isWeb(this.host) }, onClick: () => this.onItemSelect(item) }, !isWeb(this.host) && actions && actions.slice(0, hasMoreButton ? 2 : actions.length).map((action) => action && this.renderMobileItemOptionButtons(action, item)), !isWeb(this.host) && actions && hasMoreButton && (h("button", { class: "bg-stable-light", onClick: (ev) => {
2773
2774
  ev.stopPropagation();
@@ -2846,6 +2847,7 @@ const YooGridComponent = class {
2846
2847
  renderWebItemOptionButtons(actions, item, index) {
2847
2848
  const maxDisplay = this.displayActionsOnCard ? 3 : 2;
2848
2849
  const hasMore = actions && (actions.length > maxDisplay || actions.some((a) => (a === null || a === void 0 ? void 0 : a.forceInMoreMenu) && a.forceInMoreMenu(item)));
2850
+ const itemSlidingId = item[this.idAttributeName || '_id'] || `${index}`;
2849
2851
  return [
2850
2852
  (this.isSelectionMode || this.keepSelection) && !this.isSelected(item) && (h("yoo-icon", { class: "position", name: "circle", color: "stable", onClick: (ev) => this.onItemSelect(item, true, ev) })),
2851
2853
  actions && actions.length > 0 && this.renderWebItemOptionButton(actions[0], item),
@@ -2854,17 +2856,15 @@ const YooGridComponent = class {
2854
2856
  hasMore && (h("yoo-context-menu", { contentButtons: actions
2855
2857
  .filter((a, i) => i >= maxDisplay || (a.forceInMoreMenu && a.forceInMoreMenu(item)))
2856
2858
  .map((a) => ({ text: a.text(item), handler: () => a.handler(item) })), onContextMenuOpened: () => {
2857
- this.blockUnhoveer[index] = true;
2858
- this.itemsSliding[index].classList.add('hovered');
2859
- this.itemOptions[index].classList.add('hovered');
2859
+ var _a, _b, _c, _d;
2860
+ this.blockUnhoveer[itemSlidingId] = true;
2861
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.add('hovered');
2862
+ (_d = (_c = this.itemOptions[itemSlidingId]) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.add('hovered');
2860
2863
  }, onContextMenuClosed: () => {
2861
- if (this.itemsSliding[index]) {
2862
- this.itemsSliding[index].classList.remove('hovered');
2863
- }
2864
- if (this.itemOptions && this.itemOptions[index] && this.itemOptions[index].classList) {
2865
- this.itemOptions[index].classList.remove('hovered');
2866
- }
2867
- this.blockUnhoveer[index] = false;
2864
+ var _a, _b, _c, _d;
2865
+ (_b = (_a = this.itemsSliding[itemSlidingId]) === null || _a === void 0 ? void 0 : _a.classList) === null || _b === void 0 ? void 0 : _b.remove('hovered');
2866
+ (_d = (_c = this.itemOptions[itemSlidingId]) === null || _c === void 0 ? void 0 : _c.classList) === null || _d === void 0 ? void 0 : _d.remove('hovered');
2867
+ this.blockUnhoveer[itemSlidingId] = false;
2868
2868
  } }, h("yoo-button", { color: "light", size: "medium", shape: "square" }, h("yoo-icon", { size: "small", name: "more", color: "stable" }))))
2869
2869
  ];
2870
2870
  }
@@ -10714,7 +10714,7 @@ function EffectCards({
10714
10714
  *
10715
10715
  * Released under the MIT License
10716
10716
  *
10717
- * Released on: April 20, 2022
10717
+ * Released on: April 21, 2022
10718
10718
  */
10719
10719
 
10720
10720
  const slidesCss = ".swiper-container{position:relative;z-index:1;margin:0 auto;padding:0;overflow:hidden;list-style:none}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:content-box;box-sizing:content-box;width:100%;height:100%;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0px, 0, 0);transform:translate3d(0px, 0, 0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{margin:0 auto;-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-slide{position:relative;-webkit-flex-shrink:0;flex-shrink:0;width:100%;height:100%;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;-ms-flex-negative:0}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:height, -webkit-transform;-o-transition-property:transform, height;transition-property:height, -webkit-transform;transition-property:transform, height;transition-property:transform, height, -webkit-transform;-webkit-box-align:start;-ms-flex-align:start}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-wrapper,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-cube-shadow{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom{position:absolute;top:0;left:0;z-index:10;width:100%;height:100%;pointer-events:none}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));background-image:-webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:-o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-prev,.swiper-button-next{position:absolute;top:50%;z-index:10;width:27px;height:44px;margin-top:-22px;background-repeat:no-repeat;background-position:center;background-size:27px 44px;cursor:pointer}.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{cursor:auto;opacity:0.35;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{right:auto;left:10px;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E\")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;z-index:var(--pagination-z-index);text-align:center;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);-webkit-transition:300ms opacity;-o-transition:300ms opacity;transition:300ms opacity}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-pagination-bullets{bottom:var(--pagination-bottom-position);left:var(--pagination-left-position);width:var(--pagination-container-width);height:var(--pagination-container-height)}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{position:relative;-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(0.66);-ms-transform:scale(0.66);transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(0.33);-ms-transform:scale(0.33);transform:scale(0.33)}.swiper-pagination-bullet{display:inline-block;width:8px;height:8px;background:var(--bullet-background);border-radius:100%;opacity:0.2}button.swiper-pagination-bullet{margin:0;padding:0;border:none;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{background:var(--bullet-background-active);opacity:1}.swiper-container-vertical>.swiper-pagination-bullets{top:50%;right:10px;-webkit-transform:translate3d(0px, -50%, 0);transform:translate3d(0px, -50%, 0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{display:block;margin:6px 0}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;width:8px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:200ms top, 200ms -webkit-transform;-o-transition:200ms transform, 200ms top;transition:200ms top, 200ms -webkit-transform;transition:200ms transform, 200ms top;transition:200ms transform, 200ms top, 200ms -webkit-transform}.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;white-space:nowrap;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms left, 200ms -webkit-transform;-o-transition:200ms transform, 200ms left;transition:200ms left, 200ms -webkit-transform;transition:200ms transform, 200ms left;transition:200ms transform, 200ms left, 200ms -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:200ms right, 200ms -webkit-transform;-o-transition:200ms transform, 200ms right;transition:200ms right, 200ms -webkit-transform;transition:200ms transform, 200ms right;transition:200ms transform, 200ms right, 200ms -webkit-transform}.swiper-pagination-progressbar{position:absolute;background:var(--progress-bar-background)}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{position:absolute;top:0;left:0;width:100%;height:100%;background:var(--progress-bar-background-active);-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{top:0;left:0;width:100%;height:4px}.swiper-container-vertical>.swiper-pagination-progressbar,.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{top:0;left:0;width:4px;height:100%}.swiper-pagination-white .swiper-pagination-bullet-active{background:var(--light, #ffffff)}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255, 255, 255, 0.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:var(--light, #ffffff)}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0, 0, 0, 0.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{position:relative;background:var(--scroll-bar-background);border-radius:10px;-ms-touch-action:none}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;bottom:3px;left:1%;z-index:50;width:98%;height:5px}.swiper-container-vertical>.swiper-scrollbar{position:absolute;top:1%;right:3px;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{position:relative;top:0;left:0;width:100%;height:100%;background:var(--scroll-bar-background-active);border-radius:10px}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;width:100%;height:100%;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center}.swiper-zoom-container>img,.swiper-zoom-container>svg,.swiper-zoom-container>canvas{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{position:absolute;top:50%;left:50%;z-index:10;width:42px;height:42px;margin-top:-21px;margin-left:-21px;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12, end) infinite;animation:swiper-preloader-spin 1s steps(12, end) infinite}.swiper-lazy-preloader:after{display:block;width:100%;height:100%;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E\");background-repeat:no-repeat;background-position:50%;background-size:100%;content:\"\"}.swiper-lazy-preloader-white:after{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E\")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;top:0;left:0;z-index:-1000;opacity:0;pointer-events:none}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;pointer-events:none}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{z-index:1;width:100%;height:100%;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;backface-visibility:hidden;visibility:hidden;pointer-events:none}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-prev,.swiper-container-cube .swiper-slide-next+.swiper-slide{visibility:visible;pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;bottom:0px;left:0;z-index:0;width:100%;height:100%;background:#000;opacity:0.6;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{z-index:1;-webkit-backface-visibility:hidden;backface-visibility:hidden;pointer-events:none}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}:host{--host-background-color:unset;--bullet-background:var(--app-color, #5a30f4);--bullet-background-active:var(--app-color, #5a30f4);--swiper-container-height:100%;--progress-bar-background:rgba(var(--ion-text-color-rgb), 0.25);--progress-bar-background-active:ion-color(primary, shade);--scroll-bar-background:rgba(var(--ion-text-color-rgb), 0.1);--scroll-bar-background-active:rgba(var(--ion-text-color-rgb), 0.5);--pagination-bottom-position:var(--spacing-08, 0.5rem);--pagination-left-position:0;--pagination-container-width:100%;--pagination-container-height:2rem;--pagination-z-index:10;position:relative;display:block;height:100%;overflow:hidden}:host .slides{display:block;background-color:var(--host-background-color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}:host .swiper-container{height:var(--swiper-container-height)}:host .swiper-button-prev,:host .swiper-button-next{background-image:none !important}:host .swiper-button-prev.hidden,:host .swiper-button-next.hidden{display:none}:host .swiper-pagination-bullets{display:grid;grid-auto-flow:column;grid-gap:var(--spacing-08, 0.5rem);-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}:host .swiper-pagination-bullets>*{margin:0}:host(.entity-search-display) .scroll-inner,:host(.entity-search-display) .slides,:host(.entity-search-display) .swiper-container{height:100%}:host(.entity-search-display) .swiper-slide{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}:host(.outside-navigation-arrows){overflow:visible}:host(.outside-navigation-arrows) .swiper-button-prev,:host(.outside-navigation-arrows) .swiper-button-next{color:var(--light, #ffffff);font-size:var(--font-size-32, 2rem)}:host(.outside-navigation-arrows) .swiper-button-prev{left:-2.5rem}:host(.outside-navigation-arrows) .swiper-button-next{right:-2.5rem}:host(.web) .swiper-button-prev,:host(.web) .swiper-button-next{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:2rem;height:2rem;border-radius:50%}:host(.prevent-scroll-side-on-drag){overflow:unset}";
@@ -11031,7 +11031,7 @@ const YooIonSlidesComponent = class {
11031
11031
  async initSwiper() {
11032
11032
  const finalOptions = this.normalizeOptions();
11033
11033
  // init swiper core
11034
- const { Swiper } = await import('./swiper-7938bf20.js');
11034
+ const { Swiper } = await import('./swiper-da649ab2.js');
11035
11035
  await waitForSlides(this.el);
11036
11036
  const swiper = new Swiper(this.el, finalOptions);
11037
11037
  this.swiperReady = true;
@@ -1,4 +1,4 @@
1
- export { Y as yoo_ion_slides } from './yoo-ion-slides-5fb03964.js';
1
+ export { Y as yoo_ion_slides } from './yoo-ion-slides-61f4a627.js';
2
2
  import './index-3d00bad4.js';
3
3
  import './index-9b6f4e7b.js';
4
4
  import './lodash-eb23e844.js';
@@ -98,7 +98,7 @@ const YooTabsComponent = class {
98
98
  componentWillLoad() {
99
99
  var _a;
100
100
  this.setTab(this.initialIndex);
101
- this.openedTabs = (_a = this.tabs) === null || _a === void 0 ? void 0 : _a.map((_tab, index) => this.initialIndex === index);
101
+ this.openedTabs = ((_a = this.tabs) === null || _a === void 0 ? void 0 : _a.map((_tab, index) => this.initialIndex === index)) || [];
102
102
  }
103
103
  onShowOptions(index) {
104
104
  showActionSheet(this.editableOptions(index));
@@ -265,6 +265,7 @@ export declare class YooGridComponent {
265
265
  private gridMap;
266
266
  private itemsSliding;
267
267
  private itemOptions;
268
+ private blockUnhoveer;
268
269
  private horizontalSlidesAnim;
269
270
  private gridApi;
270
271
  private maxPageCount;
@@ -283,7 +284,6 @@ export declare class YooGridComponent {
283
284
  private input;
284
285
  private isSelectionMode;
285
286
  private areItemsDisabled;
286
- private blockUnhoveer;
287
287
  private isSearchBarHidden;
288
288
  private searchContainer;
289
289
  private horizontalScroll;
@@ -440,7 +440,7 @@ export declare class YooGridComponent {
440
440
  onMarkerSelected(event: CustomEvent<IMapMarker[]>): void;
441
441
  onAddressFetchData(ev: CustomEvent<IGridSearch>): void;
442
442
  onAddressChanged(ev: CustomEvent<any>): void;
443
- onItemSlidingDrag(item: IEntity, index: number): Promise<void>;
443
+ onItemSlidingDrag(item: IEntity, itemSlidingId: string): Promise<void>;
444
444
  onHorizontalSlidingEnd(ev: any): void;
445
445
  onMapScroll(ev: CustomEvent<IScrollDetail>): void;
446
446
  onCalendarDateChanged(ev: CustomEvent<IGridCalendarDateRange>): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yoobic/yobi",
3
- "version": "8.1.0-154",
3
+ "version": "8.1.0-155",
4
4
  "description": "Yobi - Yoobic Design System",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.cjs.js",