architwin 1.14.3 → 1.14.5
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.
|
@@ -12,7 +12,7 @@ export let isThemeEnabled = true;
|
|
|
12
12
|
export let isRoomCreationEnabled = true;
|
|
13
13
|
export let isBIMEnabled = true;
|
|
14
14
|
export let isGeneralSettingsEnabled = true;
|
|
15
|
-
export let isSpaceScreenSharingEnabled =
|
|
15
|
+
export let isSpaceScreenSharingEnabled = false;
|
|
16
16
|
export let isPipeEnabled = true;
|
|
17
17
|
export function renderMenuBar(iFrame) {
|
|
18
18
|
const bimImageIcon = getAssetUrl('bim.png');
|
|
@@ -121,7 +121,7 @@ export class PipeList {
|
|
|
121
121
|
: `
|
|
122
122
|
<div class="at_h-responsive-304">
|
|
123
123
|
<div class=" at_flex at_justify_center at_items_center at_flex_column at_h-full">
|
|
124
|
-
<span class="mdi mdi-
|
|
124
|
+
<span class="mdi mdi-arrow-decision at_pipe_category at_text-xxl"></span>
|
|
125
125
|
<div class="at_text_xs" style="white-space:nowrap"> ${i18n.t('NoPipesTypeToDisplay')}</div>
|
|
126
126
|
</div>
|
|
127
127
|
</div>
|
|
@@ -306,7 +306,7 @@ export class PipeList {
|
|
|
306
306
|
document.getElementById('at-pipe-list-collapse').innerHTML = `
|
|
307
307
|
<div class="at_h-responsive-304">
|
|
308
308
|
<div class="at_flex at_justify_center at_items_center at_flex_column at_h-full">
|
|
309
|
-
<span class="mdi mdi-
|
|
309
|
+
<span class="mdi mdi-arrow-decision at_pipe_category at_text-xxl"></span>
|
|
310
310
|
<div class="at_text_xs" style="white-space:nowrap">${i18n.t('NoPipesTypeToDisplay')}</div>
|
|
311
311
|
</div>
|
|
312
312
|
</div>`;
|
|
@@ -317,7 +317,7 @@ export class PipeList {
|
|
|
317
317
|
if (!_pipes.some(p => p.category_uuid === categoryuuid)) {
|
|
318
318
|
document.getElementById(`${COLLAPSE.CONTENT_ID}-${categoryuuid}`).innerHTML = `
|
|
319
319
|
<div class="at_flex at_justify_center at_items_center at_flex_column">
|
|
320
|
-
<div class="at_p-2">
|
|
320
|
+
<div class="at_p-2 at_text_sm">
|
|
321
321
|
<div style="white-space:nowrap">${i18n.t('NoPipesToDisplay')}</div>
|
|
322
322
|
</div>
|
|
323
323
|
</div>`;
|