@bimdata/bcf-components 1.1.0-rc.14 → 1.1.0-rc.17
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 +33 -23
- package/dist/vue2/style.css +1 -1
- package/dist/vue3/bcf-components.es.js +37 -26
- package/dist/vue3/style.css +1 -1
- package/package.json +1 -1
|
@@ -2725,7 +2725,8 @@ const __vue2_script$9 = {
|
|
|
2725
2725
|
"delete-viewpoint"
|
|
2726
2726
|
],
|
|
2727
2727
|
setup(props, { emit }) {
|
|
2728
|
-
const getViewers = inject("getViewers", () =>
|
|
2728
|
+
const getViewers = inject("getViewers", () => {
|
|
2729
|
+
});
|
|
2729
2730
|
const viewpoints = ref([]);
|
|
2730
2731
|
watch(() => props.bcfTopic, (topic) => {
|
|
2731
2732
|
viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
|
|
@@ -2740,7 +2741,7 @@ const __vue2_script$9 = {
|
|
|
2740
2741
|
emit("delete-viewpoint", viewpoint);
|
|
2741
2742
|
};
|
|
2742
2743
|
const takeSnapshots = async () => {
|
|
2743
|
-
getViewers().forEach(async (viewer) => {
|
|
2744
|
+
Object.values(getViewers()).forEach(async (viewer) => {
|
|
2744
2745
|
if (viewer) {
|
|
2745
2746
|
addViewpoint(await viewer.getViewpoint());
|
|
2746
2747
|
}
|
|
@@ -2754,7 +2755,7 @@ const __vue2_script$9 = {
|
|
|
2754
2755
|
}
|
|
2755
2756
|
};
|
|
2756
2757
|
const __cssModules$9 = {};
|
|
2757
|
-
var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "
|
|
2758
|
+
var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "417a4c34", null, null);
|
|
2758
2759
|
function __vue2_injectStyles$9(context) {
|
|
2759
2760
|
for (let o2 in __cssModules$9) {
|
|
2760
2761
|
this[o2] = __cssModules$9[o2];
|
|
@@ -2836,13 +2837,16 @@ const __vue2_script$8 = {
|
|
|
2836
2837
|
bcfTopic: {
|
|
2837
2838
|
type: Object
|
|
2838
2839
|
},
|
|
2839
|
-
|
|
2840
|
-
type: Object
|
|
2841
|
-
},
|
|
2842
|
-
annotations: {
|
|
2840
|
+
models: {
|
|
2843
2841
|
type: Array,
|
|
2844
2842
|
default: () => []
|
|
2845
2843
|
},
|
|
2844
|
+
providedComponents: {
|
|
2845
|
+
type: Object
|
|
2846
|
+
},
|
|
2847
|
+
providedPins: {
|
|
2848
|
+
type: Array
|
|
2849
|
+
},
|
|
2846
2850
|
extensions: {
|
|
2847
2851
|
type: Object,
|
|
2848
2852
|
reuiqred: true
|
|
@@ -2922,7 +2926,7 @@ const __vue2_script$8 = {
|
|
|
2922
2926
|
}
|
|
2923
2927
|
};
|
|
2924
2928
|
const submit = async () => {
|
|
2925
|
-
var _a;
|
|
2929
|
+
var _a, _b;
|
|
2926
2930
|
if (!topicTitle.value) {
|
|
2927
2931
|
hasErrorTitle.value = true;
|
|
2928
2932
|
return;
|
|
@@ -2933,12 +2937,17 @@ const __vue2_script$8 = {
|
|
|
2933
2937
|
}
|
|
2934
2938
|
try {
|
|
2935
2939
|
loading.value = true;
|
|
2936
|
-
if (props.
|
|
2937
|
-
viewpoints.value.forEach((viewpoint) => viewpoint.components = props.
|
|
2938
|
-
viewpointsToCreate.forEach((viewpoint) => viewpoint.components = props.
|
|
2940
|
+
if (props.providedComponents) {
|
|
2941
|
+
viewpoints.value.forEach((viewpoint) => viewpoint.components = props.providedComponents);
|
|
2942
|
+
viewpointsToCreate.forEach((viewpoint) => viewpoint.components = props.providedComponents);
|
|
2943
|
+
}
|
|
2944
|
+
if (props.providedPins) {
|
|
2945
|
+
viewpoints.value.forEach((viewpoint) => viewpoint.pins = props.providedPins);
|
|
2946
|
+
viewpointsToCreate.forEach((viewpoint) => viewpoint.pins = props.providedPins);
|
|
2939
2947
|
}
|
|
2940
2948
|
const data = {
|
|
2941
2949
|
guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
|
|
2950
|
+
models: ((_b = props.bcfTopic) == null ? void 0 : _b.models) || props.models,
|
|
2942
2951
|
title: topicTitle.value,
|
|
2943
2952
|
topicType: topicType.value,
|
|
2944
2953
|
priority: topicPriority.value,
|
|
@@ -2992,7 +3001,7 @@ const __vue2_script$8 = {
|
|
|
2992
3001
|
}
|
|
2993
3002
|
};
|
|
2994
3003
|
const __cssModules$8 = {};
|
|
2995
|
-
var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "
|
|
3004
|
+
var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "2aa2dac1", null, null);
|
|
2996
3005
|
function __vue2_injectStyles$8(context) {
|
|
2997
3006
|
for (let o2 in __cssModules$8) {
|
|
2998
3007
|
this[o2] = __cssModules$8[o2];
|
|
@@ -3743,9 +3752,9 @@ var render$4 = function() {
|
|
|
3743
3752
|
color: _vm.adjustColor("#" + _vm.statusColor, "#ffffff", "#2f374a")
|
|
3744
3753
|
} }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", [_vm._v(_vm._s(_vm.bcfTopic.topicStatus))])], 1) : _vm._e(), _vm.viewpointsWithSnapshot.length > 0 ? [_c("BIMDataCarousel", { attrs: { "sliderPadding": 0 } }, _vm._l(_vm.viewpointsWithSnapshot, function(viewpoint) {
|
|
3745
3754
|
return _c("div", { key: viewpoint.guid, staticClass: "snapshot-preview" }, [viewpoint.snapshot.snapshotData ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshotData } }) : _vm._e()]);
|
|
3746
|
-
}), 0)] : [_c("BcfTopicDefaultImage", { staticClass: "default-image" })]], 2), _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
|
|
3755
|
+
}), 0)] : [_c("BcfTopicDefaultImage", { staticClass: "default-image" })]], 2), !_vm.viewerMode ? _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
|
|
3747
3756
|
return _vm.$emit("view-bcf-topic", _vm.bcfTopic);
|
|
3748
|
-
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _vm.
|
|
3757
|
+
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]) : _vm._e(), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _vm.topicComponents.length > 0 ? _c("span", [_vm._v(" " + _vm._s(_vm.topicComponents.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicComponents.length ? _vm.$t("BcfComponents.BcfTopicOverview.elements") : _vm.$t("BcfComponents.BcfTopicOverview.noElements")) + " ")])], 1), _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.topicType ? _vm.bcfTopic.topicType : _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.assignedTo ? _vm.bcfTopic.assignedTo : _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.dueDate ? _vm.$d(_vm.bcfTopic.dueDate, "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.topicStatus || _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" }, [_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.creationAuthor) + " ")])]), _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) {
|
|
3749
3758
|
return _vm.$emit("comment-created", $event);
|
|
3750
3759
|
}, "comment-updated": function($event) {
|
|
3751
3760
|
return _vm.$emit("comment-updated", $event);
|
|
@@ -3773,6 +3782,10 @@ const __vue2_script$4 = {
|
|
|
3773
3782
|
BIMDataTextbox: l$2
|
|
3774
3783
|
},
|
|
3775
3784
|
props: {
|
|
3785
|
+
viewerMode: {
|
|
3786
|
+
type: Boolean,
|
|
3787
|
+
default: false
|
|
3788
|
+
},
|
|
3776
3789
|
project: {
|
|
3777
3790
|
type: Object,
|
|
3778
3791
|
required: true
|
|
@@ -3825,13 +3838,10 @@ const __vue2_script$4 = {
|
|
|
3825
3838
|
}
|
|
3826
3839
|
return DEFAULT_STATUS_COLOR;
|
|
3827
3840
|
});
|
|
3828
|
-
const
|
|
3829
|
-
var _a;
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
} else {
|
|
3833
|
-
return [];
|
|
3834
|
-
}
|
|
3841
|
+
const topicComponents = computed(() => {
|
|
3842
|
+
var _a, _b;
|
|
3843
|
+
const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
|
|
3844
|
+
return (components2 == null ? void 0 : components2.selection) || [];
|
|
3835
3845
|
});
|
|
3836
3846
|
const topicLabels = computed(() => {
|
|
3837
3847
|
var _a;
|
|
@@ -3857,7 +3867,7 @@ const __vue2_script$4 = {
|
|
|
3857
3867
|
priorityColor,
|
|
3858
3868
|
showDeleteModal,
|
|
3859
3869
|
statusColor,
|
|
3860
|
-
|
|
3870
|
+
topicComponents,
|
|
3861
3871
|
topicLabels,
|
|
3862
3872
|
viewpointsWithSnapshot,
|
|
3863
3873
|
adjustColor,
|
|
@@ -3866,7 +3876,7 @@ const __vue2_script$4 = {
|
|
|
3866
3876
|
}
|
|
3867
3877
|
};
|
|
3868
3878
|
const __cssModules$4 = {};
|
|
3869
|
-
var __component__$4 = /* @__PURE__ */ normalizeComponent(__vue2_script$4, render$4, staticRenderFns$4, false, __vue2_injectStyles$4, "
|
|
3879
|
+
var __component__$4 = /* @__PURE__ */ normalizeComponent(__vue2_script$4, render$4, staticRenderFns$4, false, __vue2_injectStyles$4, "641b59c8", null, null);
|
|
3870
3880
|
function __vue2_injectStyles$4(context) {
|
|
3871
3881
|
for (let o2 in __cssModules$4) {
|
|
3872
3882
|
this[o2] = __cssModules$4[o2];
|
package/dist/vue2/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.bcf-filters__btn-toggle[data-v-2db12d9a]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-2db12d9a]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-2db12d9a]{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-2db12d9a]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-2db12d9a]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-2db12d9a]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-2db12d9a]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-2db12d9a]{display:flex;justify-content:center}.setting-card-item[data-v-33d9bbba]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-33d9bbba]{display:flex;align-items:center}.setting-card-item__color[data-v-33d9bbba]{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-33d9bbba]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-33d9bbba]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-72c52d15]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-72c52d15]{font-weight:700}.setting-card__header__icons[data-v-72c52d15]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-72c52d15]{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-72c52d15]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-72c52d15]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-72c52d15]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-2687ba4b]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-2687ba4b]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-2687ba4b]{height:100%}.bcf-settings__content__text[data-v-2687ba4b]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-5dc331a8]{width:400px}.bcf-statistics__content[data-v-5dc331a8]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-5dc331a8]{flex:1}.bcf-statistics__content__legend[data-v-5dc331a8]{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-5dc331a8]{font-weight:700}.bcf-statistics__content__legend__item[data-v-5dc331a8]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-5dc331a8]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-5dc331a8]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-5dc331a8]{font-size:13px}.bcf-statistics__content__legend[data-v-5dc331a8] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-275da59e]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-275da59e]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-275da59e]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-275da59e]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-275da59e]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-275da59e]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-275da59e]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-275da59e]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-275da59e]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-275da59e]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-275da59e]{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-b5e56a58]{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-b5e56a58]{font-size:14px}.bcf-topic-images[data-v-6ca9dbd4]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-6ca9dbd4]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]{position:relative}.bcf-topic-images__images .image-preview img[data-v-6ca9dbd4]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-6ca9dbd4]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-6ca9dbd4]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-6ca9dbd4]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-6ca9dbd4]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-6ca9dbd4]{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-6ca9dbd4]{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-3de95244]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-3de95244]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-3de95244]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-3de95244]{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-95ae7c9a]{height:100%}.bcf-topic-form__content[data-v-95ae7c9a]{height:calc(100% - 64px - var(--spacing-unit));padding:0 calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-95ae7c9a]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-95ae7c9a],.bcf-topic-form__content__head__date[data-v-95ae7c9a]{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-95ae7c9a]{min-width:50px}.bcf-topic-form__content__head__date[data-v-95ae7c9a]{min-width:100px}.bcf-topic-form__content__actions[data-v-95ae7c9a]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-95ae7c9a]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-95ae7c9a]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-95ae7c9a] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-95ae7c9a] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-95ae7c9a]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-95ae7c9a]{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-555abc52]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-555abc52]{width:100%;height:100%}.user-avatar--primary[data-v-555abc52]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-555abc52]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-555abc52]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-4016a6b4]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-4016a6b4]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-4016a6b4]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-4016a6b4]{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-4016a6b4] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-35edf7c8]{font-weight:700}.bcf-topic-comments[data-v-35edf7c8] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-e37ec164]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-e37ec164]{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-e37ec164]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-e37ec164]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-e37ec164]{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-e37ec164]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-e37ec164],.bcf-topic-overview__content__head__date[data-v-e37ec164]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-e37ec164]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-e37ec164]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-e37ec164]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-overview__content__image .status-badge[data-v-e37ec164]{position:absolute;z-index:1;left:calc(var(--spacing-unit) / 2);top:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-e37ec164]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-e37ec164]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-e37ec164]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-e37ec164]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-e37ec164]{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-e37ec164]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-e37ec164]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-e37ec164]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4f85c962]{margin:auto}.bcf-topic-priority-cell[data-v-42770510]{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-9af43d36]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
|
|
1
|
+
.bcf-filters__btn-toggle[data-v-2db12d9a]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-2db12d9a]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-2db12d9a]{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-2db12d9a]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-2db12d9a]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-2db12d9a]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-2db12d9a]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-2db12d9a]{display:flex;justify-content:center}.setting-card-item[data-v-33d9bbba]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-33d9bbba]{display:flex;align-items:center}.setting-card-item__color[data-v-33d9bbba]{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-33d9bbba]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-33d9bbba]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-72c52d15]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-72c52d15]{font-weight:700}.setting-card__header__icons[data-v-72c52d15]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-72c52d15]{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-72c52d15]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-72c52d15]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-72c52d15]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-2687ba4b]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-2687ba4b]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-2687ba4b]{height:100%}.bcf-settings__content__text[data-v-2687ba4b]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-5dc331a8]{width:100%}.bcf-statistics__content[data-v-5dc331a8]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-5dc331a8]{flex:1}.bcf-statistics__content__legend[data-v-5dc331a8]{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-5dc331a8]{font-weight:700}.bcf-statistics__content__legend__item[data-v-5dc331a8]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-5dc331a8]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-5dc331a8]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-5dc331a8]{font-size:13px}.bcf-statistics__content__legend[data-v-5dc331a8] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-275da59e]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-275da59e]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-275da59e]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-275da59e]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-275da59e]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-275da59e]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-275da59e]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-275da59e]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-275da59e]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-275da59e]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-275da59e]{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-b5e56a58]{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-b5e56a58]{font-size:14px}.bcf-topic-images[data-v-6ca9dbd4]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-6ca9dbd4]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]{position:relative}.bcf-topic-images__images .image-preview img[data-v-6ca9dbd4]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-6ca9dbd4]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-6ca9dbd4]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-6ca9dbd4]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-6ca9dbd4]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-6ca9dbd4]{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-6ca9dbd4]{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-417a4c34]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-417a4c34]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-417a4c34]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-417a4c34]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-417a4c34]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-417a4c34]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-417a4c34]{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-2aa2dac1]{height:100%}.bcf-topic-form__content[data-v-2aa2dac1]{height:calc(100% - 64px - var(--spacing-unit));padding:0 calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-2aa2dac1]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-2aa2dac1],.bcf-topic-form__content__head__date[data-v-2aa2dac1]{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-2aa2dac1]{min-width:50px}.bcf-topic-form__content__head__date[data-v-2aa2dac1]{min-width:100px}.bcf-topic-form__content__actions[data-v-2aa2dac1]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-2aa2dac1]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-2aa2dac1]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-2aa2dac1] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-2aa2dac1] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-2aa2dac1]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-2aa2dac1]{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-555abc52]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-555abc52]{width:100%;height:100%}.user-avatar--primary[data-v-555abc52]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-555abc52]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-555abc52]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-4016a6b4]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-4016a6b4]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-4016a6b4]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-4016a6b4]{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-4016a6b4] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-35edf7c8]{font-weight:700}.bcf-topic-comments[data-v-35edf7c8] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-641b59c8]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-641b59c8]{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-641b59c8]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-641b59c8]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-641b59c8]{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-641b59c8]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-641b59c8],.bcf-topic-overview__content__head__date[data-v-641b59c8]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-641b59c8]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-641b59c8]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-641b59c8]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-overview__content__image .status-badge[data-v-641b59c8]{position:absolute;z-index:1;left:calc(var(--spacing-unit) / 2);top:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-641b59c8]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-641b59c8]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-641b59c8]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-641b59c8]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-641b59c8]{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-641b59c8]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-641b59c8]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-641b59c8]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4f85c962]{margin:auto}.bcf-topic-priority-cell[data-v-42770510]{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-9af43d36]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
|
|
@@ -2812,7 +2812,8 @@ const _sfc_main$9 = {
|
|
|
2812
2812
|
"delete-viewpoint"
|
|
2813
2813
|
],
|
|
2814
2814
|
setup(props, { emit }) {
|
|
2815
|
-
const getViewers = inject("getViewers", () =>
|
|
2815
|
+
const getViewers = inject("getViewers", () => {
|
|
2816
|
+
});
|
|
2816
2817
|
const viewpoints = ref([]);
|
|
2817
2818
|
watch(() => props.bcfTopic, (topic) => {
|
|
2818
2819
|
viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
|
|
@@ -2827,7 +2828,7 @@ const _sfc_main$9 = {
|
|
|
2827
2828
|
emit("delete-viewpoint", viewpoint);
|
|
2828
2829
|
};
|
|
2829
2830
|
const takeSnapshots = async () => {
|
|
2830
|
-
getViewers().forEach(async (viewer) => {
|
|
2831
|
+
Object.values(getViewers()).forEach(async (viewer) => {
|
|
2831
2832
|
if (viewer) {
|
|
2832
2833
|
addViewpoint(await viewer.getViewpoint());
|
|
2833
2834
|
}
|
|
@@ -2891,7 +2892,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2891
2892
|
]))
|
|
2892
2893
|
]);
|
|
2893
2894
|
}
|
|
2894
|
-
var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-
|
|
2895
|
+
var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-570bab38"]]);
|
|
2895
2896
|
var BcfTopicForm_scss_vue_type_style_index_0_src_scoped_true_lang = "";
|
|
2896
2897
|
const _sfc_main$8 = {
|
|
2897
2898
|
components: {
|
|
@@ -2922,13 +2923,16 @@ const _sfc_main$8 = {
|
|
|
2922
2923
|
bcfTopic: {
|
|
2923
2924
|
type: Object
|
|
2924
2925
|
},
|
|
2925
|
-
|
|
2926
|
-
type: Object
|
|
2927
|
-
},
|
|
2928
|
-
annotations: {
|
|
2926
|
+
models: {
|
|
2929
2927
|
type: Array,
|
|
2930
2928
|
default: () => []
|
|
2931
2929
|
},
|
|
2930
|
+
providedComponents: {
|
|
2931
|
+
type: Object
|
|
2932
|
+
},
|
|
2933
|
+
providedPins: {
|
|
2934
|
+
type: Array
|
|
2935
|
+
},
|
|
2932
2936
|
extensions: {
|
|
2933
2937
|
type: Object,
|
|
2934
2938
|
reuiqred: true
|
|
@@ -3008,7 +3012,7 @@ const _sfc_main$8 = {
|
|
|
3008
3012
|
}
|
|
3009
3013
|
};
|
|
3010
3014
|
const submit = async () => {
|
|
3011
|
-
var _a;
|
|
3015
|
+
var _a, _b;
|
|
3012
3016
|
if (!topicTitle.value) {
|
|
3013
3017
|
hasErrorTitle.value = true;
|
|
3014
3018
|
return;
|
|
@@ -3019,12 +3023,17 @@ const _sfc_main$8 = {
|
|
|
3019
3023
|
}
|
|
3020
3024
|
try {
|
|
3021
3025
|
loading.value = true;
|
|
3022
|
-
if (props.
|
|
3023
|
-
viewpoints.value.forEach((viewpoint) => viewpoint.components = props.
|
|
3024
|
-
viewpointsToCreate.forEach((viewpoint) => viewpoint.components = props.
|
|
3026
|
+
if (props.providedComponents) {
|
|
3027
|
+
viewpoints.value.forEach((viewpoint) => viewpoint.components = props.providedComponents);
|
|
3028
|
+
viewpointsToCreate.forEach((viewpoint) => viewpoint.components = props.providedComponents);
|
|
3029
|
+
}
|
|
3030
|
+
if (props.providedPins) {
|
|
3031
|
+
viewpoints.value.forEach((viewpoint) => viewpoint.pins = props.providedPins);
|
|
3032
|
+
viewpointsToCreate.forEach((viewpoint) => viewpoint.pins = props.providedPins);
|
|
3025
3033
|
}
|
|
3026
3034
|
const data = {
|
|
3027
3035
|
guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
|
|
3036
|
+
models: ((_b = props.bcfTopic) == null ? void 0 : _b.models) || props.models,
|
|
3028
3037
|
title: topicTitle.value,
|
|
3029
3038
|
topicType: topicType.value,
|
|
3030
3039
|
priority: topicPriority.value,
|
|
@@ -3275,7 +3284,7 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3275
3284
|
})) : createCommentVNode("", true)
|
|
3276
3285
|
]);
|
|
3277
3286
|
}
|
|
3278
|
-
var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$8], ["__scopeId", "data-v-
|
|
3287
|
+
var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$8], ["__scopeId", "data-v-cbd96ffe"]]);
|
|
3279
3288
|
var u = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), M$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: (n) => u.includes(n) } }, emits: ["click"], computed: { classes() {
|
|
3280
3289
|
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 };
|
|
3281
3290
|
}, style() {
|
|
@@ -4220,6 +4229,10 @@ const _sfc_main$4 = {
|
|
|
4220
4229
|
BIMDataTextbox: s$1
|
|
4221
4230
|
},
|
|
4222
4231
|
props: {
|
|
4232
|
+
viewerMode: {
|
|
4233
|
+
type: Boolean,
|
|
4234
|
+
default: false
|
|
4235
|
+
},
|
|
4223
4236
|
project: {
|
|
4224
4237
|
type: Object,
|
|
4225
4238
|
required: true
|
|
@@ -4272,13 +4285,10 @@ const _sfc_main$4 = {
|
|
|
4272
4285
|
}
|
|
4273
4286
|
return DEFAULT_STATUS_COLOR;
|
|
4274
4287
|
});
|
|
4275
|
-
const
|
|
4276
|
-
var _a;
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
} else {
|
|
4280
|
-
return [];
|
|
4281
|
-
}
|
|
4288
|
+
const topicComponents = computed(() => {
|
|
4289
|
+
var _a, _b;
|
|
4290
|
+
const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
|
|
4291
|
+
return (components2 == null ? void 0 : components2.selection) || [];
|
|
4282
4292
|
});
|
|
4283
4293
|
const topicLabels = computed(() => {
|
|
4284
4294
|
var _a;
|
|
@@ -4304,7 +4314,7 @@ const _sfc_main$4 = {
|
|
|
4304
4314
|
priorityColor,
|
|
4305
4315
|
showDeleteModal,
|
|
4306
4316
|
statusColor,
|
|
4307
|
-
|
|
4317
|
+
topicComponents,
|
|
4308
4318
|
topicLabels,
|
|
4309
4319
|
viewpointsWithSnapshot,
|
|
4310
4320
|
adjustColor,
|
|
@@ -4312,7 +4322,7 @@ const _sfc_main$4 = {
|
|
|
4312
4322
|
};
|
|
4313
4323
|
}
|
|
4314
4324
|
};
|
|
4315
|
-
const _withScopeId = (n) => (pushScopeId("data-v-
|
|
4325
|
+
const _withScopeId = (n) => (pushScopeId("data-v-e5878f68"), n = n(), popScopeId(), n);
|
|
4316
4326
|
const _hoisted_1$1 = { class: "bcf-topic-overview" };
|
|
4317
4327
|
const _hoisted_2 = { class: "bcf-topic-overview__header" };
|
|
4318
4328
|
const _hoisted_3 = { class: "bcf-topic-overview__header__title" };
|
|
@@ -4488,7 +4498,8 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4488
4498
|
class: "default-image"
|
|
4489
4499
|
}))
|
|
4490
4500
|
], 2),
|
|
4491
|
-
|
|
4501
|
+
!$props.viewerMode ? (openBlock(), createBlock(_component_BIMDataButton, {
|
|
4502
|
+
key: 0,
|
|
4492
4503
|
width: "100%",
|
|
4493
4504
|
color: "primary",
|
|
4494
4505
|
fill: "",
|
|
@@ -4499,15 +4510,15 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4499
4510
|
createTextVNode(toDisplayString(_ctx.$t("BcfComponents.BcfTopicOverview.openViewer")), 1)
|
|
4500
4511
|
]),
|
|
4501
4512
|
_: 1
|
|
4502
|
-
}),
|
|
4513
|
+
})) : createCommentVNode("", true),
|
|
4503
4514
|
createElementVNode("div", _hoisted_9, [
|
|
4504
4515
|
createElementVNode("div", _hoisted_10, [
|
|
4505
4516
|
createVNode(_component_BIMDataIcon, {
|
|
4506
4517
|
name: "model3d",
|
|
4507
4518
|
size: "xs"
|
|
4508
4519
|
}),
|
|
4509
|
-
$setup.
|
|
4510
|
-
createElementVNode("span", null, toDisplayString($setup.
|
|
4520
|
+
$setup.topicComponents.length > 0 ? (openBlock(), createElementBlock("span", _hoisted_11, toDisplayString($setup.topicComponents.length), 1)) : createCommentVNode("", true),
|
|
4521
|
+
createElementVNode("span", null, toDisplayString($setup.topicComponents.length ? _ctx.$t("BcfComponents.BcfTopicOverview.elements") : _ctx.$t("BcfComponents.BcfTopicOverview.noElements")), 1)
|
|
4511
4522
|
]),
|
|
4512
4523
|
createElementVNode("div", _hoisted_12, [
|
|
4513
4524
|
createElementVNode("span", _hoisted_13, toDisplayString(_ctx.$t("BcfComponents.BcfTopicOverview.type")), 1),
|
|
@@ -4599,7 +4610,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4599
4610
|
])) : createCommentVNode("", true)
|
|
4600
4611
|
]);
|
|
4601
4612
|
}
|
|
4602
|
-
var BcfTopicOverview = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-
|
|
4613
|
+
var BcfTopicOverview = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-e5878f68"]]);
|
|
4603
4614
|
var columnsDef = [
|
|
4604
4615
|
{
|
|
4605
4616
|
id: "index",
|
package/dist/vue3/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.bcf-filters__btn-toggle[data-v-077f83aa]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-077f83aa]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-077f83aa]{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-077f83aa]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-077f83aa]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-077f83aa]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-077f83aa]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-077f83aa]{display:flex;justify-content:center}.setting-card-item[data-v-263afb1b]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-263afb1b]{display:flex;align-items:center}.setting-card-item__color[data-v-263afb1b]{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-263afb1b]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-263afb1b]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-6b7af8f7]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-6b7af8f7]{font-weight:700}.setting-card__header__icons[data-v-6b7af8f7]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-6b7af8f7]{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-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-6b7af8f7]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-6b7af8f7]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-54aa64a7]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-54aa64a7]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-54aa64a7]{height:100%}.bcf-settings__content__text[data-v-54aa64a7]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-763cac12]{width:400px}.bcf-statistics__content[data-v-763cac12]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-763cac12]{flex:1}.bcf-statistics__content__legend[data-v-763cac12]{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-763cac12]{font-weight:700}.bcf-statistics__content__legend__item[data-v-763cac12]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-763cac12]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-763cac12]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-763cac12]{font-size:13px}.bcf-statistics__content__legend[data-v-763cac12] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-6bf8a944]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-6bf8a944]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-6bf8a944]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-6bf8a944]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-6bf8a944]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-6bf8a944]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-6bf8a944]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-6bf8a944]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-6bf8a944]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-6bf8a944]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-6bf8a944]{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-02f52cb0]{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-02f52cb0]{font-size:14px}.bcf-topic-images[data-v-428a3422]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-428a3422]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-428a3422]{position:relative}.bcf-topic-images__images .image-preview img[data-v-428a3422]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-428a3422]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-428a3422]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-428a3422]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-428a3422]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-428a3422]{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-428a3422]{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-1c93719c]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-1c93719c]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-1c93719c]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-1c93719c]{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-0f93cc73]{height:100%}.bcf-topic-form__content[data-v-0f93cc73]{height:calc(100% - 64px - var(--spacing-unit));padding:0 calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-0f93cc73]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-0f93cc73],.bcf-topic-form__content__head__date[data-v-0f93cc73]{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-0f93cc73]{min-width:50px}.bcf-topic-form__content__head__date[data-v-0f93cc73]{min-width:100px}.bcf-topic-form__content__actions[data-v-0f93cc73]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-0f93cc73]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-0f93cc73]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-0f93cc73] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-0f93cc73] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-0f93cc73]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-0f93cc73]{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-f84b809a]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-f84b809a]{width:100%;height:100%}.user-avatar--primary[data-v-f84b809a]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-f84b809a]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-f84b809a]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-b9f88f20]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-b9f88f20]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-b9f88f20]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-b9f88f20]{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-b9f88f20] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-377292f2]{font-weight:700}.bcf-topic-comments[data-v-377292f2] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-f1df5924]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-f1df5924]{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-f1df5924]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-f1df5924]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-f1df5924]{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-f1df5924]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-f1df5924],.bcf-topic-overview__content__head__date[data-v-f1df5924]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-f1df5924]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-f1df5924]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-f1df5924]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-overview__content__image .status-badge[data-v-f1df5924]{position:absolute;z-index:1;left:calc(var(--spacing-unit) / 2);top:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-f1df5924]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-f1df5924]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-f1df5924]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-f1df5924]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-f1df5924]{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-f1df5924]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-f1df5924]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-f1df5924]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4e8d8704]{margin:auto}.bcf-topic-priority-cell[data-v-4584461c]{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-ef484b2a]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
|
|
1
|
+
.bcf-filters__btn-toggle[data-v-077f83aa]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-077f83aa]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-077f83aa]{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-077f83aa]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-077f83aa]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-077f83aa]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-077f83aa]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-077f83aa]{display:flex;justify-content:center}.setting-card-item[data-v-263afb1b]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-263afb1b]{display:flex;align-items:center}.setting-card-item__color[data-v-263afb1b]{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-263afb1b]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-263afb1b]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-6b7af8f7]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-6b7af8f7]{font-weight:700}.setting-card__header__icons[data-v-6b7af8f7]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-6b7af8f7]{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-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-6b7af8f7]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-6b7af8f7]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-54aa64a7]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-54aa64a7]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-54aa64a7]{height:100%}.bcf-settings__content__text[data-v-54aa64a7]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-763cac12]{width:100%}.bcf-statistics__content[data-v-763cac12]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-763cac12]{flex:1}.bcf-statistics__content__legend[data-v-763cac12]{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-763cac12]{font-weight:700}.bcf-statistics__content__legend__item[data-v-763cac12]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-763cac12]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-763cac12]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-763cac12]{font-size:13px}.bcf-statistics__content__legend[data-v-763cac12] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-6bf8a944]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-6bf8a944]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-6bf8a944]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-6bf8a944]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-6bf8a944]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-6bf8a944]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-6bf8a944]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-6bf8a944]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-6bf8a944]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-6bf8a944]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-6bf8a944]{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-02f52cb0]{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-02f52cb0]{font-size:14px}.bcf-topic-images[data-v-428a3422]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-428a3422]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-428a3422]{position:relative}.bcf-topic-images__images .image-preview img[data-v-428a3422]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-428a3422]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-428a3422]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-428a3422]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-428a3422]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-428a3422]{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-428a3422]{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-570bab38]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-570bab38]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-570bab38]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-570bab38]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-570bab38]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-570bab38]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-570bab38]{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-cbd96ffe]{height:100%}.bcf-topic-form__content[data-v-cbd96ffe]{height:calc(100% - 64px - var(--spacing-unit));padding:0 calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-cbd96ffe]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-cbd96ffe],.bcf-topic-form__content__head__date[data-v-cbd96ffe]{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-cbd96ffe]{min-width:50px}.bcf-topic-form__content__head__date[data-v-cbd96ffe]{min-width:100px}.bcf-topic-form__content__actions[data-v-cbd96ffe]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-cbd96ffe]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-cbd96ffe]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-cbd96ffe] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-cbd96ffe] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-cbd96ffe]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-cbd96ffe]{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-f84b809a]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-f84b809a]{width:100%;height:100%}.user-avatar--primary[data-v-f84b809a]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-f84b809a]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-f84b809a]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-b9f88f20]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-b9f88f20]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-b9f88f20]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-b9f88f20]{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-b9f88f20] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-377292f2]{font-weight:700}.bcf-topic-comments[data-v-377292f2] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-e5878f68]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-e5878f68]{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-e5878f68]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-e5878f68]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-e5878f68]{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-e5878f68]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-e5878f68],.bcf-topic-overview__content__head__date[data-v-e5878f68]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-e5878f68]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-e5878f68]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-e5878f68]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-overview__content__image .status-badge[data-v-e5878f68]{position:absolute;z-index:1;left:calc(var(--spacing-unit) / 2);top:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-e5878f68]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-e5878f68]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-e5878f68]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-e5878f68]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-e5878f68]{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-e5878f68]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-e5878f68]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-e5878f68]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4e8d8704]{margin:auto}.bcf-topic-priority-cell[data-v-4584461c]{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-ef484b2a]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
|