@bimdata/bcf-components 1.1.0-rc.21 → 1.1.0-rc.24

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.
@@ -1848,6 +1848,14 @@ function __vue2_injectStyles$f(context) {
1848
1848
  var BcfStatistics = /* @__PURE__ */ function() {
1849
1849
  return __component__$f.exports;
1850
1850
  }();
1851
+ function getPriorityColor(topic, detailedExtensions) {
1852
+ const priorityDetail = detailedExtensions.priorities.find((p2) => p2.priority === topic.priority);
1853
+ return (priorityDetail == null ? void 0 : priorityDetail.color) || DEFAULT_PRIORITY_COLOR;
1854
+ }
1855
+ function getStatusColor(topic, detailedExtensions) {
1856
+ const statusDetail = detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === topic.topicStatus);
1857
+ return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
1858
+ }
1851
1859
  var t$6 = { props: { width: { type: String, default: "100%" }, minWidth: { type: String }, maxWidth: { type: String }, text: { type: String, default: "" }, cutPosition: { type: String, default: "middle", validator: (t2) => ["start", "middle", "end"].includes(t2) }, tooltip: { type: Boolean, default: true }, tooltipPosition: { type: String, default: "bottom", validator: (t2) => ["top", "right", "bottom", "left"].includes(t2) }, tooltipColor: { type: String, default: "primary", validator: (t2) => ["white", "primary", "secondary", "granite-light", "silver-light"].includes(t2) } }, data: () => ({ showTooltip: false, isOverflowing: false, textHead: "", textTail: "" }), watch: { width: "computeText", text: "computeText", cutPosition: "computeText" }, mounted() {
1852
1860
  this.observer = new ResizeObserver(() => this.computeText()), this.observer.observe(this.$refs.textBox), this.computeText();
1853
1861
  }, beforeUnmount() {
@@ -1966,24 +1974,8 @@ const __vue2_script$d = {
1966
1974
  const viewpointsWithSnapshot = computed(() => {
1967
1975
  return props.bcfTopic.viewpoints.filter((viewpoint) => Boolean(viewpoint.snapshot));
1968
1976
  });
1969
- const priorityColor = computed(() => {
1970
- if (props.bcfTopic.priority) {
1971
- const priorityDetail = props.detailedExtensions.priorities.find((p2) => p2.priority === props.bcfTopic.priority);
1972
- if (priorityDetail && priorityDetail.color) {
1973
- return priorityDetail.color;
1974
- }
1975
- }
1976
- return DEFAULT_PRIORITY_COLOR;
1977
- });
1978
- const statusColor = computed(() => {
1979
- if (props.bcfTopic.topicStatus) {
1980
- const statusDetail = props.detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === props.bcfTopic.topicStatus);
1981
- if (statusDetail && statusDetail.color) {
1982
- return statusDetail.color;
1983
- }
1984
- }
1985
- return DEFAULT_STATUS_COLOR;
1986
- });
1977
+ const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
1978
+ const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
1987
1979
  const topicElements = computed(() => {
1988
1980
  var _a;
1989
1981
  if (props.bcfTopic.components && props.bcfTopic.components.length > 0 && ((_a = props.bcfTopic.components[0]) == null ? void 0 : _a.selection)) {
@@ -2002,7 +1994,7 @@ const __vue2_script$d = {
2002
1994
  }
2003
1995
  };
2004
1996
  const __cssModules$d = {};
2005
- var __component__$d = /* @__PURE__ */ normalizeComponent(__vue2_script$d, render$d, staticRenderFns$d, false, __vue2_injectStyles$d, "ecce3b12", null, null);
1997
+ var __component__$d = /* @__PURE__ */ normalizeComponent(__vue2_script$d, render$d, staticRenderFns$d, false, __vue2_injectStyles$d, "7e55712c", null, null);
2006
1998
  function __vue2_injectStyles$d(context) {
2007
1999
  for (let o2 in __cssModules$d) {
2008
2000
  this[o2] = __cssModules$d[o2];
@@ -2710,19 +2702,16 @@ const __vue2_script$a = {
2710
2702
  BIMDataIcon: s$9
2711
2703
  },
2712
2704
  props: {
2713
- bcfTopic: {
2714
- type: Object
2705
+ viewpoints: {
2706
+ type: Array,
2707
+ default: () => []
2715
2708
  }
2716
2709
  },
2717
2710
  emits: [
2718
- "add-image",
2711
+ "add-viewpoint",
2719
2712
  "delete-viewpoint"
2720
2713
  ],
2721
- setup(props, { emit }) {
2722
- const viewpoints = ref([]);
2723
- watch(() => props.bcfTopic, (topic) => {
2724
- viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
2725
- }, { immediate: true });
2714
+ setup(_, { emit }) {
2726
2715
  const addImage = (event) => {
2727
2716
  [...event.target.files].forEach((file) => {
2728
2717
  const reader = new FileReader();
@@ -2733,26 +2722,22 @@ const __vue2_script$a = {
2733
2722
  snapshotData: reader.result
2734
2723
  }
2735
2724
  };
2736
- viewpoints.value.push(viewpoint);
2737
- emit("add-image", viewpoint);
2725
+ emit("add-viewpoint", viewpoint);
2738
2726
  });
2739
2727
  reader.readAsDataURL(file);
2740
2728
  });
2741
2729
  };
2742
2730
  const deleteViewpoint2 = (viewpoint) => {
2743
- let index = viewpoints.value.indexOf(viewpoint);
2744
- viewpoints.value.splice(index, 1);
2745
2731
  emit("delete-viewpoint", viewpoint);
2746
2732
  };
2747
2733
  return {
2748
- viewpoints,
2749
2734
  addImage,
2750
2735
  deleteViewpoint: deleteViewpoint2
2751
2736
  };
2752
2737
  }
2753
2738
  };
2754
2739
  const __cssModules$a = {};
2755
- var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "6ca9dbd4", null, null);
2740
+ var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "203feea2", null, null);
2756
2741
  function __vue2_injectStyles$a(context) {
2757
2742
  for (let o2 in __cssModules$a) {
2758
2743
  this[o2] = __cssModules$a[o2];
@@ -2779,28 +2764,22 @@ const __vue2_script$9 = {
2779
2764
  BIMDataIcon: s$9
2780
2765
  },
2781
2766
  props: {
2782
- bcfTopic: {
2783
- type: Object
2767
+ viewpoints: {
2768
+ type: Array,
2769
+ default: () => []
2784
2770
  }
2785
2771
  },
2786
2772
  emits: [
2787
2773
  "add-viewpoint",
2788
2774
  "delete-viewpoint"
2789
2775
  ],
2790
- setup(props, { emit }) {
2776
+ setup(_, { emit }) {
2791
2777
  const getViewers = inject("getViewers", () => {
2792
2778
  });
2793
- const viewpoints = ref([]);
2794
- watch(() => props.bcfTopic, (topic) => {
2795
- viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
2796
- }, { immediate: true });
2797
2779
  const addViewpoint = (viewpoint) => {
2798
- viewpoints.value.push(viewpoint);
2799
2780
  emit("add-viewpoint", viewpoint);
2800
2781
  };
2801
2782
  const deleteViewpoint2 = (viewpoint) => {
2802
- let index = viewpoints.value.indexOf(viewpoint);
2803
- viewpoints.value.splice(index, 1);
2804
2783
  emit("delete-viewpoint", viewpoint);
2805
2784
  };
2806
2785
  const takeSnapshots = async () => {
@@ -2811,14 +2790,13 @@ const __vue2_script$9 = {
2811
2790
  });
2812
2791
  };
2813
2792
  return {
2814
- viewpoints,
2815
2793
  deleteViewpoint: deleteViewpoint2,
2816
2794
  takeSnapshots
2817
2795
  };
2818
2796
  }
2819
2797
  };
2820
2798
  const __cssModules$9 = {};
2821
- var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "c9f862a4", null, null);
2799
+ var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "37d61702", null, null);
2822
2800
  function __vue2_injectStyles$9(context) {
2823
2801
  for (let o2 in __cssModules$9) {
2824
2802
  this[o2] = __cssModules$9[o2];
@@ -2831,11 +2809,11 @@ var render$8 = function() {
2831
2809
  var _vm = this;
2832
2810
  var _h = _vm.$createElement;
2833
2811
  var _c = _vm._self._c || _h;
2834
- return _c("div", { staticClass: "bcf-topic-form" }, [_c("div", { staticClass: "bcf-topic-form__content" }, [_c("div", { staticClass: "bcf-topic-form__content__head" }, [_c("div", { staticClass: "bcf-topic-form__content__head__index" }, [_vm._v(" " + _vm._s(_vm.isCreation ? _vm.nextIndex : _vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-form__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.isCreation ? new Date() : _vm.bcfTopic.creationDate, "short")) + " ")])]), _vm.viewerMode ? [_c("BcfTopicSnapshots", { attrs: { "bcfTopic": _vm.bcfTopic }, on: { "add-viewpoint": _vm.addViewpoint, "delete-viewpoint": _vm.delViewpoint } }), _c("div", { staticClass: "bcf-topic-form__content__actions" }, [_c("BIMDataButton", { attrs: { "fill": "", "radius": "" }, on: { "click": function($event) {
2812
+ return _c("div", { staticClass: "bcf-topic-form" }, [_c("div", { staticClass: "bcf-topic-form__content" }, [_c("div", { staticClass: "bcf-topic-form__content__head" }, [_c("div", { staticClass: "bcf-topic-form__content__head__index" }, [_vm._v(" " + _vm._s(_vm.isCreation ? _vm.nextIndex : _vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-form__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.isCreation ? new Date() : _vm.bcfTopic.creationDate, "short")) + " ")])]), _vm.viewerMode ? [_c("BcfTopicSnapshots", { attrs: { "viewpoints": _vm.viewpointsToDisplay }, on: { "add-viewpoint": _vm.addViewpoint, "delete-viewpoint": _vm.delViewpoint } }), _c("div", { staticClass: "bcf-topic-form__content__actions" }, [_c("BIMDataButton", { attrs: { "fill": "", "radius": "" }, on: { "click": function($event) {
2835
2813
  return _vm.$emit("add-components", _vm.bcfTopic);
2836
2814
  } } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }), _vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.addObjectButton")) + " ")], 1), _c("BIMDataTooltip", { attrs: { "disabled": _vm.viewpointsToDisplay.length > 0, "text": _vm.$t("BcfComponents.BcfTopicForm.annotationButtonTooltip"), "color": "granite-light" } }, [_c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "", "disabled": _vm.viewpointsToDisplay.length === 0 }, on: { "click": function($event) {
2837
2815
  return _vm.$emit("add-pins", _vm.bcfTopic);
2838
- } } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }), _vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.addAnnotationButton")) + " ")], 1)], 1)], 1)] : [_c("BcfTopicImages", { attrs: { "bcfTopic": _vm.bcfTopic }, on: { "add-image": _vm.addViewpoint, "delete-viewpoint": _vm.delViewpoint } })], _c("div", { staticClass: "bcf-topic-form__content__body" }, [_c("BIMDataInput", { attrs: { "placeholder": _vm.$t("BcfComponents.BcfTopicForm.titlePlaceholder"), "error": _vm.hasErrorTitle, "errorMessage": _vm.$t("BcfComponents.BcfTopicForm.titleErrorMessage") }, on: { "keyup": function($event) {
2816
+ } } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }), _vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.addAnnotationButton")) + " ")], 1)], 1)], 1)] : [_c("BcfTopicImages", { attrs: { "viewpoints": _vm.viewpointsToDisplay }, on: { "add-viewpoint": _vm.addViewpoint, "delete-viewpoint": _vm.delViewpoint } })], _c("div", { staticClass: "bcf-topic-form__content__body" }, [_c("BIMDataInput", { attrs: { "placeholder": _vm.$t("BcfComponents.BcfTopicForm.titlePlaceholder"), "error": _vm.hasErrorTitle, "errorMessage": _vm.$t("BcfComponents.BcfTopicForm.titleErrorMessage") }, on: { "keyup": function($event) {
2839
2817
  if (!$event.type.indexOf("key") && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
2840
2818
  return null;
2841
2819
  }
@@ -2945,7 +2923,7 @@ const __vue2_script$8 = {
2945
2923
  const viewpointsToCreate = ref([]);
2946
2924
  const viewpointsToUpdate = ref([]);
2947
2925
  const viewpointsToDelete = ref([]);
2948
- const viewpointsToDisplay = computed(() => viewpoints.value.filter((v2) => v2.snapshot).concat(viewpointsToCreate.value));
2926
+ const viewpointsToDisplay = computed(() => viewpoints.value.concat(viewpointsToCreate.value).filter((v2) => v2.snapshot));
2949
2927
  const loading = ref(false);
2950
2928
  const isOpenModal = ref(false);
2951
2929
  const hasErrorTitle = ref(false);
@@ -2975,6 +2953,9 @@ const __vue2_script$8 = {
2975
2953
  topicDescription.value = "";
2976
2954
  topicLabels.value = [];
2977
2955
  viewpoints.value = [];
2956
+ viewpointsToCreate.value = [];
2957
+ viewpointsToUpdate.value = [];
2958
+ viewpointsToDelete.value = [];
2978
2959
  loading.value = false;
2979
2960
  isOpenModal.value = false;
2980
2961
  hasErrorTitle.value = false;
@@ -3074,7 +3055,7 @@ const __vue2_script$8 = {
3074
3055
  }
3075
3056
  };
3076
3057
  const __cssModules$8 = {};
3077
- var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "6babe16d", null, null);
3058
+ var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "592048f1", null, null);
3078
3059
  function __vue2_injectStyles$8(context) {
3079
3060
  for (let o2 in __cssModules$8) {
3080
3061
  this[o2] = __cssModules$8[o2];
@@ -4186,7 +4167,7 @@ var render$2 = function() {
4186
4167
  var _vm = this;
4187
4168
  var _h = _vm.$createElement;
4188
4169
  var _c = _vm._self._c || _h;
4189
- return _c("span", { staticClass: "bcf-topic-priority-cell", style: { color: _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicPriorityCell.noPriority")) + " ")]);
4170
+ return _c("span", { staticClass: "bcf-topic-priority-cell", style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicPriorityCell.noPriority")) + " ")]);
4190
4171
  };
4191
4172
  var staticRenderFns$2 = [];
4192
4173
  var BcfTopicPriorityCell_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicsTable_2FbcfTopicPriorityCell_2FBcfTopicPriorityCell_vue_src_scoped_true_lang = "";
@@ -4202,22 +4183,14 @@ const __vue2_script$2 = {
4202
4183
  }
4203
4184
  },
4204
4185
  setup(props) {
4205
- const priorityColor = computed(() => {
4206
- if (props.bcfTopic.priority) {
4207
- const priorityDetail = props.detailedExtensions.priorities.find((priority) => priority.priority === props.bcfTopic.priority);
4208
- if (priorityDetail == null ? void 0 : priorityDetail.color) {
4209
- return `#${priorityDetail.color}`;
4210
- }
4211
- }
4212
- return `#${DEFAULT_PRIORITY_COLOR}`;
4213
- });
4186
+ const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
4214
4187
  return {
4215
4188
  priorityColor
4216
4189
  };
4217
4190
  }
4218
4191
  };
4219
4192
  const __cssModules$2 = {};
4220
- var __component__$2 = /* @__PURE__ */ normalizeComponent(__vue2_script$2, render$2, staticRenderFns$2, false, __vue2_injectStyles$2, "42770510", null, null);
4193
+ var __component__$2 = /* @__PURE__ */ normalizeComponent(__vue2_script$2, render$2, staticRenderFns$2, false, __vue2_injectStyles$2, "ef38ad94", null, null);
4221
4194
  function __vue2_injectStyles$2(context) {
4222
4195
  for (let o2 in __cssModules$2) {
4223
4196
  this[o2] = __cssModules$2[o2];
@@ -4231,7 +4204,7 @@ var render$1 = function() {
4231
4204
  var _h = _vm.$createElement;
4232
4205
  var _c = _vm._self._c || _h;
4233
4206
  return _c("span", { staticClass: "bcf-topic-status-cell", style: {
4234
- backgroundColor: _vm.statusColor,
4207
+ backgroundColor: "#" + _vm.statusColor,
4235
4208
  color: _vm.adjustTextColor(_vm.statusColor, "#ffffff", "var(--color-text)")
4236
4209
  } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topicStatus) + " ")]);
4237
4210
  };
@@ -4249,15 +4222,7 @@ const __vue2_script$1 = {
4249
4222
  }
4250
4223
  },
4251
4224
  setup(props) {
4252
- const statusColor = computed(() => {
4253
- if (props.bcfTopic.topicStatus) {
4254
- const statusDetail = props.detailedExtensions.topicStatuses.find((status) => status.topicStatus === props.bcfTopic.topicStatus);
4255
- if (statusDetail == null ? void 0 : statusDetail.color) {
4256
- return `#${statusDetail.color}`;
4257
- }
4258
- }
4259
- return `#${DEFAULT_STATUS_COLOR}`;
4260
- });
4225
+ const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
4261
4226
  return {
4262
4227
  statusColor,
4263
4228
  adjustTextColor
@@ -4265,7 +4230,7 @@ const __vue2_script$1 = {
4265
4230
  }
4266
4231
  };
4267
4232
  const __cssModules$1 = {};
4268
- var __component__$1 = /* @__PURE__ */ normalizeComponent(__vue2_script$1, render$1, staticRenderFns$1, false, __vue2_injectStyles$1, "1d4ce5a6", null, null);
4233
+ var __component__$1 = /* @__PURE__ */ normalizeComponent(__vue2_script$1, render$1, staticRenderFns$1, false, __vue2_injectStyles$1, "26d68c1e", null, null);
4269
4234
  function __vue2_injectStyles$1(context) {
4270
4235
  for (let o2 in __cssModules$1) {
4271
4236
  this[o2] = __cssModules$1[o2];
@@ -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-cb6da68e]{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-cb6da68e]{display:flex;align-items:center}.setting-card-item__color[data-v-cb6da68e]{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-cb6da68e]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-cb6da68e]{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-ecce3b12]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-ecce3b12]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-ecce3b12]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-ecce3b12]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-ecce3b12]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-ecce3b12]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-ecce3b12]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-ecce3b12]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-ecce3b12]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-ecce3b12]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-ecce3b12]{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-c9f862a4]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-c9f862a4]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-c9f862a4]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-c9f862a4]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-c9f862a4]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-c9f862a4]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-c9f862a4]{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-6babe16d]{height:100%}.bcf-topic-form__content[data-v-6babe16d]{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-6babe16d]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-6babe16d],.bcf-topic-form__content__head__date[data-v-6babe16d]{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-6babe16d]{min-width:50px}.bcf-topic-form__content__head__date[data-v-6babe16d]{min-width:100px}.bcf-topic-form__content__actions[data-v-6babe16d]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-6babe16d]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-6babe16d]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-6babe16d] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-6babe16d] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-6babe16d]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-6babe16d]{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-54a9835a]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-54a9835a]{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-54a9835a]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-54a9835a]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-54a9835a]{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-54a9835a]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-54a9835a],.bcf-topic-overview__content__head__date[data-v-54a9835a]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-54a9835a]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-54a9835a]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-54a9835a]{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-54a9835a]{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-54a9835a] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-54a9835a] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-54a9835a] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-54a9835a] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-54a9835a] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-54a9835a]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-54a9835a]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-54a9835a]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-54a9835a]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-54a9835a]{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-54a9835a]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-54a9835a]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-54a9835a]{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-1d4ce5a6]{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-cb6da68e]{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-cb6da68e]{display:flex;align-items:center}.setting-card-item__color[data-v-cb6da68e]{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-cb6da68e]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-cb6da68e]{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-7e55712c]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-7e55712c]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-7e55712c]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-7e55712c]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-7e55712c]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-7e55712c]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-7e55712c]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-7e55712c]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-7e55712c]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-7e55712c]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-7e55712c]{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-203feea2]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-203feea2]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-203feea2]{position:relative}.bcf-topic-images__images .image-preview img[data-v-203feea2]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-203feea2]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-203feea2]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-203feea2]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-203feea2]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-203feea2]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-203feea2]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-203feea2]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-203feea2]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-203feea2]{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-203feea2]{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-37d61702]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-37d61702]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-37d61702]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-37d61702]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-37d61702]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-37d61702]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-37d61702]{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-592048f1]{height:100%}.bcf-topic-form__content[data-v-592048f1]{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-592048f1]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-592048f1],.bcf-topic-form__content__head__date[data-v-592048f1]{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-592048f1]{min-width:50px}.bcf-topic-form__content__head__date[data-v-592048f1]{min-width:100px}.bcf-topic-form__content__actions[data-v-592048f1]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-592048f1]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-592048f1]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-592048f1] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-592048f1] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-592048f1]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-592048f1]{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-54a9835a]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-54a9835a]{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-54a9835a]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-54a9835a]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-54a9835a]{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-54a9835a]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-54a9835a],.bcf-topic-overview__content__head__date[data-v-54a9835a]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-54a9835a]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-54a9835a]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-54a9835a]{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-54a9835a]{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-54a9835a] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-54a9835a] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-54a9835a] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-54a9835a] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-54a9835a] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-54a9835a]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-54a9835a]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-54a9835a]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-54a9835a]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-54a9835a]{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-54a9835a]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-54a9835a]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-54a9835a]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4f85c962]{margin:auto}.bcf-topic-priority-cell[data-v-ef38ad94]{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-26d68c1e]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
@@ -1907,6 +1907,14 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
1907
1907
  ]);
1908
1908
  }
1909
1909
  var BcfStatistics = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$f], ["__scopeId", "data-v-763cac12"]]);
1910
+ function getPriorityColor(topic, detailedExtensions) {
1911
+ const priorityDetail = detailedExtensions.priorities.find((p2) => p2.priority === topic.priority);
1912
+ return (priorityDetail == null ? void 0 : priorityDetail.color) || DEFAULT_PRIORITY_COLOR;
1913
+ }
1914
+ function getStatusColor(topic, detailedExtensions) {
1915
+ const statusDetail = detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === topic.topicStatus);
1916
+ return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
1917
+ }
1910
1918
  var s$1 = { props: { width: { type: String, default: "100%" }, minWidth: { type: String }, maxWidth: { type: String }, text: { type: String, default: "" }, cutPosition: { type: String, default: "middle", validator: (t) => ["start", "middle", "end"].includes(t) }, tooltip: { type: Boolean, default: true }, tooltipPosition: { type: String, default: "bottom", validator: (t) => ["top", "right", "bottom", "left"].includes(t) }, tooltipColor: { type: String, default: "primary", validator: (t) => ["white", "primary", "secondary", "granite-light", "silver-light"].includes(t) } }, data: () => ({ showTooltip: false, isOverflowing: false, textHead: "", textTail: "" }), watch: { width: "computeText", text: "computeText", cutPosition: "computeText" }, mounted() {
1911
1919
  this.observer = new ResizeObserver(() => this.computeText()), this.observer.observe(this.$refs.textBox), this.computeText();
1912
1920
  }, beforeUnmount() {
@@ -1969,24 +1977,8 @@ const _sfc_main$d = {
1969
1977
  const viewpointsWithSnapshot = computed(() => {
1970
1978
  return props.bcfTopic.viewpoints.filter((viewpoint) => Boolean(viewpoint.snapshot));
1971
1979
  });
1972
- const priorityColor = computed(() => {
1973
- if (props.bcfTopic.priority) {
1974
- const priorityDetail = props.detailedExtensions.priorities.find((p2) => p2.priority === props.bcfTopic.priority);
1975
- if (priorityDetail && priorityDetail.color) {
1976
- return priorityDetail.color;
1977
- }
1978
- }
1979
- return DEFAULT_PRIORITY_COLOR;
1980
- });
1981
- const statusColor = computed(() => {
1982
- if (props.bcfTopic.topicStatus) {
1983
- const statusDetail = props.detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === props.bcfTopic.topicStatus);
1984
- if (statusDetail && statusDetail.color) {
1985
- return statusDetail.color;
1986
- }
1987
- }
1988
- return DEFAULT_STATUS_COLOR;
1989
- });
1980
+ const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
1981
+ const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
1990
1982
  const topicElements = computed(() => {
1991
1983
  var _a;
1992
1984
  if (props.bcfTopic.components && props.bcfTopic.components.length > 0 && ((_a = props.bcfTopic.components[0]) == null ? void 0 : _a.selection)) {
@@ -2109,7 +2101,7 @@ function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
2109
2101
  ])
2110
2102
  ]);
2111
2103
  }
2112
- var BcfTopicCard = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["render", _sfc_render$d], ["__scopeId", "data-v-78b211f2"]]);
2104
+ var BcfTopicCard = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["render", _sfc_render$d], ["__scopeId", "data-v-482756ae"]]);
2113
2105
  const _sfc_main$c = {};
2114
2106
  const _hoisted_1$9 = {
2115
2107
  width: "66",
@@ -2674,19 +2666,16 @@ const _sfc_main$a = {
2674
2666
  BIMDataIcon: ol$1
2675
2667
  },
2676
2668
  props: {
2677
- bcfTopic: {
2678
- type: Object
2669
+ viewpoints: {
2670
+ type: Array,
2671
+ default: () => []
2679
2672
  }
2680
2673
  },
2681
2674
  emits: [
2682
- "add-image",
2675
+ "add-viewpoint",
2683
2676
  "delete-viewpoint"
2684
2677
  ],
2685
- setup(props, { emit }) {
2686
- const viewpoints = ref([]);
2687
- watch(() => props.bcfTopic, (topic) => {
2688
- viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
2689
- }, { immediate: true });
2678
+ setup(_2, { emit }) {
2690
2679
  const addImage = (event) => {
2691
2680
  [...event.target.files].forEach((file) => {
2692
2681
  const reader = new FileReader();
@@ -2697,19 +2686,15 @@ const _sfc_main$a = {
2697
2686
  snapshotData: reader.result
2698
2687
  }
2699
2688
  };
2700
- viewpoints.value.push(viewpoint);
2701
- emit("add-image", viewpoint);
2689
+ emit("add-viewpoint", viewpoint);
2702
2690
  });
2703
2691
  reader.readAsDataURL(file);
2704
2692
  });
2705
2693
  };
2706
2694
  const deleteViewpoint2 = (viewpoint) => {
2707
- let index = viewpoints.value.indexOf(viewpoint);
2708
- viewpoints.value.splice(index, 1);
2709
2695
  emit("delete-viewpoint", viewpoint);
2710
2696
  };
2711
2697
  return {
2712
- viewpoints,
2713
2698
  addImage,
2714
2699
  deleteViewpoint: deleteViewpoint2
2715
2700
  };
@@ -2730,11 +2715,11 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
2730
2715
  const _component_BIMDataIcon = resolveComponent("BIMDataIcon");
2731
2716
  const _component_BIMDataButton = resolveComponent("BIMDataButton");
2732
2717
  return openBlock(), createElementBlock("div", _hoisted_1$7, [
2733
- $setup.viewpoints.length > 0 ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
2718
+ $props.viewpoints.length > 0 ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
2734
2719
  createElementVNode("div", _hoisted_2$5, [
2735
- (openBlock(true), createElementBlock(Fragment, null, renderList($setup.viewpoints.slice(0, 4), (viewpoint, i2) => {
2720
+ (openBlock(true), createElementBlock(Fragment, null, renderList($props.viewpoints.slice(0, 4), (viewpoint, i2) => {
2736
2721
  return openBlock(), createElementBlock("div", {
2737
- class: normalizeClass(["image-preview", { single: $setup.viewpoints.length === 1 }]),
2722
+ class: normalizeClass(["image-preview", { single: $props.viewpoints.length === 1 }]),
2738
2723
  key: viewpoint.guid || i2
2739
2724
  }, [
2740
2725
  viewpoint.snapshot.snapshotData ? (openBlock(), createElementBlock("img", {
@@ -2762,7 +2747,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
2762
2747
  }), 128))
2763
2748
  ]),
2764
2749
  createVNode(_component_BIMDataButton, {
2765
- disabled: $setup.viewpoints.length >= 4,
2750
+ disabled: $props.viewpoints.length >= 4,
2766
2751
  class: "btn-upload",
2767
2752
  width: "100%",
2768
2753
  color: "primary",
@@ -2779,7 +2764,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
2779
2764
  createTextVNode(" " + toDisplayString(_ctx.$t("BcfComponents.BcfTopicForm.addPictureButton")), 1)
2780
2765
  ]),
2781
2766
  createElementVNode("input", {
2782
- disabled: $setup.viewpoints.length >= 4,
2767
+ disabled: $props.viewpoints.length >= 4,
2783
2768
  hidden: "",
2784
2769
  id: "files",
2785
2770
  type: "file",
@@ -2819,7 +2804,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
2819
2804
  ]))
2820
2805
  ]);
2821
2806
  }
2822
- var BcfTopicImages = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a], ["__scopeId", "data-v-428a3422"]]);
2807
+ var BcfTopicImages = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a], ["__scopeId", "data-v-29b59353"]]);
2823
2808
  var BcfTopicSnapshots_scss_vue_type_style_index_0_src_scoped_true_lang = "";
2824
2809
  const _sfc_main$9 = {
2825
2810
  components: {
@@ -2827,28 +2812,22 @@ const _sfc_main$9 = {
2827
2812
  BIMDataIcon: ol$1
2828
2813
  },
2829
2814
  props: {
2830
- bcfTopic: {
2831
- type: Object
2815
+ viewpoints: {
2816
+ type: Array,
2817
+ default: () => []
2832
2818
  }
2833
2819
  },
2834
2820
  emits: [
2835
2821
  "add-viewpoint",
2836
2822
  "delete-viewpoint"
2837
2823
  ],
2838
- setup(props, { emit }) {
2824
+ setup(_2, { emit }) {
2839
2825
  const getViewers = inject("getViewers", () => {
2840
2826
  });
2841
- const viewpoints = ref([]);
2842
- watch(() => props.bcfTopic, (topic) => {
2843
- viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
2844
- }, { immediate: true });
2845
2827
  const addViewpoint = (viewpoint) => {
2846
- viewpoints.value.push(viewpoint);
2847
2828
  emit("add-viewpoint", viewpoint);
2848
2829
  };
2849
2830
  const deleteViewpoint2 = (viewpoint) => {
2850
- let index = viewpoints.value.indexOf(viewpoint);
2851
- viewpoints.value.splice(index, 1);
2852
2831
  emit("delete-viewpoint", viewpoint);
2853
2832
  };
2854
2833
  const takeSnapshots = async () => {
@@ -2859,7 +2838,6 @@ const _sfc_main$9 = {
2859
2838
  });
2860
2839
  };
2861
2840
  return {
2862
- viewpoints,
2863
2841
  deleteViewpoint: deleteViewpoint2,
2864
2842
  takeSnapshots
2865
2843
  };
@@ -2875,10 +2853,10 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
2875
2853
  const _component_BIMDataIcon = resolveComponent("BIMDataIcon");
2876
2854
  const _component_BIMDataButton = resolveComponent("BIMDataButton");
2877
2855
  return openBlock(), createElementBlock("div", _hoisted_1$6, [
2878
- $setup.viewpoints.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_2$4, [
2879
- (openBlock(true), createElementBlock(Fragment, null, renderList($setup.viewpoints.slice(0, 4), (viewpoint, i2) => {
2856
+ $props.viewpoints.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_2$4, [
2857
+ (openBlock(true), createElementBlock(Fragment, null, renderList($props.viewpoints.slice(0, 4), (viewpoint, i2) => {
2880
2858
  return openBlock(), createElementBlock("div", {
2881
- class: normalizeClass(["snapshot-preview", { single: $setup.viewpoints.length === 1 }]),
2859
+ class: normalizeClass(["snapshot-preview", { single: $props.viewpoints.length === 1 }]),
2882
2860
  key: viewpoint.guid || i2
2883
2861
  }, [
2884
2862
  viewpoint.snapshot.snapshotData ? (openBlock(), createElementBlock("img", {
@@ -2916,7 +2894,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
2916
2894
  ]))
2917
2895
  ]);
2918
2896
  }
2919
- var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-6dfe3d1c"]]);
2897
+ var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-7e063fcc"]]);
2920
2898
  var BcfTopicForm_scss_vue_type_style_index_0_src_scoped_true_lang = "";
2921
2899
  const _sfc_main$8 = {
2922
2900
  components: {
@@ -2992,7 +2970,7 @@ const _sfc_main$8 = {
2992
2970
  const viewpointsToCreate = ref([]);
2993
2971
  const viewpointsToUpdate = ref([]);
2994
2972
  const viewpointsToDelete = ref([]);
2995
- const viewpointsToDisplay = computed(() => viewpoints.value.filter((v2) => v2.snapshot).concat(viewpointsToCreate.value));
2973
+ const viewpointsToDisplay = computed(() => viewpoints.value.concat(viewpointsToCreate.value).filter((v2) => v2.snapshot));
2996
2974
  const loading = ref(false);
2997
2975
  const isOpenModal = ref(false);
2998
2976
  const hasErrorTitle = ref(false);
@@ -3022,6 +3000,9 @@ const _sfc_main$8 = {
3022
3000
  topicDescription.value = "";
3023
3001
  topicLabels.value = [];
3024
3002
  viewpoints.value = [];
3003
+ viewpointsToCreate.value = [];
3004
+ viewpointsToUpdate.value = [];
3005
+ viewpointsToDelete.value = [];
3025
3006
  loading.value = false;
3026
3007
  isOpenModal.value = false;
3027
3008
  hasErrorTitle.value = false;
@@ -3152,10 +3133,10 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
3152
3133
  ]),
3153
3134
  $props.viewerMode ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
3154
3135
  createVNode(_component_BcfTopicSnapshots, {
3155
- bcfTopic: $props.bcfTopic,
3136
+ viewpoints: $setup.viewpointsToDisplay,
3156
3137
  onAddViewpoint: $setup.addViewpoint,
3157
3138
  onDeleteViewpoint: $setup.delViewpoint
3158
- }, null, 8, ["bcfTopic", "onAddViewpoint", "onDeleteViewpoint"]),
3139
+ }, null, 8, ["viewpoints", "onAddViewpoint", "onDeleteViewpoint"]),
3159
3140
  createElementVNode("div", _hoisted_6$3, [
3160
3141
  createVNode(_component_BIMDataButton, {
3161
3142
  fill: "",
@@ -3202,10 +3183,10 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
3202
3183
  ])
3203
3184
  ], 64)) : (openBlock(), createBlock(_component_BcfTopicImages, {
3204
3185
  key: 1,
3205
- bcfTopic: $props.bcfTopic,
3206
- onAddImage: $setup.addViewpoint,
3186
+ viewpoints: $setup.viewpointsToDisplay,
3187
+ onAddViewpoint: $setup.addViewpoint,
3207
3188
  onDeleteViewpoint: $setup.delViewpoint
3208
- }, null, 8, ["bcfTopic", "onAddImage", "onDeleteViewpoint"])),
3189
+ }, null, 8, ["viewpoints", "onAddViewpoint", "onDeleteViewpoint"])),
3209
3190
  createElementVNode("div", _hoisted_7$3, [
3210
3191
  createVNode(_component_BIMDataInput, {
3211
3192
  placeholder: _ctx.$t("BcfComponents.BcfTopicForm.titlePlaceholder"),
@@ -3330,7 +3311,7 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
3330
3311
  })) : createCommentVNode("", true)
3331
3312
  ]);
3332
3313
  }
3333
- var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$8], ["__scopeId", "data-v-14fe5f92"]]);
3314
+ var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$8], ["__scopeId", "data-v-695651e7"]]);
3334
3315
  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() {
3335
3316
  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 };
3336
3317
  }, style() {
@@ -4876,15 +4857,7 @@ const _sfc_main$2 = {
4876
4857
  }
4877
4858
  },
4878
4859
  setup(props) {
4879
- const priorityColor = computed(() => {
4880
- if (props.bcfTopic.priority) {
4881
- const priorityDetail = props.detailedExtensions.priorities.find((priority) => priority.priority === props.bcfTopic.priority);
4882
- if (priorityDetail == null ? void 0 : priorityDetail.color) {
4883
- return `#${priorityDetail.color}`;
4884
- }
4885
- }
4886
- return `#${DEFAULT_PRIORITY_COLOR}`;
4887
- });
4860
+ const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
4888
4861
  return {
4889
4862
  priorityColor
4890
4863
  };
@@ -4893,10 +4866,10 @@ const _sfc_main$2 = {
4893
4866
  function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
4894
4867
  return openBlock(), createElementBlock("span", {
4895
4868
  class: "bcf-topic-priority-cell",
4896
- style: normalizeStyle({ color: $setup.priorityColor })
4869
+ style: normalizeStyle({ color: `#${$setup.priorityColor}` })
4897
4870
  }, toDisplayString($props.bcfTopic.priority || _ctx.$t("BcfComponents.BcfTopicPriorityCell.noPriority")), 5);
4898
4871
  }
4899
- var BcfTopicPriorityCell = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["render", _sfc_render$2], ["__scopeId", "data-v-4584461c"]]);
4872
+ var BcfTopicPriorityCell = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["render", _sfc_render$2], ["__scopeId", "data-v-691e94e8"]]);
4900
4873
  var BcfTopicStatusCell_scss_vue_type_style_index_0_src_scoped_true_lang = "";
4901
4874
  const _sfc_main$1 = {
4902
4875
  props: {
@@ -4910,15 +4883,7 @@ const _sfc_main$1 = {
4910
4883
  }
4911
4884
  },
4912
4885
  setup(props) {
4913
- const statusColor = computed(() => {
4914
- if (props.bcfTopic.topicStatus) {
4915
- const statusDetail = props.detailedExtensions.topicStatuses.find((status) => status.topicStatus === props.bcfTopic.topicStatus);
4916
- if (statusDetail == null ? void 0 : statusDetail.color) {
4917
- return `#${statusDetail.color}`;
4918
- }
4919
- }
4920
- return `#${DEFAULT_STATUS_COLOR}`;
4921
- });
4886
+ const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
4922
4887
  return {
4923
4888
  statusColor,
4924
4889
  adjustTextColor
@@ -4929,12 +4894,12 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
4929
4894
  return openBlock(), createElementBlock("span", {
4930
4895
  class: "bcf-topic-status-cell",
4931
4896
  style: normalizeStyle({
4932
- backgroundColor: $setup.statusColor,
4897
+ backgroundColor: `#${$setup.statusColor}`,
4933
4898
  color: $setup.adjustTextColor($setup.statusColor, "#ffffff", "var(--color-text)")
4934
4899
  })
4935
4900
  }, toDisplayString($props.bcfTopic.topicStatus), 5);
4936
4901
  }
4937
- var BcfTopicStatusCell = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render$1], ["__scopeId", "data-v-edc04e50"]]);
4902
+ var BcfTopicStatusCell = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render$1], ["__scopeId", "data-v-41224f82"]]);
4938
4903
  const _sfc_main = {
4939
4904
  components: {
4940
4905
  BcfTopicActionsCell,
@@ -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-a9deb2b6]{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-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:37px;right:-12px}.setting-card-item__delete-guard[data-v-a9deb2b6]{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-78b211f2]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-78b211f2]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-78b211f2]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-78b211f2]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-78b211f2]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-78b211f2]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-78b211f2]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-78b211f2]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-78b211f2]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-78b211f2]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-78b211f2]{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-6dfe3d1c]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-6dfe3d1c]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-6dfe3d1c]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-6dfe3d1c]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-6dfe3d1c]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-6dfe3d1c]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-6dfe3d1c]{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-14fe5f92]{height:100%}.bcf-topic-form__content[data-v-14fe5f92]{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-14fe5f92]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-14fe5f92],.bcf-topic-form__content__head__date[data-v-14fe5f92]{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-14fe5f92]{min-width:50px}.bcf-topic-form__content__head__date[data-v-14fe5f92]{min-width:100px}.bcf-topic-form__content__actions[data-v-14fe5f92]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-14fe5f92]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-14fe5f92]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-14fe5f92] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-14fe5f92] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-14fe5f92]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-14fe5f92]{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-0794c5c5]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-0794c5c5]{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-0794c5c5]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-0794c5c5]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-0794c5c5]{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-0794c5c5]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-0794c5c5],.bcf-topic-overview__content__head__date[data-v-0794c5c5]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-0794c5c5]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-0794c5c5]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-0794c5c5]{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-0794c5c5]{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-0794c5c5] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-0794c5c5] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-0794c5c5] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-0794c5c5] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-0794c5c5] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-0794c5c5]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-0794c5c5]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-0794c5c5]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-0794c5c5]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-0794c5c5]{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-0794c5c5]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-0794c5c5]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-0794c5c5]{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-edc04e50]{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-a9deb2b6]{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-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:37px;right:-12px}.setting-card-item__delete-guard[data-v-a9deb2b6]{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-482756ae]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-482756ae]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-482756ae]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-482756ae]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-482756ae]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-482756ae]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-482756ae]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-482756ae]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-482756ae]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-482756ae]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-482756ae]{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-29b59353]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-29b59353]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-29b59353]{position:relative}.bcf-topic-images__images .image-preview img[data-v-29b59353]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-29b59353]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-29b59353]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-29b59353]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-29b59353]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-29b59353]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-29b59353]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-29b59353]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-29b59353]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-29b59353]{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-29b59353]{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-7e063fcc]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-7e063fcc]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-7e063fcc]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-7e063fcc]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-7e063fcc]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-7e063fcc]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-7e063fcc]{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-695651e7]{height:100%}.bcf-topic-form__content[data-v-695651e7]{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-695651e7]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-695651e7],.bcf-topic-form__content__head__date[data-v-695651e7]{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-695651e7]{min-width:50px}.bcf-topic-form__content__head__date[data-v-695651e7]{min-width:100px}.bcf-topic-form__content__actions[data-v-695651e7]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-695651e7]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-695651e7]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-695651e7] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-695651e7] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-695651e7]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-695651e7]{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-0794c5c5]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-0794c5c5]{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-0794c5c5]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-0794c5c5]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-0794c5c5]{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-0794c5c5]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-0794c5c5],.bcf-topic-overview__content__head__date[data-v-0794c5c5]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-0794c5c5]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-0794c5c5]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-0794c5c5]{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-0794c5c5]{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-0794c5c5] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-0794c5c5] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-0794c5c5] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-0794c5c5] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-0794c5c5] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-0794c5c5]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-0794c5c5]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-0794c5c5]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-0794c5c5]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-0794c5c5]{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-0794c5c5]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-0794c5c5]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-0794c5c5]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4e8d8704]{margin:auto}.bcf-topic-priority-cell[data-v-691e94e8]{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-41224f82]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimdata/bcf-components",
3
- "version": "1.1.0-rc.21",
3
+ "version": "1.1.0-rc.24",
4
4
  "files": [
5
5
  "dist",
6
6
  "vue2-plugin.js",