@yoobic/yobi 8.5.2-1 → 8.5.2

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.
@@ -429,7 +429,7 @@ svg:not(:root) {
429
429
  --bottom-container-padding: 0;
430
430
  }
431
431
  :host yoo-navbar.hide-tags yoo-entity-search-tags {
432
- margin: 0 var(--spacing-08, 0.5rem);
432
+ margin: 0;
433
433
  }
434
434
  :host yoo-navbar.hide-tags.hide-filters {
435
435
  --top-container-padding: 0.75rem var(--spacing-08, 0.5rem);
@@ -2209,9 +2209,8 @@ export class YooGridComponent {
2209
2209
  })))), isWeb(this.host) && (h("div", { class: "nav-bar-entity-right", slot: "before-sort" }, h("slot", { name: "nav-bar-entity-right" }))), h("slot", { name: "search-buttons" })));
2210
2210
  }
2211
2211
  renderEntitySearchTags(renderSearchOrAutocomplete) {
2212
- var _a;
2213
2212
  const showAdvancedFilters = (!isWeb(this.host) && this.showSearch !== false) || (isWeb(this.host) && !!this.model) || this.forceTagFilters;
2214
- return ((_a = this.tags) === null || _a === void 0 ? void 0 : _a.length) > 0 && (h("yoo-entity-search-tags", { slot: this.hideTags || !this.tags || (this.tags && this.tags.length === 0) ? 'start' : renderSearchOrAutocomplete ? 'content' : '', expandedTags: this.gridIsExpanded, hideTags: this.hideTags || !this.tags || !this.tags.length, sortsAndFilters: this.sortsAndFilters, onFilterAdvanced: () => this.onShowFilterAdvanced(), tags: isWeb(this.host) && !this.gridIsExpanded ? [] : this.tags, values: this.selectedTags || [], hideAdvancedFilters: !showAdvancedFilters || this.isShowAdvancedFiltersDisplayedIntoSearch, onSelected: (ev) => this.onTagSelect(ev), disabled: this.isSelectAll }));
2213
+ return (h("yoo-entity-search-tags", { slot: this.hideTags || !this.tags || (this.tags && this.tags.length === 0) ? 'start' : renderSearchOrAutocomplete ? 'content' : '', expandedTags: this.gridIsExpanded, hideTags: this.hideTags || !this.tags || !this.tags.length, sortsAndFilters: this.sortsAndFilters, onFilterAdvanced: () => this.onShowFilterAdvanced(), tags: isWeb(this.host) && !this.gridIsExpanded ? [] : this.tags, values: this.selectedTags || [], hideAdvancedFilters: !showAdvancedFilters || this.isShowAdvancedFiltersDisplayedIntoSearch, onSelected: (ev) => this.onTagSelect(ev), disabled: this.isSelectAll }));
2215
2214
  }
2216
2215
  onTabSelected(ev) {
2217
2216
  this.selectedTab = this.tabs[ev.detail.nextIndex];