ngx-bimplus-components 0.0.84-draggable → 0.0.84-draggable-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.
- package/esm2022/lib/components/bimplus-floating-bar-hide-objects/bimplus-floating-bar-hide-objects.component.mjs +2 -2
- package/esm2022/lib/components/bimplus-floating-bar-isolation-objects/bimplus-floating-bar-isolation-objects.component.mjs +2 -2
- package/esm2022/lib/components/bimplus-floating-bar-project-navigator/bimplus-floating-bar-project-navigator.component.mjs +3 -3
- package/esm2022/lib/services/layout-manager.service.mjs +32 -15
- package/fesm2022/ngx-bimplus-components.mjs +35 -18
- package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
- package/lib/components/bimplus-floating-bar-hide-objects/bimplus-floating-bar-hide-objects.component.d.ts +3 -3
- package/lib/components/bimplus-floating-bar-isolation-objects/bimplus-floating-bar-isolation-objects.component.d.ts +3 -3
- package/lib/services/layout-manager.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -814,17 +814,18 @@ class LayoutManagerService {
|
|
|
814
814
|
if (!config) {
|
|
815
815
|
return;
|
|
816
816
|
}
|
|
817
|
-
const
|
|
818
|
-
|
|
817
|
+
const parentElement = this._getDomParentElement(obj);
|
|
818
|
+
const internalElement = this._getDomInternalElement(obj, '');
|
|
819
|
+
if (!parentElement || !internalElement) {
|
|
819
820
|
return;
|
|
820
821
|
}
|
|
821
|
-
|
|
822
|
-
|
|
822
|
+
parentElement.style.left = (config.left) + 'px';
|
|
823
|
+
parentElement.style.top = (config.top) + 'px';
|
|
823
824
|
if (config.width && config.width > 0) {
|
|
824
|
-
|
|
825
|
+
internalElement.style.width = config.width + 'px';
|
|
825
826
|
}
|
|
826
827
|
if (config.height && config.height > 0) {
|
|
827
|
-
|
|
828
|
+
internalElement.style.height = config.height + 'px';
|
|
828
829
|
}
|
|
829
830
|
this.checkPosition(obj.id, "", undefined, 0, 0, true);
|
|
830
831
|
}
|
|
@@ -878,18 +879,31 @@ class LayoutManagerService {
|
|
|
878
879
|
config[objId] = newItem;
|
|
879
880
|
this.localStorageService.setObject(this.CONFIG, config);
|
|
880
881
|
}
|
|
881
|
-
|
|
882
|
+
_getDomParentElement(item) {
|
|
883
|
+
const element = item.element?.nativeElement; //?.shadowRoot || item.element?.nativeElement;
|
|
884
|
+
if (!element) {
|
|
885
|
+
console.error('_getDomParentElement: missing element');
|
|
886
|
+
return null;
|
|
887
|
+
}
|
|
888
|
+
return element;
|
|
889
|
+
}
|
|
890
|
+
_getDomInternalElement(item, selector) {
|
|
882
891
|
const element = item.element?.nativeElement?.shadowRoot || item.element?.nativeElement;
|
|
883
892
|
if (!element) {
|
|
884
|
-
console.error('
|
|
893
|
+
console.error('_getDomInternalElement: missing element');
|
|
885
894
|
return null;
|
|
886
895
|
}
|
|
887
896
|
const mySelector = selector && selector?.length > 0 ? selector : item.selector;
|
|
888
|
-
|
|
897
|
+
const retval = mySelector ? element.querySelector(mySelector) : element;
|
|
898
|
+
if (!retval) {
|
|
899
|
+
console.error(`_getDomInternalElement: selection of element ${element} failed with selector ${mySelector}`);
|
|
900
|
+
}
|
|
901
|
+
return retval;
|
|
889
902
|
}
|
|
890
903
|
_getElementRect(item, selector, parentRectangle) {
|
|
891
|
-
const selectedObj = this.
|
|
904
|
+
const selectedObj = this._getDomInternalElement(item, selector);
|
|
892
905
|
if (!selectedObj) {
|
|
906
|
+
console.error('_getElementRect: missing selected object');
|
|
893
907
|
return null;
|
|
894
908
|
}
|
|
895
909
|
const parentRect = parentRectangle || this.resizeObserverService.getParentAppRect();
|
|
@@ -898,6 +912,9 @@ class LayoutManagerService {
|
|
|
898
912
|
return null;
|
|
899
913
|
}
|
|
900
914
|
const elementRect = selectedObj.getBoundingClientRect();
|
|
915
|
+
if (!elementRect) {
|
|
916
|
+
console.error('_getElementRect: missing bounding rect');
|
|
917
|
+
}
|
|
901
918
|
return elementRect;
|
|
902
919
|
}
|
|
903
920
|
// checks whether element or element with additional selection of subelement is placed within the give rectangle
|
|
@@ -913,11 +930,11 @@ class LayoutManagerService {
|
|
|
913
930
|
const parentRect = parentRectangle || this.resizeObserverService.getParentAppRect();
|
|
914
931
|
const elementRect = this._getElementRect(e1, selector, parentRect);
|
|
915
932
|
if (!elementRect) {
|
|
916
|
-
console.error('checkPosition: missing
|
|
933
|
+
console.error('checkPosition: missing elementRect');
|
|
917
934
|
return { deltaX: 0, deltaY: 0 };
|
|
918
935
|
}
|
|
919
936
|
if (!elementRect?.width || !elementRect?.height) {
|
|
920
|
-
console.error('checkPosition:
|
|
937
|
+
console.error('checkPosition:element rect empty ');
|
|
921
938
|
return { deltaX: 0, deltaY: 0 };
|
|
922
939
|
}
|
|
923
940
|
let checkBoundaries = true;
|
|
@@ -944,7 +961,7 @@ class LayoutManagerService {
|
|
|
944
961
|
this._translateRectangle(elementDOMRect, deltaX, deltaY);
|
|
945
962
|
}
|
|
946
963
|
}
|
|
947
|
-
const selectedElement = this.
|
|
964
|
+
const selectedElement = this._getDomParentElement(e1);
|
|
948
965
|
if (!selectedElement) {
|
|
949
966
|
return;
|
|
950
967
|
}
|
|
@@ -1055,7 +1072,7 @@ class LayoutManagerService {
|
|
|
1055
1072
|
if (!item) {
|
|
1056
1073
|
return;
|
|
1057
1074
|
}
|
|
1058
|
-
const element = this.
|
|
1075
|
+
const element = this._getDomParentElement(item);
|
|
1059
1076
|
if (!element) {
|
|
1060
1077
|
return;
|
|
1061
1078
|
}
|
|
@@ -1603,7 +1620,7 @@ class BimplusFloatingBarHideObjectsComponent extends BimplusLocalizedWidgetCompo
|
|
|
1603
1620
|
this.focusSelectorId = 'hide-menu-id';
|
|
1604
1621
|
this.layoutManagerService = layoutManagerService;
|
|
1605
1622
|
}
|
|
1606
|
-
|
|
1623
|
+
ngAfterViewInit() {
|
|
1607
1624
|
// Subscribe to the observable
|
|
1608
1625
|
this.layoutManagerService.registerObject(this.element, this.componentId, '.floating-panel.visible', true, DEFAULT_POSITION_LEFT$3, DEFAULT_POSITION_TOP$3);
|
|
1609
1626
|
}
|
|
@@ -1649,7 +1666,7 @@ class BimplusFloatingBarIsolationObjectsComponent extends BimplusLocalizedWidget
|
|
|
1649
1666
|
this.focusSelectorId = 'isolation-menu-id';
|
|
1650
1667
|
this.componentId = 'isolation-menu-fp-id';
|
|
1651
1668
|
}
|
|
1652
|
-
|
|
1669
|
+
ngAfterViewInit() {
|
|
1653
1670
|
this.layoutManagerService.registerObject(this.element, this.componentId, '.floating-panel.visible', true, DEFAULT_POSITION_LEFT$2, DEFAULT_POSITION_TOP$2);
|
|
1654
1671
|
}
|
|
1655
1672
|
ngAfterViewChecked() {
|
|
@@ -1827,7 +1844,7 @@ class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocalizedWidget
|
|
|
1827
1844
|
}
|
|
1828
1845
|
}
|
|
1829
1846
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarProjectNavigatorComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1830
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusFloatingBarProjectNavigatorComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-project-navigator", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", noModelsMessage: "noModelsMessage", isLoading: "isLoading", loadingDataMessage: "loadingDataMessage", items: "items", isPanelToolbarVisible: "isPanelToolbarVisible", expandedModelTree: "expandedModelTree", project: "project" }, outputs: { actionClicked: "actionClicked", clickedModel: "clickedModel", clickedLayer: "clickedLayer", toggleOpacityOfModel: "toggleOpacityOfModel", toggleOpacityOfLayer: "toggleOpacityOfLayer", toggleVisibilityOfModel: "toggleVisibilityOfModel", toggleVisibilityOfLayer: "toggleVisibilityOfLayer", logoClicked: "logoClicked" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\" \r\n [resizeEnabled]=\"true\"\r\n [isVisible]=\"true\" \r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\" \r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [items]=\"items\"\r\n (actionClicked)=\"actionClicked.emit($event)\" \r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n\r\n <lib-bimplus-floating-bar-body\r\n class=\"floating-bar-body\"\r\n [parentId] = \"componentId\"\r\n >\r\n <lib-bimplus-panel-toolbar\r\n [isPanelToolbarVisible]=\"isPanelToolbarVisible\"\r\n ></lib-bimplus-panel-toolbar>\r\n\r\n @if(isLoading && loadingDataMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"loadingDataMessage | translate\"></span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"noModelsMessage | translate\"></span>\r\n }@else{\r\n <lib-bimplus-scrollable-container>\r\n <lib-project-models\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [models]=\"project.models\"\r\n [modelTreeRootTitle]=\"project.name + ' - ' + project.teamSlug\"\r\n [expandedModelTree]=\"expandedModelTree\"\r\n (clickedModel)=\"clickedModel.emit($event)\"\r\n (clickedLayer)=\"clickedLayer.emit($event)\"\r\n (toggleOpacityOfModel)=\"toggleOpacityOfModel.emit($event)\"\r\n (toggleOpacityOfLayer)=\"toggleOpacityOfLayer.emit($event)\"\r\n (toggleVisibilityOfModel)=\"toggleVisibilityOfModel.emit($event)\"\r\n (toggleVisibilityOfLayer)=\"toggleVisibilityOfLayer.emit($event)\"\r\n >\r\n </lib-project-models>\r\n </lib-bimplus-scrollable-container>\r\n }\r\n }\r\n </lib-bimplus-floating-bar-body>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}lib-bimplus-scrollable-container{min-width:30rem;height:100%;--scrollable-container-paddin-right: 1rem}lib-project-models{margin-right:1.4rem}.project-navigator-fp .floating-panel.visible{min-width:26.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp{pointer-events:none;position:absolute;top:0;left:0}.project-navigator-fp .scene-selector{padding-left:.6rem;padding-right:.9rem;margin-bottom:.6rem}.project-navigator-fp .saved-scenes-select{margin-left:.6rem;margin-right:.6rem}.project-navigator-fp .scene-options{display:flex;flex:1 1 auto;flex-direction:row;align-items:center;justify-content:center}.project-navigator-fp .scene-options .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .scene-options .only-icon-button{flex:1 1 auto}.project-navigator-fp .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .bim-item-refresh{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem;background-size:2rem 2rem;cursor:pointer}.project-navigator-fp .bim-item-refresh.disabled{cursor:default}.project-navigator-fp.floating-panel{min-width:32.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.project-navigator-fp.floating-panel .floating-panel__body{padding-bottom:1.2rem;-webkit-user-select:none;user-select:none}.project-navigator-fp.floating-panel .floating-panel__body .bim-divisions-view .jstree-component{margin-top:0}.project-navigator-fp.floating-panel .floating-panel__header-content{justify-content:flex-end}.project-navigator-fp.floating-panel .ifc-export-container{height:3.2rem;width:3rem}.project-navigator-fp .model-topology-container{height:100%}.project-navigator-fp .model-topology-container.nodisplay{display:none}.project-navigator-fp .inline-message{padding:1.2rem}.is-touch .project-navigator-fp.floating-panel{min-width:27.5rem}.is-touch .project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.is-touch .project-navigator-fp.floating-panel .floating-panel__resizerNE{background:transparent}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible", "id"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed", "parentId"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "parentId", "items"], outputs: ["actionClicked"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "parentId", "title"] }, { kind: "component", type: BimplusFloatingBarBodyComponent, selector: "lib-bimplus-floating-bar-body", inputs: ["isCollapsed", "parentId"] }, { kind: "component", type: BimplusPanelToolbarComponent, selector: "lib-bimplus-panel-toolbar", inputs: ["isPanelToolbarVisible"] }, { kind: "component", type: ProjectModelsComponent, selector: "lib-project-models", inputs: ["modelTreeRootTitle", "modelTreeRootName", "expandedModelTree", "models"], outputs: ["clickedModel", "clickedLayer", "toggleOpacityOfModel", "toggleOpacityOfLayer", "toggleVisibilityOfModel", "toggleVisibilityOfLayer"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "component", type: BimplusScrollableContainerComponent, selector: "lib-bimplus-scrollable-container" }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
1847
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusFloatingBarProjectNavigatorComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-project-navigator", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", noModelsMessage: "noModelsMessage", isLoading: "isLoading", loadingDataMessage: "loadingDataMessage", items: "items", isPanelToolbarVisible: "isPanelToolbarVisible", expandedModelTree: "expandedModelTree", project: "project" }, outputs: { actionClicked: "actionClicked", clickedModel: "clickedModel", clickedLayer: "clickedLayer", toggleOpacityOfModel: "toggleOpacityOfModel", toggleOpacityOfLayer: "toggleOpacityOfLayer", toggleVisibilityOfModel: "toggleVisibilityOfModel", toggleVisibilityOfLayer: "toggleVisibilityOfLayer", logoClicked: "logoClicked" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\" \r\n [resizeEnabled]=\"true\"\r\n [isVisible]=\"true\" \r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\" \r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [items]=\"items\"\r\n (actionClicked)=\"actionClicked.emit($event)\" \r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n\r\n <lib-bimplus-floating-bar-body\r\n class=\"floating-bar-body\"\r\n [parentId] = \"componentId\"\r\n >\r\n <lib-bimplus-panel-toolbar\r\n [isPanelToolbarVisible]=\"isPanelToolbarVisible\"\r\n ></lib-bimplus-panel-toolbar>\r\n\r\n @if(isLoading && loadingDataMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"loadingDataMessage | translate\"></span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"noModelsMessage | translate\"></span>\r\n }@else{\r\n <lib-bimplus-scrollable-container>\r\n <lib-project-models\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [models]=\"project.models\"\r\n [modelTreeRootTitle]=\"project.name + ' - ' + project.teamSlug\"\r\n [expandedModelTree]=\"expandedModelTree\"\r\n (clickedModel)=\"clickedModel.emit($event)\"\r\n (clickedLayer)=\"clickedLayer.emit($event)\"\r\n (toggleOpacityOfModel)=\"toggleOpacityOfModel.emit($event)\"\r\n (toggleOpacityOfLayer)=\"toggleOpacityOfLayer.emit($event)\"\r\n (toggleVisibilityOfModel)=\"toggleVisibilityOfModel.emit($event)\"\r\n (toggleVisibilityOfLayer)=\"toggleVisibilityOfLayer.emit($event)\"\r\n >\r\n </lib-project-models>\r\n </lib-bimplus-scrollable-container>\r\n }\r\n }\r\n </lib-bimplus-floating-bar-body>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}lib-bimplus-scrollable-container{min-width:30rem;height:100%;--scrollable-container-paddin-right: 1rem}lib-project-models{margin-right:1.4rem}.project-navigator-fp .floating-panel.visible:not(.collapsed){min-width:29.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp{pointer-events:none;position:absolute;top:0;left:0}.project-navigator-fp .scene-selector{padding-left:.6rem;padding-right:.9rem;margin-bottom:.6rem}.project-navigator-fp .saved-scenes-select{margin-left:.6rem;margin-right:.6rem}.project-navigator-fp .scene-options{display:flex;flex:1 1 auto;flex-direction:row;align-items:center;justify-content:center}.project-navigator-fp .scene-options .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .scene-options .only-icon-button{flex:1 1 auto}.project-navigator-fp .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .bim-item-refresh{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem;background-size:2rem 2rem;cursor:pointer}.project-navigator-fp .bim-item-refresh.disabled{cursor:default}.project-navigator-fp.floating-panel{min-width:32.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.project-navigator-fp.floating-panel .floating-panel__body{padding-bottom:1.2rem;-webkit-user-select:none;user-select:none}.project-navigator-fp.floating-panel .floating-panel__body .bim-divisions-view .jstree-component{margin-top:0}.project-navigator-fp.floating-panel .floating-panel__header-content{justify-content:flex-end}.project-navigator-fp.floating-panel .ifc-export-container{height:3.2rem;width:3rem}.project-navigator-fp .model-topology-container{height:100%}.project-navigator-fp .model-topology-container.nodisplay{display:none}.project-navigator-fp .inline-message{padding:1.2rem}.is-touch .project-navigator-fp.floating-panel{min-width:27.5rem}.is-touch .project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.is-touch .project-navigator-fp.floating-panel .floating-panel__resizerNE{background:transparent}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible", "id"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed", "parentId"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "parentId", "items"], outputs: ["actionClicked"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "parentId", "title"] }, { kind: "component", type: BimplusFloatingBarBodyComponent, selector: "lib-bimplus-floating-bar-body", inputs: ["isCollapsed", "parentId"] }, { kind: "component", type: BimplusPanelToolbarComponent, selector: "lib-bimplus-panel-toolbar", inputs: ["isPanelToolbarVisible"] }, { kind: "component", type: ProjectModelsComponent, selector: "lib-project-models", inputs: ["modelTreeRootTitle", "modelTreeRootName", "expandedModelTree", "models"], outputs: ["clickedModel", "clickedLayer", "toggleOpacityOfModel", "toggleOpacityOfLayer", "toggleVisibilityOfModel", "toggleVisibilityOfLayer"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "component", type: BimplusScrollableContainerComponent, selector: "lib-bimplus-scrollable-container" }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
1831
1848
|
}
|
|
1832
1849
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarProjectNavigatorComponent, decorators: [{
|
|
1833
1850
|
type: Component,
|
|
@@ -1842,7 +1859,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
1842
1859
|
ProjectModelsComponent,
|
|
1843
1860
|
TranslateModule,
|
|
1844
1861
|
BimplusScrollableContainerComponent
|
|
1845
|
-
], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\" \r\n [resizeEnabled]=\"true\"\r\n [isVisible]=\"true\" \r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\" \r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [items]=\"items\"\r\n (actionClicked)=\"actionClicked.emit($event)\" \r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n\r\n <lib-bimplus-floating-bar-body\r\n class=\"floating-bar-body\"\r\n [parentId] = \"componentId\"\r\n >\r\n <lib-bimplus-panel-toolbar\r\n [isPanelToolbarVisible]=\"isPanelToolbarVisible\"\r\n ></lib-bimplus-panel-toolbar>\r\n\r\n @if(isLoading && loadingDataMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"loadingDataMessage | translate\"></span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"noModelsMessage | translate\"></span>\r\n }@else{\r\n <lib-bimplus-scrollable-container>\r\n <lib-project-models\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [models]=\"project.models\"\r\n [modelTreeRootTitle]=\"project.name + ' - ' + project.teamSlug\"\r\n [expandedModelTree]=\"expandedModelTree\"\r\n (clickedModel)=\"clickedModel.emit($event)\"\r\n (clickedLayer)=\"clickedLayer.emit($event)\"\r\n (toggleOpacityOfModel)=\"toggleOpacityOfModel.emit($event)\"\r\n (toggleOpacityOfLayer)=\"toggleOpacityOfLayer.emit($event)\"\r\n (toggleVisibilityOfModel)=\"toggleVisibilityOfModel.emit($event)\"\r\n (toggleVisibilityOfLayer)=\"toggleVisibilityOfLayer.emit($event)\"\r\n >\r\n </lib-project-models>\r\n </lib-bimplus-scrollable-container>\r\n }\r\n }\r\n </lib-bimplus-floating-bar-body>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}lib-bimplus-scrollable-container{min-width:30rem;height:100%;--scrollable-container-paddin-right: 1rem}lib-project-models{margin-right:1.4rem}.project-navigator-fp .floating-panel.visible{min-width:26.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp{pointer-events:none;position:absolute;top:0;left:0}.project-navigator-fp .scene-selector{padding-left:.6rem;padding-right:.9rem;margin-bottom:.6rem}.project-navigator-fp .saved-scenes-select{margin-left:.6rem;margin-right:.6rem}.project-navigator-fp .scene-options{display:flex;flex:1 1 auto;flex-direction:row;align-items:center;justify-content:center}.project-navigator-fp .scene-options .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .scene-options .only-icon-button{flex:1 1 auto}.project-navigator-fp .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .bim-item-refresh{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem;background-size:2rem 2rem;cursor:pointer}.project-navigator-fp .bim-item-refresh.disabled{cursor:default}.project-navigator-fp.floating-panel{min-width:32.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.project-navigator-fp.floating-panel .floating-panel__body{padding-bottom:1.2rem;-webkit-user-select:none;user-select:none}.project-navigator-fp.floating-panel .floating-panel__body .bim-divisions-view .jstree-component{margin-top:0}.project-navigator-fp.floating-panel .floating-panel__header-content{justify-content:flex-end}.project-navigator-fp.floating-panel .ifc-export-container{height:3.2rem;width:3rem}.project-navigator-fp .model-topology-container{height:100%}.project-navigator-fp .model-topology-container.nodisplay{display:none}.project-navigator-fp .inline-message{padding:1.2rem}.is-touch .project-navigator-fp.floating-panel{min-width:27.5rem}.is-touch .project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.is-touch .project-navigator-fp.floating-panel .floating-panel__resizerNE{background:transparent}\n"] }]
|
|
1862
|
+
], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\" \r\n [resizeEnabled]=\"true\"\r\n [isVisible]=\"true\" \r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\" \r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n class=\"floating-bar-header-content\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [items]=\"items\"\r\n (actionClicked)=\"actionClicked.emit($event)\" \r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-header-content>\r\n\r\n <lib-bimplus-floating-bar-dragger\r\n class=\"floating-bar-dragger\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\r\n\r\n <lib-bimplus-floating-bar-body\r\n class=\"floating-bar-body\"\r\n [parentId] = \"componentId\"\r\n >\r\n <lib-bimplus-panel-toolbar\r\n [isPanelToolbarVisible]=\"isPanelToolbarVisible\"\r\n ></lib-bimplus-panel-toolbar>\r\n\r\n @if(isLoading && loadingDataMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"loadingDataMessage | translate\"></span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\" [innerHtml]=\"noModelsMessage | translate\"></span>\r\n }@else{\r\n <lib-bimplus-scrollable-container>\r\n <lib-project-models\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [models]=\"project.models\"\r\n [modelTreeRootTitle]=\"project.name + ' - ' + project.teamSlug\"\r\n [expandedModelTree]=\"expandedModelTree\"\r\n (clickedModel)=\"clickedModel.emit($event)\"\r\n (clickedLayer)=\"clickedLayer.emit($event)\"\r\n (toggleOpacityOfModel)=\"toggleOpacityOfModel.emit($event)\"\r\n (toggleOpacityOfLayer)=\"toggleOpacityOfLayer.emit($event)\"\r\n (toggleVisibilityOfModel)=\"toggleVisibilityOfModel.emit($event)\"\r\n (toggleVisibilityOfLayer)=\"toggleVisibilityOfLayer.emit($event)\"\r\n >\r\n </lib-project-models>\r\n </lib-bimplus-scrollable-container>\r\n }\r\n }\r\n </lib-bimplus-floating-bar-body>\r\n</lib-bimplus-floating-bar>\r\n", styles: ["@charset \"UTF-8\";.flexbox{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.text-selected{color:#fe5000}.ui-icon22px{width:2.2rem;height:2.2rem;display:inline-block;float:right;border-radius:.4rem;background-position:center center;background-repeat:no-repeat;cursor:pointer}.ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat}.touch-ui-icon-sidemenu{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem}.ui-icon-sidemenu-important{width:2.4rem!important;height:2.4rem!important;background-size:1.8rem 1.8rem!important;background-position:center center;background-repeat:no-repeat}.ui-icon46px{padding:5.6rem 0 .3rem;width:6rem;margin:-.1rem .3rem .6rem .1rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-position:center 1rem;background-repeat:no-repeat;background-size:4.2rem 4.2rem;cursor:pointer}.ui-icon18px{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move}.left-menu-icon{height:4rem;width:4rem;background-size:2.2rem 2.2rem;line-height:2.2rem;margin:0;padding:0;border-width:0}.ui-icon-isolation-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238D8D8D\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"white\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238D8D8D\"/>%0D%0A</svg>%0D%0A')}.ui-icon-isolation-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9 14.6129L4.2 12L1 13.6452L9 18L17 13.6452L13.8 12L9 14.6129Z\" fill=\"%238b3b00\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%238b3b00\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"white\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"white\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.3478 2.19354L15.1543 1L12.3835 3.77079C11.3677 3.30213 10.2342 3 9 3C3.5 3 0 9 0 9C0 9 1.21963 11.0908 3.35034 12.804L1.23291 14.9214L2.42645 16.1149L16.3478 2.19354ZM4.65084 11.5035L6.15545 9.99885C6.04678 9.67772 5.99422 9.33982 6.0005 9.00002C5.99318 8.60403 6.06577 8.21064 6.21394 7.84335C6.36211 7.47607 6.58281 7.14242 6.86286 6.86238C7.14291 6.58233 7.47655 6.36162 7.84384 6.21345C8.21113 6.06528 8.60452 5.99269 9.0005 6.00002C9.34031 5.99373 9.6782 6.04629 9.99933 6.15496L11.5035 4.65084C11.3162 4.54394 11.1217 4.44916 10.9211 4.36726C10.3116 4.11831 9.65843 3.99345 9 4C8.34157 3.99345 7.68845 4.11831 7.07886 4.36726C6.46928 4.61622 5.91547 4.98427 5.44987 5.44987C4.98427 5.91547 4.61622 6.46928 4.36726 7.07886C4.11831 7.68845 3.99345 8.34157 4 9C3.99345 9.65843 4.11831 10.3116 4.36726 10.9211C4.44916 11.1217 4.54394 11.3162 4.65084 11.5035Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M13.5785 6.95113L15.0224 5.5072C16.922 7.152 18 9 18 9C18 9 14.5 15 9 15C7.95646 15 6.98492 14.784 6.09562 14.434L6.95113 13.5785C6.99342 13.5971 7.036 13.6152 7.07886 13.6327C7.68845 13.8817 8.34157 14.0065 9 14C9.65843 14.0065 10.3116 13.8817 10.9211 13.6327C11.5307 13.3838 12.0845 13.0157 12.5501 12.5501C13.0157 12.0845 13.3838 11.5307 13.6327 10.9211C13.8817 10.3116 14.0065 9.65843 14 9C14.0065 8.34157 13.8817 7.68845 13.6327 7.07886C13.6152 7.036 13.5971 6.99342 13.5785 6.95113Z\" fill=\"%23fe5000\"/>%0D%0A<path d=\"M9.0005 12C8.85126 12.0028 8.70238 11.9942 8.55512 11.9745L11.975 8.55464C11.9947 8.70189 12.0033 8.85077 12.0005 9.00002C12.0078 9.396 11.9352 9.78939 11.7871 10.1567C11.6389 10.524 11.4182 10.8576 11.1381 11.1377C10.8581 11.4177 10.5245 11.6384 10.1572 11.7866C9.78988 11.9348 9.39649 12.0073 9.0005 12Z\" fill=\"%23fe5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fff\"/></svg>')}.ui-icon-project-navigator.collapsed{width:2rem;color:#000;vertical-align:bottom;text-align:center;display:inline-block;background-repeat:no-repeat;background-size:2rem 2rem;cursor:move;cursor:pointer;width:4.2rem;background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\"><path d=\"M0 20h6v-5H0v5zm14-5v5h6v-5h-6zM13 0H7v5h6V0zM4 12h12v2h2v-4h-7V6H9v4H2v4h2v-2z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23ffa277\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fe5000\"/></svg>')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23fee2d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23fbba9d\"/></svg>')}.ui-icon-transparency.transparent{background-image:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M0 10.9l9-5.1 9 5.1L9 16l-9-5.1z\" fill=\"%23d5d5d5\"/><path d=\"M0 7.1L9 2l9 5.1-9 5.1-9-5.1z\" fill=\"%23bababa\"/></svg>')}.ui-icon-visibility.visible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fe5000}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.visible.active{background-color:#eb4b00}.ui-icon-visibility.visible.semivisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23fbba9d}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>')}.ui-icon-visibility.invisible{background-image:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 18 18\" xml:space=\"preserve\"><style>.st0{fill:%23bababa}<\\/style><path class=\"st0\" d=\"M9 6c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3 1.3-3 3-3z\"/><path class=\"st0\" d=\"M9 3C3.5 3 0 9 0 9s3.5 6 9 6 9-6 9-6-3.5-6-9-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z\"/></svg>');visibility:inherit!important}.ui-icon-checkbox-slider.visible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%235B936A\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.visible.semivisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect x=\"18\" y=\"12\" width=\"18\" height=\"12\" rx=\"6\" transform=\"rotate(180 18 12)\" fill=\"%238FBB93\"/>%0D%0A<path d=\"M17 6C17 8.76142 14.7614 11 12 11C9.23858 11 7 8.76143 7 6C7 3.23858 9.23858 0.999999 12 0.999998C14.7614 0.999997 17 3.23857 17 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-checkbox-slider.invisible{background-image:url('data:image/svg+xml,<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"12\" rx=\"6\" fill=\"%23D7D7D7\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:#fffc;transition:background-color .5s}.panel-background:hover{background-color:#fff}.floating-panel{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fffc;transition:background-color .5s;pointer-events:none;position:relative;visibility:hidden;min-height:4.2rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;grid-template-areas:\"header-logo header-content dragger\" \"body body body\";border-radius:10px}.floating-panel:hover{background-color:#fff}.floating-panel .hidden{display:none!important}.floating-panel.visible{visibility:initial}.floating-panel__header-logo,.floating-panel__header-content,.floating-panel__dragger,.floating-panel__body{pointer-events:auto}.floating-panel__header-logo{grid-area:header-logo;height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;cursor:pointer;overflow:hidden;border-top-left-radius:10px}.floating-panel__header-content{grid-area:header-content;width:auto;height:4.2rem;display:flex;align-items:center;overflow:hidden;border-top:thin solid #c3c3c3}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid #c3c3c3;border-right:thin solid #c3c3c3;border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid #c3c3c3;border-bottom:thin solid #c3c3c3;border-left:thin solid #c3c3c3;border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em #d4d4d4;margin-left:2px;margin-right:2px;width:2px;height:2.4rem}.floating-panel__resizerNE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;top:-.6rem}.floating-panel__resizerE{position:absolute;width:.6rem;height:calc(100% - 1.8rem);right:-.6rem}.floating-panel__resizerSE{position:absolute;width:1.8rem;height:1.8rem;right:-.6rem;bottom:-.6rem}.floating-panel__resizerS{position:absolute;height:.6rem;width:calc(100% - 1.8rem);bottom:-.6rem}.floating-panel.no-body .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.no-body .floating-panel__header-content{border-bottom:thin solid #c3c3c3}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.floating-panel.collapsed{width:auto!important;height:auto!important}.floating-panel.collapsed .floating-panel__header-logo{border-bottom-left-radius:10px}.floating-panel.collapsed .floating-panel__dragger{border-bottom:thin solid #c3c3c3;border-bottom-right-radius:10px}.is-touch .floating-panel__resizerSE{width:2.8rem;height:2.8rem;right:-1.1rem;bottom:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M13.1924 2C13.6384 2 14.0028 2.36198 13.9728 2.80698C13.8852 4.10671 13.5864 5.38537 13.0866 6.5922C12.4835 8.04811 11.5996 9.37098 10.4853 10.4853C9.37098 11.5996 8.04811 12.4835 6.5922 13.0866C5.38537 13.5864 4.10671 13.8852 2.80698 13.9728C2.36198 14.0028 2 13.6384 2 13.1924C2 12.7464 2.36211 12.3881 2.80677 12.3535C3.89423 12.2687 4.96328 12.013 5.97411 11.5943C7.23406 11.0725 8.37887 10.3075 9.3432 9.3432C10.3075 8.37887 11.0725 7.23406 11.5943 5.97411C12.013 4.96328 12.2687 3.89423 12.3535 2.80677C12.3881 2.36211 12.7464 2 13.1924 2Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.27163 0C6.6739 0 7.00392 0.326971 6.96214 0.727061C6.89219 1.39683 6.72583 2.05429 6.46716 2.67878C6.11537 3.52806 5.59976 4.29974 4.94975 4.94975C4.29974 5.59976 3.52806 6.11537 2.67878 6.46716C2.05429 6.72583 1.39683 6.89219 0.72706 6.96214C0.32697 7.00392 -4.76837e-07 6.6739 -4.76837e-07 6.27163C-4.76837e-07 5.86937 0.32748 5.54819 0.726278 5.49548C1.20459 5.43227 1.67365 5.30674 2.12132 5.12131C2.79386 4.84274 3.40494 4.43442 3.91968 3.91968C4.43442 3.40494 4.84274 2.79386 5.12131 2.12132C5.30674 1.67365 5.43227 1.20459 5.49548 0.726278C5.54819 0.32748 5.86937 0 6.27163 0Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .floating-panel__resizerNE{width:2.8rem;height:2.8rem;right:-1.1rem;top:-1.1rem;background:url('data:image/svg+xml,<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M2 0.8076C2 0.3616 2.36198 -0.00280025 2.80698 0.0271997C4.10671 0.1148 5.38537 0.4136 6.5922 0.9134C8.04811 1.5165 9.37098 2.4004 10.4853 3.5147C11.5996 4.62902 12.4835 5.95189 13.0866 7.4078C13.5864 8.61463 13.8852 9.89329 13.9728 11.193C14.0028 11.638 13.6384 12 13.1924 12C12.7464 12 12.3881 11.6379 12.3535 11.1932C12.2687 10.1058 12.013 9.03672 11.5943 8.02589C11.0725 6.76594 10.3075 5.62113 9.3432 4.6568C8.37887 3.6925 7.23406 2.9275 5.97411 2.4057C4.96328 1.987 3.89423 1.7313 2.80677 1.6465C2.36211 1.6119 2 1.2536 2 0.8076Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M0 7.72837C0 7.3261 0.326971 6.99608 0.727061 7.03786C1.39683 7.1078 2.05429 7.27417 2.67878 7.53284C3.52806 7.88463 4.29974 8.40024 4.94975 9.05025C5.59976 9.70026 6.11537 10.4719 6.46716 11.3212C6.72583 11.9457 6.8922 12.6032 6.96214 13.2729C7.00392 13.673 6.6739 14 6.27163 14C5.86937 14 5.54819 13.6725 5.49548 13.2737C5.43227 12.7954 5.30674 12.3263 5.12131 11.8787C4.84274 11.2061 4.43442 10.5951 3.91968 10.0803C3.40494 9.56558 2.79386 9.15726 2.12132 8.87869C1.67365 8.69326 1.20459 8.56773 0.726278 8.50452C0.32748 8.45181 0 8.13063 0 7.72837Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center center}.is-touch .fp-block-item{height:3rem}.fp-block-icon{height:4.2rem;width:4.2rem;background-color:#444;background-position:center;background-size:2rem;border-top-left-radius:9px;border-bottom-left-radius:9px}.fp-block-icon-item{background-position:center center!important;background-repeat:no-repeat!important;background-size:2rem;width:3.6rem;cursor:pointer}.fp-block-icon-item.disabled{opacity:.19;cursor:default}.fp-block-item{text-align:center;height:2rem;color:#000;white-space:nowrap;padding-left:1rem;padding-right:1rem}.fp-block-combobox-item{text-align:left;min-width:8.6rem;height:auto}.fp-block-combobox-item-last{padding-right:.2rem}lib-bimplus-scrollable-container{min-width:30rem;height:100%;--scrollable-container-paddin-right: 1rem}lib-project-models{margin-right:1.4rem}.project-navigator-fp .floating-panel.visible:not(.collapsed){min-width:29.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp{pointer-events:none;position:absolute;top:0;left:0}.project-navigator-fp .scene-selector{padding-left:.6rem;padding-right:.9rem;margin-bottom:.6rem}.project-navigator-fp .saved-scenes-select{margin-left:.6rem;margin-right:.6rem}.project-navigator-fp .scene-options{display:flex;flex:1 1 auto;flex-direction:row;align-items:center;justify-content:center}.project-navigator-fp .scene-options .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .scene-options .only-icon-button{flex:1 1 auto}.project-navigator-fp .secondary-button{border:solid .1rem #444444!important}.project-navigator-fp .bim-item-refresh{width:2.4rem;height:2.4rem;background-size:1.8rem 1.8rem;background-position:center center;background-repeat:no-repeat;width:3.2rem;height:3.2rem;background-size:2rem 2rem;cursor:pointer}.project-navigator-fp .bim-item-refresh.disabled{cursor:default}.project-navigator-fp.floating-panel{min-width:32.5rem;min-height:14rem;max-width:52.9rem}.project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.project-navigator-fp.floating-panel .floating-panel__body{padding-bottom:1.2rem;-webkit-user-select:none;user-select:none}.project-navigator-fp.floating-panel .floating-panel__body .bim-divisions-view .jstree-component{margin-top:0}.project-navigator-fp.floating-panel .floating-panel__header-content{justify-content:flex-end}.project-navigator-fp.floating-panel .ifc-export-container{height:3.2rem;width:3rem}.project-navigator-fp .model-topology-container{height:100%}.project-navigator-fp .model-topology-container.nodisplay{display:none}.project-navigator-fp .inline-message{padding:1.2rem}.is-touch .project-navigator-fp.floating-panel{min-width:27.5rem}.is-touch .project-navigator-fp.floating-panel.collapsed{min-width:auto;min-height:auto}.is-touch .project-navigator-fp.floating-panel .floating-panel__resizerNE{background:transparent}\n"] }]
|
|
1846
1863
|
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { noBody: [{
|
|
1847
1864
|
type: Input
|
|
1848
1865
|
}], isCollapsed: [{
|