ngx-bimplus-components 0.0.1 → 0.0.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.
|
@@ -1954,11 +1954,11 @@ class BimplusUserMenuComponent extends BimplusLocalizedWidgetComponent {
|
|
|
1954
1954
|
return "portalLanguage" + lang?.symbol.charAt(0).toUpperCase() + lang?.symbol.slice(1);
|
|
1955
1955
|
}
|
|
1956
1956
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BimplusUserMenuComponent, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1957
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.1", type: BimplusUserMenuComponent, isStandalone: true, selector: "lib-bimplus-user-menu", inputs: { accountSettingsVisible: ["accountSettingsVisible", "accountSettingsVisible", booleanAttribute], removeConnectedAppsVisible: ["removeConnectedAppsVisible", "removeConnectedAppsVisible", booleanAttribute], userGuideVisible: ["userGuideVisible", "userGuideVisible", booleanAttribute], supportVisible: ["supportVisible", "supportVisible", booleanAttribute], forumVisible: ["forumVisible", "forumVisible", booleanAttribute], submenuVisible: ["submenuVisible", "submenuVisible", booleanAttribute], clearCacheVisible: ["clearCacheVisible", "clearCacheVisible", booleanAttribute], dividerLoggedInVisible: ["dividerLoggedInVisible", "dividerLoggedInVisible", booleanAttribute], logoutVisible: ["logoutVisible", "logoutVisible", booleanAttribute], isEmbedded: ["isEmbedded", "isEmbedded", booleanAttribute], isTouch: ["isTouch", "isTouch", booleanAttribute], allowRcaItem: ["allowRcaItem", "allowRcaItem", booleanAttribute], buttonTitle: "buttonTitle", userName: "userName", userPhotoUrl: "userPhotoUrl" }, outputs: { bimplusUserMenuClicked: "bimplusUserMenuClicked", bimplusLanguageSelected: "bimplusLanguageSelected" }, providers: [TranslateService], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div \r\n [attr.key]=\"'bimcompOverlay'\"\r\n class=\"bimcomp-overlay\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n></div>\r\n<div \r\n [attr.key]=\"'userMenu'\"\r\n class=\"dropdown\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n>\r\n <div\r\n class=\"dropdown-toggle\"\r\n [title]=\"buttonTitle ? buttonTitle : ''\"\r\n (click)=\"_toggleOpened()\"\r\n >\r\n <img\r\n class=\"user-photo\"\r\n src=\"{{userPhotoUrl ? userPhotoUrl : '../../../../assets/images/bimplus_Components_User_Pic_Default.png'}}\"\r\n alt=\"{{buttonTitle ? buttonTitle : ''}}\"\r\n >\r\n <div\r\n class=\"user-name\"\r\n >\r\n @if (!isTouch) {\r\n {{ userName }}\r\n }\r\n </div>\r\n <span class=\"caret\"></span>\r\n </div>\r\n <ul\r\n class=\"bimcomp-dropdown-menu\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n >\r\n <ng-container *ngFor=\"let item of _getMenuItems(); let i = index\">\r\n <li\r\n *ngIf=\"item\"\r\n [attr.key]=\"item.id\"\r\n [attr.role]=\"item.type === 'divider' ? 'separator' : ''\"\r\n [ngClass]=\"{\r\n 'divider': item.type === 'divider',\r\n 'languageMenuItem': item.action === 'submenu'\r\n }\"\r\n (click)=\"_menuItemClicked(item, i)\"\r\n >\r\n @if (item.action === 'submenu') {\r\n <div class=\"submenu arrow\"></div>\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n <div\r\n class=\"languagesSubmenu\"\r\n [ngClass]=\"_languagesMenuOpened ? 'open' : ''\"\r\n >\r\n <div class=\"languageSubmenuItems\">\r\n <div\r\n *ngFor=\"let lang of _languagesList\"\r\n [attr.key]=\"_getLangId(lang)\"\r\n id=\"{{_getLangId(lang)}}\"\r\n class=\"languageSubmenuItem\"\r\n [ngClass]=\"lang.symbol === this.selectedLanguage ? 'selected' : ''\"\r\n (click)=\"_switchLanguage(lang.symbol)\"\r\n >\r\n {{lang.text}}\r\n </div>\r\n </div>\r\n </div>\r\n } @else if (!item.url || item.url.slice(0,2) === \"#/\") {\r\n <div class=\"submenu\"></div>\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n } @else if (!item.type || item.type !== \"divider\") {\r\n <div class=\"submenu\"></div>\r\n <a\r\n href=\"{{ _buildUrl(item) }}\"\r\n rel=\"noopener\"\r\n target=\"_blank\"\r\n >\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n </a>\r\n }\r\n </li>\r\n </ng-container>\r\n </ul>\r\n</div>\r\n", styles: [".dropdown{position:relative;cursor:pointer;display:flex;justify-content:space-around;align-items:center;height:3.25em;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif}.dropdown.open{color:#555;background-color:#e7e7e7}.dropdown-toggle{position:relative;margin-left:.44em;margin-right:.44em;background-size:1.4em 1.4em;padding-right:.2em;padding-left:.2em;display:flex;flex-direction:row;align-items:center;font-weight:600;color:#777}.dropdown-toggle .user-photo{width:2.25em;height:2.25em;margin:auto;border-radius:50%;object-fit:cover}.dropdown-toggle .caret{display:inline-block;width:0;height:0;margin-top:.19em;margin-left:.4em;vertical-align:middle;border-top:.25em dashed;border-top:.25em solid;border-right:.25em solid transparent;border-left:.25em solid transparent}.dropdown-toggle .user-name{margin-left:.2em}.dropdown-toggle:hover{color:#333}.languageMenuItem{position:relative}.languageMenuItem .languagesSubmenu{position:absolute;display:none;transform-origin:left;transform:rotate(180deg) translateY(calc(-50% + 1.605em));border-radius:.29em;border:thin solid rgba(0,0,0,.15);box-shadow:0 1px 2px #00000040;background-color:#fff}.languageMenuItem .languagesSubmenu .languageSubmenuItems{display:flex;flex-direction:column;transform-origin:center;transform:rotate(180deg);font-size:1em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem{border:none;background-color:#fff;padding-left:2em;padding-right:5em;line-height:2.4em;height:2.4em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected,.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected:first-child,.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected:last-child{background-color:#ffe6da}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:first-child{background-color:#fff;border-radius:.29em .29em 0 0;margin-top:.5em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:last-child{background-color:#fff;border-radius:0 0 .29em .29em;margin-bottom:.5em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:hover{background-color:#f5f5f5}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:first-child:hover{background-color:#f5f5f5;border-radius:.29em .29em 0 0}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:last-child:hover{background-color:#f5f5f5;border-radius:0 0 .29em .29em}.languageMenuItem .languagesSubmenu.open{display:block}.bimcomp-dropdown-menu{font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;position:absolute;top:100%;right:0;z-index:1;display:none;min-width:11.43em;padding:.5em 0 .57em;margin:0;font-size:.875em;list-style:none;background-color:#fff;border:thin solid rgba(0,0,0,.15);border-radius:0 0 .29em .29em;-webkit-box-shadow:0 .43em .86em rgba(0,0,0,.175);box-shadow:0 .43em .86em #0000002d;text-decoration-color:#333;text-decoration-line:none;text-decoration-style:solid;line-height:2.71em;font-weight:400}.bimcomp-dropdown-menu div{font-size:1em}.bimcomp-dropdown-menu .noselect{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bimcomp-dropdown-menu li{display:flex;flex-direction:row;align-items:center;cursor:pointer;box-sizing:content-box;padding:.2em 2.2em .2em 0;white-space:nowrap}.bimcomp-dropdown-menu li span{display:inline-block;flex:1 0 auto;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bimcomp-dropdown-menu li .submenu{min-width:2.8em;width:2.8em;min-height:2.8em;height:2.8em}.bimcomp-dropdown-menu li .submenu.arrow{background:url('data:image/svg+xml,<svg width=\"5\" height=\"8\" viewBox=\"0 0 5 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.18765 7.35013C4.51503 7.61204 5 7.37895 5 6.9597L5 1.04032C5 0.621068 4.51503 0.387982 4.18765 0.649887L0.488043 3.60957C0.23784 3.80974 0.23784 4.19028 0.488043 4.39044L4.18765 7.35013Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A%0D%0A');background-position:center center;background-repeat:no-repeat;background-size:.7em .7em}.bimcomp-dropdown-menu li:hover{background-color:#f5f5f5}.bimcomp-dropdown-menu ul,.bimcomp-dropdown-menu li{list-style:none}.bimcomp-dropdown-menu .divider{height:1px;margin:.5em 0;overflow:hidden;background-color:#e5e5e5;cursor:auto;padding:0}.bimcomp-dropdown-menu a:link,.bimcomp-dropdown-menu a:visited,.bimcomp-dropdown-menu a:hover,.bimcomp-dropdown-menu a:active{color:#555;text-decoration-color:#333;text-decoration-line:none}.bimcomp-dropdown-menu.open{display:flex;flex-direction:column}.text-capitalized{text-transform:capitalize}.icon{flex-shrink:0;display:inline-block;vertical-align:middle;margin:0 1.36em 0 0;width:1.57em;height:1.57em;background-position:center;background-repeat:no-repeat}.main-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.375em;height:1.375em;background-size:contain;background-position:center;background-repeat:no-repeat}.icon-account-settings{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<path d=\"M2.32311 3.18961C2.13152 1.81268 2.92547 0 5 0C7.07453 0 7.86848 1.81268 7.67689 3.18961C7.4853 4.56647 7.29984 4.96414 6.49976 5.85335C6.49976 5.85335 6.31047 5.97762 6.31047 6.55639C6.31047 6.91419 6.31047 6.94573 6.49976 7.08198C9.30387 8.21423 9.96294 8.78201 9.99666 9.72824C9.99819 9.77181 9.99972 10.2155 9.99972 10.7272C10.0005 11.4493 9.99972 12.3067 9.99666 12.366C9.94991 13.2733 9.36365 14 5 14C0.636354 14 0.0500897 13.2733 0.00334184 12.366C0.00027641 12.3057 -0.000489949 11.4204 0.00027641 10.6911C0.00027641 10.1948 0.00180913 9.77082 0.00334184 9.72824C0.0370616 8.78201 0.69613 8.21423 3.50024 7.08198C3.68953 6.94573 3.68953 6.91419 3.68953 6.55639C3.68953 5.97762 3.50024 5.85335 3.50024 5.85335C2.70016 4.96414 2.5147 4.56647 2.32311 3.18961Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M16.0084 11.0002L12.0127 15.0308L13.9755 17.0106L17.9712 12.9801L16.0084 11.0002Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M11 18.0356H12.9827L11 16.0356V18.0356Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-rca{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_6875:7973)\">%0D%0A<path d=\"M7.45468 2.12146C6.2831 0.949886 4.38361 0.949885 3.21204 2.12146L2.12132 3.21218C0.949748 4.38375 0.949745 6.28324 2.12132 7.45481L4.66669 10.0002L6.00003 8.66684L3.37379 6.0406C2.98326 5.65008 2.98326 5.01691 3.37379 4.62639L4.62625 3.37392C5.01678 2.9834 5.64994 2.9834 6.04046 3.37392L8.66671 6.00017L10 4.66683L7.45468 2.12146Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15.879 10.5453C17.0506 11.7169 17.0506 13.6164 15.879 14.788L14.7883 15.8787C13.6167 17.0503 11.7172 17.0503 10.5457 15.8787L8.0003 13.3333L9.33364 12L11.9599 14.6262C12.3504 15.0167 12.9836 15.0167 13.3741 14.6262L14.6266 13.3737C15.0171 12.9832 15.0171 12.3501 14.6266 11.9595L12.0003 9.33329L13.3337 7.99995L15.879 10.5453Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M10.0003 7.33285L11.6993 3.36863C11.8695 2.97157 12.3156 2.77124 12.7254 2.90784V2.90784C13.3111 3.1031 13.4866 3.84654 13.05 4.28314L10.0003 7.33285Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7.33432 10.0003L3.37009 11.6993C2.97304 11.8695 2.7727 12.3156 2.90931 12.7254V12.7254C3.10456 13.3111 3.848 13.4866 4.2846 13.05L7.33432 10.0003Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M10.6657 7.99967L14.6299 6.30072C15.027 6.13055 15.2273 5.68444 15.0907 5.27462V5.27462C14.8954 4.68885 14.152 4.51335 13.7154 4.94996L10.6657 7.99967Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7.99967 10.6671L6.30072 14.6314C6.13055 15.0284 5.68444 15.2288 5.27462 15.0922V15.0922C4.68885 14.8969 4.51335 14.1535 4.94996 13.7169L7.99967 10.6671Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_6875:7973\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A') no-repeat center}.icon-user-guide{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.6,14L8.6,14L8.6,14c-0.6,0-1,0.1-1.3,0.3C7.1,14.6,7,14.9,7,15.2c0,0.4,0.1,0.6,0.4,0.9%0D%0A%09%09c0.3,0.2,0.7,0.3,1.3,0.3h0h0c0.6,0,1-0.1,1.3-0.3c0.3-0.2,0.4-0.5,0.4-0.9c0-0.4-0.1-0.6-0.4-0.9C9.6,14.1,9.2,14,8.6,14z\"/>%0D%0A%09<path class=\"st0\" d=\"M12.3,3.3C11.4,2.4,10.3,2,8.8,2c-0.7,0-1.4,0.1-2,0.3C6.1,2.5,5.2,2.8,4,3.4v1.9c0,0.6,0.1,1,0.3,1.2%0D%0A%09%09c0.2,0.2,0.5,0.4,0.8,0.4c0.3,0,0.6-0.1,0.8-0.4c0.2-0.2,0.3-0.6,0.3-1.2V4.9c0.2-0.1,0.4-0.2,0.6-0.3c0.6-0.2,1.2-0.3,1.9-0.3%0D%0A%09%09c0.6,0,1.1,0.1,1.5,0.3c0.1,0.1,0.3,0.2,0.4,0.3c0.4,0.4,0.7,0.9,0.7,1.4c0,0.4-0.2,0.8-0.6,1.2c-0.4,0.4-1.5,0.9-3.3,1.6v1.3%0D%0A%09%09c0,0.6,0.1,1,0.3,1.2C8,11.9,8.3,12,8.6,12c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.4-1c1.5-0.7,2.6-1.3,3.1-2%0D%0A%09%09c0.5-0.6,0.8-1.4,0.8-2.3C13.7,5.2,13.2,4.1,12.3,3.3z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.icon-support{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M16.7,13.6c0,0,0-0.1,0.1-0.1c0.1-0.2,0.2-0.4,0.3-0.7v-0.1l0,0C17.7,11.6,18,10.3,18,9c0-5-4-9-9-9S0,4,0,9%0D%0A%09c0,1.1,0.2,2.2,0.6,3.2l0,0l0,0c0.1,0.2,0.2,0.5,0.3,0.7V13c0.1,0.2,0.2,0.5,0.4,0.7c0,0,0,0.1,0.1,0.1c0.1,0.2,0.3,0.4,0.4,0.6%0D%0A%09c0,0,0,0.1,0.1,0.1c0.2,0.2,0.3,0.4,0.5,0.6l0.1,0.1c0.2,0.2,0.3,0.3,0.5,0.5l0.1,0.1c0.2,0.2,0.4,0.3,0.5,0.4l0.1,0.1%0D%0A%09c0.2,0.1,0.4,0.2,0.6,0.4c0.1,0,0.1,0.1,0.2,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.1,0,0.1,0.1,0.2,0.1l0,0C6.4,17.7,7.7,18,9,18%0D%0A%09c3,0,5.6-1.5,7.3-3.7c0,0,0,0,0-0.1C16.5,14,16.6,13.8,16.7,13.6z M11.1,12.4c0,0-0.1,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3%0D%0A%09C10,12.9,9.5,13,9,13c-0.6,0-1.2-0.2-1.7-0.4c-0.2-0.1-0.4-0.2-0.6-0.3l0,0c-0.2-0.1-0.4-0.3-0.5-0.5l0,0c-0.2-0.2-0.3-0.4-0.4-0.6%0D%0A%09l0,0c-0.1-0.2-0.2-0.4-0.3-0.7C5.1,10,5,9.5,5,9c0-0.6,0.1-1.1,0.4-1.6l0,0c0.4-1,1.2-1.7,2.2-2.1l0,0C8,5.1,8.5,5,9,5%0D%0A%09c0.6,0,1.1,0.1,1.6,0.4l0,0c1,0.4,1.7,1.2,2.1,2.2l0,0C12.9,8,13,8.5,13,9c0,0.6-0.2,1.2-0.4,1.7c-0.1,0.2-0.2,0.4-0.3,0.6l-0.1,0.1%0D%0A%09c-0.1,0.2-0.3,0.3-0.4,0.5L11.7,12C11.5,12.1,11.3,12.3,11.1,12.4z M13.5,11.1C13.8,10.4,14,9.7,14,9c0-0.6-0.1-1.2-0.3-1.8l2.8-1.1%0D%0A%09C16.8,7.1,17,8,17,9c0,1.2-0.3,2.3-0.7,3.3L13.5,11.1z M12.3,1.7l-1.2,2.7C10.4,4.2,9.7,4,9,4C8.4,4,7.8,4.1,7.2,4.3l-1-2.8%0D%0A%09C7.1,1.2,8,1,9,1C10.2,1,11.3,1.3,12.3,1.7z M1,9c0-1.2,0.3-2.3,0.7-3.3l2.7,1.2C4.2,7.6,4,8.3,4,9c0,0.6,0.1,1.2,0.3,1.8l-2.8,1.1%0D%0A%09C1.2,10.9,1,10,1,9z M5.7,16.3l1.2-2.7C7.6,13.8,8.3,14,9,14c0.6,0,1.2-0.1,1.8-0.3l1.1,2.8C10.9,16.8,10,17,9,17%0D%0A%09C7.8,17,6.7,16.7,5.7,16.3z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-forum{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<polygon class=\"st0\" points=\"14,4 14,6 16,6 16,12 14,12 13,12 8,12 7.5,12 6,14 6,14 12,14 15,17 15,14 18,14 18,4 \"/>%0D%0A<path class=\"st0\" d=\"M7,11h6V1H0v10h4v4L7,11z M2,9V3h9v6H2z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-clear-cache{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M7,18h2c0-0.1-2-1-2-1V18z\"/>%0D%0A%09<polygon class=\"st0\" points=\"3,18 6,18 5,16 %09\"/>%0D%0A%09<polygon class=\"st0\" points=\"2,18 2,17 0,18 %09\"/>%0D%0A%09<path class=\"st0\" d=\"M10,7C8.8,6.5,7,6,7,6S3.2,2.1,2.2,1.1c-0.9-0.9-1.5-1.4-2-1c-0.5,0.4,0.1,1.1,1,2C2.2,3.2,6,7,6,7%0D%0A%09%09s0.6,1.7,1,3L10,7z\"/>%0D%0A%09<path class=\"st0\" d=\"M11,7l-4,4c0.4,1.6,5,7,5,7l6-6C18,12,12.9,7.8,11,7z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.icon-languages{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 1L5 3H0V4.49999L2 4.5C2.43947 6.27912 3.24436 7.55186 4.50213 8.88094C3.3069 9.5683 0 11 0 11L1 12C1 12 3.5 11 5.44323 9.75533C6.5 10.5 8 11.5 8 11.5L9 10.5C9 10.5 7.5572 9.75533 6.53981 8.88087C7.75282 7.52893 8.5814 6.27217 9 4.5H11V3H6.5C6.43255 2.80538 5.5 1 5.5 1H4ZM5.4856 8.0701C4.40554 6.99056 3.83462 6.00259 3.5 4.5H7.5C7.24387 5.99973 6.55146 7.01658 5.4856 8.0701Z\" fill=\"%23444444\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.25214 16.9813L9.99998 16.9813L11 14.5H15L16.007 16.9813H17.7222L13.7225 7.02972L12.2521 7.03339L8.25214 16.9813ZM14.5 13H11.5L13.0012 8.54775L14.5 13Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A%0D%0A') no-repeat center}.icon-log-out{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<polygon class=\"st0\" points=\"7,1 7,3 16,3 16,16 7,16 7,18 18,18 18,1 %09\"/>%0D%0A%09<polygon class=\"st0\" points=\"13,8 5,8 5,5 0,9.5 5,14 5,11 13,11 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bimcomp-overlay{position:fixed;width:100vw;height:100vh;left:0;top:0;display:none}.bimcomp-overlay.open{display:block;z-index:1}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
1957
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.1", type: BimplusUserMenuComponent, isStandalone: true, selector: "lib-bimplus-user-menu", inputs: { accountSettingsVisible: ["accountSettingsVisible", "accountSettingsVisible", booleanAttribute], removeConnectedAppsVisible: ["removeConnectedAppsVisible", "removeConnectedAppsVisible", booleanAttribute], userGuideVisible: ["userGuideVisible", "userGuideVisible", booleanAttribute], supportVisible: ["supportVisible", "supportVisible", booleanAttribute], forumVisible: ["forumVisible", "forumVisible", booleanAttribute], submenuVisible: ["submenuVisible", "submenuVisible", booleanAttribute], clearCacheVisible: ["clearCacheVisible", "clearCacheVisible", booleanAttribute], dividerLoggedInVisible: ["dividerLoggedInVisible", "dividerLoggedInVisible", booleanAttribute], logoutVisible: ["logoutVisible", "logoutVisible", booleanAttribute], isEmbedded: ["isEmbedded", "isEmbedded", booleanAttribute], isTouch: ["isTouch", "isTouch", booleanAttribute], allowRcaItem: ["allowRcaItem", "allowRcaItem", booleanAttribute], buttonTitle: "buttonTitle", userName: "userName", userPhotoUrl: "userPhotoUrl" }, outputs: { bimplusUserMenuClicked: "bimplusUserMenuClicked", bimplusLanguageSelected: "bimplusLanguageSelected" }, providers: [TranslateService], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div \r\n [attr.key]=\"'bimcompOverlay'\"\r\n class=\"bimcomp-overlay\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n></div>\r\n<div \r\n [attr.key]=\"'userMenu'\"\r\n class=\"dropdown\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n>\r\n <div\r\n class=\"dropdown-toggle\"\r\n [title]=\"buttonTitle ? buttonTitle : ''\"\r\n (click)=\"_toggleOpened()\"\r\n >\r\n <img\r\n class=\"user-photo\"\r\n src=\"{{userPhotoUrl ? userPhotoUrl : ''}}\"\r\n alt=\"{{buttonTitle ? buttonTitle : ''}}\"\r\n >\r\n <div\r\n class=\"user-name\"\r\n >\r\n @if (!isTouch) {\r\n {{ userName }}\r\n }\r\n </div>\r\n <span class=\"caret\"></span>\r\n </div>\r\n <ul\r\n class=\"bimcomp-dropdown-menu\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n >\r\n <ng-container *ngFor=\"let item of _getMenuItems(); let i = index\">\r\n <li\r\n *ngIf=\"item\"\r\n [attr.key]=\"item.id\"\r\n [attr.role]=\"item.type === 'divider' ? 'separator' : ''\"\r\n [ngClass]=\"{\r\n 'divider': item.type === 'divider',\r\n 'languageMenuItem': item.action === 'submenu'\r\n }\"\r\n (click)=\"_menuItemClicked(item, i)\"\r\n >\r\n @if (item.action === 'submenu') {\r\n <div class=\"submenu arrow\"></div>\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n <div\r\n class=\"languagesSubmenu\"\r\n [ngClass]=\"_languagesMenuOpened ? 'open' : ''\"\r\n >\r\n <div class=\"languageSubmenuItems\">\r\n <div\r\n *ngFor=\"let lang of _languagesList\"\r\n [attr.key]=\"_getLangId(lang)\"\r\n id=\"{{_getLangId(lang)}}\"\r\n class=\"languageSubmenuItem\"\r\n [ngClass]=\"lang.symbol === this.selectedLanguage ? 'selected' : ''\"\r\n (click)=\"_switchLanguage(lang.symbol)\"\r\n >\r\n {{lang.text}}\r\n </div>\r\n </div>\r\n </div>\r\n } @else if (!item.url || item.url.slice(0,2) === \"#/\") {\r\n <div class=\"submenu\"></div>\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n } @else if (!item.type || item.type !== \"divider\") {\r\n <div class=\"submenu\"></div>\r\n <a\r\n href=\"{{ _buildUrl(item) }}\"\r\n rel=\"noopener\"\r\n target=\"_blank\"\r\n >\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n </a>\r\n }\r\n </li>\r\n </ng-container>\r\n </ul>\r\n</div>\r\n", styles: [".dropdown{position:relative;cursor:pointer;display:flex;justify-content:space-around;align-items:center;height:3.25em;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif}.dropdown.open{color:#555;background-color:#e7e7e7}.dropdown-toggle{position:relative;margin-left:.44em;margin-right:.44em;background-size:1.4em 1.4em;padding-right:.2em;padding-left:.2em;display:flex;flex-direction:row;align-items:center;font-weight:600;color:#777}.dropdown-toggle .user-photo{width:2.25em;height:2.25em;margin:auto;border-radius:50%;object-fit:cover;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAAB3RJTUUH3QodDgYCOH3ZEgAAAAlwSFlzAAAewQAAHsEBw2lUUwAAAARnQU1BAACxjwv8YQUAAAN4SURBVHja7ZjbcqJAEIY5oxsEPGCiyb7/C23yAslW1lS5igQUZmD2nyEXu4qEGcusF3ZZ3DDAN38fplv96fFR05h2YWZcIFONdYl2oVjWKQ8zxipuPAx0EQ246oZuGIau6/8BizGtLKlt2Z7vua5rmmbNRcsyz/MsTSmlpmkps6lg1SJFURQEvmVZmlCmlqq+SyiN1+vl8reybPJYXKfyfj73gwB4TNjf90FhW1YUTW3beX195dzyJh3ytKSj8cgP/Koqqz2iD2yt4nKWYRiMRiN48+xYwMDuh8MhawLag8OS4TBEhH229mSssqw8z0Okd/kS1sCP3sBDIJ5dLeQdgrjL9uuy4did9nASlviY3EeYvFTSWMh2QgjQuiS9LtQtKFWoEdJYtCCdnaKjgJCi+AIsXseR/lonvbT6cOq4WB0L3wjCwDBM1iHosQbVIQxD1LAzq6XpruNKPeA4jnwiyqrFGKWke6xgGzxF5E0OC0dvHG9w/nQh4/lByWazMU3pMiT3AD6QpunLy08Emd4ayGDCif78/LLdbrGZ82IJMjNLsyLP0e61Y6HxAhNvxeRNpWmGA6FZuxdxd5tlyj2qChYEWK3Wu12O9rj5pbqxy/PVKlaTSlktHbH19vZWsepQDcQcCtXi1wLXL1WrFgx+LHIcLPtvQMxtdzvcVZZKHasGOFrrmXbi5KOIJdpUE51qAxnv/mwTB5RCdT8RC7Xb9320qYfdF2gcxx74A0pUunhFLN5CFYXnDcbjUWNLyMRvMhl/u7khvAs6MxYfAAnFFRPiw8McEX3MTfUk8vD9fhJNkLNUPCWF9fkQhxfy2avirplMQoxiaOeZGBFbnsJdnDnRNIKv4zhONklBCoOb2SUZ9KfHHy3yUFriHMS0Mxh4/X7fsnkwVTJb5yUXzSMhWbZNkiR9T7FFpEt7qjarVQO5roP5ExOV6zi8hIpeU8oXQrYKsYakDQIfeYDDNEne43VcENIC14AFIDxwd3fr+wNeAoRJKdS4T/TaQHDdHgwD92aTLJdLdBmNVXcfC+vgr+ntFPMdUEqlceoonOjua/GQyIiNxWKRZdkh2T+ZCB/1ev3ZbIaCxIP8NIU+Ea+qHNeZz2dIoPofshYs1uu5hmnwgDi/VTz2LWTSYcg21S0RBF9jx/xxof+dXrGuWFesS7Ar1hXrXPYHJuH4M1T8og4AAAAASUVORK5CYII=) no-repeat center}.dropdown-toggle .caret{display:inline-block;width:0;height:0;margin-top:.19em;margin-left:.4em;vertical-align:middle;border-top:.25em dashed;border-top:.25em solid;border-right:.25em solid transparent;border-left:.25em solid transparent}.dropdown-toggle .user-name{margin-left:.2em}.dropdown-toggle:hover{color:#333}.languageMenuItem{position:relative}.languageMenuItem .languagesSubmenu{position:absolute;display:none;transform-origin:left;transform:rotate(180deg) translateY(calc(-50% + 1.605em));border-radius:.29em;border:thin solid rgba(0,0,0,.15);box-shadow:0 1px 2px #00000040;background-color:#fff}.languageMenuItem .languagesSubmenu .languageSubmenuItems{display:flex;flex-direction:column;transform-origin:center;transform:rotate(180deg);font-size:1em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem{border:none;background-color:#fff;padding-left:2em;padding-right:5em;line-height:2.4em;height:2.4em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected,.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected:first-child,.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected:last-child{background-color:#ffe6da}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:first-child{background-color:#fff;border-radius:.29em .29em 0 0;margin-top:.5em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:last-child{background-color:#fff;border-radius:0 0 .29em .29em;margin-bottom:.5em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:hover{background-color:#f5f5f5}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:first-child:hover{background-color:#f5f5f5;border-radius:.29em .29em 0 0}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:last-child:hover{background-color:#f5f5f5;border-radius:0 0 .29em .29em}.languageMenuItem .languagesSubmenu.open{display:block}.bimcomp-dropdown-menu{font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;position:absolute;top:100%;right:0;z-index:1;display:none;min-width:11.43em;padding:.5em 0 .57em;margin:0;font-size:.875em;list-style:none;background-color:#fff;border:thin solid rgba(0,0,0,.15);border-radius:0 0 .29em .29em;-webkit-box-shadow:0 .43em .86em rgba(0,0,0,.175);box-shadow:0 .43em .86em #0000002d;text-decoration-color:#333;text-decoration-line:none;text-decoration-style:solid;line-height:2.71em;font-weight:400}.bimcomp-dropdown-menu div{font-size:1em}.bimcomp-dropdown-menu .noselect{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bimcomp-dropdown-menu li{display:flex;flex-direction:row;align-items:center;cursor:pointer;box-sizing:content-box;padding:.2em 2.2em .2em 0;white-space:nowrap}.bimcomp-dropdown-menu li span{display:inline-block;flex:1 0 auto;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bimcomp-dropdown-menu li .submenu{min-width:2.8em;width:2.8em;min-height:2.8em;height:2.8em}.bimcomp-dropdown-menu li .submenu.arrow{background:url('data:image/svg+xml,<svg width=\"5\" height=\"8\" viewBox=\"0 0 5 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.18765 7.35013C4.51503 7.61204 5 7.37895 5 6.9597L5 1.04032C5 0.621068 4.51503 0.387982 4.18765 0.649887L0.488043 3.60957C0.23784 3.80974 0.23784 4.19028 0.488043 4.39044L4.18765 7.35013Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A%0D%0A');background-position:center center;background-repeat:no-repeat;background-size:.7em .7em}.bimcomp-dropdown-menu li:hover{background-color:#f5f5f5}.bimcomp-dropdown-menu ul,.bimcomp-dropdown-menu li{list-style:none}.bimcomp-dropdown-menu .divider{height:1px;margin:.5em 0;overflow:hidden;background-color:#e5e5e5;cursor:auto;padding:0}.bimcomp-dropdown-menu a:link,.bimcomp-dropdown-menu a:visited,.bimcomp-dropdown-menu a:hover,.bimcomp-dropdown-menu a:active{color:#555;text-decoration-color:#333;text-decoration-line:none}.bimcomp-dropdown-menu.open{display:flex;flex-direction:column}.text-capitalized{text-transform:capitalize}.icon{flex-shrink:0;display:inline-block;vertical-align:middle;margin:0 1.36em 0 0;width:1.57em;height:1.57em;background-position:center;background-repeat:no-repeat}.main-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.375em;height:1.375em;background-size:contain;background-position:center;background-repeat:no-repeat}.icon-account-settings{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<path d=\"M2.32311 3.18961C2.13152 1.81268 2.92547 0 5 0C7.07453 0 7.86848 1.81268 7.67689 3.18961C7.4853 4.56647 7.29984 4.96414 6.49976 5.85335C6.49976 5.85335 6.31047 5.97762 6.31047 6.55639C6.31047 6.91419 6.31047 6.94573 6.49976 7.08198C9.30387 8.21423 9.96294 8.78201 9.99666 9.72824C9.99819 9.77181 9.99972 10.2155 9.99972 10.7272C10.0005 11.4493 9.99972 12.3067 9.99666 12.366C9.94991 13.2733 9.36365 14 5 14C0.636354 14 0.0500897 13.2733 0.00334184 12.366C0.00027641 12.3057 -0.000489949 11.4204 0.00027641 10.6911C0.00027641 10.1948 0.00180913 9.77082 0.00334184 9.72824C0.0370616 8.78201 0.69613 8.21423 3.50024 7.08198C3.68953 6.94573 3.68953 6.91419 3.68953 6.55639C3.68953 5.97762 3.50024 5.85335 3.50024 5.85335C2.70016 4.96414 2.5147 4.56647 2.32311 3.18961Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M16.0084 11.0002L12.0127 15.0308L13.9755 17.0106L17.9712 12.9801L16.0084 11.0002Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M11 18.0356H12.9827L11 16.0356V18.0356Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-rca{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_6875:7973)\">%0D%0A<path d=\"M7.45468 2.12146C6.2831 0.949886 4.38361 0.949885 3.21204 2.12146L2.12132 3.21218C0.949748 4.38375 0.949745 6.28324 2.12132 7.45481L4.66669 10.0002L6.00003 8.66684L3.37379 6.0406C2.98326 5.65008 2.98326 5.01691 3.37379 4.62639L4.62625 3.37392C5.01678 2.9834 5.64994 2.9834 6.04046 3.37392L8.66671 6.00017L10 4.66683L7.45468 2.12146Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15.879 10.5453C17.0506 11.7169 17.0506 13.6164 15.879 14.788L14.7883 15.8787C13.6167 17.0503 11.7172 17.0503 10.5457 15.8787L8.0003 13.3333L9.33364 12L11.9599 14.6262C12.3504 15.0167 12.9836 15.0167 13.3741 14.6262L14.6266 13.3737C15.0171 12.9832 15.0171 12.3501 14.6266 11.9595L12.0003 9.33329L13.3337 7.99995L15.879 10.5453Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M10.0003 7.33285L11.6993 3.36863C11.8695 2.97157 12.3156 2.77124 12.7254 2.90784V2.90784C13.3111 3.1031 13.4866 3.84654 13.05 4.28314L10.0003 7.33285Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7.33432 10.0003L3.37009 11.6993C2.97304 11.8695 2.7727 12.3156 2.90931 12.7254V12.7254C3.10456 13.3111 3.848 13.4866 4.2846 13.05L7.33432 10.0003Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M10.6657 7.99967L14.6299 6.30072C15.027 6.13055 15.2273 5.68444 15.0907 5.27462V5.27462C14.8954 4.68885 14.152 4.51335 13.7154 4.94996L10.6657 7.99967Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7.99967 10.6671L6.30072 14.6314C6.13055 15.0284 5.68444 15.2288 5.27462 15.0922V15.0922C4.68885 14.8969 4.51335 14.1535 4.94996 13.7169L7.99967 10.6671Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_6875:7973\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A') no-repeat center}.icon-user-guide{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.6,14L8.6,14L8.6,14c-0.6,0-1,0.1-1.3,0.3C7.1,14.6,7,14.9,7,15.2c0,0.4,0.1,0.6,0.4,0.9%0D%0A%09%09c0.3,0.2,0.7,0.3,1.3,0.3h0h0c0.6,0,1-0.1,1.3-0.3c0.3-0.2,0.4-0.5,0.4-0.9c0-0.4-0.1-0.6-0.4-0.9C9.6,14.1,9.2,14,8.6,14z\"/>%0D%0A%09<path class=\"st0\" d=\"M12.3,3.3C11.4,2.4,10.3,2,8.8,2c-0.7,0-1.4,0.1-2,0.3C6.1,2.5,5.2,2.8,4,3.4v1.9c0,0.6,0.1,1,0.3,1.2%0D%0A%09%09c0.2,0.2,0.5,0.4,0.8,0.4c0.3,0,0.6-0.1,0.8-0.4c0.2-0.2,0.3-0.6,0.3-1.2V4.9c0.2-0.1,0.4-0.2,0.6-0.3c0.6-0.2,1.2-0.3,1.9-0.3%0D%0A%09%09c0.6,0,1.1,0.1,1.5,0.3c0.1,0.1,0.3,0.2,0.4,0.3c0.4,0.4,0.7,0.9,0.7,1.4c0,0.4-0.2,0.8-0.6,1.2c-0.4,0.4-1.5,0.9-3.3,1.6v1.3%0D%0A%09%09c0,0.6,0.1,1,0.3,1.2C8,11.9,8.3,12,8.6,12c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.4-1c1.5-0.7,2.6-1.3,3.1-2%0D%0A%09%09c0.5-0.6,0.8-1.4,0.8-2.3C13.7,5.2,13.2,4.1,12.3,3.3z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.icon-support{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M16.7,13.6c0,0,0-0.1,0.1-0.1c0.1-0.2,0.2-0.4,0.3-0.7v-0.1l0,0C17.7,11.6,18,10.3,18,9c0-5-4-9-9-9S0,4,0,9%0D%0A%09c0,1.1,0.2,2.2,0.6,3.2l0,0l0,0c0.1,0.2,0.2,0.5,0.3,0.7V13c0.1,0.2,0.2,0.5,0.4,0.7c0,0,0,0.1,0.1,0.1c0.1,0.2,0.3,0.4,0.4,0.6%0D%0A%09c0,0,0,0.1,0.1,0.1c0.2,0.2,0.3,0.4,0.5,0.6l0.1,0.1c0.2,0.2,0.3,0.3,0.5,0.5l0.1,0.1c0.2,0.2,0.4,0.3,0.5,0.4l0.1,0.1%0D%0A%09c0.2,0.1,0.4,0.2,0.6,0.4c0.1,0,0.1,0.1,0.2,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.1,0,0.1,0.1,0.2,0.1l0,0C6.4,17.7,7.7,18,9,18%0D%0A%09c3,0,5.6-1.5,7.3-3.7c0,0,0,0,0-0.1C16.5,14,16.6,13.8,16.7,13.6z M11.1,12.4c0,0-0.1,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3%0D%0A%09C10,12.9,9.5,13,9,13c-0.6,0-1.2-0.2-1.7-0.4c-0.2-0.1-0.4-0.2-0.6-0.3l0,0c-0.2-0.1-0.4-0.3-0.5-0.5l0,0c-0.2-0.2-0.3-0.4-0.4-0.6%0D%0A%09l0,0c-0.1-0.2-0.2-0.4-0.3-0.7C5.1,10,5,9.5,5,9c0-0.6,0.1-1.1,0.4-1.6l0,0c0.4-1,1.2-1.7,2.2-2.1l0,0C8,5.1,8.5,5,9,5%0D%0A%09c0.6,0,1.1,0.1,1.6,0.4l0,0c1,0.4,1.7,1.2,2.1,2.2l0,0C12.9,8,13,8.5,13,9c0,0.6-0.2,1.2-0.4,1.7c-0.1,0.2-0.2,0.4-0.3,0.6l-0.1,0.1%0D%0A%09c-0.1,0.2-0.3,0.3-0.4,0.5L11.7,12C11.5,12.1,11.3,12.3,11.1,12.4z M13.5,11.1C13.8,10.4,14,9.7,14,9c0-0.6-0.1-1.2-0.3-1.8l2.8-1.1%0D%0A%09C16.8,7.1,17,8,17,9c0,1.2-0.3,2.3-0.7,3.3L13.5,11.1z M12.3,1.7l-1.2,2.7C10.4,4.2,9.7,4,9,4C8.4,4,7.8,4.1,7.2,4.3l-1-2.8%0D%0A%09C7.1,1.2,8,1,9,1C10.2,1,11.3,1.3,12.3,1.7z M1,9c0-1.2,0.3-2.3,0.7-3.3l2.7,1.2C4.2,7.6,4,8.3,4,9c0,0.6,0.1,1.2,0.3,1.8l-2.8,1.1%0D%0A%09C1.2,10.9,1,10,1,9z M5.7,16.3l1.2-2.7C7.6,13.8,8.3,14,9,14c0.6,0,1.2-0.1,1.8-0.3l1.1,2.8C10.9,16.8,10,17,9,17%0D%0A%09C7.8,17,6.7,16.7,5.7,16.3z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-forum{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<polygon class=\"st0\" points=\"14,4 14,6 16,6 16,12 14,12 13,12 8,12 7.5,12 6,14 6,14 12,14 15,17 15,14 18,14 18,4 \"/>%0D%0A<path class=\"st0\" d=\"M7,11h6V1H0v10h4v4L7,11z M2,9V3h9v6H2z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-clear-cache{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M7,18h2c0-0.1-2-1-2-1V18z\"/>%0D%0A%09<polygon class=\"st0\" points=\"3,18 6,18 5,16 %09\"/>%0D%0A%09<polygon class=\"st0\" points=\"2,18 2,17 0,18 %09\"/>%0D%0A%09<path class=\"st0\" d=\"M10,7C8.8,6.5,7,6,7,6S3.2,2.1,2.2,1.1c-0.9-0.9-1.5-1.4-2-1c-0.5,0.4,0.1,1.1,1,2C2.2,3.2,6,7,6,7%0D%0A%09%09s0.6,1.7,1,3L10,7z\"/>%0D%0A%09<path class=\"st0\" d=\"M11,7l-4,4c0.4,1.6,5,7,5,7l6-6C18,12,12.9,7.8,11,7z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.icon-languages{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 1L5 3H0V4.49999L2 4.5C2.43947 6.27912 3.24436 7.55186 4.50213 8.88094C3.3069 9.5683 0 11 0 11L1 12C1 12 3.5 11 5.44323 9.75533C6.5 10.5 8 11.5 8 11.5L9 10.5C9 10.5 7.5572 9.75533 6.53981 8.88087C7.75282 7.52893 8.5814 6.27217 9 4.5H11V3H6.5C6.43255 2.80538 5.5 1 5.5 1H4ZM5.4856 8.0701C4.40554 6.99056 3.83462 6.00259 3.5 4.5H7.5C7.24387 5.99973 6.55146 7.01658 5.4856 8.0701Z\" fill=\"%23444444\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.25214 16.9813L9.99998 16.9813L11 14.5H15L16.007 16.9813H17.7222L13.7225 7.02972L12.2521 7.03339L8.25214 16.9813ZM14.5 13H11.5L13.0012 8.54775L14.5 13Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A%0D%0A') no-repeat center}.icon-log-out{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<polygon class=\"st0\" points=\"7,1 7,3 16,3 16,16 7,16 7,18 18,18 18,1 %09\"/>%0D%0A%09<polygon class=\"st0\" points=\"13,8 5,8 5,5 0,9.5 5,14 5,11 13,11 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bimcomp-overlay{position:fixed;width:100vw;height:100vh;left:0;top:0;display:none}.bimcomp-overlay.open{display:block;z-index:1}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
1958
1958
|
}
|
|
1959
1959
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BimplusUserMenuComponent, decorators: [{
|
|
1960
1960
|
type: Component,
|
|
1961
|
-
args: [{ selector: 'lib-bimplus-user-menu', standalone: true, imports: [CommonModule, TranslateModule], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<div \r\n [attr.key]=\"'bimcompOverlay'\"\r\n class=\"bimcomp-overlay\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n></div>\r\n<div \r\n [attr.key]=\"'userMenu'\"\r\n class=\"dropdown\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n>\r\n <div\r\n class=\"dropdown-toggle\"\r\n [title]=\"buttonTitle ? buttonTitle : ''\"\r\n (click)=\"_toggleOpened()\"\r\n >\r\n <img\r\n class=\"user-photo\"\r\n src=\"{{userPhotoUrl ? userPhotoUrl : '../../../../assets/images/bimplus_Components_User_Pic_Default.png'}}\"\r\n alt=\"{{buttonTitle ? buttonTitle : ''}}\"\r\n >\r\n <div\r\n class=\"user-name\"\r\n >\r\n @if (!isTouch) {\r\n {{ userName }}\r\n }\r\n </div>\r\n <span class=\"caret\"></span>\r\n </div>\r\n <ul\r\n class=\"bimcomp-dropdown-menu\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n >\r\n <ng-container *ngFor=\"let item of _getMenuItems(); let i = index\">\r\n <li\r\n *ngIf=\"item\"\r\n [attr.key]=\"item.id\"\r\n [attr.role]=\"item.type === 'divider' ? 'separator' : ''\"\r\n [ngClass]=\"{\r\n 'divider': item.type === 'divider',\r\n 'languageMenuItem': item.action === 'submenu'\r\n }\"\r\n (click)=\"_menuItemClicked(item, i)\"\r\n >\r\n @if (item.action === 'submenu') {\r\n <div class=\"submenu arrow\"></div>\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n <div\r\n class=\"languagesSubmenu\"\r\n [ngClass]=\"_languagesMenuOpened ? 'open' : ''\"\r\n >\r\n <div class=\"languageSubmenuItems\">\r\n <div\r\n *ngFor=\"let lang of _languagesList\"\r\n [attr.key]=\"_getLangId(lang)\"\r\n id=\"{{_getLangId(lang)}}\"\r\n class=\"languageSubmenuItem\"\r\n [ngClass]=\"lang.symbol === this.selectedLanguage ? 'selected' : ''\"\r\n (click)=\"_switchLanguage(lang.symbol)\"\r\n >\r\n {{lang.text}}\r\n </div>\r\n </div>\r\n </div>\r\n } @else if (!item.url || item.url.slice(0,2) === \"#/\") {\r\n <div class=\"submenu\"></div>\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n } @else if (!item.type || item.type !== \"divider\") {\r\n <div class=\"submenu\"></div>\r\n <a\r\n href=\"{{ _buildUrl(item) }}\"\r\n rel=\"noopener\"\r\n target=\"_blank\"\r\n >\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n </a>\r\n }\r\n </li>\r\n </ng-container>\r\n </ul>\r\n</div>\r\n", styles: [".dropdown{position:relative;cursor:pointer;display:flex;justify-content:space-around;align-items:center;height:3.25em;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif}.dropdown.open{color:#555;background-color:#e7e7e7}.dropdown-toggle{position:relative;margin-left:.44em;margin-right:.44em;background-size:1.4em 1.4em;padding-right:.2em;padding-left:.2em;display:flex;flex-direction:row;align-items:center;font-weight:600;color:#777}.dropdown-toggle .user-photo{width:2.25em;height:2.25em;margin:auto;border-radius:50%;object-fit:cover}.dropdown-toggle .caret{display:inline-block;width:0;height:0;margin-top:.19em;margin-left:.4em;vertical-align:middle;border-top:.25em dashed;border-top:.25em solid;border-right:.25em solid transparent;border-left:.25em solid transparent}.dropdown-toggle .user-name{margin-left:.2em}.dropdown-toggle:hover{color:#333}.languageMenuItem{position:relative}.languageMenuItem .languagesSubmenu{position:absolute;display:none;transform-origin:left;transform:rotate(180deg) translateY(calc(-50% + 1.605em));border-radius:.29em;border:thin solid rgba(0,0,0,.15);box-shadow:0 1px 2px #00000040;background-color:#fff}.languageMenuItem .languagesSubmenu .languageSubmenuItems{display:flex;flex-direction:column;transform-origin:center;transform:rotate(180deg);font-size:1em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem{border:none;background-color:#fff;padding-left:2em;padding-right:5em;line-height:2.4em;height:2.4em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected,.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected:first-child,.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected:last-child{background-color:#ffe6da}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:first-child{background-color:#fff;border-radius:.29em .29em 0 0;margin-top:.5em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:last-child{background-color:#fff;border-radius:0 0 .29em .29em;margin-bottom:.5em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:hover{background-color:#f5f5f5}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:first-child:hover{background-color:#f5f5f5;border-radius:.29em .29em 0 0}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:last-child:hover{background-color:#f5f5f5;border-radius:0 0 .29em .29em}.languageMenuItem .languagesSubmenu.open{display:block}.bimcomp-dropdown-menu{font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;position:absolute;top:100%;right:0;z-index:1;display:none;min-width:11.43em;padding:.5em 0 .57em;margin:0;font-size:.875em;list-style:none;background-color:#fff;border:thin solid rgba(0,0,0,.15);border-radius:0 0 .29em .29em;-webkit-box-shadow:0 .43em .86em rgba(0,0,0,.175);box-shadow:0 .43em .86em #0000002d;text-decoration-color:#333;text-decoration-line:none;text-decoration-style:solid;line-height:2.71em;font-weight:400}.bimcomp-dropdown-menu div{font-size:1em}.bimcomp-dropdown-menu .noselect{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bimcomp-dropdown-menu li{display:flex;flex-direction:row;align-items:center;cursor:pointer;box-sizing:content-box;padding:.2em 2.2em .2em 0;white-space:nowrap}.bimcomp-dropdown-menu li span{display:inline-block;flex:1 0 auto;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bimcomp-dropdown-menu li .submenu{min-width:2.8em;width:2.8em;min-height:2.8em;height:2.8em}.bimcomp-dropdown-menu li .submenu.arrow{background:url('data:image/svg+xml,<svg width=\"5\" height=\"8\" viewBox=\"0 0 5 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.18765 7.35013C4.51503 7.61204 5 7.37895 5 6.9597L5 1.04032C5 0.621068 4.51503 0.387982 4.18765 0.649887L0.488043 3.60957C0.23784 3.80974 0.23784 4.19028 0.488043 4.39044L4.18765 7.35013Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A%0D%0A');background-position:center center;background-repeat:no-repeat;background-size:.7em .7em}.bimcomp-dropdown-menu li:hover{background-color:#f5f5f5}.bimcomp-dropdown-menu ul,.bimcomp-dropdown-menu li{list-style:none}.bimcomp-dropdown-menu .divider{height:1px;margin:.5em 0;overflow:hidden;background-color:#e5e5e5;cursor:auto;padding:0}.bimcomp-dropdown-menu a:link,.bimcomp-dropdown-menu a:visited,.bimcomp-dropdown-menu a:hover,.bimcomp-dropdown-menu a:active{color:#555;text-decoration-color:#333;text-decoration-line:none}.bimcomp-dropdown-menu.open{display:flex;flex-direction:column}.text-capitalized{text-transform:capitalize}.icon{flex-shrink:0;display:inline-block;vertical-align:middle;margin:0 1.36em 0 0;width:1.57em;height:1.57em;background-position:center;background-repeat:no-repeat}.main-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.375em;height:1.375em;background-size:contain;background-position:center;background-repeat:no-repeat}.icon-account-settings{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<path d=\"M2.32311 3.18961C2.13152 1.81268 2.92547 0 5 0C7.07453 0 7.86848 1.81268 7.67689 3.18961C7.4853 4.56647 7.29984 4.96414 6.49976 5.85335C6.49976 5.85335 6.31047 5.97762 6.31047 6.55639C6.31047 6.91419 6.31047 6.94573 6.49976 7.08198C9.30387 8.21423 9.96294 8.78201 9.99666 9.72824C9.99819 9.77181 9.99972 10.2155 9.99972 10.7272C10.0005 11.4493 9.99972 12.3067 9.99666 12.366C9.94991 13.2733 9.36365 14 5 14C0.636354 14 0.0500897 13.2733 0.00334184 12.366C0.00027641 12.3057 -0.000489949 11.4204 0.00027641 10.6911C0.00027641 10.1948 0.00180913 9.77082 0.00334184 9.72824C0.0370616 8.78201 0.69613 8.21423 3.50024 7.08198C3.68953 6.94573 3.68953 6.91419 3.68953 6.55639C3.68953 5.97762 3.50024 5.85335 3.50024 5.85335C2.70016 4.96414 2.5147 4.56647 2.32311 3.18961Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M16.0084 11.0002L12.0127 15.0308L13.9755 17.0106L17.9712 12.9801L16.0084 11.0002Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M11 18.0356H12.9827L11 16.0356V18.0356Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-rca{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_6875:7973)\">%0D%0A<path d=\"M7.45468 2.12146C6.2831 0.949886 4.38361 0.949885 3.21204 2.12146L2.12132 3.21218C0.949748 4.38375 0.949745 6.28324 2.12132 7.45481L4.66669 10.0002L6.00003 8.66684L3.37379 6.0406C2.98326 5.65008 2.98326 5.01691 3.37379 4.62639L4.62625 3.37392C5.01678 2.9834 5.64994 2.9834 6.04046 3.37392L8.66671 6.00017L10 4.66683L7.45468 2.12146Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15.879 10.5453C17.0506 11.7169 17.0506 13.6164 15.879 14.788L14.7883 15.8787C13.6167 17.0503 11.7172 17.0503 10.5457 15.8787L8.0003 13.3333L9.33364 12L11.9599 14.6262C12.3504 15.0167 12.9836 15.0167 13.3741 14.6262L14.6266 13.3737C15.0171 12.9832 15.0171 12.3501 14.6266 11.9595L12.0003 9.33329L13.3337 7.99995L15.879 10.5453Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M10.0003 7.33285L11.6993 3.36863C11.8695 2.97157 12.3156 2.77124 12.7254 2.90784V2.90784C13.3111 3.1031 13.4866 3.84654 13.05 4.28314L10.0003 7.33285Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7.33432 10.0003L3.37009 11.6993C2.97304 11.8695 2.7727 12.3156 2.90931 12.7254V12.7254C3.10456 13.3111 3.848 13.4866 4.2846 13.05L7.33432 10.0003Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M10.6657 7.99967L14.6299 6.30072C15.027 6.13055 15.2273 5.68444 15.0907 5.27462V5.27462C14.8954 4.68885 14.152 4.51335 13.7154 4.94996L10.6657 7.99967Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7.99967 10.6671L6.30072 14.6314C6.13055 15.0284 5.68444 15.2288 5.27462 15.0922V15.0922C4.68885 14.8969 4.51335 14.1535 4.94996 13.7169L7.99967 10.6671Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_6875:7973\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A') no-repeat center}.icon-user-guide{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.6,14L8.6,14L8.6,14c-0.6,0-1,0.1-1.3,0.3C7.1,14.6,7,14.9,7,15.2c0,0.4,0.1,0.6,0.4,0.9%0D%0A%09%09c0.3,0.2,0.7,0.3,1.3,0.3h0h0c0.6,0,1-0.1,1.3-0.3c0.3-0.2,0.4-0.5,0.4-0.9c0-0.4-0.1-0.6-0.4-0.9C9.6,14.1,9.2,14,8.6,14z\"/>%0D%0A%09<path class=\"st0\" d=\"M12.3,3.3C11.4,2.4,10.3,2,8.8,2c-0.7,0-1.4,0.1-2,0.3C6.1,2.5,5.2,2.8,4,3.4v1.9c0,0.6,0.1,1,0.3,1.2%0D%0A%09%09c0.2,0.2,0.5,0.4,0.8,0.4c0.3,0,0.6-0.1,0.8-0.4c0.2-0.2,0.3-0.6,0.3-1.2V4.9c0.2-0.1,0.4-0.2,0.6-0.3c0.6-0.2,1.2-0.3,1.9-0.3%0D%0A%09%09c0.6,0,1.1,0.1,1.5,0.3c0.1,0.1,0.3,0.2,0.4,0.3c0.4,0.4,0.7,0.9,0.7,1.4c0,0.4-0.2,0.8-0.6,1.2c-0.4,0.4-1.5,0.9-3.3,1.6v1.3%0D%0A%09%09c0,0.6,0.1,1,0.3,1.2C8,11.9,8.3,12,8.6,12c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.4-1c1.5-0.7,2.6-1.3,3.1-2%0D%0A%09%09c0.5-0.6,0.8-1.4,0.8-2.3C13.7,5.2,13.2,4.1,12.3,3.3z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.icon-support{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M16.7,13.6c0,0,0-0.1,0.1-0.1c0.1-0.2,0.2-0.4,0.3-0.7v-0.1l0,0C17.7,11.6,18,10.3,18,9c0-5-4-9-9-9S0,4,0,9%0D%0A%09c0,1.1,0.2,2.2,0.6,3.2l0,0l0,0c0.1,0.2,0.2,0.5,0.3,0.7V13c0.1,0.2,0.2,0.5,0.4,0.7c0,0,0,0.1,0.1,0.1c0.1,0.2,0.3,0.4,0.4,0.6%0D%0A%09c0,0,0,0.1,0.1,0.1c0.2,0.2,0.3,0.4,0.5,0.6l0.1,0.1c0.2,0.2,0.3,0.3,0.5,0.5l0.1,0.1c0.2,0.2,0.4,0.3,0.5,0.4l0.1,0.1%0D%0A%09c0.2,0.1,0.4,0.2,0.6,0.4c0.1,0,0.1,0.1,0.2,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.1,0,0.1,0.1,0.2,0.1l0,0C6.4,17.7,7.7,18,9,18%0D%0A%09c3,0,5.6-1.5,7.3-3.7c0,0,0,0,0-0.1C16.5,14,16.6,13.8,16.7,13.6z M11.1,12.4c0,0-0.1,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3%0D%0A%09C10,12.9,9.5,13,9,13c-0.6,0-1.2-0.2-1.7-0.4c-0.2-0.1-0.4-0.2-0.6-0.3l0,0c-0.2-0.1-0.4-0.3-0.5-0.5l0,0c-0.2-0.2-0.3-0.4-0.4-0.6%0D%0A%09l0,0c-0.1-0.2-0.2-0.4-0.3-0.7C5.1,10,5,9.5,5,9c0-0.6,0.1-1.1,0.4-1.6l0,0c0.4-1,1.2-1.7,2.2-2.1l0,0C8,5.1,8.5,5,9,5%0D%0A%09c0.6,0,1.1,0.1,1.6,0.4l0,0c1,0.4,1.7,1.2,2.1,2.2l0,0C12.9,8,13,8.5,13,9c0,0.6-0.2,1.2-0.4,1.7c-0.1,0.2-0.2,0.4-0.3,0.6l-0.1,0.1%0D%0A%09c-0.1,0.2-0.3,0.3-0.4,0.5L11.7,12C11.5,12.1,11.3,12.3,11.1,12.4z M13.5,11.1C13.8,10.4,14,9.7,14,9c0-0.6-0.1-1.2-0.3-1.8l2.8-1.1%0D%0A%09C16.8,7.1,17,8,17,9c0,1.2-0.3,2.3-0.7,3.3L13.5,11.1z M12.3,1.7l-1.2,2.7C10.4,4.2,9.7,4,9,4C8.4,4,7.8,4.1,7.2,4.3l-1-2.8%0D%0A%09C7.1,1.2,8,1,9,1C10.2,1,11.3,1.3,12.3,1.7z M1,9c0-1.2,0.3-2.3,0.7-3.3l2.7,1.2C4.2,7.6,4,8.3,4,9c0,0.6,0.1,1.2,0.3,1.8l-2.8,1.1%0D%0A%09C1.2,10.9,1,10,1,9z M5.7,16.3l1.2-2.7C7.6,13.8,8.3,14,9,14c0.6,0,1.2-0.1,1.8-0.3l1.1,2.8C10.9,16.8,10,17,9,17%0D%0A%09C7.8,17,6.7,16.7,5.7,16.3z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-forum{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<polygon class=\"st0\" points=\"14,4 14,6 16,6 16,12 14,12 13,12 8,12 7.5,12 6,14 6,14 12,14 15,17 15,14 18,14 18,4 \"/>%0D%0A<path class=\"st0\" d=\"M7,11h6V1H0v10h4v4L7,11z M2,9V3h9v6H2z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-clear-cache{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M7,18h2c0-0.1-2-1-2-1V18z\"/>%0D%0A%09<polygon class=\"st0\" points=\"3,18 6,18 5,16 %09\"/>%0D%0A%09<polygon class=\"st0\" points=\"2,18 2,17 0,18 %09\"/>%0D%0A%09<path class=\"st0\" d=\"M10,7C8.8,6.5,7,6,7,6S3.2,2.1,2.2,1.1c-0.9-0.9-1.5-1.4-2-1c-0.5,0.4,0.1,1.1,1,2C2.2,3.2,6,7,6,7%0D%0A%09%09s0.6,1.7,1,3L10,7z\"/>%0D%0A%09<path class=\"st0\" d=\"M11,7l-4,4c0.4,1.6,5,7,5,7l6-6C18,12,12.9,7.8,11,7z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.icon-languages{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 1L5 3H0V4.49999L2 4.5C2.43947 6.27912 3.24436 7.55186 4.50213 8.88094C3.3069 9.5683 0 11 0 11L1 12C1 12 3.5 11 5.44323 9.75533C6.5 10.5 8 11.5 8 11.5L9 10.5C9 10.5 7.5572 9.75533 6.53981 8.88087C7.75282 7.52893 8.5814 6.27217 9 4.5H11V3H6.5C6.43255 2.80538 5.5 1 5.5 1H4ZM5.4856 8.0701C4.40554 6.99056 3.83462 6.00259 3.5 4.5H7.5C7.24387 5.99973 6.55146 7.01658 5.4856 8.0701Z\" fill=\"%23444444\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.25214 16.9813L9.99998 16.9813L11 14.5H15L16.007 16.9813H17.7222L13.7225 7.02972L12.2521 7.03339L8.25214 16.9813ZM14.5 13H11.5L13.0012 8.54775L14.5 13Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A%0D%0A') no-repeat center}.icon-log-out{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<polygon class=\"st0\" points=\"7,1 7,3 16,3 16,16 7,16 7,18 18,18 18,1 %09\"/>%0D%0A%09<polygon class=\"st0\" points=\"13,8 5,8 5,5 0,9.5 5,14 5,11 13,11 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bimcomp-overlay{position:fixed;width:100vw;height:100vh;left:0;top:0;display:none}.bimcomp-overlay.open{display:block;z-index:1}\n"] }]
|
|
1961
|
+
args: [{ selector: 'lib-bimplus-user-menu', standalone: true, imports: [CommonModule, TranslateModule], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<div \r\n [attr.key]=\"'bimcompOverlay'\"\r\n class=\"bimcomp-overlay\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n (click)=\"_toggleOpened()\"\r\n></div>\r\n<div \r\n [attr.key]=\"'userMenu'\"\r\n class=\"dropdown\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n>\r\n <div\r\n class=\"dropdown-toggle\"\r\n [title]=\"buttonTitle ? buttonTitle : ''\"\r\n (click)=\"_toggleOpened()\"\r\n >\r\n <img\r\n class=\"user-photo\"\r\n src=\"{{userPhotoUrl ? userPhotoUrl : ''}}\"\r\n alt=\"{{buttonTitle ? buttonTitle : ''}}\"\r\n >\r\n <div\r\n class=\"user-name\"\r\n >\r\n @if (!isTouch) {\r\n {{ userName }}\r\n }\r\n </div>\r\n <span class=\"caret\"></span>\r\n </div>\r\n <ul\r\n class=\"bimcomp-dropdown-menu\"\r\n [ngClass]=\"_menuOpened ? 'open' : ''\"\r\n >\r\n <ng-container *ngFor=\"let item of _getMenuItems(); let i = index\">\r\n <li\r\n *ngIf=\"item\"\r\n [attr.key]=\"item.id\"\r\n [attr.role]=\"item.type === 'divider' ? 'separator' : ''\"\r\n [ngClass]=\"{\r\n 'divider': item.type === 'divider',\r\n 'languageMenuItem': item.action === 'submenu'\r\n }\"\r\n (click)=\"_menuItemClicked(item, i)\"\r\n >\r\n @if (item.action === 'submenu') {\r\n <div class=\"submenu arrow\"></div>\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n <div\r\n class=\"languagesSubmenu\"\r\n [ngClass]=\"_languagesMenuOpened ? 'open' : ''\"\r\n >\r\n <div class=\"languageSubmenuItems\">\r\n <div\r\n *ngFor=\"let lang of _languagesList\"\r\n [attr.key]=\"_getLangId(lang)\"\r\n id=\"{{_getLangId(lang)}}\"\r\n class=\"languageSubmenuItem\"\r\n [ngClass]=\"lang.symbol === this.selectedLanguage ? 'selected' : ''\"\r\n (click)=\"_switchLanguage(lang.symbol)\"\r\n >\r\n {{lang.text}}\r\n </div>\r\n </div>\r\n </div>\r\n } @else if (!item.url || item.url.slice(0,2) === \"#/\") {\r\n <div class=\"submenu\"></div>\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n } @else if (!item.type || item.type !== \"divider\") {\r\n <div class=\"submenu\"></div>\r\n <a\r\n href=\"{{ _buildUrl(item) }}\"\r\n rel=\"noopener\"\r\n target=\"_blank\"\r\n >\r\n <div\r\n class=\"icon\"\r\n [ngClass]=\"item.class\"\r\n ></div>\r\n <span\r\n class=\"menu-item-text\"\r\n [ngClass]=\"item.textClass ? item.textClass : ''\"\r\n >\r\n {{item.textId | translate}}\r\n </span>\r\n </a>\r\n }\r\n </li>\r\n </ng-container>\r\n </ul>\r\n</div>\r\n", styles: [".dropdown{position:relative;cursor:pointer;display:flex;justify-content:space-around;align-items:center;height:3.25em;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif}.dropdown.open{color:#555;background-color:#e7e7e7}.dropdown-toggle{position:relative;margin-left:.44em;margin-right:.44em;background-size:1.4em 1.4em;padding-right:.2em;padding-left:.2em;display:flex;flex-direction:row;align-items:center;font-weight:600;color:#777}.dropdown-toggle .user-photo{width:2.25em;height:2.25em;margin:auto;border-radius:50%;object-fit:cover;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAAB3RJTUUH3QodDgYCOH3ZEgAAAAlwSFlzAAAewQAAHsEBw2lUUwAAAARnQU1BAACxjwv8YQUAAAN4SURBVHja7ZjbcqJAEIY5oxsEPGCiyb7/C23yAslW1lS5igQUZmD2nyEXu4qEGcusF3ZZ3DDAN38fplv96fFR05h2YWZcIFONdYl2oVjWKQ8zxipuPAx0EQ246oZuGIau6/8BizGtLKlt2Z7vua5rmmbNRcsyz/MsTSmlpmkps6lg1SJFURQEvmVZmlCmlqq+SyiN1+vl8reybPJYXKfyfj73gwB4TNjf90FhW1YUTW3beX195dzyJh3ytKSj8cgP/Koqqz2iD2yt4nKWYRiMRiN48+xYwMDuh8MhawLag8OS4TBEhH229mSssqw8z0Okd/kS1sCP3sBDIJ5dLeQdgrjL9uuy4did9nASlviY3EeYvFTSWMh2QgjQuiS9LtQtKFWoEdJYtCCdnaKjgJCi+AIsXseR/lonvbT6cOq4WB0L3wjCwDBM1iHosQbVIQxD1LAzq6XpruNKPeA4jnwiyqrFGKWke6xgGzxF5E0OC0dvHG9w/nQh4/lByWazMU3pMiT3AD6QpunLy08Emd4ayGDCif78/LLdbrGZ82IJMjNLsyLP0e61Y6HxAhNvxeRNpWmGA6FZuxdxd5tlyj2qChYEWK3Wu12O9rj5pbqxy/PVKlaTSlktHbH19vZWsepQDcQcCtXi1wLXL1WrFgx+LHIcLPtvQMxtdzvcVZZKHasGOFrrmXbi5KOIJdpUE51qAxnv/mwTB5RCdT8RC7Xb9320qYfdF2gcxx74A0pUunhFLN5CFYXnDcbjUWNLyMRvMhl/u7khvAs6MxYfAAnFFRPiw8McEX3MTfUk8vD9fhJNkLNUPCWF9fkQhxfy2avirplMQoxiaOeZGBFbnsJdnDnRNIKv4zhONklBCoOb2SUZ9KfHHy3yUFriHMS0Mxh4/X7fsnkwVTJb5yUXzSMhWbZNkiR9T7FFpEt7qjarVQO5roP5ExOV6zi8hIpeU8oXQrYKsYakDQIfeYDDNEne43VcENIC14AFIDxwd3fr+wNeAoRJKdS4T/TaQHDdHgwD92aTLJdLdBmNVXcfC+vgr+ntFPMdUEqlceoonOjua/GQyIiNxWKRZdkh2T+ZCB/1ev3ZbIaCxIP8NIU+Ea+qHNeZz2dIoPofshYs1uu5hmnwgDi/VTz2LWTSYcg21S0RBF9jx/xxof+dXrGuWFesS7Ar1hXrXPYHJuH4M1T8og4AAAAASUVORK5CYII=) no-repeat center}.dropdown-toggle .caret{display:inline-block;width:0;height:0;margin-top:.19em;margin-left:.4em;vertical-align:middle;border-top:.25em dashed;border-top:.25em solid;border-right:.25em solid transparent;border-left:.25em solid transparent}.dropdown-toggle .user-name{margin-left:.2em}.dropdown-toggle:hover{color:#333}.languageMenuItem{position:relative}.languageMenuItem .languagesSubmenu{position:absolute;display:none;transform-origin:left;transform:rotate(180deg) translateY(calc(-50% + 1.605em));border-radius:.29em;border:thin solid rgba(0,0,0,.15);box-shadow:0 1px 2px #00000040;background-color:#fff}.languageMenuItem .languagesSubmenu .languageSubmenuItems{display:flex;flex-direction:column;transform-origin:center;transform:rotate(180deg);font-size:1em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem{border:none;background-color:#fff;padding-left:2em;padding-right:5em;line-height:2.4em;height:2.4em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected,.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected:first-child,.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem.selected:last-child{background-color:#ffe6da}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:first-child{background-color:#fff;border-radius:.29em .29em 0 0;margin-top:.5em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:last-child{background-color:#fff;border-radius:0 0 .29em .29em;margin-bottom:.5em}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:hover{background-color:#f5f5f5}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:first-child:hover{background-color:#f5f5f5;border-radius:.29em .29em 0 0}.languageMenuItem .languagesSubmenu .languageSubmenuItems .languageSubmenuItem:last-child:hover{background-color:#f5f5f5;border-radius:0 0 .29em .29em}.languageMenuItem .languagesSubmenu.open{display:block}.bimcomp-dropdown-menu{font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;position:absolute;top:100%;right:0;z-index:1;display:none;min-width:11.43em;padding:.5em 0 .57em;margin:0;font-size:.875em;list-style:none;background-color:#fff;border:thin solid rgba(0,0,0,.15);border-radius:0 0 .29em .29em;-webkit-box-shadow:0 .43em .86em rgba(0,0,0,.175);box-shadow:0 .43em .86em #0000002d;text-decoration-color:#333;text-decoration-line:none;text-decoration-style:solid;line-height:2.71em;font-weight:400}.bimcomp-dropdown-menu div{font-size:1em}.bimcomp-dropdown-menu .noselect{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bimcomp-dropdown-menu li{display:flex;flex-direction:row;align-items:center;cursor:pointer;box-sizing:content-box;padding:.2em 2.2em .2em 0;white-space:nowrap}.bimcomp-dropdown-menu li span{display:inline-block;flex:1 0 auto;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.bimcomp-dropdown-menu li .submenu{min-width:2.8em;width:2.8em;min-height:2.8em;height:2.8em}.bimcomp-dropdown-menu li .submenu.arrow{background:url('data:image/svg+xml,<svg width=\"5\" height=\"8\" viewBox=\"0 0 5 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4.18765 7.35013C4.51503 7.61204 5 7.37895 5 6.9597L5 1.04032C5 0.621068 4.51503 0.387982 4.18765 0.649887L0.488043 3.60957C0.23784 3.80974 0.23784 4.19028 0.488043 4.39044L4.18765 7.35013Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A%0D%0A');background-position:center center;background-repeat:no-repeat;background-size:.7em .7em}.bimcomp-dropdown-menu li:hover{background-color:#f5f5f5}.bimcomp-dropdown-menu ul,.bimcomp-dropdown-menu li{list-style:none}.bimcomp-dropdown-menu .divider{height:1px;margin:.5em 0;overflow:hidden;background-color:#e5e5e5;cursor:auto;padding:0}.bimcomp-dropdown-menu a:link,.bimcomp-dropdown-menu a:visited,.bimcomp-dropdown-menu a:hover,.bimcomp-dropdown-menu a:active{color:#555;text-decoration-color:#333;text-decoration-line:none}.bimcomp-dropdown-menu.open{display:flex;flex-direction:column}.text-capitalized{text-transform:capitalize}.icon{flex-shrink:0;display:inline-block;vertical-align:middle;margin:0 1.36em 0 0;width:1.57em;height:1.57em;background-position:center;background-repeat:no-repeat}.main-icon{flex-shrink:0;display:inline-block;vertical-align:middle;width:1.375em;height:1.375em;background-size:contain;background-position:center;background-repeat:no-repeat}.icon-account-settings{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<path d=\"M2.32311 3.18961C2.13152 1.81268 2.92547 0 5 0C7.07453 0 7.86848 1.81268 7.67689 3.18961C7.4853 4.56647 7.29984 4.96414 6.49976 5.85335C6.49976 5.85335 6.31047 5.97762 6.31047 6.55639C6.31047 6.91419 6.31047 6.94573 6.49976 7.08198C9.30387 8.21423 9.96294 8.78201 9.99666 9.72824C9.99819 9.77181 9.99972 10.2155 9.99972 10.7272C10.0005 11.4493 9.99972 12.3067 9.99666 12.366C9.94991 13.2733 9.36365 14 5 14C0.636354 14 0.0500897 13.2733 0.00334184 12.366C0.00027641 12.3057 -0.000489949 11.4204 0.00027641 10.6911C0.00027641 10.1948 0.00180913 9.77082 0.00334184 9.72824C0.0370616 8.78201 0.69613 8.21423 3.50024 7.08198C3.68953 6.94573 3.68953 6.91419 3.68953 6.55639C3.68953 5.97762 3.50024 5.85335 3.50024 5.85335C2.70016 4.96414 2.5147 4.56647 2.32311 3.18961Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M16.0084 11.0002L12.0127 15.0308L13.9755 17.0106L17.9712 12.9801L16.0084 11.0002Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M11 18.0356H12.9827L11 16.0356V18.0356Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-rca{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_6875:7973)\">%0D%0A<path d=\"M7.45468 2.12146C6.2831 0.949886 4.38361 0.949885 3.21204 2.12146L2.12132 3.21218C0.949748 4.38375 0.949745 6.28324 2.12132 7.45481L4.66669 10.0002L6.00003 8.66684L3.37379 6.0406C2.98326 5.65008 2.98326 5.01691 3.37379 4.62639L4.62625 3.37392C5.01678 2.9834 5.64994 2.9834 6.04046 3.37392L8.66671 6.00017L10 4.66683L7.45468 2.12146Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15.879 10.5453C17.0506 11.7169 17.0506 13.6164 15.879 14.788L14.7883 15.8787C13.6167 17.0503 11.7172 17.0503 10.5457 15.8787L8.0003 13.3333L9.33364 12L11.9599 14.6262C12.3504 15.0167 12.9836 15.0167 13.3741 14.6262L14.6266 13.3737C15.0171 12.9832 15.0171 12.3501 14.6266 11.9595L12.0003 9.33329L13.3337 7.99995L15.879 10.5453Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M10.0003 7.33285L11.6993 3.36863C11.8695 2.97157 12.3156 2.77124 12.7254 2.90784V2.90784C13.3111 3.1031 13.4866 3.84654 13.05 4.28314L10.0003 7.33285Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7.33432 10.0003L3.37009 11.6993C2.97304 11.8695 2.7727 12.3156 2.90931 12.7254V12.7254C3.10456 13.3111 3.848 13.4866 4.2846 13.05L7.33432 10.0003Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M10.6657 7.99967L14.6299 6.30072C15.027 6.13055 15.2273 5.68444 15.0907 5.27462V5.27462C14.8954 4.68885 14.152 4.51335 13.7154 4.94996L10.6657 7.99967Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7.99967 10.6671L6.30072 14.6314C6.13055 15.0284 5.68444 15.2288 5.27462 15.0922V15.0922C4.68885 14.8969 4.51335 14.1535 4.94996 13.7169L7.99967 10.6671Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_6875:7973\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A') no-repeat center}.icon-user-guide{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M8.6,14L8.6,14L8.6,14c-0.6,0-1,0.1-1.3,0.3C7.1,14.6,7,14.9,7,15.2c0,0.4,0.1,0.6,0.4,0.9%0D%0A%09%09c0.3,0.2,0.7,0.3,1.3,0.3h0h0c0.6,0,1-0.1,1.3-0.3c0.3-0.2,0.4-0.5,0.4-0.9c0-0.4-0.1-0.6-0.4-0.9C9.6,14.1,9.2,14,8.6,14z\"/>%0D%0A%09<path class=\"st0\" d=\"M12.3,3.3C11.4,2.4,10.3,2,8.8,2c-0.7,0-1.4,0.1-2,0.3C6.1,2.5,5.2,2.8,4,3.4v1.9c0,0.6,0.1,1,0.3,1.2%0D%0A%09%09c0.2,0.2,0.5,0.4,0.8,0.4c0.3,0,0.6-0.1,0.8-0.4c0.2-0.2,0.3-0.6,0.3-1.2V4.9c0.2-0.1,0.4-0.2,0.6-0.3c0.6-0.2,1.2-0.3,1.9-0.3%0D%0A%09%09c0.6,0,1.1,0.1,1.5,0.3c0.1,0.1,0.3,0.2,0.4,0.3c0.4,0.4,0.7,0.9,0.7,1.4c0,0.4-0.2,0.8-0.6,1.2c-0.4,0.4-1.5,0.9-3.3,1.6v1.3%0D%0A%09%09c0,0.6,0.1,1,0.3,1.2C8,11.9,8.3,12,8.6,12c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.4-1c1.5-0.7,2.6-1.3,3.1-2%0D%0A%09%09c0.5-0.6,0.8-1.4,0.8-2.3C13.7,5.2,13.2,4.1,12.3,3.3z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.icon-support{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M16.7,13.6c0,0,0-0.1,0.1-0.1c0.1-0.2,0.2-0.4,0.3-0.7v-0.1l0,0C17.7,11.6,18,10.3,18,9c0-5-4-9-9-9S0,4,0,9%0D%0A%09c0,1.1,0.2,2.2,0.6,3.2l0,0l0,0c0.1,0.2,0.2,0.5,0.3,0.7V13c0.1,0.2,0.2,0.5,0.4,0.7c0,0,0,0.1,0.1,0.1c0.1,0.2,0.3,0.4,0.4,0.6%0D%0A%09c0,0,0,0.1,0.1,0.1c0.2,0.2,0.3,0.4,0.5,0.6l0.1,0.1c0.2,0.2,0.3,0.3,0.5,0.5l0.1,0.1c0.2,0.2,0.4,0.3,0.5,0.4l0.1,0.1%0D%0A%09c0.2,0.1,0.4,0.2,0.6,0.4c0.1,0,0.1,0.1,0.2,0.1c0.2,0.1,0.4,0.2,0.6,0.3c0.1,0,0.1,0.1,0.2,0.1l0,0C6.4,17.7,7.7,18,9,18%0D%0A%09c3,0,5.6-1.5,7.3-3.7c0,0,0,0,0-0.1C16.5,14,16.6,13.8,16.7,13.6z M11.1,12.4c0,0-0.1,0-0.1,0.1c-0.2,0.1-0.4,0.2-0.6,0.3%0D%0A%09C10,12.9,9.5,13,9,13c-0.6,0-1.2-0.2-1.7-0.4c-0.2-0.1-0.4-0.2-0.6-0.3l0,0c-0.2-0.1-0.4-0.3-0.5-0.5l0,0c-0.2-0.2-0.3-0.4-0.4-0.6%0D%0A%09l0,0c-0.1-0.2-0.2-0.4-0.3-0.7C5.1,10,5,9.5,5,9c0-0.6,0.1-1.1,0.4-1.6l0,0c0.4-1,1.2-1.7,2.2-2.1l0,0C8,5.1,8.5,5,9,5%0D%0A%09c0.6,0,1.1,0.1,1.6,0.4l0,0c1,0.4,1.7,1.2,2.1,2.2l0,0C12.9,8,13,8.5,13,9c0,0.6-0.2,1.2-0.4,1.7c-0.1,0.2-0.2,0.4-0.3,0.6l-0.1,0.1%0D%0A%09c-0.1,0.2-0.3,0.3-0.4,0.5L11.7,12C11.5,12.1,11.3,12.3,11.1,12.4z M13.5,11.1C13.8,10.4,14,9.7,14,9c0-0.6-0.1-1.2-0.3-1.8l2.8-1.1%0D%0A%09C16.8,7.1,17,8,17,9c0,1.2-0.3,2.3-0.7,3.3L13.5,11.1z M12.3,1.7l-1.2,2.7C10.4,4.2,9.7,4,9,4C8.4,4,7.8,4.1,7.2,4.3l-1-2.8%0D%0A%09C7.1,1.2,8,1,9,1C10.2,1,11.3,1.3,12.3,1.7z M1,9c0-1.2,0.3-2.3,0.7-3.3l2.7,1.2C4.2,7.6,4,8.3,4,9c0,0.6,0.1,1.2,0.3,1.8l-2.8,1.1%0D%0A%09C1.2,10.9,1,10,1,9z M5.7,16.3l1.2-2.7C7.6,13.8,8.3,14,9,14c0.6,0,1.2-0.1,1.8-0.3l1.1,2.8C10.9,16.8,10,17,9,17%0D%0A%09C7.8,17,6.7,16.7,5.7,16.3z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-forum{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<polygon class=\"st0\" points=\"14,4 14,6 16,6 16,12 14,12 13,12 8,12 7.5,12 6,14 6,14 12,14 15,17 15,14 18,14 18,4 \"/>%0D%0A<path class=\"st0\" d=\"M7,11h6V1H0v10h4v4L7,11z M2,9V3h9v6H2z\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon-clear-cache{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<path class=\"st0\" d=\"M7,18h2c0-0.1-2-1-2-1V18z\"/>%0D%0A%09<polygon class=\"st0\" points=\"3,18 6,18 5,16 %09\"/>%0D%0A%09<polygon class=\"st0\" points=\"2,18 2,17 0,18 %09\"/>%0D%0A%09<path class=\"st0\" d=\"M10,7C8.8,6.5,7,6,7,6S3.2,2.1,2.2,1.1c-0.9-0.9-1.5-1.4-2-1c-0.5,0.4,0.1,1.1,1,2C2.2,3.2,6,7,6,7%0D%0A%09%09s0.6,1.7,1,3L10,7z\"/>%0D%0A%09<path class=\"st0\" d=\"M11,7l-4,4c0.4,1.6,5,7,5,7l6-6C18,12,12.9,7.8,11,7z\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.icon-languages{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 1L5 3H0V4.49999L2 4.5C2.43947 6.27912 3.24436 7.55186 4.50213 8.88094C3.3069 9.5683 0 11 0 11L1 12C1 12 3.5 11 5.44323 9.75533C6.5 10.5 8 11.5 8 11.5L9 10.5C9 10.5 7.5572 9.75533 6.53981 8.88087C7.75282 7.52893 8.5814 6.27217 9 4.5H11V3H6.5C6.43255 2.80538 5.5 1 5.5 1H4ZM5.4856 8.0701C4.40554 6.99056 3.83462 6.00259 3.5 4.5H7.5C7.24387 5.99973 6.55146 7.01658 5.4856 8.0701Z\" fill=\"%23444444\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.25214 16.9813L9.99998 16.9813L11 14.5H15L16.007 16.9813H17.7222L13.7225 7.02972L12.2521 7.03339L8.25214 16.9813ZM14.5 13H11.5L13.0012 8.54775L14.5 13Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A%0D%0A') no-repeat center}.icon-log-out{background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 18 18\" style=\"enable-background:new 0 0 18 18;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<g>%0D%0A%09<polygon class=\"st0\" points=\"7,1 7,3 16,3 16,16 7,16 7,18 18,18 18,1 %09\"/>%0D%0A%09<polygon class=\"st0\" points=\"13,8 5,8 5,5 0,9.5 5,14 5,11 13,11 %09\"/>%0D%0A</g>%0D%0A</svg>%0D%0A') no-repeat center}.bimcomp-overlay{position:fixed;width:100vw;height:100vh;left:0;top:0;display:none}.bimcomp-overlay.open{display:block;z-index:1}\n"] }]
|
|
1962
1962
|
}], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { accountSettingsVisible: [{
|
|
1963
1963
|
type: Input,
|
|
1964
1964
|
args: [{ transform: booleanAttribute }]
|