ngx-bimplus-components 0.0.71 → 0.0.72-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/bimplus-floating-bar.component.mjs +59 -10
- package/esm2022/lib/components/bimplus-floating-bar-dragger/bimplus-floating-bar-dragger.component.mjs +15 -7
- package/esm2022/lib/components/bimplus-floating-bar-header-content/bimplus-floating-bar-header-content.component.mjs +20 -8
- package/esm2022/lib/components/bimplus-floating-bar-header-logo/bimplus-floating-bar-header-logo.component.mjs +30 -12
- package/esm2022/lib/components/bimplus-floating-bar-hide-objects/bimplus-floating-bar-hide-objects.component.mjs +27 -46
- package/esm2022/lib/components/bimplus-floating-bar-isolation-objects/bimplus-floating-bar-isolation-objects.component.mjs +17 -24
- package/esm2022/lib/components/bimplus-floating-bar-project-navigator/bimplus-floating-bar-project-navigator.component.mjs +18 -24
- package/esm2022/lib/components/bimplus-navbar/bimplus-navbar.component.mjs +3 -3
- package/esm2022/lib/components/bimplus-tool-hub/bimplus-tool-hub.component.mjs +55 -36
- package/esm2022/lib/directives/draggable.directive.mjs +12 -2
- package/esm2022/lib/services/layout-manager.service.mjs +217 -48
- package/esm2022/lib/services/local-storage.service.mjs +70 -0
- package/esm2022/lib/services/resize-observer.service.mjs +28 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/ngx-bimplus-components.mjs +619 -280
- package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
- package/lib/components/bimplus-floating-bar/bimplus-floating-bar.component.d.ts +20 -4
- package/lib/components/bimplus-floating-bar-dragger/bimplus-floating-bar-dragger.component.d.ts +6 -1
- package/lib/components/bimplus-floating-bar-header-content/bimplus-floating-bar-header-content.component.d.ts +6 -2
- package/lib/components/bimplus-floating-bar-header-logo/bimplus-floating-bar-header-logo.component.d.ts +10 -5
- package/lib/components/bimplus-floating-bar-hide-objects/bimplus-floating-bar-hide-objects.component.d.ts +12 -11
- package/lib/components/bimplus-floating-bar-isolation-objects/bimplus-floating-bar-isolation-objects.component.d.ts +6 -6
- package/lib/components/bimplus-floating-bar-project-navigator/bimplus-floating-bar-project-navigator.component.d.ts +6 -6
- package/lib/components/bimplus-tool-hub/bimplus-tool-hub.component.d.ts +19 -11
- package/lib/directives/draggable.directive.d.ts +2 -1
- package/lib/services/layout-manager.service.d.ts +56 -4
- package/lib/services/local-storage.service.d.ts +18 -0
- package/lib/services/resize-observer.service.d.ts +12 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -580,6 +580,7 @@ class DraggableDirective {
|
|
|
580
580
|
this.wasDragging = false;
|
|
581
581
|
this.isMouseDown = false;
|
|
582
582
|
this.dragging = new EventEmitter();
|
|
583
|
+
this.dragEnd = new EventEmitter();
|
|
583
584
|
this.clicked = new EventEmitter();
|
|
584
585
|
}
|
|
585
586
|
onMouseMove(event) {
|
|
@@ -597,11 +598,17 @@ class DraggableDirective {
|
|
|
597
598
|
return;
|
|
598
599
|
}
|
|
599
600
|
}
|
|
601
|
+
//console.log(`dragging isDragging ${!!this.isDragging}`);
|
|
600
602
|
fireEvent(this, "dragging", [deltaX, deltaY]);
|
|
601
603
|
this.oldX = event.clientX;
|
|
602
604
|
this.oldY = event.clientY;
|
|
603
605
|
}
|
|
604
606
|
onMouseUp() {
|
|
607
|
+
//console.log(`onMouseUp isDragging${!!this.isDragging}`);
|
|
608
|
+
if (this.isDragging || this.isMouseDown) {
|
|
609
|
+
console.log(`fireEvent dragEnd`);
|
|
610
|
+
fireEvent(this, "dragEnd", ['$event']);
|
|
611
|
+
}
|
|
605
612
|
this.isDragging = false;
|
|
606
613
|
this.isMouseDown = false;
|
|
607
614
|
}
|
|
@@ -610,6 +617,7 @@ class DraggableDirective {
|
|
|
610
617
|
this.wasDragging = false;
|
|
611
618
|
this.oldX = event.clientX;
|
|
612
619
|
this.oldY = event.clientY;
|
|
620
|
+
//console.log(`onMouseDown isDragging${!!this.isDragging}`);
|
|
613
621
|
}
|
|
614
622
|
onMouseClick(event) {
|
|
615
623
|
if (!this.wasDragging) {
|
|
@@ -617,7 +625,7 @@ class DraggableDirective {
|
|
|
617
625
|
}
|
|
618
626
|
}
|
|
619
627
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DraggableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
620
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.10", type: DraggableDirective, isStandalone: true, selector: "[libDraggable]", outputs: { dragging: "dragging", clicked: "clicked" }, host: { listeners: { "document:mousemove": "onMouseMove($event)", "document:mouseup": "onMouseUp($event)", "mousedown": "onMouseDown($event)", "click": "onMouseClick($event)" } }, ngImport: i0 }); }
|
|
628
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.10", type: DraggableDirective, isStandalone: true, selector: "[libDraggable]", outputs: { dragging: "dragging", dragEnd: "dragEnd", clicked: "clicked" }, host: { listeners: { "document:mousemove": "onMouseMove($event)", "document:mouseup": "onMouseUp($event)", "mousedown": "onMouseDown($event)", "click": "onMouseClick($event)" } }, ngImport: i0 }); }
|
|
621
629
|
}
|
|
622
630
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: DraggableDirective, decorators: [{
|
|
623
631
|
type: Directive,
|
|
@@ -627,6 +635,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
627
635
|
}]
|
|
628
636
|
}], propDecorators: { dragging: [{
|
|
629
637
|
type: Output
|
|
638
|
+
}], dragEnd: [{
|
|
639
|
+
type: Output
|
|
630
640
|
}], clicked: [{
|
|
631
641
|
type: Output
|
|
632
642
|
}], onMouseMove: [{
|
|
@@ -643,38 +653,439 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
643
653
|
args: ['click', ['$event']]
|
|
644
654
|
}] } });
|
|
645
655
|
|
|
646
|
-
class
|
|
656
|
+
class ResizeObserverService {
|
|
657
|
+
constructor() {
|
|
658
|
+
this.rectSize$ = new BehaviorSubject(undefined);
|
|
659
|
+
this.internalRectSize = new DOMRect(1, 1, 1, 1);
|
|
660
|
+
// Observable that components can subscribe to
|
|
661
|
+
this.parentAppRect$ = this.rectSize$.asObservable();
|
|
662
|
+
}
|
|
663
|
+
setSize(newValue) {
|
|
664
|
+
this.rectSize$.next(newValue);
|
|
665
|
+
this.internalRectSize = newValue;
|
|
666
|
+
console.log(`SERVICE:rect size:${newValue.width} ${newValue.height}`);
|
|
667
|
+
}
|
|
668
|
+
getParentAppRect() {
|
|
669
|
+
return this.internalRectSize;
|
|
670
|
+
}
|
|
671
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: ResizeObserverService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
672
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: ResizeObserverService, providedIn: 'root' }); }
|
|
673
|
+
}
|
|
674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: ResizeObserverService, decorators: [{
|
|
675
|
+
type: Injectable,
|
|
676
|
+
args: [{
|
|
677
|
+
providedIn: 'root'
|
|
678
|
+
}]
|
|
679
|
+
}], ctorParameters: () => [] });
|
|
680
|
+
|
|
681
|
+
class LocalStorageService {
|
|
647
682
|
constructor() {
|
|
683
|
+
this.storageSubject = new BehaviorSubject(null);
|
|
684
|
+
}
|
|
685
|
+
// Set a string value in localStorage
|
|
686
|
+
setItem(key, value) {
|
|
687
|
+
try {
|
|
688
|
+
localStorage.setItem(key, value);
|
|
689
|
+
this.storageSubject.next({ key, value });
|
|
690
|
+
}
|
|
691
|
+
catch (e) {
|
|
692
|
+
console.error('Error saving to localStorage', e);
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
// Get a string value from localStorage
|
|
696
|
+
getItem(key) {
|
|
697
|
+
try {
|
|
698
|
+
return localStorage.getItem(key);
|
|
699
|
+
}
|
|
700
|
+
catch (e) {
|
|
701
|
+
console.error('Error reading from localStorage', e);
|
|
702
|
+
return null;
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
// Remove an item from localStorage
|
|
706
|
+
removeItem(key) {
|
|
707
|
+
try {
|
|
708
|
+
localStorage.removeItem(key);
|
|
709
|
+
this.storageSubject.next({ key, value: null });
|
|
710
|
+
}
|
|
711
|
+
catch (e) {
|
|
712
|
+
console.error('Error removing from localStorage', e);
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
// Clear all items in localStorage
|
|
716
|
+
clear() {
|
|
717
|
+
try {
|
|
718
|
+
localStorage.clear();
|
|
719
|
+
this.storageSubject.next(null);
|
|
720
|
+
}
|
|
721
|
+
catch (e) {
|
|
722
|
+
console.error('Error clearing localStorage', e);
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
// Set an object in localStorage
|
|
726
|
+
setObject(key, value) {
|
|
727
|
+
this.setItem(key, JSON.stringify(value));
|
|
728
|
+
}
|
|
729
|
+
// Get an object from localStorage
|
|
730
|
+
getObject(key) {
|
|
731
|
+
const value = this.getItem(key);
|
|
732
|
+
return value ? JSON.parse(value) : null;
|
|
733
|
+
}
|
|
734
|
+
// Watch for changes in localStorage
|
|
735
|
+
watchStorage() {
|
|
736
|
+
return this.storageSubject.asObservable();
|
|
737
|
+
}
|
|
738
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LocalStorageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
739
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LocalStorageService, providedIn: 'root' }); }
|
|
740
|
+
}
|
|
741
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LocalStorageService, decorators: [{
|
|
742
|
+
type: Injectable,
|
|
743
|
+
args: [{
|
|
744
|
+
providedIn: 'root'
|
|
745
|
+
}]
|
|
746
|
+
}], ctorParameters: () => [] });
|
|
747
|
+
|
|
748
|
+
class LayoutManagerService {
|
|
749
|
+
constructor(resizeObserverService, localStorageService) {
|
|
750
|
+
this.resizeObserverService = resizeObserverService;
|
|
751
|
+
this.localStorageService = localStorageService;
|
|
752
|
+
this.registeredItems$ = new BehaviorSubject([]);
|
|
753
|
+
this.registeredItems = [];
|
|
754
|
+
this.CONFIG = 'layoutManagerConfig';
|
|
755
|
+
}
|
|
756
|
+
get RegisteredItems() {
|
|
757
|
+
return this.registeredItems;
|
|
758
|
+
}
|
|
759
|
+
/**--------------------------------------------------------------------------
|
|
760
|
+
* register object. object must have unique id or elementId
|
|
761
|
+
--------------------------------------------------------------------------*/
|
|
762
|
+
registerObject(obj, id, left = 100, top = 100, selector, rememberPosition) {
|
|
763
|
+
if (this.registeredItems.some(item => item.id === id)) {
|
|
764
|
+
return;
|
|
765
|
+
}
|
|
766
|
+
const newItem = {
|
|
767
|
+
element: obj,
|
|
768
|
+
id: id,
|
|
769
|
+
selector: selector,
|
|
770
|
+
rememberPosition: !!rememberPosition,
|
|
771
|
+
left: left,
|
|
772
|
+
top: top,
|
|
773
|
+
isCollapsed: false
|
|
774
|
+
};
|
|
775
|
+
this.registeredItems.push(newItem);
|
|
776
|
+
this.registeredItems$.next(this.registeredItems);
|
|
777
|
+
this._initObject(newItem);
|
|
778
|
+
}
|
|
779
|
+
_initObject(obj) {
|
|
780
|
+
this._adjustObjectByConfig(obj);
|
|
781
|
+
this._adjustObjectByWindowSize(obj);
|
|
782
|
+
}
|
|
783
|
+
/**--------------------------------------------------------------------------
|
|
784
|
+
* get object configuration
|
|
785
|
+
* return {left, top, width, heigth}
|
|
786
|
+
--------------------------------------------------------------------------*/
|
|
787
|
+
_getObjectConfig(obj) {
|
|
788
|
+
if (!obj) {
|
|
789
|
+
return null;
|
|
790
|
+
}
|
|
791
|
+
const configValue = this.localStorageService.getItem(this.CONFIG);
|
|
792
|
+
const config = configValue ? JSON.parse(configValue) : {};
|
|
793
|
+
const objId = obj.id;
|
|
794
|
+
let configObj = config[objId];
|
|
795
|
+
if (!configObj) {
|
|
796
|
+
configObj = { id: objId, left: obj.left, top: obj.top };
|
|
797
|
+
}
|
|
798
|
+
return configObj;
|
|
799
|
+
}
|
|
800
|
+
_adjustObjectByConfig(obj) {
|
|
801
|
+
const config = this._getObjectConfig(obj);
|
|
802
|
+
if (!config) {
|
|
803
|
+
return;
|
|
804
|
+
}
|
|
805
|
+
const element = obj.element?.nativeElement;
|
|
806
|
+
element.style.left = (config.left) + 'px';
|
|
807
|
+
element.style.top = (config.top) + 'px';
|
|
808
|
+
this.checkPosition(obj.id, "", undefined, 0, 0, true);
|
|
809
|
+
}
|
|
810
|
+
_adjustObjectByWindowSize(obj) {
|
|
811
|
+
console.log('_adjustObjectByWindowSize', obj);
|
|
812
|
+
}
|
|
813
|
+
/**--------------------------------------------------------------------------
|
|
814
|
+
* returns object registered in the layout manager
|
|
815
|
+
--------------------------------------------------------------------------*/
|
|
816
|
+
getItem(id) {
|
|
817
|
+
let foundItem = null;
|
|
818
|
+
this.registeredItems.forEach(item => {
|
|
819
|
+
if (item.id === id) {
|
|
820
|
+
foundItem = item;
|
|
821
|
+
}
|
|
822
|
+
});
|
|
823
|
+
return foundItem;
|
|
824
|
+
}
|
|
825
|
+
/**--------------------------------------------------------------------------
|
|
826
|
+
* set object configuration
|
|
827
|
+
--------------------------------------------------------------------------*/
|
|
828
|
+
_setObjectConfig(obj, left, top) {
|
|
829
|
+
const objId = obj?.id;
|
|
830
|
+
if (!objId) {
|
|
831
|
+
return;
|
|
832
|
+
}
|
|
833
|
+
let config = this.localStorageService.getObject(this.CONFIG);
|
|
834
|
+
//let config = configValue && JSON.parse(configValue) as LayoutManagerConfig;
|
|
835
|
+
if (!config) {
|
|
836
|
+
config = {};
|
|
837
|
+
}
|
|
838
|
+
if (obj?.isCollapsed) { // do not overtake collapsed size
|
|
839
|
+
if (!config[objId]) {
|
|
840
|
+
config[objId] = obj;
|
|
841
|
+
}
|
|
842
|
+
config[objId].left = left;
|
|
843
|
+
config[objId].top = top;
|
|
844
|
+
this.localStorageService.setObject(this.CONFIG, config);
|
|
845
|
+
return;
|
|
846
|
+
}
|
|
847
|
+
const newItem = {
|
|
848
|
+
id: objId,
|
|
849
|
+
isCollapsed: false,
|
|
850
|
+
left: left,
|
|
851
|
+
top: top
|
|
852
|
+
//width: width,
|
|
853
|
+
//height: height
|
|
854
|
+
};
|
|
855
|
+
config[objId] = newItem;
|
|
856
|
+
this.localStorageService.setObject(this.CONFIG, config);
|
|
857
|
+
}
|
|
858
|
+
// checks whether element or element with additional selectionof subelement is placed within the give rectangle
|
|
859
|
+
// if not then calculates the offset to be moved to fit in
|
|
860
|
+
checkPosition(id, selector, parentRectangle, deltaX, deltaY, forceCheck = false) {
|
|
861
|
+
if (!id) {
|
|
862
|
+
return { deltaX: 0, deltaY: 0 };
|
|
863
|
+
}
|
|
864
|
+
const e1 = this.getItem(id);
|
|
865
|
+
if (!e1) {
|
|
866
|
+
return { deltaX: 0, deltaY: 0 };
|
|
867
|
+
}
|
|
868
|
+
const element = e1.element?.nativeElement?.shadowRoot || e1.element?.nativeElement;
|
|
869
|
+
const mySelector = selector?.length > 0 ? selector : e1.selector;
|
|
870
|
+
const parentRect = parentRectangle || this.resizeObserverService.getParentAppRect();
|
|
871
|
+
if (parentRect?.width <= 1 || parentRect?.height <= 1) {
|
|
872
|
+
return { deltaX: 0, deltaY: 0 };
|
|
873
|
+
}
|
|
874
|
+
let elementRect = undefined;
|
|
875
|
+
if (!element) {
|
|
876
|
+
console.error('checkPosition: missing element');
|
|
877
|
+
return { deltaX: 0, deltaY: 0 };
|
|
878
|
+
}
|
|
879
|
+
if (mySelector) {
|
|
880
|
+
const selectedObj = element.querySelector(mySelector);
|
|
881
|
+
elementRect = selectedObj?.getBoundingClientRect();
|
|
882
|
+
}
|
|
883
|
+
else {
|
|
884
|
+
elementRect = element.getBoundingClientRect();
|
|
885
|
+
}
|
|
886
|
+
if (!elementRect?.width || !elementRect?.height) {
|
|
887
|
+
console.error('checkPosition:missing element rect');
|
|
888
|
+
return { deltaX: 0, deltaY: 0 };
|
|
889
|
+
}
|
|
890
|
+
let checkBoundaries = true;
|
|
891
|
+
if (this._isInsideRect(elementRect, parentRect) === false && !forceCheck) {
|
|
892
|
+
checkBoundaries = false;
|
|
893
|
+
}
|
|
894
|
+
// copy of real element rectangle to perform calculation over before set to the real element
|
|
895
|
+
const elementDOMRect = DOMRect.fromRect(elementRect);
|
|
896
|
+
//set the element rectangle by deltas
|
|
897
|
+
//this._translateRectangle(elementDOMRect, deltaX, deltaY);
|
|
898
|
+
if (checkBoundaries) {
|
|
899
|
+
if (this._isInsideRect(elementDOMRect, parentRect) === false) {
|
|
900
|
+
const newElementPos = this.getAlignedPosition(elementDOMRect, parentRect);
|
|
901
|
+
deltaX = newElementPos.x - elementRect.x;
|
|
902
|
+
deltaY = newElementPos.y - elementRect.y;
|
|
903
|
+
//this._translateRectangle(elementDOMRect, deltaX, deltaY);
|
|
904
|
+
}
|
|
905
|
+
}
|
|
906
|
+
else {
|
|
907
|
+
console.log("not inside!!");
|
|
908
|
+
if (this._isInsideLeftTopRect(parentRect, elementDOMRect) === false) {
|
|
909
|
+
const newElementPos = this._getAlignedLeftTopPosition(elementDOMRect, parentRect);
|
|
910
|
+
deltaX = newElementPos.x - elementRect.x;
|
|
911
|
+
deltaY = newElementPos.y - elementRect.y;
|
|
912
|
+
//this._translateRectangle(elementDOMRect, deltaX, deltaY);
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
const nativeElement = e1.element.nativeElement;
|
|
916
|
+
if (!nativeElement) {
|
|
917
|
+
return;
|
|
918
|
+
}
|
|
919
|
+
const computedStyle = window.getComputedStyle(nativeElement);
|
|
920
|
+
const top = parseInt(computedStyle.top, 10);
|
|
921
|
+
const left = parseInt(computedStyle.left, 10);
|
|
922
|
+
nativeElement.style.top = (top + deltaY) + 'px';
|
|
923
|
+
nativeElement.style.left = (left + deltaX) + 'px';
|
|
924
|
+
return { deltaX, deltaY };
|
|
925
|
+
}
|
|
926
|
+
/**--------------------------------------------------------------------------
|
|
927
|
+
* find if rectangle 1 is inside rectangle 2
|
|
928
|
+
--------------------------------------------------------------------------*/
|
|
929
|
+
_isInsideRect(r1, r2) {
|
|
930
|
+
if (!r1 || !r2) {
|
|
931
|
+
return false;
|
|
932
|
+
}
|
|
933
|
+
return r2.left <= r1.left && r2.top <= r1.top && r2.right >= r1.right && r2.bottom >= r1.bottom;
|
|
934
|
+
}
|
|
935
|
+
/**--------------------------------------------------------------------------
|
|
936
|
+
* find if rectangles do not overlap the left and top sides
|
|
937
|
+
--------------------------------------------------------------------------*/
|
|
938
|
+
_isInsideLeftTopRect(r1, r2) {
|
|
939
|
+
if (!r1 || !r2) {
|
|
940
|
+
return false;
|
|
941
|
+
}
|
|
942
|
+
const r1Inside = r2.left <= r1.left && r2.top <= r1.top;
|
|
943
|
+
const r2Inside = r1.left <= r2.left && r1.top <= r2.top;
|
|
944
|
+
return r1Inside || r2Inside;
|
|
945
|
+
}
|
|
946
|
+
/**--------------------------------------------------------------------------
|
|
947
|
+
* get position of r1 aligned with the r2 sides
|
|
948
|
+
--------------------------------------------------------------------------*/
|
|
949
|
+
getAlignedPosition(r1, r2) {
|
|
950
|
+
if (!r1 || !r2) {
|
|
951
|
+
return { x: 0, y: 0 };
|
|
952
|
+
}
|
|
953
|
+
const to = { x: r1.x, y: r1.y };
|
|
954
|
+
//align left or right sides. preferably left
|
|
955
|
+
if (r1.left < r2.left) {
|
|
956
|
+
to.x = r2.x;
|
|
957
|
+
}
|
|
958
|
+
else if (r1.right > r2.right) {
|
|
959
|
+
to.x = r2.right - r1.width;
|
|
960
|
+
}
|
|
961
|
+
//align top or bottom. preferably top
|
|
962
|
+
if (r1.top < r2.top) {
|
|
963
|
+
to.y = r2.y;
|
|
964
|
+
}
|
|
965
|
+
else if (r1.bottom > r2.bottom) {
|
|
966
|
+
to.y = r2.bottom - r1.height;
|
|
967
|
+
}
|
|
968
|
+
return to;
|
|
969
|
+
}
|
|
970
|
+
/**--------------------------------------------------------------------------
|
|
971
|
+
* get position of r1 aligned with the r2 left, top sides
|
|
972
|
+
--------------------------------------------------------------------------*/
|
|
973
|
+
_getAlignedLeftTopPosition(r1, r2) {
|
|
974
|
+
if (!r1 || !r2) {
|
|
975
|
+
return { x: 0, y: 0 };
|
|
976
|
+
}
|
|
977
|
+
const to = { x: r1.x, y: r1.y };
|
|
978
|
+
//align left
|
|
979
|
+
if (r1.left < r2.left) {
|
|
980
|
+
to.x = r2.x;
|
|
981
|
+
}
|
|
982
|
+
//align top
|
|
983
|
+
if (r1.top < r2.top) {
|
|
984
|
+
to.y = r2.y;
|
|
985
|
+
}
|
|
986
|
+
return to;
|
|
987
|
+
}
|
|
988
|
+
/**--------------------------------------------------------------------------
|
|
989
|
+
* translate rectangle by x, y
|
|
990
|
+
--------------------------------------------------------------------------*/
|
|
991
|
+
/*_translateRectangle(rect:DOMRect, translateX:number, translateY:number) {
|
|
992
|
+
if(!rect) {
|
|
993
|
+
return;
|
|
994
|
+
}
|
|
995
|
+
rect.x += translateX;
|
|
996
|
+
rect.y += translateY;
|
|
997
|
+
return rect;
|
|
998
|
+
}
|
|
999
|
+
*/
|
|
1000
|
+
updateCollapsed(value, id = '') {
|
|
1001
|
+
const foundItem = this.getItem(id);
|
|
1002
|
+
if (!foundItem) {
|
|
1003
|
+
return;
|
|
1004
|
+
}
|
|
1005
|
+
foundItem.isCollapsed = value;
|
|
1006
|
+
this.registeredItems$.next(this.registeredItems);
|
|
1007
|
+
setTimeout(() => {
|
|
1008
|
+
this.checkPosition(foundItem.id, "", undefined, 0, 0, true);
|
|
1009
|
+
});
|
|
1010
|
+
let s1 = '';
|
|
1011
|
+
this.registeredItems.forEach((item) => {
|
|
1012
|
+
s1 = s1 + `${item.id}:<${item.isCollapsed ? 1 : 0}> `;
|
|
1013
|
+
});
|
|
1014
|
+
console.log(s1);
|
|
1015
|
+
}
|
|
1016
|
+
handleDragEnd(id) {
|
|
1017
|
+
this.finalizeObjectChanges(id);
|
|
1018
|
+
}
|
|
1019
|
+
/**--------------------------------------------------------------------------
|
|
1020
|
+
* finalize object changes (position). object must be registered in the layout manager
|
|
1021
|
+
* object: object to finalize
|
|
1022
|
+
--------------------------------------------------------------------------*/
|
|
1023
|
+
finalizeObjectChanges(id) {
|
|
1024
|
+
const item = this.getItem(id);
|
|
1025
|
+
if (!item) {
|
|
1026
|
+
return;
|
|
1027
|
+
}
|
|
1028
|
+
const element = item.element?.nativeElement;
|
|
1029
|
+
const computedStyle = window.getComputedStyle(element);
|
|
1030
|
+
const top = parseInt(computedStyle.top, 10);
|
|
1031
|
+
const left = parseInt(computedStyle.left, 10);
|
|
1032
|
+
this._setObjectConfig(item, left, top);
|
|
1033
|
+
}
|
|
1034
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, deps: [{ token: ResizeObserverService }, { token: LocalStorageService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1035
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, providedIn: 'root' }); }
|
|
1036
|
+
}
|
|
1037
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, decorators: [{
|
|
1038
|
+
type: Injectable,
|
|
1039
|
+
args: [{
|
|
1040
|
+
providedIn: 'root'
|
|
1041
|
+
}]
|
|
1042
|
+
}], ctorParameters: () => [{ type: ResizeObserverService }, { type: LocalStorageService }] });
|
|
1043
|
+
|
|
1044
|
+
class BimplusFloatingBarDraggerComponent {
|
|
1045
|
+
constructor(layoutManagerService) {
|
|
1046
|
+
this.layoutManagerService = layoutManagerService;
|
|
648
1047
|
// Define isCollapsed as a boolean property
|
|
649
1048
|
this.isCollapsed = false;
|
|
1049
|
+
this.parentId = '';
|
|
650
1050
|
// Define event handler for DraggableDirective
|
|
651
1051
|
this.dragElement = new EventEmitter();
|
|
652
1052
|
// Define icon as a string property with a default value
|
|
653
1053
|
this.draggerIcon = 'ui-icon-drag';
|
|
654
1054
|
}
|
|
655
|
-
|
|
656
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarDraggerComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-dragger", inputs: { isCollapsed: "isCollapsed" }, outputs: { dragElement: "dragElement" }, ngImport: i0, template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n>\r\n</div>\r\n\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}*{-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{max-height:400px;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}.ui-icon-drag{background-repeat:no-repeat;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<rect x=\"5\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "clicked"] }] }); }
|
|
1055
|
+
onDragEnd() {
|
|
1056
|
+
this.layoutManagerService.handleDragEnd(this.parentId);
|
|
1057
|
+
}
|
|
1058
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarDraggerComponent, deps: [{ token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1059
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarDraggerComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-dragger", inputs: { isCollapsed: "isCollapsed", parentId: "parentId" }, outputs: { dragElement: "dragElement" }, ngImport: i0, template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n>\r\n</div>\r\n\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}*{-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{max-height:400px;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}.ui-icon-drag{background-repeat:no-repeat;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<rect x=\"5\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "dragEnd", "clicked"] }] }); }
|
|
657
1060
|
}
|
|
658
1061
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarDraggerComponent, decorators: [{
|
|
659
1062
|
type: Component,
|
|
660
1063
|
args: [{ selector: 'lib-bimplus-floating-bar-dragger', standalone: true, imports: [
|
|
661
1064
|
CommonModule,
|
|
662
1065
|
DraggableDirective,
|
|
663
|
-
], template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n>\r\n</div>\r\n\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}*{-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{max-height:400px;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}.ui-icon-drag{background-repeat:no-repeat;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<rect x=\"5\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
664
|
-
}], propDecorators: { isCollapsed: [{
|
|
1066
|
+
], template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n>\r\n</div>\r\n\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}*{-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{max-height:400px;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}.ui-icon-drag{background-repeat:no-repeat;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<rect x=\"5\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"2\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"8\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"5\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A<rect x=\"10\" y=\"14\" width=\"2\" height=\"2\" fill=\"%23C4C4C4\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
1067
|
+
}], ctorParameters: () => [{ type: LayoutManagerService }], propDecorators: { isCollapsed: [{
|
|
1068
|
+
type: Input
|
|
1069
|
+
}], parentId: [{
|
|
665
1070
|
type: Input
|
|
666
1071
|
}], dragElement: [{
|
|
667
1072
|
type: Output
|
|
668
1073
|
}] } });
|
|
669
1074
|
|
|
670
1075
|
class BimplusFloatingBarHeaderContentComponent extends BimplusLocalizedWidgetComponent {
|
|
671
|
-
constructor(translateService) {
|
|
1076
|
+
constructor(translateService, layoutManagerService) {
|
|
672
1077
|
super(translateService);
|
|
1078
|
+
this.layoutManagerService = layoutManagerService;
|
|
673
1079
|
this.isCollapsed = false;
|
|
1080
|
+
this.parentId = '';
|
|
674
1081
|
this.actionClicked = new EventEmitter();
|
|
675
1082
|
// Define event handler for DraggableDirective
|
|
676
1083
|
this.dragElement = new EventEmitter();
|
|
677
1084
|
this._items = new Array();
|
|
1085
|
+
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1086
|
+
const layoutManagerItem = items.find((item) => item.id === this.parentId);
|
|
1087
|
+
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1088
|
+
});
|
|
678
1089
|
}
|
|
679
1090
|
get items() {
|
|
680
1091
|
return this._items;
|
|
@@ -692,10 +1103,13 @@ class BimplusFloatingBarHeaderContentComponent extends BimplusLocalizedWidgetCom
|
|
|
692
1103
|
}
|
|
693
1104
|
this.actionClicked.emit(action);
|
|
694
1105
|
}
|
|
695
|
-
|
|
696
|
-
|
|
1106
|
+
onDragEnd() {
|
|
1107
|
+
this.layoutManagerService.handleDragEnd(this.parentId);
|
|
1108
|
+
}
|
|
1109
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderContentComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1110
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHeaderContentComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-content", inputs: { isCollapsed: "isCollapsed", parentId: "parentId", items: "items" }, outputs: { actionClicked: "actionClicked", dragElement: "dragElement" }, providers: [
|
|
697
1111
|
TranslateService
|
|
698
|
-
], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n>\r\n <div class=\"menu-content\">\r\n <div *ngFor=\"let item of items\">\r\n <div\r\n [attr.data-test]=\"'floating_bar_item_' + item.buttonId\"\r\n class=\"fp-block-item fp-block-icon-item\"\r\n [ngClass]=\"{\r\n active: item.active\r\n }\"\r\n [className]=\"item.iconClass\"\r\n [title]=\"item.title | translate\"\r\n (click)=\"onItemClicked(item.buttonId)\"\r\n ></div>\r\n </div>\r\n </div>\r\n</div>\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}.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{max-height:400px;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}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.menu-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;-webkit-box-align-items:center;-moz-box-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;padding-left:.5rem;padding-right:.5rem}.menu-content .block-icon-item{background-position:center;background-repeat:no-repeat}.menu-content .ui-icon-hide-object{background-position:center;background-repeat:no-repeat;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=\"%23444444\"/>%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=\"%23444444\"/>%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=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-hide-object.active{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')}.menu-content .ui-icon-transparent-object{background-position:center;background-repeat:no-repeat;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=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object.active{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=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-restore-hide-object{background-position:center;background-repeat:no-repeat;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=\"M13.6569 13.6569C12.3481 14.9656 10.6261 15.7801 8.78414 15.9615C6.94221 16.1429 5.09436 15.68 3.55544 14.6518C2.01652 13.6235 0.881751 12.0934 0.344479 10.3223C-0.192792 8.55115 -0.0993205 6.6485 0.608966 4.93855C1.31725 3.22859 2.59653 1.81712 4.22883 0.944643C5.86112 0.072162 7.74544 -0.207351 9.56072 0.15373C11.376 0.514811 13.0099 1.49414 14.1841 2.92486C15.1452 4.09599 15.7496 5.51024 15.9373 7.00001H18L15 10L12 7.00001H14.4177C14.2361 5.87018 13.7583 4.80177 13.0246 3.90775C12.0706 2.74529 10.743 1.94959 9.26809 1.65621C7.79317 1.36283 6.26216 1.58993 4.93592 2.29882C3.60968 3.00772 2.57027 4.15453 1.99478 5.54387C1.4193 6.93321 1.34336 8.47911 1.77989 9.91816C2.21642 11.3572 3.13842 12.6004 4.3888 13.4359C5.63917 14.2713 7.14055 14.6474 8.63711 14.5C10.1337 14.3526 11.5328 13.6909 12.5962 12.6275L13.6569 13.6569Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal{background-position:center;background-repeat:no-repeat;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<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal.active{background-position:center;background-repeat:no-repeat;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<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped{background-position:center;background-repeat:no-repeat;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=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23B6B6B6\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped.active{background-position:center;background-repeat:no-repeat;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=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFDCCC\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23FFA780\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden{background-position:center;background-repeat:no-repeat;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<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23444444\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden.active{background-position:center;background-repeat:no-repeat;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<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "clicked"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }] }); }
|
|
1112
|
+
], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n>\r\n <div class=\"menu-content\">\r\n <div *ngFor=\"let item of items\">\r\n <div\r\n [attr.data-test]=\"'floating_bar_item_' + item.buttonId\"\r\n class=\"fp-block-item fp-block-icon-item\"\r\n [ngClass]=\"{\r\n active: item.active\r\n }\"\r\n [className]=\"item.iconClass\"\r\n [title]=\"item.title | translate\"\r\n (click)=\"onItemClicked(item.buttonId)\"\r\n ></div>\r\n </div>\r\n </div>\r\n</div>\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}.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{max-height:400px;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}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.menu-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;-webkit-box-align-items:center;-moz-box-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;padding-left:.5rem;padding-right:.5rem}.menu-content .block-icon-item{background-position:center;background-repeat:no-repeat}.menu-content .ui-icon-hide-object{background-position:center;background-repeat:no-repeat;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=\"%23444444\"/>%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=\"%23444444\"/>%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=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-hide-object.active{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')}.menu-content .ui-icon-transparent-object{background-position:center;background-repeat:no-repeat;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=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object.active{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=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-restore-hide-object{background-position:center;background-repeat:no-repeat;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=\"M13.6569 13.6569C12.3481 14.9656 10.6261 15.7801 8.78414 15.9615C6.94221 16.1429 5.09436 15.68 3.55544 14.6518C2.01652 13.6235 0.881751 12.0934 0.344479 10.3223C-0.192792 8.55115 -0.0993205 6.6485 0.608966 4.93855C1.31725 3.22859 2.59653 1.81712 4.22883 0.944643C5.86112 0.072162 7.74544 -0.207351 9.56072 0.15373C11.376 0.514811 13.0099 1.49414 14.1841 2.92486C15.1452 4.09599 15.7496 5.51024 15.9373 7.00001H18L15 10L12 7.00001H14.4177C14.2361 5.87018 13.7583 4.80177 13.0246 3.90775C12.0706 2.74529 10.743 1.94959 9.26809 1.65621C7.79317 1.36283 6.26216 1.58993 4.93592 2.29882C3.60968 3.00772 2.57027 4.15453 1.99478 5.54387C1.4193 6.93321 1.34336 8.47911 1.77989 9.91816C2.21642 11.3572 3.13842 12.6004 4.3888 13.4359C5.63917 14.2713 7.14055 14.6474 8.63711 14.5C10.1337 14.3526 11.5328 13.6909 12.5962 12.6275L13.6569 13.6569Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal{background-position:center;background-repeat:no-repeat;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<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal.active{background-position:center;background-repeat:no-repeat;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<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped{background-position:center;background-repeat:no-repeat;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=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23B6B6B6\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped.active{background-position:center;background-repeat:no-repeat;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=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFDCCC\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23FFA780\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden{background-position:center;background-repeat:no-repeat;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<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23444444\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden.active{background-position:center;background-repeat:no-repeat;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<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "dragEnd", "clicked"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }] }); }
|
|
699
1113
|
}
|
|
700
1114
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderContentComponent, decorators: [{
|
|
701
1115
|
type: Component,
|
|
@@ -705,8 +1119,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
705
1119
|
TranslateModule,
|
|
706
1120
|
], providers: [
|
|
707
1121
|
TranslateService
|
|
708
|
-
], template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n>\r\n <div class=\"menu-content\">\r\n <div *ngFor=\"let item of items\">\r\n <div\r\n [attr.data-test]=\"'floating_bar_item_' + item.buttonId\"\r\n class=\"fp-block-item fp-block-icon-item\"\r\n [ngClass]=\"{\r\n active: item.active\r\n }\"\r\n [className]=\"item.iconClass\"\r\n [title]=\"item.title | translate\"\r\n (click)=\"onItemClicked(item.buttonId)\"\r\n ></div>\r\n </div>\r\n </div>\r\n</div>\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}.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{max-height:400px;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}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.menu-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;-webkit-box-align-items:center;-moz-box-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;padding-left:.5rem;padding-right:.5rem}.menu-content .block-icon-item{background-position:center;background-repeat:no-repeat}.menu-content .ui-icon-hide-object{background-position:center;background-repeat:no-repeat;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=\"%23444444\"/>%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=\"%23444444\"/>%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=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-hide-object.active{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')}.menu-content .ui-icon-transparent-object{background-position:center;background-repeat:no-repeat;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=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object.active{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=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-restore-hide-object{background-position:center;background-repeat:no-repeat;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=\"M13.6569 13.6569C12.3481 14.9656 10.6261 15.7801 8.78414 15.9615C6.94221 16.1429 5.09436 15.68 3.55544 14.6518C2.01652 13.6235 0.881751 12.0934 0.344479 10.3223C-0.192792 8.55115 -0.0993205 6.6485 0.608966 4.93855C1.31725 3.22859 2.59653 1.81712 4.22883 0.944643C5.86112 0.072162 7.74544 -0.207351 9.56072 0.15373C11.376 0.514811 13.0099 1.49414 14.1841 2.92486C15.1452 4.09599 15.7496 5.51024 15.9373 7.00001H18L15 10L12 7.00001H14.4177C14.2361 5.87018 13.7583 4.80177 13.0246 3.90775C12.0706 2.74529 10.743 1.94959 9.26809 1.65621C7.79317 1.36283 6.26216 1.58993 4.93592 2.29882C3.60968 3.00772 2.57027 4.15453 1.99478 5.54387C1.4193 6.93321 1.34336 8.47911 1.77989 9.91816C2.21642 11.3572 3.13842 12.6004 4.3888 13.4359C5.63917 14.2713 7.14055 14.6474 8.63711 14.5C10.1337 14.3526 11.5328 13.6909 12.5962 12.6275L13.6569 13.6569Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal{background-position:center;background-repeat:no-repeat;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<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal.active{background-position:center;background-repeat:no-repeat;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<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped{background-position:center;background-repeat:no-repeat;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=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23B6B6B6\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped.active{background-position:center;background-repeat:no-repeat;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=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFDCCC\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23FFA780\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden{background-position:center;background-repeat:no-repeat;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<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23444444\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden.active{background-position:center;background-repeat:no-repeat;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<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
709
|
-
}], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { isCollapsed: [{
|
|
1122
|
+
], template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n>\r\n <div class=\"menu-content\">\r\n <div *ngFor=\"let item of items\">\r\n <div\r\n [attr.data-test]=\"'floating_bar_item_' + item.buttonId\"\r\n class=\"fp-block-item fp-block-icon-item\"\r\n [ngClass]=\"{\r\n active: item.active\r\n }\"\r\n [className]=\"item.iconClass\"\r\n [title]=\"item.title | translate\"\r\n (click)=\"onItemClicked(item.buttonId)\"\r\n ></div>\r\n </div>\r\n </div>\r\n</div>\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}.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{max-height:400px;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}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.menu-content{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;-webkit-box-align-items:center;-moz-box-align-items:center;-webkit-align-items:center;-ms-align-items:center;align-items:center;padding-left:.5rem;padding-right:.5rem}.menu-content .block-icon-item{background-position:center;background-repeat:no-repeat}.menu-content .ui-icon-hide-object{background-position:center;background-repeat:no-repeat;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=\"%23444444\"/>%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=\"%23444444\"/>%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=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-hide-object.active{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')}.menu-content .ui-icon-transparent-object{background-position:center;background-repeat:no-repeat;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=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23C3C3C3\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-transparent-object.active{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=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-restore-hide-object{background-position:center;background-repeat:no-repeat;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=\"M13.6569 13.6569C12.3481 14.9656 10.6261 15.7801 8.78414 15.9615C6.94221 16.1429 5.09436 15.68 3.55544 14.6518C2.01652 13.6235 0.881751 12.0934 0.344479 10.3223C-0.192792 8.55115 -0.0993205 6.6485 0.608966 4.93855C1.31725 3.22859 2.59653 1.81712 4.22883 0.944643C5.86112 0.072162 7.74544 -0.207351 9.56072 0.15373C11.376 0.514811 13.0099 1.49414 14.1841 2.92486C15.1452 4.09599 15.7496 5.51024 15.9373 7.00001H18L15 10L12 7.00001H14.4177C14.2361 5.87018 13.7583 4.80177 13.0246 3.90775C12.0706 2.74529 10.743 1.94959 9.26809 1.65621C7.79317 1.36283 6.26216 1.58993 4.93592 2.29882C3.60968 3.00772 2.57027 4.15453 1.99478 5.54387C1.4193 6.93321 1.34336 8.47911 1.77989 9.91816C2.21642 11.3572 3.13842 12.6004 4.3888 13.4359C5.63917 14.2713 7.14055 14.6474 8.63711 14.5C10.1337 14.3526 11.5328 13.6909 12.5962 12.6275L13.6569 13.6569Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal{background-position:center;background-repeat:no-repeat;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<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<rect opacity=\"0.2\" x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path opacity=\"0.2\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-normal.active{background-position:center;background-repeat:no-repeat;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<rect x=\"7\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FE5000\"/>%0D%0A<rect x=\"12\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"3\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"8\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"2\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<rect x=\"12\" y=\"13\" width=\"3\" height=\"3\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%23FBBA9D\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped{background-position:center;background-repeat:no-repeat;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=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23B6B6B6\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23444444\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%237E7E7E\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-clipped.active{background-position:center;background-repeat:no-repeat;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=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFDCCC\"/>%0D%0A<rect x=\"7\" y=\"7\" width=\"4\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"13\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"3\" y=\"7\" width=\"2\" height=\"4\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"3\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23FFA780\"/>%0D%0A<rect x=\"7\" y=\"13\" width=\"4\" height=\"2\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23FFA780\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden{background-position:center;background-repeat:no-repeat;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<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%237E7E7E\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23444444\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23C4C4C4\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%237E7E7E\"/>%0D%0A</svg>%0D%0A')}.menu-content .ui-icon-isolate-menu-hidden.active{background-position:center;background-repeat:no-repeat;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<rect x=\"5\" y=\"7\" width=\"6\" height=\"6\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M5 7H11L13 5H7L5 7Z\" fill=\"%23FE5000\" fill-opacity=\"0.2\"/>%0D%0A<path d=\"M11 7L13 5V11L11 13V7Z\" fill=\"%23FE5000\" fill-opacity=\"0.5\"/>%0D%0A<rect x=\"1\" y=\"5\" width=\"12\" height=\"12\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%23FFDCCC\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23FFA780\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
1123
|
+
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }], propDecorators: { isCollapsed: [{
|
|
1124
|
+
type: Input
|
|
1125
|
+
}], parentId: [{
|
|
710
1126
|
type: Input
|
|
711
1127
|
}], actionClicked: [{
|
|
712
1128
|
type: Output
|
|
@@ -717,19 +1133,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
717
1133
|
}] } });
|
|
718
1134
|
|
|
719
1135
|
class BimplusFloatingBarHeaderLogoComponent extends BimplusLocalizedWidgetComponent {
|
|
720
|
-
constructor(translateService) {
|
|
1136
|
+
constructor(translateService, layoutManagerService) {
|
|
721
1137
|
super(translateService);
|
|
1138
|
+
this.layoutManagerService = layoutManagerService;
|
|
722
1139
|
this.icon = "";
|
|
723
1140
|
this.isCollapsed = false;
|
|
1141
|
+
this.parentId = '';
|
|
724
1142
|
this.title = "";
|
|
725
|
-
// Define event handler for DraggableDirective
|
|
726
|
-
this.logoClicked = new EventEmitter();
|
|
1143
|
+
// Define event handler for DraggableDirective
|
|
727
1144
|
this.dragElement = new EventEmitter();
|
|
728
1145
|
}
|
|
729
|
-
|
|
730
|
-
|
|
1146
|
+
//@Output() logoClicked = new EventEmitter<MouseEvent>();
|
|
1147
|
+
//isCollapsed: boolean = false;
|
|
1148
|
+
ngOnInit() {
|
|
1149
|
+
const layoutManagerItem = this.layoutManagerService.getItem(this.parentId);
|
|
1150
|
+
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1151
|
+
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1152
|
+
const layoutManagerItem = items.find((item) => item.id === this.parentId);
|
|
1153
|
+
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1154
|
+
});
|
|
1155
|
+
}
|
|
1156
|
+
onLogoClicked() {
|
|
1157
|
+
this.layoutManagerService.updateCollapsed(!this.isCollapsed, this.parentId);
|
|
1158
|
+
}
|
|
1159
|
+
onDragEnd() {
|
|
1160
|
+
this.layoutManagerService.handleDragEnd(this.parentId);
|
|
1161
|
+
}
|
|
1162
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderLogoComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1163
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHeaderLogoComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-logo", inputs: { icon: "icon", isCollapsed: "isCollapsed", parentId: "parentId", title: "title" }, outputs: { dragElement: "dragElement" }, host: { properties: { "class.isCollapsed": "this.isCollapsed" } }, providers: [
|
|
731
1164
|
TranslateService
|
|
732
|
-
], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-logo\"\r\n [ngClass]=\"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"icon\"\r\n [title]= \"title | translate\"\r\n libDraggable\r\n (clicked)=\"logoClicked.emit($event)\"\r\n (dragging)=\"dragElement.emit($event)\"\r\n></div>\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}*{-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{max-height:400px;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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "clicked"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }] }); }
|
|
1165
|
+
], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-logo\"\r\n [ngClass]=\"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"icon\"\r\n [title]= \"title | translate\"\r\n libDraggable\r\n (clicked)=\"onLogoClicked()\"\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n></div>\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}*{-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{max-height:400px;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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "dragEnd", "clicked"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }] }); }
|
|
733
1166
|
}
|
|
734
1167
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHeaderLogoComponent, decorators: [{
|
|
735
1168
|
type: Component,
|
|
@@ -739,35 +1172,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
739
1172
|
TranslateModule,
|
|
740
1173
|
], providers: [
|
|
741
1174
|
TranslateService
|
|
742
|
-
], template: "<div\r\n class=\"floating-panel__header-logo\"\r\n [ngClass]=\"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"icon\"\r\n [title]= \"title | translate\"\r\n libDraggable\r\n (clicked)=\"logoClicked.emit($event)\"\r\n (dragging)=\"dragElement.emit($event)\"\r\n></div>\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}*{-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{max-height:400px;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}\n"] }]
|
|
743
|
-
}], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { icon: [{
|
|
1175
|
+
], template: "<div\r\n class=\"floating-panel__header-logo\"\r\n [ngClass]=\"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"icon\"\r\n [title]= \"title | translate\"\r\n libDraggable\r\n (clicked)=\"onLogoClicked()\"\r\n (dragging)=\"dragElement.emit($event)\"\r\n (dragEnd)=\"onDragEnd()\"\r\n></div>\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}*{-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{max-height:400px;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}\n"] }]
|
|
1176
|
+
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }], propDecorators: { icon: [{
|
|
744
1177
|
type: Input
|
|
745
1178
|
}], isCollapsed: [{
|
|
746
1179
|
type: HostBinding,
|
|
747
1180
|
args: ['class.isCollapsed']
|
|
748
1181
|
}, {
|
|
749
1182
|
type: Input
|
|
1183
|
+
}], parentId: [{
|
|
1184
|
+
type: Input
|
|
750
1185
|
}], title: [{
|
|
751
1186
|
type: Input
|
|
752
|
-
}], logoClicked: [{
|
|
753
|
-
type: Output
|
|
754
1187
|
}], dragElement: [{
|
|
755
1188
|
type: Output
|
|
756
1189
|
}] } });
|
|
757
1190
|
|
|
1191
|
+
//import { Component, HostBinding, Input,Output,EventEmitter, ElementRef, AfterViewChecked,ChangeDetectorRef, OnInit, OnDestroy } from '@angular/core';
|
|
1192
|
+
//import { Component, Input,Output,EventEmitter, ElementRef, AfterViewChecked,ChangeDetectorRef, OnInit, OnDestroy, ChangeDetectionStrategy } from '@angular/core';
|
|
758
1193
|
class BimplusFloatingBarComponent extends BimplusLocalizedWidgetComponent {
|
|
759
|
-
constructor(translateService) {
|
|
1194
|
+
constructor(translateService, layoutManagerService, element, cdr, resizeObserverService) {
|
|
760
1195
|
super(translateService);
|
|
1196
|
+
this.layoutManagerService = layoutManagerService;
|
|
1197
|
+
this.element = element;
|
|
1198
|
+
this.cdr = cdr;
|
|
1199
|
+
this.resizeObserverService = resizeObserverService;
|
|
761
1200
|
this.noBody = false;
|
|
762
|
-
this.isCollapsed = false;
|
|
763
1201
|
this.isFocused = false;
|
|
764
1202
|
this.resizeEnabled = false;
|
|
765
1203
|
this.autoCollapse = false;
|
|
766
1204
|
this.focusSelector = '';
|
|
767
1205
|
this.isVisible = false;
|
|
1206
|
+
this.id = '';
|
|
1207
|
+
// Define event handler for reusing draggable also from resize parent
|
|
1208
|
+
this.resizedragging = new EventEmitter();
|
|
1209
|
+
//@Output() logoClicked = new EventEmitter<MouseEvent>();
|
|
1210
|
+
this.subscription = null; // Initialize to null
|
|
1211
|
+
this.hasViewChecked = false;
|
|
1212
|
+
//@Input() isCollapsed: boolean = false;
|
|
1213
|
+
this.isCollapsed = false;
|
|
1214
|
+
//this.layoutManagerService = layoutManagerService;
|
|
1215
|
+
}
|
|
1216
|
+
ngOnInit() {
|
|
1217
|
+
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1218
|
+
const layoutManagerItem = items.find((item) => item.id === this.id);
|
|
1219
|
+
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1220
|
+
});
|
|
1221
|
+
}
|
|
1222
|
+
ngOnDestroy() {
|
|
1223
|
+
// Unsubscribe to avoid memory leaks
|
|
1224
|
+
if (this.subscription) {
|
|
1225
|
+
this.subscription.unsubscribe();
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
ngAfterViewInit() {
|
|
1229
|
+
// if the component wants to be registered in layout manager system
|
|
1230
|
+
// Subscribe to the observable
|
|
1231
|
+
this.subscription = this.resizeObserverService.parentAppRect$.subscribe(value => {
|
|
1232
|
+
this.handleParentAppRectSizeChange(value);
|
|
1233
|
+
});
|
|
768
1234
|
}
|
|
769
|
-
|
|
770
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarComponent, isStandalone: true, selector: "lib-bimplus-floating-bar", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", isFocused: "isFocused", resizeEnabled: "resizeEnabled", autoCollapse: "autoCollapse", focusSelector: "focusSelector", isVisible: "isVisible" }, usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel\"\r\n [class.visible]=\"isVisible\"\r\n [class.no-body]=\"noBody\"\r\n [class.is-focused]=\"isFocused\"\r\n [class.collapsed]=\"isCollapsed\" \r\n>\r\n\r\n <ng-content select=\".floating-bar-header-logo\"></ng-content>\r\n <ng-content select=\".floating-bar-header-content\"></ng-content>\r\n <ng-content select=\".floating-bar-dragger\"></ng-content>\r\n <ng-content select=\".floating-bar-body\"></ng-content>\r\n</div>\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}*{-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{max-height:400px;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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
1235
|
+
ngAfterViewChecked() {
|
|
1236
|
+
if (!this.hasViewChecked && !this.isCollapsed) {
|
|
1237
|
+
this.hasViewChecked = true; // Set the flag to prevent repeated execution
|
|
1238
|
+
//this.cdr.detectChanges(); // Trigger change detection
|
|
1239
|
+
setTimeout(() => {
|
|
1240
|
+
this.layoutManagerService.checkPosition(this.id, "", undefined, 0, 0, true);
|
|
1241
|
+
});
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
handleParentAppRectSizeChange(parentRect) {
|
|
1245
|
+
this.layoutManagerService.checkPosition(this.id, '.floating-panel.visible', parentRect, 0, 0, true);
|
|
1246
|
+
}
|
|
1247
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: ResizeObserverService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1248
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarComponent, isStandalone: true, selector: "lib-bimplus-floating-bar", inputs: { noBody: "noBody", isFocused: "isFocused", resizeEnabled: "resizeEnabled", autoCollapse: "autoCollapse", focusSelector: "focusSelector", isVisible: "isVisible", id: "id" }, outputs: { resizedragging: "resizedragging" }, usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel\"\r\n [class.visible]=\"isVisible\"\r\n [class.no-body]=\"noBody\"\r\n [class.is-focused]=\"isFocused\"\r\n [class.collapsed]=\"isCollapsed\" \r\n>\r\n <ng-content select=\".floating-bar-header-logo\"></ng-content>\r\n <ng-content select=\".floating-bar-header-content\"></ng-content>\r\n <ng-content select=\".floating-bar-dragger\"></ng-content>\r\n <ng-content select=\".floating-bar-body\"></ng-content>\r\n</div>\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}*{-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{max-height:400px;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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
771
1249
|
}
|
|
772
1250
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarComponent, decorators: [{
|
|
773
1251
|
type: Component,
|
|
@@ -777,10 +1255,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
777
1255
|
BimplusFloatingBarDraggerComponent,
|
|
778
1256
|
BimplusFloatingBarHeaderContentComponent,
|
|
779
1257
|
BimplusFloatingBarHeaderLogoComponent,
|
|
780
|
-
], template: "<div\r\n class=\"floating-panel\"\r\n [class.visible]=\"isVisible\"\r\n [class.no-body]=\"noBody\"\r\n [class.is-focused]=\"isFocused\"\r\n [class.collapsed]=\"isCollapsed\" \r\n>\r\n\r\n <ng-content select=\".floating-bar-header-logo\"></ng-content>\r\n <ng-content select=\".floating-bar-header-content\"></ng-content>\r\n <ng-content select=\".floating-bar-dragger\"></ng-content>\r\n <ng-content select=\".floating-bar-body\"></ng-content>\r\n</div>\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}*{-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{max-height:400px;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}\n"] }]
|
|
781
|
-
}], ctorParameters: () => [{ type: i1.TranslateService }], propDecorators: { noBody: [{
|
|
782
|
-
type: Input
|
|
783
|
-
}], isCollapsed: [{
|
|
1258
|
+
], template: "<div\r\n class=\"floating-panel\"\r\n [class.visible]=\"isVisible\"\r\n [class.no-body]=\"noBody\"\r\n [class.is-focused]=\"isFocused\"\r\n [class.collapsed]=\"isCollapsed\" \r\n>\r\n <ng-content select=\".floating-bar-header-logo\"></ng-content>\r\n <ng-content select=\".floating-bar-header-content\"></ng-content>\r\n <ng-content select=\".floating-bar-dragger\"></ng-content>\r\n <ng-content select=\".floating-bar-body\"></ng-content>\r\n</div>\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}*{-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{max-height:400px;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}\n"] }]
|
|
1259
|
+
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: ResizeObserverService }], propDecorators: { noBody: [{
|
|
784
1260
|
type: Input
|
|
785
1261
|
}], isFocused: [{
|
|
786
1262
|
type: Input
|
|
@@ -792,187 +1268,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
792
1268
|
type: Input
|
|
793
1269
|
}], isVisible: [{
|
|
794
1270
|
type: Input
|
|
1271
|
+
}], id: [{
|
|
1272
|
+
type: Input
|
|
1273
|
+
}], resizedragging: [{
|
|
1274
|
+
type: Output
|
|
795
1275
|
}] } });
|
|
796
1276
|
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
checkPosition(elementRef, selector, left, top, deltaX, deltaY, forceCheck = false) {
|
|
800
|
-
const parent = document.getElementById("mainViewportContainer");
|
|
801
|
-
//const leftPanel = document.getElementsByClassName("left-sidenav-content");
|
|
802
|
-
//const leftPanel = document.querySelector(".left-sidenav-content");
|
|
803
|
-
//const leftPanel = document.querySelector(".sidenav");
|
|
804
|
-
const leftPanel = document.querySelector('lib-bimplus-sidenav')?.shadowRoot?.querySelector('.sidenav');
|
|
805
|
-
const topPanel = document.querySelector('lib-bimplus-navbar')?.shadowRoot?.querySelector('.bimplus-navbar');
|
|
806
|
-
if (parent && elementRef.nativeElement && leftPanel && topPanel && selector) {
|
|
807
|
-
const viewRect = parent.getBoundingClientRect();
|
|
808
|
-
const leftPanelRect = leftPanel.getBoundingClientRect();
|
|
809
|
-
const topPanelRect = topPanel.getBoundingClientRect();
|
|
810
|
-
const elementRect = elementRef.nativeElement?.shadowRoot.querySelector(selector)?.getBoundingClientRect();
|
|
811
|
-
console.log(`box: left:${elementRect.left},top:${elementRect.top},right:${elementRect.right},bottom:${elementRect.bottom}`);
|
|
812
|
-
//const elementRect:DOMRect = elementRef.nativeElement.getBoundingClientRect();
|
|
813
|
-
const parentRect = new DOMRect(viewRect.left + leftPanelRect.right + topPanelRect.left, viewRect.top, viewRect.width - leftPanelRect.width, viewRect.height);
|
|
814
|
-
//const parentRect:DOMRect = new DOMRect( viewRect.left,viewRect.top,viewRect.width,viewRect.height);
|
|
815
|
-
//console.log(viewRect,elementRect);
|
|
816
|
-
let checkBoundaries = true;
|
|
817
|
-
if (this._isInsideRect(elementRect, parentRect) === false && !forceCheck) {
|
|
818
|
-
checkBoundaries = false;
|
|
819
|
-
}
|
|
820
|
-
// copy of real element rectangle to perform calculation over before set to the real element
|
|
821
|
-
const elementDOMRect = DOMRect.fromRect(elementRect);
|
|
822
|
-
//set the element rectangle by deltas
|
|
823
|
-
this._translateRectangle(elementDOMRect, deltaX, deltaY);
|
|
824
|
-
if (checkBoundaries) {
|
|
825
|
-
if (this._isInsideRect(elementDOMRect, parentRect) === false) {
|
|
826
|
-
const newElementPos = this.getAlignedPosition(elementDOMRect, parentRect);
|
|
827
|
-
deltaX = newElementPos.x - elementRect.x;
|
|
828
|
-
deltaY = newElementPos.y - elementRect.y;
|
|
829
|
-
this._translateRectangle(elementDOMRect, deltaX, deltaY);
|
|
830
|
-
}
|
|
831
|
-
}
|
|
832
|
-
else {
|
|
833
|
-
console.log("not inside!!");
|
|
834
|
-
if (this._isInsideLeftTopRect(parentRect, elementDOMRect) === false) {
|
|
835
|
-
const newElementPos = this._getAlignedLeftTopPosition(elementDOMRect, parentRect);
|
|
836
|
-
deltaX = newElementPos.x - elementRect.x;
|
|
837
|
-
deltaY = newElementPos.y - elementRect.y;
|
|
838
|
-
this._translateRectangle(elementDOMRect, deltaX, deltaY);
|
|
839
|
-
}
|
|
840
|
-
}
|
|
841
|
-
}
|
|
842
|
-
return { deltaX, deltaY };
|
|
843
|
-
}
|
|
844
|
-
/**--------------------------------------------------------------------------
|
|
845
|
-
* find if rectangle 1 is inside rectangle 2
|
|
846
|
-
--------------------------------------------------------------------------*/
|
|
847
|
-
_isInsideRect(r1, r2) {
|
|
848
|
-
if (!r1 || !r2) {
|
|
849
|
-
return false;
|
|
850
|
-
}
|
|
851
|
-
return r2.left <= r1.left && r2.top <= r1.top && r2.right >= r1.right && r2.bottom >= r1.bottom;
|
|
852
|
-
}
|
|
853
|
-
/**--------------------------------------------------------------------------
|
|
854
|
-
* find if rectangles do not overlap the left and top sides
|
|
855
|
-
--------------------------------------------------------------------------*/
|
|
856
|
-
_isInsideLeftTopRect(r1, r2) {
|
|
857
|
-
if (!r1 || !r2) {
|
|
858
|
-
return false;
|
|
859
|
-
}
|
|
860
|
-
const r1Inside = r2.left <= r1.left && r2.top <= r1.top;
|
|
861
|
-
const r2Inside = r1.left <= r2.left && r1.top <= r2.top;
|
|
862
|
-
return r1Inside || r2Inside;
|
|
863
|
-
}
|
|
864
|
-
/**--------------------------------------------------------------------------
|
|
865
|
-
* get position of r1 aligned with the r2 sides
|
|
866
|
-
--------------------------------------------------------------------------*/
|
|
867
|
-
getAlignedPosition(r1, r2) {
|
|
868
|
-
if (!r1 || !r2) {
|
|
869
|
-
return { x: 0, y: 0 };
|
|
870
|
-
}
|
|
871
|
-
const to = { x: r1.x, y: r1.y };
|
|
872
|
-
//align left or right sides. preferably left
|
|
873
|
-
if (r1.left < r2.left) {
|
|
874
|
-
to.x = r2.x;
|
|
875
|
-
}
|
|
876
|
-
else if (r1.right > r2.right) {
|
|
877
|
-
to.x = r2.right - r1.width;
|
|
878
|
-
}
|
|
879
|
-
//align top or bottom. preferably top
|
|
880
|
-
if (r1.top < r2.top) {
|
|
881
|
-
to.y = r2.y;
|
|
882
|
-
}
|
|
883
|
-
else if (r1.bottom > r2.bottom) {
|
|
884
|
-
to.y = r2.bottom - r1.height;
|
|
885
|
-
}
|
|
886
|
-
return to;
|
|
887
|
-
}
|
|
888
|
-
/**--------------------------------------------------------------------------
|
|
889
|
-
* get position of r1 aligned with the r2 left, top sides
|
|
890
|
-
--------------------------------------------------------------------------*/
|
|
891
|
-
_getAlignedLeftTopPosition(r1, r2) {
|
|
892
|
-
if (!r1 || !r2) {
|
|
893
|
-
return { x: 0, y: 0 };
|
|
894
|
-
}
|
|
895
|
-
const to = { x: r1.x, y: r1.y };
|
|
896
|
-
//align left
|
|
897
|
-
if (r1.left < r2.left) {
|
|
898
|
-
to.x = r2.x;
|
|
899
|
-
}
|
|
900
|
-
//align top
|
|
901
|
-
if (r1.top < r2.top) {
|
|
902
|
-
to.y = r2.y;
|
|
903
|
-
}
|
|
904
|
-
return to;
|
|
905
|
-
}
|
|
906
|
-
/**--------------------------------------------------------------------------
|
|
907
|
-
* translate rectangle by x, y
|
|
908
|
-
--------------------------------------------------------------------------*/
|
|
909
|
-
_translateRectangle(rect, translateX, translateY) {
|
|
910
|
-
if (!rect) {
|
|
911
|
-
return;
|
|
912
|
-
}
|
|
913
|
-
rect.x += translateX;
|
|
914
|
-
rect.y += translateY;
|
|
915
|
-
return rect;
|
|
916
|
-
}
|
|
917
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
918
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, providedIn: 'root' }); }
|
|
919
|
-
}
|
|
920
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: LayoutManagerService, decorators: [{
|
|
921
|
-
type: Injectable,
|
|
922
|
-
args: [{
|
|
923
|
-
providedIn: 'root'
|
|
924
|
-
}]
|
|
925
|
-
}], ctorParameters: () => [] });
|
|
926
|
-
|
|
1277
|
+
const DEFAULT_POSITION_LEFT$3 = 355;
|
|
1278
|
+
const DEFAULT_POSITION_TOP$3 = 355;
|
|
927
1279
|
class BimplusFloatingBarHideObjectsComponent extends BimplusLocalizedWidgetComponent {
|
|
928
|
-
|
|
1280
|
+
// export class BimplusFloatingBarHideObjectsComponent extends BimplusLocalizedWidgetComponent {
|
|
1281
|
+
constructor(translateService, layoutManagerService, element, cdr, resizeObserverService) {
|
|
929
1282
|
super(translateService);
|
|
930
1283
|
this.element = element;
|
|
931
1284
|
this.cdr = cdr;
|
|
932
|
-
this.
|
|
1285
|
+
this.resizeObserverService = resizeObserverService;
|
|
933
1286
|
this.actionClicked = new EventEmitter();
|
|
934
1287
|
this.noBody = true;
|
|
935
|
-
this.isCollapsed = false;
|
|
936
1288
|
this.isFocused = true;
|
|
937
1289
|
// Items for the header content sub component
|
|
938
1290
|
this.items = [];
|
|
1291
|
+
this.hasViewChecked = false;
|
|
1292
|
+
this.componentId = 'hide-menu-fp-id';
|
|
939
1293
|
this.icon = 'ui-icon-hide-menu';
|
|
940
1294
|
this.title = ""; // no tooltip info on Logo icon
|
|
941
1295
|
this.focusSelectorId = 'hide-menu-id';
|
|
942
|
-
|
|
943
|
-
// lib-bimplus-floating-bar-hide-objects{
|
|
944
|
-
// top: 200px;
|
|
945
|
-
// left: 600px;
|
|
946
|
-
// }
|
|
947
|
-
this.left = 355;
|
|
948
|
-
this.top = 355;
|
|
1296
|
+
this.isCollapsed = false;
|
|
949
1297
|
this.layoutManagerService = layoutManagerService;
|
|
950
1298
|
}
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
this.
|
|
954
|
-
|
|
1299
|
+
ngOnInit() {
|
|
1300
|
+
// Subscribe to the observable
|
|
1301
|
+
this.layoutManagerService.registerObject(this.element, this.componentId, DEFAULT_POSITION_LEFT$3, DEFAULT_POSITION_TOP$3, '.floating-panel.visible', true);
|
|
1302
|
+
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1303
|
+
const layoutManagerItem = items.find((item) => item.id === this.componentId);
|
|
1304
|
+
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1305
|
+
});
|
|
955
1306
|
}
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
setTimeout(() => {
|
|
961
|
-
const { deltaX, deltaY } = this.layoutManagerService.checkPosition(this.element, '.floating-panel.visible', this.left, this.top, 0, 0, true);
|
|
962
|
-
this.left += deltaX;
|
|
963
|
-
this.top += deltaY;
|
|
964
|
-
});
|
|
965
|
-
}
|
|
1307
|
+
ngOnDestroy() {
|
|
1308
|
+
// Unsubscribe to avoid memory leaks
|
|
1309
|
+
//this.layoutManagerService.registeredItems$.unsubscribe();
|
|
1310
|
+
console.log('floating bar hide onDestroy');
|
|
966
1311
|
}
|
|
967
1312
|
onDragElement(event) {
|
|
968
1313
|
const deltaX1 = event[0];
|
|
969
1314
|
const deltaY1 = event[1];
|
|
970
|
-
|
|
971
|
-
this.left += deltaX;
|
|
972
|
-
this.top += deltaY;
|
|
1315
|
+
this.layoutManagerService.checkPosition(this.componentId, "", undefined, deltaX1, deltaY1);
|
|
973
1316
|
}
|
|
974
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHideObjectsComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
975
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHideObjectsComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-hide-objects", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", isFocused: "isFocused", items: "items", left: "left", top: "top" }, outputs: { actionClicked: "actionClicked" }, host: { properties: { "style.left.px": "this.left", "style.top.px": "this.top" } }, providers: [TranslateService, LayoutManagerService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"hide-menu-fp-id\"\r\n class=\"hide-menu\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n\r\n\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [icon]=\"icon\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n \r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\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}*{-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{max-height:400px;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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isCollapsed", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "title"], outputs: ["logoClicked", "dragElement"] }, { kind: "ngmodule", type: TranslateModule }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
1317
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHideObjectsComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: ResizeObserverService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1318
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarHideObjectsComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-hide-objects", inputs: { noBody: "noBody", isFocused: "isFocused", items: "items" }, outputs: { actionClicked: "actionClicked" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"hide-menu-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"hide-menu\"\r\n [noBody]=\"noBody\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [icon]=\"icon\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [parentId] = \"componentId\"\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\" \r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\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 (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\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}*{-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{max-height:400px;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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible", "id"], outputs: ["resizedragging"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed", "parentId"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "parentId", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "parentId", "title"], outputs: ["dragElement"] }, { kind: "ngmodule", type: TranslateModule }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
976
1319
|
}
|
|
977
1320
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarHideObjectsComponent, decorators: [{
|
|
978
1321
|
type: Component,
|
|
@@ -983,32 +1326,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
983
1326
|
BimplusFloatingBarHeaderContentComponent,
|
|
984
1327
|
BimplusFloatingBarHeaderLogoComponent,
|
|
985
1328
|
TranslateModule,
|
|
986
|
-
], providers: [TranslateService, LayoutManagerService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"hide-menu-fp-id\"\r\n class=\"hide-menu\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n\r\n\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [icon]=\"icon\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n \r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\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}*{-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{max-height:400px;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}\n"] }]
|
|
987
|
-
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { actionClicked: [{
|
|
1329
|
+
], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"hide-menu-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"hide-menu\"\r\n [noBody]=\"noBody\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [icon]=\"icon\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n\r\n >\r\n </lib-bimplus-floating-bar-header-logo>\r\n\r\n <lib-bimplus-floating-bar-header-content\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [parentId] = \"componentId\"\r\n class=\"floating-bar-header-content\"\r\n [items]=\"items\" \r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\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 (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\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}*{-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{max-height:400px;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}\n"] }]
|
|
1330
|
+
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: ResizeObserverService }], propDecorators: { actionClicked: [{
|
|
988
1331
|
type: Output
|
|
989
1332
|
}], noBody: [{
|
|
990
1333
|
type: Input
|
|
991
|
-
}], isCollapsed: [{
|
|
992
|
-
type: Input
|
|
993
1334
|
}], isFocused: [{
|
|
994
1335
|
type: Input
|
|
995
1336
|
}], items: [{
|
|
996
1337
|
type: Input
|
|
997
|
-
}], left: [{
|
|
998
|
-
type: HostBinding,
|
|
999
|
-
args: ['style.left.px']
|
|
1000
|
-
}, {
|
|
1001
|
-
type: Input
|
|
1002
|
-
}], top: [{
|
|
1003
|
-
type: HostBinding,
|
|
1004
|
-
args: ['style.top.px']
|
|
1005
|
-
}, {
|
|
1006
|
-
type: Input
|
|
1007
1338
|
}] } });
|
|
1008
1339
|
|
|
1340
|
+
const DEFAULT_POSITION_LEFT$2 = 355;
|
|
1341
|
+
const DEFAULT_POSITION_TOP$2 = 320;
|
|
1009
1342
|
class BimplusFloatingBarIsolationObjectsComponent extends BimplusLocalizedWidgetComponent {
|
|
1010
1343
|
constructor(translateService, layoutManagerService, element, cdr) {
|
|
1011
1344
|
super(translateService);
|
|
1345
|
+
this.layoutManagerService = layoutManagerService;
|
|
1012
1346
|
this.element = element;
|
|
1013
1347
|
this.cdr = cdr;
|
|
1014
1348
|
this.hasViewChecked = false;
|
|
@@ -1018,12 +1352,17 @@ class BimplusFloatingBarIsolationObjectsComponent extends BimplusLocalizedWidget
|
|
|
1018
1352
|
this.isFocused = true;
|
|
1019
1353
|
// Items for the header content sub component
|
|
1020
1354
|
this.items = [];
|
|
1021
|
-
this.left = 355;
|
|
1022
|
-
this.top = 320;
|
|
1023
1355
|
this.icon = 'ui-icon-isolation-menu';
|
|
1024
1356
|
this.title = ""; // no tooltip info on Logo icon
|
|
1025
1357
|
this.focusSelectorId = 'isolation-menu-id';
|
|
1026
|
-
this.
|
|
1358
|
+
this.componentId = 'isolation-menu-fp-id';
|
|
1359
|
+
}
|
|
1360
|
+
ngOnInit() {
|
|
1361
|
+
this.layoutManagerService.registerObject(this.element, this.componentId, DEFAULT_POSITION_LEFT$2, DEFAULT_POSITION_TOP$2, '.floating-panel.visible', true);
|
|
1362
|
+
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1363
|
+
const layoutManagerItem = items.find((item) => item.id === this.componentId);
|
|
1364
|
+
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1365
|
+
});
|
|
1027
1366
|
}
|
|
1028
1367
|
onLogoClicked(event) {
|
|
1029
1368
|
this.isCollapsed = !this.isCollapsed;
|
|
@@ -1035,21 +1374,17 @@ class BimplusFloatingBarIsolationObjectsComponent extends BimplusLocalizedWidget
|
|
|
1035
1374
|
this.hasViewChecked = true; // Set the flag to prevent repeated execution
|
|
1036
1375
|
this.cdr.detectChanges(); // Trigger change detection
|
|
1037
1376
|
setTimeout(() => {
|
|
1038
|
-
|
|
1039
|
-
this.left += deltaX;
|
|
1040
|
-
this.top += deltaY;
|
|
1377
|
+
this.layoutManagerService.checkPosition(this.componentId, '.floating-panel.visible', undefined, 0, 0, true);
|
|
1041
1378
|
});
|
|
1042
1379
|
}
|
|
1043
1380
|
}
|
|
1044
1381
|
onDragElement(event) {
|
|
1045
1382
|
const deltaX1 = event[0];
|
|
1046
1383
|
const deltaY1 = event[1];
|
|
1047
|
-
|
|
1048
|
-
this.left += deltaX;
|
|
1049
|
-
this.top += deltaY;
|
|
1384
|
+
this.layoutManagerService.checkPosition(this.componentId, '.floating-panel.visible', undefined, deltaX1, deltaY1);
|
|
1050
1385
|
}
|
|
1051
1386
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarIsolationObjectsComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1052
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarIsolationObjectsComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-isolation-objects", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", isFocused: "isFocused", items: "items", left: "left", top: "top" }, outputs: { actionClicked: "actionClicked" }, host: { properties: { "style.left.px": "this.left", "style.top.px": "this.top" } }, providers: [TranslateService, LayoutManagerService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"isolation-menu-fp-id\"\r\n class=\"isolation-menu\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [icon]=\"icon\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\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 [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\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 [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\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}*{-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{max-height:400px;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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isCollapsed", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "title"], outputs: ["logoClicked", "dragElement"] }, { kind: "ngmodule", type: TranslateModule }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
1387
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.10", type: BimplusFloatingBarIsolationObjectsComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-isolation-objects", inputs: { noBody: "noBody", isCollapsed: "isCollapsed", isFocused: "isFocused", items: "items" }, outputs: { actionClicked: "actionClicked" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"isolation-menu-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"isolation-menu\"\r\n [noBody]=\"noBody\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [icon]=\"icon\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\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 [items]=\"items\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\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 (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\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}*{-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{max-height:400px;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}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: BimplusFloatingBarComponent, selector: "lib-bimplus-floating-bar", inputs: ["noBody", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible", "id"], outputs: ["resizedragging"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed", "parentId"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "parentId", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "parentId", "title"], outputs: ["dragElement"] }, { kind: "ngmodule", type: TranslateModule }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
1053
1388
|
}
|
|
1054
1389
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarIsolationObjectsComponent, decorators: [{
|
|
1055
1390
|
type: Component,
|
|
@@ -1060,7 +1395,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
1060
1395
|
BimplusFloatingBarHeaderContentComponent,
|
|
1061
1396
|
BimplusFloatingBarHeaderLogoComponent,
|
|
1062
1397
|
TranslateModule,
|
|
1063
|
-
], providers: [TranslateService, LayoutManagerService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"isolation-menu-fp-id\"\r\n class=\"isolation-menu\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [icon]=\"icon\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\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 [items]=\"items\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\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 [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\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}*{-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{max-height:400px;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}\n"] }]
|
|
1398
|
+
], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"isolation-menu-fp-id\"\r\n [id] = \"componentId\"\r\n class=\"isolation-menu\"\r\n [noBody]=\"noBody\"\r\n [isFocused]=\"isFocused\"\r\n [resizeEnabled]=\"false\"\r\n [focusSelector]=\"focusSelectorId\"\r\n [isVisible]=\"true\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n (resizedragging)=\"onDragElement($event)\"\r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [parentId] = \"componentId\"\r\n [icon]=\"icon\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\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 [items]=\"items\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\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 (dragElement)=\"onDragElement($event)\"\r\n [parentId] = \"componentId\"\r\n >\r\n </lib-bimplus-floating-bar-dragger>\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}*{-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{max-height:400px;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}\n"] }]
|
|
1064
1399
|
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { actionClicked: [{
|
|
1065
1400
|
type: Output
|
|
1066
1401
|
}], noBody: [{
|
|
@@ -1071,16 +1406,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
1071
1406
|
type: Input
|
|
1072
1407
|
}], items: [{
|
|
1073
1408
|
type: Input
|
|
1074
|
-
}], left: [{
|
|
1075
|
-
type: HostBinding,
|
|
1076
|
-
args: ['style.left.px']
|
|
1077
|
-
}, {
|
|
1078
|
-
type: Input
|
|
1079
|
-
}], top: [{
|
|
1080
|
-
type: HostBinding,
|
|
1081
|
-
args: ['style.top.px']
|
|
1082
|
-
}, {
|
|
1083
|
-
type: Input
|
|
1084
1409
|
}] } });
|
|
1085
1410
|
|
|
1086
1411
|
class BimplusFloatingBarBodyComponent extends BimplusLocalizedWidgetComponent {
|
|
@@ -1164,9 +1489,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
1164
1489
|
type: Input
|
|
1165
1490
|
}] } });
|
|
1166
1491
|
|
|
1492
|
+
//import { Component, EventEmitter, HostBinding, Input, Output, ViewEncapsulation, ElementRef,AfterViewChecked, ChangeDetectorRef } from '@angular/core';
|
|
1493
|
+
const DEFAULT_POSITION_LEFT$1 = 355;
|
|
1494
|
+
const DEFAULT_POSITION_TOP$1 = 20;
|
|
1167
1495
|
class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocalizedWidgetComponent {
|
|
1168
1496
|
constructor(translateService, layoutManagerService, element, cdr) {
|
|
1169
1497
|
super(translateService);
|
|
1498
|
+
this.layoutManagerService = layoutManagerService;
|
|
1170
1499
|
this.element = element;
|
|
1171
1500
|
this.cdr = cdr;
|
|
1172
1501
|
this.hasViewChecked = false;
|
|
@@ -1176,10 +1505,9 @@ class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocalizedWidget
|
|
|
1176
1505
|
this.noModelsMessage = undefined;
|
|
1177
1506
|
this.isLoading = false;
|
|
1178
1507
|
this.loadingDataMessage = undefined;
|
|
1179
|
-
this.left = 355;
|
|
1180
|
-
this.top = 20;
|
|
1181
1508
|
this.icon = 'ui-icon-project-navigator';
|
|
1182
1509
|
this.title = '_Project_navigator';
|
|
1510
|
+
this.componentId = 'project-navigator-fp-id';
|
|
1183
1511
|
// Header content (like IFC export button)
|
|
1184
1512
|
this.items = [];
|
|
1185
1513
|
this.actionClicked = new EventEmitter();
|
|
@@ -1194,7 +1522,13 @@ class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocalizedWidget
|
|
|
1194
1522
|
this.toggleVisibilityOfModel = new EventEmitter();
|
|
1195
1523
|
this.toggleVisibilityOfLayer = new EventEmitter();
|
|
1196
1524
|
this.logoClicked = new EventEmitter();
|
|
1197
|
-
|
|
1525
|
+
}
|
|
1526
|
+
ngOnInit() {
|
|
1527
|
+
this.layoutManagerService.registerObject(this.element, this.componentId, DEFAULT_POSITION_LEFT$1, DEFAULT_POSITION_TOP$1, '.floating-panel.visible', true);
|
|
1528
|
+
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1529
|
+
const layoutManagerItem = items.find((item) => item.id === this.componentId);
|
|
1530
|
+
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1531
|
+
});
|
|
1198
1532
|
}
|
|
1199
1533
|
// #region General bar handling
|
|
1200
1534
|
// Event handler for logoClicked
|
|
@@ -1210,21 +1544,17 @@ class BimplusFloatingBarProjectNavigatorComponent extends BimplusLocalizedWidget
|
|
|
1210
1544
|
this.hasViewChecked = true; // Set the flag to prevent repeated execution
|
|
1211
1545
|
this.cdr.detectChanges(); // Trigger change detection
|
|
1212
1546
|
setTimeout(() => {
|
|
1213
|
-
|
|
1214
|
-
this.left += deltaX;
|
|
1215
|
-
this.top += deltaY;
|
|
1547
|
+
this.layoutManagerService.checkPosition(this.componentId, '.floating-panel.visible', undefined, 0, 0, true);
|
|
1216
1548
|
});
|
|
1217
1549
|
}
|
|
1218
1550
|
}
|
|
1219
1551
|
onDragElement(event) {
|
|
1220
1552
|
const deltaX1 = event[0];
|
|
1221
1553
|
const deltaY1 = event[1];
|
|
1222
|
-
|
|
1223
|
-
this.left += deltaX;
|
|
1224
|
-
this.top += deltaY;
|
|
1554
|
+
this.layoutManagerService.checkPosition(this.componentId, '.floating-panel.visible', undefined, deltaX1, deltaY1);
|
|
1225
1555
|
}
|
|
1226
1556
|
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 }); }
|
|
1227
|
-
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", left: "left", top: "top", 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" }, host: { properties: { "style.left.px": "this.left", "style.top.px": "this.top" } }, providers: [TranslateService, LayoutManagerService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [resizeEnabled]=\"false\"\r\n [isVisible]=\"true\" \r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\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\"> {{loadingDataMessage | translate}} </span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\"> {{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}*{-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{max-height:400px;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{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", "isCollapsed", "isFocused", "resizeEnabled", "autoCollapse", "focusSelector", "isVisible"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "title"], outputs: ["logoClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarBodyComponent, selector: "lib-bimplus-floating-bar-body", inputs: ["isCollapsed"] }, { 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 }); }
|
|
1557
|
+
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]=\"false\"\r\n [isVisible]=\"true\" \r\n (resizedragging)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\" \r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($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 [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\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\"> {{loadingDataMessage | translate}} </span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\"> {{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}*{-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{max-height:400px;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{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"], outputs: ["resizedragging"] }, { kind: "component", type: BimplusFloatingBarDraggerComponent, selector: "lib-bimplus-floating-bar-dragger", inputs: ["isCollapsed", "parentId"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderContentComponent, selector: "lib-bimplus-floating-bar-header-content", inputs: ["isCollapsed", "parentId", "items"], outputs: ["actionClicked", "dragElement"] }, { kind: "component", type: BimplusFloatingBarHeaderLogoComponent, selector: "lib-bimplus-floating-bar-header-logo", inputs: ["icon", "isCollapsed", "parentId", "title"], outputs: ["dragElement"] }, { kind: "component", type: BimplusFloatingBarBodyComponent, selector: "lib-bimplus-floating-bar-body", inputs: ["isCollapsed"] }, { 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 }); }
|
|
1228
1558
|
}
|
|
1229
1559
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusFloatingBarProjectNavigatorComponent, decorators: [{
|
|
1230
1560
|
type: Component,
|
|
@@ -1239,7 +1569,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
1239
1569
|
ProjectModelsComponent,
|
|
1240
1570
|
TranslateModule,
|
|
1241
1571
|
BimplusScrollableContainerComponent
|
|
1242
|
-
], providers: [TranslateService, LayoutManagerService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-floating-bar\r\n id=\"project-navigator-fp-id\"\r\n class=\"project-navigator-fp floating-panel\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [noBody]=\"noBody\"\r\n [isCollapsed]=\"isCollapsed\"\r\n [resizeEnabled]=\"false\"\r\n [isVisible]=\"true\" \r\n>\r\n <lib-bimplus-floating-bar-header-logo\r\n class=\"floating-bar-header-logo\"\r\n [selectedLanguage]=\"selectedLanguage\"\r\n [localizedStrings]=\"localizedStrings\"\r\n [icon]=\"icon\"\r\n [title]=\"title\"\r\n [isCollapsed]=\"isCollapsed\"\r\n (logoClicked)=\"onLogoClicked($event)\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\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\"> {{loadingDataMessage | translate}} </span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\"> {{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}*{-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{max-height:400px;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{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"] }]
|
|
1572
|
+
], 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]=\"false\"\r\n [isVisible]=\"true\" \r\n (resizedragging)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\" \r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\r\n (actionClicked)=\"actionClicked.emit($event)\"\r\n (dragElement)=\"onDragElement($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 [isCollapsed]=\"isCollapsed\"\r\n (dragElement)=\"onDragElement($event)\"\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 [isCollapsed]=\"isCollapsed\"\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\"> {{loadingDataMessage | translate}} </span>\r\n }\r\n @else{ \r\n @if(project.models.length === 0 && noModelsMessage){\r\n <span class=\"inline-message\"> {{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}*{-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{max-height:400px;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{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"] }]
|
|
1243
1573
|
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { noBody: [{
|
|
1244
1574
|
type: Input
|
|
1245
1575
|
}], isCollapsed: [{
|
|
@@ -1250,16 +1580,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
1250
1580
|
type: Input
|
|
1251
1581
|
}], loadingDataMessage: [{
|
|
1252
1582
|
type: Input
|
|
1253
|
-
}], left: [{
|
|
1254
|
-
type: HostBinding,
|
|
1255
|
-
args: ['style.left.px']
|
|
1256
|
-
}, {
|
|
1257
|
-
type: Input
|
|
1258
|
-
}], top: [{
|
|
1259
|
-
type: HostBinding,
|
|
1260
|
-
args: ['style.top.px']
|
|
1261
|
-
}, {
|
|
1262
|
-
type: Input
|
|
1263
1583
|
}], items: [{
|
|
1264
1584
|
type: Input
|
|
1265
1585
|
}], actionClicked: [{
|
|
@@ -1820,11 +2140,11 @@ class BimplusNavbarComponent {
|
|
|
1820
2140
|
}
|
|
1821
2141
|
}
|
|
1822
2142
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusNavbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1823
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "17.3.10", type: BimplusNavbarComponent, isStandalone: true, selector: "lib-bimplus-navbar", inputs: { projectInfo: "projectInfo", teamInfo: "teamInfo", isDev: ["isDev", "isDev", booleanAttribute], isStage: ["isStage", "isStage", booleanAttribute], teamInfoOffset: "teamInfoOffset", isNavbarMenuVisible: ["isNavbarMenuVisible", "isNavbarMenuVisible", booleanAttribute], isNavbarInfoVisible: ["isNavbarInfoVisible", "isNavbarInfoVisible", booleanAttribute], logoState: "logoState", isNavbarMessageVisible: ["isNavbarMessageVisible", "isNavbarMessageVisible", booleanAttribute], isNavbarMenuActive: ["isNavbarMenuActive", "isNavbarMenuActive", booleanAttribute], isNavbarMenuEnabled: ["isNavbarMenuEnabled", "isNavbarMenuEnabled", booleanAttribute], isTouch: ["isTouch", "isTouch", booleanAttribute], selectedLanguage: "selectedLanguage" }, outputs: { bimplusNavbarClicked: "bimplusNavbarClicked" }, ngImport: i0, template: "<div\r\n class=\"bimplus-navbar\"\r\n [ngClass]=\"isTouch ? 'is-touch' : ''\"\r\n>\r\n <div class=\"bimplus-navbar-logo-container\">\r\n <div\r\n class=\"bimplus-logo\"\r\n [ngClass]=\"{\r\n 'model-viewer': logoState === LogoState.ModelViewer,\r\n 'connexis-viewer': logoState === LogoState.ConnexisViewer\r\n }\"\r\n (click)=\"_logoClicked()\"\r\n ></div>\r\n\r\n <div \r\n class=\"bimplus-navbar-menu icon\"\r\n [ngClass]=\"{'active':isNavbarMenuActive, 'hidden': !isNavbarMenuVisible, 'disabled': !isNavbarMenuEnabled}\"\r\n (click)=\"_menuClicked()\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"bimplus-navbar-container\">\r\n <div\r\n class=\"bimplus-navbar-info\"\r\n [ngClass]=\"{'hidden': !isNavbarInfoVisible}\"\r\n [style.margin-left]=\"teamInfoOffset\"\r\n >\r\n <span class=\"team\">{{teamInfo}}</span>\r\n <span *ngIf=\"projectInfo && !isTouch\"> - </span>\r\n <span\r\n class=\"project\"\r\n [ngClass]=\"isDev ? 'clickable' : ''\" \r\n (click)=\"_projectInfoClicked()\"\r\n >\r\n {{projectInfo}}\r\n </span>\r\n </div>\r\n\r\n <div class=\"bimplus-navbar-slot\">\r\n <slot></slot>\r\n </div>\r\n \r\n </div>\r\n</div>", styles: [".bimplus-navbar{height:5.2rem;padding-left:0;padding-right:1em;background-color:#f5f5f5;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;font-size:1.6rem;font-weight:600;color:#444}.bimplus-navbar .bimplus-navbar-preview-mode{display:flex;justify-content:center;align-items:center;color:#fff;font-size:.8125em;line-height:.8125em;height:2.308em;font-weight:700;text-transform:uppercase;padding-left:.99em;padding-right:.99em;background-color:#0047ab;letter-spacing:.383em;margin:auto}.bimplus-navbar .bimplus-navbar-preview-mode__container{position:absolute;left:0;right:0;display:inline-flex;cursor:default}.bimplus-logo{height:100%;min-width:9em;margin-left:2.8em;margin-right:1.53em;background:url('data:image/svg+xml,<svg width=\"135\" height=\"34\" viewBox=\"0 0 135 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M52.8564 17.8117C54.8488 18.2587 56 19.6889 56 21.7175C56 24.3527 54.3247 26 51.0794 26H44V10H50.5995C53.84 10 55.5201 11.6004 55.5201 14.0713C55.5201 15.8828 54.5365 17.2485 52.8564 17.7659V17.8117ZM50.3602 12.0004H46V17H50.3602C52.1552 17 53.1197 16.0705 53.1197 14.4233C53.1209 12.8945 52.16 12.0004 50.3602 12.0004ZM46 19.0004V24.0007H50.7192C52.5142 24.0007 53.5995 23.2475 53.5995 21.4125C53.5995 19.7183 52.5225 19.0004 50.4799 19.0004H46Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M59 26V10H61V26H59Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M72.0476 22.2833H72.0953L77.015 10.0012H80V26H78V14H77.9524L72.7632 26H71.0963L66.0441 14H66V26H64V10H66.985L72.0476 22.2833Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M85 19.9944V26H83V10H89.8571C93.1636 10 95 11.9944 95 14.8242C95 17.7654 93.1685 19.9944 89.8571 19.9944H85ZM85 18H89.6056C91.4371 18 92.5934 16.7822 92.5934 14.8289C92.5934 13.0175 91.442 12.005 89.6056 12.005H85V18Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M100 10V24.005H108V26H98V10H100Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M119 20.203V10H121V20.203C121 24.2611 118.812 26 115 26C111.165 26 109 24.2658 109 20.203V10H111V20.203C111 21.9373 111.587 24.1455 115.047 24.1455C118.341 24.1444 119 21.9419 119 20.203Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M124 25.202L124.359 23.378C126.695 23.948 128.266 24.062 129.501 24.062C131.747 24.062 132.757 22.873 132.757 21.6155C132.757 19.7174 130.578 19.2603 128.939 18.8031C126.447 18.1397 124.224 16.7454 124.224 14.1154C124.224 11.1662 126.582 10 129.5 10C131.179 10 132.755 10.228 134.664 10.798L134.17 12.622C131.858 12.052 130.735 11.938 129.5 11.938C127.254 11.938 126.468 12.964 126.468 14.1793C126.468 15.9394 128.692 16.5573 130.398 16.9689C132.867 17.5389 135 18.7518 135 21.4274C135 24.5146 132.642 26 129.499 26C127.638 25.9997 125.787 25.731 124 25.202Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M17.9746 8H15.0002L9 26H11.5301L16.2779 10.5827H16.3306L21.0268 26H24L17.9746 8Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2 13V2H13V0H0V13H2Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M21 2L32 2L32 13L34 13L34 0L21 -5.68248e-07L21 2Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M32 21L32 32L21 32L21 34L34 34L34 21L32 21Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 32L2 32L2 21L-5.68248e-07 21L0 34L13 34L13 32Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;cursor:pointer}.bimplus-logo.model-viewer{background:url('data:image/svg+xml,<svg width=\"475\" height=\"120\" viewBox=\"0 0 475 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 37.9652C0 37.9652 34.0214 -11.2924 91.4778 2.40641C101.92 4.8961 111.208 9.12334 119.415 14.3743C108.696 9.19068 96.0979 5.97262 82.5356 5.45618C41.9444 3.91053 8.08299 27.1504 6.90408 57.3639C6.77524 60.666 7.04212 63.9148 7.67275 67.0844C1.18359 51.2241 0 37.9652 0 37.9652ZM25.7389 95.8916C34.7922 105.537 46.974 113.675 63.3403 117.577C120.797 131.276 171.429 82.4083 171.429 82.4083C171.429 82.4083 164.866 63.0652 149.777 43.1159C152.696 49.3373 154.168 56.0318 153.898 62.9612C152.719 93.1747 118.858 116.415 78.2664 114.869C57.3434 114.072 38.7164 106.846 25.7389 95.8916Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M88.1346 24.0581H76.083L51.7712 96.9905H62.0228L81.2598 34.5228H81.4732L100.502 96.9905H112.548L88.1346 24.0581Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M218.59 35.7773H214.072L211.839 29.5745H202.076L199.929 35.7773H195.429L204.724 11.4079H209.364L218.59 35.7773ZM210.748 26.2777L207.304 16.5571C207.2 16.2398 207.09 15.73 206.975 15.0276H206.905C206.802 15.6734 206.686 16.1832 206.559 16.5571L203.149 26.2777H210.748Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M235.762 35.7773H222.018V11.4079H226.137V32.3615H235.762V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M253.107 35.7773H239.363V11.4079H243.483V32.3615H253.107V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M260.81 26.9404V35.7773H256.708V11.4079H264.238C267.088 11.4079 269.298 12.0593 270.868 13.3622C272.437 14.6651 273.222 16.5004 273.222 18.8682C273.222 21.2361 272.403 23.1734 270.764 24.6802C269.125 26.187 266.909 26.9404 264.117 26.9404H260.81ZM260.81 14.7387V23.6436H263.476C265.242 23.6436 266.586 23.2414 267.51 22.437C268.433 21.6326 268.894 20.4997 268.894 19.0382C268.894 16.1719 267.198 14.7387 263.805 14.7387H260.81Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M291.19 35.7773H277.446V11.4079H281.566V32.3615H291.19V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M316.117 35.7773H311.599L309.366 29.5745H299.603L297.457 35.7773H292.956L302.252 11.4079H306.891L316.117 35.7773ZM308.276 26.2777L304.831 16.5571C304.727 16.2398 304.617 15.73 304.502 15.0276H304.433C304.329 15.6734 304.214 16.1832 304.087 16.5571L300.676 26.2777H308.276Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M340.594 35.7773H336.094L324.236 17.8656C323.936 17.4124 323.688 16.9423 323.492 16.4551H323.388C323.48 16.9762 323.526 18.0922 323.526 19.8029V35.7773H319.545V11.4079H324.34L335.799 28.8947C336.284 29.6198 336.596 30.1183 336.734 30.3902H336.803C336.688 29.7444 336.63 28.6512 336.63 27.1104V11.4079H340.594V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M373.831 34.7577C371.961 35.7094 369.636 36.1852 366.855 36.1852C363.254 36.1852 360.369 35.0692 358.199 32.8374C356.03 30.6055 354.945 27.6768 354.945 24.0514C354.945 20.1541 356.162 17.0046 358.597 14.6027C361.044 12.2009 364.131 11 367.859 11C370.259 11 372.25 11.3342 373.831 12.0026V16.0132C372.157 15.0389 370.311 14.5518 368.291 14.5518C365.602 14.5518 363.421 15.3958 361.748 17.0839C360.086 18.7719 359.255 21.0265 359.255 23.8475C359.255 26.5326 360.034 28.6738 361.592 30.2713C363.15 31.8574 365.199 32.6504 367.737 32.6504C370.08 32.6504 372.111 32.1066 373.831 31.019V34.7577Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M392.284 35.7773H378.539V11.4079H382.659V32.3615H392.284V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M405.042 36.1852C401.464 36.1852 398.596 35.0466 396.438 32.7694C394.292 30.4922 393.218 27.5295 393.218 23.8815C393.218 19.9615 394.315 16.8346 396.507 14.5008C398.7 12.1669 401.678 11 405.44 11C408.925 11 411.729 12.1329 413.853 14.3988C415.988 16.6647 417.055 19.6273 417.055 23.2867C417.055 27.2633 415.964 30.4072 413.783 32.7184C411.602 35.0296 408.688 36.1852 405.042 36.1852ZM405.232 14.5518C402.958 14.5518 401.106 15.3845 399.675 17.0499C398.256 18.7153 397.546 20.9075 397.546 23.6266C397.546 26.3343 398.238 28.5152 399.623 30.1693C401.008 31.8234 402.82 32.6504 405.059 32.6504C407.436 32.6504 409.311 31.863 410.685 30.2882C412.058 28.7135 412.745 26.5099 412.745 23.6776C412.745 20.7659 412.075 18.517 410.737 16.9309C409.41 15.3448 407.575 14.5518 405.232 14.5518Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M440.701 25.9208C440.701 32.7637 437.401 36.1852 430.8 36.1852C424.475 36.1852 421.313 32.894 421.313 26.3116V11.4079H425.433V25.4789C425.433 30.2599 427.326 32.6504 431.111 32.6504C434.758 32.6504 436.581 30.3449 436.581 25.7338V11.4079H440.701V25.9208Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M446.535 35.7773V11.4079H453.701C462.853 11.4079 467.429 15.3675 467.429 23.2867C467.429 27.048 466.159 30.073 463.62 32.3615C461.081 34.6387 457.677 35.7773 453.407 35.7773H446.535ZM450.637 14.8407V32.3615H453.926C456.823 32.3615 459.073 31.5798 460.677 30.0163C462.293 28.4529 463.101 26.2437 463.101 23.3887C463.101 17.69 460.095 14.8407 454.082 14.8407H450.637Z\" fill=\"%23FE5000\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M269.477 52.1852H260.001V109.25H269.477V52.1852ZM278.428 109.25H300.066V101.251H278.428V109.25ZM278.428 84.3785H297.129V76.3799H278.428V84.3785ZM278.428 60.2236H298.796V52.1852H278.428V60.2236ZM232.057 109.25L252.499 52.1852H242.497L228.128 95.4014C227.545 97.1524 227.162 98.7839 226.976 100.296H226.818C226.579 98.4656 226.235 96.8605 225.786 95.481L211.734 52.1852H201.414L221.499 109.25H232.057ZM366.553 109.25L382.152 52.1852H372.388L362.266 94.128C361.737 96.3034 361.432 98.0544 361.353 99.3808H361.194C361.009 97.4177 360.731 95.7198 360.361 94.2872L349.564 52.1852H339.839L328.169 93.9688C327.534 96.2769 327.164 98.1074 327.058 99.4604H326.859C326.754 97.5503 326.489 95.7198 326.066 93.9688L315.745 52.1852H305.385L321.302 109.25H332.218L343.094 69.2568C343.597 67.4793 343.914 65.6488 344.047 63.7652H344.205C344.311 65.7815 344.589 67.6385 345.039 69.3364L355.875 109.25H366.553ZM422.005 109.25H390.051V52.1852H420.735V60.2236H399.498V76.3799H419.067V84.3785H399.498V101.251H422.005V109.25ZM463.394 109.25H474.429L464.307 93.2128C463.486 91.9659 462.732 90.8782 462.044 89.9497C461.383 88.9946 460.708 88.1457 460.02 87.4028C459.332 86.66 458.604 85.9437 457.837 85.254C457.069 84.5377 456.17 83.8877 455.138 83.3041V83.1449C457.069 82.6408 458.803 81.9245 460.337 80.996C461.899 80.0675 463.222 78.9533 464.307 77.6533C465.418 76.3269 466.265 74.8279 466.847 73.1566C467.456 71.4587 467.76 69.6017 467.76 67.5854C467.76 65.0121 467.284 62.7704 466.331 60.8603C465.405 58.9236 464.108 57.3186 462.441 56.0452C460.774 54.7453 458.816 53.7769 456.566 53.1402C454.317 52.5035 451.856 52.1852 449.184 52.1852H430.448V109.25H439.856V86.0896H443.666C444.857 86.0896 445.929 86.2356 446.881 86.5274C447.834 86.8192 448.707 87.2835 449.501 87.9202C450.321 88.5569 451.115 89.3793 451.883 90.3874C452.677 91.369 453.484 92.5628 454.304 93.9688L463.394 109.25ZM439.856 78.4094V59.8654H447.794C451.023 59.8654 453.497 60.6348 455.217 62.1735C456.937 63.7122 457.797 65.8478 457.797 68.5803C457.797 70.0925 457.546 71.4587 457.043 72.6791C456.54 73.8994 455.839 74.9341 454.939 75.783C454.039 76.6319 452.968 77.2819 451.724 77.7329C450.507 78.1839 449.17 78.4094 447.715 78.4094H439.856Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;margin-left:.4em;cursor:default}.bimplus-logo.connexis-viewer{background:url('data:image/svg+xml,<svg width=\"466\" height=\"120\" viewBox=\"0 0 466 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23FE5000\"/>%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23FE5000\"/>%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M339 33.3906H333.68H330.969V67.6821C330.969 71.0469 331.093 73.4345 331.341 74.8447H331.192C330.895 74.2509 330.227 73.1623 329.188 71.5789L304.62 33.3906H303.128H294.63H294.34V53.4999H303.128V45.1829C303.487 45.9743 303.91 46.7444 304.397 47.4932L329.819 86.6092H333.68H339V33.3906ZM347 86.6092H363.555V79.1497H347V86.6092ZM347 63.4142H360.809V55.9547H347V63.4142ZM347 40.8873H362.368V33.3906H347V40.8873ZM303.128 64.4999H294.34V73.9315C293.982 73.3329 293.485 72.5487 292.848 71.5789L268.28 33.3906H258V53.4999H266.536V51.724C266.536 47.988 266.437 45.551 266.239 44.4129H266.462C266.882 45.4768 267.414 46.5035 268.057 47.4932L293.479 86.6092H294.34H302.876H303.128V64.4999ZM266.536 64.4999H258V86.6092H266.536V64.4999ZM200.489 84.3826C196.481 86.4609 191.496 87.5 185.533 87.5C177.814 87.5 171.628 85.063 166.977 80.1889C162.326 75.3149 160 68.9193 160 61.002C160 52.491 162.61 45.6129 167.831 40.3677C173.076 35.1226 179.694 32.5 187.686 32.5C192.832 32.5 197.1 33.2299 200.489 34.6896V43.448C196.902 41.3203 192.943 40.2564 188.613 40.2564C182.849 40.2564 178.173 42.0996 174.585 45.7861C171.022 49.4726 169.241 54.3961 169.241 60.5567C169.241 66.4204 170.911 71.0965 174.251 74.585C177.591 78.0488 181.983 79.7807 187.426 79.7807C192.448 79.7807 196.803 78.5931 200.489 76.2179V84.3826ZM209.903 80.0405C214.529 85.0135 220.678 87.5 228.348 87.5C236.166 87.5 242.413 84.9764 247.089 79.9291C251.765 74.8819 254.103 68.0162 254.103 59.332C254.103 51.3405 251.815 44.8707 247.238 39.9224C242.685 34.9741 236.673 32.5 229.201 32.5C221.135 32.5 214.752 35.0484 210.051 40.1451C205.35 45.2418 203 52.0704 203 60.6309C203 68.5976 205.301 75.0675 209.903 80.0405ZM216.843 45.7119C219.911 42.0749 223.882 40.2564 228.756 40.2564C233.778 40.2564 237.712 41.9883 240.557 45.4521C243.427 48.9159 244.862 53.827 244.862 60.1856C244.862 66.3709 243.39 71.1831 240.446 74.6221C237.502 78.0612 233.481 79.7807 228.385 79.7807C223.585 79.7807 219.7 77.9746 216.731 74.3623C213.762 70.7501 212.278 65.9874 212.278 60.0742C212.278 54.1363 213.8 49.3489 216.843 45.7119Z\" fill=\"%232F3133\"/>%0A<path d=\"M413 86.5H402.359L391.381 67.0593C391.058 66.4679 390.697 65.6302 390.299 64.546H390.149C389.925 65.0881 389.552 65.9258 389.029 67.0593L377.716 86.5H367L384.549 59.8522L368.419 33.5H379.284L388.955 51.3884C389.577 52.5711 390.137 53.7538 390.635 54.9365H390.747C391.469 53.3842 392.091 52.1523 392.614 51.2406L402.657 33.5H412.664L396.161 59.7782L413 86.5Z\" fill=\"%232F3133\"/>%0A<path d=\"M432.421 84.5486V75.6215C433.223 76.3502 434.17 77.0061 435.263 77.5891C436.381 78.1721 437.559 78.67 438.798 79.083C440.037 79.4717 441.275 79.7753 442.514 79.9939C443.753 80.2125 444.895 80.3219 445.939 80.3219C449.583 80.3219 452.292 79.7146 454.065 78.5C455.862 77.2854 456.761 75.5243 456.761 73.2166C456.761 71.9777 456.458 70.9089 455.85 70.0101C455.267 69.087 454.441 68.249 453.373 67.496C452.304 66.7429 451.041 66.0263 449.583 65.3462C448.15 64.6417 446.607 63.913 444.956 63.1599C443.182 62.2125 441.531 61.253 440 60.2814C438.47 59.3097 437.134 58.2409 435.992 57.0749C434.875 55.8846 433.988 54.5486 433.332 53.0668C432.701 51.585 432.385 49.8482 432.385 47.8563C432.385 45.4028 432.931 43.2773 434.024 41.4798C435.142 39.6579 436.599 38.164 438.397 36.998C440.219 35.8077 442.284 34.9332 444.591 34.3745C446.899 33.7915 449.255 33.5 451.66 33.5C457.126 33.5 461.109 34.1194 463.611 35.3583V43.9211C460.648 41.7834 456.834 40.7146 452.17 40.7146C450.883 40.7146 449.595 40.836 448.308 41.0789C447.045 41.3219 445.903 41.7227 444.883 42.2814C443.887 42.8401 443.073 43.5567 442.441 44.4312C441.81 45.3057 441.494 46.3623 441.494 47.6012C441.494 48.7672 441.737 49.7753 442.223 50.6255C442.709 51.4757 443.413 52.253 444.336 52.9575C445.284 53.6619 446.425 54.3543 447.761 55.0344C449.122 55.6903 450.688 56.4069 452.462 57.1842C454.284 58.1316 455.996 59.1275 457.599 60.1721C459.227 61.2166 460.648 62.3704 461.862 63.6336C463.101 64.8968 464.073 66.3057 464.777 67.8603C465.506 69.3907 465.871 71.1397 465.871 73.1073C465.871 75.7551 465.336 77.9899 464.267 79.8117C463.199 81.6336 461.753 83.1154 459.931 84.2571C458.134 85.3988 456.057 86.2247 453.701 86.7348C451.344 87.2449 448.854 87.5 446.231 87.5C445.356 87.5 444.275 87.4271 442.988 87.2814C441.725 87.1599 440.425 86.9656 439.089 86.6984C437.753 86.4555 436.49 86.1518 435.3 85.7874C434.109 85.4231 433.15 85.0101 432.421 84.5486Z\" fill=\"%232F3133\"/>%0A<path d=\"M427 86.5H418V33.5H427V86.5Z\" fill=\"%232F3133\"/>%0A</svg>%0A') no-repeat;background-position:center;background-size:9em 2.3em;margin-left:.4em;cursor:default}.icon{width:1.125em;height:1.125em;background-size:1.125em 1.125em!important;background-position:center;background-repeat:no-repeat}.bimplus-navbar-menu{height:100%;width:3.125em;background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center;background-size:1.125em 1.125em!important;cursor:pointer;margin-right:.4em}.bimplus-navbar-menu.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bimplus-navbar-menu.hidden{visibility:hidden;width:1.2rem}.bimplus-navbar-menu.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A') no-repeat center;cursor:default}.bimplus-navbar-logo-container{height:100%;display:flex;justify-content:flex-start;align-items:center;flex-direction:row-reverse;position:relative}.bimplus-navbar-container{display:flex;justify-content:space-between;align-items:center;flex:1 1 auto;position:relative}.bimplus-navbar-container .bimplus-navbar-info{display:inline-flex;flex:1 1 auto;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:4em;min-width:0}.bimplus-navbar-container .bimplus-navbar-info .clickable{cursor:pointer}.bimplus-navbar-container .bimplus-navbar-info.hidden{visibility:hidden}.bimplus-navbar-container .bimplus-navbar-slot{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;white-space:nowrap;text-overflow:ellipsis}.is-touch .bimplus-navbar-info{display:flex;flex-direction:column;line-height:normal}.is-touch .bimplus-navbar-info .team{font-size:1em;font-weight:400}.is-touch .bimplus-navbar-info .project{font-size:1em;font-weight:700}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
2143
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "17.3.10", type: BimplusNavbarComponent, isStandalone: true, selector: "lib-bimplus-navbar", inputs: { projectInfo: "projectInfo", teamInfo: "teamInfo", isDev: ["isDev", "isDev", booleanAttribute], isStage: ["isStage", "isStage", booleanAttribute], teamInfoOffset: "teamInfoOffset", isNavbarMenuVisible: ["isNavbarMenuVisible", "isNavbarMenuVisible", booleanAttribute], isNavbarInfoVisible: ["isNavbarInfoVisible", "isNavbarInfoVisible", booleanAttribute], logoState: "logoState", isNavbarMessageVisible: ["isNavbarMessageVisible", "isNavbarMessageVisible", booleanAttribute], isNavbarMenuActive: ["isNavbarMenuActive", "isNavbarMenuActive", booleanAttribute], isNavbarMenuEnabled: ["isNavbarMenuEnabled", "isNavbarMenuEnabled", booleanAttribute], isTouch: ["isTouch", "isTouch", booleanAttribute], selectedLanguage: "selectedLanguage" }, outputs: { bimplusNavbarClicked: "bimplusNavbarClicked" }, ngImport: i0, template: "<div\r\n class=\"bimplus-navbar\"\r\n [ngClass]=\"isTouch ? 'is-touch' : ''\"\r\n>\r\n <div class=\"bimplus-navbar-logo-container\">\r\n <div\r\n class=\"bimplus-logo\"\r\n [ngClass]=\"{\r\n 'model-viewer': logoState === LogoState.ModelViewer,\r\n 'connexis-viewer': logoState === LogoState.ConnexisViewer\r\n }\"\r\n (click)=\"_logoClicked()\"\r\n ></div>\r\n\r\n <div \r\n class=\"bimplus-navbar-menu icon\"\r\n [ngClass]=\"{'active':isNavbarMenuActive, 'hidden': !isNavbarMenuVisible, 'disabled': !isNavbarMenuEnabled}\"\r\n (click)=\"_menuClicked()\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"bimplus-navbar-container\">\r\n <div\r\n class=\"bimplus-navbar-info\"\r\n [ngClass]=\"{'hidden': !isNavbarInfoVisible}\"\r\n [style.margin-left]=\"teamInfoOffset\"\r\n >\r\n <span class=\"team\">{{teamInfo}}</span>\r\n <span *ngIf=\"projectInfo && !isTouch\"> - </span>\r\n <span\r\n class=\"project\"\r\n [ngClass]=\"isDev ? 'clickable' : ''\" \r\n (click)=\"_projectInfoClicked()\"\r\n >\r\n {{projectInfo}}\r\n </span>\r\n </div>\r\n\r\n <div class=\"bimplus-navbar-slot\">\r\n <slot></slot>\r\n </div>\r\n \r\n </div>\r\n</div>", styles: [".bimplus-navbar{height:5.2rem;padding-left:0;padding-right:1em;background-color:#f5f5f5;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;font-size:1.6rem;font-weight:600;color:#444}.bimplus-navbar .bimplus-navbar-preview-mode{display:flex;justify-content:center;align-items:center;color:#fff;font-size:.8125em;line-height:.8125em;height:2.308em;font-weight:700;text-transform:uppercase;padding-left:.99em;padding-right:.99em;background-color:#0047ab;letter-spacing:.383em;margin:auto}.bimplus-navbar .bimplus-navbar-preview-mode__container{position:absolute;left:0;right:0;display:inline-flex;cursor:default}.bimplus-logo{height:100%;min-width:9em;margin-left:2.8em;margin-right:1.53em;background:url('data:image/svg+xml,<svg width=\"135\" height=\"34\" viewBox=\"0 0 135 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M52.8564 17.8117C54.8488 18.2587 56 19.6889 56 21.7175C56 24.3527 54.3247 26 51.0794 26H44V10H50.5995C53.84 10 55.5201 11.6004 55.5201 14.0713C55.5201 15.8828 54.5365 17.2485 52.8564 17.7659V17.8117ZM50.3602 12.0004H46V17H50.3602C52.1552 17 53.1197 16.0705 53.1197 14.4233C53.1209 12.8945 52.16 12.0004 50.3602 12.0004ZM46 19.0004V24.0007H50.7192C52.5142 24.0007 53.5995 23.2475 53.5995 21.4125C53.5995 19.7183 52.5225 19.0004 50.4799 19.0004H46Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M59 26V10H61V26H59Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M72.0476 22.2833H72.0953L77.015 10.0012H80V26H78V14H77.9524L72.7632 26H71.0963L66.0441 14H66V26H64V10H66.985L72.0476 22.2833Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M85 19.9944V26H83V10H89.8571C93.1636 10 95 11.9944 95 14.8242C95 17.7654 93.1685 19.9944 89.8571 19.9944H85ZM85 18H89.6056C91.4371 18 92.5934 16.7822 92.5934 14.8289C92.5934 13.0175 91.442 12.005 89.6056 12.005H85V18Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M100 10V24.005H108V26H98V10H100Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M119 20.203V10H121V20.203C121 24.2611 118.812 26 115 26C111.165 26 109 24.2658 109 20.203V10H111V20.203C111 21.9373 111.587 24.1455 115.047 24.1455C118.341 24.1444 119 21.9419 119 20.203Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M124 25.202L124.359 23.378C126.695 23.948 128.266 24.062 129.501 24.062C131.747 24.062 132.757 22.873 132.757 21.6155C132.757 19.7174 130.578 19.2603 128.939 18.8031C126.447 18.1397 124.224 16.7454 124.224 14.1154C124.224 11.1662 126.582 10 129.5 10C131.179 10 132.755 10.228 134.664 10.798L134.17 12.622C131.858 12.052 130.735 11.938 129.5 11.938C127.254 11.938 126.468 12.964 126.468 14.1793C126.468 15.9394 128.692 16.5573 130.398 16.9689C132.867 17.5389 135 18.7518 135 21.4274C135 24.5146 132.642 26 129.499 26C127.638 25.9997 125.787 25.731 124 25.202Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M17.9746 8H15.0002L9 26H11.5301L16.2779 10.5827H16.3306L21.0268 26H24L17.9746 8Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2 13V2H13V0H0V13H2Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M21 2L32 2L32 13L34 13L34 0L21 -5.68248e-07L21 2Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M32 21L32 32L21 32L21 34L34 34L34 21L32 21Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 32L2 32L2 21L-5.68248e-07 21L0 34L13 34L13 32Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;cursor:pointer}.bimplus-logo.model-viewer{background:url('data:image/svg+xml,<svg width=\"475\" height=\"120\" viewBox=\"0 0 475 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 37.9652C0 37.9652 34.0214 -11.2924 91.4778 2.40641C101.92 4.8961 111.208 9.12334 119.415 14.3743C108.696 9.19068 96.0979 5.97262 82.5356 5.45618C41.9444 3.91053 8.08299 27.1504 6.90408 57.3639C6.77524 60.666 7.04212 63.9148 7.67275 67.0844C1.18359 51.2241 0 37.9652 0 37.9652ZM25.7389 95.8916C34.7922 105.537 46.974 113.675 63.3403 117.577C120.797 131.276 171.429 82.4083 171.429 82.4083C171.429 82.4083 164.866 63.0652 149.777 43.1159C152.696 49.3373 154.168 56.0318 153.898 62.9612C152.719 93.1747 118.858 116.415 78.2664 114.869C57.3434 114.072 38.7164 106.846 25.7389 95.8916Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M88.1346 24.0581H76.083L51.7712 96.9905H62.0228L81.2598 34.5228H81.4732L100.502 96.9905H112.548L88.1346 24.0581Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M218.59 35.7773H214.072L211.839 29.5745H202.076L199.929 35.7773H195.429L204.724 11.4079H209.364L218.59 35.7773ZM210.748 26.2777L207.304 16.5571C207.2 16.2398 207.09 15.73 206.975 15.0276H206.905C206.802 15.6734 206.686 16.1832 206.559 16.5571L203.149 26.2777H210.748Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M235.762 35.7773H222.018V11.4079H226.137V32.3615H235.762V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M253.107 35.7773H239.363V11.4079H243.483V32.3615H253.107V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M260.81 26.9404V35.7773H256.708V11.4079H264.238C267.088 11.4079 269.298 12.0593 270.868 13.3622C272.437 14.6651 273.222 16.5004 273.222 18.8682C273.222 21.2361 272.403 23.1734 270.764 24.6802C269.125 26.187 266.909 26.9404 264.117 26.9404H260.81ZM260.81 14.7387V23.6436H263.476C265.242 23.6436 266.586 23.2414 267.51 22.437C268.433 21.6326 268.894 20.4997 268.894 19.0382C268.894 16.1719 267.198 14.7387 263.805 14.7387H260.81Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M291.19 35.7773H277.446V11.4079H281.566V32.3615H291.19V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M316.117 35.7773H311.599L309.366 29.5745H299.603L297.457 35.7773H292.956L302.252 11.4079H306.891L316.117 35.7773ZM308.276 26.2777L304.831 16.5571C304.727 16.2398 304.617 15.73 304.502 15.0276H304.433C304.329 15.6734 304.214 16.1832 304.087 16.5571L300.676 26.2777H308.276Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M340.594 35.7773H336.094L324.236 17.8656C323.936 17.4124 323.688 16.9423 323.492 16.4551H323.388C323.48 16.9762 323.526 18.0922 323.526 19.8029V35.7773H319.545V11.4079H324.34L335.799 28.8947C336.284 29.6198 336.596 30.1183 336.734 30.3902H336.803C336.688 29.7444 336.63 28.6512 336.63 27.1104V11.4079H340.594V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M373.831 34.7577C371.961 35.7094 369.636 36.1852 366.855 36.1852C363.254 36.1852 360.369 35.0692 358.199 32.8374C356.03 30.6055 354.945 27.6768 354.945 24.0514C354.945 20.1541 356.162 17.0046 358.597 14.6027C361.044 12.2009 364.131 11 367.859 11C370.259 11 372.25 11.3342 373.831 12.0026V16.0132C372.157 15.0389 370.311 14.5518 368.291 14.5518C365.602 14.5518 363.421 15.3958 361.748 17.0839C360.086 18.7719 359.255 21.0265 359.255 23.8475C359.255 26.5326 360.034 28.6738 361.592 30.2713C363.15 31.8574 365.199 32.6504 367.737 32.6504C370.08 32.6504 372.111 32.1066 373.831 31.019V34.7577Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M392.284 35.7773H378.539V11.4079H382.659V32.3615H392.284V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M405.042 36.1852C401.464 36.1852 398.596 35.0466 396.438 32.7694C394.292 30.4922 393.218 27.5295 393.218 23.8815C393.218 19.9615 394.315 16.8346 396.507 14.5008C398.7 12.1669 401.678 11 405.44 11C408.925 11 411.729 12.1329 413.853 14.3988C415.988 16.6647 417.055 19.6273 417.055 23.2867C417.055 27.2633 415.964 30.4072 413.783 32.7184C411.602 35.0296 408.688 36.1852 405.042 36.1852ZM405.232 14.5518C402.958 14.5518 401.106 15.3845 399.675 17.0499C398.256 18.7153 397.546 20.9075 397.546 23.6266C397.546 26.3343 398.238 28.5152 399.623 30.1693C401.008 31.8234 402.82 32.6504 405.059 32.6504C407.436 32.6504 409.311 31.863 410.685 30.2882C412.058 28.7135 412.745 26.5099 412.745 23.6776C412.745 20.7659 412.075 18.517 410.737 16.9309C409.41 15.3448 407.575 14.5518 405.232 14.5518Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M440.701 25.9208C440.701 32.7637 437.401 36.1852 430.8 36.1852C424.475 36.1852 421.313 32.894 421.313 26.3116V11.4079H425.433V25.4789C425.433 30.2599 427.326 32.6504 431.111 32.6504C434.758 32.6504 436.581 30.3449 436.581 25.7338V11.4079H440.701V25.9208Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M446.535 35.7773V11.4079H453.701C462.853 11.4079 467.429 15.3675 467.429 23.2867C467.429 27.048 466.159 30.073 463.62 32.3615C461.081 34.6387 457.677 35.7773 453.407 35.7773H446.535ZM450.637 14.8407V32.3615H453.926C456.823 32.3615 459.073 31.5798 460.677 30.0163C462.293 28.4529 463.101 26.2437 463.101 23.3887C463.101 17.69 460.095 14.8407 454.082 14.8407H450.637Z\" fill=\"%23FE5000\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M269.477 52.1852H260.001V109.25H269.477V52.1852ZM278.428 109.25H300.066V101.251H278.428V109.25ZM278.428 84.3785H297.129V76.3799H278.428V84.3785ZM278.428 60.2236H298.796V52.1852H278.428V60.2236ZM232.057 109.25L252.499 52.1852H242.497L228.128 95.4014C227.545 97.1524 227.162 98.7839 226.976 100.296H226.818C226.579 98.4656 226.235 96.8605 225.786 95.481L211.734 52.1852H201.414L221.499 109.25H232.057ZM366.553 109.25L382.152 52.1852H372.388L362.266 94.128C361.737 96.3034 361.432 98.0544 361.353 99.3808H361.194C361.009 97.4177 360.731 95.7198 360.361 94.2872L349.564 52.1852H339.839L328.169 93.9688C327.534 96.2769 327.164 98.1074 327.058 99.4604H326.859C326.754 97.5503 326.489 95.7198 326.066 93.9688L315.745 52.1852H305.385L321.302 109.25H332.218L343.094 69.2568C343.597 67.4793 343.914 65.6488 344.047 63.7652H344.205C344.311 65.7815 344.589 67.6385 345.039 69.3364L355.875 109.25H366.553ZM422.005 109.25H390.051V52.1852H420.735V60.2236H399.498V76.3799H419.067V84.3785H399.498V101.251H422.005V109.25ZM463.394 109.25H474.429L464.307 93.2128C463.486 91.9659 462.732 90.8782 462.044 89.9497C461.383 88.9946 460.708 88.1457 460.02 87.4028C459.332 86.66 458.604 85.9437 457.837 85.254C457.069 84.5377 456.17 83.8877 455.138 83.3041V83.1449C457.069 82.6408 458.803 81.9245 460.337 80.996C461.899 80.0675 463.222 78.9533 464.307 77.6533C465.418 76.3269 466.265 74.8279 466.847 73.1566C467.456 71.4587 467.76 69.6017 467.76 67.5854C467.76 65.0121 467.284 62.7704 466.331 60.8603C465.405 58.9236 464.108 57.3186 462.441 56.0452C460.774 54.7453 458.816 53.7769 456.566 53.1402C454.317 52.5035 451.856 52.1852 449.184 52.1852H430.448V109.25H439.856V86.0896H443.666C444.857 86.0896 445.929 86.2356 446.881 86.5274C447.834 86.8192 448.707 87.2835 449.501 87.9202C450.321 88.5569 451.115 89.3793 451.883 90.3874C452.677 91.369 453.484 92.5628 454.304 93.9688L463.394 109.25ZM439.856 78.4094V59.8654H447.794C451.023 59.8654 453.497 60.6348 455.217 62.1735C456.937 63.7122 457.797 65.8478 457.797 68.5803C457.797 70.0925 457.546 71.4587 457.043 72.6791C456.54 73.8994 455.839 74.9341 454.939 75.783C454.039 76.6319 452.968 77.2819 451.724 77.7329C450.507 78.1839 449.17 78.4094 447.715 78.4094H439.856Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;margin-left:.4em;cursor:default}.bimplus-logo.connexis-viewer{background:url('data:image/svg+xml,<svg width=\"466\" height=\"120\" viewBox=\"0 0 466 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23FE5000\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23FE5000\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M339 33.3906H333.68H330.969V67.6821C330.969 71.0469 331.093 73.4345 331.341 74.8447H331.192C330.895 74.2509 330.227 73.1623 329.188 71.5789L304.62 33.3906H303.128H294.63H294.34V53.4999H303.128V45.1829C303.487 45.9743 303.91 46.7444 304.397 47.4932L329.819 86.6092H333.68H339V33.3906ZM347 86.6092H363.555V79.1497H347V86.6092ZM347 63.4142H360.809V55.9547H347V63.4142ZM347 40.8873H362.368V33.3906H347V40.8873ZM303.128 64.4999H294.34V73.9315C293.982 73.3329 293.485 72.5487 292.848 71.5789L268.28 33.3906H258V53.4999H266.536V51.724C266.536 47.988 266.437 45.551 266.239 44.4129H266.462C266.882 45.4768 267.414 46.5035 268.057 47.4932L293.479 86.6092H294.34H302.876H303.128V64.4999ZM266.536 64.4999H258V86.6092H266.536V64.4999ZM200.489 84.3826C196.481 86.4609 191.496 87.5 185.533 87.5C177.814 87.5 171.628 85.063 166.977 80.1889C162.326 75.3149 160 68.9193 160 61.002C160 52.491 162.61 45.6129 167.831 40.3677C173.076 35.1226 179.694 32.5 187.686 32.5C192.832 32.5 197.1 33.2299 200.489 34.6896V43.448C196.902 41.3203 192.943 40.2564 188.613 40.2564C182.849 40.2564 178.173 42.0996 174.585 45.7861C171.022 49.4726 169.241 54.3961 169.241 60.5567C169.241 66.4204 170.911 71.0965 174.251 74.585C177.591 78.0488 181.983 79.7807 187.426 79.7807C192.448 79.7807 196.803 78.5931 200.489 76.2179V84.3826ZM209.903 80.0405C214.529 85.0135 220.678 87.5 228.348 87.5C236.166 87.5 242.413 84.9764 247.089 79.9291C251.765 74.8819 254.103 68.0162 254.103 59.332C254.103 51.3405 251.815 44.8707 247.238 39.9224C242.685 34.9741 236.673 32.5 229.201 32.5C221.135 32.5 214.752 35.0484 210.051 40.1451C205.35 45.2418 203 52.0704 203 60.6309C203 68.5976 205.301 75.0675 209.903 80.0405ZM216.843 45.7119C219.911 42.0749 223.882 40.2564 228.756 40.2564C233.778 40.2564 237.712 41.9883 240.557 45.4521C243.427 48.9159 244.862 53.827 244.862 60.1856C244.862 66.3709 243.39 71.1831 240.446 74.6221C237.502 78.0612 233.481 79.7807 228.385 79.7807C223.585 79.7807 219.7 77.9746 216.731 74.3623C213.762 70.7501 212.278 65.9874 212.278 60.0742C212.278 54.1363 213.8 49.3489 216.843 45.7119Z\" fill=\"%232F3133\"/>%0D%0A<path d=\"M413 86.5H402.359L391.381 67.0593C391.058 66.4679 390.697 65.6302 390.299 64.546H390.149C389.925 65.0881 389.552 65.9258 389.029 67.0593L377.716 86.5H367L384.549 59.8522L368.419 33.5H379.284L388.955 51.3884C389.577 52.5711 390.137 53.7538 390.635 54.9365H390.747C391.469 53.3842 392.091 52.1523 392.614 51.2406L402.657 33.5H412.664L396.161 59.7782L413 86.5Z\" fill=\"%232F3133\"/>%0D%0A<path d=\"M432.421 84.5486V75.6215C433.223 76.3502 434.17 77.0061 435.263 77.5891C436.381 78.1721 437.559 78.67 438.798 79.083C440.037 79.4717 441.275 79.7753 442.514 79.9939C443.753 80.2125 444.895 80.3219 445.939 80.3219C449.583 80.3219 452.292 79.7146 454.065 78.5C455.862 77.2854 456.761 75.5243 456.761 73.2166C456.761 71.9777 456.458 70.9089 455.85 70.0101C455.267 69.087 454.441 68.249 453.373 67.496C452.304 66.7429 451.041 66.0263 449.583 65.3462C448.15 64.6417 446.607 63.913 444.956 63.1599C443.182 62.2125 441.531 61.253 440 60.2814C438.47 59.3097 437.134 58.2409 435.992 57.0749C434.875 55.8846 433.988 54.5486 433.332 53.0668C432.701 51.585 432.385 49.8482 432.385 47.8563C432.385 45.4028 432.931 43.2773 434.024 41.4798C435.142 39.6579 436.599 38.164 438.397 36.998C440.219 35.8077 442.284 34.9332 444.591 34.3745C446.899 33.7915 449.255 33.5 451.66 33.5C457.126 33.5 461.109 34.1194 463.611 35.3583V43.9211C460.648 41.7834 456.834 40.7146 452.17 40.7146C450.883 40.7146 449.595 40.836 448.308 41.0789C447.045 41.3219 445.903 41.7227 444.883 42.2814C443.887 42.8401 443.073 43.5567 442.441 44.4312C441.81 45.3057 441.494 46.3623 441.494 47.6012C441.494 48.7672 441.737 49.7753 442.223 50.6255C442.709 51.4757 443.413 52.253 444.336 52.9575C445.284 53.6619 446.425 54.3543 447.761 55.0344C449.122 55.6903 450.688 56.4069 452.462 57.1842C454.284 58.1316 455.996 59.1275 457.599 60.1721C459.227 61.2166 460.648 62.3704 461.862 63.6336C463.101 64.8968 464.073 66.3057 464.777 67.8603C465.506 69.3907 465.871 71.1397 465.871 73.1073C465.871 75.7551 465.336 77.9899 464.267 79.8117C463.199 81.6336 461.753 83.1154 459.931 84.2571C458.134 85.3988 456.057 86.2247 453.701 86.7348C451.344 87.2449 448.854 87.5 446.231 87.5C445.356 87.5 444.275 87.4271 442.988 87.2814C441.725 87.1599 440.425 86.9656 439.089 86.6984C437.753 86.4555 436.49 86.1518 435.3 85.7874C434.109 85.4231 433.15 85.0101 432.421 84.5486Z\" fill=\"%232F3133\"/>%0D%0A<path d=\"M427 86.5H418V33.5H427V86.5Z\" fill=\"%232F3133\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;margin-left:.4em;cursor:default}.icon{width:1.125em;height:1.125em;background-size:1.125em 1.125em!important;background-position:center;background-repeat:no-repeat}.bimplus-navbar-menu{height:100%;width:3.125em;background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center;background-size:1.125em 1.125em!important;cursor:pointer;margin-right:.4em}.bimplus-navbar-menu.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bimplus-navbar-menu.hidden{visibility:hidden;width:1.2rem}.bimplus-navbar-menu.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A') no-repeat center;cursor:default}.bimplus-navbar-logo-container{height:100%;display:flex;justify-content:flex-start;align-items:center;flex-direction:row-reverse;position:relative}.bimplus-navbar-container{display:flex;justify-content:space-between;align-items:center;flex:1 1 auto;position:relative}.bimplus-navbar-container .bimplus-navbar-info{display:inline-flex;flex:1 1 auto;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:4em;min-width:0}.bimplus-navbar-container .bimplus-navbar-info .clickable{cursor:pointer}.bimplus-navbar-container .bimplus-navbar-info.hidden{visibility:hidden}.bimplus-navbar-container .bimplus-navbar-slot{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;white-space:nowrap;text-overflow:ellipsis}.is-touch .bimplus-navbar-info{display:flex;flex-direction:column;line-height:normal}.is-touch .bimplus-navbar-info .team{font-size:1em;font-weight:400}.is-touch .bimplus-navbar-info .project{font-size:1em;font-weight:700}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
1824
2144
|
}
|
|
1825
2145
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusNavbarComponent, decorators: [{
|
|
1826
2146
|
type: Component,
|
|
1827
|
-
args: [{ selector: 'lib-bimplus-navbar', standalone: true, imports: [CommonModule], encapsulation: ViewEncapsulation.ShadowDom, template: "<div\r\n class=\"bimplus-navbar\"\r\n [ngClass]=\"isTouch ? 'is-touch' : ''\"\r\n>\r\n <div class=\"bimplus-navbar-logo-container\">\r\n <div\r\n class=\"bimplus-logo\"\r\n [ngClass]=\"{\r\n 'model-viewer': logoState === LogoState.ModelViewer,\r\n 'connexis-viewer': logoState === LogoState.ConnexisViewer\r\n }\"\r\n (click)=\"_logoClicked()\"\r\n ></div>\r\n\r\n <div \r\n class=\"bimplus-navbar-menu icon\"\r\n [ngClass]=\"{'active':isNavbarMenuActive, 'hidden': !isNavbarMenuVisible, 'disabled': !isNavbarMenuEnabled}\"\r\n (click)=\"_menuClicked()\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"bimplus-navbar-container\">\r\n <div\r\n class=\"bimplus-navbar-info\"\r\n [ngClass]=\"{'hidden': !isNavbarInfoVisible}\"\r\n [style.margin-left]=\"teamInfoOffset\"\r\n >\r\n <span class=\"team\">{{teamInfo}}</span>\r\n <span *ngIf=\"projectInfo && !isTouch\"> - </span>\r\n <span\r\n class=\"project\"\r\n [ngClass]=\"isDev ? 'clickable' : ''\" \r\n (click)=\"_projectInfoClicked()\"\r\n >\r\n {{projectInfo}}\r\n </span>\r\n </div>\r\n\r\n <div class=\"bimplus-navbar-slot\">\r\n <slot></slot>\r\n </div>\r\n \r\n </div>\r\n</div>", styles: [".bimplus-navbar{height:5.2rem;padding-left:0;padding-right:1em;background-color:#f5f5f5;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;font-size:1.6rem;font-weight:600;color:#444}.bimplus-navbar .bimplus-navbar-preview-mode{display:flex;justify-content:center;align-items:center;color:#fff;font-size:.8125em;line-height:.8125em;height:2.308em;font-weight:700;text-transform:uppercase;padding-left:.99em;padding-right:.99em;background-color:#0047ab;letter-spacing:.383em;margin:auto}.bimplus-navbar .bimplus-navbar-preview-mode__container{position:absolute;left:0;right:0;display:inline-flex;cursor:default}.bimplus-logo{height:100%;min-width:9em;margin-left:2.8em;margin-right:1.53em;background:url('data:image/svg+xml,<svg width=\"135\" height=\"34\" viewBox=\"0 0 135 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M52.8564 17.8117C54.8488 18.2587 56 19.6889 56 21.7175C56 24.3527 54.3247 26 51.0794 26H44V10H50.5995C53.84 10 55.5201 11.6004 55.5201 14.0713C55.5201 15.8828 54.5365 17.2485 52.8564 17.7659V17.8117ZM50.3602 12.0004H46V17H50.3602C52.1552 17 53.1197 16.0705 53.1197 14.4233C53.1209 12.8945 52.16 12.0004 50.3602 12.0004ZM46 19.0004V24.0007H50.7192C52.5142 24.0007 53.5995 23.2475 53.5995 21.4125C53.5995 19.7183 52.5225 19.0004 50.4799 19.0004H46Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M59 26V10H61V26H59Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M72.0476 22.2833H72.0953L77.015 10.0012H80V26H78V14H77.9524L72.7632 26H71.0963L66.0441 14H66V26H64V10H66.985L72.0476 22.2833Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M85 19.9944V26H83V10H89.8571C93.1636 10 95 11.9944 95 14.8242C95 17.7654 93.1685 19.9944 89.8571 19.9944H85ZM85 18H89.6056C91.4371 18 92.5934 16.7822 92.5934 14.8289C92.5934 13.0175 91.442 12.005 89.6056 12.005H85V18Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M100 10V24.005H108V26H98V10H100Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M119 20.203V10H121V20.203C121 24.2611 118.812 26 115 26C111.165 26 109 24.2658 109 20.203V10H111V20.203C111 21.9373 111.587 24.1455 115.047 24.1455C118.341 24.1444 119 21.9419 119 20.203Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M124 25.202L124.359 23.378C126.695 23.948 128.266 24.062 129.501 24.062C131.747 24.062 132.757 22.873 132.757 21.6155C132.757 19.7174 130.578 19.2603 128.939 18.8031C126.447 18.1397 124.224 16.7454 124.224 14.1154C124.224 11.1662 126.582 10 129.5 10C131.179 10 132.755 10.228 134.664 10.798L134.17 12.622C131.858 12.052 130.735 11.938 129.5 11.938C127.254 11.938 126.468 12.964 126.468 14.1793C126.468 15.9394 128.692 16.5573 130.398 16.9689C132.867 17.5389 135 18.7518 135 21.4274C135 24.5146 132.642 26 129.499 26C127.638 25.9997 125.787 25.731 124 25.202Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M17.9746 8H15.0002L9 26H11.5301L16.2779 10.5827H16.3306L21.0268 26H24L17.9746 8Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2 13V2H13V0H0V13H2Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M21 2L32 2L32 13L34 13L34 0L21 -5.68248e-07L21 2Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M32 21L32 32L21 32L21 34L34 34L34 21L32 21Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 32L2 32L2 21L-5.68248e-07 21L0 34L13 34L13 32Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;cursor:pointer}.bimplus-logo.model-viewer{background:url('data:image/svg+xml,<svg width=\"475\" height=\"120\" viewBox=\"0 0 475 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 37.9652C0 37.9652 34.0214 -11.2924 91.4778 2.40641C101.92 4.8961 111.208 9.12334 119.415 14.3743C108.696 9.19068 96.0979 5.97262 82.5356 5.45618C41.9444 3.91053 8.08299 27.1504 6.90408 57.3639C6.77524 60.666 7.04212 63.9148 7.67275 67.0844C1.18359 51.2241 0 37.9652 0 37.9652ZM25.7389 95.8916C34.7922 105.537 46.974 113.675 63.3403 117.577C120.797 131.276 171.429 82.4083 171.429 82.4083C171.429 82.4083 164.866 63.0652 149.777 43.1159C152.696 49.3373 154.168 56.0318 153.898 62.9612C152.719 93.1747 118.858 116.415 78.2664 114.869C57.3434 114.072 38.7164 106.846 25.7389 95.8916Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M88.1346 24.0581H76.083L51.7712 96.9905H62.0228L81.2598 34.5228H81.4732L100.502 96.9905H112.548L88.1346 24.0581Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M218.59 35.7773H214.072L211.839 29.5745H202.076L199.929 35.7773H195.429L204.724 11.4079H209.364L218.59 35.7773ZM210.748 26.2777L207.304 16.5571C207.2 16.2398 207.09 15.73 206.975 15.0276H206.905C206.802 15.6734 206.686 16.1832 206.559 16.5571L203.149 26.2777H210.748Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M235.762 35.7773H222.018V11.4079H226.137V32.3615H235.762V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M253.107 35.7773H239.363V11.4079H243.483V32.3615H253.107V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M260.81 26.9404V35.7773H256.708V11.4079H264.238C267.088 11.4079 269.298 12.0593 270.868 13.3622C272.437 14.6651 273.222 16.5004 273.222 18.8682C273.222 21.2361 272.403 23.1734 270.764 24.6802C269.125 26.187 266.909 26.9404 264.117 26.9404H260.81ZM260.81 14.7387V23.6436H263.476C265.242 23.6436 266.586 23.2414 267.51 22.437C268.433 21.6326 268.894 20.4997 268.894 19.0382C268.894 16.1719 267.198 14.7387 263.805 14.7387H260.81Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M291.19 35.7773H277.446V11.4079H281.566V32.3615H291.19V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M316.117 35.7773H311.599L309.366 29.5745H299.603L297.457 35.7773H292.956L302.252 11.4079H306.891L316.117 35.7773ZM308.276 26.2777L304.831 16.5571C304.727 16.2398 304.617 15.73 304.502 15.0276H304.433C304.329 15.6734 304.214 16.1832 304.087 16.5571L300.676 26.2777H308.276Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M340.594 35.7773H336.094L324.236 17.8656C323.936 17.4124 323.688 16.9423 323.492 16.4551H323.388C323.48 16.9762 323.526 18.0922 323.526 19.8029V35.7773H319.545V11.4079H324.34L335.799 28.8947C336.284 29.6198 336.596 30.1183 336.734 30.3902H336.803C336.688 29.7444 336.63 28.6512 336.63 27.1104V11.4079H340.594V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M373.831 34.7577C371.961 35.7094 369.636 36.1852 366.855 36.1852C363.254 36.1852 360.369 35.0692 358.199 32.8374C356.03 30.6055 354.945 27.6768 354.945 24.0514C354.945 20.1541 356.162 17.0046 358.597 14.6027C361.044 12.2009 364.131 11 367.859 11C370.259 11 372.25 11.3342 373.831 12.0026V16.0132C372.157 15.0389 370.311 14.5518 368.291 14.5518C365.602 14.5518 363.421 15.3958 361.748 17.0839C360.086 18.7719 359.255 21.0265 359.255 23.8475C359.255 26.5326 360.034 28.6738 361.592 30.2713C363.15 31.8574 365.199 32.6504 367.737 32.6504C370.08 32.6504 372.111 32.1066 373.831 31.019V34.7577Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M392.284 35.7773H378.539V11.4079H382.659V32.3615H392.284V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M405.042 36.1852C401.464 36.1852 398.596 35.0466 396.438 32.7694C394.292 30.4922 393.218 27.5295 393.218 23.8815C393.218 19.9615 394.315 16.8346 396.507 14.5008C398.7 12.1669 401.678 11 405.44 11C408.925 11 411.729 12.1329 413.853 14.3988C415.988 16.6647 417.055 19.6273 417.055 23.2867C417.055 27.2633 415.964 30.4072 413.783 32.7184C411.602 35.0296 408.688 36.1852 405.042 36.1852ZM405.232 14.5518C402.958 14.5518 401.106 15.3845 399.675 17.0499C398.256 18.7153 397.546 20.9075 397.546 23.6266C397.546 26.3343 398.238 28.5152 399.623 30.1693C401.008 31.8234 402.82 32.6504 405.059 32.6504C407.436 32.6504 409.311 31.863 410.685 30.2882C412.058 28.7135 412.745 26.5099 412.745 23.6776C412.745 20.7659 412.075 18.517 410.737 16.9309C409.41 15.3448 407.575 14.5518 405.232 14.5518Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M440.701 25.9208C440.701 32.7637 437.401 36.1852 430.8 36.1852C424.475 36.1852 421.313 32.894 421.313 26.3116V11.4079H425.433V25.4789C425.433 30.2599 427.326 32.6504 431.111 32.6504C434.758 32.6504 436.581 30.3449 436.581 25.7338V11.4079H440.701V25.9208Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M446.535 35.7773V11.4079H453.701C462.853 11.4079 467.429 15.3675 467.429 23.2867C467.429 27.048 466.159 30.073 463.62 32.3615C461.081 34.6387 457.677 35.7773 453.407 35.7773H446.535ZM450.637 14.8407V32.3615H453.926C456.823 32.3615 459.073 31.5798 460.677 30.0163C462.293 28.4529 463.101 26.2437 463.101 23.3887C463.101 17.69 460.095 14.8407 454.082 14.8407H450.637Z\" fill=\"%23FE5000\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M269.477 52.1852H260.001V109.25H269.477V52.1852ZM278.428 109.25H300.066V101.251H278.428V109.25ZM278.428 84.3785H297.129V76.3799H278.428V84.3785ZM278.428 60.2236H298.796V52.1852H278.428V60.2236ZM232.057 109.25L252.499 52.1852H242.497L228.128 95.4014C227.545 97.1524 227.162 98.7839 226.976 100.296H226.818C226.579 98.4656 226.235 96.8605 225.786 95.481L211.734 52.1852H201.414L221.499 109.25H232.057ZM366.553 109.25L382.152 52.1852H372.388L362.266 94.128C361.737 96.3034 361.432 98.0544 361.353 99.3808H361.194C361.009 97.4177 360.731 95.7198 360.361 94.2872L349.564 52.1852H339.839L328.169 93.9688C327.534 96.2769 327.164 98.1074 327.058 99.4604H326.859C326.754 97.5503 326.489 95.7198 326.066 93.9688L315.745 52.1852H305.385L321.302 109.25H332.218L343.094 69.2568C343.597 67.4793 343.914 65.6488 344.047 63.7652H344.205C344.311 65.7815 344.589 67.6385 345.039 69.3364L355.875 109.25H366.553ZM422.005 109.25H390.051V52.1852H420.735V60.2236H399.498V76.3799H419.067V84.3785H399.498V101.251H422.005V109.25ZM463.394 109.25H474.429L464.307 93.2128C463.486 91.9659 462.732 90.8782 462.044 89.9497C461.383 88.9946 460.708 88.1457 460.02 87.4028C459.332 86.66 458.604 85.9437 457.837 85.254C457.069 84.5377 456.17 83.8877 455.138 83.3041V83.1449C457.069 82.6408 458.803 81.9245 460.337 80.996C461.899 80.0675 463.222 78.9533 464.307 77.6533C465.418 76.3269 466.265 74.8279 466.847 73.1566C467.456 71.4587 467.76 69.6017 467.76 67.5854C467.76 65.0121 467.284 62.7704 466.331 60.8603C465.405 58.9236 464.108 57.3186 462.441 56.0452C460.774 54.7453 458.816 53.7769 456.566 53.1402C454.317 52.5035 451.856 52.1852 449.184 52.1852H430.448V109.25H439.856V86.0896H443.666C444.857 86.0896 445.929 86.2356 446.881 86.5274C447.834 86.8192 448.707 87.2835 449.501 87.9202C450.321 88.5569 451.115 89.3793 451.883 90.3874C452.677 91.369 453.484 92.5628 454.304 93.9688L463.394 109.25ZM439.856 78.4094V59.8654H447.794C451.023 59.8654 453.497 60.6348 455.217 62.1735C456.937 63.7122 457.797 65.8478 457.797 68.5803C457.797 70.0925 457.546 71.4587 457.043 72.6791C456.54 73.8994 455.839 74.9341 454.939 75.783C454.039 76.6319 452.968 77.2819 451.724 77.7329C450.507 78.1839 449.17 78.4094 447.715 78.4094H439.856Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;margin-left:.4em;cursor:default}.bimplus-logo.connexis-viewer{background:url('data:image/svg+xml,<svg width=\"466\" height=\"120\" viewBox=\"0 0 466 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23FE5000\"/>%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23FE5000\"/>%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M339 33.3906H333.68H330.969V67.6821C330.969 71.0469 331.093 73.4345 331.341 74.8447H331.192C330.895 74.2509 330.227 73.1623 329.188 71.5789L304.62 33.3906H303.128H294.63H294.34V53.4999H303.128V45.1829C303.487 45.9743 303.91 46.7444 304.397 47.4932L329.819 86.6092H333.68H339V33.3906ZM347 86.6092H363.555V79.1497H347V86.6092ZM347 63.4142H360.809V55.9547H347V63.4142ZM347 40.8873H362.368V33.3906H347V40.8873ZM303.128 64.4999H294.34V73.9315C293.982 73.3329 293.485 72.5487 292.848 71.5789L268.28 33.3906H258V53.4999H266.536V51.724C266.536 47.988 266.437 45.551 266.239 44.4129H266.462C266.882 45.4768 267.414 46.5035 268.057 47.4932L293.479 86.6092H294.34H302.876H303.128V64.4999ZM266.536 64.4999H258V86.6092H266.536V64.4999ZM200.489 84.3826C196.481 86.4609 191.496 87.5 185.533 87.5C177.814 87.5 171.628 85.063 166.977 80.1889C162.326 75.3149 160 68.9193 160 61.002C160 52.491 162.61 45.6129 167.831 40.3677C173.076 35.1226 179.694 32.5 187.686 32.5C192.832 32.5 197.1 33.2299 200.489 34.6896V43.448C196.902 41.3203 192.943 40.2564 188.613 40.2564C182.849 40.2564 178.173 42.0996 174.585 45.7861C171.022 49.4726 169.241 54.3961 169.241 60.5567C169.241 66.4204 170.911 71.0965 174.251 74.585C177.591 78.0488 181.983 79.7807 187.426 79.7807C192.448 79.7807 196.803 78.5931 200.489 76.2179V84.3826ZM209.903 80.0405C214.529 85.0135 220.678 87.5 228.348 87.5C236.166 87.5 242.413 84.9764 247.089 79.9291C251.765 74.8819 254.103 68.0162 254.103 59.332C254.103 51.3405 251.815 44.8707 247.238 39.9224C242.685 34.9741 236.673 32.5 229.201 32.5C221.135 32.5 214.752 35.0484 210.051 40.1451C205.35 45.2418 203 52.0704 203 60.6309C203 68.5976 205.301 75.0675 209.903 80.0405ZM216.843 45.7119C219.911 42.0749 223.882 40.2564 228.756 40.2564C233.778 40.2564 237.712 41.9883 240.557 45.4521C243.427 48.9159 244.862 53.827 244.862 60.1856C244.862 66.3709 243.39 71.1831 240.446 74.6221C237.502 78.0612 233.481 79.7807 228.385 79.7807C223.585 79.7807 219.7 77.9746 216.731 74.3623C213.762 70.7501 212.278 65.9874 212.278 60.0742C212.278 54.1363 213.8 49.3489 216.843 45.7119Z\" fill=\"%232F3133\"/>%0A<path d=\"M413 86.5H402.359L391.381 67.0593C391.058 66.4679 390.697 65.6302 390.299 64.546H390.149C389.925 65.0881 389.552 65.9258 389.029 67.0593L377.716 86.5H367L384.549 59.8522L368.419 33.5H379.284L388.955 51.3884C389.577 52.5711 390.137 53.7538 390.635 54.9365H390.747C391.469 53.3842 392.091 52.1523 392.614 51.2406L402.657 33.5H412.664L396.161 59.7782L413 86.5Z\" fill=\"%232F3133\"/>%0A<path d=\"M432.421 84.5486V75.6215C433.223 76.3502 434.17 77.0061 435.263 77.5891C436.381 78.1721 437.559 78.67 438.798 79.083C440.037 79.4717 441.275 79.7753 442.514 79.9939C443.753 80.2125 444.895 80.3219 445.939 80.3219C449.583 80.3219 452.292 79.7146 454.065 78.5C455.862 77.2854 456.761 75.5243 456.761 73.2166C456.761 71.9777 456.458 70.9089 455.85 70.0101C455.267 69.087 454.441 68.249 453.373 67.496C452.304 66.7429 451.041 66.0263 449.583 65.3462C448.15 64.6417 446.607 63.913 444.956 63.1599C443.182 62.2125 441.531 61.253 440 60.2814C438.47 59.3097 437.134 58.2409 435.992 57.0749C434.875 55.8846 433.988 54.5486 433.332 53.0668C432.701 51.585 432.385 49.8482 432.385 47.8563C432.385 45.4028 432.931 43.2773 434.024 41.4798C435.142 39.6579 436.599 38.164 438.397 36.998C440.219 35.8077 442.284 34.9332 444.591 34.3745C446.899 33.7915 449.255 33.5 451.66 33.5C457.126 33.5 461.109 34.1194 463.611 35.3583V43.9211C460.648 41.7834 456.834 40.7146 452.17 40.7146C450.883 40.7146 449.595 40.836 448.308 41.0789C447.045 41.3219 445.903 41.7227 444.883 42.2814C443.887 42.8401 443.073 43.5567 442.441 44.4312C441.81 45.3057 441.494 46.3623 441.494 47.6012C441.494 48.7672 441.737 49.7753 442.223 50.6255C442.709 51.4757 443.413 52.253 444.336 52.9575C445.284 53.6619 446.425 54.3543 447.761 55.0344C449.122 55.6903 450.688 56.4069 452.462 57.1842C454.284 58.1316 455.996 59.1275 457.599 60.1721C459.227 61.2166 460.648 62.3704 461.862 63.6336C463.101 64.8968 464.073 66.3057 464.777 67.8603C465.506 69.3907 465.871 71.1397 465.871 73.1073C465.871 75.7551 465.336 77.9899 464.267 79.8117C463.199 81.6336 461.753 83.1154 459.931 84.2571C458.134 85.3988 456.057 86.2247 453.701 86.7348C451.344 87.2449 448.854 87.5 446.231 87.5C445.356 87.5 444.275 87.4271 442.988 87.2814C441.725 87.1599 440.425 86.9656 439.089 86.6984C437.753 86.4555 436.49 86.1518 435.3 85.7874C434.109 85.4231 433.15 85.0101 432.421 84.5486Z\" fill=\"%232F3133\"/>%0A<path d=\"M427 86.5H418V33.5H427V86.5Z\" fill=\"%232F3133\"/>%0A</svg>%0A') no-repeat;background-position:center;background-size:9em 2.3em;margin-left:.4em;cursor:default}.icon{width:1.125em;height:1.125em;background-size:1.125em 1.125em!important;background-position:center;background-repeat:no-repeat}.bimplus-navbar-menu{height:100%;width:3.125em;background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center;background-size:1.125em 1.125em!important;cursor:pointer;margin-right:.4em}.bimplus-navbar-menu.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bimplus-navbar-menu.hidden{visibility:hidden;width:1.2rem}.bimplus-navbar-menu.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A') no-repeat center;cursor:default}.bimplus-navbar-logo-container{height:100%;display:flex;justify-content:flex-start;align-items:center;flex-direction:row-reverse;position:relative}.bimplus-navbar-container{display:flex;justify-content:space-between;align-items:center;flex:1 1 auto;position:relative}.bimplus-navbar-container .bimplus-navbar-info{display:inline-flex;flex:1 1 auto;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:4em;min-width:0}.bimplus-navbar-container .bimplus-navbar-info .clickable{cursor:pointer}.bimplus-navbar-container .bimplus-navbar-info.hidden{visibility:hidden}.bimplus-navbar-container .bimplus-navbar-slot{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;white-space:nowrap;text-overflow:ellipsis}.is-touch .bimplus-navbar-info{display:flex;flex-direction:column;line-height:normal}.is-touch .bimplus-navbar-info .team{font-size:1em;font-weight:400}.is-touch .bimplus-navbar-info .project{font-size:1em;font-weight:700}\n"] }]
|
|
2147
|
+
args: [{ selector: 'lib-bimplus-navbar', standalone: true, imports: [CommonModule], encapsulation: ViewEncapsulation.ShadowDom, template: "<div\r\n class=\"bimplus-navbar\"\r\n [ngClass]=\"isTouch ? 'is-touch' : ''\"\r\n>\r\n <div class=\"bimplus-navbar-logo-container\">\r\n <div\r\n class=\"bimplus-logo\"\r\n [ngClass]=\"{\r\n 'model-viewer': logoState === LogoState.ModelViewer,\r\n 'connexis-viewer': logoState === LogoState.ConnexisViewer\r\n }\"\r\n (click)=\"_logoClicked()\"\r\n ></div>\r\n\r\n <div \r\n class=\"bimplus-navbar-menu icon\"\r\n [ngClass]=\"{'active':isNavbarMenuActive, 'hidden': !isNavbarMenuVisible, 'disabled': !isNavbarMenuEnabled}\"\r\n (click)=\"_menuClicked()\"\r\n ></div>\r\n </div>\r\n\r\n <div class=\"bimplus-navbar-container\">\r\n <div\r\n class=\"bimplus-navbar-info\"\r\n [ngClass]=\"{'hidden': !isNavbarInfoVisible}\"\r\n [style.margin-left]=\"teamInfoOffset\"\r\n >\r\n <span class=\"team\">{{teamInfo}}</span>\r\n <span *ngIf=\"projectInfo && !isTouch\"> - </span>\r\n <span\r\n class=\"project\"\r\n [ngClass]=\"isDev ? 'clickable' : ''\" \r\n (click)=\"_projectInfoClicked()\"\r\n >\r\n {{projectInfo}}\r\n </span>\r\n </div>\r\n\r\n <div class=\"bimplus-navbar-slot\">\r\n <slot></slot>\r\n </div>\r\n \r\n </div>\r\n</div>", styles: [".bimplus-navbar{height:5.2rem;padding-left:0;padding-right:1em;background-color:#f5f5f5;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;font-family:Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;font-size:1.6rem;font-weight:600;color:#444}.bimplus-navbar .bimplus-navbar-preview-mode{display:flex;justify-content:center;align-items:center;color:#fff;font-size:.8125em;line-height:.8125em;height:2.308em;font-weight:700;text-transform:uppercase;padding-left:.99em;padding-right:.99em;background-color:#0047ab;letter-spacing:.383em;margin:auto}.bimplus-navbar .bimplus-navbar-preview-mode__container{position:absolute;left:0;right:0;display:inline-flex;cursor:default}.bimplus-logo{height:100%;min-width:9em;margin-left:2.8em;margin-right:1.53em;background:url('data:image/svg+xml,<svg width=\"135\" height=\"34\" viewBox=\"0 0 135 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M52.8564 17.8117C54.8488 18.2587 56 19.6889 56 21.7175C56 24.3527 54.3247 26 51.0794 26H44V10H50.5995C53.84 10 55.5201 11.6004 55.5201 14.0713C55.5201 15.8828 54.5365 17.2485 52.8564 17.7659V17.8117ZM50.3602 12.0004H46V17H50.3602C52.1552 17 53.1197 16.0705 53.1197 14.4233C53.1209 12.8945 52.16 12.0004 50.3602 12.0004ZM46 19.0004V24.0007H50.7192C52.5142 24.0007 53.5995 23.2475 53.5995 21.4125C53.5995 19.7183 52.5225 19.0004 50.4799 19.0004H46Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M59 26V10H61V26H59Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M72.0476 22.2833H72.0953L77.015 10.0012H80V26H78V14H77.9524L72.7632 26H71.0963L66.0441 14H66V26H64V10H66.985L72.0476 22.2833Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M85 19.9944V26H83V10H89.8571C93.1636 10 95 11.9944 95 14.8242C95 17.7654 93.1685 19.9944 89.8571 19.9944H85ZM85 18H89.6056C91.4371 18 92.5934 16.7822 92.5934 14.8289C92.5934 13.0175 91.442 12.005 89.6056 12.005H85V18Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M100 10V24.005H108V26H98V10H100Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M119 20.203V10H121V20.203C121 24.2611 118.812 26 115 26C111.165 26 109 24.2658 109 20.203V10H111V20.203C111 21.9373 111.587 24.1455 115.047 24.1455C118.341 24.1444 119 21.9419 119 20.203Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M124 25.202L124.359 23.378C126.695 23.948 128.266 24.062 129.501 24.062C131.747 24.062 132.757 22.873 132.757 21.6155C132.757 19.7174 130.578 19.2603 128.939 18.8031C126.447 18.1397 124.224 16.7454 124.224 14.1154C124.224 11.1662 126.582 10 129.5 10C131.179 10 132.755 10.228 134.664 10.798L134.17 12.622C131.858 12.052 130.735 11.938 129.5 11.938C127.254 11.938 126.468 12.964 126.468 14.1793C126.468 15.9394 128.692 16.5573 130.398 16.9689C132.867 17.5389 135 18.7518 135 21.4274C135 24.5146 132.642 26 129.499 26C127.638 25.9997 125.787 25.731 124 25.202Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M17.9746 8H15.0002L9 26H11.5301L16.2779 10.5827H16.3306L21.0268 26H24L17.9746 8Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M2 13V2H13V0H0V13H2Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M21 2L32 2L32 13L34 13L34 0L21 -5.68248e-07L21 2Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M32 21L32 32L21 32L21 34L34 34L34 21L32 21Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M13 32L2 32L2 21L-5.68248e-07 21L0 34L13 34L13 32Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;cursor:pointer}.bimplus-logo.model-viewer{background:url('data:image/svg+xml,<svg width=\"475\" height=\"120\" viewBox=\"0 0 475 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 37.9652C0 37.9652 34.0214 -11.2924 91.4778 2.40641C101.92 4.8961 111.208 9.12334 119.415 14.3743C108.696 9.19068 96.0979 5.97262 82.5356 5.45618C41.9444 3.91053 8.08299 27.1504 6.90408 57.3639C6.77524 60.666 7.04212 63.9148 7.67275 67.0844C1.18359 51.2241 0 37.9652 0 37.9652ZM25.7389 95.8916C34.7922 105.537 46.974 113.675 63.3403 117.577C120.797 131.276 171.429 82.4083 171.429 82.4083C171.429 82.4083 164.866 63.0652 149.777 43.1159C152.696 49.3373 154.168 56.0318 153.898 62.9612C152.719 93.1747 118.858 116.415 78.2664 114.869C57.3434 114.072 38.7164 106.846 25.7389 95.8916Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M88.1346 24.0581H76.083L51.7712 96.9905H62.0228L81.2598 34.5228H81.4732L100.502 96.9905H112.548L88.1346 24.0581Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M218.59 35.7773H214.072L211.839 29.5745H202.076L199.929 35.7773H195.429L204.724 11.4079H209.364L218.59 35.7773ZM210.748 26.2777L207.304 16.5571C207.2 16.2398 207.09 15.73 206.975 15.0276H206.905C206.802 15.6734 206.686 16.1832 206.559 16.5571L203.149 26.2777H210.748Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M235.762 35.7773H222.018V11.4079H226.137V32.3615H235.762V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M253.107 35.7773H239.363V11.4079H243.483V32.3615H253.107V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M260.81 26.9404V35.7773H256.708V11.4079H264.238C267.088 11.4079 269.298 12.0593 270.868 13.3622C272.437 14.6651 273.222 16.5004 273.222 18.8682C273.222 21.2361 272.403 23.1734 270.764 24.6802C269.125 26.187 266.909 26.9404 264.117 26.9404H260.81ZM260.81 14.7387V23.6436H263.476C265.242 23.6436 266.586 23.2414 267.51 22.437C268.433 21.6326 268.894 20.4997 268.894 19.0382C268.894 16.1719 267.198 14.7387 263.805 14.7387H260.81Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M291.19 35.7773H277.446V11.4079H281.566V32.3615H291.19V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M316.117 35.7773H311.599L309.366 29.5745H299.603L297.457 35.7773H292.956L302.252 11.4079H306.891L316.117 35.7773ZM308.276 26.2777L304.831 16.5571C304.727 16.2398 304.617 15.73 304.502 15.0276H304.433C304.329 15.6734 304.214 16.1832 304.087 16.5571L300.676 26.2777H308.276Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M340.594 35.7773H336.094L324.236 17.8656C323.936 17.4124 323.688 16.9423 323.492 16.4551H323.388C323.48 16.9762 323.526 18.0922 323.526 19.8029V35.7773H319.545V11.4079H324.34L335.799 28.8947C336.284 29.6198 336.596 30.1183 336.734 30.3902H336.803C336.688 29.7444 336.63 28.6512 336.63 27.1104V11.4079H340.594V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M373.831 34.7577C371.961 35.7094 369.636 36.1852 366.855 36.1852C363.254 36.1852 360.369 35.0692 358.199 32.8374C356.03 30.6055 354.945 27.6768 354.945 24.0514C354.945 20.1541 356.162 17.0046 358.597 14.6027C361.044 12.2009 364.131 11 367.859 11C370.259 11 372.25 11.3342 373.831 12.0026V16.0132C372.157 15.0389 370.311 14.5518 368.291 14.5518C365.602 14.5518 363.421 15.3958 361.748 17.0839C360.086 18.7719 359.255 21.0265 359.255 23.8475C359.255 26.5326 360.034 28.6738 361.592 30.2713C363.15 31.8574 365.199 32.6504 367.737 32.6504C370.08 32.6504 372.111 32.1066 373.831 31.019V34.7577Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M392.284 35.7773H378.539V11.4079H382.659V32.3615H392.284V35.7773Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M405.042 36.1852C401.464 36.1852 398.596 35.0466 396.438 32.7694C394.292 30.4922 393.218 27.5295 393.218 23.8815C393.218 19.9615 394.315 16.8346 396.507 14.5008C398.7 12.1669 401.678 11 405.44 11C408.925 11 411.729 12.1329 413.853 14.3988C415.988 16.6647 417.055 19.6273 417.055 23.2867C417.055 27.2633 415.964 30.4072 413.783 32.7184C411.602 35.0296 408.688 36.1852 405.042 36.1852ZM405.232 14.5518C402.958 14.5518 401.106 15.3845 399.675 17.0499C398.256 18.7153 397.546 20.9075 397.546 23.6266C397.546 26.3343 398.238 28.5152 399.623 30.1693C401.008 31.8234 402.82 32.6504 405.059 32.6504C407.436 32.6504 409.311 31.863 410.685 30.2882C412.058 28.7135 412.745 26.5099 412.745 23.6776C412.745 20.7659 412.075 18.517 410.737 16.9309C409.41 15.3448 407.575 14.5518 405.232 14.5518Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M440.701 25.9208C440.701 32.7637 437.401 36.1852 430.8 36.1852C424.475 36.1852 421.313 32.894 421.313 26.3116V11.4079H425.433V25.4789C425.433 30.2599 427.326 32.6504 431.111 32.6504C434.758 32.6504 436.581 30.3449 436.581 25.7338V11.4079H440.701V25.9208Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M446.535 35.7773V11.4079H453.701C462.853 11.4079 467.429 15.3675 467.429 23.2867C467.429 27.048 466.159 30.073 463.62 32.3615C461.081 34.6387 457.677 35.7773 453.407 35.7773H446.535ZM450.637 14.8407V32.3615H453.926C456.823 32.3615 459.073 31.5798 460.677 30.0163C462.293 28.4529 463.101 26.2437 463.101 23.3887C463.101 17.69 460.095 14.8407 454.082 14.8407H450.637Z\" fill=\"%23FE5000\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M269.477 52.1852H260.001V109.25H269.477V52.1852ZM278.428 109.25H300.066V101.251H278.428V109.25ZM278.428 84.3785H297.129V76.3799H278.428V84.3785ZM278.428 60.2236H298.796V52.1852H278.428V60.2236ZM232.057 109.25L252.499 52.1852H242.497L228.128 95.4014C227.545 97.1524 227.162 98.7839 226.976 100.296H226.818C226.579 98.4656 226.235 96.8605 225.786 95.481L211.734 52.1852H201.414L221.499 109.25H232.057ZM366.553 109.25L382.152 52.1852H372.388L362.266 94.128C361.737 96.3034 361.432 98.0544 361.353 99.3808H361.194C361.009 97.4177 360.731 95.7198 360.361 94.2872L349.564 52.1852H339.839L328.169 93.9688C327.534 96.2769 327.164 98.1074 327.058 99.4604H326.859C326.754 97.5503 326.489 95.7198 326.066 93.9688L315.745 52.1852H305.385L321.302 109.25H332.218L343.094 69.2568C343.597 67.4793 343.914 65.6488 344.047 63.7652H344.205C344.311 65.7815 344.589 67.6385 345.039 69.3364L355.875 109.25H366.553ZM422.005 109.25H390.051V52.1852H420.735V60.2236H399.498V76.3799H419.067V84.3785H399.498V101.251H422.005V109.25ZM463.394 109.25H474.429L464.307 93.2128C463.486 91.9659 462.732 90.8782 462.044 89.9497C461.383 88.9946 460.708 88.1457 460.02 87.4028C459.332 86.66 458.604 85.9437 457.837 85.254C457.069 84.5377 456.17 83.8877 455.138 83.3041V83.1449C457.069 82.6408 458.803 81.9245 460.337 80.996C461.899 80.0675 463.222 78.9533 464.307 77.6533C465.418 76.3269 466.265 74.8279 466.847 73.1566C467.456 71.4587 467.76 69.6017 467.76 67.5854C467.76 65.0121 467.284 62.7704 466.331 60.8603C465.405 58.9236 464.108 57.3186 462.441 56.0452C460.774 54.7453 458.816 53.7769 456.566 53.1402C454.317 52.5035 451.856 52.1852 449.184 52.1852H430.448V109.25H439.856V86.0896H443.666C444.857 86.0896 445.929 86.2356 446.881 86.5274C447.834 86.8192 448.707 87.2835 449.501 87.9202C450.321 88.5569 451.115 89.3793 451.883 90.3874C452.677 91.369 453.484 92.5628 454.304 93.9688L463.394 109.25ZM439.856 78.4094V59.8654H447.794C451.023 59.8654 453.497 60.6348 455.217 62.1735C456.937 63.7122 457.797 65.8478 457.797 68.5803C457.797 70.0925 457.546 71.4587 457.043 72.6791C456.54 73.8994 455.839 74.9341 454.939 75.783C454.039 76.6319 452.968 77.2819 451.724 77.7329C450.507 78.1839 449.17 78.4094 447.715 78.4094H439.856Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;margin-left:.4em;cursor:default}.bimplus-logo.connexis-viewer{background:url('data:image/svg+xml,<svg width=\"466\" height=\"120\" viewBox=\"0 0 466 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M64.9154 30H55.0008L35 90H43.4338L59.2596 38.6091H59.4352L75.0894 90H85L64.9154 30Z\" fill=\"%23FE5000\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 80L10 110H35V120H10H0L1.52588e-05 10L1.75283e-05 0H10H35V10L10 10L10 40H1.71661e-05V50H10L10 70H1.71661e-05V80H10ZM14 80L14 90H24L24 80H14ZM24 70L24 50H14L14 70H24ZM14 40H24V30H14L14 40ZM120 120L120 110V80H110L110 110H85V120H110H120ZM110 70H120V50H110V70ZM106 50L106 70H96L96 50H106ZM110 40H120V10V0H110H85V10L110 10L110 40ZM106 40H96V30H106V40ZM96 80H106V90H96V80Z\" fill=\"%23FE5000\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M339 33.3906H333.68H330.969V67.6821C330.969 71.0469 331.093 73.4345 331.341 74.8447H331.192C330.895 74.2509 330.227 73.1623 329.188 71.5789L304.62 33.3906H303.128H294.63H294.34V53.4999H303.128V45.1829C303.487 45.9743 303.91 46.7444 304.397 47.4932L329.819 86.6092H333.68H339V33.3906ZM347 86.6092H363.555V79.1497H347V86.6092ZM347 63.4142H360.809V55.9547H347V63.4142ZM347 40.8873H362.368V33.3906H347V40.8873ZM303.128 64.4999H294.34V73.9315C293.982 73.3329 293.485 72.5487 292.848 71.5789L268.28 33.3906H258V53.4999H266.536V51.724C266.536 47.988 266.437 45.551 266.239 44.4129H266.462C266.882 45.4768 267.414 46.5035 268.057 47.4932L293.479 86.6092H294.34H302.876H303.128V64.4999ZM266.536 64.4999H258V86.6092H266.536V64.4999ZM200.489 84.3826C196.481 86.4609 191.496 87.5 185.533 87.5C177.814 87.5 171.628 85.063 166.977 80.1889C162.326 75.3149 160 68.9193 160 61.002C160 52.491 162.61 45.6129 167.831 40.3677C173.076 35.1226 179.694 32.5 187.686 32.5C192.832 32.5 197.1 33.2299 200.489 34.6896V43.448C196.902 41.3203 192.943 40.2564 188.613 40.2564C182.849 40.2564 178.173 42.0996 174.585 45.7861C171.022 49.4726 169.241 54.3961 169.241 60.5567C169.241 66.4204 170.911 71.0965 174.251 74.585C177.591 78.0488 181.983 79.7807 187.426 79.7807C192.448 79.7807 196.803 78.5931 200.489 76.2179V84.3826ZM209.903 80.0405C214.529 85.0135 220.678 87.5 228.348 87.5C236.166 87.5 242.413 84.9764 247.089 79.9291C251.765 74.8819 254.103 68.0162 254.103 59.332C254.103 51.3405 251.815 44.8707 247.238 39.9224C242.685 34.9741 236.673 32.5 229.201 32.5C221.135 32.5 214.752 35.0484 210.051 40.1451C205.35 45.2418 203 52.0704 203 60.6309C203 68.5976 205.301 75.0675 209.903 80.0405ZM216.843 45.7119C219.911 42.0749 223.882 40.2564 228.756 40.2564C233.778 40.2564 237.712 41.9883 240.557 45.4521C243.427 48.9159 244.862 53.827 244.862 60.1856C244.862 66.3709 243.39 71.1831 240.446 74.6221C237.502 78.0612 233.481 79.7807 228.385 79.7807C223.585 79.7807 219.7 77.9746 216.731 74.3623C213.762 70.7501 212.278 65.9874 212.278 60.0742C212.278 54.1363 213.8 49.3489 216.843 45.7119Z\" fill=\"%232F3133\"/>%0D%0A<path d=\"M413 86.5H402.359L391.381 67.0593C391.058 66.4679 390.697 65.6302 390.299 64.546H390.149C389.925 65.0881 389.552 65.9258 389.029 67.0593L377.716 86.5H367L384.549 59.8522L368.419 33.5H379.284L388.955 51.3884C389.577 52.5711 390.137 53.7538 390.635 54.9365H390.747C391.469 53.3842 392.091 52.1523 392.614 51.2406L402.657 33.5H412.664L396.161 59.7782L413 86.5Z\" fill=\"%232F3133\"/>%0D%0A<path d=\"M432.421 84.5486V75.6215C433.223 76.3502 434.17 77.0061 435.263 77.5891C436.381 78.1721 437.559 78.67 438.798 79.083C440.037 79.4717 441.275 79.7753 442.514 79.9939C443.753 80.2125 444.895 80.3219 445.939 80.3219C449.583 80.3219 452.292 79.7146 454.065 78.5C455.862 77.2854 456.761 75.5243 456.761 73.2166C456.761 71.9777 456.458 70.9089 455.85 70.0101C455.267 69.087 454.441 68.249 453.373 67.496C452.304 66.7429 451.041 66.0263 449.583 65.3462C448.15 64.6417 446.607 63.913 444.956 63.1599C443.182 62.2125 441.531 61.253 440 60.2814C438.47 59.3097 437.134 58.2409 435.992 57.0749C434.875 55.8846 433.988 54.5486 433.332 53.0668C432.701 51.585 432.385 49.8482 432.385 47.8563C432.385 45.4028 432.931 43.2773 434.024 41.4798C435.142 39.6579 436.599 38.164 438.397 36.998C440.219 35.8077 442.284 34.9332 444.591 34.3745C446.899 33.7915 449.255 33.5 451.66 33.5C457.126 33.5 461.109 34.1194 463.611 35.3583V43.9211C460.648 41.7834 456.834 40.7146 452.17 40.7146C450.883 40.7146 449.595 40.836 448.308 41.0789C447.045 41.3219 445.903 41.7227 444.883 42.2814C443.887 42.8401 443.073 43.5567 442.441 44.4312C441.81 45.3057 441.494 46.3623 441.494 47.6012C441.494 48.7672 441.737 49.7753 442.223 50.6255C442.709 51.4757 443.413 52.253 444.336 52.9575C445.284 53.6619 446.425 54.3543 447.761 55.0344C449.122 55.6903 450.688 56.4069 452.462 57.1842C454.284 58.1316 455.996 59.1275 457.599 60.1721C459.227 61.2166 460.648 62.3704 461.862 63.6336C463.101 64.8968 464.073 66.3057 464.777 67.8603C465.506 69.3907 465.871 71.1397 465.871 73.1073C465.871 75.7551 465.336 77.9899 464.267 79.8117C463.199 81.6336 461.753 83.1154 459.931 84.2571C458.134 85.3988 456.057 86.2247 453.701 86.7348C451.344 87.2449 448.854 87.5 446.231 87.5C445.356 87.5 444.275 87.4271 442.988 87.2814C441.725 87.1599 440.425 86.9656 439.089 86.6984C437.753 86.4555 436.49 86.1518 435.3 85.7874C434.109 85.4231 433.15 85.0101 432.421 84.5486Z\" fill=\"%232F3133\"/>%0D%0A<path d=\"M427 86.5H418V33.5H427V86.5Z\" fill=\"%232F3133\"/>%0D%0A</svg>%0D%0A') no-repeat;background-position:center;background-size:9em 2.3em;margin-left:.4em;cursor:default}.icon{width:1.125em;height:1.125em;background-size:1.125em 1.125em!important;background-position:center;background-repeat:no-repeat}.bimplus-navbar-menu{height:100%;width:3.125em;background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center;background-size:1.125em 1.125em!important;cursor:pointer;margin-right:.4em}.bimplus-navbar-menu.active{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A') no-repeat center}.bimplus-navbar-menu.hidden{visibility:hidden;width:1.2rem}.bimplus-navbar-menu.disabled{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A<rect y=\"2\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A<rect y=\"8\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A<rect y=\"14\" width=\"18\" height=\"2\" rx=\"1\" fill=\"%23C3C3C3\"/>%0D%0A</svg>%0D%0A') no-repeat center;cursor:default}.bimplus-navbar-logo-container{height:100%;display:flex;justify-content:flex-start;align-items:center;flex-direction:row-reverse;position:relative}.bimplus-navbar-container{display:flex;justify-content:space-between;align-items:center;flex:1 1 auto;position:relative}.bimplus-navbar-container .bimplus-navbar-info{display:inline-flex;flex:1 1 auto;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:4em;min-width:0}.bimplus-navbar-container .bimplus-navbar-info .clickable{cursor:pointer}.bimplus-navbar-container .bimplus-navbar-info.hidden{visibility:hidden}.bimplus-navbar-container .bimplus-navbar-slot{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;white-space:nowrap;text-overflow:ellipsis}.is-touch .bimplus-navbar-info{display:flex;flex-direction:column;line-height:normal}.is-touch .bimplus-navbar-info .team{font-size:1em;font-weight:400}.is-touch .bimplus-navbar-info .project{font-size:1em;font-weight:700}\n"] }]
|
|
1828
2148
|
}], propDecorators: { projectInfo: [{
|
|
1829
2149
|
type: Input
|
|
1830
2150
|
}], teamInfo: [{
|
|
@@ -2493,6 +2813,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
2493
2813
|
args: ['class.center-sub-menu-button']
|
|
2494
2814
|
}] } });
|
|
2495
2815
|
|
|
2816
|
+
//import { fireEvent } from '../../utils/utils';
|
|
2496
2817
|
function createDefaultVisualSettings() {
|
|
2497
2818
|
const settings = {
|
|
2498
2819
|
subMenuStartAngle: 50,
|
|
@@ -2661,27 +2982,31 @@ function createDefaultItems() {
|
|
|
2661
2982
|
items.map(item => { item.active = false; item.disabled = true; });
|
|
2662
2983
|
return items;
|
|
2663
2984
|
}
|
|
2985
|
+
const DEFAULT_POSITION_LEFT = 350;
|
|
2986
|
+
const DEFAULT_POSITION_TOP = 670;
|
|
2664
2987
|
class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
|
|
2665
|
-
constructor(translateService, layoutManagerService, element) {
|
|
2988
|
+
constructor(translateService, layoutManagerService, resizeObserverService, element) {
|
|
2666
2989
|
super(translateService);
|
|
2990
|
+
this.layoutManagerService = layoutManagerService;
|
|
2991
|
+
this.resizeObserverService = resizeObserverService;
|
|
2667
2992
|
this.element = element;
|
|
2668
|
-
// #region public fields
|
|
2669
|
-
this.left = 350;
|
|
2670
|
-
this.top = 670;
|
|
2671
2993
|
this.isEmbedded = false;
|
|
2672
2994
|
this.isFocused = false;
|
|
2673
2995
|
this.isActive = true;
|
|
2674
2996
|
this.itemClicked = new EventEmitter();
|
|
2675
2997
|
this.subItemClicked = new EventEmitter();
|
|
2998
|
+
// Define event handler for reusing draggable also from resize parent
|
|
2999
|
+
this.resizedragging = new EventEmitter();
|
|
3000
|
+
this.componentId = 'center-menu-fp-id';
|
|
3001
|
+
this.subscription = null; // Initialize to null
|
|
2676
3002
|
// #endregion public methods
|
|
2677
3003
|
// #region private fields
|
|
2678
|
-
this.
|
|
3004
|
+
this._isCollapsed = false;
|
|
2679
3005
|
this._itemStates = Array();
|
|
2680
3006
|
this._items = Array();
|
|
2681
3007
|
this._activeSubItemsView = null;
|
|
2682
3008
|
this._activeSubItems = null;
|
|
2683
3009
|
this._hoveredElements = Array();
|
|
2684
|
-
this.layoutManagerService = layoutManagerService;
|
|
2685
3010
|
this.items = createDefaultItems();
|
|
2686
3011
|
this._visualSettings = createDefaultVisualSettings();
|
|
2687
3012
|
this._units = this.calculateCurrentMenuItemUnits();
|
|
@@ -2690,6 +3015,7 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
|
|
|
2690
3015
|
this._annularSectorBorder = SVGGenerator.generateAnnularSectorBorder(this._visualSettings);
|
|
2691
3016
|
this._deadZoneAnnularSector = SVGGenerator.generateDeadZoneAnnularSector(this._visualSettings);
|
|
2692
3017
|
}
|
|
3018
|
+
// #region public fields
|
|
2693
3019
|
get itemStates() {
|
|
2694
3020
|
return this._itemStates;
|
|
2695
3021
|
}
|
|
@@ -2727,11 +3053,11 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
|
|
|
2727
3053
|
get activeSubItems() {
|
|
2728
3054
|
return this._activeSubItems;
|
|
2729
3055
|
}
|
|
2730
|
-
get
|
|
2731
|
-
return this.
|
|
3056
|
+
get isCollapsed() {
|
|
3057
|
+
return this._isCollapsed;
|
|
2732
3058
|
}
|
|
2733
|
-
set
|
|
2734
|
-
this.
|
|
3059
|
+
set isCollapsed(value) {
|
|
3060
|
+
this._isCollapsed = value;
|
|
2735
3061
|
}
|
|
2736
3062
|
get units() {
|
|
2737
3063
|
return this._units;
|
|
@@ -2748,6 +3074,20 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
|
|
|
2748
3074
|
get deadZoneAnnularSector() {
|
|
2749
3075
|
return this._deadZoneAnnularSector;
|
|
2750
3076
|
}
|
|
3077
|
+
ngOnInit() {
|
|
3078
|
+
this.layoutManagerService.registerObject(this.element, this.componentId, DEFAULT_POSITION_LEFT, DEFAULT_POSITION_TOP, '#center-menu-fp-id', true);
|
|
3079
|
+
this.layoutManagerService.registeredItems$.subscribe(items => {
|
|
3080
|
+
const layoutManagerItem = items.find(item => item.id === this.componentId);
|
|
3081
|
+
this.isCollapsed = !!layoutManagerItem?.isCollapsed;
|
|
3082
|
+
});
|
|
3083
|
+
}
|
|
3084
|
+
ngAfterViewInit() {
|
|
3085
|
+
// if the component wants to be registered in layout manager system
|
|
3086
|
+
// Subscribe to the observable
|
|
3087
|
+
this.subscription = this.resizeObserverService.parentAppRect$.subscribe(value => {
|
|
3088
|
+
this.handleParentAppRectSizeChange(value);
|
|
3089
|
+
});
|
|
3090
|
+
}
|
|
2751
3091
|
// #endregion public fields
|
|
2752
3092
|
// #region public methods
|
|
2753
3093
|
getSVGViewBox() {
|
|
@@ -2763,10 +3103,10 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
|
|
|
2763
3103
|
return SVGGenerator.getSVGCenterSubMenuItemPath(this._subMenuUnits);
|
|
2764
3104
|
}
|
|
2765
3105
|
toggleMenu() {
|
|
2766
|
-
this.
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
3106
|
+
this.isCollapsed = !this.isCollapsed;
|
|
3107
|
+
setTimeout(() => {
|
|
3108
|
+
this.layoutManagerService.checkPosition('center-menu-fp-id', this.getSelector(), undefined, 0, 0, true);
|
|
3109
|
+
});
|
|
2770
3110
|
}
|
|
2771
3111
|
findToolHubItemById(id) {
|
|
2772
3112
|
return this._items.find(x => x.buttonId === id);
|
|
@@ -2836,12 +3176,16 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
|
|
|
2836
3176
|
}, 1000);
|
|
2837
3177
|
}
|
|
2838
3178
|
}
|
|
3179
|
+
getSelector() {
|
|
3180
|
+
return this.isCollapsed ? '#center-menu-controller' : '.center-menu-fp';
|
|
3181
|
+
}
|
|
2839
3182
|
dragElement(event) {
|
|
2840
3183
|
const deltaX1 = event[0];
|
|
2841
3184
|
const deltaY1 = event[1];
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
3185
|
+
this.layoutManagerService.checkPosition('center-menu-fp-id', this.getSelector(), undefined, deltaX1, deltaY1);
|
|
3186
|
+
}
|
|
3187
|
+
onDragEnd() {
|
|
3188
|
+
this.layoutManagerService.handleDragEnd('center-menu-fp-id');
|
|
2845
3189
|
}
|
|
2846
3190
|
// #endregion private fields
|
|
2847
3191
|
// #region private methods
|
|
@@ -2851,8 +3195,11 @@ class BimplusToolHubComponent extends BimplusLocalizedWidgetComponent {
|
|
|
2851
3195
|
calculateCurrentSubMenuItemUnits() {
|
|
2852
3196
|
return SVGGenerator.drawMenuItemSvg(this._visualSettings.svgRadius, this._visualSettings.svgRadiusInner, 20, this.isEmbedded);
|
|
2853
3197
|
}
|
|
2854
|
-
|
|
2855
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusToolHubComponent, isStandalone: true, selector: "lib-bimplus-tool-hub", inputs: { left: "left", top: "top", itemStates: "itemStates", items: "items", isOpened: ["isOpened", "isOpened", booleanAttribute], isEmbedded: ["isEmbedded", "isEmbedded", booleanAttribute], isFocused: ["isFocused", "isFocused", booleanAttribute], isActive: ["isActive", "isActive", booleanAttribute] }, outputs: { itemClicked: "itemClicked", subItemClicked: "subItemClicked" }, host: { properties: { "style.left.px": "this.left", "style.top.px": "this.top" } }, providers: [TranslateService, LayoutManagerService], usesInheritance: true, ngImport: i0, template: "<div class=\"center-menu\">\r\n <div\r\n class=\"center-menu-fp\"\r\n id=\"center-menu-fp-id\"\r\n [ngClass]=\"activeSubItems ? 'submenu-active' : ''\"\r\n >\r\n <div\r\n libDraggable\r\n id=\"center-menu-controller\"\r\n class=\"center-menu-controller dragger\"\r\n data-test=\"toolhub_controller\"\r\n [ngClass]=\"{\r\n opened: isOpened,\r\n active: isActive\r\n }\"\r\n [title]=\"\r\n isOpened\r\n ? ('_Minimize_toolhub_tooltip' | translate)\r\n : ('_Show_toolhub_tooltip' | translate)\r\n \"\r\n (clicked)=\"toggleMenu()\"\r\n (dragging)=\"dragElement($event)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-inner\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-outer\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircleBorderOuter', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircleBorderOuter', true)\"\r\n ></div>\r\n <div\r\n libDraggable\r\n class=\"center-menu-circle\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircle', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircle', true)\"\r\n (dragging)=\"dragElement($event)\"\r\n >\r\n <lib-tool-hub-item\r\n libDraggable\r\n *ngFor=\"let item of items\"\r\n [attr.data-test]=\"'toolhub_item_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n [active]=\"!!item.active\"\r\n [isEnabled]=\"!item.disabled\"\r\n (clicked)=\"clickToolHubItem(item.buttonId)\"\r\n ></lib-tool-hub-item>\r\n\r\n <svg\r\n class=\"centermenu-button-svg\"\r\n [attr.viewBox]=\"getSVGViewBox()\"\r\n fill=\"none\"\r\n >\r\n <clipPath id=\"svgCenterMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterSubMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterSubMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuSubMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"annularSector\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuBorder\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"annularSectorBorder\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuDeadZone\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"deadZoneAnnularSector\" fill=\"none\" />\r\n </clipPath>\r\n </svg>\r\n </div>\r\n\r\n @if (activeSubItems) {\r\n <div\r\n class=\"center-menu-sub-menu-border\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenuBorder', false)\"\r\n (mouseenter)=\"setHoveredState('submenuBorder', true)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-sub-menu\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenu', false)\"\r\n (mouseenter)=\"setHoveredState('submenu', true)\"\r\n >\r\n <lib-tool-hub-sub-item\r\n *ngFor=\"let item of activeSubItems\"\r\n [attr.data-test]=\"'toolhub_subitem_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n (click)=\"clickToolHubSubItem(item.buttonId)\"\r\n ></lib-tool-hub-sub-item>\r\n </div>\r\n <div\r\n class=\"center-menu-sub-menu-dead-zone\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('deadZone', false)\"\r\n (mouseenter)=\"setHoveredState('deadZone', true)\"\r\n ></div>\r\n }\r\n </div>\r\n</div>\r\n", styles: [".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}.shadow{box-shadow:.3rem .3rem .7rem #0000004d}.is-touch .center-menu .submenu-container{-webkit-box-justify-content:flex-end;-moz-box-justify-content:flex-end;-webkit-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end}.is-touch #cmb-view-submenu{display:none;top:19rem}.is-touch #cmb-view-submenu .bim-ui-popupwin-tick-down{display:none}@media (max-width: 75.8rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 76.8rem) and (max-width: 98.2rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 99.2rem) and (max-width: 119rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 120rem) and (max-width: 159rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 160rem){.touch-center-menu-left-position{left:-35rem}}#center-menu-fp-id{background-color:transparent;pointer-events:none;min-width:20.5rem;min-height:20.5rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;z-index:3;position:relative}#center-menu-fp-id.embedded{min-width:16.5rem;min-height:16.5rem}.center-menu{position:absolute;height:100%;width:100%;bottom:22.1rem;pointer-events:none}.center-menu>*{pointer-events:all}.center-menu .hidden{display:none!important}.center-menu .center-menu-fp.submenu-active{width:27rem}.center-menu .center-menu-controller{cursor:pointer;pointer-events:all;position:absolute;width:4.9rem;height:4.9rem;left:7.8rem;top:7.9rem;border-radius:50%;background-position:center;background-repeat:no-repeat;background-size:2.7rem 2.7rem;background-color:#fff;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');border:1px solid #8D8D8D}.center-menu .center-menu-controller.opened{background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_519_386)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5 13.0223L21 14.5223L20 13.5223V20.0223H7V13.5223L6 14.5223L4.5 13.0223L13.4998 4.02234L22.5 13.0223ZM13.5 7.02234L18 11.5223V18.0223H16V14.0223H11V18.0223H9V11.5223L13.5 7.02234ZM14 16.0223V18.0223H13V16.0223H14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 0.0223389L0 5.02234H5V0.0223389Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 27.0223L0 22.0223H5V27.0223Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M27 5.02234L22 0.0223389V5.02234H27Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M22 27.0223L27 22.0223H22V27.0223Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_519_386\">%0D%0A<rect width=\"27\" height=\"27\" fill=\"white\" transform=\"matrix(-1 0 0 1 27 0.0223389)\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A');transition:width .5s ease-in-out,height .5s ease-in-out}.center-menu .center-menu-controller:not(.opened).active{background-color:#fe5000;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');border-color:transparent}.center-menu .center-menu-sub-menu-dead-zone{position:absolute;top:-7rem;left:-7rem;width:55rem;height:55rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#fff0;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuDeadZone);clip-path:url(#svgCenterMenuSubMenuDeadZone);font-size:0;z-index:-1}.center-menu .center-menu-sub-menu-border{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#c3c3c3;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuBorder);clip-path:url(#svgCenterMenuSubMenuBorder);font-size:0}.center-menu .center-menu-sub-menu{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#ffffffe6;pointer-events:all;overflow:hidden;-webkit-clip-path:url(#svgCenterMenuSubMenu);clip-path:url(#svgCenterMenuSubMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-sub-menu .centermenu-button{width:35rem;height:35rem;left:auto;right:0}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-text{display:none}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-icon{width:2rem;height:3rem;background-size:1.8rem 1.8rem}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(62.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(82.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(102.5deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(122.5deg) translate(-.7rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .center-sub-menu-button{position:absolute;width:35rem;height:35rem;overflow:hidden;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterSubMenuItem);clip-path:url(#svgCenterSubMenuItem);font-size:0;background-position:center top}.center-menu .center-menu-sub-menu .center-sub-menu-button.active:not(.disabled){background-color:#fe5000}.center-menu .center-menu-sub-menu .center-sub-menu-button .center-sub-menu-button-icon{width:2rem;height:2rem;display:inline-block;margin:0;padding:0;background-position:center;background-repeat:no-repeat;background-size:2rem 2rem;cursor:pointer}.center-menu .center-menu-circle-border-outer,.center-menu .center-menu-circle-border-inner{position:absolute;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#8d8d8d80;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0}.center-menu .center-menu-circle-border-outer{width:20.5rem;height:20.5rem;transform:translate(0) scale(1.01)}.center-menu .center-menu-circle-border-inner{width:20.5rem;height:20.5rem;transform:scale(.97)}.center-menu .center-menu-circle{width:20.5rem;height:20.5rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#444444e6;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-circle .centermenu-button-text{display:none}.center-menu .center-menu-circle .bim-ui-popupwin-content{box-shadow:.3rem .3rem .7rem #0000004d}.center-menu .center-menu-circle .bim-ui-popupwin-content .section-menu-item,.center-menu .center-menu-circle .bim-ui-popupwin-content .annotation-menu-item{text-align:center}.center-menu .center-menu-circle .bim-ui-popupwin-item{min-width:7.125em}.center-menu .center-menu-circle .submenu-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center}.center-menu .center-menu-circle .centermenu-button:nth-child(1){transform:rotate(calc(90deg + 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(calc(-90deg - 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2){transform:rotate(calc(90deg + 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(calc(-90deg - 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3){transform:rotate(calc(90deg + 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(calc(-90deg - 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4){transform:rotate(calc(90deg + 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(calc(-90deg - 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5){transform:rotate(calc(90deg + 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5) .centermenu-button-icon{transform:rotate(calc(-90deg - 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6){transform:rotate(calc(90deg + 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6) .centermenu-button-icon{transform:rotate(calc(-90deg - 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7){transform:rotate(calc(90deg + 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7) .centermenu-button-icon{transform:rotate(calc(-90deg - 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8){transform:rotate(calc(90deg + 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8) .centermenu-button-icon{transform:rotate(calc(-90deg - 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9){transform:rotate(calc(90deg + 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9) .centermenu-button-icon{transform:rotate(calc(-90deg - 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10){transform:rotate(calc(90deg + 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10) .centermenu-button-icon{transform:rotate(calc(-90deg - 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11){transform:rotate(calc(90deg + 11 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11) .centermenu-button-icon{transform:rotate(calc(-90deg - 11 * 360deg / var(--menu-items)))}.center-menu .centermenu-button{position:absolute;width:20.5rem;height:20.5rem;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterMenuItem);clip-path:url(#svgCenterMenuItem);font-size:0;overflow:hidden;background-position:center top}.center-menu .centermenu-button.active:not(.disabled){background-color:#fe5000}.center-menu .centermenu-button .centermenu-button-icon{width:5.8rem;height:5.8rem;margin:-.6rem;display:inline-block;padding:0;background-position:center;background-repeat:no-repeat;background-size:1.8rem 1.8rem}.center-sub-menu-button:nth-child(1){transform:rotate(65deg);left:auto;right:0}.center-sub-menu-button:nth-child(1) .center-sub-menu-button-icon{transform:rotate(-65deg)}.center-sub-menu-button:nth-child(2){transform:rotate(80deg);left:auto;right:0}.center-sub-menu-button:nth-child(2) .center-sub-menu-button-icon{transform:rotate(-85deg)}.center-sub-menu-button:nth-child(3){transform:rotate(95deg);left:auto;right:0}.center-sub-menu-button:nth-child(3) .center-sub-menu-button-icon{transform:rotate(-105deg)}.center-sub-menu-button:nth-child(4){transform:rotate(110deg);left:auto;right:0}.center-sub-menu-button:nth-child(4) .center-sub-menu-button-icon{transform:rotate(-125deg)}@-webkit-keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}@keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}.center-menu .center-menu-fp.is-dragging .center-menu-controller,.center-menu .center-menu-fp.is-dragging .centermenu-button{cursor:move}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-controller,.center-menu .center-menu-fp:not(.is-dragging) .centermenu-button{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button:not(.active):hover{background-color:#8d8d8d}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button.pulse:not(.disabled){-webkit-animation:highlight .25s linear;animation:highlight .25s linear}#cmb-view-submenu{display:none;text-align:left;position:absolute;bottom:7.4rem;width:35rem;left:25.5rem}.bim-bottom-submenu{display:none;text-align:left;position:absolute}.center-menu{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .embedded .center-menu-circle{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-controller{left:5.8rem;top:5.8rem}.center-menu .embedded .centermenu-button,.center-menu .embedded .center-menu-circle-border-outer,.center-menu .embedded .center-menu-circle-border-inner{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-sub-menu{width:30rem;height:31rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button{width:30rem;height:30rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(64.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(84.5deg) translate(-1rem,3.1rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(105.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(124.5deg) translate(-.7rem,2.7rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu-border{width:30rem;height:31rem}.ui-icon-create-task{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<g clip-path=\"url(%23clip0_201_1470)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1470\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-create-task.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1495)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1495\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off{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=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-markup{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<g clip-path=\"url(%23clip0_201_1472)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1472\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-markup.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1497)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1497\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-section{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=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-section.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp{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<g clip-path=\"url(%23clip0_201_1476)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1476\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1501)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1501\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select{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<g clip-path=\"url(%23clip0_201_1478)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1478\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1503)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1503\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map{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=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map.disabled{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<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen{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=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{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<g clip-path=\"url(%23clip0_201_1486)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1486\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1511)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1511\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset{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<g clip-path=\"url(%23clip0_201_1484)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1484\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1509)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1509\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp{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=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp.disabled{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<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-front-view{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-front-view:hover{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view{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=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view:hover{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=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view{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=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view:hover{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=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view:hover{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ToolHubItemComponent, selector: "lib-tool-hub-item", inputs: ["item", "active", "isEnabled"] }, { kind: "component", type: ToolHubSubItemComponent, selector: "lib-tool-hub-sub-item", inputs: ["item", "active", "isEnabled"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "clicked"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
3198
|
+
handleParentAppRectSizeChange(parentRect) {
|
|
3199
|
+
this.layoutManagerService.checkPosition(this.componentId, this.getSelector(), parentRect, 0, 0, true);
|
|
3200
|
+
}
|
|
3201
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusToolHubComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }, { token: ResizeObserverService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3202
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.10", type: BimplusToolHubComponent, isStandalone: true, selector: "lib-bimplus-tool-hub", inputs: { itemStates: "itemStates", items: "items", isCollapsed: ["isCollapsed", "isCollapsed", booleanAttribute], isEmbedded: ["isEmbedded", "isEmbedded", booleanAttribute], isFocused: ["isFocused", "isFocused", booleanAttribute], isActive: ["isActive", "isActive", booleanAttribute] }, outputs: { itemClicked: "itemClicked", subItemClicked: "subItemClicked", resizedragging: "resizedragging" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<div class=\"center-menu\">\r\n <div\r\n class=\"center-menu-fp\"\r\n id=\"center-menu-fp-id\"\r\n [ngClass]=\"activeSubItems ? 'submenu-active' : ''\"\r\n >\r\n <div\r\n libDraggable\r\n id=\"center-menu-controller\"\r\n class=\"center-menu-controller dragger\"\r\n data-test=\"toolhub_controller\"\r\n [ngClass]=\"{\r\n opened: !isCollapsed,\r\n active: isActive\r\n }\"\r\n [title]=\"\r\n isCollapsed\r\n ? ('_Show_toolhub_tooltip' | translate)\r\n : ('_Minimize_toolhub_tooltip' | translate) \r\n \"\r\n (clicked)=\"toggleMenu()\"\r\n (dragging)=\"dragElement($event)\"\r\n (dragEnd) =\"onDragEnd()\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-inner\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-outer\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircleBorderOuter', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircleBorderOuter', true)\"\r\n ></div>\r\n <div\r\n libDraggable\r\n class=\"center-menu-circle\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircle', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircle', true)\"\r\n (dragging)=\"dragElement($event)\"\r\n >\r\n <lib-tool-hub-item\r\n libDraggable\r\n *ngFor=\"let item of items\"\r\n [attr.data-test]=\"'toolhub_item_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n [active]=\"!!item.active\"\r\n [isEnabled]=\"!item.disabled\"\r\n (clicked)=\"clickToolHubItem(item.buttonId)\"\r\n ></lib-tool-hub-item>\r\n\r\n <svg\r\n class=\"centermenu-button-svg\"\r\n [attr.viewBox]=\"getSVGViewBox()\"\r\n fill=\"none\"\r\n >\r\n <clipPath id=\"svgCenterMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterSubMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterSubMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuSubMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"annularSector\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuBorder\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"annularSectorBorder\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuDeadZone\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"deadZoneAnnularSector\" fill=\"none\" />\r\n </clipPath>\r\n </svg>\r\n </div>\r\n\r\n @if (activeSubItems) {\r\n <div\r\n class=\"center-menu-sub-menu-border\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenuBorder', false)\"\r\n (mouseenter)=\"setHoveredState('submenuBorder', true)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-sub-menu\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenu', false)\"\r\n (mouseenter)=\"setHoveredState('submenu', true)\"\r\n >\r\n <lib-tool-hub-sub-item\r\n *ngFor=\"let item of activeSubItems\"\r\n [attr.data-test]=\"'toolhub_subitem_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n (click)=\"clickToolHubSubItem(item.buttonId)\"\r\n ></lib-tool-hub-sub-item>\r\n </div>\r\n <div\r\n class=\"center-menu-sub-menu-dead-zone\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('deadZone', false)\"\r\n (mouseenter)=\"setHoveredState('deadZone', true)\"\r\n ></div>\r\n }\r\n </div>\r\n</div>\r\n", styles: [".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}.shadow{box-shadow:.3rem .3rem .7rem #0000004d}.is-touch .center-menu .submenu-container{-webkit-box-justify-content:flex-end;-moz-box-justify-content:flex-end;-webkit-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end}.is-touch #cmb-view-submenu{display:none;top:19rem}.is-touch #cmb-view-submenu .bim-ui-popupwin-tick-down{display:none}@media (max-width: 75.8rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 76.8rem) and (max-width: 98.2rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 99.2rem) and (max-width: 119rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 120rem) and (max-width: 159rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 160rem){.touch-center-menu-left-position{left:-35rem}}#center-menu-fp-id{background-color:transparent;pointer-events:none;min-width:20.5rem;min-height:20.5rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;z-index:3;position:relative}#center-menu-fp-id.embedded{min-width:16.5rem;min-height:16.5rem}.center-menu{position:absolute;height:100%;width:100%;bottom:22.1rem;pointer-events:none}.center-menu>*{pointer-events:all}.center-menu .hidden{display:none!important}.center-menu .center-menu-fp.submenu-active{width:27rem}.center-menu .center-menu-controller{cursor:pointer;pointer-events:all;position:absolute;width:4.9rem;height:4.9rem;left:7.8rem;top:7.9rem;border-radius:50%;background-position:center;background-repeat:no-repeat;background-size:2.7rem 2.7rem;background-color:#fff;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');border:1px solid #8D8D8D}.center-menu .center-menu-controller.opened{background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_519_386)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5 13.0223L21 14.5223L20 13.5223V20.0223H7V13.5223L6 14.5223L4.5 13.0223L13.4998 4.02234L22.5 13.0223ZM13.5 7.02234L18 11.5223V18.0223H16V14.0223H11V18.0223H9V11.5223L13.5 7.02234ZM14 16.0223V18.0223H13V16.0223H14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 0.0223389L0 5.02234H5V0.0223389Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 27.0223L0 22.0223H5V27.0223Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M27 5.02234L22 0.0223389V5.02234H27Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M22 27.0223L27 22.0223H22V27.0223Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_519_386\">%0D%0A<rect width=\"27\" height=\"27\" fill=\"white\" transform=\"matrix(-1 0 0 1 27 0.0223389)\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A');transition:width .5s ease-in-out,height .5s ease-in-out}.center-menu .center-menu-controller:not(.opened).active{background-color:#fe5000;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');border-color:transparent}.center-menu .center-menu-sub-menu-dead-zone{position:absolute;top:-7rem;left:-7rem;width:55rem;height:55rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#fff0;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuDeadZone);clip-path:url(#svgCenterMenuSubMenuDeadZone);font-size:0;z-index:-1}.center-menu .center-menu-sub-menu-border{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#c3c3c3;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuBorder);clip-path:url(#svgCenterMenuSubMenuBorder);font-size:0}.center-menu .center-menu-sub-menu{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#ffffffe6;pointer-events:all;overflow:hidden;-webkit-clip-path:url(#svgCenterMenuSubMenu);clip-path:url(#svgCenterMenuSubMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-sub-menu .centermenu-button{width:35rem;height:35rem;left:auto;right:0}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-text{display:none}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-icon{width:2rem;height:3rem;background-size:1.8rem 1.8rem}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(62.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(82.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(102.5deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(122.5deg) translate(-.7rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .center-sub-menu-button{position:absolute;width:35rem;height:35rem;overflow:hidden;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterSubMenuItem);clip-path:url(#svgCenterSubMenuItem);font-size:0;background-position:center top}.center-menu .center-menu-sub-menu .center-sub-menu-button.active:not(.disabled){background-color:#fe5000}.center-menu .center-menu-sub-menu .center-sub-menu-button .center-sub-menu-button-icon{width:2rem;height:2rem;display:inline-block;margin:0;padding:0;background-position:center;background-repeat:no-repeat;background-size:2rem 2rem;cursor:pointer}.center-menu .center-menu-circle-border-outer,.center-menu .center-menu-circle-border-inner{position:absolute;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#8d8d8d80;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0}.center-menu .center-menu-circle-border-outer{width:20.5rem;height:20.5rem;transform:translate(0) scale(1.01)}.center-menu .center-menu-circle-border-inner{width:20.5rem;height:20.5rem;transform:scale(.97)}.center-menu .center-menu-circle{width:20.5rem;height:20.5rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#444444e6;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-circle .centermenu-button-text{display:none}.center-menu .center-menu-circle .bim-ui-popupwin-content{box-shadow:.3rem .3rem .7rem #0000004d}.center-menu .center-menu-circle .bim-ui-popupwin-content .section-menu-item,.center-menu .center-menu-circle .bim-ui-popupwin-content .annotation-menu-item{text-align:center}.center-menu .center-menu-circle .bim-ui-popupwin-item{min-width:7.125em}.center-menu .center-menu-circle .submenu-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center}.center-menu .center-menu-circle .centermenu-button:nth-child(1){transform:rotate(calc(90deg + 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(calc(-90deg - 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2){transform:rotate(calc(90deg + 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(calc(-90deg - 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3){transform:rotate(calc(90deg + 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(calc(-90deg - 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4){transform:rotate(calc(90deg + 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(calc(-90deg - 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5){transform:rotate(calc(90deg + 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5) .centermenu-button-icon{transform:rotate(calc(-90deg - 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6){transform:rotate(calc(90deg + 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6) .centermenu-button-icon{transform:rotate(calc(-90deg - 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7){transform:rotate(calc(90deg + 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7) .centermenu-button-icon{transform:rotate(calc(-90deg - 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8){transform:rotate(calc(90deg + 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8) .centermenu-button-icon{transform:rotate(calc(-90deg - 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9){transform:rotate(calc(90deg + 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9) .centermenu-button-icon{transform:rotate(calc(-90deg - 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10){transform:rotate(calc(90deg + 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10) .centermenu-button-icon{transform:rotate(calc(-90deg - 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11){transform:rotate(calc(90deg + 11 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11) .centermenu-button-icon{transform:rotate(calc(-90deg - 11 * 360deg / var(--menu-items)))}.center-menu .centermenu-button{position:absolute;width:20.5rem;height:20.5rem;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterMenuItem);clip-path:url(#svgCenterMenuItem);font-size:0;overflow:hidden;background-position:center top}.center-menu .centermenu-button.active:not(.disabled){background-color:#fe5000}.center-menu .centermenu-button .centermenu-button-icon{width:5.8rem;height:5.8rem;margin:-.6rem;display:inline-block;padding:0;background-position:center;background-repeat:no-repeat;background-size:1.8rem 1.8rem}.center-sub-menu-button:nth-child(1){transform:rotate(65deg);left:auto;right:0}.center-sub-menu-button:nth-child(1) .center-sub-menu-button-icon{transform:rotate(-65deg)}.center-sub-menu-button:nth-child(2){transform:rotate(80deg);left:auto;right:0}.center-sub-menu-button:nth-child(2) .center-sub-menu-button-icon{transform:rotate(-85deg)}.center-sub-menu-button:nth-child(3){transform:rotate(95deg);left:auto;right:0}.center-sub-menu-button:nth-child(3) .center-sub-menu-button-icon{transform:rotate(-105deg)}.center-sub-menu-button:nth-child(4){transform:rotate(110deg);left:auto;right:0}.center-sub-menu-button:nth-child(4) .center-sub-menu-button-icon{transform:rotate(-125deg)}@-webkit-keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}@keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}.center-menu .center-menu-fp.is-dragging .center-menu-controller,.center-menu .center-menu-fp.is-dragging .centermenu-button{cursor:move}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-controller,.center-menu .center-menu-fp:not(.is-dragging) .centermenu-button{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button:not(.active):hover{background-color:#8d8d8d}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button.pulse:not(.disabled){-webkit-animation:highlight .25s linear;animation:highlight .25s linear}#cmb-view-submenu{display:none;text-align:left;position:absolute;bottom:7.4rem;width:35rem;left:25.5rem}.bim-bottom-submenu{display:none;text-align:left;position:absolute}.center-menu{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .embedded .center-menu-circle{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-controller{left:5.8rem;top:5.8rem}.center-menu .embedded .centermenu-button,.center-menu .embedded .center-menu-circle-border-outer,.center-menu .embedded .center-menu-circle-border-inner{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-sub-menu{width:30rem;height:31rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button{width:30rem;height:30rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(64.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(84.5deg) translate(-1rem,3.1rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(105.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(124.5deg) translate(-.7rem,2.7rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu-border{width:30rem;height:31rem}.ui-icon-create-task{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<g clip-path=\"url(%23clip0_201_1470)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1470\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-create-task.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1495)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1495\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off{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=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-markup{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<g clip-path=\"url(%23clip0_201_1472)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1472\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-markup.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1497)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1497\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-section{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=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-section.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp{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<g clip-path=\"url(%23clip0_201_1476)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1476\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1501)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1501\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select{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<g clip-path=\"url(%23clip0_201_1478)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1478\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1503)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1503\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map{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=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map.disabled{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<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen{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=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{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<g clip-path=\"url(%23clip0_201_1486)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1486\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1511)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1511\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset{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<g clip-path=\"url(%23clip0_201_1484)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1484\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1509)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1509\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp{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=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp.disabled{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<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-front-view{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-front-view:hover{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view{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=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view:hover{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=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view{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=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view:hover{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=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view:hover{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}\n"], dependencies: [{ kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ToolHubItemComponent, selector: "lib-tool-hub-item", inputs: ["item", "active", "isEnabled"] }, { kind: "component", type: ToolHubSubItemComponent, selector: "lib-tool-hub-sub-item", inputs: ["item", "active", "isEnabled"] }, { kind: "directive", type: DraggableDirective, selector: "[libDraggable]", outputs: ["dragging", "dragEnd", "clicked"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
2856
3203
|
}
|
|
2857
3204
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImport: i0, type: BimplusToolHubComponent, decorators: [{
|
|
2858
3205
|
type: Component,
|
|
@@ -2862,22 +3209,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
2862
3209
|
ToolHubItemComponent,
|
|
2863
3210
|
ToolHubSubItemComponent,
|
|
2864
3211
|
DraggableDirective
|
|
2865
|
-
], providers: [TranslateService, LayoutManagerService], encapsulation: ViewEncapsulation.ShadowDom, template: "<div class=\"center-menu\">\r\n <div\r\n class=\"center-menu-fp\"\r\n id=\"center-menu-fp-id\"\r\n [ngClass]=\"activeSubItems ? 'submenu-active' : ''\"\r\n >\r\n <div\r\n libDraggable\r\n id=\"center-menu-controller\"\r\n class=\"center-menu-controller dragger\"\r\n data-test=\"toolhub_controller\"\r\n [ngClass]=\"{\r\n opened: isOpened,\r\n active: isActive\r\n }\"\r\n [title]=\"\r\n isOpened\r\n ? ('_Minimize_toolhub_tooltip' | translate)\r\n : ('_Show_toolhub_tooltip' | translate)\r\n \"\r\n (clicked)=\"toggleMenu()\"\r\n (dragging)=\"dragElement($event)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-inner\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-outer\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircleBorderOuter', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircleBorderOuter', true)\"\r\n ></div>\r\n <div\r\n libDraggable\r\n class=\"center-menu-circle\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircle', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircle', true)\"\r\n (dragging)=\"dragElement($event)\"\r\n >\r\n <lib-tool-hub-item\r\n libDraggable\r\n *ngFor=\"let item of items\"\r\n [attr.data-test]=\"'toolhub_item_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n [active]=\"!!item.active\"\r\n [isEnabled]=\"!item.disabled\"\r\n (clicked)=\"clickToolHubItem(item.buttonId)\"\r\n ></lib-tool-hub-item>\r\n\r\n <svg\r\n class=\"centermenu-button-svg\"\r\n [attr.viewBox]=\"getSVGViewBox()\"\r\n fill=\"none\"\r\n >\r\n <clipPath id=\"svgCenterMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterSubMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterSubMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuSubMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"annularSector\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuBorder\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"annularSectorBorder\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuDeadZone\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"deadZoneAnnularSector\" fill=\"none\" />\r\n </clipPath>\r\n </svg>\r\n </div>\r\n\r\n @if (activeSubItems) {\r\n <div\r\n class=\"center-menu-sub-menu-border\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenuBorder', false)\"\r\n (mouseenter)=\"setHoveredState('submenuBorder', true)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-sub-menu\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenu', false)\"\r\n (mouseenter)=\"setHoveredState('submenu', true)\"\r\n >\r\n <lib-tool-hub-sub-item\r\n *ngFor=\"let item of activeSubItems\"\r\n [attr.data-test]=\"'toolhub_subitem_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n (click)=\"clickToolHubSubItem(item.buttonId)\"\r\n ></lib-tool-hub-sub-item>\r\n </div>\r\n <div\r\n class=\"center-menu-sub-menu-dead-zone\"\r\n [ngClass]=\"!isOpened ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('deadZone', false)\"\r\n (mouseenter)=\"setHoveredState('deadZone', true)\"\r\n ></div>\r\n }\r\n </div>\r\n</div>\r\n", styles: [".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}.shadow{box-shadow:.3rem .3rem .7rem #0000004d}.is-touch .center-menu .submenu-container{-webkit-box-justify-content:flex-end;-moz-box-justify-content:flex-end;-webkit-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end}.is-touch #cmb-view-submenu{display:none;top:19rem}.is-touch #cmb-view-submenu .bim-ui-popupwin-tick-down{display:none}@media (max-width: 75.8rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 76.8rem) and (max-width: 98.2rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 99.2rem) and (max-width: 119rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 120rem) and (max-width: 159rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 160rem){.touch-center-menu-left-position{left:-35rem}}#center-menu-fp-id{background-color:transparent;pointer-events:none;min-width:20.5rem;min-height:20.5rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;z-index:3;position:relative}#center-menu-fp-id.embedded{min-width:16.5rem;min-height:16.5rem}.center-menu{position:absolute;height:100%;width:100%;bottom:22.1rem;pointer-events:none}.center-menu>*{pointer-events:all}.center-menu .hidden{display:none!important}.center-menu .center-menu-fp.submenu-active{width:27rem}.center-menu .center-menu-controller{cursor:pointer;pointer-events:all;position:absolute;width:4.9rem;height:4.9rem;left:7.8rem;top:7.9rem;border-radius:50%;background-position:center;background-repeat:no-repeat;background-size:2.7rem 2.7rem;background-color:#fff;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');border:1px solid #8D8D8D}.center-menu .center-menu-controller.opened{background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_519_386)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5 13.0223L21 14.5223L20 13.5223V20.0223H7V13.5223L6 14.5223L4.5 13.0223L13.4998 4.02234L22.5 13.0223ZM13.5 7.02234L18 11.5223V18.0223H16V14.0223H11V18.0223H9V11.5223L13.5 7.02234ZM14 16.0223V18.0223H13V16.0223H14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 0.0223389L0 5.02234H5V0.0223389Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 27.0223L0 22.0223H5V27.0223Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M27 5.02234L22 0.0223389V5.02234H27Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M22 27.0223L27 22.0223H22V27.0223Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_519_386\">%0D%0A<rect width=\"27\" height=\"27\" fill=\"white\" transform=\"matrix(-1 0 0 1 27 0.0223389)\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A');transition:width .5s ease-in-out,height .5s ease-in-out}.center-menu .center-menu-controller:not(.opened).active{background-color:#fe5000;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');border-color:transparent}.center-menu .center-menu-sub-menu-dead-zone{position:absolute;top:-7rem;left:-7rem;width:55rem;height:55rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#fff0;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuDeadZone);clip-path:url(#svgCenterMenuSubMenuDeadZone);font-size:0;z-index:-1}.center-menu .center-menu-sub-menu-border{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#c3c3c3;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuBorder);clip-path:url(#svgCenterMenuSubMenuBorder);font-size:0}.center-menu .center-menu-sub-menu{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#ffffffe6;pointer-events:all;overflow:hidden;-webkit-clip-path:url(#svgCenterMenuSubMenu);clip-path:url(#svgCenterMenuSubMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-sub-menu .centermenu-button{width:35rem;height:35rem;left:auto;right:0}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-text{display:none}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-icon{width:2rem;height:3rem;background-size:1.8rem 1.8rem}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(62.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(82.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(102.5deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(122.5deg) translate(-.7rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .center-sub-menu-button{position:absolute;width:35rem;height:35rem;overflow:hidden;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterSubMenuItem);clip-path:url(#svgCenterSubMenuItem);font-size:0;background-position:center top}.center-menu .center-menu-sub-menu .center-sub-menu-button.active:not(.disabled){background-color:#fe5000}.center-menu .center-menu-sub-menu .center-sub-menu-button .center-sub-menu-button-icon{width:2rem;height:2rem;display:inline-block;margin:0;padding:0;background-position:center;background-repeat:no-repeat;background-size:2rem 2rem;cursor:pointer}.center-menu .center-menu-circle-border-outer,.center-menu .center-menu-circle-border-inner{position:absolute;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#8d8d8d80;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0}.center-menu .center-menu-circle-border-outer{width:20.5rem;height:20.5rem;transform:translate(0) scale(1.01)}.center-menu .center-menu-circle-border-inner{width:20.5rem;height:20.5rem;transform:scale(.97)}.center-menu .center-menu-circle{width:20.5rem;height:20.5rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#444444e6;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-circle .centermenu-button-text{display:none}.center-menu .center-menu-circle .bim-ui-popupwin-content{box-shadow:.3rem .3rem .7rem #0000004d}.center-menu .center-menu-circle .bim-ui-popupwin-content .section-menu-item,.center-menu .center-menu-circle .bim-ui-popupwin-content .annotation-menu-item{text-align:center}.center-menu .center-menu-circle .bim-ui-popupwin-item{min-width:7.125em}.center-menu .center-menu-circle .submenu-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center}.center-menu .center-menu-circle .centermenu-button:nth-child(1){transform:rotate(calc(90deg + 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(calc(-90deg - 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2){transform:rotate(calc(90deg + 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(calc(-90deg - 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3){transform:rotate(calc(90deg + 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(calc(-90deg - 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4){transform:rotate(calc(90deg + 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(calc(-90deg - 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5){transform:rotate(calc(90deg + 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5) .centermenu-button-icon{transform:rotate(calc(-90deg - 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6){transform:rotate(calc(90deg + 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6) .centermenu-button-icon{transform:rotate(calc(-90deg - 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7){transform:rotate(calc(90deg + 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7) .centermenu-button-icon{transform:rotate(calc(-90deg - 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8){transform:rotate(calc(90deg + 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8) .centermenu-button-icon{transform:rotate(calc(-90deg - 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9){transform:rotate(calc(90deg + 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9) .centermenu-button-icon{transform:rotate(calc(-90deg - 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10){transform:rotate(calc(90deg + 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10) .centermenu-button-icon{transform:rotate(calc(-90deg - 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11){transform:rotate(calc(90deg + 11 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11) .centermenu-button-icon{transform:rotate(calc(-90deg - 11 * 360deg / var(--menu-items)))}.center-menu .centermenu-button{position:absolute;width:20.5rem;height:20.5rem;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterMenuItem);clip-path:url(#svgCenterMenuItem);font-size:0;overflow:hidden;background-position:center top}.center-menu .centermenu-button.active:not(.disabled){background-color:#fe5000}.center-menu .centermenu-button .centermenu-button-icon{width:5.8rem;height:5.8rem;margin:-.6rem;display:inline-block;padding:0;background-position:center;background-repeat:no-repeat;background-size:1.8rem 1.8rem}.center-sub-menu-button:nth-child(1){transform:rotate(65deg);left:auto;right:0}.center-sub-menu-button:nth-child(1) .center-sub-menu-button-icon{transform:rotate(-65deg)}.center-sub-menu-button:nth-child(2){transform:rotate(80deg);left:auto;right:0}.center-sub-menu-button:nth-child(2) .center-sub-menu-button-icon{transform:rotate(-85deg)}.center-sub-menu-button:nth-child(3){transform:rotate(95deg);left:auto;right:0}.center-sub-menu-button:nth-child(3) .center-sub-menu-button-icon{transform:rotate(-105deg)}.center-sub-menu-button:nth-child(4){transform:rotate(110deg);left:auto;right:0}.center-sub-menu-button:nth-child(4) .center-sub-menu-button-icon{transform:rotate(-125deg)}@-webkit-keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}@keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}.center-menu .center-menu-fp.is-dragging .center-menu-controller,.center-menu .center-menu-fp.is-dragging .centermenu-button{cursor:move}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-controller,.center-menu .center-menu-fp:not(.is-dragging) .centermenu-button{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button:not(.active):hover{background-color:#8d8d8d}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button.pulse:not(.disabled){-webkit-animation:highlight .25s linear;animation:highlight .25s linear}#cmb-view-submenu{display:none;text-align:left;position:absolute;bottom:7.4rem;width:35rem;left:25.5rem}.bim-bottom-submenu{display:none;text-align:left;position:absolute}.center-menu{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .embedded .center-menu-circle{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-controller{left:5.8rem;top:5.8rem}.center-menu .embedded .centermenu-button,.center-menu .embedded .center-menu-circle-border-outer,.center-menu .embedded .center-menu-circle-border-inner{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-sub-menu{width:30rem;height:31rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button{width:30rem;height:30rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(64.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(84.5deg) translate(-1rem,3.1rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(105.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(124.5deg) translate(-.7rem,2.7rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu-border{width:30rem;height:31rem}.ui-icon-create-task{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<g clip-path=\"url(%23clip0_201_1470)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1470\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-create-task.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1495)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1495\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off{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=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-markup{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<g clip-path=\"url(%23clip0_201_1472)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1472\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-markup.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1497)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1497\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-section{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=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-section.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp{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<g clip-path=\"url(%23clip0_201_1476)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1476\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1501)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1501\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select{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<g clip-path=\"url(%23clip0_201_1478)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1478\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1503)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1503\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map{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=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map.disabled{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<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen{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=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{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<g clip-path=\"url(%23clip0_201_1486)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1486\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1511)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1511\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset{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<g clip-path=\"url(%23clip0_201_1484)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1484\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1509)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1509\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp{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=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp.disabled{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<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-front-view{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-front-view:hover{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view{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=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view:hover{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=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view{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=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view:hover{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=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view:hover{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
2866
|
-
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }], propDecorators: {
|
|
2867
|
-
type: HostBinding,
|
|
2868
|
-
args: ['style.left.px']
|
|
2869
|
-
}, {
|
|
2870
|
-
type: Input
|
|
2871
|
-
}], top: [{
|
|
2872
|
-
type: HostBinding,
|
|
2873
|
-
args: ['style.top.px']
|
|
2874
|
-
}, {
|
|
2875
|
-
type: Input
|
|
2876
|
-
}], itemStates: [{
|
|
3212
|
+
], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<div class=\"center-menu\">\r\n <div\r\n class=\"center-menu-fp\"\r\n id=\"center-menu-fp-id\"\r\n [ngClass]=\"activeSubItems ? 'submenu-active' : ''\"\r\n >\r\n <div\r\n libDraggable\r\n id=\"center-menu-controller\"\r\n class=\"center-menu-controller dragger\"\r\n data-test=\"toolhub_controller\"\r\n [ngClass]=\"{\r\n opened: !isCollapsed,\r\n active: isActive\r\n }\"\r\n [title]=\"\r\n isCollapsed\r\n ? ('_Show_toolhub_tooltip' | translate)\r\n : ('_Minimize_toolhub_tooltip' | translate) \r\n \"\r\n (clicked)=\"toggleMenu()\"\r\n (dragging)=\"dragElement($event)\"\r\n (dragEnd) =\"onDragEnd()\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-inner\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n ></div>\r\n <div\r\n class=\"center-menu-circle-border-outer\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircleBorderOuter', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircleBorderOuter', true)\"\r\n ></div>\r\n <div\r\n libDraggable\r\n class=\"center-menu-circle\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('menuCircle', false)\"\r\n (mouseenter)=\"setHoveredState('menuCircle', true)\"\r\n (dragging)=\"dragElement($event)\"\r\n >\r\n <lib-tool-hub-item\r\n libDraggable\r\n *ngFor=\"let item of items\"\r\n [attr.data-test]=\"'toolhub_item_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n [active]=\"!!item.active\"\r\n [isEnabled]=\"!item.disabled\"\r\n (clicked)=\"clickToolHubItem(item.buttonId)\"\r\n ></lib-tool-hub-item>\r\n\r\n <svg\r\n class=\"centermenu-button-svg\"\r\n [attr.viewBox]=\"getSVGViewBox()\"\r\n fill=\"none\"\r\n >\r\n <clipPath id=\"svgCenterMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterSubMenuItem\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"getSVGCenterSubMenuItemPath()\" fill=\"white\" />\r\n </clipPath>\r\n <clipPath id=\"svgCenterMenuSubMenu\" clipPathUnits=\"objectBoundingBox\">\r\n <path [attr.d]=\"annularSector\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuBorder\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"annularSectorBorder\" fill=\"none\" />\r\n </clipPath>\r\n <clipPath\r\n id=\"svgCenterMenuSubMenuDeadZone\"\r\n clipPathUnits=\"objectBoundingBox\"\r\n >\r\n <path [attr.d]=\"deadZoneAnnularSector\" fill=\"none\" />\r\n </clipPath>\r\n </svg>\r\n </div>\r\n\r\n @if (activeSubItems) {\r\n <div\r\n class=\"center-menu-sub-menu-border\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenuBorder', false)\"\r\n (mouseenter)=\"setHoveredState('submenuBorder', true)\"\r\n ></div>\r\n <div\r\n class=\"center-menu-sub-menu\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('submenu', false)\"\r\n (mouseenter)=\"setHoveredState('submenu', true)\"\r\n >\r\n <lib-tool-hub-sub-item\r\n *ngFor=\"let item of activeSubItems\"\r\n [attr.data-test]=\"'toolhub_subitem_' + item.buttonId\"\r\n [title]=\"item.tooltip | translate\"\r\n [item]=\"item\"\r\n (click)=\"clickToolHubSubItem(item.buttonId)\"\r\n ></lib-tool-hub-sub-item>\r\n </div>\r\n <div\r\n class=\"center-menu-sub-menu-dead-zone\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n (mouseleave)=\"setHoveredState('deadZone', false)\"\r\n (mouseenter)=\"setHoveredState('deadZone', true)\"\r\n ></div>\r\n }\r\n </div>\r\n</div>\r\n", styles: [".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}.shadow{box-shadow:.3rem .3rem .7rem #0000004d}.is-touch .center-menu .submenu-container{-webkit-box-justify-content:flex-end;-moz-box-justify-content:flex-end;-webkit-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end}.is-touch #cmb-view-submenu{display:none;top:19rem}.is-touch #cmb-view-submenu .bim-ui-popupwin-tick-down{display:none}@media (max-width: 75.8rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 76.8rem) and (max-width: 98.2rem){.touch-center-menu-left-position{left:-29rem}}@media (min-width: 99.2rem) and (max-width: 119rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 120rem) and (max-width: 159rem){.touch-center-menu-left-position{left:-35rem}}@media (min-width: 160rem){.touch-center-menu-left-position{left:-35rem}}#center-menu-fp-id{background-color:transparent;pointer-events:none;min-width:20.5rem;min-height:20.5rem;display:grid;grid-template-columns:auto 1fr auto;grid-template-rows:auto 1fr;z-index:3;position:relative}#center-menu-fp-id.embedded{min-width:16.5rem;min-height:16.5rem}.center-menu{position:absolute;height:100%;width:100%;bottom:22.1rem;pointer-events:none}.center-menu>*{pointer-events:all}.center-menu .hidden{display:none!important}.center-menu .center-menu-fp.submenu-active{width:27rem}.center-menu .center-menu-controller{cursor:pointer;pointer-events:all;position:absolute;width:4.9rem;height:4.9rem;left:7.8rem;top:7.9rem;border-radius:50%;background-position:center;background-repeat:no-repeat;background-size:2.7rem 2.7rem;background-color:#fff;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');border:1px solid #8D8D8D}.center-menu .center-menu-controller.opened{background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_519_386)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.5 13.0223L21 14.5223L20 13.5223V20.0223H7V13.5223L6 14.5223L4.5 13.0223L13.4998 4.02234L22.5 13.0223ZM13.5 7.02234L18 11.5223V18.0223H16V14.0223H11V18.0223H9V11.5223L13.5 7.02234ZM14 16.0223V18.0223H13V16.0223H14Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 0.0223389L0 5.02234H5V0.0223389Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M5 27.0223L0 22.0223H5V27.0223Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M27 5.02234L22 0.0223389V5.02234H27Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M22 27.0223L27 22.0223H22V27.0223Z\" fill=\"%23444444\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_519_386\">%0D%0A<rect width=\"27\" height=\"27\" fill=\"white\" transform=\"matrix(-1 0 0 1 27 0.0223389)\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A');transition:width .5s ease-in-out,height .5s ease-in-out}.center-menu .center-menu-controller:not(.opened).active{background-color:#fe5000;background-image:url('data:image/svg+xml,<svg width=\"27\" height=\"27\" viewBox=\"0 0 27 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.5 12.5L22 14L21 13V21H6V13L5 14L3.5 12.5L13.4998 2.5L23.5 12.5ZM13.5 5.5L19 11V19H17V14H10V19H8V11L13.5 5.5ZM15 16V19H12V16H15Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');border-color:transparent}.center-menu .center-menu-sub-menu-dead-zone{position:absolute;top:-7rem;left:-7rem;width:55rem;height:55rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#fff0;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuDeadZone);clip-path:url(#svgCenterMenuSubMenuDeadZone);font-size:0;z-index:-1}.center-menu .center-menu-sub-menu-border{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#c3c3c3;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenuSubMenuBorder);clip-path:url(#svgCenterMenuSubMenuBorder);font-size:0}.center-menu .center-menu-sub-menu{position:absolute;top:-7rem;left:-7rem;width:35rem;height:35rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#ffffffe6;pointer-events:all;overflow:hidden;-webkit-clip-path:url(#svgCenterMenuSubMenu);clip-path:url(#svgCenterMenuSubMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-sub-menu .centermenu-button{width:35rem;height:35rem;left:auto;right:0}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-text{display:none}.center-menu .center-menu-sub-menu .centermenu-button .centermenu-button-icon{width:2rem;height:3rem;background-size:1.8rem 1.8rem}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(62.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(82.5deg) translate(-1rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(102.5deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(122.5deg) translate(-.7rem,3.8rem)}.center-menu .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .center-menu-sub-menu .center-sub-menu-button{position:absolute;width:35rem;height:35rem;overflow:hidden;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterSubMenuItem);clip-path:url(#svgCenterSubMenuItem);font-size:0;background-position:center top}.center-menu .center-menu-sub-menu .center-sub-menu-button.active:not(.disabled){background-color:#fe5000}.center-menu .center-menu-sub-menu .center-sub-menu-button .center-sub-menu-button-icon{width:2rem;height:2rem;display:inline-block;margin:0;padding:0;background-position:center;background-repeat:no-repeat;background-size:2rem 2rem;cursor:pointer}.center-menu .center-menu-circle-border-outer,.center-menu .center-menu-circle-border-inner{position:absolute;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#8d8d8d80;opacity:.9;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0}.center-menu .center-menu-circle-border-outer{width:20.5rem;height:20.5rem;transform:translate(0) scale(1.01)}.center-menu .center-menu-circle-border-inner{width:20.5rem;height:20.5rem;transform:scale(.97)}.center-menu .center-menu-circle{width:20.5rem;height:20.5rem;margin:auto;vertical-align:bottom;text-align:center;white-space:nowrap;background-color:#444444e6;pointer-events:all;-webkit-clip-path:url(#svgCenterMenu);clip-path:url(#svgCenterMenu);font-size:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .center-menu-circle .centermenu-button-text{display:none}.center-menu .center-menu-circle .bim-ui-popupwin-content{box-shadow:.3rem .3rem .7rem #0000004d}.center-menu .center-menu-circle .bim-ui-popupwin-content .section-menu-item,.center-menu .center-menu-circle .bim-ui-popupwin-content .annotation-menu-item{text-align:center}.center-menu .center-menu-circle .bim-ui-popupwin-item{min-width:7.125em}.center-menu .center-menu-circle .submenu-container{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-justify-content:center;-moz-box-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center}.center-menu .center-menu-circle .centermenu-button:nth-child(1){transform:rotate(calc(90deg + 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(calc(-90deg - 1 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2){transform:rotate(calc(90deg + 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(calc(-90deg - 2 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3){transform:rotate(calc(90deg + 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(calc(-90deg - 3 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4){transform:rotate(calc(90deg + 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(calc(-90deg - 4 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5){transform:rotate(calc(90deg + 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(5) .centermenu-button-icon{transform:rotate(calc(-90deg - 5 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6){transform:rotate(calc(90deg + 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(6) .centermenu-button-icon{transform:rotate(calc(-90deg - 6 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7){transform:rotate(calc(90deg + 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(7) .centermenu-button-icon{transform:rotate(calc(-90deg - 7 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8){transform:rotate(calc(90deg + 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(8) .centermenu-button-icon{transform:rotate(calc(-90deg - 8 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9){transform:rotate(calc(90deg + 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(9) .centermenu-button-icon{transform:rotate(calc(-90deg - 9 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10){transform:rotate(calc(90deg + 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(10) .centermenu-button-icon{transform:rotate(calc(-90deg - 10 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11){transform:rotate(calc(90deg + 11 * 360deg / var(--menu-items)))}.center-menu .center-menu-circle .centermenu-button:nth-child(11) .centermenu-button-icon{transform:rotate(calc(-90deg - 11 * 360deg / var(--menu-items)))}.center-menu .centermenu-button{position:absolute;width:20.5rem;height:20.5rem;top:0;left:0;margin:0;padding:0;-webkit-clip-path:url(#svgCenterMenuItem);clip-path:url(#svgCenterMenuItem);font-size:0;overflow:hidden;background-position:center top}.center-menu .centermenu-button.active:not(.disabled){background-color:#fe5000}.center-menu .centermenu-button .centermenu-button-icon{width:5.8rem;height:5.8rem;margin:-.6rem;display:inline-block;padding:0;background-position:center;background-repeat:no-repeat;background-size:1.8rem 1.8rem}.center-sub-menu-button:nth-child(1){transform:rotate(65deg);left:auto;right:0}.center-sub-menu-button:nth-child(1) .center-sub-menu-button-icon{transform:rotate(-65deg)}.center-sub-menu-button:nth-child(2){transform:rotate(80deg);left:auto;right:0}.center-sub-menu-button:nth-child(2) .center-sub-menu-button-icon{transform:rotate(-85deg)}.center-sub-menu-button:nth-child(3){transform:rotate(95deg);left:auto;right:0}.center-sub-menu-button:nth-child(3) .center-sub-menu-button-icon{transform:rotate(-105deg)}.center-sub-menu-button:nth-child(4){transform:rotate(110deg);left:auto;right:0}.center-sub-menu-button:nth-child(4) .center-sub-menu-button-icon{transform:rotate(-125deg)}@-webkit-keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}@keyframes highlight{0%{background-color:#d84500}to{background-color:#d84500}}.center-menu .center-menu-fp.is-dragging .center-menu-controller,.center-menu .center-menu-fp.is-dragging .centermenu-button{cursor:move}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp.is-dragging .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-controller,.center-menu .center-menu-fp:not(.is-dragging) .centermenu-button{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button{cursor:auto}.center-menu .center-menu-fp:not(.is-dragging) .center-menu-sub-menu .centermenu-button .centermenu-button-icon{cursor:pointer}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button:not(.active):hover{background-color:#8d8d8d}.center-menu .center-menu-fp:not(.is-dragging) div:not(.center-menu-sub-menu) .centermenu-button.pulse:not(.disabled){-webkit-animation:highlight .25s linear;animation:highlight .25s linear}#cmb-view-submenu{display:none;text-align:left;position:absolute;bottom:7.4rem;width:35rem;left:25.5rem}.bim-bottom-submenu{display:none;text-align:left;position:absolute}.center-menu{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.center-menu .embedded .center-menu-circle{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-controller{left:5.8rem;top:5.8rem}.center-menu .embedded .centermenu-button,.center-menu .embedded .center-menu-circle-border-outer,.center-menu .embedded .center-menu-circle-border-inner{width:16.5rem;height:16.5rem}.center-menu .embedded .center-menu-sub-menu{width:30rem;height:31rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button{width:30rem;height:30rem}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1){transform:rotate(64.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(1) .centermenu-button-icon{transform:rotate(-50deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2){transform:rotate(84.5deg) translate(-1rem,3.1rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(2) .centermenu-button-icon{transform:rotate(-60deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3){transform:rotate(105.5deg) translate(-1rem,3rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(3) .centermenu-button-icon{transform:rotate(-70deg) translate(-.8rem,4rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4){transform:rotate(124.5deg) translate(-.7rem,2.7rem)}.center-menu .embedded .center-menu-sub-menu .centermenu-button:nth-child(4) .centermenu-button-icon{transform:rotate(-80deg) translate(-1rem,4rem)}.center-menu .embedded .center-menu-sub-menu-border{width:30rem;height:31rem}.ui-icon-create-task{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<g clip-path=\"url(%23clip0_201_1470)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1470\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-create-task.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1495)\">%0D%0A<path d=\"M2 16V3H4V4H11V3H13V9H15V1H10V0H5V1H0V18H12V16H2Z\" fill=\"white\"/>%0D%0A<path d=\"M4.40002 8.59998L3 10L5.90002 12.9L12 6.90002L10.5 5.5L5.90002 10.1L4.40002 8.59998Z\" fill=\"white\"/>%0D%0A<path d=\"M15 10V13H18V15H15V18H13V15H10V13H13V10H15Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1495\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off{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=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-quantity-take-off.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1.99976 2V4L7.50244 9.50267L1.99512 15.01L1.99976 15.0146V17.01H15.9998V13.01L13.9998 13V15.01H4.82349L10.3353 9.50717L10.3308 9.50267L10.3326 9.50085L4.82812 4H13.9998V6H15.9998V2H1.99976Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-markup{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<g clip-path=\"url(%23clip0_201_1472)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1472\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-markup.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1497)\">%0D%0A<path d=\"M14.021 2L11.8996 0L0 12V14H2L14.021 2Z\" fill=\"white\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 18L5 15L5.8388 15.8387L6.849 14.8285L6.0103 13.9897L8 12L8.8388 12.8388L9.8388 11.8388L9 11L11 9L11.8389 9.8389L12.8389 8.8389L12 8L14 6L14.8388 6.8388L15.8388 5.8388L15 5L18 2V18H2ZM9.0712 15L15 9.0709V15H9.0712Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1497\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-section{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=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-section.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1 1V2.80005L6.29999 8.10004L8.10004 6.30005L3 1H1ZM14.4 16.2C13.4 16.2 12.6 15.4 12.6 14.4C12.6 13.4 13.4 12.6 14.4 12.6C15.4 12.6 16.2 13.4 16.2 14.4C16.2 15.4 15.4 16.2 14.4 16.2ZM14.4 5.40002C13.4 5.40002 12.6 4.60004 12.6 3.60004C12.6 2.60004 13.4 1.80005 14.4 1.80005C15.4 1.80005 16.2 2.60004 16.2 3.60004C16.2 4.60004 15.4 5.40002 14.4 5.40002ZM1 15.2V17H3L9 10.8L11.1 12.9C10.9 13.4 10.8 13.9 10.8 14.4C10.8 16.4 12.4 18 14.4 18C16.4 18 18 16.4 18 14.4C18 12.4 16.4 10.8 14.4 10.8C13.8 10.8 13.3 10.9 12.9 11.1L10.8 9L12.9 6.90002C13.4 7.10002 13.9 7.20001 14.4 7.20001C16.4 7.20001 18 5.60004 18 3.60004C18 1.60004 16.4 0 14.4 0C12.4 0 10.8 1.60004 10.8 3.60004C10.8 4.20004 10.9 4.70004 11.1 5.10004L1 15.2Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp{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<g clip-path=\"url(%23clip0_201_1476)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1476\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-transp.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1501)\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1646 4.1354L13.6441 2.69995L14.9591 3.81644L3.5343 14.9013L2.3014 13.7051L3.20551 12.8279C1.15068 11.2329 0 9.31898 0 9.31898C0 9.31898 3.53431 3.49743 9.04126 3.49743C10.192 3.49743 11.1783 3.73666 12.1646 4.1354ZM4.02744 9.39876C4.02744 10.1962 4.27403 10.914 4.60281 11.552L6.1645 10.0367C6.0823 9.87724 6.08227 9.71776 6.08227 9.55827C6.08227 7.88357 7.39738 6.6076 9.12344 6.6076C9.20563 6.6076 9.28782 6.62753 9.37001 6.64746C9.45219 6.66739 9.53438 6.68733 9.61658 6.68733L11.2604 5.09238C10.6029 4.69364 9.8632 4.53413 9.04126 4.53413C6.24669 4.53413 4.02744 6.68735 4.02744 9.39876Z\" fill=\"white\"/>%0D%0A<path d=\"M14.9589 5.81006L13.5616 7.16578C13.8904 7.80376 14.0548 8.60122 14.0548 9.3987C14.0548 12.1101 11.8356 14.2633 9.04101 14.2633C8.21908 14.2633 7.4793 14.1038 6.73956 13.7848L5.83545 14.662C6.82177 15.0608 7.80808 15.3 8.95878 15.3C14.4657 15.3 18 9.47843 18 9.47843C18 9.47843 16.9315 7.40501 14.9589 5.81006Z\" fill=\"white\"/>%0D%0A<path d=\"M12.0001 8.60132L8.21924 12.2697C8.46582 12.3494 8.79457 12.4292 9.12334 12.4292C10.8494 12.4292 12.1645 11.1532 12.1645 9.47852C12.1645 9.15953 12.0823 8.84056 12.0001 8.60132Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1501\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select{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<g clip-path=\"url(%23clip0_201_1478)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1478\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-select.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1503)\">%0D%0A<path d=\"M9 14.4L3.6 11.7L0 13.5L9 18L18 13.5L14.4 11.7L9 14.4Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A<path d=\"M9 9.89995L3.6 7.19995L0 8.99995L9 13.5L18 8.99995L14.4 7.19995L9 9.89995Z\" fill=\"white\"/>%0D%0A<path d=\"M18 4.5L9 9L0 4.5L9 0L18 4.5Z\" fill=\"white\" fill-opacity=\"0.7\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1503\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map{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=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-navigation-map.disabled{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<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 18C9 18 15 10.7027 15 5.83784C15 2.35227 12.3137 0 9 0C5.68629 0 3 2.35227 3 5.83784C3 10.7027 9 18 9 18ZM9 9C10.6569 9 12 7.65685 12 6C12 4.34315 10.6569 3 9 3C7.34315 3 6 4.34315 6 6C6 7.65685 7.34315 9 9 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen{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=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-fullscreen.disabled{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<g opacity=\"0.5\">%0D%0A<path d=\"M1 7.02246H3V5.02246L2.5 3.52246L5.36396 6.80073L6.77817 5.38652L3.5 2.52246L5 3.02246H7V1.02246H1V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M1 11.0225H3V13.0225L2.5 14.5225L5.36396 11.2442L6.77817 12.6584L3.5 15.5225L5 15.0225H7V17.0225H1V11.0225Z\" fill=\"white\"/>%0D%0A<path d=\"M17 7.02246H15V5.02246L15.5 3.52246L12.636 6.80073L11.2218 5.38652L14.5 2.52246L13 3.02246H11V1.02246H17V7.02246Z\" fill=\"white\"/>%0D%0A<path d=\"M17 11.0225H15V13.0225L15.5 14.5225L12.636 11.2442L11.2218 12.6584L14.5 15.5225L13 15.0225H11V17.0225H17V11.0225Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{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<g clip-path=\"url(%23clip0_201_1486)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1486\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1511)\">%0D%0A<path d=\"M0 18H6V13H0V18ZM12 13V18H18V13H12ZM12 0H6V5H12V0ZM4 10H14V12H16V8H10V6H8V8H2V12H4V10Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1511\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset{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<g clip-path=\"url(%23clip0_201_1484)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1484\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-obj-reset.disabled{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<g opacity=\"0.5\" clip-path=\"url(%23clip0_201_1509)\">%0D%0A<path d=\"M8.89796 16.9495C10.6981 16.7461 12.3759 15.9378 13.6569 14.6569L12.2505 13.2505C11.288 14.213 10.0273 14.8204 8.67472 14.9732C7.32212 15.126 5.95772 14.8152 4.80475 14.0916C3.65178 13.368 2.77852 12.2746 2.32786 10.9902C1.8772 9.70574 1.87582 8.30638 2.32394 7.02106C2.77207 5.73574 3.64316 4.64057 4.7947 3.91474C5.94624 3.18892 7.31003 2.87541 8.66292 3.02553C10.0158 3.17565 11.2777 3.78049 12.2421 4.7411C12.8851 5.38157 13.3705 6.15489 13.6687 7H11.5L15 11L18 7H15.746C15.3891 5.61766 14.6667 4.34898 13.6457 3.332C12.3622 2.05356 10.6828 1.24859 8.88226 1.04881C7.08174 0.849026 5.26673 1.26626 3.73419 2.23223C2.20166 3.1982 1.04235 4.65572 0.445956 6.3663C-0.150436 8.07688 -0.148597 9.93924 0.451173 11.6486C1.05094 13.358 2.21313 14.8133 3.74757 15.7762C5.28201 16.7392 7.09784 17.1528 8.89796 16.9495Z\" fill=\"white\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_201_1509\">%0D%0A<rect width=\"18\" height=\"18\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp{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=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A')}.ui-icon-reset-vp.disabled{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<g opacity=\"0.5\">%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 4H11V14H0V4ZM2 6H9V12H2V6Z\" fill=\"white\"/>%0D%0A<path d=\"M13 9L18 4V14L13 9Z\" fill=\"white\"/>%0D%0A</g>%0D%0A</svg>%0D%0A')}.ui-icon-front-view{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-front-view:hover{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M15 8V11.1111V15H11.1111H8V8H15Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view{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=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-perspective-view:hover{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=\"M8.52164 2.02502L17 3.12038V11.4679L10.047 17.2622L2 11.5141V3.15828L8.52164 2.02502ZM8.52164 3.43201L5.48519 3.9986L9.97726 5.13177L13.0033 3.9986L8.52164 3.43201ZM15.335 4.95299L11 6.72026V14.0564L15.335 10.754V4.95299ZM9 14.0564V6.7538L3.52394 4.95299V10.754L9 14.0564Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view{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=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-side-view:hover{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=\"M3 3L12 3L16 7L16 16L7 16L3 12L3 3ZM11.5 4L14 6.5L7.5 6.5L5 4L11.5 4ZM8 14.5L8 8L14.5 8L14.5 14.5L8 14.5ZM6.5 7.5L6.5 14L4 11.5L4 5L6.5 7.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M7 7.5L3.5 4.5L3.5 12L6.5 14.5L7 7.5Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A')}.ui-icon-top-view:hover{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=\"M3 3L3 12L7 16L16 16L16 7L12 3L3 3ZM4 11.5L6.5 14L6.5 7.5L4 5L4 11.5ZM14.5 8L8 8L8 14.5L14.5 14.5L14.5 8ZM7.5 6.5L14 6.5L11.5 4L5 4L7.5 6.5Z\" fill=\"%23FE5000\"/>%0D%0A<path d=\"M6.75 7L3.5 3.5H12L15 7H6.75Z\" fill=\"%23FE5000\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
3213
|
+
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: ResizeObserverService }, { type: i0.ElementRef }], propDecorators: { itemStates: [{
|
|
2877
3214
|
type: Input
|
|
2878
3215
|
}], items: [{
|
|
2879
3216
|
type: Input
|
|
2880
|
-
}],
|
|
3217
|
+
}], isCollapsed: [{
|
|
2881
3218
|
type: Input,
|
|
2882
3219
|
args: [{ transform: booleanAttribute }]
|
|
2883
3220
|
}], isEmbedded: [{
|
|
@@ -2893,6 +3230,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
2893
3230
|
type: Output
|
|
2894
3231
|
}], subItemClicked: [{
|
|
2895
3232
|
type: Output
|
|
3233
|
+
}], resizedragging: [{
|
|
3234
|
+
type: Output
|
|
2896
3235
|
}] } });
|
|
2897
3236
|
|
|
2898
3237
|
class BimplusUserMenuComponent extends BimplusLocalizedWidgetComponent {
|
|
@@ -4848,5 +5187,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.10", ngImpo
|
|
|
4848
5187
|
* Generated bundle index. Do not edit.
|
|
4849
5188
|
*/
|
|
4850
5189
|
|
|
4851
|
-
export { BimplusConnectionDesignerComponent, BimplusConnectionDesignerResultsComponent, BimplusContactComponent, BimplusContextMenuComponent, BimplusFlatTreeComponent, BimplusFloatingBarHideObjectsComponent, BimplusFloatingBarIsolationObjectsComponent, BimplusFloatingBarProjectNavigatorComponent, BimplusLanguageMenuComponent, BimplusLocalizedWidgetComponent, BimplusMainMenuComponent, BimplusNavbarComponent, BimplusNotifyComponent, BimplusObjectNavigatorComponent, BimplusProjectMenuComponent, BimplusScrollableContainerComponent, BimplusSidenavComponent, BimplusSidenavDrawerContentComponent, BimplusStorageInfoComponent, BimplusToolHubComponent, BimplusTooltipMessageComponent, BimplusTouchMenuComponent, BimplusUserMenuComponent, BimplusZoomComponent, FilterCriteriaSelectionMode, LanguageStringsService, LoadingSpinnerComponent, LogoState, MaxFilterCriteria, NgxBimplusComponentsComponent, NgxBimplusComponentsService };
|
|
5190
|
+
export { BimplusConnectionDesignerComponent, BimplusConnectionDesignerResultsComponent, BimplusContactComponent, BimplusContextMenuComponent, BimplusFlatTreeComponent, BimplusFloatingBarHideObjectsComponent, BimplusFloatingBarIsolationObjectsComponent, BimplusFloatingBarProjectNavigatorComponent, BimplusLanguageMenuComponent, BimplusLocalizedWidgetComponent, BimplusMainMenuComponent, BimplusNavbarComponent, BimplusNotifyComponent, BimplusObjectNavigatorComponent, BimplusProjectMenuComponent, BimplusScrollableContainerComponent, BimplusSidenavComponent, BimplusSidenavDrawerContentComponent, BimplusStorageInfoComponent, BimplusToolHubComponent, BimplusTooltipMessageComponent, BimplusTouchMenuComponent, BimplusUserMenuComponent, BimplusZoomComponent, FilterCriteriaSelectionMode, LanguageStringsService, LoadingSpinnerComponent, LogoState, MaxFilterCriteria, NgxBimplusComponentsComponent, NgxBimplusComponentsService, ResizeObserverService };
|
|
4852
5191
|
//# sourceMappingURL=ngx-bimplus-components.mjs.map
|