ngx-bimplus-components 0.0.177 → 0.0.178
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.
|
@@ -14,7 +14,6 @@ import { takeUntilDestroyed, toSignal } from '@angular/core/rxjs-interop';
|
|
|
14
14
|
import { MatIconModule } from '@angular/material/icon';
|
|
15
15
|
import * as i2$1 from '@angular/material/button';
|
|
16
16
|
import { MatButtonModule } from '@angular/material/button';
|
|
17
|
-
import { MatCheckbox } from '@angular/material/checkbox';
|
|
18
17
|
import * as i1$1 from '@angular/material/tree';
|
|
19
18
|
import { MatTreeFlattener, MatTreeFlatDataSource, MatTreeModule } from '@angular/material/tree';
|
|
20
19
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
@@ -215,6 +214,119 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
215
214
|
type: Output
|
|
216
215
|
}] } });
|
|
217
216
|
|
|
217
|
+
class BimplusConnectionDesignerService {
|
|
218
|
+
set activeStep(activeStep) {
|
|
219
|
+
this._activeStep = activeStep;
|
|
220
|
+
this.activeStepChange$.next(this._activeStep);
|
|
221
|
+
}
|
|
222
|
+
get activeStep() {
|
|
223
|
+
return this._activeStep;
|
|
224
|
+
}
|
|
225
|
+
constructor() {
|
|
226
|
+
this._activeStep = 0;
|
|
227
|
+
this.activeStepChange$ = new Subject();
|
|
228
|
+
}
|
|
229
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
230
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerService, providedIn: 'root' }); }
|
|
231
|
+
}
|
|
232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerService, decorators: [{
|
|
233
|
+
type: Injectable,
|
|
234
|
+
args: [{ providedIn: 'root' }]
|
|
235
|
+
}], ctorParameters: () => [] });
|
|
236
|
+
|
|
237
|
+
class BimplusConnectionDesignerComponent extends BimplusLocalizedWidgetComponent {
|
|
238
|
+
constructor(translateService, connectionDesignerService) {
|
|
239
|
+
super(translateService);
|
|
240
|
+
this.connectionDesignerService = connectionDesignerService;
|
|
241
|
+
this.buttonRowItems = [];
|
|
242
|
+
this.config = [];
|
|
243
|
+
// #region Design codes
|
|
244
|
+
this.chooseCode = "_Choose_a_design_code"; // Message for drop down list
|
|
245
|
+
// Design method codes defined in SDS2 (see WebSdk Connexis service for possible values)
|
|
246
|
+
this.designCodes = [
|
|
247
|
+
{ id: "0", name: "EN 1993-1-8 (Eurocode 3)", code: "EURO05", codeNumber: 9 },
|
|
248
|
+
{ id: "1", name: "AISC 360-22 (16th Ed.): LRFD", code: "LRFD16", codeNumber: 19 },
|
|
249
|
+
{ id: "2", name: "AISC 360-22 (16th Ed.): ASD", code: "ASD16", codeNumber: 18 },
|
|
250
|
+
{ id: "3", name: "CSA S16:19 (CISC 12th Ed.)", code: "CSA12", codeNumber: 17 },
|
|
251
|
+
];
|
|
252
|
+
this.currentDesignCode = null;
|
|
253
|
+
this.designCodeChanged = new EventEmitter();
|
|
254
|
+
this._calculationCanBeStarted = true;
|
|
255
|
+
this.startCalculationClicked = new EventEmitter();
|
|
256
|
+
connectionDesignerService.activeStepChange$.subscribe((step) => {
|
|
257
|
+
if (step === 0) {
|
|
258
|
+
this.resetDesignCode();
|
|
259
|
+
}
|
|
260
|
+
});
|
|
261
|
+
}
|
|
262
|
+
ngOnInit() {
|
|
263
|
+
this.config.push({
|
|
264
|
+
id: "next",
|
|
265
|
+
title: this.translateService.instant('_Next'),
|
|
266
|
+
tooltip: this.translateService.instant('_Next'),
|
|
267
|
+
disabled: true,
|
|
268
|
+
buttonStyle: 'primary'
|
|
269
|
+
});
|
|
270
|
+
this.buttonRowItems = this.config;
|
|
271
|
+
}
|
|
272
|
+
set activeDesignCode(value) {
|
|
273
|
+
this.currentDesignCode = value;
|
|
274
|
+
this.designCodeChanged.emit(this.currentDesignCode);
|
|
275
|
+
}
|
|
276
|
+
get activeDesignCode() {
|
|
277
|
+
return this.currentDesignCode;
|
|
278
|
+
}
|
|
279
|
+
_updateButtonState(buttonId, disabled) {
|
|
280
|
+
const _button = this.config.find(btn => btn.id === buttonId);
|
|
281
|
+
if (!_button) {
|
|
282
|
+
return;
|
|
283
|
+
}
|
|
284
|
+
_button.disabled = disabled;
|
|
285
|
+
}
|
|
286
|
+
set calculationCanBeStarted(value) {
|
|
287
|
+
this._calculationCanBeStarted = value;
|
|
288
|
+
this._updateButtonState("next", !value);
|
|
289
|
+
}
|
|
290
|
+
get calculationCanBeStarted() {
|
|
291
|
+
return this._calculationCanBeStarted;
|
|
292
|
+
}
|
|
293
|
+
buttonClicked($event) {
|
|
294
|
+
if ($event.id === "next") {
|
|
295
|
+
this.connectionDesignerService.activeStep = 1;
|
|
296
|
+
if (this._calculationCanBeStarted) {
|
|
297
|
+
this.startCalculationClicked.emit();
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
resetDesignCode() {
|
|
302
|
+
this.activeDesignCode = null;
|
|
303
|
+
}
|
|
304
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerComponent, deps: [{ token: i1.TranslateService }, { token: BimplusConnectionDesignerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
305
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: BimplusConnectionDesignerComponent, isStandalone: true, selector: "lib-bimplus-connection-designer", inputs: { designCodes: "designCodes", currentDesignCode: "currentDesignCode", calculationCanBeStarted: "calculationCanBeStarted" }, outputs: { designCodeChanged: "designCodeChanged", startCalculationClicked: "startCalculationClicked" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-sidenav-drawer-content\r\n [header]=\"'_Connection_designer' | translate\"\r\n>\r\n <div class=\"connection-designer-content\">\r\n @if(connectionDesignerService.activeStep === 0) {\r\n <div class=\"cross-button\">\r\n <div class=\"cross\"\r\n (click)=\"resetDesignCode()\"\r\n (keypress)=\"resetDesignCode()\"\r\n >\r\n </div>\r\n </div>\r\n <div class=\"title\">\r\n {{ \"_Select_the_code\" | translate }}\r\n </div>\r\n <div class=\"description\">\r\n {{ \"_Activate_all_objects_to_make_a_connection\" | translate }}\r\n </div>\r\n <div class=\"note\">\r\n {{ \"_Activate_all_objects_note\" | translate }}\r\n </div>\r\n\r\n @if(designCodes.length > 0){\r\n <div class=\"design-codes\">\r\n <ng-select\r\n class=\"design-codes-dropdown\"\r\n [(ngModel)]=\"activeDesignCode\"\r\n [clearable]=\"false\"\r\n [searchable]=\"false\"\r\n [placeholder]=\"chooseCode | translate\"\r\n >\r\n <ng-option *ngFor=\"let code of designCodes\" [value]=\"code\">{{\r\n code.name\r\n }}</ng-option>\r\n </ng-select>\r\n </div>\r\n } @else {\r\n <div class=\"no-design-codes\">\r\n {{ \"_No_design_codes_defined\" | translate }}\r\n </div>\r\n }\r\n\r\n <lib-bimplus-buttons-row\r\n [items]=\"buttonRowItems\"\r\n (buttonClicked)=\"buttonClicked($event)\"\r\n ></lib-bimplus-buttons-row>\r\n\r\n } @else {\r\n <ng-content select=\"lib-bimplus-connection-designer-results\"></ng-content>\r\n }\r\n </div>\r\n</lib-bimplus-sidenav-drawer-content>\r\n", styles: ["@charset \"UTF-8\";.ng-select.ng-select-opened>.ng-select-container{background:var(--select-container-open-background-color-enabled);border-color:var(--select-container-open-border-color-enabled)}.ng-select.ng-select-opened>.ng-select-container:hover{box-shadow:none}.ng-select.ng-select-opened>.ng-select-container .ng-arrow{top:-2px;border-color:transparent transparent var(--select-container-open-arrow-border-color-enabled);border-width:0 5px 5px}.ng-select.ng-select-opened>.ng-select-container .ng-arrow:hover{border-color:transparent transparent var(--select-container-open-arrow-border-color-hovered)}.ng-select.ng-select-opened.ng-select-top>.ng-select-container{border-top-right-radius:0;border-top-left-radius:0}.ng-select.ng-select-opened.ng-select-right>.ng-select-container{border-top-right-radius:0;border-bottom-right-radius:0}.ng-select.ng-select-opened.ng-select-bottom>.ng-select-container{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-opened.ng-select-left>.ng-select-container{border-top-left-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-disabled>.ng-select-container{background-color:var(--select-container-background-color-disabled)}.ng-select .ng-has-value .ng-placeholder{display:none}.ng-select .ng-select-container{color:var(--select-container-text-color-enabled);background-color:var(--select-container-background-color-enabled);border-radius:0;border:1px solid var(--select-container-border-color-enabled);min-height:36px;align-items:center}.ng-select .ng-select-container:hover{box-shadow:0 1px 0 var(--select-container-box-shadow-color-hovered);background-color:var(--select-container-background-color-hovered)}.ng-select .ng-select-container .ng-value-container{align-items:center;padding-left:10px}[dir=rtl] .ng-select .ng-select-container .ng-value-container{padding-right:10px;padding-left:0}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:var(--select-container-placeholder-text-color-enabled)}.ng-select.ng-select-single .ng-select-container{height:36px}.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{top:5px;left:0;padding-left:10px;padding-right:50px}[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{padding-right:10px;padding-left:50px}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{background-color:var(--select-multiple-disabled-container-value-background-color-enabled);border:1px solid var(--select-multiple-disabled-container-value-border-color-enabled)}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-label{padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-top:5px;padding-left:7px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-right:7px;padding-left:0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{font-size:.9em;margin-bottom:5px;color:var(--select-multiple-container-value-text-color-enabled);background-color:var(--select-multiple-container-value-background-color-enabled);border-radius:2px;margin-right:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-right:0;margin-left:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:var(--select-multiple-container-value-background-color-disabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:0;padding-right:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label,.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon{display:inline-block;padding:1px 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover{background-color:var(--select-multiple-container-value-icon-background-color-hovered)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-right:1px solid var(--select-multiple-container-value-icon-left-border-color-enbabled)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-left:1px solid var(--select-multiple-container-value-icon-left-border-color-enbabled);border-right:none}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:1px solid var(--select-multiple-container-value-icon-right-border-color-enbabled)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:0;border-right:1px solid var(--select-multiple-container-value-icon-right-border-color-enbabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 0 3px 3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 3px 3px 0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input>input{color:var(--select-multiple-container-value-input-text-color-enabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{top:5px;padding-bottom:5px;padding-left:3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{padding-right:3px;padding-left:0}.ng-select .ng-clear-wrapper{color:var(--select-clear-wrapper-text-color-enabled)}.ng-select .ng-clear-wrapper:hover .ng-clear{color:var(--select-clear-wrapper-text-color-hovered)}.ng-select .ng-clear-wrapper:focus .ng-clear{color:var(--select-clear-wrapper-text-color-focused)}.ng-select .ng-clear-wrapper:focus{outline:none}.ng-select .ng-spinner-zone{padding:5px 5px 0 0}[dir=rtl] .ng-select .ng-spinner-zone{padding:5px 0 0 5px}.ng-select .ng-arrow-wrapper{width:25px;padding-right:5px}[dir=rtl] .ng-select .ng-arrow-wrapper{padding-left:5px;padding-right:0}.ng-select .ng-arrow-wrapper:hover .ng-arrow{border-top-color:var(--select-arrow-wrapper-border-color-hovored)}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:var(--select-arrow-wrapper-border-color-enabled) transparent transparent;border-style:solid;border-width:5px 5px 2.5px}.ng-dropdown-panel{background-color:var(--dropdown-panel-background-color-enabled);border:1px solid var(--dropdown-panel-border-color-enabled);box-shadow:0 1px 0 var(--dropdown-panel-box-shadow-color-enabled);left:0}.ng-dropdown-panel.ng-select-top{bottom:100%;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-top-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.ng-dropdown-panel.ng-select-right{left:100%;top:0;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-right-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-right .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px}.ng-dropdown-panel.ng-select-bottom{top:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-color:var(--dropdown-panel-select-bottom-border-color-enabled);margin-top:-1px}.ng-dropdown-panel.ng-select-bottom .ng-dropdown-panel-items .ng-option:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-dropdown-panel.ng-select-left{left:-100%;top:0;border-top-left-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-left-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-left .ng-dropdown-panel-items .ng-option:first-child{border-top-left-radius:4px}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid var(--dropdown-panel-header-border-color-enabled);padding:5px 7px}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid var(--dropdown-panel-footer-border-color-enabled);padding:5px 7px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{-webkit-user-select:none;user-select:none;padding:8px 10px;font-weight:500;color:var(--dropdown-panel-items-text-color-enabled);cursor:pointer}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled{cursor:default}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background-color:var(--dropdown-panel-items-marked-background-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected.ng-option-marked{color:var(--dropdown-panel-items-option-selected-text-color-enabled);background-color:var(--dropdown-panel-items-option-selected-background-color-enabled);font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{background-color:var(--dropdown-panel-items-option-background-color-enabled);color:var(--dropdown-panel-items-option-text-color-enabled);padding:8px 10px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked{color:var(--dropdown-panel-items-option-selected2-text-color-enabled);background-color:var(--dropdown-panel-items-option-selected2-background-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected .ng-option-label,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked .ng-option-label{font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background-color:var(--dropdown-panel-items-marked-background-color-enabled);color:var(--dropdown-panel-items-marked-text-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:var(--dropdown-panel-items-text-color-disabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-left:22px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-right:22px;padding-left:0}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{font-size:80%;font-weight:400;padding-right:5px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{padding-left:5px;padding-right:0}[dir=rtl] .ng-dropdown-panel{direction:rtl;text-align:right}.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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%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}:host{--sidenav-drawer-content-offset: 0;color:var(--host-text-color-enabled);font-family:var(--font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif);font-size:var(--font-size, 1.3rem);font-weight:400}lib-bimplus-sidenav-drawer-content{display:flex;flex-direction:column;flex-grow:1;flex-shrink:1;max-height:100%;min-height:0}.button-row{display:flex;margin-top:.8rem;margin-bottom:.8rem;justify-content:flex-end}.connection-designer-content{font-family:var(--font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif);font-size:var(--font-size, 1.3rem);margin:1.4rem 2.2rem;display:flex;flex-direction:column;flex-grow:1;flex-shrink:1;max-height:100%;min-height:0}.connection-designer-content>.button-row{display:flex;margin-top:.8rem;margin-bottom:.8rem;justify-content:flex-end}.connection-designer-content>.cross-button{display:none;flex-direction:row;justify-content:right;width:100%;height:1.6rem}.connection-designer-content>.cross-button>.cross{min-width:1.6rem;min-height:100%;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\" width=\"18\" height=\"18\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"%23444\" d=\"M13.5 5.4L12.1 4 8.5 7.6 4.9 4 3.5 5.4 7.1 9l-3.6 3.6L4.9 14l3.6-3.6 3.6 3.6 1.4-1.4L9.9 9z\"/></svg>%0D%0A');background-repeat:no-repeat;background-position:center center;background-size:cover;cursor:pointer}.connection-designer-content>.title{padding-bottom:1rem;font-size:var(--title-font-size, 1.4rem);font-weight:var(--title-font-weight, 700);font-family:var(--title-font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif)}.connection-designer-content>.description{padding-bottom:1rem}.connection-designer-content>.note{padding-bottom:1rem}.connection-designer-content>.design-codes{padding-bottom:1rem;margin-bottom:.1rem;height:2.4rem}.connection-designer-content>.design-codes>.design-codes-dropdown .ng-select-container{height:2.4rem;min-height:2.4rem}.connection-designer-content>.no-design-codes{display:block;width:100%;color:var(--connection-designer-content-no-design-codes-text-color-enabled);text-align:left;padding-bottom:.8rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: NgSelectModule }, { kind: "component", type: i4.NgSelectComponent, selector: "ng-select", inputs: ["ariaLabelDropdown", "bindLabel", "bindValue", "ariaLabel", "markFirst", "placeholder", "fixedPlaceholder", "notFoundText", "typeToSearchText", "preventToggleOnRightClick", "addTagText", "loadingText", "clearAllText", "appearance", "dropdownPosition", "appendTo", "loading", "closeOnSelect", "hideSelected", "selectOnTab", "openOnEnter", "maxSelectedItems", "groupBy", "groupValue", "bufferAmount", "virtualScroll", "selectableGroup", "selectableGroupAsModel", "searchFn", "trackByFn", "clearOnBackspace", "labelForId", "inputAttrs", "tabIndex", "readonly", "searchWhileComposing", "minTermLength", "editableSearchTerm", "ngClass", "typeahead", "multiple", "addTag", "searchable", "clearable", "isOpen", "items", "compareWith", "clearSearchOnAdd", "deselectOnClick", "keyDownFn"], outputs: ["blur", "focus", "change", "open", "close", "search", "clear", "add", "remove", "scroll", "scrollToEnd"] }, { kind: "component", type: i4.NgOptionComponent, selector: "ng-option", inputs: ["value", "disabled"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "component", type: BimplusSidenavDrawerContentComponent, selector: "lib-bimplus-sidenav-drawer-content", inputs: ["header", "isLoading", "loadingSpinnerText"] }, { kind: "component", type: BimplusButtonsRowComponent, selector: "lib-bimplus-buttons-row", inputs: ["isMultiple", "items", "canUpdateObject"], outputs: ["fileChanged", "buttonClicked"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
306
|
+
}
|
|
307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerComponent, decorators: [{
|
|
308
|
+
type: Component,
|
|
309
|
+
args: [{ selector: 'lib-bimplus-connection-designer', imports: [
|
|
310
|
+
CommonModule,
|
|
311
|
+
FormsModule,
|
|
312
|
+
NgSelectModule,
|
|
313
|
+
TranslateModule,
|
|
314
|
+
BimplusSidenavDrawerContentComponent,
|
|
315
|
+
BimplusButtonsRowComponent,
|
|
316
|
+
BimplusSidenavDrawerContentComponent
|
|
317
|
+
], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-sidenav-drawer-content\r\n [header]=\"'_Connection_designer' | translate\"\r\n>\r\n <div class=\"connection-designer-content\">\r\n @if(connectionDesignerService.activeStep === 0) {\r\n <div class=\"cross-button\">\r\n <div class=\"cross\"\r\n (click)=\"resetDesignCode()\"\r\n (keypress)=\"resetDesignCode()\"\r\n >\r\n </div>\r\n </div>\r\n <div class=\"title\">\r\n {{ \"_Select_the_code\" | translate }}\r\n </div>\r\n <div class=\"description\">\r\n {{ \"_Activate_all_objects_to_make_a_connection\" | translate }}\r\n </div>\r\n <div class=\"note\">\r\n {{ \"_Activate_all_objects_note\" | translate }}\r\n </div>\r\n\r\n @if(designCodes.length > 0){\r\n <div class=\"design-codes\">\r\n <ng-select\r\n class=\"design-codes-dropdown\"\r\n [(ngModel)]=\"activeDesignCode\"\r\n [clearable]=\"false\"\r\n [searchable]=\"false\"\r\n [placeholder]=\"chooseCode | translate\"\r\n >\r\n <ng-option *ngFor=\"let code of designCodes\" [value]=\"code\">{{\r\n code.name\r\n }}</ng-option>\r\n </ng-select>\r\n </div>\r\n } @else {\r\n <div class=\"no-design-codes\">\r\n {{ \"_No_design_codes_defined\" | translate }}\r\n </div>\r\n }\r\n\r\n <lib-bimplus-buttons-row\r\n [items]=\"buttonRowItems\"\r\n (buttonClicked)=\"buttonClicked($event)\"\r\n ></lib-bimplus-buttons-row>\r\n\r\n } @else {\r\n <ng-content select=\"lib-bimplus-connection-designer-results\"></ng-content>\r\n }\r\n </div>\r\n</lib-bimplus-sidenav-drawer-content>\r\n", styles: ["@charset \"UTF-8\";.ng-select.ng-select-opened>.ng-select-container{background:var(--select-container-open-background-color-enabled);border-color:var(--select-container-open-border-color-enabled)}.ng-select.ng-select-opened>.ng-select-container:hover{box-shadow:none}.ng-select.ng-select-opened>.ng-select-container .ng-arrow{top:-2px;border-color:transparent transparent var(--select-container-open-arrow-border-color-enabled);border-width:0 5px 5px}.ng-select.ng-select-opened>.ng-select-container .ng-arrow:hover{border-color:transparent transparent var(--select-container-open-arrow-border-color-hovered)}.ng-select.ng-select-opened.ng-select-top>.ng-select-container{border-top-right-radius:0;border-top-left-radius:0}.ng-select.ng-select-opened.ng-select-right>.ng-select-container{border-top-right-radius:0;border-bottom-right-radius:0}.ng-select.ng-select-opened.ng-select-bottom>.ng-select-container{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-opened.ng-select-left>.ng-select-container{border-top-left-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-disabled>.ng-select-container{background-color:var(--select-container-background-color-disabled)}.ng-select .ng-has-value .ng-placeholder{display:none}.ng-select .ng-select-container{color:var(--select-container-text-color-enabled);background-color:var(--select-container-background-color-enabled);border-radius:0;border:1px solid var(--select-container-border-color-enabled);min-height:36px;align-items:center}.ng-select .ng-select-container:hover{box-shadow:0 1px 0 var(--select-container-box-shadow-color-hovered);background-color:var(--select-container-background-color-hovered)}.ng-select .ng-select-container .ng-value-container{align-items:center;padding-left:10px}[dir=rtl] .ng-select .ng-select-container .ng-value-container{padding-right:10px;padding-left:0}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:var(--select-container-placeholder-text-color-enabled)}.ng-select.ng-select-single .ng-select-container{height:36px}.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{top:5px;left:0;padding-left:10px;padding-right:50px}[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{padding-right:10px;padding-left:50px}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{background-color:var(--select-multiple-disabled-container-value-background-color-enabled);border:1px solid var(--select-multiple-disabled-container-value-border-color-enabled)}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-label{padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-top:5px;padding-left:7px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-right:7px;padding-left:0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{font-size:.9em;margin-bottom:5px;color:var(--select-multiple-container-value-text-color-enabled);background-color:var(--select-multiple-container-value-background-color-enabled);border-radius:2px;margin-right:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-right:0;margin-left:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:var(--select-multiple-container-value-background-color-disabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:0;padding-right:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label,.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon{display:inline-block;padding:1px 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover{background-color:var(--select-multiple-container-value-icon-background-color-hovered)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-right:1px solid var(--select-multiple-container-value-icon-left-border-color-enbabled)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-left:1px solid var(--select-multiple-container-value-icon-left-border-color-enbabled);border-right:none}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:1px solid var(--select-multiple-container-value-icon-right-border-color-enbabled)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:0;border-right:1px solid var(--select-multiple-container-value-icon-right-border-color-enbabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 0 3px 3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 3px 3px 0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input>input{color:var(--select-multiple-container-value-input-text-color-enabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{top:5px;padding-bottom:5px;padding-left:3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{padding-right:3px;padding-left:0}.ng-select .ng-clear-wrapper{color:var(--select-clear-wrapper-text-color-enabled)}.ng-select .ng-clear-wrapper:hover .ng-clear{color:var(--select-clear-wrapper-text-color-hovered)}.ng-select .ng-clear-wrapper:focus .ng-clear{color:var(--select-clear-wrapper-text-color-focused)}.ng-select .ng-clear-wrapper:focus{outline:none}.ng-select .ng-spinner-zone{padding:5px 5px 0 0}[dir=rtl] .ng-select .ng-spinner-zone{padding:5px 0 0 5px}.ng-select .ng-arrow-wrapper{width:25px;padding-right:5px}[dir=rtl] .ng-select .ng-arrow-wrapper{padding-left:5px;padding-right:0}.ng-select .ng-arrow-wrapper:hover .ng-arrow{border-top-color:var(--select-arrow-wrapper-border-color-hovored)}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:var(--select-arrow-wrapper-border-color-enabled) transparent transparent;border-style:solid;border-width:5px 5px 2.5px}.ng-dropdown-panel{background-color:var(--dropdown-panel-background-color-enabled);border:1px solid var(--dropdown-panel-border-color-enabled);box-shadow:0 1px 0 var(--dropdown-panel-box-shadow-color-enabled);left:0}.ng-dropdown-panel.ng-select-top{bottom:100%;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-top-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.ng-dropdown-panel.ng-select-right{left:100%;top:0;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-right-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-right .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px}.ng-dropdown-panel.ng-select-bottom{top:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-color:var(--dropdown-panel-select-bottom-border-color-enabled);margin-top:-1px}.ng-dropdown-panel.ng-select-bottom .ng-dropdown-panel-items .ng-option:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-dropdown-panel.ng-select-left{left:-100%;top:0;border-top-left-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-left-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-left .ng-dropdown-panel-items .ng-option:first-child{border-top-left-radius:4px}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid var(--dropdown-panel-header-border-color-enabled);padding:5px 7px}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid var(--dropdown-panel-footer-border-color-enabled);padding:5px 7px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{-webkit-user-select:none;user-select:none;padding:8px 10px;font-weight:500;color:var(--dropdown-panel-items-text-color-enabled);cursor:pointer}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled{cursor:default}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background-color:var(--dropdown-panel-items-marked-background-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected.ng-option-marked{color:var(--dropdown-panel-items-option-selected-text-color-enabled);background-color:var(--dropdown-panel-items-option-selected-background-color-enabled);font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{background-color:var(--dropdown-panel-items-option-background-color-enabled);color:var(--dropdown-panel-items-option-text-color-enabled);padding:8px 10px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked{color:var(--dropdown-panel-items-option-selected2-text-color-enabled);background-color:var(--dropdown-panel-items-option-selected2-background-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected .ng-option-label,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked .ng-option-label{font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background-color:var(--dropdown-panel-items-marked-background-color-enabled);color:var(--dropdown-panel-items-marked-text-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:var(--dropdown-panel-items-text-color-disabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-left:22px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-right:22px;padding-left:0}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{font-size:80%;font-weight:400;padding-right:5px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{padding-left:5px;padding-right:0}[dir=rtl] .ng-dropdown-panel{direction:rtl;text-align:right}.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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%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}:host{--sidenav-drawer-content-offset: 0;color:var(--host-text-color-enabled);font-family:var(--font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif);font-size:var(--font-size, 1.3rem);font-weight:400}lib-bimplus-sidenav-drawer-content{display:flex;flex-direction:column;flex-grow:1;flex-shrink:1;max-height:100%;min-height:0}.button-row{display:flex;margin-top:.8rem;margin-bottom:.8rem;justify-content:flex-end}.connection-designer-content{font-family:var(--font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif);font-size:var(--font-size, 1.3rem);margin:1.4rem 2.2rem;display:flex;flex-direction:column;flex-grow:1;flex-shrink:1;max-height:100%;min-height:0}.connection-designer-content>.button-row{display:flex;margin-top:.8rem;margin-bottom:.8rem;justify-content:flex-end}.connection-designer-content>.cross-button{display:none;flex-direction:row;justify-content:right;width:100%;height:1.6rem}.connection-designer-content>.cross-button>.cross{min-width:1.6rem;min-height:100%;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\" width=\"18\" height=\"18\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"%23444\" d=\"M13.5 5.4L12.1 4 8.5 7.6 4.9 4 3.5 5.4 7.1 9l-3.6 3.6L4.9 14l3.6-3.6 3.6 3.6 1.4-1.4L9.9 9z\"/></svg>%0D%0A');background-repeat:no-repeat;background-position:center center;background-size:cover;cursor:pointer}.connection-designer-content>.title{padding-bottom:1rem;font-size:var(--title-font-size, 1.4rem);font-weight:var(--title-font-weight, 700);font-family:var(--title-font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif)}.connection-designer-content>.description{padding-bottom:1rem}.connection-designer-content>.note{padding-bottom:1rem}.connection-designer-content>.design-codes{padding-bottom:1rem;margin-bottom:.1rem;height:2.4rem}.connection-designer-content>.design-codes>.design-codes-dropdown .ng-select-container{height:2.4rem;min-height:2.4rem}.connection-designer-content>.no-design-codes{display:block;width:100%;color:var(--connection-designer-content-no-design-codes-text-color-enabled);text-align:left;padding-bottom:.8rem}\n"] }]
|
|
318
|
+
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: BimplusConnectionDesignerService }], propDecorators: { designCodes: [{
|
|
319
|
+
type: Input
|
|
320
|
+
}], currentDesignCode: [{
|
|
321
|
+
type: Input
|
|
322
|
+
}], designCodeChanged: [{
|
|
323
|
+
type: Output
|
|
324
|
+
}], calculationCanBeStarted: [{
|
|
325
|
+
type: Input
|
|
326
|
+
}], startCalculationClicked: [{
|
|
327
|
+
type: Output
|
|
328
|
+
}] } });
|
|
329
|
+
|
|
218
330
|
class ExpansionPanelComponent {
|
|
219
331
|
constructor() {
|
|
220
332
|
// #region public fields
|
|
@@ -311,26 +423,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
311
423
|
args: [{ selector: 'lib-bimplus-scrollable-container', imports: [], encapsulation: ViewEncapsulation.None, template: "<div class=\"scrollable-container\">\r\n <ng-content></ng-content>\r\n</div>\r\n", styles: ["[data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;inset:0;width:auto!important;height:auto!important;z-index:0}.simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;position:absolute;inset:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{display:none;width:0;height:0}.simplebar-content:before,.simplebar-content:after{content:\" \";display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}[data-simplebar].simplebar-dragging,[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;left:0;right:0;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:\"\";background:#000;border-radius:7px;left:2px;right:2px;opacity:0;transition:opacity .2s .5s linear}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition-delay:0s;transition-duration:0s}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-scrollbar:before{inset:2px}.simplebar-track.simplebar-horizontal{left:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{inset:0 auto 0 0;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.simplebar-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:scrollbar!important}.simplebar-dummy-scrollbar-size>div{width:200%;height:200%;margin:10px 0}.simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}.scrollable-container{height:100%;max-height:100%;padding-right:var(--scrollable-container-paddin-right, .8rem)}\n"] }]
|
|
312
424
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
313
425
|
|
|
314
|
-
class BimplusConnectionDesignerService {
|
|
315
|
-
set activeStep(activeStep) {
|
|
316
|
-
this._activeStep = activeStep;
|
|
317
|
-
this.activeStepChange$.next(this._activeStep);
|
|
318
|
-
}
|
|
319
|
-
get activeStep() {
|
|
320
|
-
return this._activeStep;
|
|
321
|
-
}
|
|
322
|
-
constructor() {
|
|
323
|
-
this._activeStep = 0;
|
|
324
|
-
this.activeStepChange$ = new Subject();
|
|
325
|
-
}
|
|
326
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
327
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerService, providedIn: 'root' }); }
|
|
328
|
-
}
|
|
329
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerService, decorators: [{
|
|
330
|
-
type: Injectable,
|
|
331
|
-
args: [{ providedIn: 'root' }]
|
|
332
|
-
}], ctorParameters: () => [] });
|
|
333
|
-
|
|
334
426
|
class BimplusConnectionDesignerResultsComponent extends BimplusLocalizedWidgetComponent {
|
|
335
427
|
constructor(translateService, connectionDesignerService) {
|
|
336
428
|
super(translateService);
|
|
@@ -459,100 +551,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
459
551
|
type: Output
|
|
460
552
|
}] } });
|
|
461
553
|
|
|
462
|
-
class BimplusConnectionDesignerComponent extends BimplusLocalizedWidgetComponent {
|
|
463
|
-
constructor(translateService, connectionDesignerService) {
|
|
464
|
-
super(translateService);
|
|
465
|
-
this.connectionDesignerService = connectionDesignerService;
|
|
466
|
-
this.buttonRowItems = [];
|
|
467
|
-
this.config = [];
|
|
468
|
-
// #region Design codes
|
|
469
|
-
this.chooseCode = "_Choose_a_design_code"; // Message for drop down list
|
|
470
|
-
// Design method codes defined in SDS2 (see WebSdk Connexis service for possible values)
|
|
471
|
-
this.designCodes = [
|
|
472
|
-
{ id: "0", name: "EN 1993-1-8 (Eurocode 3)", code: "EURO05", codeNumber: 9 },
|
|
473
|
-
{ id: "1", name: "AISC 360-22 (16th Ed.): LRFD", code: "LRFD16", codeNumber: 19 },
|
|
474
|
-
{ id: "2", name: "AISC 360-22 (16th Ed.): ASD", code: "ASD16", codeNumber: 18 },
|
|
475
|
-
{ id: "3", name: "CSA S16:19 (CISC 12th Ed.)", code: "CSA12", codeNumber: 17 },
|
|
476
|
-
];
|
|
477
|
-
this.currentDesignCode = null;
|
|
478
|
-
this.designCodeChanged = new EventEmitter();
|
|
479
|
-
this._calculationCanBeStarted = true;
|
|
480
|
-
this.startCalculationClicked = new EventEmitter();
|
|
481
|
-
connectionDesignerService.activeStepChange$.subscribe((step) => {
|
|
482
|
-
if (step === 0) {
|
|
483
|
-
this.resetDesignCode();
|
|
484
|
-
}
|
|
485
|
-
});
|
|
486
|
-
}
|
|
487
|
-
ngOnInit() {
|
|
488
|
-
this.config.push({
|
|
489
|
-
id: "next",
|
|
490
|
-
title: this.translateService.instant('_Next'),
|
|
491
|
-
tooltip: this.translateService.instant('_Next'),
|
|
492
|
-
disabled: true,
|
|
493
|
-
buttonStyle: 'primary'
|
|
494
|
-
});
|
|
495
|
-
this.buttonRowItems = this.config;
|
|
496
|
-
}
|
|
497
|
-
set activeDesignCode(value) {
|
|
498
|
-
this.currentDesignCode = value;
|
|
499
|
-
this.designCodeChanged.emit(this.currentDesignCode);
|
|
500
|
-
}
|
|
501
|
-
get activeDesignCode() {
|
|
502
|
-
return this.currentDesignCode;
|
|
503
|
-
}
|
|
504
|
-
_updateButtonState(buttonId, disabled) {
|
|
505
|
-
const _button = this.config.find(btn => btn.id === buttonId);
|
|
506
|
-
if (!_button) {
|
|
507
|
-
return;
|
|
508
|
-
}
|
|
509
|
-
_button.disabled = disabled;
|
|
510
|
-
}
|
|
511
|
-
set calculationCanBeStarted(value) {
|
|
512
|
-
this._calculationCanBeStarted = value;
|
|
513
|
-
this._updateButtonState("next", !value);
|
|
514
|
-
}
|
|
515
|
-
get calculationCanBeStarted() {
|
|
516
|
-
return this._calculationCanBeStarted;
|
|
517
|
-
}
|
|
518
|
-
buttonClicked($event) {
|
|
519
|
-
if ($event.id === "next") {
|
|
520
|
-
this.connectionDesignerService.activeStep = 1;
|
|
521
|
-
if (this._calculationCanBeStarted) {
|
|
522
|
-
this.startCalculationClicked.emit();
|
|
523
|
-
}
|
|
524
|
-
}
|
|
525
|
-
}
|
|
526
|
-
resetDesignCode() {
|
|
527
|
-
this.activeDesignCode = null;
|
|
528
|
-
}
|
|
529
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerComponent, deps: [{ token: i1.TranslateService }, { token: BimplusConnectionDesignerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
530
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.2", type: BimplusConnectionDesignerComponent, isStandalone: true, selector: "lib-bimplus-connection-designer", inputs: { designCodes: "designCodes", currentDesignCode: "currentDesignCode", calculationCanBeStarted: "calculationCanBeStarted" }, outputs: { designCodeChanged: "designCodeChanged", startCalculationClicked: "startCalculationClicked" }, providers: [TranslateService], usesInheritance: true, ngImport: i0, template: "<lib-bimplus-sidenav-drawer-content\r\n [header]=\"'_Connection_designer' | translate\"\r\n>\r\n <div class=\"connection-designer-content\">\r\n @if(connectionDesignerService.activeStep === 0) {\r\n <div class=\"cross-button\">\r\n <div class=\"cross\"\r\n (click)=\"resetDesignCode()\"\r\n (keypress)=\"resetDesignCode()\"\r\n >\r\n </div>\r\n </div>\r\n <div class=\"title\">\r\n {{ \"_Select_the_code\" | translate }}\r\n </div>\r\n <div class=\"description\">\r\n {{ \"_Activate_all_objects_to_make_a_connection\" | translate }}\r\n </div>\r\n <div class=\"note\">\r\n {{ \"_Activate_all_objects_note\" | translate }}\r\n </div>\r\n\r\n @if(designCodes.length > 0){\r\n <div class=\"design-codes\">\r\n <ng-select\r\n class=\"design-codes-dropdown\"\r\n [(ngModel)]=\"activeDesignCode\"\r\n [clearable]=\"false\"\r\n [searchable]=\"false\"\r\n [placeholder]=\"chooseCode | translate\"\r\n >\r\n <ng-option *ngFor=\"let code of designCodes\" [value]=\"code\">{{\r\n code.name\r\n }}</ng-option>\r\n </ng-select>\r\n </div>\r\n } @else {\r\n <div class=\"no-design-codes\">\r\n {{ \"_No_design_codes_defined\" | translate }}\r\n </div>\r\n }\r\n\r\n <lib-bimplus-buttons-row\r\n [items]=\"buttonRowItems\"\r\n (buttonClicked)=\"buttonClicked($event)\"\r\n ></lib-bimplus-buttons-row>\r\n\r\n } @else {\r\n <ng-content select=\"lib-bimplus-connection-designer-results\"></ng-content>\r\n }\r\n </div>\r\n</lib-bimplus-sidenav-drawer-content>\r\n", styles: ["@charset \"UTF-8\";.ng-select.ng-select-opened>.ng-select-container{background:var(--select-container-open-background-color-enabled);border-color:var(--select-container-open-border-color-enabled)}.ng-select.ng-select-opened>.ng-select-container:hover{box-shadow:none}.ng-select.ng-select-opened>.ng-select-container .ng-arrow{top:-2px;border-color:transparent transparent var(--select-container-open-arrow-border-color-enabled);border-width:0 5px 5px}.ng-select.ng-select-opened>.ng-select-container .ng-arrow:hover{border-color:transparent transparent var(--select-container-open-arrow-border-color-hovered)}.ng-select.ng-select-opened.ng-select-top>.ng-select-container{border-top-right-radius:0;border-top-left-radius:0}.ng-select.ng-select-opened.ng-select-right>.ng-select-container{border-top-right-radius:0;border-bottom-right-radius:0}.ng-select.ng-select-opened.ng-select-bottom>.ng-select-container{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-opened.ng-select-left>.ng-select-container{border-top-left-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-disabled>.ng-select-container{background-color:var(--select-container-background-color-disabled)}.ng-select .ng-has-value .ng-placeholder{display:none}.ng-select .ng-select-container{color:var(--select-container-text-color-enabled);background-color:var(--select-container-background-color-enabled);border-radius:0;border:1px solid var(--select-container-border-color-enabled);min-height:36px;align-items:center}.ng-select .ng-select-container:hover{box-shadow:0 1px 0 var(--select-container-box-shadow-color-hovered);background-color:var(--select-container-background-color-hovered)}.ng-select .ng-select-container .ng-value-container{align-items:center;padding-left:10px}[dir=rtl] .ng-select .ng-select-container .ng-value-container{padding-right:10px;padding-left:0}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:var(--select-container-placeholder-text-color-enabled)}.ng-select.ng-select-single .ng-select-container{height:36px}.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{top:5px;left:0;padding-left:10px;padding-right:50px}[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{padding-right:10px;padding-left:50px}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{background-color:var(--select-multiple-disabled-container-value-background-color-enabled);border:1px solid var(--select-multiple-disabled-container-value-border-color-enabled)}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-label{padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-top:5px;padding-left:7px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-right:7px;padding-left:0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{font-size:.9em;margin-bottom:5px;color:var(--select-multiple-container-value-text-color-enabled);background-color:var(--select-multiple-container-value-background-color-enabled);border-radius:2px;margin-right:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-right:0;margin-left:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:var(--select-multiple-container-value-background-color-disabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:0;padding-right:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label,.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon{display:inline-block;padding:1px 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover{background-color:var(--select-multiple-container-value-icon-background-color-hovered)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-right:1px solid var(--select-multiple-container-value-icon-left-border-color-enbabled)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-left:1px solid var(--select-multiple-container-value-icon-left-border-color-enbabled);border-right:none}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:1px solid var(--select-multiple-container-value-icon-right-border-color-enbabled)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:0;border-right:1px solid var(--select-multiple-container-value-icon-right-border-color-enbabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 0 3px 3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 3px 3px 0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input>input{color:var(--select-multiple-container-value-input-text-color-enabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{top:5px;padding-bottom:5px;padding-left:3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{padding-right:3px;padding-left:0}.ng-select .ng-clear-wrapper{color:var(--select-clear-wrapper-text-color-enabled)}.ng-select .ng-clear-wrapper:hover .ng-clear{color:var(--select-clear-wrapper-text-color-hovered)}.ng-select .ng-clear-wrapper:focus .ng-clear{color:var(--select-clear-wrapper-text-color-focused)}.ng-select .ng-clear-wrapper:focus{outline:none}.ng-select .ng-spinner-zone{padding:5px 5px 0 0}[dir=rtl] .ng-select .ng-spinner-zone{padding:5px 0 0 5px}.ng-select .ng-arrow-wrapper{width:25px;padding-right:5px}[dir=rtl] .ng-select .ng-arrow-wrapper{padding-left:5px;padding-right:0}.ng-select .ng-arrow-wrapper:hover .ng-arrow{border-top-color:var(--select-arrow-wrapper-border-color-hovored)}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:var(--select-arrow-wrapper-border-color-enabled) transparent transparent;border-style:solid;border-width:5px 5px 2.5px}.ng-dropdown-panel{background-color:var(--dropdown-panel-background-color-enabled);border:1px solid var(--dropdown-panel-border-color-enabled);box-shadow:0 1px 0 var(--dropdown-panel-box-shadow-color-enabled);left:0}.ng-dropdown-panel.ng-select-top{bottom:100%;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-top-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.ng-dropdown-panel.ng-select-right{left:100%;top:0;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-right-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-right .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px}.ng-dropdown-panel.ng-select-bottom{top:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-color:var(--dropdown-panel-select-bottom-border-color-enabled);margin-top:-1px}.ng-dropdown-panel.ng-select-bottom .ng-dropdown-panel-items .ng-option:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-dropdown-panel.ng-select-left{left:-100%;top:0;border-top-left-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-left-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-left .ng-dropdown-panel-items .ng-option:first-child{border-top-left-radius:4px}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid var(--dropdown-panel-header-border-color-enabled);padding:5px 7px}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid var(--dropdown-panel-footer-border-color-enabled);padding:5px 7px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{-webkit-user-select:none;user-select:none;padding:8px 10px;font-weight:500;color:var(--dropdown-panel-items-text-color-enabled);cursor:pointer}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled{cursor:default}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background-color:var(--dropdown-panel-items-marked-background-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected.ng-option-marked{color:var(--dropdown-panel-items-option-selected-text-color-enabled);background-color:var(--dropdown-panel-items-option-selected-background-color-enabled);font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{background-color:var(--dropdown-panel-items-option-background-color-enabled);color:var(--dropdown-panel-items-option-text-color-enabled);padding:8px 10px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked{color:var(--dropdown-panel-items-option-selected2-text-color-enabled);background-color:var(--dropdown-panel-items-option-selected2-background-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected .ng-option-label,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked .ng-option-label{font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background-color:var(--dropdown-panel-items-marked-background-color-enabled);color:var(--dropdown-panel-items-marked-text-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:var(--dropdown-panel-items-text-color-disabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-left:22px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-right:22px;padding-left:0}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{font-size:80%;font-weight:400;padding-right:5px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{padding-left:5px;padding-right:0}[dir=rtl] .ng-dropdown-panel{direction:rtl;text-align:right}.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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%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}:host{--sidenav-drawer-content-offset: 0;color:var(--host-text-color-enabled);font-family:var(--font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif);font-size:var(--font-size, 1.3rem);font-weight:400}lib-bimplus-sidenav-drawer-content{display:flex;flex-direction:column;flex-grow:1;flex-shrink:1;max-height:100%;min-height:0}.button-row{display:flex;margin-top:.8rem;margin-bottom:.8rem;justify-content:flex-end}.connection-designer-content{font-family:var(--font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif);font-size:var(--font-size, 1.3rem);margin:1.4rem 2.2rem;display:flex;flex-direction:column;flex-grow:1;flex-shrink:1;max-height:100%;min-height:0}.connection-designer-content>.button-row{display:flex;margin-top:.8rem;margin-bottom:.8rem;justify-content:flex-end}.connection-designer-content>.cross-button{display:none;flex-direction:row;justify-content:right;width:100%;height:1.6rem}.connection-designer-content>.cross-button>.cross{min-width:1.6rem;min-height:100%;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\" width=\"18\" height=\"18\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"%23444\" d=\"M13.5 5.4L12.1 4 8.5 7.6 4.9 4 3.5 5.4 7.1 9l-3.6 3.6L4.9 14l3.6-3.6 3.6 3.6 1.4-1.4L9.9 9z\"/></svg>%0D%0A');background-repeat:no-repeat;background-position:center center;background-size:cover;cursor:pointer}.connection-designer-content>.title{padding-bottom:1rem;font-size:var(--title-font-size, 1.4rem);font-weight:var(--title-font-weight, 700);font-family:var(--title-font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif)}.connection-designer-content>.description{padding-bottom:1rem}.connection-designer-content>.note{padding-bottom:1rem}.connection-designer-content>.design-codes{padding-bottom:1rem;margin-bottom:.1rem;height:2.4rem}.connection-designer-content>.design-codes>.design-codes-dropdown .ng-select-container{height:2.4rem;min-height:2.4rem}.connection-designer-content>.no-design-codes{display:block;width:100%;color:var(--connection-designer-content-no-design-codes-text-color-enabled);text-align:left;padding-bottom:.8rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: NgSelectModule }, { kind: "component", type: i4.NgSelectComponent, selector: "ng-select", inputs: ["ariaLabelDropdown", "bindLabel", "bindValue", "ariaLabel", "markFirst", "placeholder", "fixedPlaceholder", "notFoundText", "typeToSearchText", "preventToggleOnRightClick", "addTagText", "loadingText", "clearAllText", "appearance", "dropdownPosition", "appendTo", "loading", "closeOnSelect", "hideSelected", "selectOnTab", "openOnEnter", "maxSelectedItems", "groupBy", "groupValue", "bufferAmount", "virtualScroll", "selectableGroup", "selectableGroupAsModel", "searchFn", "trackByFn", "clearOnBackspace", "labelForId", "inputAttrs", "tabIndex", "readonly", "searchWhileComposing", "minTermLength", "editableSearchTerm", "ngClass", "typeahead", "multiple", "addTag", "searchable", "clearable", "isOpen", "items", "compareWith", "clearSearchOnAdd", "deselectOnClick", "keyDownFn"], outputs: ["blur", "focus", "change", "open", "close", "search", "clear", "add", "remove", "scroll", "scrollToEnd"] }, { kind: "component", type: i4.NgOptionComponent, selector: "ng-option", inputs: ["value", "disabled"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1.TranslatePipe, name: "translate" }, { kind: "component", type: BimplusSidenavDrawerContentComponent, selector: "lib-bimplus-sidenav-drawer-content", inputs: ["header", "isLoading", "loadingSpinnerText"] }, { kind: "component", type: BimplusButtonsRowComponent, selector: "lib-bimplus-buttons-row", inputs: ["isMultiple", "items", "canUpdateObject"], outputs: ["fileChanged", "buttonClicked"] }], encapsulation: i0.ViewEncapsulation.ShadowDom }); }
|
|
531
|
-
}
|
|
532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusConnectionDesignerComponent, decorators: [{
|
|
533
|
-
type: Component,
|
|
534
|
-
args: [{ selector: 'lib-bimplus-connection-designer', imports: [
|
|
535
|
-
CommonModule,
|
|
536
|
-
FormsModule,
|
|
537
|
-
NgSelectModule,
|
|
538
|
-
TranslateModule,
|
|
539
|
-
BimplusSidenavDrawerContentComponent,
|
|
540
|
-
BimplusConnectionDesignerResultsComponent,
|
|
541
|
-
BimplusButtonsRowComponent,
|
|
542
|
-
BimplusSidenavDrawerContentComponent
|
|
543
|
-
], providers: [TranslateService], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-sidenav-drawer-content\r\n [header]=\"'_Connection_designer' | translate\"\r\n>\r\n <div class=\"connection-designer-content\">\r\n @if(connectionDesignerService.activeStep === 0) {\r\n <div class=\"cross-button\">\r\n <div class=\"cross\"\r\n (click)=\"resetDesignCode()\"\r\n (keypress)=\"resetDesignCode()\"\r\n >\r\n </div>\r\n </div>\r\n <div class=\"title\">\r\n {{ \"_Select_the_code\" | translate }}\r\n </div>\r\n <div class=\"description\">\r\n {{ \"_Activate_all_objects_to_make_a_connection\" | translate }}\r\n </div>\r\n <div class=\"note\">\r\n {{ \"_Activate_all_objects_note\" | translate }}\r\n </div>\r\n\r\n @if(designCodes.length > 0){\r\n <div class=\"design-codes\">\r\n <ng-select\r\n class=\"design-codes-dropdown\"\r\n [(ngModel)]=\"activeDesignCode\"\r\n [clearable]=\"false\"\r\n [searchable]=\"false\"\r\n [placeholder]=\"chooseCode | translate\"\r\n >\r\n <ng-option *ngFor=\"let code of designCodes\" [value]=\"code\">{{\r\n code.name\r\n }}</ng-option>\r\n </ng-select>\r\n </div>\r\n } @else {\r\n <div class=\"no-design-codes\">\r\n {{ \"_No_design_codes_defined\" | translate }}\r\n </div>\r\n }\r\n\r\n <lib-bimplus-buttons-row\r\n [items]=\"buttonRowItems\"\r\n (buttonClicked)=\"buttonClicked($event)\"\r\n ></lib-bimplus-buttons-row>\r\n\r\n } @else {\r\n <ng-content select=\"lib-bimplus-connection-designer-results\"></ng-content>\r\n }\r\n </div>\r\n</lib-bimplus-sidenav-drawer-content>\r\n", styles: ["@charset \"UTF-8\";.ng-select.ng-select-opened>.ng-select-container{background:var(--select-container-open-background-color-enabled);border-color:var(--select-container-open-border-color-enabled)}.ng-select.ng-select-opened>.ng-select-container:hover{box-shadow:none}.ng-select.ng-select-opened>.ng-select-container .ng-arrow{top:-2px;border-color:transparent transparent var(--select-container-open-arrow-border-color-enabled);border-width:0 5px 5px}.ng-select.ng-select-opened>.ng-select-container .ng-arrow:hover{border-color:transparent transparent var(--select-container-open-arrow-border-color-hovered)}.ng-select.ng-select-opened.ng-select-top>.ng-select-container{border-top-right-radius:0;border-top-left-radius:0}.ng-select.ng-select-opened.ng-select-right>.ng-select-container{border-top-right-radius:0;border-bottom-right-radius:0}.ng-select.ng-select-opened.ng-select-bottom>.ng-select-container{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-opened.ng-select-left>.ng-select-container{border-top-left-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-disabled>.ng-select-container{background-color:var(--select-container-background-color-disabled)}.ng-select .ng-has-value .ng-placeholder{display:none}.ng-select .ng-select-container{color:var(--select-container-text-color-enabled);background-color:var(--select-container-background-color-enabled);border-radius:0;border:1px solid var(--select-container-border-color-enabled);min-height:36px;align-items:center}.ng-select .ng-select-container:hover{box-shadow:0 1px 0 var(--select-container-box-shadow-color-hovered);background-color:var(--select-container-background-color-hovered)}.ng-select .ng-select-container .ng-value-container{align-items:center;padding-left:10px}[dir=rtl] .ng-select .ng-select-container .ng-value-container{padding-right:10px;padding-left:0}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:var(--select-container-placeholder-text-color-enabled)}.ng-select.ng-select-single .ng-select-container{height:36px}.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{top:5px;left:0;padding-left:10px;padding-right:50px}[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{padding-right:10px;padding-left:50px}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{background-color:var(--select-multiple-disabled-container-value-background-color-enabled);border:1px solid var(--select-multiple-disabled-container-value-border-color-enabled)}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-label{padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-top:5px;padding-left:7px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-right:7px;padding-left:0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{font-size:.9em;margin-bottom:5px;color:var(--select-multiple-container-value-text-color-enabled);background-color:var(--select-multiple-container-value-background-color-enabled);border-radius:2px;margin-right:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-right:0;margin-left:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:var(--select-multiple-container-value-background-color-disabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:5px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:0;padding-right:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label,.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon{display:inline-block;padding:1px 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover{background-color:var(--select-multiple-container-value-icon-background-color-hovered)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-right:1px solid var(--select-multiple-container-value-icon-left-border-color-enbabled)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-left:1px solid var(--select-multiple-container-value-icon-left-border-color-enbabled);border-right:none}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:1px solid var(--select-multiple-container-value-icon-right-border-color-enbabled)}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:0;border-right:1px solid var(--select-multiple-container-value-icon-right-border-color-enbabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 0 3px 3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 3px 3px 0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input>input{color:var(--select-multiple-container-value-input-text-color-enabled)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{top:5px;padding-bottom:5px;padding-left:3px}[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{padding-right:3px;padding-left:0}.ng-select .ng-clear-wrapper{color:var(--select-clear-wrapper-text-color-enabled)}.ng-select .ng-clear-wrapper:hover .ng-clear{color:var(--select-clear-wrapper-text-color-hovered)}.ng-select .ng-clear-wrapper:focus .ng-clear{color:var(--select-clear-wrapper-text-color-focused)}.ng-select .ng-clear-wrapper:focus{outline:none}.ng-select .ng-spinner-zone{padding:5px 5px 0 0}[dir=rtl] .ng-select .ng-spinner-zone{padding:5px 0 0 5px}.ng-select .ng-arrow-wrapper{width:25px;padding-right:5px}[dir=rtl] .ng-select .ng-arrow-wrapper{padding-left:5px;padding-right:0}.ng-select .ng-arrow-wrapper:hover .ng-arrow{border-top-color:var(--select-arrow-wrapper-border-color-hovored)}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:var(--select-arrow-wrapper-border-color-enabled) transparent transparent;border-style:solid;border-width:5px 5px 2.5px}.ng-dropdown-panel{background-color:var(--dropdown-panel-background-color-enabled);border:1px solid var(--dropdown-panel-border-color-enabled);box-shadow:0 1px 0 var(--dropdown-panel-box-shadow-color-enabled);left:0}.ng-dropdown-panel.ng-select-top{bottom:100%;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-top-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.ng-dropdown-panel.ng-select-right{left:100%;top:0;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-right-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-right .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px}.ng-dropdown-panel.ng-select-bottom{top:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-color:var(--dropdown-panel-select-bottom-border-color-enabled);margin-top:-1px}.ng-dropdown-panel.ng-select-bottom .ng-dropdown-panel-items .ng-option:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-dropdown-panel.ng-select-left{left:-100%;top:0;border-top-left-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:var(--dropdown-panel-select-left-border-color-enabled);margin-bottom:-1px}.ng-dropdown-panel.ng-select-left .ng-dropdown-panel-items .ng-option:first-child{border-top-left-radius:4px}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid var(--dropdown-panel-header-border-color-enabled);padding:5px 7px}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid var(--dropdown-panel-footer-border-color-enabled);padding:5px 7px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{-webkit-user-select:none;user-select:none;padding:8px 10px;font-weight:500;color:var(--dropdown-panel-items-text-color-enabled);cursor:pointer}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled{cursor:default}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background-color:var(--dropdown-panel-items-marked-background-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected.ng-option-marked{color:var(--dropdown-panel-items-option-selected-text-color-enabled);background-color:var(--dropdown-panel-items-option-selected-background-color-enabled);font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{background-color:var(--dropdown-panel-items-option-background-color-enabled);color:var(--dropdown-panel-items-option-text-color-enabled);padding:8px 10px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked{color:var(--dropdown-panel-items-option-selected2-text-color-enabled);background-color:var(--dropdown-panel-items-option-selected2-background-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected .ng-option-label,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked .ng-option-label{font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background-color:var(--dropdown-panel-items-marked-background-color-enabled);color:var(--dropdown-panel-items-marked-text-color-enabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:var(--dropdown-panel-items-text-color-disabled)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-left:22px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-right:22px;padding-left:0}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{font-size:80%;font-weight:400;padding-right:5px}[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{padding-left:5px;padding-right:0}[dir=rtl] .ng-dropdown-panel{direction:rtl;text-align:right}.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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%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}:host{--sidenav-drawer-content-offset: 0;color:var(--host-text-color-enabled);font-family:var(--font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif);font-size:var(--font-size, 1.3rem);font-weight:400}lib-bimplus-sidenav-drawer-content{display:flex;flex-direction:column;flex-grow:1;flex-shrink:1;max-height:100%;min-height:0}.button-row{display:flex;margin-top:.8rem;margin-bottom:.8rem;justify-content:flex-end}.connection-designer-content{font-family:var(--font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif);font-size:var(--font-size, 1.3rem);margin:1.4rem 2.2rem;display:flex;flex-direction:column;flex-grow:1;flex-shrink:1;max-height:100%;min-height:0}.connection-designer-content>.button-row{display:flex;margin-top:.8rem;margin-bottom:.8rem;justify-content:flex-end}.connection-designer-content>.cross-button{display:none;flex-direction:row;justify-content:right;width:100%;height:1.6rem}.connection-designer-content>.cross-button>.cross{min-width:1.6rem;min-height:100%;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\" width=\"18\" height=\"18\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"%23444\" d=\"M13.5 5.4L12.1 4 8.5 7.6 4.9 4 3.5 5.4 7.1 9l-3.6 3.6L4.9 14l3.6-3.6 3.6 3.6 1.4-1.4L9.9 9z\"/></svg>%0D%0A');background-repeat:no-repeat;background-position:center center;background-size:cover;cursor:pointer}.connection-designer-content>.title{padding-bottom:1rem;font-size:var(--title-font-size, 1.4rem);font-weight:var(--title-font-weight, 700);font-family:var(--title-font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif)}.connection-designer-content>.description{padding-bottom:1rem}.connection-designer-content>.note{padding-bottom:1rem}.connection-designer-content>.design-codes{padding-bottom:1rem;margin-bottom:.1rem;height:2.4rem}.connection-designer-content>.design-codes>.design-codes-dropdown .ng-select-container{height:2.4rem;min-height:2.4rem}.connection-designer-content>.no-design-codes{display:block;width:100%;color:var(--connection-designer-content-no-design-codes-text-color-enabled);text-align:left;padding-bottom:.8rem}\n"] }]
|
|
544
|
-
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: BimplusConnectionDesignerService }], propDecorators: { designCodes: [{
|
|
545
|
-
type: Input
|
|
546
|
-
}], currentDesignCode: [{
|
|
547
|
-
type: Input
|
|
548
|
-
}], designCodeChanged: [{
|
|
549
|
-
type: Output
|
|
550
|
-
}], calculationCanBeStarted: [{
|
|
551
|
-
type: Input
|
|
552
|
-
}], startCalculationClicked: [{
|
|
553
|
-
type: Output
|
|
554
|
-
}] } });
|
|
555
|
-
|
|
556
554
|
/**--------------------------------------------------------------------------
|
|
557
555
|
* fire event from component in two ways :
|
|
558
556
|
- fire custom event from component in standard recommended way via. this.eventName.emit function
|
|
@@ -598,83 +596,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
598
596
|
type: Output
|
|
599
597
|
}] } });
|
|
600
598
|
|
|
601
|
-
class DraggableDirective {
|
|
602
|
-
constructor() {
|
|
603
|
-
this.oldX = 0;
|
|
604
|
-
this.oldY = 0;
|
|
605
|
-
this.isDragging = false;
|
|
606
|
-
this.wasDragging = false;
|
|
607
|
-
this.isMouseDown = false;
|
|
608
|
-
this.dragging = new EventEmitter();
|
|
609
|
-
this.dragEnd = new EventEmitter();
|
|
610
|
-
this.clicked = new EventEmitter();
|
|
611
|
-
}
|
|
612
|
-
onMouseMove(event) {
|
|
613
|
-
if (!this.isDragging && !this.isMouseDown) {
|
|
614
|
-
return;
|
|
615
|
-
}
|
|
616
|
-
const deltaX = (event.clientX - this.oldX);
|
|
617
|
-
const deltaY = (event.clientY - this.oldY);
|
|
618
|
-
if (!this.isDragging) {
|
|
619
|
-
if (Math.abs(deltaX) > 2 || Math.abs(deltaY) > 2) {
|
|
620
|
-
this.isDragging = true;
|
|
621
|
-
this.wasDragging = true;
|
|
622
|
-
}
|
|
623
|
-
else {
|
|
624
|
-
return;
|
|
625
|
-
}
|
|
626
|
-
}
|
|
627
|
-
fireEvent(this, "dragging", [deltaX, deltaY]);
|
|
628
|
-
this.oldX = event.clientX;
|
|
629
|
-
this.oldY = event.clientY;
|
|
630
|
-
}
|
|
631
|
-
onMouseUp() {
|
|
632
|
-
if (this.isDragging || this.isMouseDown) {
|
|
633
|
-
fireEvent(this, "dragEnd", ['$event']);
|
|
634
|
-
}
|
|
635
|
-
this.isDragging = false;
|
|
636
|
-
this.isMouseDown = false;
|
|
637
|
-
}
|
|
638
|
-
onMouseDown(event) {
|
|
639
|
-
this.isMouseDown = true;
|
|
640
|
-
this.wasDragging = false;
|
|
641
|
-
this.oldX = event.clientX;
|
|
642
|
-
this.oldY = event.clientY;
|
|
643
|
-
}
|
|
644
|
-
onMouseClick(event) {
|
|
645
|
-
if (!this.wasDragging) {
|
|
646
|
-
fireEvent(this, "clicked", event);
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: DraggableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
650
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.2", 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 }); }
|
|
651
|
-
}
|
|
652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: DraggableDirective, decorators: [{
|
|
653
|
-
type: Directive,
|
|
654
|
-
args: [{
|
|
655
|
-
selector: '[libDraggable]',
|
|
656
|
-
standalone: true
|
|
657
|
-
}]
|
|
658
|
-
}], propDecorators: { dragging: [{
|
|
659
|
-
type: Output
|
|
660
|
-
}], dragEnd: [{
|
|
661
|
-
type: Output
|
|
662
|
-
}], clicked: [{
|
|
663
|
-
type: Output
|
|
664
|
-
}], onMouseMove: [{
|
|
665
|
-
type: HostListener,
|
|
666
|
-
args: ['document:mousemove', ['$event']]
|
|
667
|
-
}], onMouseUp: [{
|
|
668
|
-
type: HostListener,
|
|
669
|
-
args: ['document:mouseup', ['$event']]
|
|
670
|
-
}], onMouseDown: [{
|
|
671
|
-
type: HostListener,
|
|
672
|
-
args: ['mousedown', ['$event']]
|
|
673
|
-
}], onMouseClick: [{
|
|
674
|
-
type: HostListener,
|
|
675
|
-
args: ['click', ['$event']]
|
|
676
|
-
}] } });
|
|
677
|
-
|
|
678
599
|
class ResizeObserverService {
|
|
679
600
|
constructor() {
|
|
680
601
|
this.rectSize$ = new BehaviorSubject(undefined);
|
|
@@ -1123,153 +1044,15 @@ class LayoutManagerService {
|
|
|
1123
1044
|
const elementRect = this._getElementRect(item, undefined, undefined);
|
|
1124
1045
|
this._setObjectConfig(item, left, top, elementRect && elementRect.width > 0 ? elementRect.width : 0, elementRect && elementRect.height > 0 ? elementRect.height : 0);
|
|
1125
1046
|
}
|
|
1126
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: LayoutManagerService, deps: [{ token: ResizeObserverService }, { token: LocalStorageService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1127
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: LayoutManagerService, providedIn: 'root' }); }
|
|
1128
|
-
}
|
|
1129
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: LayoutManagerService, decorators: [{
|
|
1130
|
-
type: Injectable,
|
|
1131
|
-
args: [{
|
|
1132
|
-
providedIn: 'root'
|
|
1133
|
-
}]
|
|
1134
|
-
}], ctorParameters: () => [{ type: ResizeObserverService }, { type: LocalStorageService }] });
|
|
1135
|
-
|
|
1136
|
-
class BimplusFloatingBarDraggerComponent {
|
|
1137
|
-
constructor(layoutManagerService) {
|
|
1138
|
-
this.layoutManagerService = layoutManagerService;
|
|
1139
|
-
// Define isCollapsed as a boolean property
|
|
1140
|
-
this.isCollapsed = false;
|
|
1141
|
-
this.parentId = '';
|
|
1142
|
-
// Define icon as a string property with a default value
|
|
1143
|
-
this.draggerIcon = 'ui-icon-drag';
|
|
1144
|
-
}
|
|
1145
|
-
onDragEnd() {
|
|
1146
|
-
this.layoutManagerService.handleDragEnd(this.parentId);
|
|
1147
|
-
}
|
|
1148
|
-
dragBaseElement(event) {
|
|
1149
|
-
const deltaX1 = event[0];
|
|
1150
|
-
const deltaY1 = event[1];
|
|
1151
|
-
this.layoutManagerService.checkPosition(this.parentId, "", undefined, deltaX1, deltaY1);
|
|
1152
|
-
}
|
|
1153
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarDraggerComponent, deps: [{ token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1154
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.2", type: BimplusFloatingBarDraggerComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-dragger", inputs: { isCollapsed: "isCollapsed", parentId: "parentId" }, 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 (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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"] }] }); }
|
|
1155
|
-
}
|
|
1156
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarDraggerComponent, decorators: [{
|
|
1157
|
-
type: Component,
|
|
1158
|
-
args: [{ selector: 'lib-bimplus-floating-bar-dragger', imports: [
|
|
1159
|
-
CommonModule,
|
|
1160
|
-
DraggableDirective,
|
|
1161
|
-
], template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable \r\n (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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"] }]
|
|
1162
|
-
}], ctorParameters: () => [{ type: LayoutManagerService }], propDecorators: { isCollapsed: [{
|
|
1163
|
-
type: Input
|
|
1164
|
-
}], parentId: [{
|
|
1165
|
-
type: Input
|
|
1166
|
-
}] } });
|
|
1167
|
-
|
|
1168
|
-
class BimplusFloatingBarHeaderContentComponent extends BimplusLocalizedWidgetComponent {
|
|
1169
|
-
constructor(translateService, layoutManagerService) {
|
|
1170
|
-
super(translateService);
|
|
1171
|
-
this.layoutManagerService = layoutManagerService;
|
|
1172
|
-
this.isCollapsed = false;
|
|
1173
|
-
this.parentId = '';
|
|
1174
|
-
this.actionClicked = new EventEmitter();
|
|
1175
|
-
this.items = input([]);
|
|
1176
|
-
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1177
|
-
const layoutManagerItem = items.find((item) => item.id === this.parentId);
|
|
1178
|
-
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1179
|
-
});
|
|
1180
|
-
}
|
|
1181
|
-
findItemById(id) {
|
|
1182
|
-
return this.items().find(x => x.buttonId === id);
|
|
1183
|
-
}
|
|
1184
|
-
onItemClicked(action) {
|
|
1185
|
-
const item = this.findItemById(action);
|
|
1186
|
-
if (!item || item?.disabled) {
|
|
1187
|
-
return;
|
|
1188
|
-
}
|
|
1189
|
-
this.actionClicked.emit(action);
|
|
1190
|
-
}
|
|
1191
|
-
onDragEnd() {
|
|
1192
|
-
this.layoutManagerService.handleDragEnd(this.parentId);
|
|
1193
|
-
}
|
|
1194
|
-
dragBaseElement(event) {
|
|
1195
|
-
const deltaX1 = event[0];
|
|
1196
|
-
const deltaY1 = event[1];
|
|
1197
|
-
this.layoutManagerService.checkPosition(this.parentId, "", undefined, deltaX1, deltaY1);
|
|
1198
|
-
}
|
|
1199
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarHeaderContentComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1200
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.2", type: BimplusFloatingBarHeaderContentComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-content", inputs: { isCollapsed: { classPropertyName: "isCollapsed", publicName: "isCollapsed", isSignal: false, isRequired: false, transformFunction: null }, parentId: { classPropertyName: "parentId", publicName: "parentId", isSignal: false, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { actionClicked: "actionClicked" }, providers: [
|
|
1201
|
-
TranslateService
|
|
1202
|
-
], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable \r\n (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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 (keypress)=\"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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%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<path d=\"M10 8H7V11H10V8Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M15 8H12V11H15V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M15 3H12V6H15V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 3H7V6H10V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 3H2V6H5V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 8H2V11H5V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 13H2V16H5V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 13H7V16H10V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M15 13H12V16H15V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%230066CC\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%230066CC\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%2387C1FF\"/>%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=\"%234DC0F6\"/>%0D%0A<path d=\"M11 7H7V11H11V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M15 7H13V11H15V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M5 7H3V11H5V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M11 3H7V5H11V3Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M11 13H7V15H11V13Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23004AA4\"/>%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<path d=\"M13 5H1V17H13V5Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23004AA4\"/>%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" }] }); }
|
|
1203
|
-
}
|
|
1204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarHeaderContentComponent, decorators: [{
|
|
1205
|
-
type: Component,
|
|
1206
|
-
args: [{ selector: 'lib-bimplus-floating-bar-header-content', imports: [
|
|
1207
|
-
CommonModule,
|
|
1208
|
-
DraggableDirective,
|
|
1209
|
-
TranslateModule,
|
|
1210
|
-
], providers: [
|
|
1211
|
-
TranslateService
|
|
1212
|
-
], template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable \r\n (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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 (keypress)=\"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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%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<path d=\"M10 8H7V11H10V8Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M15 8H12V11H15V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M15 3H12V6H15V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 3H7V6H10V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 3H2V6H5V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 8H2V11H5V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 13H2V16H5V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 13H7V16H10V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M15 13H12V16H15V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%230066CC\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%230066CC\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%2387C1FF\"/>%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=\"%234DC0F6\"/>%0D%0A<path d=\"M11 7H7V11H11V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M15 7H13V11H15V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M5 7H3V11H5V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M11 3H7V5H11V3Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M11 13H7V15H11V13Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23004AA4\"/>%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<path d=\"M13 5H1V17H13V5Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23004AA4\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
1213
|
-
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }], propDecorators: { isCollapsed: [{
|
|
1214
|
-
type: Input
|
|
1215
|
-
}], parentId: [{
|
|
1216
|
-
type: Input
|
|
1217
|
-
}], actionClicked: [{
|
|
1218
|
-
type: Output
|
|
1219
|
-
}] } });
|
|
1220
|
-
|
|
1221
|
-
class BimplusFloatingBarHeaderLogoComponent extends BimplusLocalizedWidgetComponent {
|
|
1222
|
-
constructor(translateService, layoutManagerService) {
|
|
1223
|
-
super(translateService);
|
|
1224
|
-
this.layoutManagerService = layoutManagerService;
|
|
1225
|
-
this.icon = "";
|
|
1226
|
-
this.isCollapsed = false;
|
|
1227
|
-
this.parentId = '';
|
|
1228
|
-
this.title = "";
|
|
1229
|
-
}
|
|
1230
|
-
ngOnInit() {
|
|
1231
|
-
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1232
|
-
const layoutManagerItem = items.find((item) => item.id === this.parentId);
|
|
1233
|
-
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1234
|
-
});
|
|
1235
|
-
}
|
|
1236
|
-
onLogoClicked() {
|
|
1237
|
-
this.layoutManagerService.updateCollapsed(!this.isCollapsed, this.parentId);
|
|
1238
|
-
}
|
|
1239
|
-
onDragEnd() {
|
|
1240
|
-
this.layoutManagerService.handleDragEnd(this.parentId);
|
|
1241
|
-
}
|
|
1242
|
-
dragBaseElement(event) {
|
|
1243
|
-
const deltaX1 = event[0];
|
|
1244
|
-
const deltaY1 = event[1];
|
|
1245
|
-
this.layoutManagerService.checkPosition(this.parentId, "", undefined, deltaX1, deltaY1);
|
|
1246
|
-
}
|
|
1247
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarHeaderLogoComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1248
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.2", type: BimplusFloatingBarHeaderLogoComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-logo", inputs: { icon: "icon", isCollapsed: "isCollapsed", parentId: "parentId", title: "title" }, host: { properties: { "class.isCollapsed": "this.isCollapsed" } }, providers: [
|
|
1249
|
-
TranslateService
|
|
1250
|
-
], 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 (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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" }] }); }
|
|
1047
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: LayoutManagerService, deps: [{ token: ResizeObserverService }, { token: LocalStorageService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1048
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: LayoutManagerService, providedIn: 'root' }); }
|
|
1251
1049
|
}
|
|
1252
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type:
|
|
1253
|
-
type:
|
|
1254
|
-
args: [{
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
], providers: [
|
|
1259
|
-
TranslateService
|
|
1260
|
-
], 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 (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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"] }]
|
|
1261
|
-
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }], propDecorators: { icon: [{
|
|
1262
|
-
type: Input
|
|
1263
|
-
}], isCollapsed: [{
|
|
1264
|
-
type: HostBinding,
|
|
1265
|
-
args: ['class.isCollapsed']
|
|
1266
|
-
}, {
|
|
1267
|
-
type: Input
|
|
1268
|
-
}], parentId: [{
|
|
1269
|
-
type: Input
|
|
1270
|
-
}], title: [{
|
|
1271
|
-
type: Input
|
|
1272
|
-
}] } });
|
|
1050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: LayoutManagerService, decorators: [{
|
|
1051
|
+
type: Injectable,
|
|
1052
|
+
args: [{
|
|
1053
|
+
providedIn: 'root'
|
|
1054
|
+
}]
|
|
1055
|
+
}], ctorParameters: () => [{ type: ResizeObserverService }, { type: LocalStorageService }] });
|
|
1273
1056
|
|
|
1274
1057
|
//import { Directive, ElementRef , HostListener, Output, EventEmitter } from '@angular/core';
|
|
1275
1058
|
class ResizableDirective {
|
|
@@ -1624,11 +1407,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
1624
1407
|
type: Component,
|
|
1625
1408
|
args: [{ selector: 'lib-bimplus-floating-bar', imports: [
|
|
1626
1409
|
CommonModule,
|
|
1627
|
-
|
|
1628
|
-
ResizableDirective,
|
|
1629
|
-
BimplusFloatingBarDraggerComponent,
|
|
1630
|
-
BimplusFloatingBarHeaderContentComponent,
|
|
1631
|
-
BimplusFloatingBarHeaderLogoComponent,
|
|
1410
|
+
ResizableDirective
|
|
1632
1411
|
], 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 libResizable\r\n (resizedEnd)=\"onResizedEnd()\"\r\n (dragEnd)=\"onDragEnd()\"\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 class=\"resizer-ne floating-panel__resizerNE\"\r\n [class.resize-disabled]=\"canNotResize\">\r\n</div>\r\n<div \r\n class=\"resizer-e floating-panel__resizerE\"\r\n [class.resize-disabled]=\"canNotResize\">\r\n</div>\r\n<div \r\n class=\"resizer-se floating-panel__resizerSE\"\r\n [class.resize-disabled]=\"canNotResize\">\r\n</div>\r\n<div \r\n class=\"resizer-s floating-panel__resizerS\"\r\n [class.resize-disabled]=\"canNotResize\">\r\n</div>\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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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"] }]
|
|
1633
1412
|
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: ResizeObserverService }], propDecorators: { noBody: [{
|
|
1634
1413
|
type: Input
|
|
@@ -1646,6 +1425,221 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
1646
1425
|
type: Input
|
|
1647
1426
|
}] } });
|
|
1648
1427
|
|
|
1428
|
+
class DraggableDirective {
|
|
1429
|
+
constructor() {
|
|
1430
|
+
this.oldX = 0;
|
|
1431
|
+
this.oldY = 0;
|
|
1432
|
+
this.isDragging = false;
|
|
1433
|
+
this.wasDragging = false;
|
|
1434
|
+
this.isMouseDown = false;
|
|
1435
|
+
this.dragging = new EventEmitter();
|
|
1436
|
+
this.dragEnd = new EventEmitter();
|
|
1437
|
+
this.clicked = new EventEmitter();
|
|
1438
|
+
}
|
|
1439
|
+
onMouseMove(event) {
|
|
1440
|
+
if (!this.isDragging && !this.isMouseDown) {
|
|
1441
|
+
return;
|
|
1442
|
+
}
|
|
1443
|
+
const deltaX = (event.clientX - this.oldX);
|
|
1444
|
+
const deltaY = (event.clientY - this.oldY);
|
|
1445
|
+
if (!this.isDragging) {
|
|
1446
|
+
if (Math.abs(deltaX) > 2 || Math.abs(deltaY) > 2) {
|
|
1447
|
+
this.isDragging = true;
|
|
1448
|
+
this.wasDragging = true;
|
|
1449
|
+
}
|
|
1450
|
+
else {
|
|
1451
|
+
return;
|
|
1452
|
+
}
|
|
1453
|
+
}
|
|
1454
|
+
fireEvent(this, "dragging", [deltaX, deltaY]);
|
|
1455
|
+
this.oldX = event.clientX;
|
|
1456
|
+
this.oldY = event.clientY;
|
|
1457
|
+
}
|
|
1458
|
+
onMouseUp() {
|
|
1459
|
+
if (this.isDragging || this.isMouseDown) {
|
|
1460
|
+
fireEvent(this, "dragEnd", ['$event']);
|
|
1461
|
+
}
|
|
1462
|
+
this.isDragging = false;
|
|
1463
|
+
this.isMouseDown = false;
|
|
1464
|
+
}
|
|
1465
|
+
onMouseDown(event) {
|
|
1466
|
+
this.isMouseDown = true;
|
|
1467
|
+
this.wasDragging = false;
|
|
1468
|
+
this.oldX = event.clientX;
|
|
1469
|
+
this.oldY = event.clientY;
|
|
1470
|
+
}
|
|
1471
|
+
onMouseClick(event) {
|
|
1472
|
+
if (!this.wasDragging) {
|
|
1473
|
+
fireEvent(this, "clicked", event);
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: DraggableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1477
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.2", 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 }); }
|
|
1478
|
+
}
|
|
1479
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: DraggableDirective, decorators: [{
|
|
1480
|
+
type: Directive,
|
|
1481
|
+
args: [{
|
|
1482
|
+
selector: '[libDraggable]',
|
|
1483
|
+
standalone: true
|
|
1484
|
+
}]
|
|
1485
|
+
}], propDecorators: { dragging: [{
|
|
1486
|
+
type: Output
|
|
1487
|
+
}], dragEnd: [{
|
|
1488
|
+
type: Output
|
|
1489
|
+
}], clicked: [{
|
|
1490
|
+
type: Output
|
|
1491
|
+
}], onMouseMove: [{
|
|
1492
|
+
type: HostListener,
|
|
1493
|
+
args: ['document:mousemove', ['$event']]
|
|
1494
|
+
}], onMouseUp: [{
|
|
1495
|
+
type: HostListener,
|
|
1496
|
+
args: ['document:mouseup', ['$event']]
|
|
1497
|
+
}], onMouseDown: [{
|
|
1498
|
+
type: HostListener,
|
|
1499
|
+
args: ['mousedown', ['$event']]
|
|
1500
|
+
}], onMouseClick: [{
|
|
1501
|
+
type: HostListener,
|
|
1502
|
+
args: ['click', ['$event']]
|
|
1503
|
+
}] } });
|
|
1504
|
+
|
|
1505
|
+
class BimplusFloatingBarDraggerComponent {
|
|
1506
|
+
constructor(layoutManagerService) {
|
|
1507
|
+
this.layoutManagerService = layoutManagerService;
|
|
1508
|
+
// Define isCollapsed as a boolean property
|
|
1509
|
+
this.isCollapsed = false;
|
|
1510
|
+
this.parentId = '';
|
|
1511
|
+
// Define icon as a string property with a default value
|
|
1512
|
+
this.draggerIcon = 'ui-icon-drag';
|
|
1513
|
+
}
|
|
1514
|
+
onDragEnd() {
|
|
1515
|
+
this.layoutManagerService.handleDragEnd(this.parentId);
|
|
1516
|
+
}
|
|
1517
|
+
dragBaseElement(event) {
|
|
1518
|
+
const deltaX1 = event[0];
|
|
1519
|
+
const deltaY1 = event[1];
|
|
1520
|
+
this.layoutManagerService.checkPosition(this.parentId, "", undefined, deltaX1, deltaY1);
|
|
1521
|
+
}
|
|
1522
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarDraggerComponent, deps: [{ token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1523
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.2", type: BimplusFloatingBarDraggerComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-dragger", inputs: { isCollapsed: "isCollapsed", parentId: "parentId" }, 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 (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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"] }] }); }
|
|
1524
|
+
}
|
|
1525
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarDraggerComponent, decorators: [{
|
|
1526
|
+
type: Component,
|
|
1527
|
+
args: [{ selector: 'lib-bimplus-floating-bar-dragger', imports: [
|
|
1528
|
+
CommonModule,
|
|
1529
|
+
DraggableDirective,
|
|
1530
|
+
], template: "<div\r\n class=\"floating-panel__dragger dragger\"\r\n [ngClass] = \"isCollapsed ? 'collapsed' : ''\"\r\n [className]=\"draggerIcon\"\r\n libDraggable \r\n (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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"] }]
|
|
1531
|
+
}], ctorParameters: () => [{ type: LayoutManagerService }], propDecorators: { isCollapsed: [{
|
|
1532
|
+
type: Input
|
|
1533
|
+
}], parentId: [{
|
|
1534
|
+
type: Input
|
|
1535
|
+
}] } });
|
|
1536
|
+
|
|
1537
|
+
class BimplusFloatingBarHeaderContentComponent extends BimplusLocalizedWidgetComponent {
|
|
1538
|
+
constructor(translateService, layoutManagerService) {
|
|
1539
|
+
super(translateService);
|
|
1540
|
+
this.layoutManagerService = layoutManagerService;
|
|
1541
|
+
this.isCollapsed = false;
|
|
1542
|
+
this.parentId = '';
|
|
1543
|
+
this.actionClicked = new EventEmitter();
|
|
1544
|
+
this.items = input([]);
|
|
1545
|
+
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1546
|
+
const layoutManagerItem = items.find((item) => item.id === this.parentId);
|
|
1547
|
+
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1548
|
+
});
|
|
1549
|
+
}
|
|
1550
|
+
findItemById(id) {
|
|
1551
|
+
return this.items().find(x => x.buttonId === id);
|
|
1552
|
+
}
|
|
1553
|
+
onItemClicked(action) {
|
|
1554
|
+
const item = this.findItemById(action);
|
|
1555
|
+
if (!item || item?.disabled) {
|
|
1556
|
+
return;
|
|
1557
|
+
}
|
|
1558
|
+
this.actionClicked.emit(action);
|
|
1559
|
+
}
|
|
1560
|
+
onDragEnd() {
|
|
1561
|
+
this.layoutManagerService.handleDragEnd(this.parentId);
|
|
1562
|
+
}
|
|
1563
|
+
dragBaseElement(event) {
|
|
1564
|
+
const deltaX1 = event[0];
|
|
1565
|
+
const deltaY1 = event[1];
|
|
1566
|
+
this.layoutManagerService.checkPosition(this.parentId, "", undefined, deltaX1, deltaY1);
|
|
1567
|
+
}
|
|
1568
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarHeaderContentComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1569
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.2", type: BimplusFloatingBarHeaderContentComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-content", inputs: { isCollapsed: { classPropertyName: "isCollapsed", publicName: "isCollapsed", isSignal: false, isRequired: false, transformFunction: null }, parentId: { classPropertyName: "parentId", publicName: "parentId", isSignal: false, isRequired: false, transformFunction: null }, items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { actionClicked: "actionClicked" }, providers: [
|
|
1570
|
+
TranslateService
|
|
1571
|
+
], usesInheritance: true, ngImport: i0, template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable \r\n (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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 (keypress)=\"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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%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<path d=\"M10 8H7V11H10V8Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M15 8H12V11H15V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M15 3H12V6H15V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 3H7V6H10V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 3H2V6H5V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 8H2V11H5V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 13H2V16H5V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 13H7V16H10V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M15 13H12V16H15V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%230066CC\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%230066CC\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%2387C1FF\"/>%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=\"%234DC0F6\"/>%0D%0A<path d=\"M11 7H7V11H11V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M15 7H13V11H15V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M5 7H3V11H5V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M11 3H7V5H11V3Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M11 13H7V15H11V13Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23004AA4\"/>%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<path d=\"M13 5H1V17H13V5Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23004AA4\"/>%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" }] }); }
|
|
1572
|
+
}
|
|
1573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarHeaderContentComponent, decorators: [{
|
|
1574
|
+
type: Component,
|
|
1575
|
+
args: [{ selector: 'lib-bimplus-floating-bar-header-content', imports: [
|
|
1576
|
+
CommonModule,
|
|
1577
|
+
DraggableDirective,
|
|
1578
|
+
TranslateModule,
|
|
1579
|
+
], providers: [
|
|
1580
|
+
TranslateService
|
|
1581
|
+
], template: "<div\r\n class=\"floating-panel__header-content dragger\"\r\n [ngClass]=\"isCollapsed ? 'hidden' : ''\"\r\n libDraggable \r\n (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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 (keypress)=\"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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%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<path d=\"M10 8H7V11H10V8Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M15 8H12V11H15V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M15 3H12V6H15V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 3H7V6H10V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 3H2V6H5V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 8H2V11H5V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M5 13H2V16H5V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 13H7V16H10V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M15 13H12V16H15V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M7 8H10L11 7H8L7 8Z\" fill=\"%230066CC\" fill-opacity=\"0.2\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 8H15L16 7H13L12 8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 3H15L16 2H13L12 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 3H10L11 2H8L7 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 3H5L6 2H3L2 3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 8H5L6 7H3L2 8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M2 13H5L6 12H3L2 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M7 13H10L11 12H8L7 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.2\" d=\"M12 13H15L16 12H13L12 13Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M10 8L11 7V10L10 11V8Z\" fill=\"%230066CC\" fill-opacity=\"0.5\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 8L16 7V10L15 11V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 3L16 2V5L15 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 3L11 2V5L10 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 3L6 2V5L5 6V3Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 8L6 7V10L5 11V8Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M5 13L6 12V15L5 16V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M10 13L11 12V15L10 16V13Z\" fill=\"%2387C1FF\"/>%0D%0A<path opacity=\"0.5\" d=\"M15 13L16 12V15L15 16V13Z\" fill=\"%2387C1FF\"/>%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=\"%234DC0F6\"/>%0D%0A<path d=\"M11 7H7V11H11V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 7H11L12 6H8L7 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 7L12 6V10L11 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M15 7H13V11H15V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M13 7H15L16 6H14L13 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M15 7L16 6V10L15 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M5 7H3V11H5V7Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M3 7H5L6 6H4L3 7Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M5 7L6 6V10L5 11V7Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M11 3H7V5H11V3Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 3H11L12 2H8L7 3Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 3L12 2V4L11 5V3Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M11 13H7V15H11V13Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M7 13H11L12 12H8L7 13Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M11 13L12 12V14L11 15V13Z\" fill=\"%23004AA4\"/>%0D%0A<path d=\"M1.5 4.25L5.16667 1.5H16.5V12.8333L13.75 16.5H1.5V4.25Z\" stroke=\"%23004AA4\"/>%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<path d=\"M13 5H1V17H13V5Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M1 5H13L17 1H5L1 5Z\" fill=\"%234DC0F6\"/>%0D%0A<path d=\"M13 5L17 1V13L13 17V5Z\" fill=\"%23004AA4\"/>%0D%0A</svg>%0D%0A')}\n"] }]
|
|
1582
|
+
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }], propDecorators: { isCollapsed: [{
|
|
1583
|
+
type: Input
|
|
1584
|
+
}], parentId: [{
|
|
1585
|
+
type: Input
|
|
1586
|
+
}], actionClicked: [{
|
|
1587
|
+
type: Output
|
|
1588
|
+
}] } });
|
|
1589
|
+
|
|
1590
|
+
class BimplusFloatingBarHeaderLogoComponent extends BimplusLocalizedWidgetComponent {
|
|
1591
|
+
constructor(translateService, layoutManagerService) {
|
|
1592
|
+
super(translateService);
|
|
1593
|
+
this.layoutManagerService = layoutManagerService;
|
|
1594
|
+
this.icon = "";
|
|
1595
|
+
this.isCollapsed = false;
|
|
1596
|
+
this.parentId = '';
|
|
1597
|
+
this.title = "";
|
|
1598
|
+
}
|
|
1599
|
+
ngOnInit() {
|
|
1600
|
+
this.layoutManagerService.registeredItems$.subscribe((items) => {
|
|
1601
|
+
const layoutManagerItem = items.find((item) => item.id === this.parentId);
|
|
1602
|
+
this.isCollapsed = !!(layoutManagerItem?.isCollapsed);
|
|
1603
|
+
});
|
|
1604
|
+
}
|
|
1605
|
+
onLogoClicked() {
|
|
1606
|
+
this.layoutManagerService.updateCollapsed(!this.isCollapsed, this.parentId);
|
|
1607
|
+
}
|
|
1608
|
+
onDragEnd() {
|
|
1609
|
+
this.layoutManagerService.handleDragEnd(this.parentId);
|
|
1610
|
+
}
|
|
1611
|
+
dragBaseElement(event) {
|
|
1612
|
+
const deltaX1 = event[0];
|
|
1613
|
+
const deltaY1 = event[1];
|
|
1614
|
+
this.layoutManagerService.checkPosition(this.parentId, "", undefined, deltaX1, deltaY1);
|
|
1615
|
+
}
|
|
1616
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarHeaderLogoComponent, deps: [{ token: i1.TranslateService }, { token: LayoutManagerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1617
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.2", type: BimplusFloatingBarHeaderLogoComponent, isStandalone: true, selector: "lib-bimplus-floating-bar-header-logo", inputs: { icon: "icon", isCollapsed: "isCollapsed", parentId: "parentId", title: "title" }, host: { properties: { "class.isCollapsed": "this.isCollapsed" } }, providers: [
|
|
1618
|
+
TranslateService
|
|
1619
|
+
], 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 (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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" }] }); }
|
|
1620
|
+
}
|
|
1621
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusFloatingBarHeaderLogoComponent, decorators: [{
|
|
1622
|
+
type: Component,
|
|
1623
|
+
args: [{ selector: 'lib-bimplus-floating-bar-header-logo', imports: [
|
|
1624
|
+
CommonModule,
|
|
1625
|
+
DraggableDirective,
|
|
1626
|
+
TranslateModule,
|
|
1627
|
+
], providers: [
|
|
1628
|
+
TranslateService
|
|
1629
|
+
], 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 (dragEnd)=\"onDragEnd()\"\r\n (dragging)=\"dragBaseElement($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:var(--text-highlight-text-color-enabled)}.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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%0D%0A<path d=\"M9 9.6129L4.2 7L1 8.64517L9 13L17 8.64517L13.8 7L9 9.6129Z\" fill=\"%23B4DAFF\"/>%0D%0A<path d=\"M17 4L9 8L1 4L9 0L17 4Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-hide-menu{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"%230066CC\"/>%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=\"%230066CC\"/>%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=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-project-navigator{width:2rem;color:var(--ui-icon-text-color-enabled);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:var(--ui-icon-text-color-enabled);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=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<g clip-path=\"url(%23clip0_56_3219)\">%0D%0A<path d=\"M0 20H6V15H0V20ZM14 15V20H20V15H14ZM13 0H7V5H13V0ZM4 12H16V14H18V10H11V6H9V10H2V14H4V12Z\" fill=\"%230066CC\"/>%0D%0A</g>%0D%0A<defs>%0D%0A<clipPath id=\"clip0_56_3219\">%0D%0A<rect width=\"20\" height=\"20\" fill=\"white\"/>%0D%0A</clipPath>%0D%0A</defs>%0D%0A</svg>%0D%0A')}.ui-icon-transparency{background-repeat:no-repeat;background-position:center center}.ui-icon-transparency.opaque{background-image:url('data: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=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.opaque.semiopaque{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.ui-icon-transparency.transparent{background-image:url('data: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.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A')}.ui-icon-visibility.visible.active{background-color:var(--ui-icon-visibility-background-color-active)}.ui-icon-visibility.visible.semivisible{background-image:url('data: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.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A')}.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=\"%230066CC\"/>%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 width=\"18\" height=\"12\" rx=\"6\" fill=\"%2303A9F4\"/>%0D%0A<path d=\"M4 6C4 3.23858 6.23858 0.999998 9 0.999998C11.7614 0.999997 14 3.23857 14 6C14 8.76142 11.7614 11 9 11C6.23858 11 4 8.76143 4 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=\"%23D3D3D3\"/>%0D%0A<path d=\"M1 6C1 3.23858 3.23858 1 6 0.999999C8.76142 0.999999 11 3.23857 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76143 1 6Z\" fill=\"white\"/>%0D%0A</svg>%0D%0A');visibility:inherit!important}.resizer{pointer-events:all}.resizer-nw{pointer-events:all;cursor:nw-resize}.resizer-n{pointer-events:all;cursor:n-resize}.resizer-ne{pointer-events:all;cursor:ne-resize}.resizer-e{pointer-events:all;cursor:e-resize}.resizer-se{pointer-events:all;cursor:se-resize}.resizer-s{pointer-events:all;cursor:s-resize}.resizer-sw{pointer-events:all;cursor:sw-resize}.resizer-w{pointer-events:all;cursor:w-resize}.resize-disabled{cursor:none;pointer-events:none;display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.floating-bar-body{display:contents}.panel-background{background-color:var(--floating-bar-panel-background-color-enabled);transition:background-color .5s}.panel-background:hover{background-color:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-panel-background-color-enabled);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:var(--floating-bar-panel-background-color-hovered)}.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:var(--floating-bar-floating-panel-header-logo-background-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel__dragger{grid-area:dragger;cursor:move;height:4.2rem;width:3.2rem;background-size:2rem;background-position:center;border-top:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-top-right-radius:10px}.floating-panel__body{min-height:100px;grid-area:body;display:flex;flex-direction:column;border-right:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-left:thin solid var(--floating-bar-floating-panel-border-color-enabled);border-bottom-right-radius:10px;border-bottom-left-radius:10px}.floating-panel__vertical-separator{border-left:solid .078125em var(--floating-bar-floating-panel-vertical-separator-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled)}.floating-panel.no-body .floating-panel__dragger{border-bottom:thin solid var(--floating-bar-floating-panel-border-color-enabled);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 var(--floating-bar-floating-panel-border-color-enabled);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:var(--floating-bar-block-icon-background-color-enabled);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:var(--floating-bar-block-item-text-color-enabled);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"] }]
|
|
1630
|
+
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: LayoutManagerService }], propDecorators: { icon: [{
|
|
1631
|
+
type: Input
|
|
1632
|
+
}], isCollapsed: [{
|
|
1633
|
+
type: HostBinding,
|
|
1634
|
+
args: ['class.isCollapsed']
|
|
1635
|
+
}, {
|
|
1636
|
+
type: Input
|
|
1637
|
+
}], parentId: [{
|
|
1638
|
+
type: Input
|
|
1639
|
+
}], title: [{
|
|
1640
|
+
type: Input
|
|
1641
|
+
}] } });
|
|
1642
|
+
|
|
1649
1643
|
const DEFAULT_POSITION_LEFT$3 = 355;
|
|
1650
1644
|
const DEFAULT_POSITION_TOP$3 = 355;
|
|
1651
1645
|
class BimplusFloatingBarHideObjectsComponent extends BimplusLocalizedWidgetComponent {
|
|
@@ -4488,8 +4482,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
4488
4482
|
MatIconModule,
|
|
4489
4483
|
CdkTreeModule,
|
|
4490
4484
|
BimplusContextMenuComponent,
|
|
4491
|
-
CommonModule
|
|
4492
|
-
MatCheckbox
|
|
4485
|
+
CommonModule
|
|
4493
4486
|
], template: "<div class=\"tree-container\">\r\n @if (treeTitle(); as treeTitle) {\r\n <div class=\"tree-title\">{{treeTitle}}</div>\r\n }\r\n <cdk-tree [dataSource]=\"_dataSource\" [treeControl]=\"_treeControl\">\r\n <!-- This is the tree node template for leaf nodes -->\r\n <cdk-tree-node\r\n [matTreeNodePaddingIndent]=\"paddingIndent\"\r\n *matTreeNodeDef=\"let node\"\r\n matTreeNodePadding\r\n (click)=\"_toggleNode($event, node)\"\r\n (keypress)=\"_toggleNode($event, node)\"\r\n class=\"object-node\"\r\n [class.dragable-node]=\"enableDragAndDrop && node.level > 0\"\r\n [class.selected-node]=\"_isSelected(node)\"\r\n [attr.data-test]=\"dataTestPrefix + node.id\"\r\n [title]=\"node.name\"\r\n [attr.node-id]=\"node.id\"\r\n >\r\n <!-- use a disabled button to provide padding for tree leaf -->\r\n <button mat-icon-button disabled>\r\n </button>\r\n @if (customNodeTemplate() && _isCustomNodeType(node)) {\r\n <ng-container \r\n [ngTemplateOutlet]=\"customNodeTemplate()\" \r\n [ngTemplateOutletContext]=\"{node:node}\">\r\n </ng-container>\r\n }@else{\r\n <div class=\"icon object-icon\" *ngIf=\"showObjectsIcons\">\r\n </div>\r\n <span\r\n class=\"node-label\"\r\n [class.selected-node]=\"_isSelected(node)\"\r\n >\r\n <div class=\"custom-drag-placeholder\" *cdkDragPlaceholder></div>\r\n <div>\r\n {{node.name}}\r\n </div>\r\n </span>\r\n }\r\n <lib-bimplus-context-menu\r\n [items]=\"contextMenus?.objectContextMenuitems\"\r\n [data]=\"node\"\r\n *ngIf=\"contextMenus?.objectContextMenuitems?.length\"\r\n (triggerSelected)=\"_toggleNode($event, node)\"\r\n >\r\n </lib-bimplus-context-menu>\r\n @if(hasCheckBox1){\r\n <div\r\n class=\"custom-checkbox1\"\r\n [ngClass]=\"{ 'icon-checked': _isChecked1(node), 'icon-unchecked': !_isChecked1(node) }\"\r\n (click)=\"_toggleCheckBox1($event,node)\"\r\n (keypress)=\"_toggleCheckBox1($event,node)\"\r\n ></div>\r\n }\r\n @if(hasCheckBox2){\r\n <div\r\n class=\"custom-checkbox2\"\r\n [ngClass]=\"{ 'icon-checked': _isChecked2(node), 'icon-unchecked': !_isChecked2(node) }\"\r\n (click)=\"_toggleCheckBox2($event,node)\"\r\n (keypress)=\"_toggleCheckBox2($event,node)\"\r\n ></div>\r\n }\r\n </cdk-tree-node>\r\n <!-- This is the tree node template for expandable nodes -->\r\n <cdk-tree-node [matTreeNodePaddingIndent]=\"paddingIndent\"\r\n *matTreeNodeDef=\"let node;when: _isExpandable\"\r\n matTreeNodePadding\r\n (click)=\"_toggleNode($event, node)\"\r\n (keypress)=\"_toggleNode($event, node)\"\r\n class=\"folder-node\"\r\n [class.dragable-node]=\"enableDragAndDrop && node.level > 0\"\r\n [class.selected-node]=\"_isSelected(node)\"\r\n [attr.data-test]=\"dataTestPrefix + node.id\"\r\n [title]=\"node.name\"\r\n [attr.node-id]=\"node.id\"\r\n >\r\n <button\r\n mat-icon-button\r\n matTreeNodeToggle\r\n [attr.aria-label]=\"'Toggle ' + node.name\"\r\n >\r\n <div\r\n class=\"icon expand-collapse-icon\"\r\n [class.expand-more-icon]=\"_hasChildren(node) && !_treeControl.isExpanded(node)\"\r\n [class.collapse-icon]=\"_hasChildren(node) && _treeControl.isExpanded(node)\"\r\n >\r\n </div>\r\n </button> \r\n @if (customNodeTemplate() && _isCustomNodeType(node)) {\r\n <ng-container \r\n [ngTemplateOutlet]=\"customNodeTemplate()\" \r\n [ngTemplateOutletContext]=\"{node:node}\">\r\n </ng-container>\r\n }@else{\r\n <div class=\"icon folder-icon\" *ngIf=\"showFoldersIcons\">\r\n </div>\r\n <span class=\"node-label\"\r\n [class.selected-node]=\"_isSelected(node)\"\r\n [class.selected-all-descendants-nodes]=\"_descendantsAllSelected(node) && _isSelected(node) && enableParentHighlighting\"\r\n [class.selected-partially-descendants-nodes]=\"_descendantsPartiallySelected(node) && enableParentHighlighting\"\r\n >\r\n <div class=\"custom-drag-placeholder\" *cdkDragPlaceholder></div>\r\n <div class=\"node-label\">\r\n {{node.name}}\r\n </div>\r\n </span>\r\n }\r\n <lib-bimplus-context-menu\r\n [items]=\"contextMenus?.folderContextMenuitems\"\r\n [data]=\"node\"\r\n *ngIf=\"contextMenus?.folderContextMenuitems?.length\"\r\n (triggerSelected)=\"_toggleNode($event, node)\"\r\n >\r\n </lib-bimplus-context-menu>\r\n\r\n @if(hasCheckBox1){\r\n <div\r\n class=\"custom-checkbox1\"\r\n [ngClass]=\"{\r\n 'icon-undetermined': _isUndetermined1(node),\r\n 'icon-checked': !_isUndetermined1(node) && _isChecked1(node),\r\n 'icon-unchecked': !_isUndetermined1(node) && !_isChecked1(node)\r\n }\"\r\n (click)=\"_toggleCheckBox1($event,node)\"\r\n (keypress)=\"_toggleCheckBox1($event,node)\"\r\n ></div>\r\n }\r\n @if(hasCheckBox2){\r\n <div\r\n class=\"custom-checkbox2\"\r\n [ngClass]=\"{\r\n 'icon-undetermined': _isUndetermined2(node),\r\n 'icon-checked': !_isUndetermined2(node) && _isChecked2(node),\r\n 'icon-unchecked': !_isUndetermined2(node) && !_isChecked2(node)\r\n }\"\r\n (click)=\"_toggleCheckBox2($event,node)\"\r\n (keypress)=\"_toggleCheckBox2($event,node)\"\r\n ></div>\r\n }\r\n </cdk-tree-node>\r\n </cdk-tree>\r\n</div>\r\n", styles: [".text-selected{color:var(--text-highlight-text-color-enabled)}.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}.tree-container{background-color:var(--flat-tree-background-color, var(--flat-tree-container-background-color-enabled));width:calc(100% - 2 * var(--flat-tree-node-indent, 1rem));padding:var(--flat-tree-node-indent, 1rem);font-family:var(--flat-tree-font-family, \"Source Sans Pro\", Helvetica, Arial, tahoma, sans-serif);font-size:var(--flat-tree-font-size, 1.3rem);font-weight:var(--flat-tree-font-weight, 700);color:var(--flat-tree-container-text-color-enabled)}.tree-container>.tree-title{background-color:transparent;font-size:var(--flat-tree-title-font-size, 1.6rem);margin-bottom:1rem}.cdk-tree{background-color:transparent;width:100%}.cdk-tree>.cdk-tree-node{--mat-icon-button-touch-target-display: none;background-color:transparent;display:flex;align-items:center;cursor:pointer;line-height:var(--flat-tree-node-line-height, 2.4rem)}.cdk-tree>.cdk-tree-node.folder-node{font-weight:var(--flat-tree-folder-font-weight, 700)}.cdk-tree>.cdk-tree-node.object-node{font-weight:var(--flat-tree-object-font-weight, 400)}.cdk-tree>.cdk-tree-node>span.node-label{overflow:hidden;flex:1}.cdk-tree>.cdk-tree-node>span.node-label>div.node-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cdk-tree>.cdk-tree-node lib-bimplus-context-menu{--context-menu-trigger-width: 2.4rem;--context-menu-trigger-height: var(--flat-tree-node-line-height, 2.4rem);--context-menu-trigger-bkg-color: transparent;--context-menu-translate-x: 1rem}.cdk-tree>.cdk-tree-node:not(.selected-node):not(:hover) lib-bimplus-context-menu{display:none}.cdk-tree-node.dragable-node:hover{background-color:var(--flat-tree-draggable-node-background-color-hovered);background-image:url('data: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=\"11\" y=\"2\" width=\"2\" height=\"2\" fill=\"%237B7B7B\"/>%0D%0A<rect x=\"6\" y=\"2\" width=\"2\" height=\"2\" fill=\"%237B7B7B\"/>%0D%0A<rect x=\"11\" y=\"8\" width=\"2\" height=\"2\" fill=\"%237B7B7B\"/>%0D%0A<rect x=\"6\" y=\"8\" width=\"2\" height=\"2\" fill=\"%237B7B7B\"/>%0D%0A<rect x=\"11\" y=\"14\" width=\"2\" height=\"2\" fill=\"%237B7B7B\"/>%0D%0A<rect x=\"6\" y=\"14\" width=\"2\" height=\"2\" fill=\"%237B7B7B\"/>%0D%0A</svg>%0D%0A');background-repeat:no-repeat;background-size:var(--flat-tree-node-icon-size, 1.8rem);background-position:left center}.mat-mdc-icon-button{padding:.2rem;width:var(--flat-tree-node-line-height, 2.4rem);height:var(--flat-tree-node-line-height, 2.4rem)}.selected-node{color:var(--flat-tree-selected-node-text-color-enabled);font-weight:var(--flat-tree-selected-node-font-weight, 700)!important}.selected-all-descendants-nodes{color:var(--flat-tree-selected-node-text-color-enabled)}.selected-partially-descendants-nodes{color:var(--flat-tree-partially-selected-nodes-text-color-enabled)}.custom-drag-placeholder{height:0px}.custom-checkbox1,.custom-checkbox2{display:inline-flex;align-items:center;justify-content:center;width:2.4rem;height:2.4rem;padding-left:.2rem;padding-right:.2rem;cursor:pointer;background-size:1.8rem 1.8rem!important}.custom-checkbox1.icon-checked{display:inline-block;background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.8998L9 5.7998L18 10.8998L9 15.9998L0 10.8998Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A') no-repeat center}.custom-checkbox1.icon-unchecked{display:inline-block;background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23E1E5E8\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2384888C\"/>%0D%0A</svg>%0D%0A') no-repeat center}.custom-checkbox1.icon-undetermined{display:inline-block;background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M0 10.9L9 5.80002L18 10.9L9 16L0 10.9Z\" fill=\"%23DEF0FF\"/>%0D%0A<path d=\"M0 7.10001L9 2L18 7.10001L9 12.2L0 7.10001Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A') no-repeat center}.custom-checkbox2.icon-checked{display:inline-block;background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%230066CC\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%230066CC\"/>%0D%0A</svg>%0D%0A') no-repeat center}.custom-checkbox2.icon-unchecked{display:inline-block;background: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>') no-repeat center}.custom-checkbox2.icon-undetermined{display:inline-block;background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M9.0005 6.00002C9.39649 5.99269 9.78988 6.06528 10.1572 6.21345C10.5245 6.36162 10.8581 6.58233 11.1381 6.86238C11.4182 7.14242 11.6389 7.47607 11.7871 7.84335C11.9352 8.21064 12.0078 8.60403 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 12C8.60452 12.0073 8.21113 11.9348 7.84384 11.7866C7.47655 11.6384 7.14291 11.4177 6.86286 11.1377C6.58281 10.8576 6.36211 10.524 6.21394 10.1567C6.06577 9.78939 5.99318 9.396 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.00002Z\" fill=\"%2387C1FF\"/>%0D%0A<path d=\"M9 3C3.5 3 0 9 0 9C0 9 3.5 15 9 15C14.5 15 18 9 18 9C18 9 14.5 3 9 3ZM9 14C8.34157 14.0065 7.68845 13.8817 7.07886 13.6327C6.46928 13.3838 5.91547 13.0157 5.44987 12.5501C4.98427 12.0845 4.61622 11.5307 4.36726 10.9211C4.11831 10.3116 3.99345 9.65843 4 9C3.99345 8.34157 4.11831 7.68845 4.36726 7.07886C4.61622 6.46928 4.98427 5.91547 5.44987 5.44987C5.91547 4.98427 6.46928 4.61622 7.07886 4.36726C7.68845 4.11831 8.34157 3.99345 9 4C9.65843 3.99345 10.3116 4.11831 10.9211 4.36726C11.5307 4.61622 12.0845 4.98427 12.5501 5.44987C13.0157 5.91547 13.3838 6.46928 13.6327 7.07886C13.8817 7.68845 14.0065 8.34157 14 9C14.0065 9.65843 13.8817 10.3116 13.6327 10.9211C13.3838 11.5307 13.0157 12.0845 12.5501 12.5501C12.0845 13.0157 11.5307 13.3838 10.9211 13.6327C10.3116 13.8817 9.65843 14.0065 9 14Z\" fill=\"%2387C1FF\"/>%0D%0A</svg>%0D%0A') no-repeat center}.icon{width:var(--flat-tree-node-icon-size, 1.8rem);height:var(--flat-tree-node-icon-size, 1.8rem);margin-right:.4rem;background-position:center;background-size:var(--flat-tree-node-icon-size, 1.8rem)}.icon.folder-icon{background:var(--flat-tree-folder-icon, url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"utf-8\"?>%0D%0A<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->%0D%0A<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"%0D%0A%09 viewBox=\"0 0 20 20\" style=\"enable-background:new 0 0 20 20;\" xml:space=\"preserve\">%0D%0A<style type=\"text/css\">%0D%0A%09.st0{fill:%23444444;}%0D%0A<\\/style>%0D%0A<path class=\"st0\" d=\"M17,7V5V4V1h-6L8,3H0v16h2h15l3-12H17z M8,5h0.6l0.5-0.3L11.6,3H15v1v1v2H3l-1,4V5H8z M15.4,17H2.6l2-8H15h2%0D%0A%09h0.4L15.4,17z\"/>%0D%0A</svg>%0D%0A') no-repeat);background-size:var(--flat-tree-folder-icon-size, 1.6rem);background-position:center}.icon.object-icon{background:var(--flat-tree-object-icon, url('data:image/svg+xml,<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M6 9H10V7H6V9Z\" fill=\"%2346494D\"/>%0D%0A<path d=\"M6 4V6H14V4H6Z\" fill=\"%2346494D\"/>%0D%0A<path d=\"M6 12H10V10H6V12Z\" fill=\"%2346494D\"/>%0D%0A<path d=\"M17 1H3V19H13L17 15V1ZM13 15V17H5V3H15V15H13Z\" fill=\"%2346494D\"/>%0D%0A</svg>%0D%0A') no-repeat);background-size:var(--flat-tree-object-icon-size, 1.6rem);background-position:center}.icon.expand-collapse-icon.expand-more-icon{background:var(--flat-tree-node-expand-icon, url('data: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=\"M7.81235 5.64988C7.48497 5.38797 7 5.62106 7 6.04031L7 11.9597C7 12.3789 7.48497 12.612 7.81235 12.3501L11.512 9.39043C11.7622 9.19027 11.7622 8.80973 11.512 8.60957L7.81235 5.64988Z\" fill=\"%23ADADAD\"/>%0D%0A</svg>%0D%0A') no-repeat);background-size:var(--flat-tree-expand-collapse-icon-size, 1.8rem);background-position:center}.icon.expand-collapse-icon.collapse-icon{background:var(--flat-tree-node-collapse-icon, url('data: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=\"M12.3501 7.81235C12.612 7.48497 12.3789 7 11.9597 7H6.04031C5.62106 7 5.38797 7.48497 5.64988 7.81235L8.60957 11.512C8.80973 11.7622 9.19027 11.7622 9.39043 11.512L12.3501 7.81235Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat);background-size:var(--flat-tree-expand-collapse-icon-size, 1.8rem);background-position:center}\n"] }]
|
|
4494
4487
|
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { treeDataStringified: [{
|
|
4495
4488
|
type: Input
|
|
@@ -7483,7 +7476,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
7483
7476
|
FormsModule,
|
|
7484
7477
|
ReactiveFormsModule,
|
|
7485
7478
|
TranslateModule,
|
|
7486
|
-
GetAttributeValueAsString,
|
|
7487
7479
|
MatDatepickerModule,
|
|
7488
7480
|
MomentDateModule,
|
|
7489
7481
|
MatNativeDateModule
|
|
@@ -7623,7 +7615,6 @@ class ObjectPropertiesGroupComponent {
|
|
|
7623
7615
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: ObjectPropertiesGroupComponent, decorators: [{
|
|
7624
7616
|
type: Component,
|
|
7625
7617
|
args: [{ selector: 'lib-object-properties-group', imports: [
|
|
7626
|
-
RoundPipe,
|
|
7627
7618
|
GetAttributeValueAsString,
|
|
7628
7619
|
ObjectPropertyValueComponent,
|
|
7629
7620
|
BimplusInputTextFieldComponent,
|
|
@@ -8739,8 +8730,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
8739
8730
|
ObjectPropertiesGroupComponent,
|
|
8740
8731
|
ObjectPropertiesGroupComponent,
|
|
8741
8732
|
ObjectPreviewComponent,
|
|
8742
|
-
ReactiveFormsModule
|
|
8743
|
-
GetAttributeValue
|
|
8733
|
+
ReactiveFormsModule
|
|
8744
8734
|
], encapsulation: ViewEncapsulation.ShadowDom, template: "<lib-bimplus-buttons-row\r\n [items]=\"buttonRowItems\"\r\n (buttonClicked)=\"buttonClicked($event)\"\r\n/>\r\n\r\n<div class=\"object-properties\">\r\n\r\n <lib-bimplus-scrollable-container>\r\n <lib-expansion-panel class=\"object-properties-preview-panel\">\r\n <lib-expansion-panel-header>\r\n <span class=\"object-structure-header\">{{\"_3D preview\" | translate}}</span>\r\n </lib-expansion-panel-header>\r\n <lib-object-preview \r\n [api]=\"api\" \r\n [revision]=\"revision\" \r\n [objectId]=\"rootObjectId\"\r\n [visibleNode]=\"visibleNodeSignal()\"\t\r\n [opaqueNode]=\"opaqueNodeSignal()\"\r\n />\r\n </lib-expansion-panel>\r\n <!-- Object structure-->\r\n <lib-expansion-panel class=\"object-properties-object-structure-panel\">\r\n <lib-expansion-panel-header>\r\n <span class=\"object-structure-header\">{{\"_Object structure\" | translate}}</span>\r\n </lib-expansion-panel-header>\r\n @if (objectStructure) {\r\n <lib-bimplus-object-structure\r\n [objectStructure]=\"objectStructure\"\r\n [hasCheckBox1]=\"true\"\r\n [hasCheckBox2]=\"true\"\r\n (nodeSelected)=\"handleObjectStructureNodeSelected($event)\"\r\n (nodeVisible)= \"handleObjectStructureNodeVisible($event)\"\r\n (nodeOpaque)= \"handleObjectStructureNodeOpaque($event)\"\r\n />\r\n }\r\n </lib-expansion-panel>\r\n <!-- End Object structure-->\r\n\r\n <!-- Complex properties-->\r\n @if(complexProperties){\r\n <lib-expansion-panel>\r\n <lib-expansion-panel-header>\r\n <span class=\"object-properties-header\"> {{\"_Object multiproperties tree\" | translate}}</span>\r\n </lib-expansion-panel-header>\r\n <lib-bimplus-object-complex-properties\r\n [complexProperties]=\"complexProperties\"\r\n (nodeSelected)=\"handleComplexPropertyNodeSelected($event)\"\r\n />\r\n </lib-expansion-panel>\r\n }\r\n <!-- End Complex properties-->\r\n\r\n @if(objectAttributeGroups().length > 0){\r\n <lib-expansion-panel>\r\n <lib-expansion-panel-header>\r\n <span class=\"object-properties-header\">{{\"_Object properties\" | translate}}</span>\r\n </lib-expansion-panel-header>\r\n <form [formGroup]=\"_objectPropertiesForm\" class=\"input-form\">\r\n @for (attribGroup of objectAttributeGroups(); track attribGroup) {\r\n @if(_editMode() || hasSetAnyAttribute(attribGroup)){\r\n <lib-expansion-panel [expanded]=\"attribGroup.expanded\">\r\n <lib-expansion-panel-header>\r\n <span class=\"object-properties-group-header\"> {{attribGroup.name}}</span>\r\n </lib-expansion-panel-header>\r\n <lib-object-properties-group\r\n [attributesGroup]=\"attribGroup\"\r\n [editMode]=\"_editMode()\"\r\n [canUpdateObject]=\"_canUpdateObject()\"\r\n [objectPropertiesForm]=\"_objectPropertiesGroupForm(attribGroup.name)\"\r\n />\r\n </lib-expansion-panel>\r\n }\r\n }\r\n </form>\r\n </lib-expansion-panel>\r\n }\r\n </lib-bimplus-scrollable-container>\r\n</div>\r\n", styles: [":host{height:100%;display:flex;flex-direction:column;flex:1}lib-bimplus-buttons-row{flex:0;--button-row-margin-right: .8rem}.object-properties{margin-left:.8rem;position:relative;flex:1}.object-properties .object-structure-header,.object-properties .object-properties-header{font-weight:700;text-transform:uppercase;font-size:1.4rem}.object-properties .object-properties-group-header{line-height:2.4rem}.object-properties lib-bimplus-object-structure{--bimplus-object-structure-background-color: var(--object-properties-background-color, var(--flat-tree-container-background-color-enabled))}.object-properties lib-bimplus-object-complex-properties{--bimplus-object-complex-properties-background-color: var(--object-properties-background-color, var(--flat-tree-container-background-color-enabled))}.object-properties lib-bimplus-scrollable-container{position:absolute;top:0;bottom:0;flex:1;width:100%}.object-properties .object-properties-object-structure-panel .expansion-panel,.object-properties lib-object-preview{margin-top:.8rem}\n"] }]
|
|
8745
8735
|
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: i3.FormBuilder }, { type: i0.ChangeDetectorRef }, { type: ObjectPropertiesService }], propDecorators: { api: [{
|
|
8746
8736
|
type: Input
|
|
@@ -9400,7 +9390,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
9400
9390
|
NgForOf,
|
|
9401
9391
|
TranslateModule,
|
|
9402
9392
|
ReactiveFormsModule,
|
|
9403
|
-
NgIf,
|
|
9404
9393
|
BimplusInputTextFieldComponent
|
|
9405
9394
|
], encapsulation: ViewEncapsulation.ShadowDom, template: "@if (canCreateHyperlinks) {\r\n <form [formGroup]=\"hyperlinkForm\" class=\"input-form\">\r\n <div>\r\n <lib-bimplus-input-text-field formControlName=\"name\" placeholder=\"{{ '_Name' | translate }}\"/>\r\n </div>\r\n <div>\r\n <lib-bimplus-input-text-field formControlName=\"url\" placeholder=\"{{ '_URL' | translate }}\"/>\r\n </div>\r\n\r\n <lib-bimplus-buttons-row [items]=\"buttonRowItems\" (buttonClicked)=\"buttonRowButtonClicked($event)\"/>\r\n </form>\r\n}\r\n\r\n<div class=\"list-anchor\">\r\n <div class=\"list\">\r\n <lib-bimplus-scrollable-container>\r\n @if (hyperlinks.length > 0) {\r\n <div style=\"padding-left: 8px\" *ngFor=\"let hyperlink of hyperlinks\">\r\n <lib-object-hyperlinks-item [hyperlink]=\"hyperlink\" [deleteButtonEnabled]=\"canDeleteHyperlinks\"\r\n (deleteButtonClicked)=\"onHyperlinkItemDeleteButtonClicked(hyperlink)\"/>\r\n </div>\r\n } @else {\r\n <div class=\"no-links\">{{ \"_No hyperlinks found\" | translate }}</div>\r\n }\r\n </lib-bimplus-scrollable-container>\r\n </div>\r\n</div>\r\n", styles: [":host{height:100%;display:flex;flex-direction:column;flex:1}.list-anchor{position:relative;flex:1}.list{position:absolute;top:0;bottom:0;width:100%}lib-bimplus-buttons-row{--button-row-margin-top: .8rem;--button-row-margin-right: 0;--button-row-margin-bottom: 1.4rem;--button-row-margin-left: 0}.no-links{padding:2.5rem .5rem;color:var(--details-controls-details-not-found-text-color);text-align:center}.input-form{padding-left:.8rem;padding-right:.8rem;display:flex;flex-direction:column;gap:.2rem}.input-form lib-bimplus-input-text-field{margin-top:.2rem}\n"] }]
|
|
9406
9395
|
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: DialogService }, { type: i3.FormBuilder }], propDecorators: { api: [{
|
|
@@ -10207,7 +10196,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImpor
|
|
|
10207
10196
|
type: Input
|
|
10208
10197
|
}] } });
|
|
10209
10198
|
|
|
10210
|
-
///import { AttachmentLinkItem } from '../links-to-documents/links-to-documents.component.interface';
|
|
10211
10199
|
const config$1 = {
|
|
10212
10200
|
hideDeleteAttachmentButton: true,
|
|
10213
10201
|
hideAttachmentSize: true
|
|
@@ -10291,7 +10279,7 @@ class BimplusCommentComponent {
|
|
|
10291
10279
|
}
|
|
10292
10280
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.2", ngImport: i0, type: BimplusCommentComponent, decorators: [{
|
|
10293
10281
|
type: Component,
|
|
10294
|
-
args: [{ selector: 'lib-bimplus-comment', imports: [NgForOf, TranslatePipe, BimplusAttachmentsComponent
|
|
10282
|
+
args: [{ selector: 'lib-bimplus-comment', imports: [NgForOf, TranslatePipe, BimplusAttachmentsComponent], providers: [{ provide: BIMPLUS_ATTACHMENTS_CONFIG, useValue: config$1 }], encapsulation: ViewEncapsulation.ShadowDom, template: "@if (message !== undefined) {\r\n<div \r\n class=\"comment-item-container\"\r\n [class]=\"isActUserAuthor ? 'author' : ''\">\r\n @if (!isActUserAuthor) {\r\n <div class=\"comment-header\">\r\n <div class=\"comment-title\">{{isActUserAuthor? '' : displayname}}</div> \r\n </div>\r\n }\r\n @if (isActUserAuthor) {\r\n <div\r\n class=\"comment-close\"\r\n (click)=\"close()\"\r\n (keydown)=\"onKeyPress($event)\"\r\n ></div>\r\n }\r\n @if (message !== undefined){\r\n <div class=\"comment-item-text\">{{message}}</div>\r\n }\r\n\r\n @if (attachments.length) {\r\n <lib-bimplus-attachments \r\n listOnly \r\n [attachments]=\"attachments\" \r\n (getAttachment)=\"getAttachment.emit($event)\"\r\n />\r\n }\r\n\r\n @if (attachmentLinkItems.length) {\r\n <a *ngFor=\"let attachmentLink of attachmentLinkItems\" class=\"item-row\" href=\"{{attachmentLink.link}}\" target=\"_blank\">\r\n <div class=\"attachment-link-icon\" title=\"{{ '_Attachment_link' | translate }}\"></div>\r\n <div class=\"text\" title=\"{{ attachmentLink.name }}\">{{ attachmentLink.name}}</div>\r\n </a> \r\n }\r\n\r\n <a *ngFor=\"let link of hyperlinks\" class=\"item-row\" href=\"{{ link.url }}\" target=\"_blank\">\r\n <div class=\"link-icon\" title=\"{{ '_Hyperlink' | translate }}\"></div>\r\n <div class=\"text\" title=\"{{ link.url }}\">{{ link.name }}</div>\r\n </a>\r\n \r\n @if (date && date.length > 0){\r\n <div class=\"comment-item-date\">\r\n {{date}}\r\n </div>\r\n }\r\n</div>\r\n}\r\n", styles: [".new-comment-attachment{display:flex;align-items:center;gap:.4rem}.new-comment-attachment .text{line-height:2.4rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.link-icon{background: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:%23444}<\\/style><path class=\"st0\" d=\"M16.7 4.2l-1.3-1.3c-1.2-1.2-3.2-1.2-4.4 0l-.6.6 1.1 1.1.7-.6c.6-.6 1.5-.6 2.1 0l1.3 1.3c.6.6.6 1.5 0 2.1l-4.1 4.1c-.6.6-1.5.6-2.1 0l-1.3-1.3c-.6-.5-.6-1.4-.1-2L6.9 7.1c-1.1 1.2-1.1 3.1.1 4.3l1.3 1.3c1.2 1.2 3.2 1.2 4.4 0l4.1-4.1c1.1-1.2 1.1-3.2-.1-4.4z\"/><path class=\"st0\" d=\"M5.8 13c-.6.6-1.5.6-2.1 0l-1.3-1.3c-.6-.6-.6-1.5 0-2.1l4.1-4.1c.6-.6 1.5-.6 2.1 0l1.3 1.3c.6.6.6 1.5 0 2.1l-.6.6 1.1 1.1.6-.6c1.2-1.2 1.2-3.2 0-4.4L9.8 4.3c-1.2-1.2-3.2-1.2-4.4 0L1.3 8.4c-1.2 1.2-1.2 3.2 0 4.4l1.3 1.3c1.2 1.2 3.2 1.2 4.4 0l.6-.6-1.1-1.1-.7.6z\"/></svg>') no-repeat center;width:1.8rem;height:1.8rem;cursor:pointer;display:flex}.attachment-link-icon{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4 8H8V6H4V8Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M4 3V5H12V3H4Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M4 11H8V9H4V11Z\" fill=\"%23444444\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 0H15V10H13V2H3V16H10V18H1V0Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15.0198 11.9876V16.5C15.0198 16.7761 14.7959 17 14.5198 17H12.5C12.2239 17 12 16.7761 12 16.5V12.4938C12 12.2153 12.2277 11.9904 12.5062 11.9939C12.7799 11.9973 13 12.2201 13 12.4938V16H14V12.3913C14 11.5963 13.4456 11 12.6535 11H12.3861C11.5941 11 11 11.5963 11 12.3913V16.6087C11 17.4037 11.5941 18 12.3861 18H14.6139C15.4059 18 16 17.4037 16 16.6087V11.9876H15.0198Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center;width:1.8rem;height:1.8rem;cursor:pointer;display:flex}.item-row{display:flex;gap:.2rem;align-items:center;line-height:2.4rem}.comment-item-container{font:400 1.28rem Source Sans Pro,Helvetica,Arial,tahoma,sans-serif;background-color:var(--comments-list-item-container-background-color);border-radius:.4rem;margin:1rem 8rem 1rem 1rem;padding:.8rem}.comment-item-container.author{background-color:var(--comments-item-comment-author-background-color);margin:1rem 1rem 1rem 8rem}.comment-item-container a{text-decoration:none!important;color:var(--ui-text-1-color)}.comment-item-container .comment-header{display:inline-flex;justify-content:space-between;align-items:center;width:100%}.comment-item-container .comment-header .comment-title{font-weight:700}.comment-item-container .comment-close{background:url('data:image/svg+xml,<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" width=\"18\" height=\"18\" xml:space=\"preserve\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"%23444\" d=\"M13.5 5.4L12.1 4 8.5 7.6 4.9 4 3.5 5.4 7.1 9l-3.6 3.6L4.9 14l3.6-3.6 3.6 3.6 1.4-1.4L9.9 9z\"/></svg>%0D%0A') no-repeat center;background-size:2rem;height:2rem;width:2rem;border:none;cursor:unset;float:right}.comment-item-container .comment-close:hover{cursor:pointer}.comment-item-container .comment-item-text{margin:.8rem 0;word-break:break-all;color:var(--ui-text-1-color)}.comment-item-container .hyperlink .link-icon{background-size:1.8rem}.comment-item-container .comment-attachments-list{line-height:2.4rem;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:var(--ui-text-1-color)}.comment-item-container .comment-attachments-list .attachment-object-item{width:100%}.comment-item-container .comment-attachments-list .attachment-object-item .attachment-object-link{display:inline-flex;align-items:center}.comment-item-container .comment-attachments-list .attachment-icon,.comment-item-container .comment-attachments-list .links-icon,.comment-item-container .comment-attachments-list .attachmentLink-icon{width:1.5rem;height:1.5rem;margin:0 .2rem}.comment-item-container .comment-attachments-list .tab-attachments{background:url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M12 3v12H6V3h2v10h2V2.4C10 1.6 9.4 1 8.6 1H5.4C4.6 1 4 1.6 4 2.4v13.3c0 .7.6 1.3 1.4 1.3h7.3c.8 0 1.4-.6 1.4-1.4V3H12z\" fill=\"%23444\"/></svg>') no-repeat center}.comment-item-container .comment-attachments-list .tab-attachmentlinks{background:url('data:image/svg+xml,<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0D%0A<path d=\"M4 8H8V6H4V8Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M4 3V5H12V3H4Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M4 11H8V9H4V11Z\" fill=\"%23444444\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 0H15V10H13V2H3V16H10V18H1V0Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15.0198 11.9876V16.5C15.0198 16.7761 14.7959 17 14.5198 17H12.5C12.2239 17 12 16.7761 12 16.5V12.4938C12 12.2153 12.2277 11.9904 12.5062 11.9939C12.7799 11.9973 13 12.2201 13 12.4938V16H14V12.3913C14 11.5963 13.4456 11 12.6535 11H12.3861C11.5941 11 11 11.5963 11 12.3913V16.6087C11 17.4037 11.5941 18 12.3861 18H14.6139C15.4059 18 16 17.4037 16 16.6087V11.9876H15.0198Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A') no-repeat center}.comment-item-container .comment-attachments-list .tab-hyperlinks{background: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:%23444}<\\/style><path class=\"st0\" d=\"M16.7 4.2l-1.3-1.3c-1.2-1.2-3.2-1.2-4.4 0l-.6.6 1.1 1.1.7-.6c.6-.6 1.5-.6 2.1 0l1.3 1.3c.6.6.6 1.5 0 2.1l-4.1 4.1c-.6.6-1.5.6-2.1 0l-1.3-1.3c-.6-.5-.6-1.4-.1-2L6.9 7.1c-1.1 1.2-1.1 3.1.1 4.3l1.3 1.3c1.2 1.2 3.2 1.2 4.4 0l4.1-4.1c1.1-1.2 1.1-3.2-.1-4.4z\"/><path class=\"st0\" d=\"M5.8 13c-.6.6-1.5.6-2.1 0l-1.3-1.3c-.6-.6-.6-1.5 0-2.1l4.1-4.1c.6-.6 1.5-.6 2.1 0l1.3 1.3c.6.6.6 1.5 0 2.1l-.6.6 1.1 1.1.6-.6c1.2-1.2 1.2-3.2 0-4.4L9.8 4.3c-1.2-1.2-3.2-1.2-4.4 0L1.3 8.4c-1.2 1.2-1.2 3.2 0 4.4l1.3 1.3c1.2 1.2 3.2 1.2 4.4 0l.6-.6-1.1-1.1-.7.6z\"/></svg>') no-repeat center}.comment-item-container .comment-attachments-list .icon:hover{cursor:pointer}.comment-item-container .comment-item-date{text-align:end;color:var(--comments-list-item-date-color)}lib-bimplus-attachments{--bim-attachment-item-border-bottom: none;--bim-attachment-item-background-position: 0 center;--bim-attachment-item-padding-left: 1.3rem;--bim-attachment-item-background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 18 18\"><path d=\"M12 3v12H6V3h2v10h2V2.4C10 1.6 9.4 1 8.6 1H5.4C4.6 1 4 1.6 4 2.4v13.3c0 .7.6 1.3 1.4 1.3h7.3c.8 0 1.4-.6 1.4-1.4V3H12z\" fill=\"%23444\"/></svg>');--bim-attachment-item-background-size: 1.8rem}lib-links-to-documents{--bim-attachment-name-padding: 0;--bim-attachment-item-background-position: 0;--attachment-row-border-bottom: none;--bim-attachment-item-background-image: url('data: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=\"M4 8H8V6H4V8Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M4 3V5H12V3H4Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M4 11H8V9H4V11Z\" fill=\"%23444444\"/>%0D%0A<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 0H15V10H13V2H3V16H10V18H1V0Z\" fill=\"%23444444\"/>%0D%0A<path d=\"M15.0198 11.9876V16.5C15.0198 16.7761 14.7959 17 14.5198 17H12.5C12.2239 17 12 16.7761 12 16.5V12.4938C12 12.2153 12.2277 11.9904 12.5062 11.9939C12.7799 11.9973 13 12.2201 13 12.4938V16H14V12.3913C14 11.5963 13.4456 11 12.6535 11H12.3861C11.5941 11 11 11.5963 11 12.3913V16.6087C11 17.4037 11.5941 18 12.3861 18H14.6139C15.4059 18 16 17.4037 16 16.6087V11.9876H15.0198Z\" fill=\"%23444444\"/>%0D%0A</svg>%0D%0A');--bim-attachment-delete-button: #444;--attachment-row-margin: 0;--bim-attachment-item-background-size: 1.8rem;--bim-attachment-delete-button-font-weight: bold;--bim-attachmentlink-item-left-padding: 2.3rem}\n"] }]
|
|
10295
10283
|
}], propDecorators: { outputActionCommentEvent: [{
|
|
10296
10284
|
type: Output
|
|
10297
10285
|
}], getAttachment: [{
|