@bimdata/bcf-components 2.0.0-rc.9 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vue2/bcf-components.es.js +662 -439
- package/dist/vue2/style.css +1 -1
- package/dist/vue3/bcf-components.es.js +1551 -1330
- package/dist/vue3/style.css +1 -1
- package/package.json +2 -4
|
@@ -19,6 +19,80 @@ var __spreadValues = (a2, b2) => {
|
|
|
19
19
|
};
|
|
20
20
|
var __spreadProps = (a2, b2) => __defProps(a2, __getOwnPropDescs(b2));
|
|
21
21
|
import { reactive, computed, ref, watch, toRaw, inject } from "vue";
|
|
22
|
+
const EXTENSION_TYPES = Object.freeze([
|
|
23
|
+
"Priority",
|
|
24
|
+
"Type",
|
|
25
|
+
"Stage",
|
|
26
|
+
"Status",
|
|
27
|
+
"Label"
|
|
28
|
+
]);
|
|
29
|
+
const EXTENSION_WITH_COLOR = Object.freeze([
|
|
30
|
+
"Priority",
|
|
31
|
+
"Status"
|
|
32
|
+
]);
|
|
33
|
+
const EXTENSION_FIELDS = Object.freeze({
|
|
34
|
+
Priority: "priority",
|
|
35
|
+
Type: "topic_type",
|
|
36
|
+
Stage: "stage",
|
|
37
|
+
Status: "topic_status",
|
|
38
|
+
Label: "label"
|
|
39
|
+
});
|
|
40
|
+
const EXTENSION_LIST_FIELDS = Object.freeze({
|
|
41
|
+
Priority: "priorities",
|
|
42
|
+
Type: "topic_types",
|
|
43
|
+
Stage: "stages",
|
|
44
|
+
Status: "topic_statuses",
|
|
45
|
+
Label: "topic_labels"
|
|
46
|
+
});
|
|
47
|
+
const DEFAULT_PRIORITY_COLOR = "D8D8D8";
|
|
48
|
+
const DEFAULT_STATUS_COLOR = "D8D8D8";
|
|
49
|
+
const VIEWPOINT_TYPE_FIELD = "originating_system";
|
|
50
|
+
const VIEWPOINT_MODELS_FIELD = "authoring_tool_id";
|
|
51
|
+
const VIEWPOINT_TYPES = Object.freeze({
|
|
52
|
+
V3D: "ifc3d",
|
|
53
|
+
V2D: "ifc2d",
|
|
54
|
+
DWG: "dwg",
|
|
55
|
+
PLAN: "plan"
|
|
56
|
+
});
|
|
57
|
+
const VIEWPOINT_CONFIG = Object.freeze({
|
|
58
|
+
[VIEWPOINT_TYPES.V3D]: {
|
|
59
|
+
order: 1,
|
|
60
|
+
window: "3d",
|
|
61
|
+
plugin: "viewer3d",
|
|
62
|
+
icon: "fileIfcPolychrome"
|
|
63
|
+
},
|
|
64
|
+
[VIEWPOINT_TYPES.V2D]: {
|
|
65
|
+
order: 2,
|
|
66
|
+
window: "2d",
|
|
67
|
+
plugin: "viewer2d",
|
|
68
|
+
icon: "fileIfcPolychrome"
|
|
69
|
+
},
|
|
70
|
+
[VIEWPOINT_TYPES.DWG]: {
|
|
71
|
+
order: 3,
|
|
72
|
+
window: "dwg",
|
|
73
|
+
plugin: "dwg",
|
|
74
|
+
icon: "fileDwgPolychrome"
|
|
75
|
+
},
|
|
76
|
+
[VIEWPOINT_TYPES.PLAN]: {
|
|
77
|
+
order: 4,
|
|
78
|
+
window: "plan",
|
|
79
|
+
plugin: "plan",
|
|
80
|
+
icon: "filePlanPolychrome"
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
var config = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
84
|
+
__proto__: null,
|
|
85
|
+
DEFAULT_PRIORITY_COLOR,
|
|
86
|
+
DEFAULT_STATUS_COLOR,
|
|
87
|
+
EXTENSION_FIELDS,
|
|
88
|
+
EXTENSION_LIST_FIELDS,
|
|
89
|
+
EXTENSION_TYPES,
|
|
90
|
+
EXTENSION_WITH_COLOR,
|
|
91
|
+
VIEWPOINT_CONFIG,
|
|
92
|
+
VIEWPOINT_MODELS_FIELD,
|
|
93
|
+
VIEWPOINT_TYPES,
|
|
94
|
+
VIEWPOINT_TYPE_FIELD
|
|
95
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
22
96
|
let apiClient = null;
|
|
23
97
|
function setApiClient(client) {
|
|
24
98
|
apiClient = client;
|
|
@@ -172,33 +246,6 @@ function useBcfSort(topics) {
|
|
|
172
246
|
sortOrderDate
|
|
173
247
|
};
|
|
174
248
|
}
|
|
175
|
-
const EXTENSION_TYPES = [
|
|
176
|
-
"Priority",
|
|
177
|
-
"Type",
|
|
178
|
-
"Stage",
|
|
179
|
-
"Status",
|
|
180
|
-
"Label"
|
|
181
|
-
];
|
|
182
|
-
const EXTENSION_WITH_COLOR = [
|
|
183
|
-
"Priority",
|
|
184
|
-
"Status"
|
|
185
|
-
];
|
|
186
|
-
const EXTENSION_FIELDS = {
|
|
187
|
-
Priority: "priority",
|
|
188
|
-
Type: "topic_type",
|
|
189
|
-
Stage: "stage",
|
|
190
|
-
Status: "topic_status",
|
|
191
|
-
Label: "label"
|
|
192
|
-
};
|
|
193
|
-
const EXTENSION_LIST_FIELDS = {
|
|
194
|
-
Priority: "priorities",
|
|
195
|
-
Type: "topic_types",
|
|
196
|
-
Stage: "stages",
|
|
197
|
-
Status: "topic_statuses",
|
|
198
|
-
Label: "topic_labels"
|
|
199
|
-
};
|
|
200
|
-
const DEFAULT_PRIORITY_COLOR = "D8D8D8";
|
|
201
|
-
const DEFAULT_STATUS_COLOR = "D8D8D8";
|
|
202
249
|
function getPriorityColor(topic, detailedExtensions) {
|
|
203
250
|
const priorityDetail = detailedExtensions.priorities.find((p2) => p2.priority === topic.priority);
|
|
204
251
|
return (priorityDetail == null ? void 0 : priorityDetail.color) || DEFAULT_PRIORITY_COLOR;
|
|
@@ -207,6 +254,16 @@ function getStatusColor(topic, detailedExtensions) {
|
|
|
207
254
|
const statusDetail = detailedExtensions.topic_statuses.find((s2) => s2.topic_status === topic.topic_status);
|
|
208
255
|
return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
|
|
209
256
|
}
|
|
257
|
+
function getViewpointType(viewpoint) {
|
|
258
|
+
return viewpoint[VIEWPOINT_TYPE_FIELD];
|
|
259
|
+
}
|
|
260
|
+
function getViewpointModels(viewpoint) {
|
|
261
|
+
var _a, _b;
|
|
262
|
+
return (_b = (_a = viewpoint[VIEWPOINT_MODELS_FIELD]) == null ? void 0 : _a.split(",").map(Number)) != null ? _b : [];
|
|
263
|
+
}
|
|
264
|
+
function getViewpointConfig(viewpoint) {
|
|
265
|
+
return VIEWPOINT_CONFIG[getViewpointType(viewpoint)];
|
|
266
|
+
}
|
|
210
267
|
var r$d = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), o$d = { name: "BIMDataButton", props: { width: { type: String, default: "32px" }, height: { type: String, default: "32px" }, fill: { type: Boolean, default: false }, outline: { type: Boolean, default: false }, ghost: { type: Boolean, default: false }, ripple: { type: Boolean, default: false }, radius: { type: Boolean, default: false }, square: { type: Boolean, default: false }, rounded: { type: Boolean, default: false }, icon: { type: Boolean, default: false }, color: { type: String, default: "default", validator: (o2) => r$d.includes(o2) } }, emits: ["click"], computed: { classes() {
|
|
211
268
|
return { "bimdata-btn__icon": this.icon, "bimdata-btn__fill": this.fill, "bimdata-btn__outline": this.outline, "bimdata-btn__ghost": this.ghost, "bimdata-btn__ripple": this.ripple, "bimdata-btn__radius": this.radius, "bimdata-btn__square": this.square, "bimdata-btn__rounded": this.rounded, ["bimdata-btn__fill--" + this.color]: this.fill && this.color, ["bimdata-btn__outline--" + this.color]: this.outline && this.color, ["bimdata-btn__ghost--" + this.color]: this.ghost && this.color, ["bimdata-btn__ripple--" + this.color]: this.ripple && this.color };
|
|
212
269
|
}, style() {
|
|
@@ -260,16 +317,16 @@ const c$5 = a$b({ render: function() {
|
|
|
260
317
|
}, staticRenderFns: [] }, function(r2) {
|
|
261
318
|
r2 && (r2("data-v-7af18892_0", { source: 'html[data-v-7af18892]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}html[data-v-7af18892]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.text-left[data-v-7af18892]{text-align:left}.text-center[data-v-7af18892]{text-align:center}.text-right[data-v-7af18892]{text-align:right}.bimdata-link[data-v-7af18892]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-7af18892]{font-family:roboto,sans-serif}', map: void 0, media: void 0 }), r2("data-v-7af18892_1", { source: ".bimdata-btn{padding:0 var(--spacing-unit);height:fit-content;display:flex;align-items:center;justify-content:center;background-color:transparent;border:none;color:var(--color-primary);cursor:pointer;font-family:var(--primary-font);font-size:12px;transition:all .1s ease}.bimdata-btn:hover{transition:all .25s ease-in}.bimdata-btn:focus{outline:0}.bimdata-btn__icon{padding:0}.bimdata-btn__radius{border-radius:3px}.bimdata-btn__square{border-radius:0}.bimdata-btn__rounded{border-radius:50%}.bimdata-btn__fill{background-color:var(--color-white);justify-content:center}.bimdata-btn__fill--default{box-shadow:var(--box-shadow)}.bimdata-btn__fill--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__fill--primary{background-color:var(--color-primary);color:var(--color-white)}.bimdata-btn__fill--primary:hover{background-color:var(--color-primary-light)}.bimdata-btn__fill--secondary{background-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__fill--secondary:hover{background-color:var(--color-secondary-light)}.bimdata-btn__fill--granite{background-color:var(--color-granite);color:var(--color-white)}.bimdata-btn__fill--granite:hover{background-color:var(--color-granite)}.bimdata-btn__fill--high{background-color:var(--color-high);color:var(--color-white)}.bimdata-btn__fill--high:hover{background-color:var(--color-high-light)}.bimdata-btn__fill--success{background-color:var(--color-success);color:var(--color-white)}.bimdata-btn__fill--success:hover{background-color:var(--color-success-light)}.bimdata-btn__fill--btn-icon svg{margin:0 6px}.bimdata-btn__fill:disabled{background-color:var(--color-silver-dark);color:var(--color-white);cursor:auto}.bimdata-btn__ripple{background-position:center;transition:background .8s}.bimdata-btn__ripple--default{background-color:transparent;color:var(--color-primary)}.bimdata-btn__ripple--default:hover{background:transparent radial-gradient(circle,transparent 1%,var(--color-silver-light) 1%) center/15000%}.bimdata-btn__ripple--default:active:not(:disabled){background-color:var(--color-silver-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--primary{background-color:var(--color-primary);color:var(--color-white)}.bimdata-btn__ripple--primary:hover{background:var(--color-primary) radial-gradient(circle,transparent 1%,var(--color-primary) 1%) center/15000%}.bimdata-btn__ripple--primary:active:not(:disabled){background-color:var(--color-primary-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--secondary{background-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__ripple--secondary:hover{background:var(--color-secondary) radial-gradient(circle,transparent 1%,var(--color-secondary) 1%) center/15000%}.bimdata-btn__ripple--secondary:active:not(:disabled){background-color:var(--color-secondary-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--granite{background-color:var(--color-granite);color:var(--color-white)}.bimdata-btn__ripple--granite:hover{background:var(--color-granite) radial-gradient(circle,transparent 1%,var(--color-granite) 1%) center/15000%}.bimdata-btn__ripple--granite:active:not(:disabled){background-color:var(--color-granite-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--high{background-color:var(--color-high);color:var(--color-white)}.bimdata-btn__ripple--high:hover{background:var(--color-high) radial-gradient(circle,transparent 1%,var(--color-high) 1%) center/15000%}.bimdata-btn__ripple--high:active:not(:disabled){background-color:var(--color-high-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--success{background-color:var(--color-success);color:var(--color-white)}.bimdata-btn__ripple--success:hover{background:var(--color-success) radial-gradient(circle,transparent 1%,var(--color-success) 1%) center/15000%}.bimdata-btn__ripple--success:active:not(:disabled){background-color:var(--color-success-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple:disabled{background-color:var(--color-silver-dark);color:var(--color-white);cursor:auto}.bimdata-btn__outline{justify-content:center;border:1px solid}.bimdata-btn__outline--default{border-color:var(--color-silver);color:var(--color-primary)}.bimdata-btn__outline--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__outline--primary{border-color:var(--color-primary);color:var(--color-primary)}.bimdata-btn__outline--primary:hover{background-color:var(--color-primary-lighter)}.bimdata-btn__outline--secondary{border-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__outline--secondary:hover{background-color:var(--color-secondary-lighter)}.bimdata-btn__outline--granite{border-color:var(--color-granite);color:var(--color-granite)}.bimdata-btn__outline--granite:hover{background-color:var(--color-silver-light)}.bimdata-btn__outline--high{border-color:var(--color-high);color:var(--color-high)}.bimdata-btn__outline--high:hover{background-color:var(--color-high-lighter)}.bimdata-btn__outline--success{border-color:var(--color-success);color:var(--color-success)}.bimdata-btn__outline--success:hover{background-color:var(--color-success-lighter)}.bimdata-btn__outline:disabled{border-color:var(--color-silver-dark);color:var(--color-silver-dark);cursor:auto}.bimdata-btn__outline:disabled:hover{background-color:transparent}.bimdata-btn__ghost{justify-content:center}.bimdata-btn__ghost svg{display:flex;align-items:center}.bimdata-btn__ghost--default{color:var(--color-primary)}.bimdata-btn__ghost--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__ghost--primary{color:var(--color-primary)}.bimdata-btn__ghost--primary:hover{background-color:var(--color-primary-lighter)}.bimdata-btn__ghost--secondary{color:var(--color-secondary)}.bimdata-btn__ghost--secondary:hover{background-color:var(--color-secondary-lighter)}.bimdata-btn__ghost--granite{color:var(--color-granite)}.bimdata-btn__ghost--granite:hover{background-color:var(--color-silver-light)}.bimdata-btn__ghost--high{color:var(--color-high)}.bimdata-btn__ghost--high:hover{background-color:var(--color-high-lighter)}.bimdata-btn__ghost--success{color:var(--color-success)}.bimdata-btn__ghost--success:hover{background-color:var(--color-success-lighter)}.bimdata-btn__ghost:disabled{color:var(--color-silver-dark);cursor:auto}", map: void 0, media: void 0 }));
|
|
262
319
|
}, o$d, "data-v-7af18892", false, void 0, false, e$d, void 0, void 0);
|
|
263
|
-
function e$c(e2, t2, i2, d2, r2, o2, n2,
|
|
264
|
-
typeof n2 != "boolean" && (
|
|
320
|
+
function e$c(e2, t2, i2, d2, r2, o2, n2, C2, s2, v2) {
|
|
321
|
+
typeof n2 != "boolean" && (s2 = C2, C2 = n2, n2 = false);
|
|
265
322
|
const l2 = typeof i2 == "function" ? i2.options : i2;
|
|
266
323
|
let a2;
|
|
267
324
|
if (e2 && e2.render && (l2.render = e2.render, l2.staticRenderFns = e2.staticRenderFns, l2._compiled = true, r2 && (l2.functional = true)), d2 && (l2._scopeId = d2), o2 ? (a2 = function(e3) {
|
|
268
|
-
(e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this,
|
|
325
|
+
(e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, s2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(o2);
|
|
269
326
|
}, l2._ssrRegister = a2) : t2 && (a2 = n2 ? function(e3) {
|
|
270
|
-
t2.call(this,
|
|
327
|
+
t2.call(this, v2(e3, this.$root.$options.shadowRoot));
|
|
271
328
|
} : function(e3) {
|
|
272
|
-
t2.call(this,
|
|
329
|
+
t2.call(this, C2(e3));
|
|
273
330
|
}), a2)
|
|
274
331
|
if (l2.functional) {
|
|
275
332
|
const e3 = l2.render;
|
|
@@ -675,6 +732,39 @@ var t$c = { addFile: e$c({ render: function() {
|
|
|
675
732
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), zone: e$c({ render: function() {
|
|
676
733
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
677
734
|
return t2("g", [t2("path", { attrs: { d: "M8.96582 11.3144L11.6658 10.1144V3.91443L1.96582 8.11443L8.96582 11.3144Z" } }), this._v(" "), t2("path", { attrs: { d: "M1.0658 15.2145L11.6658 19.9145V13.6145L1.0658 8.81445V15.2145Z" } }), this._v(" "), t2("path", { attrs: { d: "M22.9658 8.11443L13.2658 3.91443V10.1144L15.9658 11.3144L22.9658 8.11443Z" } }), this._v(" "), t2("path", { attrs: { d: "M13.2658 13.6145V19.9145L23.8658 15.2145V8.81445L13.2658 13.6145Z" } })]);
|
|
735
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcfPolychrome: e$c({ render: function() {
|
|
736
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
737
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.02193 12.8656C4.99498 13.5081 4.948 14.6282 5.60528 15.8997C7.70676 16.9403 12.8873 18.8488 16.5248 18.118C21.0718 17.2045 24.4653 11.2714 22.3618 6.71975C20.2583 2.16806 16.7141 1.26965 13.7885 1.56016C13.8264 1.59404 13.8667 1.6296 13.9093 1.6671C14.4738 2.16451 15.427 3.0043 16.2088 4.83129C17.7639 5.7059 20.2614 8.64331 18.7358 12.3391C17.0551 16.4108 13.4497 16.0217 12.2821 15.8956C12.1416 15.8805 12.0365 15.8691 11.9742 15.8698C11.5056 15.8749 7.61308 15.3475 5.02347 12.8287C5.02297 12.8408 5.02245 12.8531 5.02193 12.8656ZM12.4885 4.74167C11.9561 4.40063 10.617 3.72872 9.52006 3.76938C7.57654 5.08613 3.39156 8.60595 2.1998 12.1512C0.710113 16.5827 4.10364 22.5158 9.06053 22.9528C14.0174 23.3898 16.6583 20.7215 17.8718 18.0188C17.0698 18.3001 15.5331 18.7286 13.7293 18.4406C12.2014 19.3627 8.46042 20.1549 6.05233 16.9734C3.39934 13.4683 5.53596 10.5111 6.22787 9.55348C6.3111 9.43828 6.37343 9.35202 6.40399 9.29722C6.63388 8.88508 9.03266 5.74603 12.4885 4.74167Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { d: "M18.0536 13.1944C17.54 14.1736 16.294 15.0082 15.7352 15.3031C16.6014 11.78 15.1076 8.07749 14.869 7.67046C14.5735 7.16642 13.314 2.89017 8.45901 3.52497C4.52537 4.0393 3.30588 7.69446 3.33306 9.49119C2.28341 10.7256 1.78066 12.3166 1.62101 13.1584C-0.0910414 10.7461 -1.02859 7.27957 1.82482 3.16493C4.67824 -0.949703 11.4653 -0.949707 14.5225 2.56831C16.9683 5.38272 17.8957 10.837 18.0536 13.1944Z" } })]);
|
|
738
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), createWindowPolychrome: e$c({ render: function() {
|
|
739
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
740
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 5.47981C0 3.9647 1.22825 2.73645 2.74336 2.73645H19.3255C20.8406 2.73645 22.0688 3.9647 22.0688 5.47981V10.5919C21.5229 10.3111 20.9283 10.1115 20.3011 10.009V8.06481C20.3011 7.51253 19.8534 7.06481 19.3011 7.06481H2.79865C2.24636 7.06481 1.79865 7.51253 1.79865 8.06481V17.526C1.79865 18.0783 2.24636 18.526 2.79865 18.526H13.9069C14.2198 19.1792 14.6474 19.7671 15.1635 20.2635H2.74336C1.22825 20.2635 0 19.0352 0 17.5201V5.47981ZM4.70657 4.91213C4.70657 5.4271 4.28911 5.84456 3.77414 5.84456C3.25918 5.84456 2.84172 5.4271 2.84172 4.91213C2.84172 4.39717 3.25918 3.9797 3.77414 3.9797C4.28911 3.9797 4.70657 4.39717 4.70657 4.91213ZM6.172 5.84456C6.68696 5.84456 7.10443 5.4271 7.10443 4.91213C7.10443 4.39717 6.68696 3.9797 6.172 3.9797C5.65703 3.9797 5.23957 4.39717 5.23957 4.91213C5.23957 5.4271 5.65703 5.84456 6.172 5.84456Z" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "17.7899", y: "11.6612", width: "2.65031", height: "7.77024" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "23", y: "14.221", width: "2.65031", height: "7.77024", transform: "rotate(90 23 14.221)" } })]);
|
|
741
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), docInfoPolychrome: e$c({ render: function() {
|
|
742
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
743
|
+
return t2("g", [t2("rect", { staticClass: "fill-secondary", attrs: { x: "8.28", y: "4.14003", width: "6.44", height: "1.84" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.66991 0.459961H18.4V8.97184C17.8119 8.82047 17.1953 8.73996 16.56 8.73996L16.56 2.29996H6.43999V6.90002H1.84V19.78H10.1846C10.5853 20.4725 11.0955 21.0938 11.6917 21.62H0V6.12987L5.66991 0.459961Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.20001 16.0999H3.67999V17.9399H9.43185C9.2805 17.3518 9.20001 16.7353 9.20001 16.1C9.20001 16.1 9.20001 16.0999 9.20001 16.0999Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.1847 12.42H3.67999V14.26H9.43189C9.59991 13.6072 9.85523 12.9895 10.1847 12.42Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.72 8.97181V8.73996H3.67999V10.58H11.6917C12.5475 9.82459 13.5803 9.26514 14.72 8.97181Z" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.56 22.54C20.1167 22.54 23 19.6567 23 16.1C23 12.5433 20.1167 9.66002 16.56 9.66002C13.0033 9.66002 10.12 12.5433 10.12 16.1C10.12 19.6567 13.0033 22.54 16.56 22.54ZM15.8426 17.406H17.0285L17.1965 12.4201H15.6746L15.8426 17.406ZM17.0137 18.3992C16.8688 18.2576 16.676 18.1868 16.4356 18.1868C16.1984 18.1868 16.0057 18.2592 15.8574 18.4042C15.7125 18.5458 15.64 18.7254 15.64 18.9428C15.64 19.1602 15.7125 19.3397 15.8574 19.4814C16.0057 19.6231 16.1984 19.6939 16.4356 19.6939C16.676 19.6939 16.8688 19.6231 17.0137 19.4814C17.1619 19.3397 17.2361 19.1602 17.2361 18.9428C17.2361 18.7221 17.1619 18.5409 17.0137 18.3992Z" } })]);
|
|
744
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fileDwgPolychrome: e$c({ render: function() {
|
|
745
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
746
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.73921 7.82627L11.7868 1.7787V5.91204V7.82627H5.73921ZM21.9496 2.27673C21.9496 1.02453 20.9365 0 19.6843 0H10.5773L3.74713 6.8302V20.4906C3.74713 21.7428 4.77131 22.7673 6.02386 22.7673H19.6956C20.9479 22.7673 21.961 21.7428 21.961 20.4906L21.9496 2.27673Z" } }), this._v(" "), t2("path", { attrs: { d: "M0.777466 12.8685C0.777466 12.3218 1.22065 11.8786 1.76735 11.8786H24.5347C25.0814 11.8786 25.5246 12.3218 25.5246 12.8685V19.7977C25.5246 20.3444 25.0814 20.7876 24.5347 20.7876H1.76735C1.22065 20.7876 0.777466 20.3444 0.777466 19.7977V12.8685Z", fill: "#F8C62C" } }), this._v(" "), t2("path", { attrs: { d: "M2.8558 19.7976V12.7602H5.02118C5.63985 12.7602 6.19247 12.9003 6.67904 13.1807C7.16883 13.4578 7.55066 13.8541 7.82456 14.3697C8.09845 14.882 8.2354 15.4653 8.2354 16.1194V16.4432C8.2354 17.0974 8.10006 17.679 7.82939 18.1881C7.56194 18.6972 7.18333 19.0919 6.69354 19.3723C6.20375 19.6526 5.65113 19.7944 5.03568 19.7976H2.8558ZM4.30583 13.9347V18.6328H5.00668C5.5738 18.6328 6.00719 18.4475 6.30687 18.0769C6.60654 17.7064 6.7596 17.1763 6.76604 16.4867V16.1146C6.76604 15.3992 6.61782 14.8579 6.32137 14.4905C6.02492 14.12 5.59152 13.9347 5.02118 13.9347H4.30583Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M14.775 17.7676L15.7224 12.7602H17.1676L15.6064 19.7976H14.1467L13.0012 15.0899L11.8556 19.7976H10.3959L8.83474 12.7602H10.2799L11.2321 17.7579L12.3921 12.7602H13.6198L14.775 17.7676Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M23.5235 18.9083C23.2625 19.2208 22.8935 19.4641 22.4166 19.6381C21.9398 19.8089 21.4113 19.8943 20.8313 19.8943C20.2223 19.8943 19.6874 19.7622 19.2266 19.498C18.769 19.2305 18.4146 18.8438 18.1632 18.3379C17.9151 17.832 17.7878 17.2375 17.7814 16.5544V16.0759C17.7814 15.3734 17.899 14.766 18.1342 14.2537C18.3727 13.7381 18.7143 13.345 19.1589 13.0743C19.6068 12.8004 20.1304 12.6635 20.7298 12.6635C21.5644 12.6635 22.2169 12.8633 22.6873 13.2628C23.1578 13.6592 23.4365 14.2376 23.5235 14.998H22.1121C22.0477 14.5953 21.9043 14.3004 21.682 14.1135C21.4629 13.9266 21.16 13.8332 20.7733 13.8332C20.2803 13.8332 19.9049 14.0185 19.6471 14.389C19.3893 14.7596 19.2588 15.3106 19.2556 16.0421V16.4916C19.2556 17.2295 19.3958 17.7869 19.6761 18.1639C19.9564 18.5409 20.3673 18.7294 20.9086 18.7294C21.4532 18.7294 21.8415 18.6134 22.0735 18.3814V17.1682H20.754V16.1001H23.5235V18.9083Z", fill: "white" } })]);
|
|
747
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fileIfcPolychrome: e$c({ render: function() {
|
|
748
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
749
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.97188 7.82627L10.0195 1.7787V5.91204V7.82627H3.97188ZM20.1823 2.27673C20.1823 1.02453 19.1691 0 17.9169 0H8.81L1.9798 6.8302V20.4906C1.9798 21.7428 3.00397 22.7673 4.25653 22.7673H17.9283C19.1805 22.7673 20.1937 21.7428 20.1937 20.4906L20.1823 2.27673Z" } }), this._v(" "), t2("path", { attrs: { d: "M0 12.8685C0 12.3218 0.443186 11.8786 0.989884 11.8786H20.7876C21.3343 11.8786 21.7775 12.3218 21.7775 12.8685V19.7977C21.7775 20.3444 21.3343 20.7876 20.7876 20.7876H0.989884C0.443187 20.7876 0 20.3444 0 19.7977V12.8685Z", fill: "#205DBD" } }), this._v(" "), t2("path", { attrs: { d: "M5.66383 19.7976H4.21381V12.7602H5.66383V19.7976Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M11.2464 16.9217H8.46238V19.7976H7.01236V12.7602H11.5944V13.9347H8.46238V15.7521H11.2464V16.9217Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M17.96 17.4534C17.9053 18.2107 17.6249 18.8068 17.119 19.2418C16.6164 19.6768 15.9526 19.8943 15.1277 19.8943C14.2254 19.8943 13.5149 19.5914 12.9961 18.9856C12.4806 18.3766 12.2228 17.542 12.2228 16.4819V16.0517C12.2228 15.375 12.342 14.7789 12.5805 14.2634C12.8189 13.7478 13.1589 13.3531 13.6003 13.0792C14.045 12.8021 14.5605 12.6635 15.147 12.6635C15.959 12.6635 16.6131 12.881 17.1094 13.316C17.6056 13.751 17.8924 14.3616 17.9697 15.1479H16.5197C16.4842 14.6935 16.357 14.3649 16.1378 14.1619C15.922 13.9556 15.5917 13.8525 15.147 13.8525C14.6637 13.8525 14.3012 14.0265 14.0595 14.3745C13.821 14.7193 13.6986 15.2558 13.6921 15.9841V16.5157C13.6921 17.2762 13.8065 17.832 14.0353 18.1833C14.2673 18.5345 14.6314 18.7101 15.1277 18.7101C15.5756 18.7101 15.9091 18.6086 16.1282 18.4056C16.3505 18.1994 16.4778 17.882 16.51 17.4534H17.96Z", fill: "white" } })]);
|
|
750
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filePdfPolychrome: e$c({ render: function() {
|
|
751
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
752
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.01244 7.90625L10.1218 1.79688V5.97245V7.90625H4.01244ZM20.3885 2.3C20.3885 1.035 19.365 0 18.1 0H8.9L2 6.9V20.7C2 21.965 3.03464 23 4.3 23H18.1115C19.3765 23 20.4 21.965 20.4 20.7L20.3885 2.3Z" } }), this._v(" "), t2("rect", { attrs: { y: "12", width: "22", height: "9", rx: "1", fill: "#FF0000" } }), this._v(" "), t2("path", { attrs: { d: "M3.88086 17.4951V20H2.41602V12.8906H5.18945C5.72331 12.8906 6.19206 12.9883 6.5957 13.1836C7.0026 13.3789 7.3151 13.6572 7.5332 14.0186C7.7513 14.3766 7.86035 14.7852 7.86035 15.2441C7.86035 15.9408 7.62109 16.4909 7.14258 16.8945C6.66732 17.2949 6.00814 17.4951 5.16504 17.4951H3.88086ZM3.88086 16.3086H5.18945C5.57682 16.3086 5.87142 16.2174 6.07324 16.0352C6.27832 15.8529 6.38086 15.5924 6.38086 15.2539C6.38086 14.9056 6.27832 14.624 6.07324 14.4092C5.86816 14.1943 5.58496 14.0837 5.22363 14.0771H3.88086V16.3086ZM8.87109 20V12.8906H11.0586C11.6836 12.8906 12.2419 13.0322 12.7334 13.3154C13.2282 13.5954 13.6139 13.9958 13.8906 14.5166C14.1673 15.0342 14.3057 15.6234 14.3057 16.2842V16.6113C14.3057 17.2721 14.1689 17.8597 13.8955 18.374C13.6253 18.8883 13.2428 19.2871 12.748 19.5703C12.2533 19.8535 11.695 19.9967 11.0732 20H8.87109ZM10.3359 14.0771V18.8232H11.0439C11.6169 18.8232 12.0547 18.6361 12.3574 18.2617C12.6602 17.8874 12.8148 17.3519 12.8213 16.6553V16.2793C12.8213 15.5566 12.6715 15.0098 12.3721 14.6387C12.0726 14.2643 11.6348 14.0771 11.0586 14.0771H10.3359ZM19.6523 17.0947H16.8398V20H15.375V12.8906H20.0039V14.0771H16.8398V15.9131H19.6523V17.0947Z", fill: "white" } })]);
|
|
753
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filePlanPolychrome: e$c({ render: function() {
|
|
754
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
755
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.01244 7.90625L10.1218 1.79688V5.97245V7.90625H4.01244ZM20.3885 2.3C20.3885 1.035 19.365 0 18.1 0H8.9L2 6.9V20.7C2 21.965 3.03464 23 4.3 23H18.1115C19.3765 23 20.4 21.965 20.4 20.7L20.3885 2.3Z" } }), this._v(" "), t2("rect", { attrs: { y: "12", width: "22", height: "9", rx: "1", fill: "#FF9900" } }), this._v(" "), t2("path", { attrs: { d: "M4.37598 17.2261H3.10791V16.4263H4.37598C4.57194 16.4263 4.73145 16.3944 4.85449 16.3306C4.97754 16.2645 5.06755 16.1733 5.12451 16.0571C5.18148 15.9409 5.20996 15.8099 5.20996 15.6641C5.20996 15.516 5.18148 15.3781 5.12451 15.2505C5.06755 15.1229 4.97754 15.0203 4.85449 14.9429C4.73145 14.8654 4.57194 14.8267 4.37598 14.8267H3.46338V19H2.43799V14.0234H4.37598C4.76562 14.0234 5.09945 14.0941 5.37744 14.2354C5.65771 14.3743 5.87191 14.5669 6.02002 14.813C6.16813 15.0591 6.24219 15.3405 6.24219 15.6572C6.24219 15.9785 6.16813 16.2565 6.02002 16.4912C5.87191 16.7259 5.65771 16.9071 5.37744 17.0347C5.09945 17.1623 4.76562 17.2261 4.37598 17.2261ZM10.1489 18.2002V19H7.64355V18.2002H10.1489ZM7.9751 14.0234V19H6.94971V14.0234H7.9751ZM12.8286 14.8745L11.4751 19H10.3848L12.2339 14.0234H12.9277L12.8286 14.8745ZM13.9531 19L12.5962 14.8745L12.4868 14.0234H13.1875L15.0469 19H13.9531ZM13.8916 17.1475V17.9507H11.2632V17.1475H13.8916ZM19.5586 14.0234V19H18.5332L16.5337 15.6641V19H15.5083V14.0234H16.5337L18.5366 17.3628V14.0234H19.5586Z", fill: "white" } })]);
|
|
756
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderPolychrome: e$c({ render: function() {
|
|
757
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
758
|
+
return t2("g", [t2("path", { staticClass: "fill-secondary", attrs: { d: "M21.45 2.69359H9.95863L9.88979 5.59441H21.45V2.69359Z" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.19976 1.91663H2.29984C1.03451 1.91663 0.0111238 2.99464 0.0111238 4.31267L0 18.6873C0 20.0053 1.03451 21.0833 2.29984 21.0833H20.6998C21.9651 21.0833 23 20.0053 23 18.6873V6.70829C23 5.39068 21.9651 4.31267 20.6998 4.31267H11.5L9.19976 1.91663Z" } })]);
|
|
759
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), structurePolychrome: e$c({ render: function() {
|
|
760
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
761
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6656 15.7775H20.5497V11.8888C20.5497 11.4605 20.2107 11.1109 19.7954 11.1109H12.2543V7.22228H13.1828C13.9164 7.22228 14.5163 6.60266 14.5163 5.84611V2.37605C14.5163 1.6195 13.9164 0.999878 13.1828 0.999878H9.81719C9.08361 0.999878 8.4828 1.6195 8.4828 2.37605V5.84611C8.4828 6.60266 9.08361 7.22228 9.81719 7.22228H10.7457V11.1109H3.20459C2.78931 11.1109 2.45029 11.4605 2.45029 11.8888V15.7775H1.33438C0.600803 15.7775 0 16.3971 0 17.1537V20.6237C0 21.3803 0.600803 21.9999 1.33438 21.9999H4.69907C5.43265 21.9999 6.03345 21.3803 6.03345 20.6237V17.1537C6.03345 16.3971 5.43265 15.7775 4.69907 15.7775H3.95795V12.6668H10.7457V15.7775H9.81719C9.08361 15.7775 8.4828 16.3971 8.4828 17.1537V20.6237C8.4828 21.3803 9.08361 21.9999 9.81719 21.9999H13.1828C13.9164 21.9999 14.5163 21.3803 14.5163 20.6237V17.1537C14.5163 16.3971 13.9164 15.7775 13.1828 15.7775H12.2543V12.6668H19.0411V15.7775H18.3009C17.5664 15.7775 16.9665 16.3971 16.9665 17.1537V20.6237C16.9665 21.3803 17.5664 21.9999 18.3009 21.9999H21.6656C22.3992 21.9999 23 21.3803 23 20.6237V17.1537C23 16.3971 22.3992 15.7775 21.6656 15.7775Z" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "8.41016", y: "0.999878", width: "6.1797", height: "6.2208", rx: "1" } })]);
|
|
762
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), viewer2dPolychrome: e$c({ render: function() {
|
|
763
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
764
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.8093 0H0.908936V23H13.487V16.8195H22.0911V10.6239H17.8093V0ZM2.25708 6.97618V1.34814H9.70245V6.97618H8.34131L7.39822 5.33817L7.04736 5.54018L8.00586 7.20495L8.00586 7.78409L9.70245 7.78409V11.864H10.5104V7.78409H10.5104V6.97618H10.5104V1.34814H16.4611V11.9721H20.743V15.4714H12.1868V15.4591H10.0431L9.04084 13.7183L8.68998 13.9203L9.68225 15.6437V16.267H12.1388V21.6519H2.25708V16.267H7.37974V15.4591H2.25708V7.78409L5.70333 7.78409V6.97618H2.25708Z" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "4.0519", y: "18.0658", width: "6.1275", height: "2.1021" } })]);
|
|
765
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), viewer3dPolychrome: e$c({ render: function() {
|
|
766
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
767
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { d: "M0 6.13333L10.7333 10.4896V23L0 18.6437V6.13333Z" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { d: "M23 6.13333L12.2667 10.4896V23L23 18.6437V6.13333Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { d: "M11.4437 0L1.53333 4.4386L11.4437 8.43333L21.4667 4.21667L11.4437 0Z" } })]);
|
|
678
768
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, i$b = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
|
|
679
769
|
const d$6 = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
|
|
680
770
|
var r$c = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
|
|
@@ -690,11 +780,11 @@ var r$c = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
|
|
|
690
780
|
const o$c = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
691
781
|
function n$9(e2) {
|
|
692
782
|
return (e3, t2) => function(e4, t3) {
|
|
693
|
-
const i2 = o$c ? t3.media || "default" : e4, d2 =
|
|
783
|
+
const i2 = o$c ? t3.media || "default" : e4, d2 = s$9[i2] || (s$9[i2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
694
784
|
if (!d2.ids.has(e4)) {
|
|
695
785
|
d2.ids.add(e4);
|
|
696
786
|
let i3 = t3.source;
|
|
697
|
-
if (t3.map && (i3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", i3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"), d2.element || (d2.element = document.createElement("style"), d2.element.type = "text/css", t3.media && d2.element.setAttribute("media", t3.media),
|
|
787
|
+
if (t3.map && (i3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", i3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"), d2.element || (d2.element = document.createElement("style"), d2.element.type = "text/css", t3.media && d2.element.setAttribute("media", t3.media), C$1 === void 0 && (C$1 = document.head || document.getElementsByTagName("head")[0]), C$1.appendChild(d2.element)), "styleSheet" in d2.element)
|
|
698
788
|
d2.styles.push(i3), d2.element.styleSheet.cssText = d2.styles.filter(Boolean).join("\n");
|
|
699
789
|
else {
|
|
700
790
|
const e5 = d2.ids.size - 1, t4 = document.createTextNode(i3), r2 = d2.element.childNodes;
|
|
@@ -703,9 +793,9 @@ function n$9(e2) {
|
|
|
703
793
|
}
|
|
704
794
|
}(e3, t2);
|
|
705
795
|
}
|
|
706
|
-
let
|
|
707
|
-
const
|
|
708
|
-
const
|
|
796
|
+
let C$1;
|
|
797
|
+
const s$9 = {};
|
|
798
|
+
const v$2 = e$c({ render: function() {
|
|
709
799
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
710
800
|
return t2("svg", { class: this.classes, style: this.style, attrs: { xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 23 23", width: "100%", fill: this.fillColor, color: this.color } }, [t2("bimdata-icon-" + this.name, { tag: "component" })], 1);
|
|
711
801
|
}, staticRenderFns: [] }, function(e2) {
|
|
@@ -943,7 +1033,7 @@ const g$3 = o$a({ render: function() {
|
|
|
943
1033
|
} } }, "data-v-1b2410f3", false, void 0, false, r$a, void 0, void 0) }, model: { prop: "modelValue", event: "update:modelValue" }, props: { width: { type: [String, Number], default: "100%" }, label: { type: String, default: null }, options: { type: Array, default: () => [] }, optionKey: { type: String }, optionLabelKey: { type: String }, modelValue: { type: [String, Object, Array] }, multi: { type: Boolean, default: false }, nullValue: { type: Boolean, default: false }, nullLabel: { type: String }, disabled: { type: Boolean, default: false } }, emits: ["update:modelValue"], computed: { selectorComponent() {
|
|
944
1034
|
return this.multi ? "BIMDataSelectMulti" : "BIMDataSelectSingle";
|
|
945
1035
|
} } }, void 0, false, void 0, false, void 0, void 0, void 0);
|
|
946
|
-
var render$
|
|
1036
|
+
var render$l = function() {
|
|
947
1037
|
var _vm = this;
|
|
948
1038
|
var _h = _vm.$createElement;
|
|
949
1039
|
var _c = _vm._self._c || _h;
|
|
@@ -963,7 +1053,7 @@ var render$k = function() {
|
|
|
963
1053
|
_vm.$set(_vm.filters, "labels", $$v);
|
|
964
1054
|
}, expression: "filters.labels" } }), _c("div", { staticClass: "bcf-filters__container__actions" }, [_c("BIMDataButton", { staticClass: "m-r-12", attrs: { "color": "primary", "ghost": "", "radius": "" }, on: { "click": _vm.resetFilters } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.resetButton")) + " ")]), _c("BIMDataButton", { attrs: { "color": "primary", "fill": "", "radius": "" }, on: { "click": _vm.submitFilters } }, [_c("BIMDataIcon", { attrs: { "name": "search", "size": "xxs", "fill": "", "color": "default", "margin": "0 6px 0 0" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.searchButton")) + " ")])], 1)], 1)], 1)])], 1);
|
|
965
1055
|
};
|
|
966
|
-
var staticRenderFns$
|
|
1056
|
+
var staticRenderFns$l = [];
|
|
967
1057
|
var BcfFilters_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfFilters_2FBcfFilters_vue_src_scoped_true_lang = "";
|
|
968
1058
|
function normalizeComponent(scriptExports, render2, staticRenderFns2, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
|
|
969
1059
|
var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
|
|
@@ -1019,10 +1109,10 @@ function normalizeComponent(scriptExports, render2, staticRenderFns2, functional
|
|
|
1019
1109
|
function getSelectOptions(list) {
|
|
1020
1110
|
return Array.from(new Set(list)).sort((a2, b2) => a2.localeCompare(b2, void 0, { sensitivity: "base" }));
|
|
1021
1111
|
}
|
|
1022
|
-
const __vue2_script$
|
|
1112
|
+
const __vue2_script$l = {
|
|
1023
1113
|
components: {
|
|
1024
1114
|
BIMDataButton: c$5,
|
|
1025
|
-
BIMDataIcon:
|
|
1115
|
+
BIMDataIcon: v$2,
|
|
1026
1116
|
BIMDataInput: s$8,
|
|
1027
1117
|
BIMDataSelect: g$3
|
|
1028
1118
|
},
|
|
@@ -1090,15 +1180,15 @@ const __vue2_script$k = {
|
|
|
1090
1180
|
};
|
|
1091
1181
|
}
|
|
1092
1182
|
};
|
|
1093
|
-
const __cssModules$
|
|
1094
|
-
var __component__$
|
|
1095
|
-
function __vue2_injectStyles$
|
|
1096
|
-
for (let o2 in __cssModules$
|
|
1097
|
-
this[o2] = __cssModules$
|
|
1183
|
+
const __cssModules$l = {};
|
|
1184
|
+
var __component__$l = /* @__PURE__ */ normalizeComponent(__vue2_script$l, render$l, staticRenderFns$l, false, __vue2_injectStyles$l, "41d6e8d0", null, null);
|
|
1185
|
+
function __vue2_injectStyles$l(context) {
|
|
1186
|
+
for (let o2 in __cssModules$l) {
|
|
1187
|
+
this[o2] = __cssModules$l[o2];
|
|
1098
1188
|
}
|
|
1099
1189
|
}
|
|
1100
1190
|
var BcfFilters = /* @__PURE__ */ function() {
|
|
1101
|
-
return __component__$
|
|
1191
|
+
return __component__$l.exports;
|
|
1102
1192
|
}();
|
|
1103
1193
|
const colors = Object.freeze({
|
|
1104
1194
|
bisque: "ffe4c4",
|
|
@@ -1286,7 +1376,7 @@ const g$2 = t$9({ render: function() {
|
|
|
1286
1376
|
}, staticRenderFns: [] }, function(r2) {
|
|
1287
1377
|
r2 && r2("data-v-29b6f3f4_0", { source: ".color-selector__line[data-v-29b6f3f4]{display:flex}.color-selector__line__element[data-v-29b6f3f4]{cursor:pointer;height:30px;width:30px;margin:4px;border-radius:3px}.color-selector__line__element.selected[data-v-29b6f3f4]{border:solid 2px var(--color-primary)}", map: void 0, media: void 0 });
|
|
1288
1378
|
}, { components: { BIMDataCard: s$6 }, props: { modelValue: { type: String, default: null, validator: (a2) => Object.values(r$9).includes(a2) } }, emits: ["update:modelValue"], data: () => ({ colorLines: d$4 }) }, "data-v-29b6f3f4", false, void 0, false, c$3, void 0, void 0);
|
|
1289
|
-
var render$
|
|
1379
|
+
var render$k = function() {
|
|
1290
1380
|
var _vm = this;
|
|
1291
1381
|
var _h = _vm.$createElement;
|
|
1292
1382
|
var _c = _vm._self._c || _h;
|
|
@@ -1315,13 +1405,13 @@ var render$j = function() {
|
|
|
1315
1405
|
_vm.isOpenDeleteGuard = false;
|
|
1316
1406
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxxs" } })], 1)], 1)]) : _vm._e()], 1);
|
|
1317
1407
|
};
|
|
1318
|
-
var staticRenderFns$
|
|
1408
|
+
var staticRenderFns$k = [];
|
|
1319
1409
|
var SettingCardItem_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfSettings_2FsettingCard_2FSettingCardItem_vue_src_scoped_true_lang = "";
|
|
1320
|
-
const __vue2_script$
|
|
1410
|
+
const __vue2_script$k = {
|
|
1321
1411
|
components: {
|
|
1322
1412
|
BIMDataButton: c$5,
|
|
1323
1413
|
BIMDataColorSelector: g$2,
|
|
1324
|
-
BIMDataIcon:
|
|
1414
|
+
BIMDataIcon: v$2,
|
|
1325
1415
|
BIMDataInput: s$8
|
|
1326
1416
|
},
|
|
1327
1417
|
props: {
|
|
@@ -1393,17 +1483,17 @@ const __vue2_script$j = {
|
|
|
1393
1483
|
};
|
|
1394
1484
|
}
|
|
1395
1485
|
};
|
|
1396
|
-
const __cssModules$
|
|
1397
|
-
var __component__$
|
|
1398
|
-
function __vue2_injectStyles$
|
|
1399
|
-
for (let o2 in __cssModules$
|
|
1400
|
-
this[o2] = __cssModules$
|
|
1486
|
+
const __cssModules$k = {};
|
|
1487
|
+
var __component__$k = /* @__PURE__ */ normalizeComponent(__vue2_script$k, render$k, staticRenderFns$k, false, __vue2_injectStyles$k, "27af5073", null, null);
|
|
1488
|
+
function __vue2_injectStyles$k(context) {
|
|
1489
|
+
for (let o2 in __cssModules$k) {
|
|
1490
|
+
this[o2] = __cssModules$k[o2];
|
|
1401
1491
|
}
|
|
1402
1492
|
}
|
|
1403
1493
|
var SettingCardItem = /* @__PURE__ */ function() {
|
|
1404
|
-
return __component__$
|
|
1494
|
+
return __component__$k.exports;
|
|
1405
1495
|
}();
|
|
1406
|
-
var render$
|
|
1496
|
+
var render$j = function() {
|
|
1407
1497
|
var _vm = this;
|
|
1408
1498
|
var _h = _vm.$createElement;
|
|
1409
1499
|
var _c = _vm._self._c || _h;
|
|
@@ -1423,12 +1513,12 @@ var render$i = function() {
|
|
|
1423
1513
|
} } });
|
|
1424
1514
|
}), 1)], 1)]);
|
|
1425
1515
|
};
|
|
1426
|
-
var staticRenderFns$
|
|
1516
|
+
var staticRenderFns$j = [];
|
|
1427
1517
|
var SettingCard_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfSettings_2FsettingCard_2FSettingCard_vue_src_scoped_true_lang = "";
|
|
1428
|
-
const __vue2_script$
|
|
1518
|
+
const __vue2_script$j = {
|
|
1429
1519
|
components: {
|
|
1430
1520
|
BIMDataButton: c$5,
|
|
1431
|
-
BIMDataIcon:
|
|
1521
|
+
BIMDataIcon: v$2,
|
|
1432
1522
|
BIMDataInput: s$8,
|
|
1433
1523
|
SettingCardItem
|
|
1434
1524
|
},
|
|
@@ -1487,17 +1577,17 @@ const __vue2_script$i = {
|
|
|
1487
1577
|
};
|
|
1488
1578
|
}
|
|
1489
1579
|
};
|
|
1490
|
-
const __cssModules$
|
|
1491
|
-
var __component__$
|
|
1492
|
-
function __vue2_injectStyles$
|
|
1493
|
-
for (let o2 in __cssModules$
|
|
1494
|
-
this[o2] = __cssModules$
|
|
1580
|
+
const __cssModules$j = {};
|
|
1581
|
+
var __component__$j = /* @__PURE__ */ normalizeComponent(__vue2_script$j, render$j, staticRenderFns$j, false, __vue2_injectStyles$j, "6e8123c6", null, null);
|
|
1582
|
+
function __vue2_injectStyles$j(context) {
|
|
1583
|
+
for (let o2 in __cssModules$j) {
|
|
1584
|
+
this[o2] = __cssModules$j[o2];
|
|
1495
1585
|
}
|
|
1496
1586
|
}
|
|
1497
1587
|
var SettingCard = /* @__PURE__ */ function() {
|
|
1498
|
-
return __component__$
|
|
1588
|
+
return __component__$j.exports;
|
|
1499
1589
|
}();
|
|
1500
|
-
var render$
|
|
1590
|
+
var render$i = function() {
|
|
1501
1591
|
var _vm = this;
|
|
1502
1592
|
var _h = _vm.$createElement;
|
|
1503
1593
|
var _c = _vm._self._c || _h;
|
|
@@ -1507,12 +1597,12 @@ var render$h = function() {
|
|
|
1507
1597
|
return _c("SettingCard", { attrs: { "project": _vm.project, "extensionType": t2, "availableExtensions": _vm.detailedExtensions[_vm.EXTENSION_LIST_FIELDS[t2]] }, on: { "create-extension": _vm.createExt, "update-extension": _vm.updateExt, "delete-extension": _vm.deleteExt } });
|
|
1508
1598
|
})], 2)]);
|
|
1509
1599
|
};
|
|
1510
|
-
var staticRenderFns$
|
|
1600
|
+
var staticRenderFns$i = [];
|
|
1511
1601
|
var BcfSettings_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfSettings_2FBcfSettings_vue_src_scoped_true_lang = "";
|
|
1512
|
-
const __vue2_script$
|
|
1602
|
+
const __vue2_script$i = {
|
|
1513
1603
|
components: {
|
|
1514
1604
|
BIMDataButton: c$5,
|
|
1515
|
-
BIMDataIcon:
|
|
1605
|
+
BIMDataIcon: v$2,
|
|
1516
1606
|
SettingCard
|
|
1517
1607
|
},
|
|
1518
1608
|
props: {
|
|
@@ -1558,15 +1648,15 @@ const __vue2_script$h = {
|
|
|
1558
1648
|
};
|
|
1559
1649
|
}
|
|
1560
1650
|
};
|
|
1561
|
-
const __cssModules$
|
|
1562
|
-
var __component__$
|
|
1563
|
-
function __vue2_injectStyles$
|
|
1564
|
-
for (let o2 in __cssModules$
|
|
1565
|
-
this[o2] = __cssModules$
|
|
1651
|
+
const __cssModules$i = {};
|
|
1652
|
+
var __component__$i = /* @__PURE__ */ normalizeComponent(__vue2_script$i, render$i, staticRenderFns$i, false, __vue2_injectStyles$i, "2687ba4b", null, null);
|
|
1653
|
+
function __vue2_injectStyles$i(context) {
|
|
1654
|
+
for (let o2 in __cssModules$i) {
|
|
1655
|
+
this[o2] = __cssModules$i[o2];
|
|
1566
1656
|
}
|
|
1567
1657
|
}
|
|
1568
1658
|
var BcfSettings = /* @__PURE__ */ function() {
|
|
1569
|
-
return __component__$
|
|
1659
|
+
return __component__$i.exports;
|
|
1570
1660
|
}();
|
|
1571
1661
|
var r$8 = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), a$7 = { name: "BIMDataButton", props: { width: { type: String, default: "32px" }, height: { type: String, default: "32px" }, fill: { type: Boolean, default: false }, outline: { type: Boolean, default: false }, ghost: { type: Boolean, default: false }, ripple: { type: Boolean, default: false }, radius: { type: Boolean, default: false }, square: { type: Boolean, default: false }, rounded: { type: Boolean, default: false }, icon: { type: Boolean, default: false }, color: { type: String, default: "default", validator: (a2) => r$8.includes(a2) } }, emits: ["click"], computed: { classes() {
|
|
1572
1662
|
return { "bimdata-btn__icon": this.icon, "bimdata-btn__fill": this.fill, "bimdata-btn__outline": this.outline, "bimdata-btn__ghost": this.ghost, "bimdata-btn__ripple": this.ripple, "bimdata-btn__radius": this.radius, "bimdata-btn__square": this.square, "bimdata-btn__rounded": this.rounded, ["bimdata-btn__fill--" + this.color]: this.fill && this.color, ["bimdata-btn__outline--" + this.color]: this.outline && this.color, ["bimdata-btn__ghost--" + this.color]: this.ghost && this.color, ["bimdata-btn__ripple--" + this.color]: this.ripple && this.color };
|
|
@@ -1795,7 +1885,7 @@ const o$7 = t$7({ render: function() {
|
|
|
1795
1885
|
}, staticRenderFns: [] }, function(e2) {
|
|
1796
1886
|
e2 && e2("data-v-1694cb3a_0", { source: ".bimdata-simple-pie-chart[data-v-1694cb3a]{position:relative}.bimdata-simple-pie-chart .path[data-v-1694cb3a]{stroke-dasharray:1000;stroke-dashoffset:1000;animation:dash-data-v-1694cb3a var(--graph-draw-time,2s) ease-in forwards}@keyframes dash-data-v-1694cb3a{to{stroke-dashoffset:0}}", map: void 0, media: void 0 });
|
|
1797
1887
|
}, e$7, "data-v-1694cb3a", false, void 0, false, r$7, void 0, void 0);
|
|
1798
|
-
var render$
|
|
1888
|
+
var render$h = function() {
|
|
1799
1889
|
var _vm = this;
|
|
1800
1890
|
var _h = _vm.$createElement;
|
|
1801
1891
|
var _c = _vm._self._c || _h;
|
|
@@ -1804,9 +1894,9 @@ var render$g = function() {
|
|
|
1804
1894
|
return [_c("div", { staticClass: "bcf-statistics__content__legend__item" }, [_c("span", { staticClass: "bcf-statistics__content__legend__item__mark", style: { borderColor: barData.color } }), _c("span", { staticClass: "bcf-statistics__content__legend__item__percent" }, [_vm._v(" " + _vm._s(barData.percentage.toFixed(0)) + " % ")]), _c("span", { staticClass: "bcf-statistics__content__legend__item__text" }, [_vm._v(" " + _vm._s(barData.label && _vm.$t("BcfComponents.BcfStatistics.extension." + _vm.extensionType)) + " " + _vm._s(barData.label || _vm.$t("BcfComponents.BcfStatistics.extension." + _vm.extensionType + "NotDefined")) + " "), _c("span", { staticClass: "total" }, [_vm._v(" (" + _vm._s(barData.total) + ") ")])])])];
|
|
1805
1895
|
} }]) })], 1)], 1)]);
|
|
1806
1896
|
};
|
|
1807
|
-
var staticRenderFns$
|
|
1897
|
+
var staticRenderFns$h = [];
|
|
1808
1898
|
var BcfStatistics_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfStatistics_2FBcfStatistics_vue_src_scoped_true_lang = "";
|
|
1809
|
-
const __vue2_script$
|
|
1899
|
+
const __vue2_script$h = {
|
|
1810
1900
|
components: {
|
|
1811
1901
|
BIMDataPaginatedList: b$1,
|
|
1812
1902
|
BIMDataSimplePieChart: o$7
|
|
@@ -1851,15 +1941,15 @@ const __vue2_script$g = {
|
|
|
1851
1941
|
};
|
|
1852
1942
|
}
|
|
1853
1943
|
};
|
|
1854
|
-
const __cssModules$
|
|
1855
|
-
var __component__$
|
|
1856
|
-
function __vue2_injectStyles$
|
|
1857
|
-
for (let o2 in __cssModules$
|
|
1858
|
-
this[o2] = __cssModules$
|
|
1944
|
+
const __cssModules$h = {};
|
|
1945
|
+
var __component__$h = /* @__PURE__ */ normalizeComponent(__vue2_script$h, render$h, staticRenderFns$h, false, __vue2_injectStyles$h, "08cce8e2", null, null);
|
|
1946
|
+
function __vue2_injectStyles$h(context) {
|
|
1947
|
+
for (let o2 in __cssModules$h) {
|
|
1948
|
+
this[o2] = __cssModules$h[o2];
|
|
1859
1949
|
}
|
|
1860
1950
|
}
|
|
1861
1951
|
var BcfStatistics = /* @__PURE__ */ function() {
|
|
1862
|
-
return __component__$
|
|
1952
|
+
return __component__$h.exports;
|
|
1863
1953
|
}();
|
|
1864
1954
|
var t$6 = { props: { width: { type: String, default: "100%" }, minWidth: { type: String }, maxWidth: { type: String }, text: { type: String, default: "" }, cutPosition: { type: String, default: "middle", validator: (t2) => ["start", "middle", "end"].includes(t2) }, tooltip: { type: Boolean, default: true }, tooltipPosition: { type: String, default: "bottom", validator: (t2) => ["top", "right", "bottom", "left"].includes(t2) }, tooltipColor: { type: String, default: "primary", validator: (t2) => ["white", "primary", "secondary", "granite-light", "silver-light"].includes(t2) } }, data: () => ({ showTooltip: false, isOverflowing: false, textHead: "", textTail: "" }), watch: { width: "computeText", text: "computeText", cutPosition: "computeText" }, mounted() {
|
|
1865
1955
|
this.observer = new ResizeObserver(() => this.computeText()), this.observer.observe(this.$refs.textBox), this.computeText();
|
|
@@ -1921,25 +2011,25 @@ const l$3 = e$6({ render: function() {
|
|
|
1921
2011
|
}, staticRenderFns: [] }, function(t2) {
|
|
1922
2012
|
t2 && t2("data-v-79e3dcf0_0", { source: 'html[data-v-79e3dcf0]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.bimdata-textbox[data-v-79e3dcf0]{display:inline-flex;position:relative}.bimdata-textbox__text--head[data-v-79e3dcf0]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bimdata-textbox__text--tail[data-v-79e3dcf0]{width:50%;white-space:nowrap;overflow:hidden;text-overflow:"";direction:rtl}.bimdata-textbox__tooltip[data-v-79e3dcf0]{position:absolute;z-index:2;min-width:60px;max-width:200px;width:max-content;padding:calc(var(--spacing-unit)/ 3) calc(var(--spacing-unit)/ 2);border-radius:3px;text-align:center;white-space:normal;word-wrap:break-word}.bimdata-textbox__tooltip[data-v-79e3dcf0]::before{content:"";position:absolute;border-style:solid;border-width:8px 0 0 8px}.bimdata-textbox__tooltip--white[data-v-79e3dcf0]{background-color:var(--color-white);color:var(--color-primary)}.bimdata-textbox__tooltip--white[data-v-79e3dcf0]::before{border-color:var(--color-white) transparent transparent}.bimdata-textbox__tooltip--primary[data-v-79e3dcf0]{background-color:var(--color-primary);color:var(--color-white)}.bimdata-textbox__tooltip--primary[data-v-79e3dcf0]::before{border-color:var(--color-primary) transparent transparent}.bimdata-textbox__tooltip--secondary[data-v-79e3dcf0]{background-color:#f9c72c;color:#2f374a}.bimdata-textbox__tooltip--secondary[data-v-79e3dcf0]::before{border-color:var(--color-secondary) transparent transparent}.bimdata-textbox__tooltip--granite-light[data-v-79e3dcf0]{background-color:var(--color-granite-light);color:var(--color-white)}.bimdata-textbox__tooltip--granite-light[data-v-79e3dcf0]::before{border-color:var(--color-granite-light) transparent transparent}.bimdata-textbox__tooltip--silver-light[data-v-79e3dcf0]{background-color:var(--color-silver-light);color:var(--color-primary)}.bimdata-textbox__tooltip--silver-light[data-v-79e3dcf0]::before{border-color:var(--color-silver-light) transparent transparent}.bimdata-textbox__tooltip--top[data-v-79e3dcf0]{top:-8px;left:50%;transform:translateX(-50%) translateY(-100%)}.bimdata-textbox__tooltip--top[data-v-79e3dcf0]::before{top:calc(100% - 4px);left:calc(50% - 4px);transform:rotate(135deg)}.bimdata-textbox__tooltip--right[data-v-79e3dcf0]{top:50%;left:calc(100% + 8px);transform:translateY(-50%)}.bimdata-textbox__tooltip--right[data-v-79e3dcf0]::before{top:calc(50% - 4px);left:-4px;transform:rotate(-135deg)}.bimdata-textbox__tooltip--bottom[data-v-79e3dcf0]{top:calc(100% + 8px);left:50%;transform:translateX(-50%)}.bimdata-textbox__tooltip--bottom[data-v-79e3dcf0]::before{top:-4px;left:calc(50% - 4px);transform:rotate(-45deg)}.bimdata-textbox__tooltip--left[data-v-79e3dcf0]{top:50%;left:-8px;transform:translateX(-100%) translateY(-50%)}.bimdata-textbox__tooltip--left[data-v-79e3dcf0]::before{top:calc(50% - 4px);left:calc(100% - 4px);transform:rotate(45deg)}', map: void 0, media: void 0 });
|
|
1923
2013
|
}, t$6, "data-v-79e3dcf0", false, void 0, false, a$5, void 0, void 0);
|
|
1924
|
-
var render$
|
|
2014
|
+
var render$g = function() {
|
|
1925
2015
|
var _vm = this;
|
|
1926
2016
|
var _h = _vm.$createElement;
|
|
1927
2017
|
var _c = _vm._self._c || _h;
|
|
1928
2018
|
return _c("svg", { attrs: { "width": "84", "height": "81", "viewBox": "0 0 84 81", "fill": "none", "xmlns": "http://www.w3.org/2000/svg" } }, [_c("path", { attrs: { "d": "M83.3154 40.6328C83.3154 62.7242 65.4068 80.6328 43.3154 80.6328C21.224 80.6328 3.31543 62.7242 3.31543 40.6328C3.31543 18.5414 21.224 0.632812 43.3154 0.632812C65.4068 0.632812 83.3154 18.5414 83.3154 40.6328Z", "fill": "#FFFFFF" } }), _c("path", { attrs: { "d": "M46.2756 13.5376L34.124 58.8879C33.9787 59.4301 34.3035 59.9926 34.8457 60.1379L68.3655 69.1195C68.9077 69.2648 69.4702 68.94 69.6155 68.3978L78.333 35.8639L67.4883 32.9581C66.9461 32.8128 66.6213 32.2503 66.7666 31.708L70.2008 18.8916L47.5256 12.8159C46.9834 12.6706 46.4209 12.9953 46.2756 13.5376Z", "fill": "#FFFFFF" } }), _c("path", { staticClass: "fill-silver", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M45.7926 13.4082C46.0094 12.5992 46.8461 12.1161 47.655 12.3329L70.8131 18.5381L67.2496 31.8374C67.1758 32.1129 67.0765 32.4855 67.0765 32.4855L78.92 35.6661L70.0985 68.5272C69.8817 69.3362 69.045 69.8192 68.2361 69.6024L34.7163 60.6209C33.9073 60.4041 33.4243 59.5674 33.641 58.7584L45.7926 13.4082ZM47.3962 13.2988C47.1207 13.225 46.8324 13.3915 46.7585 13.667L34.607 59.0173C34.5331 59.2928 34.6996 59.5811 34.9751 59.6549L68.4949 68.6365C68.7704 68.7103 69.0587 68.5439 69.1326 68.2684L77.7206 36.2174L67.3589 33.441C66.55 33.2243 66.0669 32.3876 66.2837 31.5786L69.5884 19.2452L47.3962 13.2988Z" } }), _c("path", { staticClass: "fill-silver", attrs: { "d": "M67.0765 32.4855L70.8131 18.5404L78.92 35.6661L67.0765 32.4855Z" } }), _c("path", { staticClass: "fill-silver", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M44.3876 52.686L48.3872 37.7594L67.8264 42.9682L63.8269 57.8947L44.3876 52.686ZM47.0917 37.0402C47.2458 36.4651 47.837 36.1238 48.4121 36.2779L68.5456 41.6726C69.1208 41.8268 69.4621 42.4179 69.308 42.9931L65.1224 58.6139C64.9683 59.1891 64.3771 59.5304 63.802 59.3763L43.6684 53.9815C43.0933 53.8274 42.752 53.2362 42.9061 52.6611L47.0917 37.0402ZM53.3118 42.9855C52.9778 44.2316 51.697 44.9712 50.4508 44.6373C49.2047 44.3034 48.4652 43.0225 48.7991 41.7763C49.133 40.5302 50.4139 39.7907 51.66 40.1246C52.9061 40.4585 53.6457 41.7394 53.3118 42.9855ZM46.7528 49.4132L46.1482 51.6695L62.8104 56.1342L64.2521 50.7536L60.6945 44.5916L52.992 49.0387L51.5943 46.6179L46.7528 49.4132Z" } }), _c("path", { attrs: { "d": "M7.70191 20.1034L19.8535 65.4537C19.9988 65.9959 20.5613 66.3207 21.1035 66.1754L54.6233 57.1938C55.1655 57.0485 55.4903 56.486 55.345 55.9437L46.6276 23.4098L35.783 26.3157C35.2407 26.4609 34.6782 26.1362 34.5329 25.5939L31.0988 12.7776L8.42363 18.8533C7.88139 18.9986 7.55662 19.5612 7.70191 20.1034Z", "fill": "white" } }), _c("path", { staticClass: "fill-silver", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M7.21895 20.2328C7.00219 19.4238 7.48525 18.5871 8.29422 18.3704L31.4523 12.1652L35.0159 25.4645C35.0897 25.74 35.1918 26.119 35.1918 26.119L47.0371 22.9451L55.828 55.8143C56.0447 56.6233 55.5617 57.46 54.7527 57.6767L21.2329 66.6583C20.424 66.8751 19.5873 66.392 19.3705 65.5831L7.21895 20.2328ZM8.55304 19.3363C8.27754 19.4101 8.11106 19.6985 8.18488 19.974L20.3365 65.3243C20.4103 65.5998 20.6986 65.7662 20.9741 65.6924L54.4939 56.7108C54.7694 56.637 54.9359 56.3487 54.8621 56.0732L46.274 24.0222L35.9124 26.7986C35.1034 27.0154 34.2667 26.5323 34.0499 25.7234L30.7452 13.3899L8.55304 19.3363Z" } }), _c("path", { staticClass: "fill-silver", attrs: { "d": "M35.1918 26.119L31.4534 12.1672L47.0371 22.9451L35.1918 26.119Z" } }), _c("path", { staticClass: "fill-silver", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M25.6411 54.9509L21.6416 40.0243L41.0808 34.8156L45.0804 49.7422L25.6411 54.9509ZM20.16 40.0492C20.0059 39.4741 20.3472 38.8829 20.9224 38.7288L41.0559 33.3341C41.631 33.1799 42.2222 33.5213 42.3763 34.0964L46.5619 49.7172C46.716 50.2924 46.3747 50.8836 45.7996 51.0377L25.666 56.4324C25.0909 56.5865 24.4997 56.2452 24.3456 55.6701L20.16 40.0492ZM28.5194 42.088C28.8533 43.3341 28.1138 44.615 26.8676 44.9489C25.6215 45.2828 24.3406 44.5433 24.0067 43.2971C23.6728 42.051 24.4123 40.7701 25.6585 40.4362C26.9046 40.1023 28.1855 40.8418 28.5194 42.088ZM26.053 50.934L26.6576 53.1903L43.3198 48.7257L41.8781 43.3452L35.7161 39.7876L31.2691 47.4901L28.8483 46.0924L26.053 50.934Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M6.9375 17.1323V12.6323H7.9375V17.1323H6.9375Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M5.72393 18.0419L2.54195 14.8599L3.24906 14.1528L6.43104 17.3348L5.72393 18.0419Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M5.46582 19.615H0.96582L0.96582 18.615H5.46582V19.615Z" } }), _c("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M46.5972 10.507L47.7619 6.16033L48.7278 6.41915L47.5631 10.7658L46.5972 10.507Z" } }), _c("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M45.1895 11.0715L42.9395 7.17435L43.8056 6.67435L46.0556 10.5715L45.1895 11.0715Z" } }), _c("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M44.5331 12.5242L40.1864 11.3595L40.4452 10.3936L44.7919 11.5582L44.5331 12.5242Z" } })]);
|
|
1929
2019
|
};
|
|
1930
|
-
var staticRenderFns$
|
|
1931
|
-
const __vue2_script$
|
|
1932
|
-
const __cssModules$
|
|
1933
|
-
var __component__$
|
|
1934
|
-
function __vue2_injectStyles$
|
|
1935
|
-
for (let o2 in __cssModules$
|
|
1936
|
-
this[o2] = __cssModules$
|
|
2020
|
+
var staticRenderFns$g = [];
|
|
2021
|
+
const __vue2_script$g = {};
|
|
2022
|
+
const __cssModules$g = {};
|
|
2023
|
+
var __component__$g = /* @__PURE__ */ normalizeComponent(__vue2_script$g, render$g, staticRenderFns$g, false, __vue2_injectStyles$g, null, null, null);
|
|
2024
|
+
function __vue2_injectStyles$g(context) {
|
|
2025
|
+
for (let o2 in __cssModules$g) {
|
|
2026
|
+
this[o2] = __cssModules$g[o2];
|
|
1937
2027
|
}
|
|
1938
2028
|
}
|
|
1939
2029
|
var BcfTopicDefaultImage = /* @__PURE__ */ function() {
|
|
1940
|
-
return __component__$
|
|
2030
|
+
return __component__$g.exports;
|
|
1941
2031
|
}();
|
|
1942
|
-
var render$
|
|
2032
|
+
var render$f = function() {
|
|
1943
2033
|
var _vm = this;
|
|
1944
2034
|
var _h = _vm.$createElement;
|
|
1945
2035
|
var _c = _vm._self._c || _h;
|
|
@@ -1949,17 +2039,17 @@ var render$e = function() {
|
|
|
1949
2039
|
} }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-card__header__infos__title flex items-center m-l-12" }, [_c("BIMDataTextbox", { attrs: { "maxWidth": "100% - 48px", "text": _vm.bcfTopic.title } })], 1)]), _c("div", { staticClass: "bcf-topic-card__header__img flex items-center justify-center" }, [_vm.bcfTopic.topic_status ? _c("div", { staticClass: "bcf-topic-card__header__img__status flex p-6", style: {
|
|
1950
2040
|
"background-color": "#" + _vm.statusColor,
|
|
1951
2041
|
color: _vm.adjustTextColor("#" + _vm.statusColor, "#ffffff", "var(--color-text)")
|
|
1952
|
-
} }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", { staticClass: "m-l-6" }, [_vm._v(_vm._s(_vm.bcfTopic.topic_status))])], 1) : _vm._e(), _c("div", { staticClass: "bcf-topic-card__header__img__date p-6" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")]), _vm.viewpointsWithSnapshot.length > 0 ? _c("img", { attrs: { "src": _vm.viewpointsWithSnapshot[0].snapshot.snapshot_data, "alt": "ViewPoint", "loading": "lazy" } }) : _c("BcfTopicDefaultImage", { staticClass: "default-img" })], 1)]), _c("div", { staticClass: "bcf-topic-card__content p-12" }, [_c("div", { staticClass: "bcf-topic-card__content__priority" }, [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.priority")) + " ")]), _c("span", { style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicCard.noPriority")) + " ")])]), _c("div", [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.assignedTo")) + " ")]), _c("span", [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to || _vm.$t("BcfComponents.BcfTopicCard.notSpecified")) + " ")])]), _c("div", { staticClass: "flex justify-around m-t-12" }, [_c("div", { staticClass: "flex items-center" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "fill": "", "color": "default", "size": "xs", "margin": "0 6px 0 0" } }), _vm.
|
|
2042
|
+
} }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", { staticClass: "m-l-6" }, [_vm._v(_vm._s(_vm.bcfTopic.topic_status))])], 1) : _vm._e(), _c("div", { staticClass: "bcf-topic-card__header__img__date p-6" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")]), _vm.viewpointsWithSnapshot.length > 0 ? _c("img", { attrs: { "src": _vm.viewpointsWithSnapshot[0].snapshot.snapshot_data, "alt": "ViewPoint", "loading": "lazy" } }) : _c("BcfTopicDefaultImage", { staticClass: "default-img" })], 1)]), _c("div", { staticClass: "bcf-topic-card__content p-12" }, [_c("div", { staticClass: "bcf-topic-card__content__priority" }, [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.priority")) + " ")]), _c("span", { style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicCard.noPriority")) + " ")])]), _c("div", [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.assignedTo")) + " ")]), _c("span", [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to || _vm.$t("BcfComponents.BcfTopicCard.notSpecified")) + " ")])]), _c("div", { staticClass: "flex justify-around m-t-12" }, [_c("div", { staticClass: "flex items-center" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "fill": "", "color": "default", "size": "xs", "margin": "0 6px 0 0" } }), _vm.topicObjects.length > 0 ? _c("span", { staticClass: "m-r-6" }, [_vm._v(" " + _vm._s(_vm.topicObjects.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicObjects.length > 0 ? _vm.$t("BcfComponents.BcfTopicCard.elements") : _vm.$t("BcfComponents.BcfTopicCard.noElements")) + " ")])], 1), _c("BIMDataButton", { attrs: { "width": "48%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
|
|
1953
2043
|
return _vm.$emit("open-bcf-topic", _vm.bcfTopic);
|
|
1954
2044
|
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.see")) + " ")])], 1)])]);
|
|
1955
2045
|
};
|
|
1956
|
-
var staticRenderFns$
|
|
2046
|
+
var staticRenderFns$f = [];
|
|
1957
2047
|
var BcfTopicCard_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicCard_2FBcfTopicCard_vue_src_scoped_true_lang = "";
|
|
1958
|
-
const __vue2_script$
|
|
2048
|
+
const __vue2_script$f = {
|
|
1959
2049
|
components: {
|
|
1960
2050
|
BcfTopicDefaultImage,
|
|
1961
2051
|
BIMDataButton: c$5,
|
|
1962
|
-
BIMDataIcon:
|
|
2052
|
+
BIMDataIcon: v$2,
|
|
1963
2053
|
BIMDataTextbox: l$3
|
|
1964
2054
|
},
|
|
1965
2055
|
props: {
|
|
@@ -1981,52 +2071,49 @@ const __vue2_script$e = {
|
|
|
1981
2071
|
});
|
|
1982
2072
|
const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
|
|
1983
2073
|
const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
|
|
1984
|
-
const
|
|
1985
|
-
var _a;
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
} else {
|
|
1989
|
-
return [];
|
|
1990
|
-
}
|
|
2074
|
+
const topicObjects = computed(() => {
|
|
2075
|
+
var _a, _b;
|
|
2076
|
+
const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
|
|
2077
|
+
return (components2 == null ? void 0 : components2.selection) || [];
|
|
1991
2078
|
});
|
|
1992
2079
|
return {
|
|
1993
2080
|
priorityColor,
|
|
1994
2081
|
statusColor,
|
|
1995
|
-
|
|
2082
|
+
topicObjects,
|
|
1996
2083
|
viewpointsWithSnapshot,
|
|
1997
2084
|
adjustTextColor
|
|
1998
2085
|
};
|
|
1999
2086
|
}
|
|
2000
2087
|
};
|
|
2001
|
-
const __cssModules$
|
|
2002
|
-
var __component__$
|
|
2003
|
-
function __vue2_injectStyles$
|
|
2004
|
-
for (let o2 in __cssModules$
|
|
2005
|
-
this[o2] = __cssModules$
|
|
2088
|
+
const __cssModules$f = {};
|
|
2089
|
+
var __component__$f = /* @__PURE__ */ normalizeComponent(__vue2_script$f, render$f, staticRenderFns$f, false, __vue2_injectStyles$f, "6474e4d2", null, null);
|
|
2090
|
+
function __vue2_injectStyles$f(context) {
|
|
2091
|
+
for (let o2 in __cssModules$f) {
|
|
2092
|
+
this[o2] = __cssModules$f[o2];
|
|
2006
2093
|
}
|
|
2007
2094
|
}
|
|
2008
2095
|
var BcfTopicCard = /* @__PURE__ */ function() {
|
|
2009
|
-
return __component__$
|
|
2096
|
+
return __component__$f.exports;
|
|
2010
2097
|
}();
|
|
2011
|
-
var render$
|
|
2098
|
+
var render$e = function() {
|
|
2012
2099
|
var _vm = this;
|
|
2013
2100
|
var _h = _vm.$createElement;
|
|
2014
2101
|
var _c = _vm._self._c || _h;
|
|
2015
2102
|
return _c("svg", { attrs: { "width": "66", "height": "60", "viewBox": "0 0 66 60", "fill": "none", "xmlns": "http://www.w3.org/2000/svg" } }, [_c("path", { staticClass: "fill-granite-light", attrs: { "opacity": "0.21", "d": "M14.4999 59.2445C22.2871 59.2445 28.5999 58.9311 28.5999 58.5445C28.5999 58.1579 22.2871 57.8445 14.4999 57.8445C6.71269 57.8445 0.399902 58.1579 0.399902 58.5445C0.399902 58.9311 6.71269 59.2445 14.4999 59.2445Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M46.84 26.5444C45.0533 26.5444 43.5645 28.0444 43.5645 29.8444C43.5645 31.6444 45.0533 33.1444 46.84 33.1444C48.6267 33.1444 50.1156 31.6444 50.1156 29.8444C50.1156 28.0444 48.6267 26.5444 46.84 26.5444ZM48.4282 29.8444C48.4282 30.7444 47.7333 31.4444 46.84 31.4444C45.9467 31.4444 45.2519 30.7444 45.2519 29.8444C45.2519 28.9444 45.9467 28.2444 46.84 28.2444C47.7333 28.2444 48.4282 29.0444 48.4282 29.8444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M54.8797 27.6444C52.9938 27.6444 51.5049 29.1444 51.5049 31.0444C51.5049 32.9444 52.9938 34.4444 54.8797 34.4444C56.7656 34.4444 58.2545 32.9444 58.2545 31.0444C58.1553 29.1444 56.6664 27.6444 54.8797 27.6444ZM56.4678 31.0444C56.4678 31.9444 55.773 32.6444 54.8797 32.6444C53.9864 32.6444 53.2916 31.9444 53.2916 31.0444C53.2916 30.1444 53.9864 29.4444 54.8797 29.4444C55.773 29.4444 56.4678 30.1444 56.4678 31.0444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M52.1005 11.1444C44.7554 11.1444 38.7998 17.1444 38.7998 24.5444V50.9444C38.7998 53.0444 40.4872 54.8444 42.6709 54.8444C42.9687 54.8444 43.2665 54.8444 43.5642 54.7444C43.6635 56.8444 45.3509 58.5444 47.4354 58.5444C49.5198 58.5444 51.3065 56.8444 51.3065 54.6444V52.7444C51.6042 52.8444 51.902 52.8444 52.1998 52.8444H52.3983C52.6961 52.8444 52.9939 52.8444 53.2917 52.7444C53.4902 54.7444 55.0783 56.2444 57.0635 56.2444C57.3613 56.2444 57.6591 56.2444 57.9568 56.1444C58.3539 57.9444 59.8428 59.2444 61.7287 59.2444C63.8131 59.2444 65.5998 57.5444 65.5998 55.3444V24.5444C65.4013 17.1444 59.4457 11.1444 52.1005 11.1444ZM57.7583 47.8444V52.4444C57.7583 52.9444 57.3613 53.3444 56.865 53.3444C56.3687 53.3444 55.9717 52.9444 55.9717 52.4444V47.1444H52.9939V49.0444C52.9939 49.5444 52.5968 49.9444 52.1005 49.9444H51.902C51.4057 49.9444 51.0087 49.5444 51.0087 49.0444V42.0444H48.0309V54.6444C48.0309 55.1444 47.6339 55.5444 47.1376 55.5444C46.6413 55.5444 46.2442 55.1444 46.2442 54.6444V48.5444H43.2665V51.0444C43.2665 51.5444 42.8694 51.9444 42.3731 51.9444C41.8768 51.9444 41.4798 51.5444 41.4798 51.0444V24.5444C41.4798 18.8444 46.145 14.1444 51.8028 14.1444C57.4605 14.1444 62.1257 18.8444 62.1257 24.5444V55.3444C62.1257 55.8444 61.7287 56.2444 61.2324 56.2444C60.7361 56.2444 60.3391 55.8444 60.3391 55.3444V47.8444H57.7583Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M29.8001 6.84446C31.5674 6.84446 33.0001 5.41177 33.0001 3.64446C33.0001 1.87715 31.5674 0.444458 29.8001 0.444458C28.0328 0.444458 26.6001 1.87715 26.6001 3.64446C26.6001 5.41177 28.0328 6.84446 29.8001 6.84446Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "d": "M23.8997 15.9444C25.1147 15.9444 26.0997 14.9595 26.0997 13.7444C26.0997 12.5294 25.1147 11.5444 23.8997 11.5444C22.6847 11.5444 21.6997 12.5294 21.6997 13.7444C21.6997 14.9595 22.6847 15.9444 23.8997 15.9444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M28.8999 22.0444C29.7283 22.0444 30.3999 21.3729 30.3999 20.5444C30.3999 19.716 29.7283 19.0444 28.8999 19.0444C28.0715 19.0444 27.3999 19.716 27.3999 20.5444C27.3999 21.3729 28.0715 22.0444 28.8999 22.0444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M13.9995 33.5444C15.2995 34.1444 16.4995 34.8444 17.5995 35.7444C19.1995 37.1444 20.4995 38.7444 21.3995 40.6444C21.6995 41.2444 21.8995 41.8444 22.0995 42.4444C22.5995 43.9444 22.2995 45.2444 21.1995 46.3444C18.8995 48.6444 16.1995 49.3444 13.0995 48.5444C12.8995 48.5444 12.6995 48.5444 12.5995 48.5444C11.3995 48.7444 10.0995 48.8444 8.89951 48.6444C8.59951 48.6444 8.39951 48.5444 7.99951 48.5444C8.29951 49.0444 8.59951 49.4444 8.89951 49.9444C9.79951 51.2444 11.0995 52.2444 12.4995 52.8444C14.3995 53.6444 16.2995 53.8444 18.2995 53.4444C20.0995 53.0444 21.6995 52.1444 22.9995 50.7444C24.3995 49.2444 25.2995 47.4444 25.4995 45.3444C25.5995 44.0444 25.5995 42.6444 25.0995 41.4444C24.6995 40.4444 24.0995 39.5444 23.3995 38.7444C22.0995 37.0444 20.5995 35.5444 19.0995 34.0444C18.4995 33.4444 17.8995 32.9444 17.2995 32.4444C17.1995 32.3444 17.0995 32.3444 16.9995 32.3444C15.6995 32.1444 14.7995 32.3444 13.9995 33.5444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M11.4997 29.6444C10.3997 29.5444 9.49967 29.6444 8.59967 29.9444C7.39967 30.2444 6.19967 30.8444 5.19967 31.6444C4.19967 32.4444 3.39967 33.3444 2.79967 34.5444C1.99967 36.0444 1.59967 37.6444 1.69967 39.3444C1.79967 41.0444 2.29967 42.7444 3.29967 44.1444C4.19967 45.4444 5.29967 46.4444 6.59967 47.1444C7.59967 47.6444 8.49967 48.0444 9.59967 48.0444C11.3997 48.0444 13.1997 47.8444 14.8997 47.3444C16.1997 47.0444 17.5997 46.6444 18.8997 46.2444C19.4997 46.0444 20.1997 45.9444 20.7997 45.5444C21.1997 45.3444 21.3997 44.8444 21.5997 44.3444C21.7997 43.6444 21.7997 42.9444 21.3997 42.2444C21.0997 42.4444 20.7997 42.6444 20.4997 42.8444C19.1997 43.6444 17.7997 44.2444 16.2997 44.6444C14.2997 45.1444 12.1997 45.1444 10.1997 44.8444C8.89967 44.6444 7.79967 44.0444 7.09967 42.7444C6.69967 41.8444 6.49967 40.9444 6.49967 39.9444C6.39967 37.5444 7.29967 35.5444 8.99967 33.8444C8.99967 33.8444 9.19967 33.5444 9.29967 33.2444C9.79967 31.9444 10.3997 30.7444 11.4997 29.6444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M9.89953 44.2445C9.89953 44.0445 9.89953 43.8445 9.89953 43.7445C9.69953 41.5445 9.99953 39.4445 10.7995 37.4445C11.4995 35.5445 12.5995 33.9445 13.9995 32.5445C14.8995 31.6445 15.9995 31.4445 17.1995 31.6445C19.7995 32.2445 21.7995 33.6445 22.8995 36.1445C23.0995 36.6445 23.1995 37.2445 23.4995 37.7445C23.5995 38.0445 23.8995 38.3445 24.0995 38.6445C24.7995 39.6445 25.4995 40.7445 25.8995 41.9445C25.8995 41.9445 25.8995 42.0445 25.9995 42.1445C26.2995 41.4445 26.6995 40.7445 26.9995 40.1445C27.4995 38.9445 27.5995 37.6445 27.4995 36.3445C27.2995 34.1445 26.4995 32.1445 24.8995 30.5445C23.7995 29.3445 22.3995 28.5445 20.7995 28.1445C19.0995 27.6445 17.2995 27.6445 15.5995 28.2445C13.9995 28.7445 12.5995 29.5445 11.4995 30.9445C11.0995 31.4445 10.6995 32.0445 10.3995 32.7445C9.79953 34.0445 9.29953 35.4445 8.89953 36.7445C8.39953 38.5445 7.99953 40.4445 7.59953 42.2445C7.49953 42.8445 7.89953 43.2445 8.29953 43.6445C8.59953 43.9445 9.19953 44.1445 9.89953 44.2445Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "d": "M37.3997 7.04441C38.3386 7.04441 39.0997 6.28329 39.0997 5.34441C39.0997 4.40553 38.3386 3.64441 37.3997 3.64441C36.4608 3.64441 35.6997 4.40553 35.6997 5.34441C35.6997 6.28329 36.4608 7.04441 37.3997 7.04441Z" } })]);
|
|
2016
2103
|
};
|
|
2017
|
-
var staticRenderFns$
|
|
2018
|
-
const __vue2_script$
|
|
2019
|
-
const __cssModules$
|
|
2020
|
-
var __component__$
|
|
2021
|
-
function __vue2_injectStyles$
|
|
2022
|
-
for (let o2 in __cssModules$
|
|
2023
|
-
this[o2] = __cssModules$
|
|
2104
|
+
var staticRenderFns$e = [];
|
|
2105
|
+
const __vue2_script$e = {};
|
|
2106
|
+
const __cssModules$e = {};
|
|
2107
|
+
var __component__$e = /* @__PURE__ */ normalizeComponent(__vue2_script$e, render$e, staticRenderFns$e, false, __vue2_injectStyles$e, null, null, null);
|
|
2108
|
+
function __vue2_injectStyles$e(context) {
|
|
2109
|
+
for (let o2 in __cssModules$e) {
|
|
2110
|
+
this[o2] = __cssModules$e[o2];
|
|
2024
2111
|
}
|
|
2025
2112
|
}
|
|
2026
2113
|
var BcfTopicCreationCardImage = /* @__PURE__ */ function() {
|
|
2027
|
-
return __component__$
|
|
2114
|
+
return __component__$e.exports;
|
|
2028
2115
|
}();
|
|
2029
|
-
var render$
|
|
2116
|
+
var render$d = function() {
|
|
2030
2117
|
var _vm = this;
|
|
2031
2118
|
var _h = _vm.$createElement;
|
|
2032
2119
|
var _c = _vm._self._c || _h;
|
|
@@ -2034,25 +2121,25 @@ var render$c = function() {
|
|
|
2034
2121
|
return _vm.$emit("create-bcf-topic");
|
|
2035
2122
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "m", "fill": "", "color": "default" } })], 1)], 1);
|
|
2036
2123
|
};
|
|
2037
|
-
var staticRenderFns$
|
|
2124
|
+
var staticRenderFns$d = [];
|
|
2038
2125
|
var BcfTopicCreationCard_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicCreationCard_2FBcfTopicCreationCard_vue_src_scoped_true_lang = "";
|
|
2039
|
-
const __vue2_script$
|
|
2126
|
+
const __vue2_script$d = {
|
|
2040
2127
|
components: {
|
|
2041
2128
|
BcfTopicCreationCardImage,
|
|
2042
2129
|
BIMDataButton: c$5,
|
|
2043
|
-
BIMDataIcon:
|
|
2130
|
+
BIMDataIcon: v$2
|
|
2044
2131
|
},
|
|
2045
2132
|
emits: ["create-bcf-topic"]
|
|
2046
2133
|
};
|
|
2047
|
-
const __cssModules$
|
|
2048
|
-
var __component__$
|
|
2049
|
-
function __vue2_injectStyles$
|
|
2050
|
-
for (let o2 in __cssModules$
|
|
2051
|
-
this[o2] = __cssModules$
|
|
2134
|
+
const __cssModules$d = {};
|
|
2135
|
+
var __component__$d = /* @__PURE__ */ normalizeComponent(__vue2_script$d, render$d, staticRenderFns$d, false, __vue2_injectStyles$d, "b5e56a58", null, null);
|
|
2136
|
+
function __vue2_injectStyles$d(context) {
|
|
2137
|
+
for (let o2 in __cssModules$d) {
|
|
2138
|
+
this[o2] = __cssModules$d[o2];
|
|
2052
2139
|
}
|
|
2053
2140
|
}
|
|
2054
2141
|
var BcfTopicCreationCard = /* @__PURE__ */ function() {
|
|
2055
|
-
return __component__$
|
|
2142
|
+
return __component__$d.exports;
|
|
2056
2143
|
}();
|
|
2057
2144
|
function t$5(t2, e2, o2, i2, r2, n2, a2, s2, l2, c2) {
|
|
2058
2145
|
typeof a2 != "boolean" && (l2 = s2, s2 = a2, a2 = false);
|
|
@@ -2114,16 +2201,16 @@ const a$4 = t$5({ render: function() {
|
|
|
2114
2201
|
}, staticRenderFns: [] }, function(t2) {
|
|
2115
2202
|
t2 && (t2("data-v-ddc1f86c_0", { source: 'html[data-v-ddc1f86c]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}', map: void 0, media: void 0 }), t2("data-v-ddc1f86c_1", { source: '@keyframes bimdataloading{0%{box-shadow:inset 0 0 0 0 rgba(var(--color-white),.1);transform:rotate(0)}20%{transform:rotate(180deg)}40%{transform:rotate(0)}60%{transform:rotate(0);box-shadow:inset 0 0 0 0 rgba(var(--color-white),.1)}80%{box-shadow:inset 0 -20px 0 0 rgba(var(--color-white),1)}100%{box-shadow:inset 0 0 0 0 rgba(var(--color-white),.1)}}.bimdata-loading{width:100%;height:100%;position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:center;flex-direction:column;color:var(--color-white);font-family:var(--primary-font);z-index:2}.bimdata-loading::after{content:" ";position:absolute;width:100%;height:100%;background-color:var(--color-primary);opacity:.9;z-index:-1}.bimdata-loading--square{width:20px;height:20px;position:relative;border:2px var(--color-white) solid;animation:bimdataloading 1.4s linear infinite}.bimdata-loading--text{margin-top:12px;display:block}.bimdata-loading p{text-align:center;margin:0}', map: void 0, media: void 0 }));
|
|
2116
2203
|
}, e$5, "data-v-ddc1f86c", false, void 0, false, i$5, void 0, void 0);
|
|
2117
|
-
function e$4(e2, t2, i2, d2, r2, o2, n2,
|
|
2118
|
-
typeof n2 != "boolean" && (
|
|
2204
|
+
function e$4(e2, t2, i2, d2, r2, o2, n2, s2, C2, v2) {
|
|
2205
|
+
typeof n2 != "boolean" && (C2 = s2, s2 = n2, n2 = false);
|
|
2119
2206
|
const a2 = typeof i2 == "function" ? i2.options : i2;
|
|
2120
2207
|
let l2;
|
|
2121
2208
|
if (e2 && e2.render && (a2.render = e2.render, a2.staticRenderFns = e2.staticRenderFns, a2._compiled = true, r2 && (a2.functional = true)), d2 && (a2._scopeId = d2), o2 ? (l2 = function(e3) {
|
|
2122
|
-
(e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this,
|
|
2209
|
+
(e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, C2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(o2);
|
|
2123
2210
|
}, a2._ssrRegister = l2) : t2 && (l2 = n2 ? function(e3) {
|
|
2124
|
-
t2.call(this,
|
|
2211
|
+
t2.call(this, v2(e3, this.$root.$options.shadowRoot));
|
|
2125
2212
|
} : function(e3) {
|
|
2126
|
-
t2.call(this,
|
|
2213
|
+
t2.call(this, s2(e3));
|
|
2127
2214
|
}), l2)
|
|
2128
2215
|
if (a2.functional) {
|
|
2129
2216
|
const e3 = a2.render;
|
|
@@ -2529,6 +2616,39 @@ var t$4 = { addFile: e$4({ render: function() {
|
|
|
2529
2616
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), zone: e$4({ render: function() {
|
|
2530
2617
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2531
2618
|
return t2("g", [t2("path", { attrs: { d: "M8.96582 11.3144L11.6658 10.1144V3.91443L1.96582 8.11443L8.96582 11.3144Z" } }), this._v(" "), t2("path", { attrs: { d: "M1.0658 15.2145L11.6658 19.9145V13.6145L1.0658 8.81445V15.2145Z" } }), this._v(" "), t2("path", { attrs: { d: "M22.9658 8.11443L13.2658 3.91443V10.1144L15.9658 11.3144L22.9658 8.11443Z" } }), this._v(" "), t2("path", { attrs: { d: "M13.2658 13.6145V19.9145L23.8658 15.2145V8.81445L13.2658 13.6145Z" } })]);
|
|
2619
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcfPolychrome: e$4({ render: function() {
|
|
2620
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2621
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.02193 12.8656C4.99498 13.5081 4.948 14.6282 5.60528 15.8997C7.70676 16.9403 12.8873 18.8488 16.5248 18.118C21.0718 17.2045 24.4653 11.2714 22.3618 6.71975C20.2583 2.16806 16.7141 1.26965 13.7885 1.56016C13.8264 1.59404 13.8667 1.6296 13.9093 1.6671C14.4738 2.16451 15.427 3.0043 16.2088 4.83129C17.7639 5.7059 20.2614 8.64331 18.7358 12.3391C17.0551 16.4108 13.4497 16.0217 12.2821 15.8956C12.1416 15.8805 12.0365 15.8691 11.9742 15.8698C11.5056 15.8749 7.61308 15.3475 5.02347 12.8287C5.02297 12.8408 5.02245 12.8531 5.02193 12.8656ZM12.4885 4.74167C11.9561 4.40063 10.617 3.72872 9.52006 3.76938C7.57654 5.08613 3.39156 8.60595 2.1998 12.1512C0.710113 16.5827 4.10364 22.5158 9.06053 22.9528C14.0174 23.3898 16.6583 20.7215 17.8718 18.0188C17.0698 18.3001 15.5331 18.7286 13.7293 18.4406C12.2014 19.3627 8.46042 20.1549 6.05233 16.9734C3.39934 13.4683 5.53596 10.5111 6.22787 9.55348C6.3111 9.43828 6.37343 9.35202 6.40399 9.29722C6.63388 8.88508 9.03266 5.74603 12.4885 4.74167Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { d: "M18.0536 13.1944C17.54 14.1736 16.294 15.0082 15.7352 15.3031C16.6014 11.78 15.1076 8.07749 14.869 7.67046C14.5735 7.16642 13.314 2.89017 8.45901 3.52497C4.52537 4.0393 3.30588 7.69446 3.33306 9.49119C2.28341 10.7256 1.78066 12.3166 1.62101 13.1584C-0.0910414 10.7461 -1.02859 7.27957 1.82482 3.16493C4.67824 -0.949703 11.4653 -0.949707 14.5225 2.56831C16.9683 5.38272 17.8957 10.837 18.0536 13.1944Z" } })]);
|
|
2622
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), createWindowPolychrome: e$4({ render: function() {
|
|
2623
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2624
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 5.47981C0 3.9647 1.22825 2.73645 2.74336 2.73645H19.3255C20.8406 2.73645 22.0688 3.9647 22.0688 5.47981V10.5919C21.5229 10.3111 20.9283 10.1115 20.3011 10.009V8.06481C20.3011 7.51253 19.8534 7.06481 19.3011 7.06481H2.79865C2.24636 7.06481 1.79865 7.51253 1.79865 8.06481V17.526C1.79865 18.0783 2.24636 18.526 2.79865 18.526H13.9069C14.2198 19.1792 14.6474 19.7671 15.1635 20.2635H2.74336C1.22825 20.2635 0 19.0352 0 17.5201V5.47981ZM4.70657 4.91213C4.70657 5.4271 4.28911 5.84456 3.77414 5.84456C3.25918 5.84456 2.84172 5.4271 2.84172 4.91213C2.84172 4.39717 3.25918 3.9797 3.77414 3.9797C4.28911 3.9797 4.70657 4.39717 4.70657 4.91213ZM6.172 5.84456C6.68696 5.84456 7.10443 5.4271 7.10443 4.91213C7.10443 4.39717 6.68696 3.9797 6.172 3.9797C5.65703 3.9797 5.23957 4.39717 5.23957 4.91213C5.23957 5.4271 5.65703 5.84456 6.172 5.84456Z" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "17.7899", y: "11.6612", width: "2.65031", height: "7.77024" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "23", y: "14.221", width: "2.65031", height: "7.77024", transform: "rotate(90 23 14.221)" } })]);
|
|
2625
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), docInfoPolychrome: e$4({ render: function() {
|
|
2626
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2627
|
+
return t2("g", [t2("rect", { staticClass: "fill-secondary", attrs: { x: "8.28", y: "4.14003", width: "6.44", height: "1.84" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.66991 0.459961H18.4V8.97184C17.8119 8.82047 17.1953 8.73996 16.56 8.73996L16.56 2.29996H6.43999V6.90002H1.84V19.78H10.1846C10.5853 20.4725 11.0955 21.0938 11.6917 21.62H0V6.12987L5.66991 0.459961Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.20001 16.0999H3.67999V17.9399H9.43185C9.2805 17.3518 9.20001 16.7353 9.20001 16.1C9.20001 16.1 9.20001 16.0999 9.20001 16.0999Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.1847 12.42H3.67999V14.26H9.43189C9.59991 13.6072 9.85523 12.9895 10.1847 12.42Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.72 8.97181V8.73996H3.67999V10.58H11.6917C12.5475 9.82459 13.5803 9.26514 14.72 8.97181Z" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.56 22.54C20.1167 22.54 23 19.6567 23 16.1C23 12.5433 20.1167 9.66002 16.56 9.66002C13.0033 9.66002 10.12 12.5433 10.12 16.1C10.12 19.6567 13.0033 22.54 16.56 22.54ZM15.8426 17.406H17.0285L17.1965 12.4201H15.6746L15.8426 17.406ZM17.0137 18.3992C16.8688 18.2576 16.676 18.1868 16.4356 18.1868C16.1984 18.1868 16.0057 18.2592 15.8574 18.4042C15.7125 18.5458 15.64 18.7254 15.64 18.9428C15.64 19.1602 15.7125 19.3397 15.8574 19.4814C16.0057 19.6231 16.1984 19.6939 16.4356 19.6939C16.676 19.6939 16.8688 19.6231 17.0137 19.4814C17.1619 19.3397 17.2361 19.1602 17.2361 18.9428C17.2361 18.7221 17.1619 18.5409 17.0137 18.3992Z" } })]);
|
|
2628
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fileDwgPolychrome: e$4({ render: function() {
|
|
2629
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2630
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.73921 7.82627L11.7868 1.7787V5.91204V7.82627H5.73921ZM21.9496 2.27673C21.9496 1.02453 20.9365 0 19.6843 0H10.5773L3.74713 6.8302V20.4906C3.74713 21.7428 4.77131 22.7673 6.02386 22.7673H19.6956C20.9479 22.7673 21.961 21.7428 21.961 20.4906L21.9496 2.27673Z" } }), this._v(" "), t2("path", { attrs: { d: "M0.777466 12.8685C0.777466 12.3218 1.22065 11.8786 1.76735 11.8786H24.5347C25.0814 11.8786 25.5246 12.3218 25.5246 12.8685V19.7977C25.5246 20.3444 25.0814 20.7876 24.5347 20.7876H1.76735C1.22065 20.7876 0.777466 20.3444 0.777466 19.7977V12.8685Z", fill: "#F8C62C" } }), this._v(" "), t2("path", { attrs: { d: "M2.8558 19.7976V12.7602H5.02118C5.63985 12.7602 6.19247 12.9003 6.67904 13.1807C7.16883 13.4578 7.55066 13.8541 7.82456 14.3697C8.09845 14.882 8.2354 15.4653 8.2354 16.1194V16.4432C8.2354 17.0974 8.10006 17.679 7.82939 18.1881C7.56194 18.6972 7.18333 19.0919 6.69354 19.3723C6.20375 19.6526 5.65113 19.7944 5.03568 19.7976H2.8558ZM4.30583 13.9347V18.6328H5.00668C5.5738 18.6328 6.00719 18.4475 6.30687 18.0769C6.60654 17.7064 6.7596 17.1763 6.76604 16.4867V16.1146C6.76604 15.3992 6.61782 14.8579 6.32137 14.4905C6.02492 14.12 5.59152 13.9347 5.02118 13.9347H4.30583Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M14.775 17.7676L15.7224 12.7602H17.1676L15.6064 19.7976H14.1467L13.0012 15.0899L11.8556 19.7976H10.3959L8.83474 12.7602H10.2799L11.2321 17.7579L12.3921 12.7602H13.6198L14.775 17.7676Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M23.5235 18.9083C23.2625 19.2208 22.8935 19.4641 22.4166 19.6381C21.9398 19.8089 21.4113 19.8943 20.8313 19.8943C20.2223 19.8943 19.6874 19.7622 19.2266 19.498C18.769 19.2305 18.4146 18.8438 18.1632 18.3379C17.9151 17.832 17.7878 17.2375 17.7814 16.5544V16.0759C17.7814 15.3734 17.899 14.766 18.1342 14.2537C18.3727 13.7381 18.7143 13.345 19.1589 13.0743C19.6068 12.8004 20.1304 12.6635 20.7298 12.6635C21.5644 12.6635 22.2169 12.8633 22.6873 13.2628C23.1578 13.6592 23.4365 14.2376 23.5235 14.998H22.1121C22.0477 14.5953 21.9043 14.3004 21.682 14.1135C21.4629 13.9266 21.16 13.8332 20.7733 13.8332C20.2803 13.8332 19.9049 14.0185 19.6471 14.389C19.3893 14.7596 19.2588 15.3106 19.2556 16.0421V16.4916C19.2556 17.2295 19.3958 17.7869 19.6761 18.1639C19.9564 18.5409 20.3673 18.7294 20.9086 18.7294C21.4532 18.7294 21.8415 18.6134 22.0735 18.3814V17.1682H20.754V16.1001H23.5235V18.9083Z", fill: "white" } })]);
|
|
2631
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fileIfcPolychrome: e$4({ render: function() {
|
|
2632
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2633
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.97188 7.82627L10.0195 1.7787V5.91204V7.82627H3.97188ZM20.1823 2.27673C20.1823 1.02453 19.1691 0 17.9169 0H8.81L1.9798 6.8302V20.4906C1.9798 21.7428 3.00397 22.7673 4.25653 22.7673H17.9283C19.1805 22.7673 20.1937 21.7428 20.1937 20.4906L20.1823 2.27673Z" } }), this._v(" "), t2("path", { attrs: { d: "M0 12.8685C0 12.3218 0.443186 11.8786 0.989884 11.8786H20.7876C21.3343 11.8786 21.7775 12.3218 21.7775 12.8685V19.7977C21.7775 20.3444 21.3343 20.7876 20.7876 20.7876H0.989884C0.443187 20.7876 0 20.3444 0 19.7977V12.8685Z", fill: "#205DBD" } }), this._v(" "), t2("path", { attrs: { d: "M5.66383 19.7976H4.21381V12.7602H5.66383V19.7976Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M11.2464 16.9217H8.46238V19.7976H7.01236V12.7602H11.5944V13.9347H8.46238V15.7521H11.2464V16.9217Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M17.96 17.4534C17.9053 18.2107 17.6249 18.8068 17.119 19.2418C16.6164 19.6768 15.9526 19.8943 15.1277 19.8943C14.2254 19.8943 13.5149 19.5914 12.9961 18.9856C12.4806 18.3766 12.2228 17.542 12.2228 16.4819V16.0517C12.2228 15.375 12.342 14.7789 12.5805 14.2634C12.8189 13.7478 13.1589 13.3531 13.6003 13.0792C14.045 12.8021 14.5605 12.6635 15.147 12.6635C15.959 12.6635 16.6131 12.881 17.1094 13.316C17.6056 13.751 17.8924 14.3616 17.9697 15.1479H16.5197C16.4842 14.6935 16.357 14.3649 16.1378 14.1619C15.922 13.9556 15.5917 13.8525 15.147 13.8525C14.6637 13.8525 14.3012 14.0265 14.0595 14.3745C13.821 14.7193 13.6986 15.2558 13.6921 15.9841V16.5157C13.6921 17.2762 13.8065 17.832 14.0353 18.1833C14.2673 18.5345 14.6314 18.7101 15.1277 18.7101C15.5756 18.7101 15.9091 18.6086 16.1282 18.4056C16.3505 18.1994 16.4778 17.882 16.51 17.4534H17.96Z", fill: "white" } })]);
|
|
2634
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filePdfPolychrome: e$4({ render: function() {
|
|
2635
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2636
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.01244 7.90625L10.1218 1.79688V5.97245V7.90625H4.01244ZM20.3885 2.3C20.3885 1.035 19.365 0 18.1 0H8.9L2 6.9V20.7C2 21.965 3.03464 23 4.3 23H18.1115C19.3765 23 20.4 21.965 20.4 20.7L20.3885 2.3Z" } }), this._v(" "), t2("rect", { attrs: { y: "12", width: "22", height: "9", rx: "1", fill: "#FF0000" } }), this._v(" "), t2("path", { attrs: { d: "M3.88086 17.4951V20H2.41602V12.8906H5.18945C5.72331 12.8906 6.19206 12.9883 6.5957 13.1836C7.0026 13.3789 7.3151 13.6572 7.5332 14.0186C7.7513 14.3766 7.86035 14.7852 7.86035 15.2441C7.86035 15.9408 7.62109 16.4909 7.14258 16.8945C6.66732 17.2949 6.00814 17.4951 5.16504 17.4951H3.88086ZM3.88086 16.3086H5.18945C5.57682 16.3086 5.87142 16.2174 6.07324 16.0352C6.27832 15.8529 6.38086 15.5924 6.38086 15.2539C6.38086 14.9056 6.27832 14.624 6.07324 14.4092C5.86816 14.1943 5.58496 14.0837 5.22363 14.0771H3.88086V16.3086ZM8.87109 20V12.8906H11.0586C11.6836 12.8906 12.2419 13.0322 12.7334 13.3154C13.2282 13.5954 13.6139 13.9958 13.8906 14.5166C14.1673 15.0342 14.3057 15.6234 14.3057 16.2842V16.6113C14.3057 17.2721 14.1689 17.8597 13.8955 18.374C13.6253 18.8883 13.2428 19.2871 12.748 19.5703C12.2533 19.8535 11.695 19.9967 11.0732 20H8.87109ZM10.3359 14.0771V18.8232H11.0439C11.6169 18.8232 12.0547 18.6361 12.3574 18.2617C12.6602 17.8874 12.8148 17.3519 12.8213 16.6553V16.2793C12.8213 15.5566 12.6715 15.0098 12.3721 14.6387C12.0726 14.2643 11.6348 14.0771 11.0586 14.0771H10.3359ZM19.6523 17.0947H16.8398V20H15.375V12.8906H20.0039V14.0771H16.8398V15.9131H19.6523V17.0947Z", fill: "white" } })]);
|
|
2637
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filePlanPolychrome: e$4({ render: function() {
|
|
2638
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2639
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.01244 7.90625L10.1218 1.79688V5.97245V7.90625H4.01244ZM20.3885 2.3C20.3885 1.035 19.365 0 18.1 0H8.9L2 6.9V20.7C2 21.965 3.03464 23 4.3 23H18.1115C19.3765 23 20.4 21.965 20.4 20.7L20.3885 2.3Z" } }), this._v(" "), t2("rect", { attrs: { y: "12", width: "22", height: "9", rx: "1", fill: "#FF9900" } }), this._v(" "), t2("path", { attrs: { d: "M4.37598 17.2261H3.10791V16.4263H4.37598C4.57194 16.4263 4.73145 16.3944 4.85449 16.3306C4.97754 16.2645 5.06755 16.1733 5.12451 16.0571C5.18148 15.9409 5.20996 15.8099 5.20996 15.6641C5.20996 15.516 5.18148 15.3781 5.12451 15.2505C5.06755 15.1229 4.97754 15.0203 4.85449 14.9429C4.73145 14.8654 4.57194 14.8267 4.37598 14.8267H3.46338V19H2.43799V14.0234H4.37598C4.76562 14.0234 5.09945 14.0941 5.37744 14.2354C5.65771 14.3743 5.87191 14.5669 6.02002 14.813C6.16813 15.0591 6.24219 15.3405 6.24219 15.6572C6.24219 15.9785 6.16813 16.2565 6.02002 16.4912C5.87191 16.7259 5.65771 16.9071 5.37744 17.0347C5.09945 17.1623 4.76562 17.2261 4.37598 17.2261ZM10.1489 18.2002V19H7.64355V18.2002H10.1489ZM7.9751 14.0234V19H6.94971V14.0234H7.9751ZM12.8286 14.8745L11.4751 19H10.3848L12.2339 14.0234H12.9277L12.8286 14.8745ZM13.9531 19L12.5962 14.8745L12.4868 14.0234H13.1875L15.0469 19H13.9531ZM13.8916 17.1475V17.9507H11.2632V17.1475H13.8916ZM19.5586 14.0234V19H18.5332L16.5337 15.6641V19H15.5083V14.0234H16.5337L18.5366 17.3628V14.0234H19.5586Z", fill: "white" } })]);
|
|
2640
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderPolychrome: e$4({ render: function() {
|
|
2641
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2642
|
+
return t2("g", [t2("path", { staticClass: "fill-secondary", attrs: { d: "M21.45 2.69359H9.95863L9.88979 5.59441H21.45V2.69359Z" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.19976 1.91663H2.29984C1.03451 1.91663 0.0111238 2.99464 0.0111238 4.31267L0 18.6873C0 20.0053 1.03451 21.0833 2.29984 21.0833H20.6998C21.9651 21.0833 23 20.0053 23 18.6873V6.70829C23 5.39068 21.9651 4.31267 20.6998 4.31267H11.5L9.19976 1.91663Z" } })]);
|
|
2643
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), structurePolychrome: e$4({ render: function() {
|
|
2644
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2645
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6656 15.7775H20.5497V11.8888C20.5497 11.4605 20.2107 11.1109 19.7954 11.1109H12.2543V7.22228H13.1828C13.9164 7.22228 14.5163 6.60266 14.5163 5.84611V2.37605C14.5163 1.6195 13.9164 0.999878 13.1828 0.999878H9.81719C9.08361 0.999878 8.4828 1.6195 8.4828 2.37605V5.84611C8.4828 6.60266 9.08361 7.22228 9.81719 7.22228H10.7457V11.1109H3.20459C2.78931 11.1109 2.45029 11.4605 2.45029 11.8888V15.7775H1.33438C0.600803 15.7775 0 16.3971 0 17.1537V20.6237C0 21.3803 0.600803 21.9999 1.33438 21.9999H4.69907C5.43265 21.9999 6.03345 21.3803 6.03345 20.6237V17.1537C6.03345 16.3971 5.43265 15.7775 4.69907 15.7775H3.95795V12.6668H10.7457V15.7775H9.81719C9.08361 15.7775 8.4828 16.3971 8.4828 17.1537V20.6237C8.4828 21.3803 9.08361 21.9999 9.81719 21.9999H13.1828C13.9164 21.9999 14.5163 21.3803 14.5163 20.6237V17.1537C14.5163 16.3971 13.9164 15.7775 13.1828 15.7775H12.2543V12.6668H19.0411V15.7775H18.3009C17.5664 15.7775 16.9665 16.3971 16.9665 17.1537V20.6237C16.9665 21.3803 17.5664 21.9999 18.3009 21.9999H21.6656C22.3992 21.9999 23 21.3803 23 20.6237V17.1537C23 16.3971 22.3992 15.7775 21.6656 15.7775Z" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "8.41016", y: "0.999878", width: "6.1797", height: "6.2208", rx: "1" } })]);
|
|
2646
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), viewer2dPolychrome: e$4({ render: function() {
|
|
2647
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2648
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.8093 0H0.908936V23H13.487V16.8195H22.0911V10.6239H17.8093V0ZM2.25708 6.97618V1.34814H9.70245V6.97618H8.34131L7.39822 5.33817L7.04736 5.54018L8.00586 7.20495L8.00586 7.78409L9.70245 7.78409V11.864H10.5104V7.78409H10.5104V6.97618H10.5104V1.34814H16.4611V11.9721H20.743V15.4714H12.1868V15.4591H10.0431L9.04084 13.7183L8.68998 13.9203L9.68225 15.6437V16.267H12.1388V21.6519H2.25708V16.267H7.37974V15.4591H2.25708V7.78409L5.70333 7.78409V6.97618H2.25708Z" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "4.0519", y: "18.0658", width: "6.1275", height: "2.1021" } })]);
|
|
2649
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), viewer3dPolychrome: e$4({ render: function() {
|
|
2650
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2651
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { d: "M0 6.13333L10.7333 10.4896V23L0 18.6437V6.13333Z" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { d: "M23 6.13333L12.2667 10.4896V23L23 18.6437V6.13333Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { d: "M11.4437 0L1.53333 4.4386L11.4437 8.43333L21.4667 4.21667L11.4437 0Z" } })]);
|
|
2532
2652
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, i$4 = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
|
|
2533
2653
|
const d$2 = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
|
|
2534
2654
|
var r$4 = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
|
|
@@ -2544,11 +2664,11 @@ var r$4 = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
|
|
|
2544
2664
|
const o$4 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
2545
2665
|
function n$2(e2) {
|
|
2546
2666
|
return (e3, t2) => function(e4, t3) {
|
|
2547
|
-
const i2 = o$4 ? t3.media || "default" : e4, d2 =
|
|
2667
|
+
const i2 = o$4 ? t3.media || "default" : e4, d2 = C[i2] || (C[i2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
2548
2668
|
if (!d2.ids.has(e4)) {
|
|
2549
2669
|
d2.ids.add(e4);
|
|
2550
2670
|
let i3 = t3.source;
|
|
2551
|
-
if (t3.map && (i3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", i3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"), d2.element || (d2.element = document.createElement("style"), d2.element.type = "text/css", t3.media && d2.element.setAttribute("media", t3.media),
|
|
2671
|
+
if (t3.map && (i3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", i3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"), d2.element || (d2.element = document.createElement("style"), d2.element.type = "text/css", t3.media && d2.element.setAttribute("media", t3.media), s$3 === void 0 && (s$3 = document.head || document.getElementsByTagName("head")[0]), s$3.appendChild(d2.element)), "styleSheet" in d2.element)
|
|
2552
2672
|
d2.styles.push(i3), d2.element.styleSheet.cssText = d2.styles.filter(Boolean).join("\n");
|
|
2553
2673
|
else {
|
|
2554
2674
|
const e5 = d2.ids.size - 1, t4 = document.createTextNode(i3), r2 = d2.element.childNodes;
|
|
@@ -2557,9 +2677,9 @@ function n$2(e2) {
|
|
|
2557
2677
|
}
|
|
2558
2678
|
}(e3, t2);
|
|
2559
2679
|
}
|
|
2560
|
-
let
|
|
2561
|
-
const
|
|
2562
|
-
const
|
|
2680
|
+
let s$3;
|
|
2681
|
+
const C = {};
|
|
2682
|
+
const v$1 = e$4({ render: function() {
|
|
2563
2683
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2564
2684
|
return t2("div", { staticClass: "overlay flex items-center justify-center" }, [t2("div", { staticClass: "safe-zone", style: { width: this.width } }, [t2("div", { staticClass: "safe-zone__content flex flex-col items-center justify-center p-18" }, [t2("BIMDataIcon", { attrs: { name: this.iconName, size: "l", fill: "", color: "high" } }), this._v(" "), t2("p", [this._t("text")], 2)], 1), this._v(" "), t2("div", { staticClass: "safe-zone__actions flex items-center p-x-18" }, [this._t("actions")], 2)])]);
|
|
2565
2685
|
}, staticRenderFns: [] }, function(e2) {
|
|
@@ -2689,7 +2809,7 @@ const l$2 = o$2({ render: function() {
|
|
|
2689
2809
|
}, staticRenderFns: [] }, function(t2) {
|
|
2690
2810
|
t2 && t2("data-v-4b5d635b_0", { source: 'html[data-v-4b5d635b]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}html[data-v-4b5d635b]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.text-left[data-v-4b5d635b]{text-align:left}.text-center[data-v-4b5d635b]{text-align:center}.text-right[data-v-4b5d635b]{text-align:right}.bimdata-link[data-v-4b5d635b]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-4b5d635b]{font-family:roboto,sans-serif}.bimdata-tooltip[data-v-4b5d635b]{position:relative}.bimdata-tooltip__tooltip[data-v-4b5d635b]{position:absolute;z-index:2;min-width:60px;width:max-content;padding:calc(var(--spacing-unit)/ 3) calc(var(--spacing-unit)/ 2);border-radius:3px;text-align:center;white-space:normal;word-wrap:break-word}.bimdata-tooltip__tooltip[data-v-4b5d635b]::before{content:"";position:absolute;border-style:solid;border-width:8px 0 0 8px}.bimdata-tooltip__tooltip--top[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--up[data-v-4b5d635b]{top:-8px;left:50%;transform:translateX(-50%) translateY(-100%)}.bimdata-tooltip__tooltip--top[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--up[data-v-4b5d635b]::before{top:calc(100% - 4px);left:calc(50% - 4px);transform:rotate(135deg)}.bimdata-tooltip__tooltip--right[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--left[data-v-4b5d635b]{top:50%;left:calc(100% + 8px);transform:translateY(-50%)}.bimdata-tooltip__tooltip--right[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--left[data-v-4b5d635b]::before{top:calc(50% - 4px);left:-4px;transform:rotate(-135deg)}.bimdata-tooltip__tooltip--bottom[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--bottom[data-v-4b5d635b]{top:calc(100% + 8px);left:50%;transform:translateX(-50%)}.bimdata-tooltip__tooltip--bottom[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--bottom[data-v-4b5d635b]::before{top:-4px;left:calc(50% - 4px);transform:rotate(-45deg)}.bimdata-tooltip__tooltip--left[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--right[data-v-4b5d635b]{top:50%;left:-8px;transform:translateX(-100%) translateY(-50%)}.bimdata-tooltip__tooltip--left[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--right[data-v-4b5d635b]::before{top:calc(50% - 4px);left:calc(100% - 4px);transform:rotate(45deg)}.bimdata-tooltip__tooltip--white[data-v-4b5d635b]{background-color:var(--color-white);color:var(--color-primary)}.bimdata-tooltip__tooltip--white[data-v-4b5d635b]::before{border-color:var(--color-white) transparent transparent}.bimdata-tooltip__tooltip--primary[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--primary[data-v-4b5d635b]{background-color:var(--color-primary);color:var(--color-white)}.bimdata-tooltip__tooltip--primary[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--primary[data-v-4b5d635b]::before{border-color:var(--color-primary) transparent transparent}.bimdata-tooltip__tooltip--secondary[data-v-4b5d635b]{background-color:#f9c72c;color:#2f374a}.bimdata-tooltip__tooltip--secondary[data-v-4b5d635b]::before{border-color:var(--color-secondary) transparent transparent}.bimdata-tooltip__tooltip--granite-light[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--grey[data-v-4b5d635b]{background-color:var(--color-granite-light);color:var(--color-white)}.bimdata-tooltip__tooltip--granite-light[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--grey[data-v-4b5d635b]::before{border-color:var(--color-granite-light) transparent transparent}.bimdata-tooltip__tooltip--silver-light[data-v-4b5d635b]{background-color:var(--color-silver-light);color:var(--color-primary)}.bimdata-tooltip__tooltip--silver-light[data-v-4b5d635b]::before{border-color:var(--color-silver-light) transparent transparent}.bimdata-tooltip__tooltip--success[data-v-4b5d635b]{background-color:var(--color-success);color:var(--color-white)}.bimdata-tooltip__tooltip--success[data-v-4b5d635b]::before{border-color:var(--color-success) transparent transparent}.bimdata-tooltip__tooltip--warning[data-v-4b5d635b]{background-color:var(--color-warning);color:var(--color-white)}.bimdata-tooltip__tooltip--warning[data-v-4b5d635b]::before{border-color:var(--color-warning) transparent transparent}.bimdata-tooltip__tooltip--high[data-v-4b5d635b]{background-color:var(--color-high);color:var(--color-white)}.bimdata-tooltip__tooltip--high[data-v-4b5d635b]::before{border-color:var(--color-high) transparent transparent}', map: void 0, media: void 0 });
|
|
2691
2811
|
}, t$2, "data-v-4b5d635b", false, void 0, false, r$2, void 0, void 0);
|
|
2692
|
-
var render$
|
|
2812
|
+
var render$c = function() {
|
|
2693
2813
|
var _vm = this;
|
|
2694
2814
|
var _h = _vm.$createElement;
|
|
2695
2815
|
var _c = _vm._self._c || _h;
|
|
@@ -2699,12 +2819,12 @@ var render$b = function() {
|
|
|
2699
2819
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xs", "fill": "", "color": "high" } })], 1)], 1);
|
|
2700
2820
|
}), 0), _c("BIMDataButton", { staticClass: "btn-upload", attrs: { "disabled": _vm.viewpoints.length >= 4, "width": "100%", "color": "primary", "fill": "", "radius": "" } }, [_c("label", { attrs: { "for": "files" } }, [_c("BIMDataIcon", { attrs: { "name": "camera", "size": "xs", "margin": "0 6px 0 0" } }), _vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.addPictureButton")) + " ")], 1), _c("input", { attrs: { "disabled": _vm.viewpoints.length >= 4, "hidden": "", "id": "files", "type": "file", "multiple": "", "accept": "image/png, image/jpeg" }, on: { "change": _vm.addImage } })])] : [_c("div", { staticClass: "bcf-topic-images__upload" }, [_c("span", { staticClass: "icon" }, [_c("BIMDataIcon", { attrs: { "name": "unarchive", "size": "m" } })], 1), _c("BIMDataButton", { staticClass: "btn-upload", attrs: { "color": "primary", "outline": "", "radius": "" } }, [_c("label", { attrs: { "for": "files" } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.dragDropImageText")) + " ")]), _c("input", { attrs: { "hidden": "", "id": "files", "type": "file", "multiple": "", "accept": "image/png, image/jpeg" }, on: { "change": _vm.addImage } })])], 1)]], 2);
|
|
2701
2821
|
};
|
|
2702
|
-
var staticRenderFns$
|
|
2822
|
+
var staticRenderFns$c = [];
|
|
2703
2823
|
var BcfTopicImages_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicForm_2FbcfTopicImages_2FBcfTopicImages_vue_src_scoped_true_lang = "";
|
|
2704
|
-
const __vue2_script$
|
|
2824
|
+
const __vue2_script$c = {
|
|
2705
2825
|
components: {
|
|
2706
2826
|
BIMDataButton: c$5,
|
|
2707
|
-
BIMDataIcon:
|
|
2827
|
+
BIMDataIcon: v$2
|
|
2708
2828
|
},
|
|
2709
2829
|
props: {
|
|
2710
2830
|
viewpoints: {
|
|
@@ -2741,17 +2861,17 @@ const __vue2_script$b = {
|
|
|
2741
2861
|
};
|
|
2742
2862
|
}
|
|
2743
2863
|
};
|
|
2744
|
-
const __cssModules$
|
|
2745
|
-
var __component__$
|
|
2746
|
-
function __vue2_injectStyles$
|
|
2747
|
-
for (let o2 in __cssModules$
|
|
2748
|
-
this[o2] = __cssModules$
|
|
2864
|
+
const __cssModules$c = {};
|
|
2865
|
+
var __component__$c = /* @__PURE__ */ normalizeComponent(__vue2_script$c, render$c, staticRenderFns$c, false, __vue2_injectStyles$c, "46dea43b", null, null);
|
|
2866
|
+
function __vue2_injectStyles$c(context) {
|
|
2867
|
+
for (let o2 in __cssModules$c) {
|
|
2868
|
+
this[o2] = __cssModules$c[o2];
|
|
2749
2869
|
}
|
|
2750
2870
|
}
|
|
2751
2871
|
var BcfTopicImages = /* @__PURE__ */ function() {
|
|
2752
|
-
return __component__$
|
|
2872
|
+
return __component__$c.exports;
|
|
2753
2873
|
}();
|
|
2754
|
-
var render$
|
|
2874
|
+
var render$b = function() {
|
|
2755
2875
|
var _vm = this;
|
|
2756
2876
|
var _h = _vm.$createElement;
|
|
2757
2877
|
var _c = _vm._self._c || _h;
|
|
@@ -2759,14 +2879,14 @@ var render$a = function() {
|
|
|
2759
2879
|
return _c("div", { key: viewpoint.guid || i2, staticClass: "snapshot-preview", class: { single: _vm.viewpoints.length === 1 } }, [viewpoint.snapshot.snapshot_data ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshot_data } }) : _vm._e(), _c("BIMDataButton", { staticClass: "btn-delete", attrs: { "fill": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
|
|
2760
2880
|
return _vm.deleteViewpoint(viewpoint);
|
|
2761
2881
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xs", "fill": "", "color": "high" } })], 1)], 1);
|
|
2762
|
-
}), 0)] : [_c("div", { staticClass: "bcf-topic-snapshots__create", on: { "click": _vm.
|
|
2882
|
+
}), 0)] : [_c("div", { staticClass: "bcf-topic-snapshots__create", on: { "click": _vm.createViewpoints } }, [_c("BIMDataIcon", { attrs: { "name": "camera", "size": "xl" } })], 1)]], 2);
|
|
2763
2883
|
};
|
|
2764
|
-
var staticRenderFns$
|
|
2884
|
+
var staticRenderFns$b = [];
|
|
2765
2885
|
var BcfTopicSnapshots_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicForm_2FbcfTopicSnapshots_2FBcfTopicSnapshots_vue_src_scoped_true_lang = "";
|
|
2766
|
-
const __vue2_script$
|
|
2886
|
+
const __vue2_script$b = {
|
|
2767
2887
|
components: {
|
|
2768
2888
|
BIMDataButton: c$5,
|
|
2769
|
-
BIMDataIcon:
|
|
2889
|
+
BIMDataIcon: v$2
|
|
2770
2890
|
},
|
|
2771
2891
|
props: {
|
|
2772
2892
|
viewpoints: {
|
|
@@ -2781,36 +2901,39 @@ const __vue2_script$a = {
|
|
|
2781
2901
|
setup(_, { emit }) {
|
|
2782
2902
|
const getViewers = inject("getViewers", () => {
|
|
2783
2903
|
});
|
|
2784
|
-
const
|
|
2785
|
-
|
|
2904
|
+
const createViewpoints = async () => {
|
|
2905
|
+
Object.entries(getViewers()).forEach(([id, viewers]) => {
|
|
2906
|
+
const [type, config2] = Object.entries(VIEWPOINT_CONFIG).find(([, c2]) => c2.plugin === id);
|
|
2907
|
+
viewers.forEach(async (viewer) => {
|
|
2908
|
+
const viewpoint = await viewer.getViewpoint();
|
|
2909
|
+
const { order } = config2 != null ? config2 : {};
|
|
2910
|
+
viewpoint.order = order;
|
|
2911
|
+
viewpoint[VIEWPOINT_TYPE_FIELD] = type;
|
|
2912
|
+
viewpoint[VIEWPOINT_MODELS_FIELD] = viewer.getLoadedModels().map((m) => m.id).join(",");
|
|
2913
|
+
emit("add-viewpoint", viewpoint);
|
|
2914
|
+
});
|
|
2915
|
+
});
|
|
2786
2916
|
};
|
|
2787
2917
|
const deleteViewpoint2 = (viewpoint) => {
|
|
2788
2918
|
emit("delete-viewpoint", viewpoint);
|
|
2789
2919
|
};
|
|
2790
|
-
const takeSnapshots = async () => {
|
|
2791
|
-
Object.values(getViewers()).flat().forEach(async (viewer) => {
|
|
2792
|
-
if (viewer) {
|
|
2793
|
-
addViewpoint(await viewer.getViewpoint());
|
|
2794
|
-
}
|
|
2795
|
-
});
|
|
2796
|
-
};
|
|
2797
2920
|
return {
|
|
2798
|
-
|
|
2799
|
-
|
|
2921
|
+
createViewpoints,
|
|
2922
|
+
deleteViewpoint: deleteViewpoint2
|
|
2800
2923
|
};
|
|
2801
2924
|
}
|
|
2802
2925
|
};
|
|
2803
|
-
const __cssModules$
|
|
2804
|
-
var __component__$
|
|
2805
|
-
function __vue2_injectStyles$
|
|
2806
|
-
for (let o2 in __cssModules$
|
|
2807
|
-
this[o2] = __cssModules$
|
|
2926
|
+
const __cssModules$b = {};
|
|
2927
|
+
var __component__$b = /* @__PURE__ */ normalizeComponent(__vue2_script$b, render$b, staticRenderFns$b, false, __vue2_injectStyles$b, "0bd88982", null, null);
|
|
2928
|
+
function __vue2_injectStyles$b(context) {
|
|
2929
|
+
for (let o2 in __cssModules$b) {
|
|
2930
|
+
this[o2] = __cssModules$b[o2];
|
|
2808
2931
|
}
|
|
2809
2932
|
}
|
|
2810
2933
|
var BcfTopicSnapshots = /* @__PURE__ */ function() {
|
|
2811
|
-
return __component__$
|
|
2934
|
+
return __component__$b.exports;
|
|
2812
2935
|
}();
|
|
2813
|
-
var render$
|
|
2936
|
+
var render$a = function() {
|
|
2814
2937
|
var _vm = this;
|
|
2815
2938
|
var _h = _vm.$createElement;
|
|
2816
2939
|
var _c = _vm._self._c || _h;
|
|
@@ -2852,17 +2975,17 @@ var render$9 = function() {
|
|
|
2852
2975
|
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.continueButton")) + " ")])];
|
|
2853
2976
|
}, proxy: true }], null, false, 3660211068) }) : _vm._e()], 1);
|
|
2854
2977
|
};
|
|
2855
|
-
var staticRenderFns$
|
|
2978
|
+
var staticRenderFns$a = [];
|
|
2856
2979
|
var BcfTopicForm_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicForm_2FBcfTopicForm_vue_src_scoped_true_lang = "";
|
|
2857
|
-
const __vue2_script$
|
|
2980
|
+
const __vue2_script$a = {
|
|
2858
2981
|
components: {
|
|
2859
2982
|
BcfTopicImages,
|
|
2860
2983
|
BcfTopicSnapshots,
|
|
2861
2984
|
BIMDataButton: c$5,
|
|
2862
|
-
BIMDataIcon:
|
|
2985
|
+
BIMDataIcon: v$2,
|
|
2863
2986
|
BIMDataInput: s$8,
|
|
2864
2987
|
BIMDataLoading: a$4,
|
|
2865
|
-
BIMDataSafeZoneModal:
|
|
2988
|
+
BIMDataSafeZoneModal: v$1,
|
|
2866
2989
|
BIMDataSelect: g$3,
|
|
2867
2990
|
BIMDataTextarea: s$2,
|
|
2868
2991
|
BIMDataTextbox: l$3,
|
|
@@ -3001,12 +3124,36 @@ const __vue2_script$9 = {
|
|
|
3001
3124
|
loading.value = true;
|
|
3002
3125
|
viewpointsToUpdate.value = viewpoints.value.map((viewpoint) => __spreadProps(__spreadValues({}, viewpoint), { snapshot: void 0 }));
|
|
3003
3126
|
if (viewpointsToUpdate.value.length === 0) {
|
|
3004
|
-
viewpointsToCreate.value.sort((v2) =>
|
|
3127
|
+
viewpointsToCreate.value.sort((v1, v2) => {
|
|
3128
|
+
var _a2, _b2;
|
|
3129
|
+
return ((_a2 = v1.order) != null ? _a2 : Infinity) - ((_b2 = v2.order) != null ? _b2 : Infinity);
|
|
3130
|
+
});
|
|
3005
3131
|
}
|
|
3006
3132
|
if (props.bcfTopicObjects) {
|
|
3007
3133
|
if (viewpointsToUpdate.value.length > 0 || viewpointsToCreate.value.length > 0) {
|
|
3008
|
-
|
|
3009
|
-
|
|
3134
|
+
[
|
|
3135
|
+
...viewpointsToUpdate.value,
|
|
3136
|
+
...viewpointsToCreate.value
|
|
3137
|
+
].forEach((viewpoint) => {
|
|
3138
|
+
Object.assign(viewpoint, props.bcfTopicObjects);
|
|
3139
|
+
if (!viewpoint.components) {
|
|
3140
|
+
viewpoint.components = {};
|
|
3141
|
+
}
|
|
3142
|
+
if (!viewpoint.components.selection) {
|
|
3143
|
+
viewpoint.components.selection = [];
|
|
3144
|
+
}
|
|
3145
|
+
if (!viewpoint.components.visibility) {
|
|
3146
|
+
viewpoint.components.visibility = {
|
|
3147
|
+
default_visibility: true,
|
|
3148
|
+
exceptions: [],
|
|
3149
|
+
view_setup_hints: {
|
|
3150
|
+
spaces_visible: false,
|
|
3151
|
+
space_boundaries_visible: false,
|
|
3152
|
+
openings_visible: false
|
|
3153
|
+
}
|
|
3154
|
+
};
|
|
3155
|
+
}
|
|
3156
|
+
});
|
|
3010
3157
|
} else {
|
|
3011
3158
|
viewpointsToCreate.value.push({
|
|
3012
3159
|
components: props.bcfTopicObjects
|
|
@@ -3014,8 +3161,10 @@ const __vue2_script$9 = {
|
|
|
3014
3161
|
}
|
|
3015
3162
|
}
|
|
3016
3163
|
if (props.bcfTopicAnnotations) {
|
|
3017
|
-
|
|
3018
|
-
|
|
3164
|
+
[
|
|
3165
|
+
...viewpointsToUpdate.value,
|
|
3166
|
+
...viewpointsToCreate.value
|
|
3167
|
+
].forEach((viewpoint) => viewpoint.pins = props.bcfTopicAnnotations);
|
|
3019
3168
|
}
|
|
3020
3169
|
const data = {
|
|
3021
3170
|
guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
|
|
@@ -3074,27 +3223,263 @@ const __vue2_script$9 = {
|
|
|
3074
3223
|
};
|
|
3075
3224
|
}
|
|
3076
3225
|
};
|
|
3226
|
+
const __cssModules$a = {};
|
|
3227
|
+
var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "6cd2b994", null, null);
|
|
3228
|
+
function __vue2_injectStyles$a(context) {
|
|
3229
|
+
for (let o2 in __cssModules$a) {
|
|
3230
|
+
this[o2] = __cssModules$a[o2];
|
|
3231
|
+
}
|
|
3232
|
+
}
|
|
3233
|
+
var BcfTopicForm = /* @__PURE__ */ function() {
|
|
3234
|
+
return __component__$a.exports;
|
|
3235
|
+
}();
|
|
3236
|
+
var render$9 = function() {
|
|
3237
|
+
var _vm = this;
|
|
3238
|
+
var _h = _vm.$createElement;
|
|
3239
|
+
var _c = _vm._self._c || _h;
|
|
3240
|
+
return _c("div", { staticClass: "user-avatar", class: "user-avatar--" + (_vm.user.profile_picture ? "silver-light" : _vm.color), style: {
|
|
3241
|
+
width: _vm.size + "px",
|
|
3242
|
+
height: _vm.size + "px",
|
|
3243
|
+
fontSize: (_vm.initialsSize ? _vm.initialsSize : +_vm.size * 0.382) + "px"
|
|
3244
|
+
} }, [_vm.user.profile_picture ? [_c("img", { attrs: { "src": _vm.user.profile_picture } })] : _vm.initials ? [_vm._v(" " + _vm._s(_vm.initials) + " ")] : [_c("BIMDataIcon", { attrs: { "name": "user", "size": "xs" } })]], 2);
|
|
3245
|
+
};
|
|
3246
|
+
var staticRenderFns$9 = [];
|
|
3247
|
+
var UserAvatar_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FuserAvatar_2FUserAvatar_vue_src_scoped_true_lang = "";
|
|
3248
|
+
const __vue2_script$9 = {
|
|
3249
|
+
props: {
|
|
3250
|
+
user: {
|
|
3251
|
+
type: Object,
|
|
3252
|
+
required: true
|
|
3253
|
+
},
|
|
3254
|
+
size: {
|
|
3255
|
+
type: [Number, String],
|
|
3256
|
+
default: 32,
|
|
3257
|
+
validate: (value) => value >= 32
|
|
3258
|
+
},
|
|
3259
|
+
initialsSize: {
|
|
3260
|
+
type: [Number, String]
|
|
3261
|
+
},
|
|
3262
|
+
color: {
|
|
3263
|
+
type: String,
|
|
3264
|
+
default: "primary",
|
|
3265
|
+
validate: (value) => ["primary", "secondary", "silver-light"].includes(value)
|
|
3266
|
+
}
|
|
3267
|
+
},
|
|
3268
|
+
setup(props) {
|
|
3269
|
+
const initials = computed(() => `${props.user.firstname && props.user.firstname[0] || ""}${props.user.lastname && props.user.lastname[0] || ""}`.toUpperCase());
|
|
3270
|
+
return {
|
|
3271
|
+
initials
|
|
3272
|
+
};
|
|
3273
|
+
}
|
|
3274
|
+
};
|
|
3077
3275
|
const __cssModules$9 = {};
|
|
3078
|
-
var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "
|
|
3276
|
+
var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "e5e255f0", null, null);
|
|
3079
3277
|
function __vue2_injectStyles$9(context) {
|
|
3080
3278
|
for (let o2 in __cssModules$9) {
|
|
3081
3279
|
this[o2] = __cssModules$9[o2];
|
|
3082
3280
|
}
|
|
3083
3281
|
}
|
|
3084
|
-
var
|
|
3282
|
+
var UserAvatar = /* @__PURE__ */ function() {
|
|
3085
3283
|
return __component__$9.exports;
|
|
3086
3284
|
}();
|
|
3285
|
+
var render$8 = function() {
|
|
3286
|
+
var _vm = this;
|
|
3287
|
+
var _h = _vm.$createElement;
|
|
3288
|
+
var _c = _vm._self._c || _h;
|
|
3289
|
+
return _c("div", { staticClass: "topic-comment" }, [_c("div", { staticClass: "topic-comment__header flex items-center justify-between" }, [_c("div", { staticClass: "topic-comment__header__left flex items-center" }, [_vm.comment.user ? _c("UserAvatar", { staticClass: "m-r-12", staticStyle: { "box-shadow": "var(--box-shadow)" }, attrs: { "user": _vm.comment.user, "size": "27", "initialsSize": "14", "color": "silver-light" } }) : _c("span", { staticClass: "topic-comment__header__left__user flex items-center justify-center m-r-12" }, [_c("BIMDataIcon", { attrs: { "name": "user", "size": "xxs", "fill": "", "color": "granite" } })], 1), _c("BIMDataTextbox", { attrs: { "width": "auto", "maxWidth": "150px", "cutPosition": "end", "text": _vm.comment.author } }), _c("span", { staticClass: "color-granite m-x-6" }, [_vm._v(" \u2022 ")]), _c("span", { staticClass: "color-granite" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.comment.date, "long")) + " ")])], 1), _c("div", { staticClass: "topic-comment__header__right" }, [_c("div", { staticClass: "topic-comment__header__right__actions flex" }, [_vm.showMenu ? [_c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.onOpenEdit } }, [_c("BIMDataIcon", { attrs: { "name": "edit", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.onOpenDelete } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.toggleMenu } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e(), _vm.isEditing ? [_c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.cancelUpdate } }, [_c("BIMDataIcon", { attrs: { "name": "undo", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.submitUpdate } }, [_c("BIMDataIcon", { attrs: { "name": "validate", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e()], 2), _vm.isDeleting ? _c("div", { staticClass: "topic-comment__header__right__delete p-x-12" }, [_c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.deleteCommentText")) + " ")]), _c("div", { staticClass: "flex items-center" }, [_c("BIMDataButton", { staticClass: "m-r-6", attrs: { "color": "high", "fill": "", "radius": "" }, on: { "click": _vm.submitDelete } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.deleteButton")) + " ")]), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
|
|
3290
|
+
_vm.isDeleting = false;
|
|
3291
|
+
} } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "primary" } })], 1)], 1)]) : _vm._e(), !_vm.showMenu && !_vm.isDeleting && !_vm.isEditing ? _c("BIMDataButton", { staticClass: "topic-comment__header__right__btn", attrs: { "rounded": "", "icon": "" }, on: { "click": _vm.toggleMenu } }, [_c("BIMDataIcon", { attrs: { "name": "ellipsis", "size": "l", "fill": "", "color": "granite-light" } })], 1) : _vm._e()], 1)]), _c("div", { staticClass: "topic-comment__content" }, [_c("BIMDataTextarea", { class: { editing: _vm.isEditing }, attrs: { "width": "100%", "rows": "1", "fitContent": "", "autofocus": "", "resizable": false, "readonly": !_vm.isEditing }, model: { value: _vm.text, callback: function($$v) {
|
|
3292
|
+
_vm.text = $$v;
|
|
3293
|
+
}, expression: "text" } })], 1), _vm.loading ? [_c("BIMDataLoading")] : _vm._e()], 2);
|
|
3294
|
+
};
|
|
3295
|
+
var staticRenderFns$8 = [];
|
|
3296
|
+
var TopicComment_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FbcfTopicComments_2FtopicComment_2FTopicComment_vue_src_scoped_true_lang = "";
|
|
3297
|
+
const __vue2_script$8 = {
|
|
3298
|
+
components: {
|
|
3299
|
+
BIMDataButton: c$5,
|
|
3300
|
+
BIMDataIcon: v$2,
|
|
3301
|
+
BIMDataLoading: a$4,
|
|
3302
|
+
BIMDataTextarea: s$2,
|
|
3303
|
+
BIMDataTextbox: l$3,
|
|
3304
|
+
UserAvatar
|
|
3305
|
+
},
|
|
3306
|
+
props: {
|
|
3307
|
+
project: {
|
|
3308
|
+
type: Object,
|
|
3309
|
+
required: true
|
|
3310
|
+
},
|
|
3311
|
+
bcfTopic: {
|
|
3312
|
+
type: Object,
|
|
3313
|
+
required: true
|
|
3314
|
+
},
|
|
3315
|
+
comment: {
|
|
3316
|
+
type: Object,
|
|
3317
|
+
required: true
|
|
3318
|
+
}
|
|
3319
|
+
},
|
|
3320
|
+
emits: [
|
|
3321
|
+
"comment-updated",
|
|
3322
|
+
"comment-deleted"
|
|
3323
|
+
],
|
|
3324
|
+
setup(props, { emit }) {
|
|
3325
|
+
const { deleteComment: deleteComment2, updateComment: updateComment2 } = useService();
|
|
3326
|
+
const loading = ref(false);
|
|
3327
|
+
const showMenu = ref(false);
|
|
3328
|
+
const closeMenu = () => showMenu.value = false;
|
|
3329
|
+
const toggleMenu = () => showMenu.value = !showMenu.value;
|
|
3330
|
+
const text = ref(props.comment.comment);
|
|
3331
|
+
const isEditing = ref(false);
|
|
3332
|
+
const onOpenEdit = () => {
|
|
3333
|
+
isEditing.value = true;
|
|
3334
|
+
closeMenu();
|
|
3335
|
+
};
|
|
3336
|
+
const cancelUpdate = () => {
|
|
3337
|
+
isEditing.value = false;
|
|
3338
|
+
text.value = props.comment.comment;
|
|
3339
|
+
};
|
|
3340
|
+
const submitUpdate = async () => {
|
|
3341
|
+
if (props.comment.comment !== text.value) {
|
|
3342
|
+
try {
|
|
3343
|
+
loading.value = true;
|
|
3344
|
+
const newComment = await updateComment2(props.project, props.bcfTopic, props.comment, { comment: text.value });
|
|
3345
|
+
emit("comment-updated", newComment);
|
|
3346
|
+
isEditing.value = false;
|
|
3347
|
+
} finally {
|
|
3348
|
+
loading.value = false;
|
|
3349
|
+
}
|
|
3350
|
+
}
|
|
3351
|
+
};
|
|
3352
|
+
const isDeleting = ref(false);
|
|
3353
|
+
const onOpenDelete = () => {
|
|
3354
|
+
isDeleting.value = true;
|
|
3355
|
+
closeMenu();
|
|
3356
|
+
};
|
|
3357
|
+
const submitDelete = async () => {
|
|
3358
|
+
try {
|
|
3359
|
+
loading.value = true;
|
|
3360
|
+
await deleteComment2(props.project, props.bcfTopic, props.comment);
|
|
3361
|
+
emit("comment-deleted", props.comment);
|
|
3362
|
+
isDeleting.value = false;
|
|
3363
|
+
} finally {
|
|
3364
|
+
loading.value = false;
|
|
3365
|
+
}
|
|
3366
|
+
};
|
|
3367
|
+
return {
|
|
3368
|
+
text,
|
|
3369
|
+
isDeleting,
|
|
3370
|
+
isEditing,
|
|
3371
|
+
loading,
|
|
3372
|
+
showMenu,
|
|
3373
|
+
cancelUpdate,
|
|
3374
|
+
closeMenu,
|
|
3375
|
+
onOpenDelete,
|
|
3376
|
+
onOpenEdit,
|
|
3377
|
+
submitDelete,
|
|
3378
|
+
submitUpdate,
|
|
3379
|
+
toggleMenu
|
|
3380
|
+
};
|
|
3381
|
+
}
|
|
3382
|
+
};
|
|
3383
|
+
const __cssModules$8 = {};
|
|
3384
|
+
var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "47f184d0", null, null);
|
|
3385
|
+
function __vue2_injectStyles$8(context) {
|
|
3386
|
+
for (let o2 in __cssModules$8) {
|
|
3387
|
+
this[o2] = __cssModules$8[o2];
|
|
3388
|
+
}
|
|
3389
|
+
}
|
|
3390
|
+
var TopicComment = /* @__PURE__ */ function() {
|
|
3391
|
+
return __component__$8.exports;
|
|
3392
|
+
}();
|
|
3393
|
+
var render$7 = function() {
|
|
3394
|
+
var _vm = this;
|
|
3395
|
+
var _h = _vm.$createElement;
|
|
3396
|
+
var _c = _vm._self._c || _h;
|
|
3397
|
+
return _c("div", { staticClass: "bcf-topic-comments" }, [!_vm.isOpen ? _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
|
|
3398
|
+
_vm.isOpen = true;
|
|
3399
|
+
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.commentButton")) + " ")]) : _c("div", { staticClass: "bcf-topic-comments__post-comment m-t-24" }, [_c("p", { staticClass: "color-granite m-b-24" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.commentText")) + " ")]), _c("div", { staticClass: "bcf-comment-input m-t-24" }, [_c("BIMDataTextarea", { ref: "input", attrs: { "width": "100%", "label": _vm.$t("BcfComponents.BcfTopicComments.commentLabel"), "autofocus": "", "resizable": "" }, model: { value: _vm.text, callback: function($$v) {
|
|
3400
|
+
_vm.text = $$v;
|
|
3401
|
+
}, expression: "text" } }), _c("div", { staticClass: "flex items-center justify-end" }, [_c("BIMDataButton", { staticClass: "m-r-6", attrs: { "color": "primary", "ghost": "", "radius": "" }, on: { "click": function($event) {
|
|
3402
|
+
_vm.isOpen = false;
|
|
3403
|
+
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.cancelButton")) + " ")]), _c("BIMDataButton", { attrs: { "color": "primary", "fill": "", "radius": "", "width": "135px" }, on: { "click": _vm.publishComment } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.publishButton")) + " ")])], 1)], 1)]), _c("div", { staticClass: "bcf-topic-comments__list m-t-18" }, [_c("p", { staticClass: "color-granite" }, [_vm._v(" " + _vm._s((_vm.bcfTopic.comments ? _vm.bcfTopic.comments.length : 0) + " " + _vm.$t("BcfComponents.BcfTopicComments.commentsText")) + " ")]), _vm.bcfTopic.comments && _vm.bcfTopic.comments.length ? _c("div", _vm._l(_vm.bcfTopic.comments, function(comment) {
|
|
3404
|
+
return _c("TopicComment", { key: comment.guid, attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic, "comment": comment }, on: { "comment-updated": function($event) {
|
|
3405
|
+
return _vm.$emit("comment-updated", $event);
|
|
3406
|
+
}, "comment-deleted": function($event) {
|
|
3407
|
+
return _vm.$emit("comment-deleted", $event);
|
|
3408
|
+
} } });
|
|
3409
|
+
}), 1) : _vm._e()]), _vm.loading ? [_c("BIMDataLoading")] : _vm._e()], 2);
|
|
3410
|
+
};
|
|
3411
|
+
var staticRenderFns$7 = [];
|
|
3412
|
+
var BcfTopicComments_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FbcfTopicComments_2FBcfTopicComments_vue_src_scoped_true_lang = "";
|
|
3413
|
+
const __vue2_script$7 = {
|
|
3414
|
+
components: {
|
|
3415
|
+
BIMDataButton: c$5,
|
|
3416
|
+
BIMDataLoading: a$4,
|
|
3417
|
+
BIMDataTextarea: s$2,
|
|
3418
|
+
TopicComment
|
|
3419
|
+
},
|
|
3420
|
+
props: {
|
|
3421
|
+
project: {
|
|
3422
|
+
type: Object,
|
|
3423
|
+
required: true
|
|
3424
|
+
},
|
|
3425
|
+
bcfTopic: {
|
|
3426
|
+
type: Object,
|
|
3427
|
+
required: true
|
|
3428
|
+
}
|
|
3429
|
+
},
|
|
3430
|
+
emis: [
|
|
3431
|
+
"comment-created",
|
|
3432
|
+
"comment-updated",
|
|
3433
|
+
"comment-deleted"
|
|
3434
|
+
],
|
|
3435
|
+
setup(props, { emit }) {
|
|
3436
|
+
const { createComment: createComment2 } = useService();
|
|
3437
|
+
const isOpen = ref(false);
|
|
3438
|
+
const loading = ref(false);
|
|
3439
|
+
const input = ref(null);
|
|
3440
|
+
const text = ref("");
|
|
3441
|
+
watch(isOpen, () => setTimeout(() => isOpen.value && input.value.focus(), 50));
|
|
3442
|
+
const publishComment = async () => {
|
|
3443
|
+
try {
|
|
3444
|
+
loading.value = true;
|
|
3445
|
+
const newComment = await createComment2(props.project, props.bcfTopic, { comment: text.value });
|
|
3446
|
+
emit("comment-created", newComment);
|
|
3447
|
+
isOpen.value = false;
|
|
3448
|
+
text.value = "";
|
|
3449
|
+
} finally {
|
|
3450
|
+
loading.value = false;
|
|
3451
|
+
}
|
|
3452
|
+
};
|
|
3453
|
+
return {
|
|
3454
|
+
input,
|
|
3455
|
+
isOpen,
|
|
3456
|
+
loading,
|
|
3457
|
+
text,
|
|
3458
|
+
publishComment
|
|
3459
|
+
};
|
|
3460
|
+
}
|
|
3461
|
+
};
|
|
3462
|
+
const __cssModules$7 = {};
|
|
3463
|
+
var __component__$7 = /* @__PURE__ */ normalizeComponent(__vue2_script$7, render$7, staticRenderFns$7, false, __vue2_injectStyles$7, "561aa0f8", null, null);
|
|
3464
|
+
function __vue2_injectStyles$7(context) {
|
|
3465
|
+
for (let o2 in __cssModules$7) {
|
|
3466
|
+
this[o2] = __cssModules$7[o2];
|
|
3467
|
+
}
|
|
3468
|
+
}
|
|
3469
|
+
var BcfTopicComments = /* @__PURE__ */ function() {
|
|
3470
|
+
return __component__$7.exports;
|
|
3471
|
+
}();
|
|
3087
3472
|
var e$1 = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), t$1 = { name: "BIMDataButton", props: { width: { type: String, default: "32px" }, height: { type: String, default: "32px" }, fill: { type: Boolean, default: false }, outline: { type: Boolean, default: false }, ghost: { type: Boolean, default: false }, ripple: { type: Boolean, default: false }, radius: { type: Boolean, default: false }, square: { type: Boolean, default: false }, rounded: { type: Boolean, default: false }, icon: { type: Boolean, default: false }, color: { type: String, default: "default", validator: (t2) => e$1.includes(t2) } }, emits: ["click"], computed: { classes() {
|
|
3088
3473
|
return { "bimdata-btn__icon": this.icon, "bimdata-btn__fill": this.fill, "bimdata-btn__outline": this.outline, "bimdata-btn__ghost": this.ghost, "bimdata-btn__ripple": this.ripple, "bimdata-btn__radius": this.radius, "bimdata-btn__square": this.square, "bimdata-btn__rounded": this.rounded, ["bimdata-btn__fill--" + this.color]: this.fill && this.color, ["bimdata-btn__outline--" + this.color]: this.outline && this.color, ["bimdata-btn__ghost--" + this.color]: this.ghost && this.color, ["bimdata-btn__ripple--" + this.color]: this.ripple && this.color };
|
|
3089
3474
|
}, style() {
|
|
3090
3475
|
return { "min-width": "" + this.width, "min-height": "" + this.height };
|
|
3091
3476
|
} } };
|
|
3092
|
-
function r$1(e2, t2, r2, i2,
|
|
3477
|
+
function r$1(e2, t2, r2, i2, d2, o2, a2, n2, s2, l2) {
|
|
3093
3478
|
typeof a2 != "boolean" && (s2 = n2, n2 = a2, a2 = false);
|
|
3094
3479
|
const v2 = typeof r2 == "function" ? r2.options : r2;
|
|
3095
3480
|
let c2;
|
|
3096
|
-
if (e2 && e2.render && (v2.render = e2.render, v2.staticRenderFns = e2.staticRenderFns, v2._compiled = true,
|
|
3097
|
-
(e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, s2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(
|
|
3481
|
+
if (e2 && e2.render && (v2.render = e2.render, v2.staticRenderFns = e2.staticRenderFns, v2._compiled = true, d2 && (v2.functional = true)), i2 && (v2._scopeId = i2), o2 ? (c2 = function(e3) {
|
|
3482
|
+
(e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, s2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(o2);
|
|
3098
3483
|
}, v2._ssrRegister = c2) : t2 && (c2 = a2 ? function(e3) {
|
|
3099
3484
|
t2.call(this, l2(e3, this.$root.$options.shadowRoot));
|
|
3100
3485
|
} : function(e3) {
|
|
@@ -3112,22 +3497,22 @@ function r$1(e2, t2, r2, i2, o2, d2, a2, n2, s2, l2) {
|
|
|
3112
3497
|
return r2;
|
|
3113
3498
|
}
|
|
3114
3499
|
const i$1 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
3115
|
-
function
|
|
3500
|
+
function d$1(e2) {
|
|
3116
3501
|
return (e3, t2) => function(e4, t3) {
|
|
3117
|
-
const r2 = i$1 ? t3.media || "default" : e4,
|
|
3118
|
-
if (!
|
|
3119
|
-
|
|
3502
|
+
const r2 = i$1 ? t3.media || "default" : e4, d2 = a$1[r2] || (a$1[r2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
3503
|
+
if (!d2.ids.has(e4)) {
|
|
3504
|
+
d2.ids.add(e4);
|
|
3120
3505
|
let r3 = t3.source;
|
|
3121
|
-
if (t3.map && (r3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", r3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"),
|
|
3122
|
-
|
|
3506
|
+
if (t3.map && (r3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", r3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"), d2.element || (d2.element = document.createElement("style"), d2.element.type = "text/css", t3.media && d2.element.setAttribute("media", t3.media), o$1 === void 0 && (o$1 = document.head || document.getElementsByTagName("head")[0]), o$1.appendChild(d2.element)), "styleSheet" in d2.element)
|
|
3507
|
+
d2.styles.push(r3), d2.element.styleSheet.cssText = d2.styles.filter(Boolean).join("\n");
|
|
3123
3508
|
else {
|
|
3124
|
-
const e5 =
|
|
3125
|
-
i2[e5] &&
|
|
3509
|
+
const e5 = d2.ids.size - 1, t4 = document.createTextNode(r3), i2 = d2.element.childNodes;
|
|
3510
|
+
i2[e5] && d2.element.removeChild(i2[e5]), i2.length ? d2.element.insertBefore(t4, i2[e5]) : d2.element.appendChild(t4);
|
|
3126
3511
|
}
|
|
3127
3512
|
}
|
|
3128
3513
|
}(e3, t2);
|
|
3129
3514
|
}
|
|
3130
|
-
let
|
|
3515
|
+
let o$1;
|
|
3131
3516
|
const a$1 = {};
|
|
3132
3517
|
const n$1 = r$1({ render: function() {
|
|
3133
3518
|
var e2 = this, t2 = e2.$createElement;
|
|
@@ -3136,7 +3521,7 @@ const n$1 = r$1({ render: function() {
|
|
|
3136
3521
|
} } }, [e2._t("default")], 2);
|
|
3137
3522
|
}, staticRenderFns: [] }, function(e2) {
|
|
3138
3523
|
e2 && (e2("data-v-7af18892_0", { source: 'html[data-v-7af18892]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}html[data-v-7af18892]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.text-left[data-v-7af18892]{text-align:left}.text-center[data-v-7af18892]{text-align:center}.text-right[data-v-7af18892]{text-align:right}.bimdata-link[data-v-7af18892]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-7af18892]{font-family:roboto,sans-serif}', map: void 0, media: void 0 }), e2("data-v-7af18892_1", { source: ".bimdata-btn{padding:0 var(--spacing-unit);height:fit-content;display:flex;align-items:center;justify-content:center;background-color:transparent;border:none;color:var(--color-primary);cursor:pointer;font-family:var(--primary-font);font-size:12px;transition:all .1s ease}.bimdata-btn:hover{transition:all .25s ease-in}.bimdata-btn:focus{outline:0}.bimdata-btn__icon{padding:0}.bimdata-btn__radius{border-radius:3px}.bimdata-btn__square{border-radius:0}.bimdata-btn__rounded{border-radius:50%}.bimdata-btn__fill{background-color:var(--color-white);justify-content:center}.bimdata-btn__fill--default{box-shadow:var(--box-shadow)}.bimdata-btn__fill--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__fill--primary{background-color:var(--color-primary);color:var(--color-white)}.bimdata-btn__fill--primary:hover{background-color:var(--color-primary-light)}.bimdata-btn__fill--secondary{background-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__fill--secondary:hover{background-color:var(--color-secondary-light)}.bimdata-btn__fill--granite{background-color:var(--color-granite);color:var(--color-white)}.bimdata-btn__fill--granite:hover{background-color:var(--color-granite)}.bimdata-btn__fill--high{background-color:var(--color-high);color:var(--color-white)}.bimdata-btn__fill--high:hover{background-color:var(--color-high-light)}.bimdata-btn__fill--success{background-color:var(--color-success);color:var(--color-white)}.bimdata-btn__fill--success:hover{background-color:var(--color-success-light)}.bimdata-btn__fill--btn-icon svg{margin:0 6px}.bimdata-btn__fill:disabled{background-color:var(--color-silver-dark);color:var(--color-white);cursor:auto}.bimdata-btn__ripple{background-position:center;transition:background .8s}.bimdata-btn__ripple--default{background-color:transparent;color:var(--color-primary)}.bimdata-btn__ripple--default:hover{background:transparent radial-gradient(circle,transparent 1%,var(--color-silver-light) 1%) center/15000%}.bimdata-btn__ripple--default:active:not(:disabled){background-color:var(--color-silver-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--primary{background-color:var(--color-primary);color:var(--color-white)}.bimdata-btn__ripple--primary:hover{background:var(--color-primary) radial-gradient(circle,transparent 1%,var(--color-primary) 1%) center/15000%}.bimdata-btn__ripple--primary:active:not(:disabled){background-color:var(--color-primary-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--secondary{background-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__ripple--secondary:hover{background:var(--color-secondary) radial-gradient(circle,transparent 1%,var(--color-secondary) 1%) center/15000%}.bimdata-btn__ripple--secondary:active:not(:disabled){background-color:var(--color-secondary-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--granite{background-color:var(--color-granite);color:var(--color-white)}.bimdata-btn__ripple--granite:hover{background:var(--color-granite) radial-gradient(circle,transparent 1%,var(--color-granite) 1%) center/15000%}.bimdata-btn__ripple--granite:active:not(:disabled){background-color:var(--color-granite-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--high{background-color:var(--color-high);color:var(--color-white)}.bimdata-btn__ripple--high:hover{background:var(--color-high) radial-gradient(circle,transparent 1%,var(--color-high) 1%) center/15000%}.bimdata-btn__ripple--high:active:not(:disabled){background-color:var(--color-high-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--success{background-color:var(--color-success);color:var(--color-white)}.bimdata-btn__ripple--success:hover{background:var(--color-success) radial-gradient(circle,transparent 1%,var(--color-success) 1%) center/15000%}.bimdata-btn__ripple--success:active:not(:disabled){background-color:var(--color-success-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple:disabled{background-color:var(--color-silver-dark);color:var(--color-white);cursor:auto}.bimdata-btn__outline{justify-content:center;border:1px solid}.bimdata-btn__outline--default{border-color:var(--color-silver);color:var(--color-primary)}.bimdata-btn__outline--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__outline--primary{border-color:var(--color-primary);color:var(--color-primary)}.bimdata-btn__outline--primary:hover{background-color:var(--color-primary-lighter)}.bimdata-btn__outline--secondary{border-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__outline--secondary:hover{background-color:var(--color-secondary-lighter)}.bimdata-btn__outline--granite{border-color:var(--color-granite);color:var(--color-granite)}.bimdata-btn__outline--granite:hover{background-color:var(--color-silver-light)}.bimdata-btn__outline--high{border-color:var(--color-high);color:var(--color-high)}.bimdata-btn__outline--high:hover{background-color:var(--color-high-lighter)}.bimdata-btn__outline--success{border-color:var(--color-success);color:var(--color-success)}.bimdata-btn__outline--success:hover{background-color:var(--color-success-lighter)}.bimdata-btn__outline:disabled{border-color:var(--color-silver-dark);color:var(--color-silver-dark);cursor:auto}.bimdata-btn__outline:disabled:hover{background-color:transparent}.bimdata-btn__ghost{justify-content:center}.bimdata-btn__ghost svg{display:flex;align-items:center}.bimdata-btn__ghost--default{color:var(--color-primary)}.bimdata-btn__ghost--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__ghost--primary{color:var(--color-primary)}.bimdata-btn__ghost--primary:hover{background-color:var(--color-primary-lighter)}.bimdata-btn__ghost--secondary{color:var(--color-secondary)}.bimdata-btn__ghost--secondary:hover{background-color:var(--color-secondary-lighter)}.bimdata-btn__ghost--granite{color:var(--color-granite)}.bimdata-btn__ghost--granite:hover{background-color:var(--color-silver-light)}.bimdata-btn__ghost--high{color:var(--color-high)}.bimdata-btn__ghost--high:hover{background-color:var(--color-high-lighter)}.bimdata-btn__ghost--success{color:var(--color-success)}.bimdata-btn__ghost--success:hover{background-color:var(--color-success-lighter)}.bimdata-btn__ghost:disabled{color:var(--color-silver-dark);cursor:auto}", map: void 0, media: void 0 }));
|
|
3139
|
-
}, t$1, "data-v-7af18892", false, void 0, false,
|
|
3524
|
+
}, t$1, "data-v-7af18892", false, void 0, false, d$1, void 0, void 0);
|
|
3140
3525
|
var s$1 = { addFile: r$1({ render: function() {
|
|
3141
3526
|
var e2 = this.$createElement;
|
|
3142
3527
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.6687 16.5312H14.4343V19.7656H12.2781V16.5312H9.04369V14.375H12.2781V11.1406H14.4343V14.375H17.6687V16.5312ZM4.01244 7.90625L10.1218 1.79688V5.97245V7.90625H4.01244ZM20.3885 2.3C20.3885 1.035 19.365 0 18.1 0H8.9L2 6.9V20.7C2 21.965 3.03464 23 4.3 23H18.1115C19.3765 23 20.4 21.965 20.4 20.7L20.3885 2.3Z" } });
|
|
@@ -3530,6 +3915,39 @@ var s$1 = { addFile: r$1({ render: function() {
|
|
|
3530
3915
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), zone: r$1({ render: function() {
|
|
3531
3916
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3532
3917
|
return t2("g", [t2("path", { attrs: { d: "M8.96582 11.3144L11.6658 10.1144V3.91443L1.96582 8.11443L8.96582 11.3144Z" } }), this._v(" "), t2("path", { attrs: { d: "M1.0658 15.2145L11.6658 19.9145V13.6145L1.0658 8.81445V15.2145Z" } }), this._v(" "), t2("path", { attrs: { d: "M22.9658 8.11443L13.2658 3.91443V10.1144L15.9658 11.3144L22.9658 8.11443Z" } }), this._v(" "), t2("path", { attrs: { d: "M13.2658 13.6145V19.9145L23.8658 15.2145V8.81445L13.2658 13.6145Z" } })]);
|
|
3918
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcfPolychrome: r$1({ render: function() {
|
|
3919
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3920
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.02193 12.8656C4.99498 13.5081 4.948 14.6282 5.60528 15.8997C7.70676 16.9403 12.8873 18.8488 16.5248 18.118C21.0718 17.2045 24.4653 11.2714 22.3618 6.71975C20.2583 2.16806 16.7141 1.26965 13.7885 1.56016C13.8264 1.59404 13.8667 1.6296 13.9093 1.6671C14.4738 2.16451 15.427 3.0043 16.2088 4.83129C17.7639 5.7059 20.2614 8.64331 18.7358 12.3391C17.0551 16.4108 13.4497 16.0217 12.2821 15.8956C12.1416 15.8805 12.0365 15.8691 11.9742 15.8698C11.5056 15.8749 7.61308 15.3475 5.02347 12.8287C5.02297 12.8408 5.02245 12.8531 5.02193 12.8656ZM12.4885 4.74167C11.9561 4.40063 10.617 3.72872 9.52006 3.76938C7.57654 5.08613 3.39156 8.60595 2.1998 12.1512C0.710113 16.5827 4.10364 22.5158 9.06053 22.9528C14.0174 23.3898 16.6583 20.7215 17.8718 18.0188C17.0698 18.3001 15.5331 18.7286 13.7293 18.4406C12.2014 19.3627 8.46042 20.1549 6.05233 16.9734C3.39934 13.4683 5.53596 10.5111 6.22787 9.55348C6.3111 9.43828 6.37343 9.35202 6.40399 9.29722C6.63388 8.88508 9.03266 5.74603 12.4885 4.74167Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { d: "M18.0536 13.1944C17.54 14.1736 16.294 15.0082 15.7352 15.3031C16.6014 11.78 15.1076 8.07749 14.869 7.67046C14.5735 7.16642 13.314 2.89017 8.45901 3.52497C4.52537 4.0393 3.30588 7.69446 3.33306 9.49119C2.28341 10.7256 1.78066 12.3166 1.62101 13.1584C-0.0910414 10.7461 -1.02859 7.27957 1.82482 3.16493C4.67824 -0.949703 11.4653 -0.949707 14.5225 2.56831C16.9683 5.38272 17.8957 10.837 18.0536 13.1944Z" } })]);
|
|
3921
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), createWindowPolychrome: r$1({ render: function() {
|
|
3922
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3923
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 5.47981C0 3.9647 1.22825 2.73645 2.74336 2.73645H19.3255C20.8406 2.73645 22.0688 3.9647 22.0688 5.47981V10.5919C21.5229 10.3111 20.9283 10.1115 20.3011 10.009V8.06481C20.3011 7.51253 19.8534 7.06481 19.3011 7.06481H2.79865C2.24636 7.06481 1.79865 7.51253 1.79865 8.06481V17.526C1.79865 18.0783 2.24636 18.526 2.79865 18.526H13.9069C14.2198 19.1792 14.6474 19.7671 15.1635 20.2635H2.74336C1.22825 20.2635 0 19.0352 0 17.5201V5.47981ZM4.70657 4.91213C4.70657 5.4271 4.28911 5.84456 3.77414 5.84456C3.25918 5.84456 2.84172 5.4271 2.84172 4.91213C2.84172 4.39717 3.25918 3.9797 3.77414 3.9797C4.28911 3.9797 4.70657 4.39717 4.70657 4.91213ZM6.172 5.84456C6.68696 5.84456 7.10443 5.4271 7.10443 4.91213C7.10443 4.39717 6.68696 3.9797 6.172 3.9797C5.65703 3.9797 5.23957 4.39717 5.23957 4.91213C5.23957 5.4271 5.65703 5.84456 6.172 5.84456Z" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "17.7899", y: "11.6612", width: "2.65031", height: "7.77024" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "23", y: "14.221", width: "2.65031", height: "7.77024", transform: "rotate(90 23 14.221)" } })]);
|
|
3924
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), docInfoPolychrome: r$1({ render: function() {
|
|
3925
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3926
|
+
return t2("g", [t2("rect", { staticClass: "fill-secondary", attrs: { x: "8.28", y: "4.14003", width: "6.44", height: "1.84" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.66991 0.459961H18.4V8.97184C17.8119 8.82047 17.1953 8.73996 16.56 8.73996L16.56 2.29996H6.43999V6.90002H1.84V19.78H10.1846C10.5853 20.4725 11.0955 21.0938 11.6917 21.62H0V6.12987L5.66991 0.459961Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.20001 16.0999H3.67999V17.9399H9.43185C9.2805 17.3518 9.20001 16.7353 9.20001 16.1C9.20001 16.1 9.20001 16.0999 9.20001 16.0999Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.1847 12.42H3.67999V14.26H9.43189C9.59991 13.6072 9.85523 12.9895 10.1847 12.42Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.72 8.97181V8.73996H3.67999V10.58H11.6917C12.5475 9.82459 13.5803 9.26514 14.72 8.97181Z" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.56 22.54C20.1167 22.54 23 19.6567 23 16.1C23 12.5433 20.1167 9.66002 16.56 9.66002C13.0033 9.66002 10.12 12.5433 10.12 16.1C10.12 19.6567 13.0033 22.54 16.56 22.54ZM15.8426 17.406H17.0285L17.1965 12.4201H15.6746L15.8426 17.406ZM17.0137 18.3992C16.8688 18.2576 16.676 18.1868 16.4356 18.1868C16.1984 18.1868 16.0057 18.2592 15.8574 18.4042C15.7125 18.5458 15.64 18.7254 15.64 18.9428C15.64 19.1602 15.7125 19.3397 15.8574 19.4814C16.0057 19.6231 16.1984 19.6939 16.4356 19.6939C16.676 19.6939 16.8688 19.6231 17.0137 19.4814C17.1619 19.3397 17.2361 19.1602 17.2361 18.9428C17.2361 18.7221 17.1619 18.5409 17.0137 18.3992Z" } })]);
|
|
3927
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fileDwgPolychrome: r$1({ render: function() {
|
|
3928
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3929
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.73921 7.82627L11.7868 1.7787V5.91204V7.82627H5.73921ZM21.9496 2.27673C21.9496 1.02453 20.9365 0 19.6843 0H10.5773L3.74713 6.8302V20.4906C3.74713 21.7428 4.77131 22.7673 6.02386 22.7673H19.6956C20.9479 22.7673 21.961 21.7428 21.961 20.4906L21.9496 2.27673Z" } }), this._v(" "), t2("path", { attrs: { d: "M0.777466 12.8685C0.777466 12.3218 1.22065 11.8786 1.76735 11.8786H24.5347C25.0814 11.8786 25.5246 12.3218 25.5246 12.8685V19.7977C25.5246 20.3444 25.0814 20.7876 24.5347 20.7876H1.76735C1.22065 20.7876 0.777466 20.3444 0.777466 19.7977V12.8685Z", fill: "#F8C62C" } }), this._v(" "), t2("path", { attrs: { d: "M2.8558 19.7976V12.7602H5.02118C5.63985 12.7602 6.19247 12.9003 6.67904 13.1807C7.16883 13.4578 7.55066 13.8541 7.82456 14.3697C8.09845 14.882 8.2354 15.4653 8.2354 16.1194V16.4432C8.2354 17.0974 8.10006 17.679 7.82939 18.1881C7.56194 18.6972 7.18333 19.0919 6.69354 19.3723C6.20375 19.6526 5.65113 19.7944 5.03568 19.7976H2.8558ZM4.30583 13.9347V18.6328H5.00668C5.5738 18.6328 6.00719 18.4475 6.30687 18.0769C6.60654 17.7064 6.7596 17.1763 6.76604 16.4867V16.1146C6.76604 15.3992 6.61782 14.8579 6.32137 14.4905C6.02492 14.12 5.59152 13.9347 5.02118 13.9347H4.30583Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M14.775 17.7676L15.7224 12.7602H17.1676L15.6064 19.7976H14.1467L13.0012 15.0899L11.8556 19.7976H10.3959L8.83474 12.7602H10.2799L11.2321 17.7579L12.3921 12.7602H13.6198L14.775 17.7676Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M23.5235 18.9083C23.2625 19.2208 22.8935 19.4641 22.4166 19.6381C21.9398 19.8089 21.4113 19.8943 20.8313 19.8943C20.2223 19.8943 19.6874 19.7622 19.2266 19.498C18.769 19.2305 18.4146 18.8438 18.1632 18.3379C17.9151 17.832 17.7878 17.2375 17.7814 16.5544V16.0759C17.7814 15.3734 17.899 14.766 18.1342 14.2537C18.3727 13.7381 18.7143 13.345 19.1589 13.0743C19.6068 12.8004 20.1304 12.6635 20.7298 12.6635C21.5644 12.6635 22.2169 12.8633 22.6873 13.2628C23.1578 13.6592 23.4365 14.2376 23.5235 14.998H22.1121C22.0477 14.5953 21.9043 14.3004 21.682 14.1135C21.4629 13.9266 21.16 13.8332 20.7733 13.8332C20.2803 13.8332 19.9049 14.0185 19.6471 14.389C19.3893 14.7596 19.2588 15.3106 19.2556 16.0421V16.4916C19.2556 17.2295 19.3958 17.7869 19.6761 18.1639C19.9564 18.5409 20.3673 18.7294 20.9086 18.7294C21.4532 18.7294 21.8415 18.6134 22.0735 18.3814V17.1682H20.754V16.1001H23.5235V18.9083Z", fill: "white" } })]);
|
|
3930
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fileIfcPolychrome: r$1({ render: function() {
|
|
3931
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3932
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.97188 7.82627L10.0195 1.7787V5.91204V7.82627H3.97188ZM20.1823 2.27673C20.1823 1.02453 19.1691 0 17.9169 0H8.81L1.9798 6.8302V20.4906C1.9798 21.7428 3.00397 22.7673 4.25653 22.7673H17.9283C19.1805 22.7673 20.1937 21.7428 20.1937 20.4906L20.1823 2.27673Z" } }), this._v(" "), t2("path", { attrs: { d: "M0 12.8685C0 12.3218 0.443186 11.8786 0.989884 11.8786H20.7876C21.3343 11.8786 21.7775 12.3218 21.7775 12.8685V19.7977C21.7775 20.3444 21.3343 20.7876 20.7876 20.7876H0.989884C0.443187 20.7876 0 20.3444 0 19.7977V12.8685Z", fill: "#205DBD" } }), this._v(" "), t2("path", { attrs: { d: "M5.66383 19.7976H4.21381V12.7602H5.66383V19.7976Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M11.2464 16.9217H8.46238V19.7976H7.01236V12.7602H11.5944V13.9347H8.46238V15.7521H11.2464V16.9217Z", fill: "white" } }), this._v(" "), t2("path", { attrs: { d: "M17.96 17.4534C17.9053 18.2107 17.6249 18.8068 17.119 19.2418C16.6164 19.6768 15.9526 19.8943 15.1277 19.8943C14.2254 19.8943 13.5149 19.5914 12.9961 18.9856C12.4806 18.3766 12.2228 17.542 12.2228 16.4819V16.0517C12.2228 15.375 12.342 14.7789 12.5805 14.2634C12.8189 13.7478 13.1589 13.3531 13.6003 13.0792C14.045 12.8021 14.5605 12.6635 15.147 12.6635C15.959 12.6635 16.6131 12.881 17.1094 13.316C17.6056 13.751 17.8924 14.3616 17.9697 15.1479H16.5197C16.4842 14.6935 16.357 14.3649 16.1378 14.1619C15.922 13.9556 15.5917 13.8525 15.147 13.8525C14.6637 13.8525 14.3012 14.0265 14.0595 14.3745C13.821 14.7193 13.6986 15.2558 13.6921 15.9841V16.5157C13.6921 17.2762 13.8065 17.832 14.0353 18.1833C14.2673 18.5345 14.6314 18.7101 15.1277 18.7101C15.5756 18.7101 15.9091 18.6086 16.1282 18.4056C16.3505 18.1994 16.4778 17.882 16.51 17.4534H17.96Z", fill: "white" } })]);
|
|
3933
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filePdfPolychrome: r$1({ render: function() {
|
|
3934
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3935
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.01244 7.90625L10.1218 1.79688V5.97245V7.90625H4.01244ZM20.3885 2.3C20.3885 1.035 19.365 0 18.1 0H8.9L2 6.9V20.7C2 21.965 3.03464 23 4.3 23H18.1115C19.3765 23 20.4 21.965 20.4 20.7L20.3885 2.3Z" } }), this._v(" "), t2("rect", { attrs: { y: "12", width: "22", height: "9", rx: "1", fill: "#FF0000" } }), this._v(" "), t2("path", { attrs: { d: "M3.88086 17.4951V20H2.41602V12.8906H5.18945C5.72331 12.8906 6.19206 12.9883 6.5957 13.1836C7.0026 13.3789 7.3151 13.6572 7.5332 14.0186C7.7513 14.3766 7.86035 14.7852 7.86035 15.2441C7.86035 15.9408 7.62109 16.4909 7.14258 16.8945C6.66732 17.2949 6.00814 17.4951 5.16504 17.4951H3.88086ZM3.88086 16.3086H5.18945C5.57682 16.3086 5.87142 16.2174 6.07324 16.0352C6.27832 15.8529 6.38086 15.5924 6.38086 15.2539C6.38086 14.9056 6.27832 14.624 6.07324 14.4092C5.86816 14.1943 5.58496 14.0837 5.22363 14.0771H3.88086V16.3086ZM8.87109 20V12.8906H11.0586C11.6836 12.8906 12.2419 13.0322 12.7334 13.3154C13.2282 13.5954 13.6139 13.9958 13.8906 14.5166C14.1673 15.0342 14.3057 15.6234 14.3057 16.2842V16.6113C14.3057 17.2721 14.1689 17.8597 13.8955 18.374C13.6253 18.8883 13.2428 19.2871 12.748 19.5703C12.2533 19.8535 11.695 19.9967 11.0732 20H8.87109ZM10.3359 14.0771V18.8232H11.0439C11.6169 18.8232 12.0547 18.6361 12.3574 18.2617C12.6602 17.8874 12.8148 17.3519 12.8213 16.6553V16.2793C12.8213 15.5566 12.6715 15.0098 12.3721 14.6387C12.0726 14.2643 11.6348 14.0771 11.0586 14.0771H10.3359ZM19.6523 17.0947H16.8398V20H15.375V12.8906H20.0039V14.0771H16.8398V15.9131H19.6523V17.0947Z", fill: "white" } })]);
|
|
3936
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filePlanPolychrome: r$1({ render: function() {
|
|
3937
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3938
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.01244 7.90625L10.1218 1.79688V5.97245V7.90625H4.01244ZM20.3885 2.3C20.3885 1.035 19.365 0 18.1 0H8.9L2 6.9V20.7C2 21.965 3.03464 23 4.3 23H18.1115C19.3765 23 20.4 21.965 20.4 20.7L20.3885 2.3Z" } }), this._v(" "), t2("rect", { attrs: { y: "12", width: "22", height: "9", rx: "1", fill: "#FF9900" } }), this._v(" "), t2("path", { attrs: { d: "M4.37598 17.2261H3.10791V16.4263H4.37598C4.57194 16.4263 4.73145 16.3944 4.85449 16.3306C4.97754 16.2645 5.06755 16.1733 5.12451 16.0571C5.18148 15.9409 5.20996 15.8099 5.20996 15.6641C5.20996 15.516 5.18148 15.3781 5.12451 15.2505C5.06755 15.1229 4.97754 15.0203 4.85449 14.9429C4.73145 14.8654 4.57194 14.8267 4.37598 14.8267H3.46338V19H2.43799V14.0234H4.37598C4.76562 14.0234 5.09945 14.0941 5.37744 14.2354C5.65771 14.3743 5.87191 14.5669 6.02002 14.813C6.16813 15.0591 6.24219 15.3405 6.24219 15.6572C6.24219 15.9785 6.16813 16.2565 6.02002 16.4912C5.87191 16.7259 5.65771 16.9071 5.37744 17.0347C5.09945 17.1623 4.76562 17.2261 4.37598 17.2261ZM10.1489 18.2002V19H7.64355V18.2002H10.1489ZM7.9751 14.0234V19H6.94971V14.0234H7.9751ZM12.8286 14.8745L11.4751 19H10.3848L12.2339 14.0234H12.9277L12.8286 14.8745ZM13.9531 19L12.5962 14.8745L12.4868 14.0234H13.1875L15.0469 19H13.9531ZM13.8916 17.1475V17.9507H11.2632V17.1475H13.8916ZM19.5586 14.0234V19H18.5332L16.5337 15.6641V19H15.5083V14.0234H16.5337L18.5366 17.3628V14.0234H19.5586Z", fill: "white" } })]);
|
|
3939
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderPolychrome: r$1({ render: function() {
|
|
3940
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3941
|
+
return t2("g", [t2("path", { staticClass: "fill-secondary", attrs: { d: "M21.45 2.69359H9.95863L9.88979 5.59441H21.45V2.69359Z" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.19976 1.91663H2.29984C1.03451 1.91663 0.0111238 2.99464 0.0111238 4.31267L0 18.6873C0 20.0053 1.03451 21.0833 2.29984 21.0833H20.6998C21.9651 21.0833 23 20.0053 23 18.6873V6.70829C23 5.39068 21.9651 4.31267 20.6998 4.31267H11.5L9.19976 1.91663Z" } })]);
|
|
3942
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), structurePolychrome: r$1({ render: function() {
|
|
3943
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3944
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6656 15.7775H20.5497V11.8888C20.5497 11.4605 20.2107 11.1109 19.7954 11.1109H12.2543V7.22228H13.1828C13.9164 7.22228 14.5163 6.60266 14.5163 5.84611V2.37605C14.5163 1.6195 13.9164 0.999878 13.1828 0.999878H9.81719C9.08361 0.999878 8.4828 1.6195 8.4828 2.37605V5.84611C8.4828 6.60266 9.08361 7.22228 9.81719 7.22228H10.7457V11.1109H3.20459C2.78931 11.1109 2.45029 11.4605 2.45029 11.8888V15.7775H1.33438C0.600803 15.7775 0 16.3971 0 17.1537V20.6237C0 21.3803 0.600803 21.9999 1.33438 21.9999H4.69907C5.43265 21.9999 6.03345 21.3803 6.03345 20.6237V17.1537C6.03345 16.3971 5.43265 15.7775 4.69907 15.7775H3.95795V12.6668H10.7457V15.7775H9.81719C9.08361 15.7775 8.4828 16.3971 8.4828 17.1537V20.6237C8.4828 21.3803 9.08361 21.9999 9.81719 21.9999H13.1828C13.9164 21.9999 14.5163 21.3803 14.5163 20.6237V17.1537C14.5163 16.3971 13.9164 15.7775 13.1828 15.7775H12.2543V12.6668H19.0411V15.7775H18.3009C17.5664 15.7775 16.9665 16.3971 16.9665 17.1537V20.6237C16.9665 21.3803 17.5664 21.9999 18.3009 21.9999H21.6656C22.3992 21.9999 23 21.3803 23 20.6237V17.1537C23 16.3971 22.3992 15.7775 21.6656 15.7775Z" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "8.41016", y: "0.999878", width: "6.1797", height: "6.2208", rx: "1" } })]);
|
|
3945
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), viewer2dPolychrome: r$1({ render: function() {
|
|
3946
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3947
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.8093 0H0.908936V23H13.487V16.8195H22.0911V10.6239H17.8093V0ZM2.25708 6.97618V1.34814H9.70245V6.97618H8.34131L7.39822 5.33817L7.04736 5.54018L8.00586 7.20495L8.00586 7.78409L9.70245 7.78409V11.864H10.5104V7.78409H10.5104V6.97618H10.5104V1.34814H16.4611V11.9721H20.743V15.4714H12.1868V15.4591H10.0431L9.04084 13.7183L8.68998 13.9203L9.68225 15.6437V16.267H12.1388V21.6519H2.25708V16.267H7.37974V15.4591H2.25708V7.78409L5.70333 7.78409V6.97618H2.25708Z" } }), this._v(" "), t2("rect", { staticClass: "fill-secondary", attrs: { x: "4.0519", y: "18.0658", width: "6.1275", height: "2.1021" } })]);
|
|
3948
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), viewer3dPolychrome: r$1({ render: function() {
|
|
3949
|
+
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3950
|
+
return t2("g", [t2("path", { staticClass: "fill-primary", attrs: { d: "M0 6.13333L10.7333 10.4896V23L0 18.6437V6.13333Z" } }), this._v(" "), t2("path", { staticClass: "fill-primary", attrs: { d: "M23 6.13333L12.2667 10.4896V23L23 18.6437V6.13333Z" } }), this._v(" "), t2("path", { staticClass: "fill-secondary", attrs: { d: "M11.4437 0L1.53333 4.4386L11.4437 8.43333L21.4667 4.21667L11.4437 0Z" } })]);
|
|
3533
3951
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, l$1 = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
|
|
3534
3952
|
const v = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
|
|
3535
3953
|
const c$1 = r$1({ render: function() {
|
|
@@ -3540,7 +3958,7 @@ const c$1 = r$1({ render: function() {
|
|
|
3540
3958
|
e2.index++;
|
|
3541
3959
|
} } }, [r2("BIMDataIcon", { attrs: { name: "chevron", size: "s" } })], 1)], 1);
|
|
3542
3960
|
}, staticRenderFns: [] }, function(e2) {
|
|
3543
|
-
e2 && e2("data-v-
|
|
3961
|
+
e2 && e2("data-v-4dd92ffc_0", { source: ".bimdata-carousel[data-v-4dd92ffc]{--button-size:44px;position:relative}.bimdata-carousel__container[data-v-4dd92ffc]{overflow-x:hidden;margin:-28px 0;padding:28px 0}.bimdata-carousel__container__slider[data-v-4dd92ffc]{position:relative;transition:transform .5s ease-out}.bimdata-carousel__btn-next[data-v-4dd92ffc],.bimdata-carousel__btn-prev[data-v-4dd92ffc]{position:absolute;z-index:2;top:calc(50% - var(--button-size)/ 2);width:var(--button-size);height:var(--button-size);box-shadow:var(--box-shadow)}.bimdata-carousel__btn-prev[data-v-4dd92ffc]{left:calc(0px - var(--button-size)/ 2)}.bimdata-carousel__btn-next[data-v-4dd92ffc]{right:calc(0px - var(--button-size)/ 2)}", map: void 0, media: void 0 });
|
|
3544
3962
|
}, { components: { BIMDataButton: n$1, BIMDataIcon: r$1({ render: function() {
|
|
3545
3963
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3546
3964
|
return t2("svg", { class: this.classes, style: this.style, attrs: { xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 23 23", width: "100%", fill: this.fillColor, color: this.color } }, [t2("bimdata-icon-" + this.name, { tag: "component" })], 1);
|
|
@@ -3555,7 +3973,7 @@ const c$1 = r$1({ render: function() {
|
|
|
3555
3973
|
return { width: e2 + "px", minWidth: e2 + "px", height: e2 + "px", minHeight: e2 + "px", margin: "" + this.margin, transform: `rotate(${this.rotate}deg)` };
|
|
3556
3974
|
} }, methods: { getPixelSize() {
|
|
3557
3975
|
return this.customSize ? this.customSize : v[this.size];
|
|
3558
|
-
} } }, "data-v-198621a2", false, void 0, false,
|
|
3976
|
+
} } }, "data-v-198621a2", false, void 0, false, d$1, void 0, void 0) }, props: { sliderPadding: { type: Number, default: 12 }, minGap: { type: Number, default: 24 } }, data: () => ({ index: 0, maxIndex: 0, translations: [] }), watch: { minGap() {
|
|
3559
3977
|
this.distributeItems();
|
|
3560
3978
|
} }, mounted() {
|
|
3561
3979
|
this.distributeItems(), this.resizeObserver = new ResizeObserver(() => this.distributeItems()), this.resizeObserver.observe(this.$refs.slider), this.mutationObserver = new MutationObserver(() => this.distributeItems()), this.mutationObserver.observe(this.$refs.slider, { childList: true });
|
|
@@ -3568,200 +3986,35 @@ const c$1 = r$1({ render: function() {
|
|
|
3568
3986
|
if (t2.length > 0) {
|
|
3569
3987
|
const { width: r2, height: i2 } = t2[0].getBoundingClientRect();
|
|
3570
3988
|
this.$refs.slider.style.height = i2 + 2 * this.sliderPadding + "px";
|
|
3571
|
-
let
|
|
3572
|
-
|
|
3989
|
+
let d2, o2 = Math.max(Math.floor(e2 / (r2 + this.minGap)), 1), a2 = this.minGap;
|
|
3990
|
+
o2 > 1 && (a2 = (e2 - o2 * r2) / (o2 - 1));
|
|
3573
3991
|
const n2 = r2 + a2, s2 = [];
|
|
3574
3992
|
for (let e3 = 0; e3 < t2.length; e3++)
|
|
3575
|
-
|
|
3576
|
-
this.maxIndex = t2.length -
|
|
3577
|
-
}
|
|
3578
|
-
} } }, "data-v-55e9fb46", false, void 0, false, o$1, void 0, void 0);
|
|
3579
|
-
var render$8 = function() {
|
|
3580
|
-
var _vm = this;
|
|
3581
|
-
var _h = _vm.$createElement;
|
|
3582
|
-
var _c = _vm._self._c || _h;
|
|
3583
|
-
return _c("div", { staticClass: "user-avatar", class: "user-avatar--" + (_vm.user.profile_picture ? "silver-light" : _vm.color), style: {
|
|
3584
|
-
width: _vm.size + "px",
|
|
3585
|
-
height: _vm.size + "px",
|
|
3586
|
-
fontSize: (_vm.initialsSize ? _vm.initialsSize : +_vm.size * 0.382) + "px"
|
|
3587
|
-
} }, [_vm.user.profile_picture ? [_c("img", { attrs: { "src": _vm.user.profile_picture } })] : _vm.initials ? [_vm._v(" " + _vm._s(_vm.initials) + " ")] : [_c("BIMDataIcon", { attrs: { "name": "user", "size": "xs" } })]], 2);
|
|
3588
|
-
};
|
|
3589
|
-
var staticRenderFns$8 = [];
|
|
3590
|
-
var UserAvatar_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FuserAvatar_2FUserAvatar_vue_src_scoped_true_lang = "";
|
|
3591
|
-
const __vue2_script$8 = {
|
|
3592
|
-
props: {
|
|
3593
|
-
user: {
|
|
3594
|
-
type: Object,
|
|
3595
|
-
required: true
|
|
3596
|
-
},
|
|
3597
|
-
size: {
|
|
3598
|
-
type: [Number, String],
|
|
3599
|
-
default: 32,
|
|
3600
|
-
validate: (value) => value >= 32
|
|
3601
|
-
},
|
|
3602
|
-
initialsSize: {
|
|
3603
|
-
type: [Number, String]
|
|
3604
|
-
},
|
|
3605
|
-
color: {
|
|
3606
|
-
type: String,
|
|
3607
|
-
default: "primary",
|
|
3608
|
-
validate: (value) => ["primary", "secondary", "silver-light"].includes(value)
|
|
3609
|
-
}
|
|
3610
|
-
},
|
|
3611
|
-
setup(props) {
|
|
3612
|
-
const initials = computed(() => `${props.user.firstname && props.user.firstname[0] || ""}${props.user.lastname && props.user.lastname[0] || ""}`.toUpperCase());
|
|
3613
|
-
return {
|
|
3614
|
-
initials
|
|
3615
|
-
};
|
|
3993
|
+
d2 = e3 * n2, s2.push(d2), Object.assign(t2[e3].style, { position: "absolute", top: this.sliderPadding + "px", left: this.sliderPadding + d2 + "px" });
|
|
3994
|
+
this.maxIndex = Math.max(t2.length - o2, 0), this.index = Math.min(this.index, this.maxIndex), this.translations = s2;
|
|
3616
3995
|
}
|
|
3617
|
-
};
|
|
3618
|
-
const __cssModules$8 = {};
|
|
3619
|
-
var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "e5e255f0", null, null);
|
|
3620
|
-
function __vue2_injectStyles$8(context) {
|
|
3621
|
-
for (let o2 in __cssModules$8) {
|
|
3622
|
-
this[o2] = __cssModules$8[o2];
|
|
3623
|
-
}
|
|
3624
|
-
}
|
|
3625
|
-
var UserAvatar = /* @__PURE__ */ function() {
|
|
3626
|
-
return __component__$8.exports;
|
|
3627
|
-
}();
|
|
3628
|
-
var render$7 = function() {
|
|
3629
|
-
var _vm = this;
|
|
3630
|
-
var _h = _vm.$createElement;
|
|
3631
|
-
var _c = _vm._self._c || _h;
|
|
3632
|
-
return _c("div", { staticClass: "topic-comment" }, [_c("div", { staticClass: "topic-comment__header flex items-center justify-between" }, [_c("div", { staticClass: "topic-comment__header__left flex items-center" }, [_vm.comment.user ? _c("UserAvatar", { staticClass: "m-r-12", staticStyle: { "box-shadow": "var(--box-shadow)" }, attrs: { "user": _vm.comment.user, "size": "27", "initialsSize": "14", "color": "silver-light" } }) : _c("span", { staticClass: "topic-comment__header__left__user flex items-center justify-center m-r-12" }, [_c("BIMDataIcon", { attrs: { "name": "user", "size": "xxs", "fill": "", "color": "granite" } })], 1), _c("BIMDataTextbox", { attrs: { "width": "auto", "maxWidth": "150px", "cutPosition": "end", "text": _vm.comment.author } }), _c("span", { staticClass: "color-granite m-x-6" }, [_vm._v(" \u2022 ")]), _c("span", { staticClass: "color-granite" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.comment.date, "long")) + " ")])], 1), _c("div", { staticClass: "topic-comment__header__right" }, [_c("div", { staticClass: "topic-comment__header__right__actions flex" }, [_vm.showMenu ? [_c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.onOpenEdit } }, [_c("BIMDataIcon", { attrs: { "name": "edit", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.onOpenDelete } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.toggleMenu } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e(), _vm.isEditing ? [_c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.cancelUpdate } }, [_c("BIMDataIcon", { attrs: { "name": "undo", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.submitUpdate } }, [_c("BIMDataIcon", { attrs: { "name": "validate", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e()], 2), _vm.isDeleting ? _c("div", { staticClass: "topic-comment__header__right__delete p-x-12" }, [_c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.deleteCommentText")) + " ")]), _c("div", { staticClass: "flex items-center" }, [_c("BIMDataButton", { staticClass: "m-r-6", attrs: { "color": "high", "fill": "", "radius": "" }, on: { "click": _vm.submitDelete } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.deleteButton")) + " ")]), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
|
|
3633
|
-
_vm.isDeleting = false;
|
|
3634
|
-
} } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "primary" } })], 1)], 1)]) : _vm._e(), !_vm.showMenu && !_vm.isDeleting && !_vm.isEditing ? _c("BIMDataButton", { staticClass: "topic-comment__header__right__btn", attrs: { "rounded": "", "icon": "" }, on: { "click": _vm.toggleMenu } }, [_c("BIMDataIcon", { attrs: { "name": "ellipsis", "size": "l", "fill": "", "color": "granite-light" } })], 1) : _vm._e()], 1)]), _c("div", { staticClass: "topic-comment__content" }, [_c("BIMDataTextarea", { class: { editing: _vm.isEditing }, attrs: { "width": "100%", "rows": "1", "fitContent": "", "autofocus": "", "resizable": false, "readonly": !_vm.isEditing }, model: { value: _vm.text, callback: function($$v) {
|
|
3635
|
-
_vm.text = $$v;
|
|
3636
|
-
}, expression: "text" } })], 1), _vm.loading ? [_c("BIMDataLoading")] : _vm._e()], 2);
|
|
3637
|
-
};
|
|
3638
|
-
var staticRenderFns$7 = [];
|
|
3639
|
-
var TopicComment_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FbcfTopicComments_2FtopicComment_2FTopicComment_vue_src_scoped_true_lang = "";
|
|
3640
|
-
const __vue2_script$7 = {
|
|
3641
|
-
components: {
|
|
3642
|
-
BIMDataButton: c$5,
|
|
3643
|
-
BIMDataIcon: s$9,
|
|
3644
|
-
BIMDataLoading: a$4,
|
|
3645
|
-
BIMDataTextarea: s$2,
|
|
3646
|
-
BIMDataTextbox: l$3,
|
|
3647
|
-
UserAvatar
|
|
3648
|
-
},
|
|
3649
|
-
props: {
|
|
3650
|
-
project: {
|
|
3651
|
-
type: Object,
|
|
3652
|
-
required: true
|
|
3653
|
-
},
|
|
3654
|
-
bcfTopic: {
|
|
3655
|
-
type: Object,
|
|
3656
|
-
required: true
|
|
3657
|
-
},
|
|
3658
|
-
comment: {
|
|
3659
|
-
type: Object,
|
|
3660
|
-
required: true
|
|
3661
|
-
}
|
|
3662
|
-
},
|
|
3663
|
-
emits: [
|
|
3664
|
-
"comment-updated",
|
|
3665
|
-
"comment-deleted"
|
|
3666
|
-
],
|
|
3667
|
-
setup(props, { emit }) {
|
|
3668
|
-
const { deleteComment: deleteComment2, updateComment: updateComment2 } = useService();
|
|
3669
|
-
const loading = ref(false);
|
|
3670
|
-
const showMenu = ref(false);
|
|
3671
|
-
const closeMenu = () => showMenu.value = false;
|
|
3672
|
-
const toggleMenu = () => showMenu.value = !showMenu.value;
|
|
3673
|
-
const text = ref(props.comment.comment);
|
|
3674
|
-
const isEditing = ref(false);
|
|
3675
|
-
const onOpenEdit = () => {
|
|
3676
|
-
isEditing.value = true;
|
|
3677
|
-
closeMenu();
|
|
3678
|
-
};
|
|
3679
|
-
const cancelUpdate = () => {
|
|
3680
|
-
isEditing.value = false;
|
|
3681
|
-
text.value = props.comment.comment;
|
|
3682
|
-
};
|
|
3683
|
-
const submitUpdate = async () => {
|
|
3684
|
-
if (props.comment.comment !== text.value) {
|
|
3685
|
-
try {
|
|
3686
|
-
loading.value = true;
|
|
3687
|
-
const newComment = await updateComment2(props.project, props.bcfTopic, props.comment, { comment: text.value });
|
|
3688
|
-
emit("comment-updated", newComment);
|
|
3689
|
-
isEditing.value = false;
|
|
3690
|
-
} finally {
|
|
3691
|
-
loading.value = false;
|
|
3692
|
-
}
|
|
3693
|
-
}
|
|
3694
|
-
};
|
|
3695
|
-
const isDeleting = ref(false);
|
|
3696
|
-
const onOpenDelete = () => {
|
|
3697
|
-
isDeleting.value = true;
|
|
3698
|
-
closeMenu();
|
|
3699
|
-
};
|
|
3700
|
-
const submitDelete = async () => {
|
|
3701
|
-
try {
|
|
3702
|
-
loading.value = true;
|
|
3703
|
-
await deleteComment2(props.project, props.bcfTopic, props.comment);
|
|
3704
|
-
emit("comment-deleted", props.comment);
|
|
3705
|
-
isDeleting.value = false;
|
|
3706
|
-
} finally {
|
|
3707
|
-
loading.value = false;
|
|
3708
|
-
}
|
|
3709
|
-
};
|
|
3710
|
-
return {
|
|
3711
|
-
text,
|
|
3712
|
-
isDeleting,
|
|
3713
|
-
isEditing,
|
|
3714
|
-
loading,
|
|
3715
|
-
showMenu,
|
|
3716
|
-
cancelUpdate,
|
|
3717
|
-
closeMenu,
|
|
3718
|
-
onOpenDelete,
|
|
3719
|
-
onOpenEdit,
|
|
3720
|
-
submitDelete,
|
|
3721
|
-
submitUpdate,
|
|
3722
|
-
toggleMenu
|
|
3723
|
-
};
|
|
3724
|
-
}
|
|
3725
|
-
};
|
|
3726
|
-
const __cssModules$7 = {};
|
|
3727
|
-
var __component__$7 = /* @__PURE__ */ normalizeComponent(__vue2_script$7, render$7, staticRenderFns$7, false, __vue2_injectStyles$7, "47f184d0", null, null);
|
|
3728
|
-
function __vue2_injectStyles$7(context) {
|
|
3729
|
-
for (let o2 in __cssModules$7) {
|
|
3730
|
-
this[o2] = __cssModules$7[o2];
|
|
3731
|
-
}
|
|
3732
|
-
}
|
|
3733
|
-
var TopicComment = /* @__PURE__ */ function() {
|
|
3734
|
-
return __component__$7.exports;
|
|
3735
|
-
}();
|
|
3996
|
+
} } }, "data-v-4dd92ffc", false, void 0, false, d$1, void 0, void 0);
|
|
3736
3997
|
var render$6 = function() {
|
|
3737
3998
|
var _vm = this;
|
|
3738
3999
|
var _h = _vm.$createElement;
|
|
3739
4000
|
var _c = _vm._self._c || _h;
|
|
3740
|
-
return _c("div", { staticClass: "bcf-topic-
|
|
3741
|
-
_vm.
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.cancelButton")) + " ")]), _c("BIMDataButton", { attrs: { "color": "primary", "fill": "", "radius": "", "width": "135px" }, on: { "click": _vm.publishComment } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.publishButton")) + " ")])], 1)], 1)]), _c("div", { staticClass: "bcf-topic-comments__list m-t-18" }, [_c("p", { staticClass: "color-granite" }, [_vm._v(" " + _vm._s((_vm.bcfTopic.comments ? _vm.bcfTopic.comments.length : 0) + " " + _vm.$t("BcfComponents.BcfTopicComments.commentsText")) + " ")]), _vm.bcfTopic.comments && _vm.bcfTopic.comments.length ? _c("div", _vm._l(_vm.bcfTopic.comments, function(comment) {
|
|
3747
|
-
return _c("TopicComment", { key: comment.guid, attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic, "comment": comment }, on: { "comment-updated": function($event) {
|
|
3748
|
-
return _vm.$emit("comment-updated", $event);
|
|
3749
|
-
}, "comment-deleted": function($event) {
|
|
3750
|
-
return _vm.$emit("comment-deleted", $event);
|
|
3751
|
-
} } });
|
|
3752
|
-
}), 1) : _vm._e()]), _vm.loading ? [_c("BIMDataLoading")] : _vm._e()], 2);
|
|
4001
|
+
return _c("div", { staticClass: "bcf-topic-viewpoints", class: { empty: _vm.viewpoints.length === 0 } }, [_vm.bcfTopic.topic_status ? _c("div", { staticClass: "status-badge", style: {
|
|
4002
|
+
backgroundColor: "#" + _vm.statusColor,
|
|
4003
|
+
color: _vm.adjustTextColor("#" + _vm.statusColor, "#FFF", "#2F374A")
|
|
4004
|
+
} }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", [_vm._v(_vm._s(_vm.bcfTopic.topic_status))])], 1) : _vm._e(), _vm.viewpoints.length > 0 ? [_c("BIMDataCarousel", { attrs: { "sliderPadding": 0 } }, _vm._l(_vm.viewpoints, function(viewpoint) {
|
|
4005
|
+
return _c("div", { key: viewpoint.guid, staticClass: "snapshot-preview" }, [viewpoint.snapshot.snapshot_data ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshot_data } }) : _vm._e(), viewpoint.icon ? _c("BIMDataIcon", { staticClass: "icon", attrs: { "name": viewpoint.icon, "size": "xl" } }) : _vm._e()], 1);
|
|
4006
|
+
}), 0)] : [_c("BcfTopicDefaultImage", { staticClass: "default-image" })]], 2);
|
|
3753
4007
|
};
|
|
3754
4008
|
var staticRenderFns$6 = [];
|
|
3755
|
-
var
|
|
4009
|
+
var BcfTopicViewpoints_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FbcfTopicViewpoints_2FBcfTopicViewpoints_vue_src_scoped_true_lang = "";
|
|
3756
4010
|
const __vue2_script$6 = {
|
|
3757
4011
|
components: {
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
TopicComment
|
|
4012
|
+
BcfTopicDefaultImage,
|
|
4013
|
+
BIMDataCarousel: c$1,
|
|
4014
|
+
BIMDataIcon: v$2
|
|
3762
4015
|
},
|
|
3763
4016
|
props: {
|
|
3764
|
-
|
|
4017
|
+
detailedExtensions: {
|
|
3765
4018
|
type: Object,
|
|
3766
4019
|
required: true
|
|
3767
4020
|
},
|
|
@@ -3770,46 +4023,29 @@ const __vue2_script$6 = {
|
|
|
3770
4023
|
required: true
|
|
3771
4024
|
}
|
|
3772
4025
|
},
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
const
|
|
3781
|
-
const loading = ref(false);
|
|
3782
|
-
const input = ref(null);
|
|
3783
|
-
const text = ref("");
|
|
3784
|
-
watch(isOpen, () => setTimeout(() => isOpen.value && input.value.focus(), 50));
|
|
3785
|
-
const publishComment = async () => {
|
|
3786
|
-
try {
|
|
3787
|
-
loading.value = true;
|
|
3788
|
-
const newComment = await createComment2(props.project, props.bcfTopic, { comment: text.value });
|
|
3789
|
-
emit("comment-created", newComment);
|
|
3790
|
-
isOpen.value = false;
|
|
3791
|
-
text.value = "";
|
|
3792
|
-
} finally {
|
|
3793
|
-
loading.value = false;
|
|
3794
|
-
}
|
|
3795
|
-
};
|
|
4026
|
+
setup(props) {
|
|
4027
|
+
const viewpoints = computed(() => props.bcfTopic.viewpoints.filter((viewpoint) => viewpoint.snapshot).map((viewpoint) => {
|
|
4028
|
+
var _a;
|
|
4029
|
+
return __spreadProps(__spreadValues({}, viewpoint), {
|
|
4030
|
+
icon: (_a = getViewpointConfig(viewpoint)) == null ? void 0 : _a.icon
|
|
4031
|
+
});
|
|
4032
|
+
}));
|
|
4033
|
+
const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
|
|
3796
4034
|
return {
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
text,
|
|
3801
|
-
publishComment
|
|
4035
|
+
statusColor,
|
|
4036
|
+
viewpoints,
|
|
4037
|
+
adjustTextColor
|
|
3802
4038
|
};
|
|
3803
4039
|
}
|
|
3804
4040
|
};
|
|
3805
4041
|
const __cssModules$6 = {};
|
|
3806
|
-
var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "
|
|
4042
|
+
var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "6ca0f1b6", null, null);
|
|
3807
4043
|
function __vue2_injectStyles$6(context) {
|
|
3808
4044
|
for (let o2 in __cssModules$6) {
|
|
3809
4045
|
this[o2] = __cssModules$6[o2];
|
|
3810
4046
|
}
|
|
3811
4047
|
}
|
|
3812
|
-
var
|
|
4048
|
+
var BcfTopicViewpoints = /* @__PURE__ */ function() {
|
|
3813
4049
|
return __component__$6.exports;
|
|
3814
4050
|
}();
|
|
3815
4051
|
var render$5 = function() {
|
|
@@ -3826,19 +4062,12 @@ var render$5 = function() {
|
|
|
3826
4062
|
return _vm.$emit("close");
|
|
3827
4063
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e()], 2)], 2), _c("div", { staticClass: "bcf-topic-overview__content" }, [_c("div", { staticClass: "bcf-topic-overview__content__head" }, [_c("div", { staticClass: "bcf-topic-overview__content__head__index", style: {
|
|
3828
4064
|
backgroundColor: "#" + _vm.priorityColor,
|
|
3829
|
-
color: _vm.adjustTextColor("#" + _vm.priorityColor, "#
|
|
3830
|
-
} }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")])]), _c("
|
|
3831
|
-
"flex items-center justify-center": _vm.viewpointsWithSnapshot.length === 0
|
|
3832
|
-
} }, [_vm.bcfTopic.topic_status ? _c("div", { staticClass: "status-badge", style: {
|
|
3833
|
-
backgroundColor: "#" + _vm.statusColor,
|
|
3834
|
-
color: _vm.adjustTextColor("#" + _vm.statusColor, "#ffffff", "#2f374a")
|
|
3835
|
-
} }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", [_vm._v(_vm._s(_vm.bcfTopic.topic_status))])], 1) : _vm._e(), _vm.viewpointsWithSnapshot.length > 0 ? [_c("BIMDataCarousel", { attrs: { "sliderPadding": 0 } }, _vm._l(_vm.viewpointsWithSnapshot, function(viewpoint) {
|
|
3836
|
-
return _c("div", { key: viewpoint.guid, staticClass: "snapshot-preview" }, [viewpoint.snapshot.snapshot_data ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshot_data } }) : _vm._e()]);
|
|
3837
|
-
}), 0)] : [_c("BcfTopicDefaultImage", { staticClass: "default-image" })]], 2), _vm.viewerMode ? _c("BIMDataButton", { attrs: { "width": "100%", "fill": "", "radius": "", "disabled": _vm.topicComponents.length === 0 }, on: { "click": function($event) {
|
|
4065
|
+
color: _vm.adjustTextColor("#" + _vm.priorityColor, "#FFF", "#2F374A")
|
|
4066
|
+
} }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")])]), _c("BcfTopicViewpoints", { attrs: { "detailedExtensions": _vm.detailedExtensions, "bcfTopic": _vm.bcfTopic } }), _vm.viewerMode ? _c("BIMDataButton", { attrs: { "width": "100%", "fill": "", "radius": "", "disabled": _vm.topicObjects.length === 0 }, on: { "click": function($event) {
|
|
3838
4067
|
return _vm.$emit("view-components", _vm.bcfTopic);
|
|
3839
|
-
} } }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs", "margin": "0 6px 0 0" } }), _vm.
|
|
4068
|
+
} } }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs", "margin": "0 6px 0 0" } }), _vm.topicObjects.length > 0 ? [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.elements", { count: _vm.topicObjects.length })) + " ")] : [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.noElements")) + " ")]], 2) : _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
|
|
3840
4069
|
return _vm.$emit("view-bcf-topic", _vm.bcfTopic);
|
|
3841
|
-
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [!_vm.viewerMode ? _c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.elements", { count: _vm.
|
|
4070
|
+
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [!_vm.viewerMode ? _c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.elements", { count: _vm.topicObjects.length })) + " ")])], 1) : _vm._e(), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.type")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_type ? _vm.bcfTopic.topic_type : _vm.$t("BcfComponents.BcfTopicOverview.noTypeSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.description")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.description ? _vm.bcfTopic.description : _vm.$t("BcfComponents.BcfTopicOverview.noDescriptionProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.assignedTo")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to ? _vm.bcfTopic.assigned_to : _vm.$t("BcfComponents.BcfTopicOverview.notAssigned")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.dueDate")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.due_date ? _vm.$d(_vm.bcfTopic.due_date, "short") : _vm.$t("BcfComponents.BcfTopicOverview.noDueDate")) + " ")])])]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "bcf" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.informations")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.status")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_status || _vm.$t("BcfComponents.BcfTopicOverview.noStatusSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.stage")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.stage || _vm.$t("BcfComponents.BcfTopicOverview.noStageProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.priority")) + " ")]), _c("span", { staticClass: "value", style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicOverview.priorityNotDefined")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" Auteur : ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.creation_author) + " ")])]), _c("div", { staticClass: "line m-t-12" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.tags")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.topicLabels.length ? _vm.topicLabels.join(", ") : _vm.$t("BcfComponents.BcfTopicOverview.noTags")) + " ")])])]), _c("BcfTopicComments", { attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic }, on: { "comment-created": function($event) {
|
|
3842
4071
|
return _vm.$emit("comment-created", $event);
|
|
3843
4072
|
}, "comment-updated": function($event) {
|
|
3844
4073
|
return _vm.$emit("comment-updated", $event);
|
|
@@ -3858,11 +4087,11 @@ const __vue2_script$5 = {
|
|
|
3858
4087
|
components: {
|
|
3859
4088
|
BcfTopicComments,
|
|
3860
4089
|
BcfTopicDefaultImage,
|
|
4090
|
+
BcfTopicViewpoints,
|
|
3861
4091
|
BIMDataButton: c$5,
|
|
3862
|
-
|
|
3863
|
-
BIMDataIcon: s$9,
|
|
4092
|
+
BIMDataIcon: v$2,
|
|
3864
4093
|
BIMDataLoading: a$4,
|
|
3865
|
-
BIMDataSafeZoneModal:
|
|
4094
|
+
BIMDataSafeZoneModal: v$1,
|
|
3866
4095
|
BIMDataTextbox: l$3
|
|
3867
4096
|
},
|
|
3868
4097
|
props: {
|
|
@@ -3874,11 +4103,11 @@ const __vue2_script$5 = {
|
|
|
3874
4103
|
type: Object,
|
|
3875
4104
|
required: true
|
|
3876
4105
|
},
|
|
3877
|
-
|
|
4106
|
+
detailedExtensions: {
|
|
3878
4107
|
type: Object,
|
|
3879
4108
|
required: true
|
|
3880
4109
|
},
|
|
3881
|
-
|
|
4110
|
+
bcfTopic: {
|
|
3882
4111
|
type: Object,
|
|
3883
4112
|
required: true
|
|
3884
4113
|
},
|
|
@@ -3903,12 +4132,8 @@ const __vue2_script$5 = {
|
|
|
3903
4132
|
const { deleteTopic: deleteTopic2 } = useService();
|
|
3904
4133
|
const loading = ref(false);
|
|
3905
4134
|
const showDeleteModal = ref(false);
|
|
3906
|
-
const viewpointsWithSnapshot = computed(() => {
|
|
3907
|
-
return props.bcfTopic.viewpoints.filter((viewpoint) => Boolean(viewpoint.snapshot));
|
|
3908
|
-
});
|
|
3909
4135
|
const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
|
|
3910
|
-
const
|
|
3911
|
-
const topicComponents = computed(() => {
|
|
4136
|
+
const topicObjects = computed(() => {
|
|
3912
4137
|
var _a, _b;
|
|
3913
4138
|
const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
|
|
3914
4139
|
return (components2 == null ? void 0 : components2.selection) || [];
|
|
@@ -3938,17 +4163,15 @@ const __vue2_script$5 = {
|
|
|
3938
4163
|
loading,
|
|
3939
4164
|
priorityColor,
|
|
3940
4165
|
showDeleteModal,
|
|
3941
|
-
statusColor,
|
|
3942
|
-
topicComponents,
|
|
3943
4166
|
topicLabels,
|
|
3944
|
-
|
|
4167
|
+
topicObjects,
|
|
3945
4168
|
adjustTextColor,
|
|
3946
4169
|
removeTopic
|
|
3947
4170
|
};
|
|
3948
4171
|
}
|
|
3949
4172
|
};
|
|
3950
4173
|
const __cssModules$5 = {};
|
|
3951
|
-
var __component__$5 = /* @__PURE__ */ normalizeComponent(__vue2_script$5, render$5, staticRenderFns$5, false, __vue2_injectStyles$5, "
|
|
4174
|
+
var __component__$5 = /* @__PURE__ */ normalizeComponent(__vue2_script$5, render$5, staticRenderFns$5, false, __vue2_injectStyles$5, "b15c7908", null, null);
|
|
3952
4175
|
function __vue2_injectStyles$5(context) {
|
|
3953
4176
|
for (let o2 in __cssModules$5) {
|
|
3954
4177
|
this[o2] = __cssModules$5[o2];
|
|
@@ -4381,4 +4604,4 @@ const components = {
|
|
|
4381
4604
|
BcfTopicOverview,
|
|
4382
4605
|
BcfTopicsTable
|
|
4383
4606
|
};
|
|
4384
|
-
export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, getPriorityColor, getStatusColor, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
|
|
4607
|
+
export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, config, getPriorityColor, getStatusColor, getViewpointConfig, getViewpointModels, getViewpointType, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
|