@bimdata/bcf-components 3.0.0-rc.3 → 3.0.0-rc.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vue2/bcf-components.es.js +32 -35
- package/dist/vue2/style.css +1 -1
- package/dist/vue3/bcf-components.es.js +32 -35
- package/dist/vue3/style.css +1 -1
- package/package.json +1 -1
|
@@ -46,15 +46,15 @@ const EXTENSION_LIST_FIELDS = Object.freeze({
|
|
|
46
46
|
});
|
|
47
47
|
const DEFAULT_PRIORITY_COLOR = "D8D8D8";
|
|
48
48
|
const DEFAULT_STATUS_COLOR = "D8D8D8";
|
|
49
|
-
const VIEWPOINT_TYPE_FIELD
|
|
50
|
-
const VIEWPOINT_MODELS_FIELD
|
|
49
|
+
const VIEWPOINT_TYPE_FIELD = "originating_system";
|
|
50
|
+
const VIEWPOINT_MODELS_FIELD = "authoring_tool_id";
|
|
51
51
|
const VIEWPOINT_TYPES = Object.freeze({
|
|
52
52
|
V3D: "ifc3d",
|
|
53
53
|
V2D: "ifc2d",
|
|
54
54
|
DWG: "dwg",
|
|
55
55
|
PLAN: "plan"
|
|
56
56
|
});
|
|
57
|
-
const VIEWPOINT_CONFIG
|
|
57
|
+
const VIEWPOINT_CONFIG = Object.freeze({
|
|
58
58
|
[VIEWPOINT_TYPES.V3D]: {
|
|
59
59
|
order: 1,
|
|
60
60
|
window: "3d",
|
|
@@ -88,10 +88,10 @@ var config = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty
|
|
|
88
88
|
EXTENSION_LIST_FIELDS,
|
|
89
89
|
EXTENSION_TYPES,
|
|
90
90
|
EXTENSION_WITH_COLOR,
|
|
91
|
-
VIEWPOINT_CONFIG
|
|
92
|
-
VIEWPOINT_MODELS_FIELD
|
|
91
|
+
VIEWPOINT_CONFIG,
|
|
92
|
+
VIEWPOINT_MODELS_FIELD,
|
|
93
93
|
VIEWPOINT_TYPES,
|
|
94
|
-
VIEWPOINT_TYPE_FIELD
|
|
94
|
+
VIEWPOINT_TYPE_FIELD
|
|
95
95
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
96
96
|
let apiClient = null;
|
|
97
97
|
function setApiClient(client) {
|
|
@@ -107,25 +107,22 @@ function formatToISO(date) {
|
|
|
107
107
|
function serialize(date) {
|
|
108
108
|
return new Date(formatToISO(date));
|
|
109
109
|
}
|
|
110
|
-
function deserialize
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
function deserializeShort(date) {
|
|
110
|
+
function deserialize(date, format = "long") {
|
|
111
|
+
if (!date)
|
|
112
|
+
return "";
|
|
114
113
|
const d2 = date.toISOString().split("T")[0].split("-").reverse();
|
|
115
|
-
|
|
114
|
+
if (format === "short")
|
|
115
|
+
d2[2] = d2[2].slice(-2);
|
|
116
116
|
return d2.join("/");
|
|
117
117
|
}
|
|
118
118
|
function validateDueDate(date) {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
const today = new Date();
|
|
127
|
-
today.setHours(0, 0, 0, 0);
|
|
128
|
-
return dateObj.getTime() >= today.getTime();
|
|
119
|
+
return date.match(dateRegex) && serialize(date).getTime() >= new Date().setHours(0, 0, 0, 0);
|
|
120
|
+
}
|
|
121
|
+
function validatePastDate(date) {
|
|
122
|
+
return date.match(dateRegex) && serialize(date).getTime() <= new Date().setHours(0, 0, 0, 0);
|
|
123
|
+
}
|
|
124
|
+
function validateInterval(start, end) {
|
|
125
|
+
return start.match(dateRegex) && end.match(dateRegex) && serialize(start).getTime() <= serialize(end).getTime();
|
|
129
126
|
}
|
|
130
127
|
const EMPTY_FILTERS = {
|
|
131
128
|
priorities: [],
|
|
@@ -1139,11 +1136,11 @@ const __vue2_script$l = {
|
|
|
1139
1136
|
const labelOptions = computed(() => getSelectOptions(props.topics.flatMap((topic) => topic.labels)));
|
|
1140
1137
|
const submitFilters = () => {
|
|
1141
1138
|
if (filters.startDate && filters.endDate) {
|
|
1142
|
-
if (!
|
|
1139
|
+
if (!validatePastDate(filters.startDate)) {
|
|
1143
1140
|
hasErrorStartDate.value = true;
|
|
1144
1141
|
return;
|
|
1145
1142
|
}
|
|
1146
|
-
if (!filters.
|
|
1143
|
+
if (!validateInterval(filters.startDate, filters.endDate)) {
|
|
1147
1144
|
hasErrorEndDate.value = true;
|
|
1148
1145
|
return;
|
|
1149
1146
|
}
|
|
@@ -1181,7 +1178,7 @@ const __vue2_script$l = {
|
|
|
1181
1178
|
}
|
|
1182
1179
|
};
|
|
1183
1180
|
const __cssModules$l = {};
|
|
1184
|
-
var __component__$l = /* @__PURE__ */ normalizeComponent(__vue2_script$l, render$l, staticRenderFns$l, false, __vue2_injectStyles$l, "
|
|
1181
|
+
var __component__$l = /* @__PURE__ */ normalizeComponent(__vue2_script$l, render$l, staticRenderFns$l, false, __vue2_injectStyles$l, "bcbc0d1e", null, null);
|
|
1185
1182
|
function __vue2_injectStyles$l(context) {
|
|
1186
1183
|
for (let o2 in __cssModules$l) {
|
|
1187
1184
|
this[o2] = __cssModules$l[o2];
|
|
@@ -2914,13 +2911,13 @@ const __vue2_script$b = {
|
|
|
2914
2911
|
const getViewers = inject("getViewers", () => ({}));
|
|
2915
2912
|
const createViewpoints = async () => {
|
|
2916
2913
|
Object.entries(getViewers()).forEach(([id, viewers]) => {
|
|
2917
|
-
const [type, config2] = Object.entries(VIEWPOINT_CONFIG
|
|
2914
|
+
const [type, config2] = Object.entries(VIEWPOINT_CONFIG).find(([, c2]) => c2.plugin === id);
|
|
2918
2915
|
viewers.forEach(async (viewer) => {
|
|
2919
2916
|
const viewpoint = await viewer.getViewpoint();
|
|
2920
2917
|
const { order } = config2 != null ? config2 : {};
|
|
2921
2918
|
viewpoint.order = order;
|
|
2922
|
-
viewpoint[VIEWPOINT_TYPE_FIELD
|
|
2923
|
-
viewpoint[VIEWPOINT_MODELS_FIELD
|
|
2919
|
+
viewpoint[VIEWPOINT_TYPE_FIELD] = type;
|
|
2920
|
+
viewpoint[VIEWPOINT_MODELS_FIELD] = viewer.getLoadedModels().map((m) => m.id).join(",");
|
|
2924
2921
|
emit("add-viewpoint", viewpoint);
|
|
2925
2922
|
});
|
|
2926
2923
|
});
|
|
@@ -3094,7 +3091,7 @@ const __vue2_script$a = {
|
|
|
3094
3091
|
topicStatus.value = topic.topic_status || null;
|
|
3095
3092
|
topicStage.value = topic.stage || null;
|
|
3096
3093
|
topicAssignedTo.value = topic.assigned_to || null;
|
|
3097
|
-
topicDueDate.value =
|
|
3094
|
+
topicDueDate.value = deserialize(topic.due_date);
|
|
3098
3095
|
topicDescription.value = topic.description || "";
|
|
3099
3096
|
topicLabels.value = topic.labels || [];
|
|
3100
3097
|
viewpoints.value = topic.viewpoints || [];
|
|
@@ -3131,12 +3128,12 @@ const __vue2_script$a = {
|
|
|
3131
3128
|
}
|
|
3132
3129
|
};
|
|
3133
3130
|
const submit = async () => {
|
|
3134
|
-
var _a, _b;
|
|
3131
|
+
var _a, _b, _c;
|
|
3135
3132
|
if (!topicTitle.value) {
|
|
3136
3133
|
hasErrorTitle.value = true;
|
|
3137
3134
|
return;
|
|
3138
3135
|
}
|
|
3139
|
-
if (topicDueDate.value !== deserialize
|
|
3136
|
+
if (topicDueDate.value && topicDueDate.value !== deserialize((_a = props.topic) == null ? void 0 : _a.due_date) && !validateDueDate(topicDueDate.value)) {
|
|
3140
3137
|
hasErrorDate.value = true;
|
|
3141
3138
|
return;
|
|
3142
3139
|
}
|
|
@@ -3187,8 +3184,8 @@ const __vue2_script$a = {
|
|
|
3187
3184
|
].forEach((viewpoint) => viewpoint.pins = props.topicAnnotations);
|
|
3188
3185
|
}
|
|
3189
3186
|
const data = {
|
|
3190
|
-
guid: (
|
|
3191
|
-
models: ((
|
|
3187
|
+
guid: (_b = props.topic) == null ? void 0 : _b.guid,
|
|
3188
|
+
models: ((_c = props.topic) == null ? void 0 : _c.models) || props.topicModels,
|
|
3192
3189
|
title: topicTitle.value,
|
|
3193
3190
|
topic_type: topicType.value,
|
|
3194
3191
|
priority: topicPriority.value,
|
|
@@ -3244,7 +3241,7 @@ const __vue2_script$a = {
|
|
|
3244
3241
|
}
|
|
3245
3242
|
};
|
|
3246
3243
|
const __cssModules$a = {};
|
|
3247
|
-
var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "
|
|
3244
|
+
var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "7bcb179a", null, null);
|
|
3248
3245
|
function __vue2_injectStyles$a(context) {
|
|
3249
3246
|
for (let o2 in __cssModules$a) {
|
|
3250
3247
|
this[o2] = __cssModules$a[o2];
|
|
@@ -4553,7 +4550,7 @@ var render = function() {
|
|
|
4553
4550
|
return [_c("BIMDataTooltip", { attrs: { "text": creation_author } }, [_c("UserAvatar", { staticStyle: { "margin": "auto" }, attrs: { "user": creator || {}, "size": 30, "color": "silver-light" } })], 1)];
|
|
4554
4551
|
} }, { key: "cell-date", fn: function(ref2) {
|
|
4555
4552
|
var topic = ref2.row;
|
|
4556
|
-
return [_vm._v(" " + _vm._s(_vm.
|
|
4553
|
+
return [_vm._v(" " + _vm._s(_vm.deserialize(topic.creation_date, "short")) + " ")];
|
|
4557
4554
|
} }, { key: "cell-actions", fn: function(ref2) {
|
|
4558
4555
|
var topic = ref2.row;
|
|
4559
4556
|
return [_c("BcfTopicActionsCell", { attrs: { "topic": topic }, on: { "open-topic": function($event) {
|
|
@@ -4601,7 +4598,7 @@ const __vue2_script = {
|
|
|
4601
4598
|
const displayedColumns = computed(() => props.columns && props.columns.length > 0 ? columnsDef.filter((c2) => props.columns.includes(c2.id)) : columnsDef);
|
|
4602
4599
|
return {
|
|
4603
4600
|
displayedColumns,
|
|
4604
|
-
|
|
4601
|
+
deserialize
|
|
4605
4602
|
};
|
|
4606
4603
|
}
|
|
4607
4604
|
};
|
package/dist/vue2/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.bcf-filters__btn-toggle[data-v-059fbf3c]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-059fbf3c]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-059fbf3c]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-059fbf3c]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-059fbf3c]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-059fbf3c]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-059fbf3c]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-059fbf3c]{display:flex;justify-content:center}.setting-card-item[data-v-27af5073]{position:relative;height:37px;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit);background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center}.setting-card-item__actions[data-v-27af5073]{display:flex;align-items:center}.setting-card-item__color[data-v-27af5073]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-27af5073]{position:absolute;z-index:1;top:32px;right:calc(var(--spacing-unit) / 2)}.setting-card-item__delete-guard[data-v-27af5073]{position:absolute;right:0;width:100%;height:100%;padding:0 var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;justify-content:space-between;align-items:center;gap:var(--spacing-unit)}.setting-card[data-v-4a7000e3]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-4a7000e3]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-4a7000e3]{font-weight:700}.setting-card__header__icons[data-v-4a7000e3]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-4a7000e3]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-4a7000e3]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__form[data-v-4a7000e3]{margin-bottom:var(--spacing-unit)}.setting-card__form .actions[data-v-4a7000e3]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-84f2adee]{height:100%}.bcf-settings__header[data-v-84f2adee]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-settings__header__title[data-v-84f2adee]{flex-grow:1;font-size:1rem;font-weight:700}.bcf-settings__content[data-v-84f2adee]{height:100%}.bcf-settings__content__text[data-v-84f2adee]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-208d58fe]{width:100%}.bcf-statistics__content[data-v-208d58fe]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-208d58fe]{flex:1}.bcf-statistics__content__legend[data-v-208d58fe]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-208d58fe]{font-weight:700}.bcf-statistics__content__legend__item[data-v-208d58fe]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-208d58fe]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-208d58fe]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .count[data-v-208d58fe]{font-size:13px}.bcf-statistics__content__legend[data-v-208d58fe] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-2c575fa0]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-2c575fa0]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-2c575fa0]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-2c575fa0]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-2c575fa0]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-2c575fa0]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-2c575fa0]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-2c575fa0]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-2c575fa0]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-2c575fa0]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-2c575fa0]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-3657ee44]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-3657ee44]{font-size:14px}.bcf-topic-images[data-v-7ac6ebcf]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-7ac6ebcf]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]{position:relative}.bcf-topic-images__images .image-preview img[data-v-7ac6ebcf]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-7ac6ebcf]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-7ac6ebcf]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-7ac6ebcf]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-7ac6ebcf]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-7ac6ebcf]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-7ac6ebcf]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-f3714336]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-f3714336]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-f3714336]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-f3714336]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-f3714336]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-f3714336]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-f3714336]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-4f444265]{height:100%}.bcf-topic-form__header[data-v-4f444265]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-form__header__title[data-v-4f444265]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-form__content[data-v-4f444265]{height:calc(100% - 64px - var(--spacing-unit));padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-4f444265]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-4f444265],.bcf-topic-form__content__head__date[data-v-4f444265]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light)}.bcf-topic-form__content__head__index[data-v-4f444265]{min-width:50px}.bcf-topic-form__content__head__date[data-v-4f444265]{min-width:100px}.bcf-topic-form__content__actions[data-v-4f444265]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-4f444265]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-4f444265],.bcf-topic-form__content__actions .count-annotations[data-v-4f444265]{min-width:16px;height:16px;margin-left:var(--spacing-unit);padding:0 4px;border-radius:8px;font-size:10px;display:flex;justify-content:center;align-items:center}.bcf-topic-form__content__actions .count-objects[data-v-4f444265]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-4f444265]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-4f444265]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-4f444265] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-4f444265] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-4f444265]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-4f444265]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-42c97e31]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-42c97e31]{width:100%;height:100%}.user-avatar--primary[data-v-42c97e31]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-42c97e31]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-42c97e31]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-19b40c5a]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-19b40c5a]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-19b40c5a]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-19b40c5a]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-19b40c5a] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-19b40c5a] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-19b40c5a] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-6a37333c]{font-weight:700}.bcf-topic-comments[data-v-6a37333c] .bimdata-textarea{width:100%}.bcf-topic-viewpoints[data-v-e77b6dd4]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-viewpoints.empty[data-v-e77b6dd4]{display:flex;justify-content:center;align-items:center}.bcf-topic-viewpoints .status-badge[data-v-e77b6dd4]{position:absolute;z-index:1;top:calc(var(--spacing-unit) / 2);left:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel{height:100%}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .snapshot-preview[data-v-e77b6dd4]{position:relative;width:100%;height:100%}.bcf-topic-viewpoints .snapshot-preview img[data-v-e77b6dd4]{width:100%;height:100%;object-fit:cover}.bcf-topic-viewpoints .snapshot-preview .icon[data-v-e77b6dd4]{position:absolute;z-index:1;bottom:calc(var(--spacing-unit) / 2);right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .default-image[data-v-e77b6dd4]{width:170px;height:170px;padding:12px}.bcf-topic-overview[data-v-30237372]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-30237372]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-overview__header__title[data-v-30237372]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-30237372]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-30237372]{height:calc(100% - 32px);padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);overflow:auto;display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-overview__content__head[data-v-30237372]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-30237372],.bcf-topic-overview__content__head__date[data-v-30237372]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-30237372]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-30237372]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__card[data-v-30237372]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-30237372]{display:flex;align-items:center;gap:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.bcf-topic-overview__content__card .line .label[data-v-30237372]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .label[data-v-30237372]:after{content:":";padding:0 1px}.bcf-topic-overview__content__card .line .value[data-v-30237372]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-30237372]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-c3107ece]{margin:auto}.bcf-topic-index-cell[data-v-6837d03b]{position:relative;display:flex;justify-content:center;align-items:center}.bcf-topic-index-cell .left-stripe[data-v-6837d03b]{position:absolute;left:calc(0px - var(--spacing-unit));width:10px;height:42px}.bcf-topic-priority-cell[data-v-905e2396]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-16e3da68]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
|
|
1
|
+
.bcf-filters__btn-toggle[data-v-bcbc0d1e]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-bcbc0d1e]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-bcbc0d1e]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-bcbc0d1e]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-bcbc0d1e]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-bcbc0d1e]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-bcbc0d1e]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-bcbc0d1e]{display:flex;justify-content:center}.setting-card-item[data-v-27af5073]{position:relative;height:37px;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit);background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center}.setting-card-item__actions[data-v-27af5073]{display:flex;align-items:center}.setting-card-item__color[data-v-27af5073]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-27af5073]{position:absolute;z-index:1;top:32px;right:calc(var(--spacing-unit) / 2)}.setting-card-item__delete-guard[data-v-27af5073]{position:absolute;right:0;width:100%;height:100%;padding:0 var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;justify-content:space-between;align-items:center;gap:var(--spacing-unit)}.setting-card[data-v-4a7000e3]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-4a7000e3]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-4a7000e3]{font-weight:700}.setting-card__header__icons[data-v-4a7000e3]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-4a7000e3]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-4a7000e3]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__form[data-v-4a7000e3]{margin-bottom:var(--spacing-unit)}.setting-card__form .actions[data-v-4a7000e3]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-84f2adee]{height:100%}.bcf-settings__header[data-v-84f2adee]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-settings__header__title[data-v-84f2adee]{flex-grow:1;font-size:1rem;font-weight:700}.bcf-settings__content[data-v-84f2adee]{height:100%}.bcf-settings__content__text[data-v-84f2adee]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-208d58fe]{width:100%}.bcf-statistics__content[data-v-208d58fe]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-208d58fe]{flex:1}.bcf-statistics__content__legend[data-v-208d58fe]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-208d58fe]{font-weight:700}.bcf-statistics__content__legend__item[data-v-208d58fe]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-208d58fe]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-208d58fe]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .count[data-v-208d58fe]{font-size:13px}.bcf-statistics__content__legend[data-v-208d58fe] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-2c575fa0]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-2c575fa0]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-2c575fa0]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-2c575fa0]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-2c575fa0]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-2c575fa0]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-2c575fa0]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-2c575fa0]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-2c575fa0]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-2c575fa0]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-2c575fa0]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-3657ee44]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-3657ee44]{font-size:14px}.bcf-topic-images[data-v-7ac6ebcf]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-7ac6ebcf]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]{position:relative}.bcf-topic-images__images .image-preview img[data-v-7ac6ebcf]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-7ac6ebcf]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-7ac6ebcf]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-7ac6ebcf]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-7ac6ebcf]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-7ac6ebcf]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-7ac6ebcf]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-7ac6ebcf]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-f3714336]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-f3714336]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-f3714336]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-f3714336]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-f3714336]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-f3714336]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-f3714336]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-7bcb179a]{height:100%}.bcf-topic-form__header[data-v-7bcb179a]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-form__header__title[data-v-7bcb179a]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-form__content[data-v-7bcb179a]{height:calc(100% - 64px - var(--spacing-unit));padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-7bcb179a]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-7bcb179a],.bcf-topic-form__content__head__date[data-v-7bcb179a]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light)}.bcf-topic-form__content__head__index[data-v-7bcb179a]{min-width:50px}.bcf-topic-form__content__head__date[data-v-7bcb179a]{min-width:100px}.bcf-topic-form__content__actions[data-v-7bcb179a]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-7bcb179a]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-7bcb179a],.bcf-topic-form__content__actions .count-annotations[data-v-7bcb179a]{min-width:16px;height:16px;margin-left:var(--spacing-unit);padding:0 4px;border-radius:8px;font-size:10px;display:flex;justify-content:center;align-items:center}.bcf-topic-form__content__actions .count-objects[data-v-7bcb179a]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-7bcb179a]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-7bcb179a]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-7bcb179a] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-7bcb179a] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-7bcb179a]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-7bcb179a]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-42c97e31]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-42c97e31]{width:100%;height:100%}.user-avatar--primary[data-v-42c97e31]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-42c97e31]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-42c97e31]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-19b40c5a]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-19b40c5a]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-19b40c5a]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-19b40c5a]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-19b40c5a] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-19b40c5a] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-19b40c5a] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-6a37333c]{font-weight:700}.bcf-topic-comments[data-v-6a37333c] .bimdata-textarea{width:100%}.bcf-topic-viewpoints[data-v-e77b6dd4]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-viewpoints.empty[data-v-e77b6dd4]{display:flex;justify-content:center;align-items:center}.bcf-topic-viewpoints .status-badge[data-v-e77b6dd4]{position:absolute;z-index:1;top:calc(var(--spacing-unit) / 2);left:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel{height:100%}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-e77b6dd4] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .snapshot-preview[data-v-e77b6dd4]{position:relative;width:100%;height:100%}.bcf-topic-viewpoints .snapshot-preview img[data-v-e77b6dd4]{width:100%;height:100%;object-fit:cover}.bcf-topic-viewpoints .snapshot-preview .icon[data-v-e77b6dd4]{position:absolute;z-index:1;bottom:calc(var(--spacing-unit) / 2);right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .default-image[data-v-e77b6dd4]{width:170px;height:170px;padding:12px}.bcf-topic-overview[data-v-30237372]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-30237372]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-overview__header__title[data-v-30237372]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-30237372]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-30237372]{height:calc(100% - 32px);padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);overflow:auto;display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-overview__content__head[data-v-30237372]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-30237372],.bcf-topic-overview__content__head__date[data-v-30237372]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-30237372]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-30237372]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__card[data-v-30237372]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-30237372]{display:flex;align-items:center;gap:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.bcf-topic-overview__content__card .line .label[data-v-30237372]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .label[data-v-30237372]:after{content:":";padding:0 1px}.bcf-topic-overview__content__card .line .value[data-v-30237372]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-30237372]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-c3107ece]{margin:auto}.bcf-topic-index-cell[data-v-6837d03b]{position:relative;display:flex;justify-content:center;align-items:center}.bcf-topic-index-cell .left-stripe[data-v-6837d03b]{position:absolute;left:calc(0px - var(--spacing-unit));width:10px;height:42px}.bcf-topic-priority-cell[data-v-905e2396]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-16e3da68]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
|
|
@@ -46,15 +46,15 @@ const EXTENSION_LIST_FIELDS = Object.freeze({
|
|
|
46
46
|
});
|
|
47
47
|
const DEFAULT_PRIORITY_COLOR = "D8D8D8";
|
|
48
48
|
const DEFAULT_STATUS_COLOR = "D8D8D8";
|
|
49
|
-
const VIEWPOINT_TYPE_FIELD
|
|
50
|
-
const VIEWPOINT_MODELS_FIELD
|
|
49
|
+
const VIEWPOINT_TYPE_FIELD = "originating_system";
|
|
50
|
+
const VIEWPOINT_MODELS_FIELD = "authoring_tool_id";
|
|
51
51
|
const VIEWPOINT_TYPES = Object.freeze({
|
|
52
52
|
V3D: "ifc3d",
|
|
53
53
|
V2D: "ifc2d",
|
|
54
54
|
DWG: "dwg",
|
|
55
55
|
PLAN: "plan"
|
|
56
56
|
});
|
|
57
|
-
const VIEWPOINT_CONFIG
|
|
57
|
+
const VIEWPOINT_CONFIG = Object.freeze({
|
|
58
58
|
[VIEWPOINT_TYPES.V3D]: {
|
|
59
59
|
order: 1,
|
|
60
60
|
window: "3d",
|
|
@@ -88,10 +88,10 @@ var config = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty
|
|
|
88
88
|
EXTENSION_LIST_FIELDS,
|
|
89
89
|
EXTENSION_TYPES,
|
|
90
90
|
EXTENSION_WITH_COLOR,
|
|
91
|
-
VIEWPOINT_CONFIG
|
|
92
|
-
VIEWPOINT_MODELS_FIELD
|
|
91
|
+
VIEWPOINT_CONFIG,
|
|
92
|
+
VIEWPOINT_MODELS_FIELD,
|
|
93
93
|
VIEWPOINT_TYPES,
|
|
94
|
-
VIEWPOINT_TYPE_FIELD
|
|
94
|
+
VIEWPOINT_TYPE_FIELD
|
|
95
95
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
96
96
|
let apiClient = null;
|
|
97
97
|
function setApiClient(client) {
|
|
@@ -107,25 +107,22 @@ function formatToISO(date) {
|
|
|
107
107
|
function serialize(date) {
|
|
108
108
|
return new Date(formatToISO(date));
|
|
109
109
|
}
|
|
110
|
-
function deserialize
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
function deserializeShort(date) {
|
|
110
|
+
function deserialize(date, format = "long") {
|
|
111
|
+
if (!date)
|
|
112
|
+
return "";
|
|
114
113
|
const d2 = date.toISOString().split("T")[0].split("-").reverse();
|
|
115
|
-
|
|
114
|
+
if (format === "short")
|
|
115
|
+
d2[2] = d2[2].slice(-2);
|
|
116
116
|
return d2.join("/");
|
|
117
117
|
}
|
|
118
118
|
function validateDueDate(date) {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
const today = new Date();
|
|
127
|
-
today.setHours(0, 0, 0, 0);
|
|
128
|
-
return dateObj.getTime() >= today.getTime();
|
|
119
|
+
return date.match(dateRegex) && serialize(date).getTime() >= new Date().setHours(0, 0, 0, 0);
|
|
120
|
+
}
|
|
121
|
+
function validatePastDate(date) {
|
|
122
|
+
return date.match(dateRegex) && serialize(date).getTime() <= new Date().setHours(0, 0, 0, 0);
|
|
123
|
+
}
|
|
124
|
+
function validateInterval(start, end) {
|
|
125
|
+
return start.match(dateRegex) && end.match(dateRegex) && serialize(start).getTime() <= serialize(end).getTime();
|
|
129
126
|
}
|
|
130
127
|
const EMPTY_FILTERS = {
|
|
131
128
|
priorities: [],
|
|
@@ -950,11 +947,11 @@ const _sfc_main$l = {
|
|
|
950
947
|
const labelOptions = computed(() => getSelectOptions(props.topics.flatMap((topic) => topic.labels)));
|
|
951
948
|
const submitFilters = () => {
|
|
952
949
|
if (filters.startDate && filters.endDate) {
|
|
953
|
-
if (!
|
|
950
|
+
if (!validatePastDate(filters.startDate)) {
|
|
954
951
|
hasErrorStartDate.value = true;
|
|
955
952
|
return;
|
|
956
953
|
}
|
|
957
|
-
if (!filters.
|
|
954
|
+
if (!validateInterval(filters.startDate, filters.endDate)) {
|
|
958
955
|
hasErrorEndDate.value = true;
|
|
959
956
|
return;
|
|
960
957
|
}
|
|
@@ -1161,7 +1158,7 @@ function _sfc_render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1161
1158
|
[_directive_click_away, $setup.close]
|
|
1162
1159
|
]);
|
|
1163
1160
|
}
|
|
1164
|
-
var BcfFilters = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["render", _sfc_render$l], ["__scopeId", "data-v-
|
|
1161
|
+
var BcfFilters = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["render", _sfc_render$l], ["__scopeId", "data-v-9db9a2da"]]);
|
|
1165
1162
|
const colors = Object.freeze({
|
|
1166
1163
|
bisque: "ffe4c4",
|
|
1167
1164
|
orange: "ffa500",
|
|
@@ -2979,13 +2976,13 @@ const _sfc_main$b = {
|
|
|
2979
2976
|
const getViewers = inject("getViewers", () => ({}));
|
|
2980
2977
|
const createViewpoints = async () => {
|
|
2981
2978
|
Object.entries(getViewers()).forEach(([id, viewers]) => {
|
|
2982
|
-
const [type, config2] = Object.entries(VIEWPOINT_CONFIG
|
|
2979
|
+
const [type, config2] = Object.entries(VIEWPOINT_CONFIG).find(([, c2]) => c2.plugin === id);
|
|
2983
2980
|
viewers.forEach(async (viewer) => {
|
|
2984
2981
|
const viewpoint = await viewer.getViewpoint();
|
|
2985
2982
|
const { order } = config2 != null ? config2 : {};
|
|
2986
2983
|
viewpoint.order = order;
|
|
2987
|
-
viewpoint[VIEWPOINT_TYPE_FIELD
|
|
2988
|
-
viewpoint[VIEWPOINT_MODELS_FIELD
|
|
2984
|
+
viewpoint[VIEWPOINT_TYPE_FIELD] = type;
|
|
2985
|
+
viewpoint[VIEWPOINT_MODELS_FIELD] = viewer.getLoadedModels().map((m2) => m2.id).join(",");
|
|
2989
2986
|
emit("add-viewpoint", viewpoint);
|
|
2990
2987
|
});
|
|
2991
2988
|
});
|
|
@@ -3154,7 +3151,7 @@ const _sfc_main$a = {
|
|
|
3154
3151
|
topicStatus.value = topic.topic_status || null;
|
|
3155
3152
|
topicStage.value = topic.stage || null;
|
|
3156
3153
|
topicAssignedTo.value = topic.assigned_to || null;
|
|
3157
|
-
topicDueDate.value =
|
|
3154
|
+
topicDueDate.value = deserialize(topic.due_date);
|
|
3158
3155
|
topicDescription.value = topic.description || "";
|
|
3159
3156
|
topicLabels.value = topic.labels || [];
|
|
3160
3157
|
viewpoints.value = topic.viewpoints || [];
|
|
@@ -3191,12 +3188,12 @@ const _sfc_main$a = {
|
|
|
3191
3188
|
}
|
|
3192
3189
|
};
|
|
3193
3190
|
const submit = async () => {
|
|
3194
|
-
var _a, _b;
|
|
3191
|
+
var _a, _b, _c;
|
|
3195
3192
|
if (!topicTitle.value) {
|
|
3196
3193
|
hasErrorTitle.value = true;
|
|
3197
3194
|
return;
|
|
3198
3195
|
}
|
|
3199
|
-
if (topicDueDate.value !== deserialize
|
|
3196
|
+
if (topicDueDate.value && topicDueDate.value !== deserialize((_a = props.topic) == null ? void 0 : _a.due_date) && !validateDueDate(topicDueDate.value)) {
|
|
3200
3197
|
hasErrorDate.value = true;
|
|
3201
3198
|
return;
|
|
3202
3199
|
}
|
|
@@ -3247,8 +3244,8 @@ const _sfc_main$a = {
|
|
|
3247
3244
|
].forEach((viewpoint) => viewpoint.pins = props.topicAnnotations);
|
|
3248
3245
|
}
|
|
3249
3246
|
const data = {
|
|
3250
|
-
guid: (
|
|
3251
|
-
models: ((
|
|
3247
|
+
guid: (_b = props.topic) == null ? void 0 : _b.guid,
|
|
3248
|
+
models: ((_c = props.topic) == null ? void 0 : _c.models) || props.topicModels,
|
|
3252
3249
|
title: topicTitle.value,
|
|
3253
3250
|
topic_type: topicType.value,
|
|
3254
3251
|
priority: topicPriority.value,
|
|
@@ -3571,7 +3568,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3571
3568
|
})) : createCommentVNode("", true)
|
|
3572
3569
|
]);
|
|
3573
3570
|
}
|
|
3574
|
-
var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a], ["__scopeId", "data-v-
|
|
3571
|
+
var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a], ["__scopeId", "data-v-1730a89a"]]);
|
|
3575
3572
|
var UserAvatar_scss_vue_type_style_index_0_src_scoped_true_lang = "";
|
|
3576
3573
|
const _sfc_main$9 = {
|
|
3577
3574
|
props: {
|
|
@@ -5322,7 +5319,7 @@ const _sfc_main = {
|
|
|
5322
5319
|
const displayedColumns = computed(() => props.columns && props.columns.length > 0 ? columnsDef.filter((c2) => props.columns.includes(c2.id)) : columnsDef);
|
|
5323
5320
|
return {
|
|
5324
5321
|
displayedColumns,
|
|
5325
|
-
|
|
5322
|
+
deserialize
|
|
5326
5323
|
};
|
|
5327
5324
|
}
|
|
5328
5325
|
};
|
|
@@ -5386,7 +5383,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5386
5383
|
}, 1032, ["text"])
|
|
5387
5384
|
]),
|
|
5388
5385
|
"cell-date": withCtx(({ row: topic }) => [
|
|
5389
|
-
createTextVNode(toDisplayString($setup.
|
|
5386
|
+
createTextVNode(toDisplayString($setup.deserialize(topic.creation_date, "short")), 1)
|
|
5390
5387
|
]),
|
|
5391
5388
|
"cell-actions": withCtx(({ row: topic }) => [
|
|
5392
5389
|
createVNode(_component_BcfTopicActionsCell, {
|
package/dist/vue3/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.bcf-filters__btn-toggle[data-v-e000a500]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-e000a500]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-e000a500]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-e000a500]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-e000a500]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-e000a500]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-e000a500]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-e000a500]{display:flex;justify-content:center}.setting-card-item[data-v-a9deb2b6]{position:relative;height:37px;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit);background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center}.setting-card-item__actions[data-v-a9deb2b6]{display:flex;align-items:center}.setting-card-item__color[data-v-a9deb2b6]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-a9deb2b6]{position:absolute;z-index:1;top:32px;right:calc(var(--spacing-unit) / 2)}.setting-card-item__delete-guard[data-v-a9deb2b6]{position:absolute;right:0;width:100%;height:100%;padding:0 var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;justify-content:space-between;align-items:center;gap:var(--spacing-unit)}.setting-card[data-v-0bce1c62]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-0bce1c62]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-0bce1c62]{font-weight:700}.setting-card__header__icons[data-v-0bce1c62]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-0bce1c62]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-0bce1c62]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__form[data-v-0bce1c62]{margin-bottom:var(--spacing-unit)}.setting-card__form .actions[data-v-0bce1c62]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-dfd18f26]{height:100%}.bcf-settings__header[data-v-dfd18f26]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-settings__header__title[data-v-dfd18f26]{flex-grow:1;font-size:1rem;font-weight:700}.bcf-settings__content[data-v-dfd18f26]{height:100%}.bcf-settings__content__text[data-v-dfd18f26]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-7c6a2464]{width:100%}.bcf-statistics__content[data-v-7c6a2464]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-7c6a2464]{flex:1}.bcf-statistics__content__legend[data-v-7c6a2464]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-7c6a2464]{font-weight:700}.bcf-statistics__content__legend__item[data-v-7c6a2464]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-7c6a2464]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-7c6a2464]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .count[data-v-7c6a2464]{font-size:13px}.bcf-statistics__content__legend[data-v-7c6a2464] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-87360a50]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-87360a50]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-87360a50]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-87360a50]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-87360a50]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-87360a50]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-87360a50]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-87360a50]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-87360a50]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-87360a50]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-87360a50]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-39056820]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-39056820]{font-size:14px}.bcf-topic-images[data-v-16bc201a]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-16bc201a]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-16bc201a]{position:relative}.bcf-topic-images__images .image-preview img[data-v-16bc201a]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-16bc201a]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-16bc201a]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-16bc201a]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-16bc201a]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-16bc201a]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-16bc201a]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-16bc201a]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-16bc201a]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-16bc201a]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-16bc201a]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-0623c701]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-0623c701]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-0623c701]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-0623c701]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-0623c701]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-0623c701]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-0623c701]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-5f5aca36]{height:100%}.bcf-topic-form__header[data-v-5f5aca36]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-form__header__title[data-v-5f5aca36]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-form__content[data-v-5f5aca36]{height:calc(100% - 64px - var(--spacing-unit));padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-5f5aca36]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-5f5aca36],.bcf-topic-form__content__head__date[data-v-5f5aca36]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light)}.bcf-topic-form__content__head__index[data-v-5f5aca36]{min-width:50px}.bcf-topic-form__content__head__date[data-v-5f5aca36]{min-width:100px}.bcf-topic-form__content__actions[data-v-5f5aca36]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-5f5aca36]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-5f5aca36],.bcf-topic-form__content__actions .count-annotations[data-v-5f5aca36]{min-width:16px;height:16px;margin-left:var(--spacing-unit);padding:0 4px;border-radius:8px;font-size:10px;display:flex;justify-content:center;align-items:center}.bcf-topic-form__content__actions .count-objects[data-v-5f5aca36]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-5f5aca36]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-5f5aca36]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-5f5aca36] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-5f5aca36] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-5f5aca36]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-5f5aca36]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-42c97e31]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-42c97e31]{width:100%;height:100%}.user-avatar--primary[data-v-42c97e31]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-42c97e31]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-42c97e31]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-85242c76]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-85242c76]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-85242c76]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-85242c76]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-85242c76] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-85242c76] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-85242c76] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-0d88f174]{font-weight:700}.bcf-topic-comments[data-v-0d88f174] .bimdata-textarea{width:100%}.bcf-topic-viewpoints[data-v-759a0d56]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-viewpoints.empty[data-v-759a0d56]{display:flex;justify-content:center;align-items:center}.bcf-topic-viewpoints .status-badge[data-v-759a0d56]{position:absolute;z-index:1;top:calc(var(--spacing-unit) / 2);left:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel{height:100%}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .snapshot-preview[data-v-759a0d56]{position:relative;width:100%;height:100%}.bcf-topic-viewpoints .snapshot-preview img[data-v-759a0d56]{width:100%;height:100%;object-fit:cover}.bcf-topic-viewpoints .snapshot-preview .icon[data-v-759a0d56]{position:absolute;z-index:1;bottom:calc(var(--spacing-unit) / 2);right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .default-image[data-v-759a0d56]{width:170px;height:170px;padding:12px}.bcf-topic-overview[data-v-d7d09324]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-d7d09324]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-overview__header__title[data-v-d7d09324]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-d7d09324]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-d7d09324]{height:calc(100% - 32px);padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);overflow:auto;display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-overview__content__head[data-v-d7d09324]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-d7d09324],.bcf-topic-overview__content__head__date[data-v-d7d09324]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-d7d09324]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-d7d09324]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__card[data-v-d7d09324]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-d7d09324]{display:flex;align-items:center;gap:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.bcf-topic-overview__content__card .line .label[data-v-d7d09324]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .label[data-v-d7d09324]:after{content:":";padding:0 1px}.bcf-topic-overview__content__card .line .value[data-v-d7d09324]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-d7d09324]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-5fbc1b71]{margin:auto}.bcf-topic-index-cell[data-v-6837d03b]{position:relative;display:flex;justify-content:center;align-items:center}.bcf-topic-index-cell .left-stripe[data-v-6837d03b]{position:absolute;left:calc(0px - var(--spacing-unit));width:10px;height:42px}.bcf-topic-priority-cell[data-v-905e2396]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-16e3da68]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
|
|
1
|
+
.bcf-filters__btn-toggle[data-v-9db9a2da]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-9db9a2da]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-9db9a2da]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-9db9a2da]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-9db9a2da]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-9db9a2da]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-9db9a2da]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-9db9a2da]{display:flex;justify-content:center}.setting-card-item[data-v-a9deb2b6]{position:relative;height:37px;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit);background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center}.setting-card-item__actions[data-v-a9deb2b6]{display:flex;align-items:center}.setting-card-item__color[data-v-a9deb2b6]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-a9deb2b6]{position:absolute;z-index:1;top:32px;right:calc(var(--spacing-unit) / 2)}.setting-card-item__delete-guard[data-v-a9deb2b6]{position:absolute;right:0;width:100%;height:100%;padding:0 var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;justify-content:space-between;align-items:center;gap:var(--spacing-unit)}.setting-card[data-v-0bce1c62]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-0bce1c62]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-0bce1c62]{font-weight:700}.setting-card__header__icons[data-v-0bce1c62]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-0bce1c62]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-0bce1c62]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__form[data-v-0bce1c62]{margin-bottom:var(--spacing-unit)}.setting-card__form .actions[data-v-0bce1c62]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-dfd18f26]{height:100%}.bcf-settings__header[data-v-dfd18f26]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-settings__header__title[data-v-dfd18f26]{flex-grow:1;font-size:1rem;font-weight:700}.bcf-settings__content[data-v-dfd18f26]{height:100%}.bcf-settings__content__text[data-v-dfd18f26]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-7c6a2464]{width:100%}.bcf-statistics__content[data-v-7c6a2464]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-7c6a2464]{flex:1}.bcf-statistics__content__legend[data-v-7c6a2464]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-7c6a2464]{font-weight:700}.bcf-statistics__content__legend__item[data-v-7c6a2464]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-7c6a2464]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-7c6a2464]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .count[data-v-7c6a2464]{font-size:13px}.bcf-statistics__content__legend[data-v-7c6a2464] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-87360a50]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-87360a50]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-87360a50]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-87360a50]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-87360a50]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-87360a50]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-87360a50]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-87360a50]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-87360a50]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-87360a50]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-87360a50]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-39056820]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-39056820]{font-size:14px}.bcf-topic-images[data-v-16bc201a]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-16bc201a]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-16bc201a]{position:relative}.bcf-topic-images__images .image-preview img[data-v-16bc201a]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-16bc201a]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-16bc201a]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-16bc201a]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-16bc201a]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-16bc201a]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-16bc201a]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-16bc201a]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-16bc201a]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-16bc201a]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-16bc201a]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-0623c701]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-0623c701]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-0623c701]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-0623c701]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-0623c701]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-0623c701]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-0623c701]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-1730a89a]{height:100%}.bcf-topic-form__header[data-v-1730a89a]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-form__header__title[data-v-1730a89a]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-form__content[data-v-1730a89a]{height:calc(100% - 64px - var(--spacing-unit));padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-1730a89a]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-1730a89a],.bcf-topic-form__content__head__date[data-v-1730a89a]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light)}.bcf-topic-form__content__head__index[data-v-1730a89a]{min-width:50px}.bcf-topic-form__content__head__date[data-v-1730a89a]{min-width:100px}.bcf-topic-form__content__actions[data-v-1730a89a]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-1730a89a]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-1730a89a],.bcf-topic-form__content__actions .count-annotations[data-v-1730a89a]{min-width:16px;height:16px;margin-left:var(--spacing-unit);padding:0 4px;border-radius:8px;font-size:10px;display:flex;justify-content:center;align-items:center}.bcf-topic-form__content__actions .count-objects[data-v-1730a89a]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-1730a89a]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-1730a89a]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-1730a89a] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-1730a89a] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-1730a89a]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-1730a89a]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-42c97e31]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-42c97e31]{width:100%;height:100%}.user-avatar--primary[data-v-42c97e31]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-42c97e31]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-42c97e31]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-85242c76]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-85242c76]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-85242c76]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-85242c76]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-85242c76] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-85242c76] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-85242c76] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-0d88f174]{font-weight:700}.bcf-topic-comments[data-v-0d88f174] .bimdata-textarea{width:100%}.bcf-topic-viewpoints[data-v-759a0d56]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-viewpoints.empty[data-v-759a0d56]{display:flex;justify-content:center;align-items:center}.bcf-topic-viewpoints .status-badge[data-v-759a0d56]{position:absolute;z-index:1;top:calc(var(--spacing-unit) / 2);left:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel{height:100%}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-759a0d56] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .snapshot-preview[data-v-759a0d56]{position:relative;width:100%;height:100%}.bcf-topic-viewpoints .snapshot-preview img[data-v-759a0d56]{width:100%;height:100%;object-fit:cover}.bcf-topic-viewpoints .snapshot-preview .icon[data-v-759a0d56]{position:absolute;z-index:1;bottom:calc(var(--spacing-unit) / 2);right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .default-image[data-v-759a0d56]{width:170px;height:170px;padding:12px}.bcf-topic-overview[data-v-d7d09324]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-d7d09324]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-overview__header__title[data-v-d7d09324]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-d7d09324]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-d7d09324]{height:calc(100% - 32px);padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);overflow:auto;display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-overview__content__head[data-v-d7d09324]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-d7d09324],.bcf-topic-overview__content__head__date[data-v-d7d09324]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-d7d09324]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-d7d09324]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__card[data-v-d7d09324]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-d7d09324]{display:flex;align-items:center;gap:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.bcf-topic-overview__content__card .line .label[data-v-d7d09324]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .label[data-v-d7d09324]:after{content:":";padding:0 1px}.bcf-topic-overview__content__card .line .value[data-v-d7d09324]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-d7d09324]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-5fbc1b71]{margin:auto}.bcf-topic-index-cell[data-v-6837d03b]{position:relative;display:flex;justify-content:center;align-items:center}.bcf-topic-index-cell .left-stripe[data-v-6837d03b]{position:absolute;left:calc(0px - var(--spacing-unit));width:10px;height:42px}.bcf-topic-priority-cell[data-v-905e2396]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-16e3da68]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
|