@colijnit/product 259.1.3 → 260.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/README.md +27 -27
  2. package/app/components/product-related/product-related.component.d.ts +2 -2
  3. package/app/style/product-globals.scss +183 -183
  4. package/bundles/colijnit-product.umd.js +37 -17
  5. package/bundles/colijnit-product.umd.js.map +1 -1
  6. package/colijnit-product.metadata.json +1 -1
  7. package/esm2015/app/components/core/header/header.component.js +8 -8
  8. package/esm2015/app/components/image-carousel/image-carousel.component.js +55 -55
  9. package/esm2015/app/components/product-additional-description/product-additional-description.component.js +8 -8
  10. package/esm2015/app/components/product-additional-info/product-additional-info.component.js +6 -6
  11. package/esm2015/app/components/product-addtocart/product-addtocart.component.js +31 -31
  12. package/esm2015/app/components/product-delivery/product-delivery.component.js +10 -10
  13. package/esm2015/app/components/product-description/product-description.component.js +6 -6
  14. package/esm2015/app/components/product-documents/product-documents.component.js +7 -7
  15. package/esm2015/app/components/product-info-tabs/product-info-tabs.component.js +23 -23
  16. package/esm2015/app/components/product-page/product-page.component.js +1 -1
  17. package/esm2015/app/components/product-price/product-price.component.js +12 -12
  18. package/esm2015/app/components/product-properties/product-properties.component.js +11 -11
  19. package/esm2015/app/components/product-related/product-related.component.js +30 -28
  20. package/esm2015/app/components/product-selector-type/product-selector-type.component.js +20 -20
  21. package/esm2015/app/components/product-stock/product-stock.component.js +10 -10
  22. package/esm2015/app/components/product-symbols/product-symbols.component.js +15 -15
  23. package/esm2015/app/enum/icon.enum.js +1 -1
  24. package/esm2015/app/ione-product.component.js +12 -12
  25. package/esm2015/app/ione-product.module.js +1 -1
  26. package/esm2015/app/model/icon.js +1 -1
  27. package/esm2015/app/product-version.js +3 -3
  28. package/fesm2015/colijnit-product.js +250 -248
  29. package/fesm2015/colijnit-product.js.map +1 -1
  30. package/package.json +6 -6
@@ -31,8 +31,8 @@ class Version {
31
31
  constructor() {
32
32
  this.name = "@colijnit/product";
33
33
  this.description = "Product detail page project for iOne";
34
- this.symVer = "259.1.3";
35
- this.publishDate = "29-9-2025 15:45:45";
34
+ this.symVer = "260.1.1";
35
+ this.publishDate = "15-12-2025 17:02:25";
36
36
  }
37
37
  }
38
38
 
@@ -837,17 +837,17 @@ class IoneProductComponent {
837
837
  IoneProductComponent.decorators = [
838
838
  { type: Component, args: [{
839
839
  selector: 'app-ione-product',
840
- template: `
841
- <app-product-page *ngIf="settingsLoaded"
842
- [createFrozenArticle]="handleAddArticleInternally"
843
- [isReturn]="isReturn"
844
- [sku]="sku"
845
- [showRelatedProductsPopup]="showRelatedProductsPopup"
846
- [enableRenderCarousel]="enableRenderCarousel"
847
- (openStockEvent)="openStock()"
848
- ></app-product-page>
849
- <!-- <co-button [label]="'click'" (click)="showHD = !showHD"></co-button>
850
- <co-product-hd [sku]="'657946ca-e1e1-41fd-7ae0-08dbf7df0cef'" *ngIf="showHD"></co-product-hd>-->
840
+ template: `
841
+ <app-product-page *ngIf="settingsLoaded"
842
+ [createFrozenArticle]="handleAddArticleInternally"
843
+ [isReturn]="isReturn"
844
+ [sku]="sku"
845
+ [showRelatedProductsPopup]="showRelatedProductsPopup"
846
+ [enableRenderCarousel]="enableRenderCarousel"
847
+ (openStockEvent)="openStock()"
848
+ ></app-product-page>
849
+ <!-- <co-button [label]="'click'" (click)="showHD = !showHD"></co-button>
850
+ <co-product-hd [sku]="'657946ca-e1e1-41fd-7ae0-08dbf7df0cef'" *ngIf="showHD"></co-product-hd>-->
851
851
  `,
852
852
  providers: [
853
853
  ProductSettingsService,
@@ -1248,25 +1248,25 @@ class ProductSelectorTypeComponent {
1248
1248
  ProductSelectorTypeComponent.decorators = [
1249
1249
  { type: Component, args: [{
1250
1250
  selector: 'app-product-selector-type',
1251
- template: `
1252
- <div *ngIf="show2D || show3D" class="show-in" [textContent]="'SHOW_IN' | localize"></div>
1253
- <co-icon *ngIf="show2D && !showRenderCarousel" class="selector-type-icon"
1254
- [class.active]="currentType === type.TwoD"
1255
- [iconData]="twoDIcon"
1256
- (click)="handleIconClick(type.TwoD)"
1257
- ></co-icon>
1258
-
1259
- <co-icon *ngIf="show2D && showRenderCarousel" class="selector-type-icon"
1260
- [class.active]="currentType === type.TwoD"
1261
- [iconData]="twoDIcon"
1262
- (click)="handleIconClick(type.TwoD)"
1263
- ></co-icon>
1264
-
1265
- <co-icon *ngIf="show3D" class="selector-type-icon"
1266
- [class.active]="currentType === type.ThreeD"
1267
- [iconData]="threeDIcon"
1268
- (click)="handleIconClick(type.ThreeD)"
1269
- ></co-icon>
1251
+ template: `
1252
+ <div *ngIf="show2D || show3D" class="show-in" [textContent]="'SHOW_IN' | localize"></div>
1253
+ <co-icon *ngIf="show2D && !showRenderCarousel" class="selector-type-icon"
1254
+ [class.active]="currentType === type.TwoD"
1255
+ [iconData]="twoDIcon"
1256
+ (click)="handleIconClick(type.TwoD)"
1257
+ ></co-icon>
1258
+
1259
+ <co-icon *ngIf="show2D && showRenderCarousel" class="selector-type-icon"
1260
+ [class.active]="currentType === type.TwoD"
1261
+ [iconData]="twoDIcon"
1262
+ (click)="handleIconClick(type.TwoD)"
1263
+ ></co-icon>
1264
+
1265
+ <co-icon *ngIf="show3D" class="selector-type-icon"
1266
+ [class.active]="currentType === type.ThreeD"
1267
+ [iconData]="threeDIcon"
1268
+ (click)="handleIconClick(type.ThreeD)"
1269
+ ></co-icon>
1270
1270
  `,
1271
1271
  styles: [":host{display:flex;flex-direction:row;align-items:center}:host .show-in{display:none}:host>*:not(:last-child){margin-right:10px}::ng-deep co-icon.selector-type-icon{box-shadow:inset 0 0 0 1px #22313c;border-radius:50%;background:none;height:34px;width:34px;cursor:pointer}::ng-deep co-icon.selector-type-icon.active{box-shadow:none;background:#74B77F;transition:all .2s ease-in-out}::ng-deep co-icon.selector-type-icon.active [fill]{fill:#fff}\n"]
1272
1272
  },] }
@@ -1553,60 +1553,60 @@ class ImageCarouselComponent {
1553
1553
  ImageCarouselComponent.decorators = [
1554
1554
  { type: Component, args: [{
1555
1555
  selector: 'app-image-carousel',
1556
- template: `
1557
- <div id="product_page_carousel">
1558
- <div id="product_page_carousel_items">
1559
- <co-loader [isShown]="true" *ngIf="showLoader"></co-loader>
1560
- <div #carousel class="inner-carousel">
1561
- <!-- This has been taken out of the for loop to prevent flashing images when updating. -->
1562
- <div *ngIf="imageViewModels[0]" class="carousel-item" [id]="'slide-0'" [class.active]="isCurrentIndex(0)" (click)="handleShowImage(imageViewModels[0])">
1563
- <img [src]="imageViewModels[0].source">
1564
- </div>
1565
- <div *ngFor="let imageViewModel of imageViewModels.slice(1); let index = index" class="carousel-item"
1566
- [id]="'slide-' + (index + 1)" [class.active]="isCurrentIndex((index + 1))" (click)="handleShowImage(imageViewModel)">
1567
- <img [src]="imageViewModel.source">
1568
- </div>
1569
- <div class="carousel-scroller-layer" *ngIf="imageViewModels && imageViewModels.length > 1">
1570
- <div class="carousel-item-scroller prev" (click)="gotoPrevSlide()" *ngIf="currentIndex > 0"></div>
1571
- <div class="carousel-item-scroller next" (click)="gotoNextSlide()" *ngIf="currentIndex < images.length - 1"></div>
1572
- </div>
1573
- </div>
1574
- <!--
1575
- <co-icon class="selector-type-icon refresh-button" [iconData]="iconCache.getIcon(icons.Refresh)" (click)="onForceRenderImage()" [class.loading]="showLoader" *ngIf="showRefresh"></co-icon>
1576
- -->
1577
- </div>
1578
-
1579
- <div id="product_page_carousel_thumbs">
1580
- <co-scroll-container class="scroll-container" *ngIf="imageViewModels && imageViewModels.length > 1">
1581
- <div *ngFor="let imageViewModel of imageViewModels; let index = index" class="carousel-thumb"
1582
- [class.active]="index === currentIndex">
1583
- <img [src]="imageViewModel.source" (click)="handleThumbClick(index)"/>
1584
- </div>
1585
- </co-scroll-container>
1586
- </div>
1587
- </div>
1588
- <!-- Modal (real popup) -->
1589
- <div
1590
- class="image-modal"
1591
- *ngIf="isPopupOpen"
1592
- (click)="closePopup()"
1593
- role="dialog"
1594
- aria-modal="true"
1595
- aria-label="Image preview"
1596
- >
1597
- <div class="image-modal__content" (click)="$event.stopPropagation()">
1598
- <button
1599
- class="image-modal__close"
1600
- type="button"
1601
- aria-label="Close"
1602
- (click)="closePopup()"
1603
- >
1604
- ×
1605
- </button>
1606
-
1607
- <img [src]="selectedImage?.originalSource" alt="Image preview" />
1608
- </div>
1609
- </div>
1556
+ template: `
1557
+ <div id="product_page_carousel">
1558
+ <div id="product_page_carousel_items">
1559
+ <co-loader [isShown]="true" *ngIf="showLoader"></co-loader>
1560
+ <div #carousel class="inner-carousel">
1561
+ <!-- This has been taken out of the for loop to prevent flashing images when updating. -->
1562
+ <div *ngIf="imageViewModels[0]" class="carousel-item" [id]="'slide-0'" [class.active]="isCurrentIndex(0)" (click)="handleShowImage(imageViewModels[0])">
1563
+ <img [src]="imageViewModels[0].source">
1564
+ </div>
1565
+ <div *ngFor="let imageViewModel of imageViewModels.slice(1); let index = index" class="carousel-item"
1566
+ [id]="'slide-' + (index + 1)" [class.active]="isCurrentIndex((index + 1))" (click)="handleShowImage(imageViewModel)">
1567
+ <img [src]="imageViewModel.source">
1568
+ </div>
1569
+ <div class="carousel-scroller-layer" *ngIf="imageViewModels && imageViewModels.length > 1">
1570
+ <div class="carousel-item-scroller prev" (click)="gotoPrevSlide()" *ngIf="currentIndex > 0"></div>
1571
+ <div class="carousel-item-scroller next" (click)="gotoNextSlide()" *ngIf="currentIndex < images.length - 1"></div>
1572
+ </div>
1573
+ </div>
1574
+ <!--
1575
+ <co-icon class="selector-type-icon refresh-button" [iconData]="iconCache.getIcon(icons.Refresh)" (click)="onForceRenderImage()" [class.loading]="showLoader" *ngIf="showRefresh"></co-icon>
1576
+ -->
1577
+ </div>
1578
+
1579
+ <div id="product_page_carousel_thumbs">
1580
+ <co-scroll-container class="scroll-container" *ngIf="imageViewModels && imageViewModels.length > 1">
1581
+ <div *ngFor="let imageViewModel of imageViewModels; let index = index" class="carousel-thumb"
1582
+ [class.active]="index === currentIndex">
1583
+ <img [src]="imageViewModel.source" (click)="handleThumbClick(index)"/>
1584
+ </div>
1585
+ </co-scroll-container>
1586
+ </div>
1587
+ </div>
1588
+ <!-- Modal (real popup) -->
1589
+ <div
1590
+ class="image-modal"
1591
+ *ngIf="isPopupOpen"
1592
+ (click)="closePopup()"
1593
+ role="dialog"
1594
+ aria-modal="true"
1595
+ aria-label="Image preview"
1596
+ >
1597
+ <div class="image-modal__content" (click)="$event.stopPropagation()">
1598
+ <button
1599
+ class="image-modal__close"
1600
+ type="button"
1601
+ aria-label="Close"
1602
+ (click)="closePopup()"
1603
+ >
1604
+ ×
1605
+ </button>
1606
+
1607
+ <img [src]="selectedImage?.originalSource" alt="Image preview" />
1608
+ </div>
1609
+ </div>
1610
1610
  `,
1611
1611
  changeDetection: ChangeDetectionStrategy.OnPush,
1612
1612
  styles: [":host{max-height:540px;height:100%;position:relative}:host:not(.resizing) .inner-carousel{scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory}#product_page_carousel{position:relative}#product_page_carousel .refresh-button{position:absolute;bottom:10px;right:10px;background:#fff}#product_page_carousel .refresh-button.loading{animation:spin 1s linear infinite}#product_page_carousel .refresh-button:hover{box-shadow:none;background:#74B77F;transition:all .2s ease-in-out}#product_page_carousel .refresh-button:hover ::ng-deep svg path{fill:#fff!important}#product_page_carousel #product_page_carousel_items{position:relative;margin-bottom:10px}#product_page_carousel #product_page_carousel_items ::ng-deep co-loader{position:absolute}#product_page_carousel .inner-carousel{display:flex;flex-direction:row;align-items:center;overflow:hidden;max-height:500px;border:1px solid #efefef}#product_page_carousel .carousel-item{max-height:500px;width:100%;display:flex;cursor:zoom-in;flex-shrink:0;flex-grow:0}#product_page_carousel .carousel-item img{width:100%;height:auto;-o-object-fit:contain;object-fit:contain}#product_page_carousel .carousel-scroller-layer{height:100%;width:100%;position:absolute;pointer-events:none;top:0;left:0}#product_page_carousel #product_page_carousel_thumbs{display:flex;justify-content:flex-start;height:80px;margin-left:auto;margin-right:auto}#product_page_carousel #product_page_carousel_thumbs ::ng-deep co-scroll-container{padding:0 22px}#product_page_carousel #product_page_carousel_thumbs ::ng-deep co-scroll-container .content-wrapper{padding:0}#product_page_carousel #product_page_carousel_thumbs .carousel-thumb{opacity:1;cursor:pointer;transition:all .2s ease;padding:4px;border:1px solid #f6f5f4}#product_page_carousel #product_page_carousel_thumbs .carousel-thumb.active,#product_page_carousel #product_page_carousel_thumbs .carousel-thumb:hover{border-color:#22313c}#product_page_carousel #product_page_carousel_thumbs .carousel-thumb:not(:last-child){margin-right:10px}#product_page_carousel #product_page_carousel_thumbs .carousel-thumb img{height:68px}.image-modal{position:fixed;inset:0;background:rgba(0,0,0,.8);display:flex;align-items:center;justify-content:center;z-index:1000}.image-modal__content{position:relative;max-width:90vw;max-height:90vh}.image-modal__content img{max-width:90vw;max-height:90vh;-o-object-fit:contain;object-fit:contain;display:block}.image-modal__close{position:fixed;top:15px;right:30px;background:transparent;border:none;color:#fff;font-size:60px;line-height:1;cursor:pointer}@media screen and (max-width: 650px){#product_page_carousel_thumbs{height:57px!important}#product_page_carousel_thumbs .carousel-thumb img{height:50px!important}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"]
@@ -1656,11 +1656,11 @@ class ProductDescriptionComponent {
1656
1656
  ProductDescriptionComponent.decorators = [
1657
1657
  { type: Component, args: [{
1658
1658
  selector: 'app-product-description',
1659
- template: `
1660
- <div class="pd-title-wrapper">
1661
- <span class="pd-description" [textContent]="article?.descriptionRetail" *ngIf="article?.descriptionRetail"></span>
1662
- <span class="pd-sku" [textContent]="article?.articleNr" *ngIf="article?.articleNr"></span>
1663
- </div>
1659
+ template: `
1660
+ <div class="pd-title-wrapper">
1661
+ <span class="pd-description" [textContent]="article?.descriptionRetail" *ngIf="article?.descriptionRetail"></span>
1662
+ <span class="pd-sku" [textContent]="article?.articleNr" *ngIf="article?.articleNr"></span>
1663
+ </div>
1664
1664
  `,
1665
1665
  styles: [":host{display:block}.pd-title-wrapper{margin:20px 0 0}.pd-description{color:#22313c;font-size:25px;font-weight:bold;width:100%;display:block}.pd-sku{color:#5b6875;font-size:16px}@media screen and (max-width: 650px){.pd-description{font-size:21px}.pd-sku{font-size:13px}}\n"]
1666
1666
  },] }
@@ -1741,13 +1741,13 @@ class ProductAdditionalDescriptionComponent {
1741
1741
  ProductAdditionalDescriptionComponent.decorators = [
1742
1742
  { type: Component, args: [{
1743
1743
  selector: 'app-product-additional-description',
1744
- template: `
1745
- <ng-container *ngIf="description !== ''">
1746
- <div class="pd-additional-description">
1747
- <p [innerHTML]="description"></p>
1748
- <button class="pd-read-more-btn" [textContent]="'READ_MORE' | localize" (click)="onReadMore()"></button>
1749
- </div>
1750
- </ng-container>
1744
+ template: `
1745
+ <ng-container *ngIf="description !== ''">
1746
+ <div class="pd-additional-description">
1747
+ <p [innerHTML]="description"></p>
1748
+ <button class="pd-read-more-btn" [textContent]="'READ_MORE' | localize" (click)="onReadMore()"></button>
1749
+ </div>
1750
+ </ng-container>
1751
1751
  `,
1752
1752
  styles: [":host{display:block;padding-top:0!important}:host *:focus{outline:0!important}:host .pd-additional-description{line-height:190%;color:#22313c;font-size:13px}:host .pd-read-more-btn{color:#2b60a7;border:none;background:transparent;cursor:pointer;text-decoration:underline;font-family:iOneMontserrat}:host .pd-read-more-btn:hover{color:#74b77f}@media screen and (max-width: 650px){:host .pd-additional-description{font-size:12px}}\n"]
1753
1753
  },] }
@@ -1827,17 +1827,17 @@ class ProductPriceComponent {
1827
1827
  ProductPriceComponent.decorators = [
1828
1828
  { type: Component, args: [{
1829
1829
  selector: 'app-product-price',
1830
- template: `
1831
- <div *ngIf="toPrice">
1832
- <div class="price-wrapper" *ngIf="fromPrice > toPrice">
1833
- <div class="from-price-label" [textContent]="fromLabel | localize"></div>
1834
- <div class="from-price" [textContent]="fromPrice | priceDisplay: valutaSign"></div>
1835
- </div>
1836
- <div class="price-wrapper">
1837
- <div class="to-price-label" [textContent]="toLabel | localize"></div>
1838
- <div class="to-price" [textContent]="toPrice | priceDisplay: valutaSign"></div>
1839
- </div>
1840
- </div>
1830
+ template: `
1831
+ <div *ngIf="toPrice">
1832
+ <div class="price-wrapper" *ngIf="fromPrice > toPrice">
1833
+ <div class="from-price-label" [textContent]="fromLabel | localize"></div>
1834
+ <div class="from-price" [textContent]="fromPrice | priceDisplay: valutaSign"></div>
1835
+ </div>
1836
+ <div class="price-wrapper">
1837
+ <div class="to-price-label" [textContent]="toLabel | localize"></div>
1838
+ <div class="to-price" [textContent]="toPrice | priceDisplay: valutaSign"></div>
1839
+ </div>
1840
+ </div>
1841
1841
  `,
1842
1842
  styles: [":host{display:flex;flex-direction:column}.price-wrapper{width:100%;font-size:15px;margin:0 0 5px;display:inline-block}.price-wrapper:last-child{margin:0}.from-price-label,.to-price-label{color:#5b6875;display:none}.from-price{font-size:16px;font-weight:bold;text-decoration:line-through;color:#5b6875}.to-price{font-size:25px;font-weight:bold;color:#74b77f}@media screen and (max-width: 650px){.from-price{font-size:13px}.to-price{font-size:21px}}\n"]
1843
1843
  },] }
@@ -1986,36 +1986,36 @@ class ProductAddtocartComponent {
1986
1986
  ProductAddtocartComponent.decorators = [
1987
1987
  { type: Component, args: [{
1988
1988
  selector: 'app-product-addtocart',
1989
- template: `
1990
- <div class="atc-wrapper">
1991
- <ng-container *ngIf="isReturn">
1992
- <co-number-picker *ngIf="!configurable && !configuring" class="quantity-select" [(model)]="quantity" [min]="-100" horizontal></co-number-picker>
1993
- </ng-container>
1994
-
1995
- <ng-container *ngIf="!isReturn">
1996
- <co-number-picker *ngIf="!configurable && !configuring" class="quantity-select" [(model)]="quantity" [min]="1" horizontal></co-number-picker>
1997
- </ng-container>
1998
-
1999
- <div class="button-wrapper" *ngIf="configurable">
2000
- <co-button class="configure-button"
2001
- [iconData]="iconCache.getIcon(icon.MagicWand)"
2002
- [label]="'CONFIGURE' | localize"
2003
- (onClick)="startConfiguration.emit()"
2004
- ></co-button>
2005
- </div>
2006
- <div class="button-wrapper" *ngIf="showAddToCart && !configurable">
2007
- <co-button #addtocartbutton class="cart-button"
2008
- [iconData]="iconCache.getIcon(icon.AddToCartDrop)"
2009
- [label]="'SHOPPING_CART_IN' | localize"
2010
- (onClick)="handleAddToCartClick(quantity)"
2011
- ></co-button>
2012
- <co-button class="cart-button quote" *ngIf="showQuoteButton"
2013
- [iconData]="iconCache.getIcon(icon.Quote)"
2014
- [label]="'QUOTATION' | localize"
2015
- (onClick)="handleAddToQuoteClick(quantity)"
2016
- ></co-button>
2017
- </div>
2018
- </div>
1989
+ template: `
1990
+ <div class="atc-wrapper">
1991
+ <ng-container *ngIf="isReturn">
1992
+ <co-number-picker *ngIf="!configurable && !configuring" class="quantity-select" [(model)]="quantity" [min]="-100" horizontal></co-number-picker>
1993
+ </ng-container>
1994
+
1995
+ <ng-container *ngIf="!isReturn">
1996
+ <co-number-picker *ngIf="!configurable && !configuring" class="quantity-select" [(model)]="quantity" [min]="1" horizontal></co-number-picker>
1997
+ </ng-container>
1998
+
1999
+ <div class="button-wrapper" *ngIf="configurable">
2000
+ <co-button class="configure-button"
2001
+ [iconData]="iconCache.getIcon(icon.MagicWand)"
2002
+ [label]="'CONFIGURE' | localize"
2003
+ (onClick)="startConfiguration.emit()"
2004
+ ></co-button>
2005
+ </div>
2006
+ <div class="button-wrapper" *ngIf="showAddToCart && !configurable">
2007
+ <co-button #addtocartbutton class="cart-button"
2008
+ [iconData]="iconCache.getIcon(icon.AddToCartDrop)"
2009
+ [label]="'SHOPPING_CART_IN' | localize"
2010
+ (onClick)="handleAddToCartClick(quantity)"
2011
+ ></co-button>
2012
+ <co-button class="cart-button quote" *ngIf="showQuoteButton"
2013
+ [iconData]="iconCache.getIcon(icon.Quote)"
2014
+ [label]="'QUOTATION' | localize"
2015
+ (onClick)="handleAddToQuoteClick(quantity)"
2016
+ ></co-button>
2017
+ </div>
2018
+ </div>
2019
2019
  `,
2020
2020
  styles: [":host{display:flex;flex-direction:column}:host *:not(:last-child){margin-bottom:5px}:host .atc-wrapper{display:flex;flex-direction:row;align-items:baseline}:host .atc-wrapper .quantity-select{margin-right:5px}:host.full-screen .cart-button{position:fixed;right:20px;bottom:20px;z-index:3}::ng-deep co-number-picker{max-width:100px;border:2px solid #f6f5f4;border-radius:5px}::ng-deep co-number-picker ::ng-deep co-input-text{height:50px!important;border:none!important;width:50px!important}::ng-deep co-number-picker ::ng-deep co-input-text:after{display:none}::ng-deep co-number-picker ::ng-deep co-input-text.focused{box-shadow:none!important;border:none!important;background:none!important}::ng-deep co-number-picker ::ng-deep co-input-text .clear-icon{display:none}::ng-deep co-number-picker ::ng-deep co-input-text input{width:100%;text-align:center}::ng-deep co-number-picker ::ng-deep co-button{justify-content:center;padding:0!important;margin:0!important;height:50px!important;background-color:transparent!important}::ng-deep co-number-picker ::ng-deep co-button ::ng-deep co-icon [fill]{fill:#22313c!important}.button-wrapper ::ng-deep co-button{height:50px;max-width:300px;justify-content:center;font-size:15px;border-radius:5px!important;cursor:pointer;padding:0 20px!important}.button-wrapper ::ng-deep co-button:hover{background:#74B77F}::ng-deep co-button.cart-button{border-radius:5px}::ng-deep co-button.cart-button.quote{background:#7292b6}\n"]
2021
2021
  },] }
@@ -2072,7 +2072,7 @@ class ProductRelatedComponent {
2072
2072
  this._settingsService = _settingsService;
2073
2073
  this.isSmallModus = true;
2074
2074
  this.createFrozenArticle = true;
2075
- this.imageData = '';
2075
+ this.imageDataMap = new Map();
2076
2076
  this._articles = [];
2077
2077
  }
2078
2078
  set articles(value) {
@@ -2132,38 +2132,40 @@ class ProductRelatedComponent {
2132
2132
  });
2133
2133
  }
2134
2134
  _loadImages() {
2135
- this._articles.forEach((a) => __awaiter(this, void 0, void 0, function* () {
2136
- if (a.image) {
2137
- const imageContent = yield this._iOne.getImageForCoDocument(a.image, false);
2138
- this.imageData = imageContent.image;
2135
+ return __awaiter(this, void 0, void 0, function* () {
2136
+ for (const a of this._articles) {
2137
+ if (a.image) {
2138
+ const imageContent = yield this._iOne.getImageForCoDocument(a.image, false);
2139
+ this.imageDataMap.set(a.goodId, imageContent.image);
2140
+ }
2139
2141
  }
2140
- }));
2142
+ });
2141
2143
  }
2142
2144
  }
2143
2145
  ProductRelatedComponent.decorators = [
2144
2146
  { type: Component, args: [{
2145
2147
  selector: 'app-product-related',
2146
- template: `
2147
- <div *ngIf="articles && articles.length > 0">
2148
- <app-header [label]="label" [amount]="articles?.length" *ngIf="label"></app-header>
2149
- <co-scroll-container>
2150
- <div class="article-wrapper" *ngFor="let article of articles">
2151
- <co-article-tile
2152
- [imageData]="imageData"
2153
- [description]="article.description"
2154
- [price]="article.price"
2155
- [level]="article.stockStatus"
2156
- [hasCartButton]="true"
2157
- [isSmallModus]="isSmallModus"
2158
- [hasConfigureButton]="article.goodType === 'B'"
2159
- (contentClick)="handleContentClick(article)"
2160
- (cartButtonClick)="handleAddToCartClick(article)"
2161
- (configureButtonClick)="handleContentClick(article)"
2162
- (threeDButtonClick)="handleThreeDButtonClick(article)"
2163
- ></co-article-tile>
2164
- </div>
2165
- </co-scroll-container>
2166
- </div>
2148
+ template: `
2149
+ <div *ngIf="articles && articles.length > 0">
2150
+ <app-header [label]="label" [amount]="articles?.length" *ngIf="label"></app-header>
2151
+ <co-scroll-container>
2152
+ <div class="article-wrapper" *ngFor="let article of articles">
2153
+ <co-article-tile
2154
+ [imageData]="imageDataMap.get(article.goodId)"
2155
+ [description]="article.description"
2156
+ [price]="article.price"
2157
+ [level]="article.stockStatus"
2158
+ [hasCartButton]="true"
2159
+ [isSmallModus]="isSmallModus"
2160
+ [hasConfigureButton]="article.goodType === 'B'"
2161
+ (contentClick)="handleContentClick(article)"
2162
+ (cartButtonClick)="handleAddToCartClick(article)"
2163
+ (configureButtonClick)="handleContentClick(article)"
2164
+ (threeDButtonClick)="handleThreeDButtonClick(article)"
2165
+ ></co-article-tile>
2166
+ </div>
2167
+ </co-scroll-container>
2168
+ </div>
2167
2169
  `,
2168
2170
  styles: [":host{display:block}.article-wrapper{display:flex;flex-direction:row;flex:1;min-width:25%}.article-wrapper ::ng-deep co-tile{transition:all .14s ease-out;border:1px solid transparent;padding:10px 20px;display:flex;flex-direction:column;color:#171721;justify-content:space-between}.article-wrapper ::ng-deep co-tile .price{display:block}.article-wrapper ::ng-deep co-tile .description{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;height:30px}.article-wrapper ::ng-deep co-tile .tile-bottom{display:flex;flex-direction:column;grid-gap:5px;gap:5px}.article-wrapper ::ng-deep co-tile:hover{border:1px solid #DCE4EA}.article-wrapper ::ng-deep co-tile .tile-extra-bottom co-button co-icon{width:24px;height:24px}.article-wrapper ::ng-deep co-tile .tile-extra-bottom co-button co-icon svg [fill]{fill:#fff}.article-wrapper ::ng-deep co-tile.small{max-width:189px;width:100%;height:100%;cursor:pointer}.article-wrapper ::ng-deep co-tile.small:hover .tile-bottom .left-buttons{margin:0!important}.article-wrapper ::ng-deep co-tile.small .tile-wrapper{outline:none!important;padding-bottom:0;overflow:hidden;grid-gap:10px;gap:10px;display:flex;flex-direction:column}.article-wrapper ::ng-deep co-tile.small .tile-wrapper div.image{height:100px}.article-wrapper ::ng-deep co-tile.small .tile-wrapper .tile-extra-bottom ::ng-deep co-button.card-button.mini{pointer-events:all;padding:0!important;font-size:0;width:42px;height:42px;text-align:center;margin:0;border-radius:100%;background:#3E7EFF;cursor:pointer;place-content:center;color:#fff}.article-wrapper ::ng-deep co-tile.small .tile-wrapper .tile-extra-bottom ::ng-deep co-button.card-button.mini ::ng-deep co-icon{width:30px;height:30px}.article-wrapper ::ng-deep co-tile.small .tile-extra-bottom{outline:none!important;background:transparent!important}.article-wrapper ::ng-deep co-tile.small .tile-extra-bottom .price{color:#74b77f;margin:5px 0 0;font-weight:400;font-size:12px}\n"]
2169
2171
  },] }
@@ -2191,13 +2193,13 @@ class HeaderComponent {
2191
2193
  HeaderComponent.decorators = [
2192
2194
  { type: Component, args: [{
2193
2195
  selector: 'app-header',
2194
- template: `
2195
- <ng-container *ngIf="label">
2196
- <div class="header-wrapper">
2197
- <h3 [textContent]="label"></h3>
2198
- <span *ngIf="amount" class="amount" [textContent]="'(' + amount + ')'"></span>
2199
- </div>
2200
- </ng-container>
2196
+ template: `
2197
+ <ng-container *ngIf="label">
2198
+ <div class="header-wrapper">
2199
+ <h3 [textContent]="label"></h3>
2200
+ <span *ngIf="amount" class="amount" [textContent]="'(' + amount + ')'"></span>
2201
+ </div>
2202
+ </ng-container>
2201
2203
  `,
2202
2204
  styles: [".header-wrapper{display:flex;flex-direction:row;align-items:center}.header-wrapper .amount{margin-left:5px}\n"]
2203
2205
  },] }
@@ -2286,15 +2288,15 @@ class ProductStockComponent {
2286
2288
  ProductStockComponent.decorators = [
2287
2289
  { type: Component, args: [{
2288
2290
  selector: 'app-product-stock',
2289
- template: `
2290
- <!--<app-header [label]="'STOCK' | localize"></app-header>-->
2291
- <!--<co-level-indicator [model]="'medium'"></co-level-indicator>-->
2292
- <div class="product-stock-wrapper">
2293
- <co-icon class="stock-icon" [iconData]="iconData"></co-icon>
2294
- <div class="product-stock-fields" (click)="openStock()">
2295
- <div class="pp-default-label" [class.in-stock]="inStock" [textContent]="stockLabel | localize"></div>
2296
- </div>
2297
- </div>
2291
+ template: `
2292
+ <!--<app-header [label]="'STOCK' | localize"></app-header>-->
2293
+ <!--<co-level-indicator [model]="'medium'"></co-level-indicator>-->
2294
+ <div class="product-stock-wrapper">
2295
+ <co-icon class="stock-icon" [iconData]="iconData"></co-icon>
2296
+ <div class="product-stock-fields" (click)="openStock()">
2297
+ <div class="pp-default-label" [class.in-stock]="inStock" [textContent]="stockLabel | localize"></div>
2298
+ </div>
2299
+ </div>
2298
2300
  `,
2299
2301
  styles: [":host{display:block}.product-stock-wrapper{display:flex;flex-direction:row;align-items:center;border-top:1px solid #f6f5f4;border-bottom:1px solid #f6f5f4;padding:20px 15px;cursor:pointer}.product-stock-wrapper .stock-icon{margin:0 15px 0 0;width:40px;height:37px}.product-stock-wrapper .product-stock-fields{display:flex;flex-direction:row}.product-stock-wrapper .product-stock-fields .pp-default-label{font-size:14px;margin:0;color:#2b60a7;text-decoration:underline}.product-stock-wrapper .product-stock-fields .pp-default-label:after{content:\"\";width:10px;height:10px;border-radius:10px;background:#f15152;display:inline-block;margin:0 0 0 15px}.product-stock-wrapper .product-stock-fields .pp-default-label.in-stock:after{background:#74B77F}@media screen and (max-width: 400px){.product-stock-wrapper{padding:15px 0 15px 10px}.product-stock-wrapper .stock-icon{margin:0 15px 0 0;width:32px;height:28px}.product-stock-wrapper .product-stock-fields .pp-default-label{font-size:13px}}\n"]
2300
2302
  },] }
@@ -2348,15 +2350,15 @@ class ProductDeliveryComponent {
2348
2350
  ProductDeliveryComponent.decorators = [
2349
2351
  { type: Component, args: [{
2350
2352
  selector: 'app-product-delivery',
2351
- template: `
2352
- <!--<app-header [label]="'DELIVERY_TIME_PERIOD' | localize"></app-header>-->
2353
- <div class="product-delivery-wrapper">
2354
- <co-icon class="delivery-icon" [iconData]="iconData"></co-icon>
2355
- <div class="product-delivery-fields">
2356
- <div class="pp-default-label" [textContent]="'DELIVERY_TIME_PERIOD' | localize"></div>
2357
- <div class="pp-default-description" [textContent]="deliveryDescription | date:'dd MMMM yyyy'"></div>
2358
- </div>
2359
- </div>
2353
+ template: `
2354
+ <!--<app-header [label]="'DELIVERY_TIME_PERIOD' | localize"></app-header>-->
2355
+ <div class="product-delivery-wrapper">
2356
+ <co-icon class="delivery-icon" [iconData]="iconData"></co-icon>
2357
+ <div class="product-delivery-fields">
2358
+ <div class="pp-default-label" [textContent]="'DELIVERY_TIME_PERIOD' | localize"></div>
2359
+ <div class="pp-default-description" [textContent]="deliveryDescription | date:'dd MMMM yyyy'"></div>
2360
+ </div>
2361
+ </div>
2360
2362
  `,
2361
2363
  styles: [":host{display:block}.product-delivery-wrapper{display:flex;flex-direction:row;align-items:center;border-bottom:1px solid #f6f5f4;padding:20px 15px}.product-delivery-wrapper .delivery-icon{margin:0 15px 0 0;width:40px;height:37px}.product-delivery-wrapper .product-delivery-fields{display:flex;flex-direction:column}.product-delivery-wrapper .product-delivery-fields .pp-default-label{font-size:14px;margin:0}@media screen and (max-width: 400px){.product-delivery-wrapper{padding:15px 0 15px 10px}.product-delivery-wrapper .delivery-icon{margin:0 15px 0 0;width:32px;height:28px}.product-delivery-wrapper .product-delivery-fields .pp-default-label{font-size:13px}}\n"]
2362
2364
  },] }
@@ -2434,28 +2436,28 @@ class ProductInfoTabsComponent {
2434
2436
  ProductInfoTabsComponent.decorators = [
2435
2437
  { type: Component, args: [{
2436
2438
  selector: 'app-product-info-tabs',
2437
- template: `
2438
- <div class="tab-container">
2439
- <div class="tab-header">
2440
- <button *ngFor="let tab of tabs; let i = index" class="tab-header-button" [class.active]="activeTab === i" [textContent]="tab.title | localize" (click)="updateTab(i)"></button>
2441
- </div>
2442
- <div class="tab-content" #tabContent [style.height.px]="(activeTabHeight > 0 ? activeTabHeight : '')">
2443
- <div class="tab-content-item" *ngFor="let tab of tabs; let i = index" [class.active]="activeTab === i">
2444
- <ng-container *ngIf="i === 0">
2445
- <app-product-additional-info class="" [article]="articleObject" [showLabel]="false"></app-product-additional-info>
2446
- </ng-container>
2447
- <ng-container *ngIf="i === 1">
2448
- <app-product-properties class="" [article]="articleObject" [showLabel]="false"></app-product-properties>
2449
- </ng-container>
2450
- <ng-container *ngIf="i === 2">
2451
- <app-product-documents [showLabel]="false" class="" *ngIf="articleObject?.documents && articleObject?.documents.length > 0" [documents]="articleObject?.documents"></app-product-documents>
2452
- </ng-container>
2453
- <ng-container *ngIf="i === 3">
2454
- <app-product-symbols class="" *ngIf="articleObject?.symbols && articleObject?.symbols.length > 0" [symbols]="articleObject?.symbols"></app-product-symbols>
2455
- </ng-container>
2456
- </div>
2457
- </div>
2458
- </div>
2439
+ template: `
2440
+ <div class="tab-container">
2441
+ <div class="tab-header">
2442
+ <button *ngFor="let tab of tabs; let i = index" class="tab-header-button" [class.active]="activeTab === i" [textContent]="tab.title | localize" (click)="updateTab(i)"></button>
2443
+ </div>
2444
+ <div class="tab-content" #tabContent [style.height.px]="(activeTabHeight > 0 ? activeTabHeight : '')">
2445
+ <div class="tab-content-item" *ngFor="let tab of tabs; let i = index" [class.active]="activeTab === i">
2446
+ <ng-container *ngIf="i === 0">
2447
+ <app-product-additional-info class="" [article]="articleObject" [showLabel]="false"></app-product-additional-info>
2448
+ </ng-container>
2449
+ <ng-container *ngIf="i === 1">
2450
+ <app-product-properties class="" [article]="articleObject" [showLabel]="false"></app-product-properties>
2451
+ </ng-container>
2452
+ <ng-container *ngIf="i === 2">
2453
+ <app-product-documents [showLabel]="false" class="" *ngIf="articleObject?.documents && articleObject?.documents.length > 0" [documents]="articleObject?.documents"></app-product-documents>
2454
+ </ng-container>
2455
+ <ng-container *ngIf="i === 3">
2456
+ <app-product-symbols class="" *ngIf="articleObject?.symbols && articleObject?.symbols.length > 0" [symbols]="articleObject?.symbols"></app-product-symbols>
2457
+ </ng-container>
2458
+ </div>
2459
+ </div>
2460
+ </div>
2459
2461
  `,
2460
2462
  styles: ["*:focus{outline:none}:host .tab-header{border-bottom:3px solid #f6f5f4;margin:0 0 30px}:host .tab-header .tab-header-button{background:transparent;border:none;border-bottom:3px solid transparent;line-height:20px;padding:15px 20px;cursor:pointer;font-family:iOneMontserrat;color:#22313c;font-weight:bold;margin:0 0 -3px;opacity:.5}:host .tab-header .tab-header-button:hover{opacity:1}:host .tab-header .tab-header-button.active{opacity:1;border-color:#74b77f}:host .tab-content{padding:0 20px 30px;margin:0 0 20px;border-bottom:2px solid #f6f5f4;transition:all .2s ease-in-out;position:relative}:host .tab-content .tab-content-item{opacity:0;position:absolute;left:0;top:0;visibility:hidden;width:100%}:host .tab-content .tab-content-item.active{opacity:1;visibility:visible;position:static}@media screen and (max-width: 650px){:host .tab-content{padding:0 10px 15px}}@media screen and (max-width: 450px){:host .tab-header{display:flex}:host .tab-header .tab-header-button{width:100%;padding:10px;font-size:11px}}\n"]
2461
2463
  },] }
@@ -2552,11 +2554,11 @@ class ProductAdditionalInfoComponent {
2552
2554
  ProductAdditionalInfoComponent.decorators = [
2553
2555
  { type: Component, args: [{
2554
2556
  selector: 'app-product-additional-info',
2555
- template: `
2556
- <h3 *ngIf="showLabel" [textContent]="'ADDITIONAL_DATA' | localize"></h3>
2557
- <ng-container *ngIf="textParts && textParts.length > 0">
2558
- <div class="additional-info-parts" *ngFor="let text of textParts" [innerHTML]="text"></div>
2559
- </ng-container>
2557
+ template: `
2558
+ <h3 *ngIf="showLabel" [textContent]="'ADDITIONAL_DATA' | localize"></h3>
2559
+ <ng-container *ngIf="textParts && textParts.length > 0">
2560
+ <div class="additional-info-parts" *ngFor="let text of textParts" [innerHTML]="text"></div>
2561
+ </ng-container>
2560
2562
  `,
2561
2563
  styles: [":host{display:block}:host .additional-info-parts{margin-bottom:20px;line-height:190%;color:#22313c;font-size:13px}:host ::ng-deep p{line-height:190%;margin:15px 0}:host ::ng-deep font{font-family:\"iOneMontserrat\"}:host .additional-info-parts>*:first-child{margin-top:0}:host .additional-info-parts>*:last-child{margin-bottom:0}\n"]
2562
2564
  },] }
@@ -2628,16 +2630,16 @@ class ProductPropertiesComponent {
2628
2630
  ProductPropertiesComponent.decorators = [
2629
2631
  { type: Component, args: [{
2630
2632
  selector: 'app-product-properties',
2631
- template: `
2632
- <div class="article-properties-wrapper">
2633
- <h3 *ngIf="showLabel" [textContent]="'PROPERTIES' | localize"></h3>
2634
- <ng-container *ngFor="let property of properties">
2635
- <div class="article-property">
2636
- <div class="article-property-key" [textContent]="property.key | localize"></div>
2637
- <div class="article-property-value" [textContent]="property.value"></div>
2638
- </div>
2639
- </ng-container>
2640
- </div>
2633
+ template: `
2634
+ <div class="article-properties-wrapper">
2635
+ <h3 *ngIf="showLabel" [textContent]="'PROPERTIES' | localize"></h3>
2636
+ <ng-container *ngFor="let property of properties">
2637
+ <div class="article-property">
2638
+ <div class="article-property-key" [textContent]="property.key | localize"></div>
2639
+ <div class="article-property-value" [textContent]="property.value"></div>
2640
+ </div>
2641
+ </ng-container>
2642
+ </div>
2641
2643
  `,
2642
2644
  styles: [":host{display:block}.article-properties-wrapper{display:flex;flex-direction:column}.article-property{display:flex;flex-direction:row;border-bottom:1px solid #f6f5f4;padding:11px 0;font-size:13px}.article-property:first-child{border-top:1px solid #f6f5f4}.article-property-key{flex-basis:200px;flex-shrink:0;color:#5b6875}@media screen and (max-width: 450px){.article-property-key{flex-basis:130px}}\n"]
2643
2645
  },] }
@@ -2676,13 +2678,13 @@ class ProductDocumentsComponent {
2676
2678
  ProductDocumentsComponent.decorators = [
2677
2679
  { type: Component, args: [{
2678
2680
  selector: 'app-product-documents',
2679
- template: `
2680
- <app-header *ngIf="showLabel" [label]="'DOCUMENTS' | localize" [amount]="documents?.length"></app-header>
2681
- <div *ngIf="documents && documents.length > 0">
2682
- <co-files-upload [documents]="documents" [canAdd]="false" readonly></co-files-upload>
2683
- </div>
2681
+ template: `
2682
+ <app-header *ngIf="showLabel" [label]="'DOCUMENTS' | localize" [amount]="documents?.length"></app-header>
2683
+ <div *ngIf="documents && documents.length > 0">
2684
+ <co-files-upload [documents]="documents" [canAdd]="false" readonly></co-files-upload>
2685
+ </div>
2684
2686
  `,
2685
- styles: [":host{display:block}::ng-deep co-files-upload{flex-direction:column!important;width:100%}::ng-deep co-file-upload{margin:0!important;border-bottom:1px solid #f6f5f4}::ng-deep co-file-upload:first-child{border-top:1px solid #f6f5f4}::ng-deep co-files-upload .files-upload-wrapper{flex-direction:column!important;width:100%}::ng-deep co-file-upload co-tile{max-width:100%!important;width:100%;position:relative}::ng-deep co-file-upload co-tile:hover{box-shadow:none!important}::ng-deep co-file-upload co-tile:hover .tile-extra-bottom{background-color:#f6f5f4!important}::ng-deep co-file-upload co-tile .tile-wrapper{position:absolute!important;left:0;top:0;width:100%;height:100%;z-index:2;opacity:0;box-sizing:border-box}::ng-deep co-file-upload co-tile .tile-wrapper .image{position:absolute!important;left:0;top:0;width:100%!important;height:100%!important;cursor:pointer}::ng-deep co-file-upload co-tile .tile-extra-bottom{outline:none!important;border:none!important;background:transparent!important;line-height:20px;padding:20px 20px 20px 60px!important;margin:0!important;background:url(\"data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22 standalone%3D%22no%22%3F%3E%3Csvg xmlns%3Adc%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Felements%2F1.1%2F%22 xmlns%3Acc%3D%22http%3A%2F%2Fcreativecommons.org%2Fns%23%22 xmlns%3Ardf%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%22 xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22 xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22 viewBox%3D%220 0 50 50%22 version%3D%221.1%22 id%3D%22svg8%22 sodipodi%3Adocname%3D%22download.svg%22 inkscape%3Aversion%3D%220.92.4 (5da689c313%2C 2019-01-14)%22%3E %3Cmetadata id%3D%22metadata14%22%3E %3Crdf%3ARDF%3E %3Ccc%3AWork rdf%3Aabout%3D%22%22%3E %3Cdc%3Aformat%3Eimage%2Fsvg%2Bxml%3C%2Fdc%3Aformat%3E %3Cdc%3Atype rdf%3Aresource%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Fdcmitype%2FStillImage%22 %2F%3E %3Cdc%3Atitle%3E%3C%2Fdc%3Atitle%3E %3C%2Fcc%3AWork%3E %3C%2Frdf%3ARDF%3E %3C%2Fmetadata%3E %3Cdefs id%3D%22defs12%22 %2F%3E %3Csodipodi%3Anamedview pagecolor%3D%22%23ffffff%22 bordercolor%3D%22%23666666%22 borderopacity%3D%221%22 objecttolerance%3D%2210%22 gridtolerance%3D%2210%22 guidetolerance%3D%2210%22 inkscape%3Apageopacity%3D%220%22 inkscape%3Apageshadow%3D%222%22 inkscape%3Awindow-width%3D%221920%22 inkscape%3Awindow-height%3D%221017%22 id%3D%22namedview10%22 showgrid%3D%22false%22 inkscape%3Azoom%3D%226.675088%22 inkscape%3Acx%3D%22-14.056273%22 inkscape%3Acy%3D%2229.806579%22 inkscape%3Awindow-x%3D%22-8%22 inkscape%3Awindow-y%3D%22-8%22 inkscape%3Awindow-maximized%3D%221%22 inkscape%3Acurrent-layer%3D%22svg8%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g62%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g64%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g66%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g68%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g70%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g72%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g74%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g76%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g78%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g80%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g82%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g84%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g86%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g88%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22 id%3D%22g90%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g6-0%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E %3Cg id%3D%22g4-9%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E %3Cpath inkscape%3Aconnector-curvature%3D%220%22 d%3D%22m 498.966%2C339.946 c -7.197%2C0 -13.034%2C5.837 -13.034%2C13.034 v 49.804 c 0%2C28.747 -23.388%2C52.135 -52.135%2C52.135 H 78.203 c -28.747%2C0 -52.135%2C-23.388 -52.135%2C-52.135 V 352.98 c 0%2C-7.197 -5.835%2C-13.034 -13.034%2C-13.034 C 5.835%2C339.946 0%2C345.782 0%2C352.98 v 49.804 c 0%2C43.121 35.082%2C78.203 78.203%2C78.203 h 355.594 c 43.121%2C0 78.203%2C-35.082 78.203%2C-78.203 V 352.98 c 0%2C-7.198 -5.835%2C-13.034 -13.034%2C-13.034 z%22 id%3D%22path2%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3C%2Fg%3E %3C%2Fg%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g12-0%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E %3Cg id%3D%22g10-8%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E %3Cpath inkscape%3Aconnector-curvature%3D%220%22 d%3D%22M 419.833%2C391.3 H 92.167 c -7.197%2C0 -13.034%2C5.837 -13.034%2C13.034 0%2C7.197 5.835%2C13.034 13.034%2C13.034 h 327.665 c 7.199%2C0 13.034%2C-5.835 13.034%2C-13.034 0%2C-7.197 -5.835%2C-13.034 -13.033%2C-13.034 z%22 id%3D%22path8-3%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3C%2Fg%3E %3C%2Fg%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g18-4%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E %3Cg id%3D%22g16-7%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E %3Cpath inkscape%3Aconnector-curvature%3D%220%22 d%3D%22m 387.919%2C207.93 c -4.795%2C-5.367 -13.034%2C-5.834 -18.404%2C-1.038 L 269.033%2C296.657 V 44.048 c 0%2C-7.197 -5.835%2C-13.034 -13.034%2C-13.034 -7.197%2C0 -13.034%2C5.835 -13.034%2C13.034 V 296.657 L 142.483%2C206.893 c -5.367%2C-4.796 -13.607%2C-4.328 -18.404%2C1.038 -4.794%2C5.369 -4.331%2C13.609 1.037%2C18.404 l 109.174%2C97.527 c 6.187%2C5.529 13.946%2C8.292 21.708%2C8.292 7.759%2C0 15.519%2C-2.763 21.708%2C-8.289 l 109.174%2C-97.53 c 5.37%2C-4.798 5.834%2C-13.038 1.039%2C-18.405 z%22 id%3D%22path14-9%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3C%2Fg%3E %3C%2Fg%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g20%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g22-9%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g24-3%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g26%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g28-4%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g30-2%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g32%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g34-2%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g36-1%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g38%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g40-6%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g42-4%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g44%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g46-7%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E %3Cg transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22 id%3D%22g48-3%22 style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%3C%2Fsvg%3E\") no-repeat left 6px center / 36px auto!important}::ng-deep co-file-upload co-tile .tile-extra-bottom .main{padding:0!important}\n"]
2687
+ styles: [":host{display:block}::ng-deep co-files-upload{flex-direction:column!important;width:100%}::ng-deep co-file-upload{margin:0!important;border-bottom:1px solid #f6f5f4}::ng-deep co-file-upload:first-child{border-top:1px solid #f6f5f4}::ng-deep co-files-upload .files-upload-wrapper{flex-direction:column!important;width:100%}::ng-deep co-file-upload co-tile{max-width:100%!important;width:100%;position:relative}::ng-deep co-file-upload co-tile:hover{box-shadow:none!important}::ng-deep co-file-upload co-tile:hover .tile-extra-bottom{background-color:#f6f5f4!important}::ng-deep co-file-upload co-tile .tile-wrapper{position:absolute!important;left:0;top:0;width:100%;height:100%;z-index:2;opacity:0;box-sizing:border-box}::ng-deep co-file-upload co-tile .tile-wrapper .image{position:absolute!important;left:0;top:0;width:100%!important;height:100%!important;cursor:pointer}::ng-deep co-file-upload co-tile .tile-extra-bottom{outline:none!important;border:none!important;background:transparent!important;line-height:20px;padding:20px 20px 20px 60px!important;margin:0!important;background:url(\"data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22 standalone%3D%22no%22%3F%3E%0D%3Csvg%0D xmlns%3Adc%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Felements%2F1.1%2F%22%0D xmlns%3Acc%3D%22http%3A%2F%2Fcreativecommons.org%2Fns%23%22%0D xmlns%3Ardf%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%22%0D xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0D xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0D xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%0D xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0D viewBox%3D%220 0 50 50%22%0D version%3D%221.1%22%0D id%3D%22svg8%22%0D sodipodi%3Adocname%3D%22download.svg%22%0D inkscape%3Aversion%3D%220.92.4 (5da689c313%2C 2019-01-14)%22%3E%0D %3Cmetadata%0D id%3D%22metadata14%22%3E%0D %3Crdf%3ARDF%3E%0D %3Ccc%3AWork%0D rdf%3Aabout%3D%22%22%3E%0D %3Cdc%3Aformat%3Eimage%2Fsvg%2Bxml%3C%2Fdc%3Aformat%3E%0D %3Cdc%3Atype%0D rdf%3Aresource%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Fdcmitype%2FStillImage%22 %2F%3E%0D %3Cdc%3Atitle%3E%3C%2Fdc%3Atitle%3E%0D %3C%2Fcc%3AWork%3E%0D %3C%2Frdf%3ARDF%3E%0D %3C%2Fmetadata%3E%0D %3Cdefs%0D id%3D%22defs12%22 %2F%3E%0D %3Csodipodi%3Anamedview%0D pagecolor%3D%22%23ffffff%22%0D bordercolor%3D%22%23666666%22%0D borderopacity%3D%221%22%0D objecttolerance%3D%2210%22%0D gridtolerance%3D%2210%22%0D guidetolerance%3D%2210%22%0D inkscape%3Apageopacity%3D%220%22%0D inkscape%3Apageshadow%3D%222%22%0D inkscape%3Awindow-width%3D%221920%22%0D inkscape%3Awindow-height%3D%221017%22%0D id%3D%22namedview10%22%0D showgrid%3D%22false%22%0D inkscape%3Azoom%3D%226.675088%22%0D inkscape%3Acx%3D%22-14.056273%22%0D inkscape%3Acy%3D%2229.806579%22%0D inkscape%3Awindow-x%3D%22-8%22%0D inkscape%3Awindow-y%3D%22-8%22%0D inkscape%3Awindow-maximized%3D%221%22%0D inkscape%3Acurrent-layer%3D%22svg8%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g62%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g64%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g66%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g68%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g70%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g72%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g74%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g76%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g78%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g80%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g82%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g84%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g86%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g88%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05570714%2C0%2C0%2C0.05570648%2C10.763%2C10.859394)%22%0D id%3D%22g90%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g6-0%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E%0D %3Cg%0D id%3D%22g4-9%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E%0D %3Cpath%0D inkscape%3Aconnector-curvature%3D%220%22%0D d%3D%22m 498.966%2C339.946 c -7.197%2C0 -13.034%2C5.837 -13.034%2C13.034 v 49.804 c 0%2C28.747 -23.388%2C52.135 -52.135%2C52.135 H 78.203 c -28.747%2C0 -52.135%2C-23.388 -52.135%2C-52.135 V 352.98 c 0%2C-7.197 -5.835%2C-13.034 -13.034%2C-13.034 C 5.835%2C339.946 0%2C345.782 0%2C352.98 v 49.804 c 0%2C43.121 35.082%2C78.203 78.203%2C78.203 h 355.594 c 43.121%2C0 78.203%2C-35.082 78.203%2C-78.203 V 352.98 c 0%2C-7.198 -5.835%2C-13.034 -13.034%2C-13.034 z%22%0D id%3D%22path2%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3C%2Fg%3E%0D %3C%2Fg%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g12-0%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E%0D %3Cg%0D id%3D%22g10-8%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E%0D %3Cpath%0D inkscape%3Aconnector-curvature%3D%220%22%0D d%3D%22M 419.833%2C391.3 H 92.167 c -7.197%2C0 -13.034%2C5.837 -13.034%2C13.034 0%2C7.197 5.835%2C13.034 13.034%2C13.034 h 327.665 c 7.199%2C0 13.034%2C-5.835 13.034%2C-13.034 0%2C-7.197 -5.835%2C-13.034 -13.033%2C-13.034 z%22%0D id%3D%22path8-3%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3C%2Fg%3E%0D %3C%2Fg%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g18-4%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E%0D %3Cg%0D id%3D%22g16-7%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22%3E%0D %3Cpath%0D inkscape%3Aconnector-curvature%3D%220%22%0D d%3D%22m 387.919%2C207.93 c -4.795%2C-5.367 -13.034%2C-5.834 -18.404%2C-1.038 L 269.033%2C296.657 V 44.048 c 0%2C-7.197 -5.835%2C-13.034 -13.034%2C-13.034 -7.197%2C0 -13.034%2C5.835 -13.034%2C13.034 V 296.657 L 142.483%2C206.893 c -5.367%2C-4.796 -13.607%2C-4.328 -18.404%2C1.038 -4.794%2C5.369 -4.331%2C13.609 1.037%2C18.404 l 109.174%2C97.527 c 6.187%2C5.529 13.946%2C8.292 21.708%2C8.292 7.759%2C0 15.519%2C-2.763 21.708%2C-8.289 l 109.174%2C-97.53 c 5.37%2C-4.798 5.834%2C-13.038 1.039%2C-18.405 z%22%0D id%3D%22path14-9%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3C%2Fg%3E%0D %3C%2Fg%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g20%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g22-9%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g24-3%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g26%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g28-4%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g30-2%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g32%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g34-2%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g36-1%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g38%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g40-6%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g42-4%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g44%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g46-7%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D %3Cg%0D transform%3D%22matrix(0.05555739%2C0%2C0%2C0.05555739%2C10.739964%2C11.357401)%22%0D id%3D%22g48-3%22%0D style%3D%22fill%3A%23484f60%3Bfill-opacity%3A1%22 %2F%3E%0D%3C%2Fsvg%3E%0D\") no-repeat left 6px center / 36px auto!important}::ng-deep co-file-upload co-tile .tile-extra-bottom .main{padding:0!important}\n"]
2686
2688
  },] }
2687
2689
  ];
2688
2690
  ProductDocumentsComponent.ctorParameters = () => [
@@ -2736,20 +2738,20 @@ class ProductSymbolsComponent {
2736
2738
  ProductSymbolsComponent.decorators = [
2737
2739
  { type: Component, args: [{
2738
2740
  selector: 'app-product-symbols',
2739
- template: `
2740
- <div *ngIf="symbols && symbols.length > 0">
2741
- <app-header [label]="'SYMBOLS' | localize" [amount]="symbols?.length"></app-header>
2742
- <co-scroll-container>
2743
- <co-tile small noImagePlaceholder *ngFor="let symbol of symbolStrings">
2744
- <ng-container tile-over-image>
2745
- <div class="symbol" [textContent]="symbol"></div>
2746
- </ng-container>
2747
- <ng-container tile-extra-bottom-content>
2748
- <div class="symbol-name" [textContent]="'Wat moet hier?'"></div>
2749
- </ng-container>
2750
- </co-tile>
2751
- </co-scroll-container>
2752
- </div>
2741
+ template: `
2742
+ <div *ngIf="symbols && symbols.length > 0">
2743
+ <app-header [label]="'SYMBOLS' | localize" [amount]="symbols?.length"></app-header>
2744
+ <co-scroll-container>
2745
+ <co-tile small noImagePlaceholder *ngFor="let symbol of symbolStrings">
2746
+ <ng-container tile-over-image>
2747
+ <div class="symbol" [textContent]="symbol"></div>
2748
+ </ng-container>
2749
+ <ng-container tile-extra-bottom-content>
2750
+ <div class="symbol-name" [textContent]="'Wat moet hier?'"></div>
2751
+ </ng-container>
2752
+ </co-tile>
2753
+ </co-scroll-container>
2754
+ </div>
2753
2755
  `,
2754
2756
  styles: [":host{display:block}:host.floor .symbol{font-family:iOneFloorsymbols}:host.ginetex .symbol{font-family:iOneGinetexsymbols}.symbol{font-size:100px}\n"]
2755
2757
  },] }