@startinblox/components-ds4go 3.3.4 → 3.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -6220,15 +6220,6 @@ let w = class extends Zo {
|
|
|
6220
6220
|
>` : l;
|
|
6221
6221
|
})}`;
|
|
6222
6222
|
}
|
|
6223
|
-
_renderDataOfferBadgeRow() {
|
|
6224
|
-
return n`<div class="badge-row flex flex-row">
|
|
6225
|
-
${this.renderTemplateWhenWith(["offers"], this._renderKindBadgeComponent)}
|
|
6226
|
-
${this.renderTemplateWhenWith(
|
|
6227
|
-
["categories"],
|
|
6228
|
-
this._renderCategoryBadgeComponent
|
|
6229
|
-
)}
|
|
6230
|
-
</div>`;
|
|
6231
|
-
}
|
|
6232
6223
|
_renderColumns(...e) {
|
|
6233
6224
|
const t = e.filter((i) => i !== l);
|
|
6234
6225
|
return t.length === 1 ? e[0] : n`<div class="multiple-columns flex flex-row flex-1">
|
package/package.json
CHANGED
|
@@ -1531,16 +1531,6 @@ export class Ds4goCatalogModal extends TemsObjectHandler {
|
|
|
1531
1531
|
})}`;
|
|
1532
1532
|
}
|
|
1533
1533
|
|
|
1534
|
-
_renderDataOfferBadgeRow(): TemplateResult {
|
|
1535
|
-
return html`<div class="badge-row flex flex-row">
|
|
1536
|
-
${this.renderTemplateWhenWith(["offers"], this._renderKindBadgeComponent)}
|
|
1537
|
-
${this.renderTemplateWhenWith(
|
|
1538
|
-
["categories"],
|
|
1539
|
-
this._renderCategoryBadgeComponent,
|
|
1540
|
-
)}
|
|
1541
|
-
</div>`;
|
|
1542
|
-
}
|
|
1543
|
-
|
|
1544
1534
|
_renderColumns(...columns: TemplateResultOrSymbol[]): TemplateResultOrSymbol {
|
|
1545
1535
|
const filteredColumns = columns.filter((col) => col !== nothing);
|
|
1546
1536
|
|