@ptcwebops/ptcw-design 4.5.8 → 4.5.9
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/cjs/loader.cjs.js +1 -1
- package/dist/cjs/ptc-product-card.cjs.entry.js +1 -1
- package/dist/cjs/ptc-product-highlight-card.cjs.entry.js +3 -1
- package/dist/cjs/ptc-quantity-counter.cjs.entry.js +65 -0
- package/dist/cjs/ptc-readmore.cjs.entry.js +1 -0
- package/dist/cjs/ptcw-design.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/ptc-product-card/ptc-product-card.js +1 -1
- package/dist/collection/components/ptc-product-highlight-card/ptc-product-highlight-card.js +39 -1
- package/dist/collection/components/ptc-quantity-counter/ptc-quantity-counter.css +134 -0
- package/dist/collection/components/ptc-quantity-counter/ptc-quantity-counter.js +128 -0
- package/dist/collection/components/ptc-readmore/ptc-readmore.js +1 -0
- package/dist/custom-elements/index.d.ts +6 -0
- package/dist/custom-elements/index.js +69 -4
- package/dist/esm/loader.js +1 -1
- package/dist/esm/ptc-product-card.entry.js +1 -1
- package/dist/esm/ptc-product-highlight-card.entry.js +3 -1
- package/dist/esm/ptc-quantity-counter.entry.js +61 -0
- package/dist/esm/ptc-readmore.entry.js +1 -0
- package/dist/esm/ptcw-design.js +1 -1
- package/dist/ptcw-design/p-6f08fa33.entry.js +1 -0
- package/dist/ptcw-design/p-7eb22ed5.entry.js +1 -0
- package/dist/ptcw-design/p-adf6b11f.entry.js +1 -0
- package/dist/ptcw-design/p-b18d7d48.entry.js +1 -0
- package/dist/ptcw-design/ptcw-design.esm.js +1 -1
- package/dist/types/components/ptc-product-highlight-card/ptc-product-highlight-card.d.ts +8 -0
- package/dist/types/components/ptc-quantity-counter/ptc-quantity-counter.d.ts +18 -0
- package/dist/types/components.d.ts +38 -0
- package/package.json +1 -1
- package/readme.md +1 -1
- package/dist/ptcw-design/p-18205b4b.entry.js +0 -1
- package/dist/ptcw-design/p-6749ca21.entry.js +0 -1
- package/dist/ptcw-design/p-6cdda407.entry.js +0 -1
|
@@ -1596,6 +1596,14 @@ export namespace Components {
|
|
|
1596
1596
|
* cardTitle
|
|
1597
1597
|
*/
|
|
1598
1598
|
"cardTitle"?: string;
|
|
1599
|
+
/**
|
|
1600
|
+
* customize read less text
|
|
1601
|
+
*/
|
|
1602
|
+
"lessText"?: string;
|
|
1603
|
+
/**
|
|
1604
|
+
* customize read more text
|
|
1605
|
+
*/
|
|
1606
|
+
"moreText"?: string;
|
|
1599
1607
|
}
|
|
1600
1608
|
interface PtcProductList {
|
|
1601
1609
|
"clearButtonLabel": string;
|
|
@@ -1613,6 +1621,10 @@ export namespace Components {
|
|
|
1613
1621
|
}
|
|
1614
1622
|
interface PtcProgressBar {
|
|
1615
1623
|
}
|
|
1624
|
+
interface PtcQuantityCounter {
|
|
1625
|
+
"addToCartLabel": string;
|
|
1626
|
+
"addedLabel": string;
|
|
1627
|
+
}
|
|
1616
1628
|
interface PtcQuote {
|
|
1617
1629
|
/**
|
|
1618
1630
|
* Button CTA Text
|
|
@@ -2466,6 +2478,10 @@ export interface PtcProductSidebarCustomEvent<T> extends CustomEvent<T> {
|
|
|
2466
2478
|
detail: T;
|
|
2467
2479
|
target: HTMLPtcProductSidebarElement;
|
|
2468
2480
|
}
|
|
2481
|
+
export interface PtcQuantityCounterCustomEvent<T> extends CustomEvent<T> {
|
|
2482
|
+
detail: T;
|
|
2483
|
+
target: HTMLPtcQuantityCounterElement;
|
|
2484
|
+
}
|
|
2469
2485
|
export interface PtcReadmoreCharCustomEvent<T> extends CustomEvent<T> {
|
|
2470
2486
|
detail: T;
|
|
2471
2487
|
target: HTMLPtcReadmoreCharElement;
|
|
@@ -3147,6 +3163,12 @@ declare global {
|
|
|
3147
3163
|
prototype: HTMLPtcProgressBarElement;
|
|
3148
3164
|
new (): HTMLPtcProgressBarElement;
|
|
3149
3165
|
};
|
|
3166
|
+
interface HTMLPtcQuantityCounterElement extends Components.PtcQuantityCounter, HTMLStencilElement {
|
|
3167
|
+
}
|
|
3168
|
+
var HTMLPtcQuantityCounterElement: {
|
|
3169
|
+
prototype: HTMLPtcQuantityCounterElement;
|
|
3170
|
+
new (): HTMLPtcQuantityCounterElement;
|
|
3171
|
+
};
|
|
3150
3172
|
interface HTMLPtcQuoteElement extends Components.PtcQuote, HTMLStencilElement {
|
|
3151
3173
|
}
|
|
3152
3174
|
var HTMLPtcQuoteElement: {
|
|
@@ -3544,6 +3566,7 @@ declare global {
|
|
|
3544
3566
|
"ptc-product-list": HTMLPtcProductListElement;
|
|
3545
3567
|
"ptc-product-sidebar": HTMLPtcProductSidebarElement;
|
|
3546
3568
|
"ptc-progress-bar": HTMLPtcProgressBarElement;
|
|
3569
|
+
"ptc-quantity-counter": HTMLPtcQuantityCounterElement;
|
|
3547
3570
|
"ptc-quote": HTMLPtcQuoteElement;
|
|
3548
3571
|
"ptc-readmore": HTMLPtcReadmoreElement;
|
|
3549
3572
|
"ptc-readmore-char": HTMLPtcReadmoreCharElement;
|
|
@@ -5235,6 +5258,14 @@ declare namespace LocalJSX {
|
|
|
5235
5258
|
* cardTitle
|
|
5236
5259
|
*/
|
|
5237
5260
|
"cardTitle"?: string;
|
|
5261
|
+
/**
|
|
5262
|
+
* customize read less text
|
|
5263
|
+
*/
|
|
5264
|
+
"lessText"?: string;
|
|
5265
|
+
/**
|
|
5266
|
+
* customize read more text
|
|
5267
|
+
*/
|
|
5268
|
+
"moreText"?: string;
|
|
5238
5269
|
}
|
|
5239
5270
|
interface PtcProductList {
|
|
5240
5271
|
"clearButtonLabel"?: string;
|
|
@@ -5257,6 +5288,11 @@ declare namespace LocalJSX {
|
|
|
5257
5288
|
}
|
|
5258
5289
|
interface PtcProgressBar {
|
|
5259
5290
|
}
|
|
5291
|
+
interface PtcQuantityCounter {
|
|
5292
|
+
"addToCartLabel"?: string;
|
|
5293
|
+
"addedLabel"?: string;
|
|
5294
|
+
"onAddToCartClicked"?: (event: PtcQuantityCounterCustomEvent<{ sender: any; itemCount: any }>) => void;
|
|
5295
|
+
}
|
|
5260
5296
|
interface PtcQuote {
|
|
5261
5297
|
/**
|
|
5262
5298
|
* Button CTA Text
|
|
@@ -6093,6 +6129,7 @@ declare namespace LocalJSX {
|
|
|
6093
6129
|
"ptc-product-list": PtcProductList;
|
|
6094
6130
|
"ptc-product-sidebar": PtcProductSidebar;
|
|
6095
6131
|
"ptc-progress-bar": PtcProgressBar;
|
|
6132
|
+
"ptc-quantity-counter": PtcQuantityCounter;
|
|
6096
6133
|
"ptc-quote": PtcQuote;
|
|
6097
6134
|
"ptc-readmore": PtcReadmore;
|
|
6098
6135
|
"ptc-readmore-char": PtcReadmoreChar;
|
|
@@ -6255,6 +6292,7 @@ declare module "@stencil/core" {
|
|
|
6255
6292
|
"ptc-product-list": LocalJSX.PtcProductList & JSXBase.HTMLAttributes<HTMLPtcProductListElement>;
|
|
6256
6293
|
"ptc-product-sidebar": LocalJSX.PtcProductSidebar & JSXBase.HTMLAttributes<HTMLPtcProductSidebarElement>;
|
|
6257
6294
|
"ptc-progress-bar": LocalJSX.PtcProgressBar & JSXBase.HTMLAttributes<HTMLPtcProgressBarElement>;
|
|
6295
|
+
"ptc-quantity-counter": LocalJSX.PtcQuantityCounter & JSXBase.HTMLAttributes<HTMLPtcQuantityCounterElement>;
|
|
6258
6296
|
"ptc-quote": LocalJSX.PtcQuote & JSXBase.HTMLAttributes<HTMLPtcQuoteElement>;
|
|
6259
6297
|
"ptc-readmore": LocalJSX.PtcReadmore & JSXBase.HTMLAttributes<HTMLPtcReadmoreElement>;
|
|
6260
6298
|
"ptc-readmore-char": LocalJSX.PtcReadmoreChar & JSXBase.HTMLAttributes<HTMLPtcReadmoreCharElement>;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-
# PTC Design 4.5.
|
|
3
|
+
# PTC Design 4.5.9
|
|
4
4
|
|
|
5
5
|
The site is the place for documentation on PTC Design System
|
|
6
6
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,h as e,H as i,g as a}from"./p-ac75c7ad.js";const o=class{constructor(e){t(this,e),this.moreText="read more",this.lessText=void 0,this.readMorePosition="right",this.display="inline",this.visibleLines="line2",this.visibleLinesCustom=void 0,this.zIndex="z-auto",this.checked=!1,this.size="small",this.isIcon=!1,this.color="blue"}async updateReadmoreStatus(){setTimeout((()=>{this.addBtnTruncated()}),100)}addBtnTruncated(){this.el.shadowRoot.querySelectorAll(".read-more-text").forEach((t=>{t.classList[t.scrollHeight>t.clientHeight?"add":"remove"]("truncated")}))}enableAddTruncatedClass(t){const e=document.querySelectorAll(t);for(const t of Array.from(e))t&&t.addEventListener("click",(()=>{setTimeout((()=>{this.addBtnTruncated()}),100)}))}componentDidLoad(){this.addBtnTruncated(),document.addEventListener("readystatechange",(()=>{"complete"===document.readyState&&this.addBtnTruncated()})),this.enableAddTruncatedClass("tab-header"),this.enableAddTruncatedClass("ptc-ellipsis-dropdown")}handleClick(t){this.addBtnTruncated(),this.checked=t.target.checked;const e=this.el.shadowRoot.querySelector(".read-more-cta-label");e.innerHTML=this.checked?`<span> ${this.lessText?this.lessText:""} </span>`:`<span> ${this.moreText?this.moreText:""}</span>`,this.checked?e.classList.add("show-less-cta"):e.classList.remove("show-less-cta")}render(){const t=this.getCssClassMap();return e(i,{class:this.display},e("div",{class:t},e("input",{type:"checkbox",id:"expanded",onClick:t=>this.handleClick(t)}),this.visibleLines||this.visibleLinesCustom?e("p",{class:`read-more-text ${this.visibleLines}`,style:{WebkitLineClamp:`${this.visibleLinesCustom}`}},e("slot",null)):null,e("label",{htmlFor:"expanded",role:"button",class:this.zIndex+" "+this.readMorePosition+" read-more-cta-label"},e("span",null,this.moreText))))}getCssClassMap(){return{box:!0,[this.color]:!0,[this.size]:!0,"add-icon":this.isIcon}}get el(){return a(this)}};o.style="h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block}.box input{opacity:0;position:absolute;pointer-events:none}.box .read-more-text{display:-webkit-box;-webkit-box-orient:vertical;margin:0;overflow:hidden;word-wrap:break-word}.box .line1{-webkit-line-clamp:1}.box .line2{-webkit-line-clamp:2}.box .line3{-webkit-line-clamp:3}.box .line4{-webkit-line-clamp:4}.box .line5{-webkit-line-clamp:5}.box .line10{-webkit-line-clamp:10}.box input~label{display:block;position:relative;cursor:pointer;right:0;margin-top:var(--ptc-element-spacing-02);font-weight:var(--ptc-font-weight-bold);font-size:var(--ptc-font-size-x-small);line-height:var(--ptc-line-height-densest);text-decoration-line:underline;color:var(--color-hyperlink);text-align:right;margin-right:var(--ptc-element-spacing-07)}.box input~label.left{text-align:left}.box input~label.right{text-align:right}.box input~label.center{text-align:center;margin-right:0}.box .z-auto{z-index:auto}.box .z-1{z-index:1}.box .z-2{z-index:2}.box .z-3{z-index:3}.box .z-999{z-index:999}.box input:checked+.read-more-text{-webkit-line-clamp:unset !important}.box .read-more-text:not(.truncated)~label{display:none}.box .show-less-cta{display:block !important}:host .box.add-icon .read-more-cta-label span{display:inline-block;position:relative;padding-right:var(--ptc-element-spacing-03)}:host .box.add-icon .read-more-cta-label span::after{content:\"\";background-image:url(\"data:image/svg+xml,%3Csvg viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2300890B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E\");width:10px;height:7px;background-size:cover;position:absolute;right:-5px;bottom:7px}:host .box.add-icon .read-more-cta-label.show-less-cta span::after{transform:rotate(180deg)}:host .box.blue .read-more-cta-label{color:var(--color-hyperlink)}:host .box.gray .read-more-cta-label{color:var(--color-gray-10)}:host .box.green .read-more-cta-label{color:var(--color-green-07)}:host .box.initial .read-more-cta-label{color:initial}:host .box.small .read-more-cta-label{font-size:var(--ptc-font-size-x-small);line-height:var(--ptc-line-height-densest)}:host .box.medium .read-more-cta-label{font-size:var(--ptc-font-size-small);line-height:var(--ptc-line-height-p)}:host .box.large .read-more-cta-label{font-size:var(--ptc-font-size-large);line-height:var(--ptc-line-height-p)}:host .box.large.add-icon .read-more-cta-label span{padding-right:var(--ptc-element-spacing-04)}:host .box.large.add-icon .read-more-cta-label span::after{width:15px;height:10px}";export{o as ptc_readmore}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,h as i,H as e}from"./p-ac75c7ad.js";const a=class{constructor(i){t(this,i),this.cardTitle=void 0,this.cardImage=void 0,this.cardImageAltText=void 0,this.cardDescription=void 0}render(){return i(e,null,i("ptc-title",{type:"h4",upperline:"no-upperline","title-margin":"margin-flush","title-size":"small","text-align":"center"},i("ptc-tooltip",{"text-display":"block","text-lines":"2","z-index":"z-999",description:this.cardTitle,position:"bottom",width:"full-width"})),i("ptc-picture",{alt:this.cardImageAltText,src:this.cardImage,"image-alignment":"center",width:"69","display-image":"inline-block",styles:"img{margin: 12px auto 18px auto}"}),i("ptc-para",{"font-size":"x-small","para-margin":"margin-flush","para-line-h":"line-height-densest","para-align":"left","para-z-index":"z-auto"},i("ptc-tooltip",{"text-display":"block","text-lines":"5","z-index":"z-999",description:this.cardDescription,position:"bottom",width:"full-width"})))}};a.style="h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{max-width:300px;display:block;padding:18px 10px 12px 10px;border:1px solid var(--color-gray-04);border-radius:var(--ptc-border-radius-standard);margin:auto;height:100%}:host ptc-picture{min-height:100px}";export{a as ptc_product_highlight_card}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,h as i,H as e,g as a}from"./p-ac75c7ad.js";const l=class{constructor(i){t(this,i),this.cardTitle=void 0,this.cardImage=void 0,this.cardImageAltText=void 0,this.cardDescription=void 0,this.cardCtaText=void 0,this.toggleCtaTitle=void 0,this.isOpen=!1,this.isSlotEmpty=void 0}togglePanel(){this.isOpen=!this.isOpen}render(){return i(e,null,i("div",{class:"card-wrap"},this.cardImage&&i("ptc-picture",{alt:"image-test",src:this.cardImage,"display-image":"inline-block",width:"38"}),i("div",{class:"content"},i("div",null,i("ptc-title",{type:"h3",upperline:"no-upperline","title-size":"medium","title-weight":"w-8","title-margin":"margin-flush","title-display":"block","title-height":"densest"},i("ptc-tooltip",{"text-display":"block","text-lines":"3","z-index":"z-999",description:this.cardTitle,position:"bottom",width:"full-width"})),i("ptc-spacer",{size:"x-small"}),i("ptc-spacer",{size:"xx-small",breakpoint:"x-small"}),i("ptc-para",{"font-size":"x-small","para-margin":"margin-flush","para-line-h":"line-height-p","para-z-index":"z-auto"},i("ptc-tooltip",{"text-display":"block","text-lines":"16","z-index":"z-999",description:this.cardDescription,position:"bottom",width:"full-width"}))),i("div",{class:"cta-wrap"},i("slot",{name:"cta"})))),this.toggleCtaTitle&&i("ptc-para",{class:"toggle-btn","font-size":"small","para-margin":"margin-flush","para-line-h":"line-height-p","para-z-index":"z-auto",onClick:()=>this.togglePanel()},i("span",{class:"toggleText"},this.toggleCtaTitle)),i("div",{class:"product-highlights-container"},i("slot",null)))}get hostElement(){return a(this)}};l.style='h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block;background-color:var(--color-white);border-radius:var(--ptc-border-radius-standard);margin-bottom:var(--ptc-layout-spacing-03)}:host .card-wrap{display:flex;align-items:center}:host .card-wrap ptc-picture{display:none}@media only screen and (min-width: 768px){:host .card-wrap ptc-picture{display:block;margin-left:var(--ptc-element-spacing-06);min-width:38px;max-width:38px}}:host .card-wrap .content{padding:var(--ptc-layout-spacing-03) var(--ptc-layout-spacing-04) var(--ptc-layout-spacing-03) var(--ptc-layout-spacing-04)}@media only screen and (min-width: 768px){:host .card-wrap .content{padding:var(--ptc-layout-spacing-03) var(--ptc-layout-spacing-03) var(--ptc-layout-spacing-03) 44px}}@media only screen and (min-width: 1200px){:host .card-wrap .content{display:flex;align-items:center;justify-content:space-between;width:100%}}:host .card-wrap .content .cta-wrap{margin-left:0;margin-top:24px;min-width:146px;text-align:left}@media only screen and (min-width: 1200px){:host .card-wrap .content .cta-wrap{margin-top:0px;margin-left:44px;text-align:right}}:host .toggle-btn{padding:16px;text-align:center;border-top:1px solid var(--color-gray-04);display:block;cursor:pointer}:host .toggle-btn svg{margin-right:var(--ptc-element-spacing-03);vertical-align:middle;margin-top:-2px}:host .toggle-btn .toggleText::before{content:"";display:inline-block;width:18px;height:18px;background-image:url(\'data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" rx="4" fill="%2300890B"/><path fill-rule="evenodd" clip-rule="evenodd" d="M9.953 4.23535H8.04712V8.04712H4.23535V9.953H8.04712V13.7648H9.953V9.953H13.7648V8.04712H9.953V4.23535Z" fill="white"/></svg>\');margin-right:12px;vertical-align:middle;margin-top:-2px}:host .product-highlights-container{padding:0px 20px 16px 20px;display:none}:host(.has-opened) .toggleText::before{background-image:url(\'data:image/svg+xml,<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.632812" width="17.9798" height="18" rx="4" fill="%2300890B"/><g clip-path="url(%23clip0_220_1413)"><path d="M4.86328 7.98749V10.0125H14.382V7.98749H4.86328Z" fill="white"/></g><defs><clipPath id="clip0_220_1413"><rect width="9.51872" height="9.52941" fill="white" transform="translate(4.86328 4.23529)"/></clipPath></defs></svg>\')}:host(.has-opened) .product-highlights-container{display:block}';export{l as ptc_product_card}
|