@bimdata/bcf-components 1.1.0-rc.16 → 1.1.0-rc.19

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.
@@ -2725,7 +2725,8 @@ const __vue2_script$9 = {
2725
2725
  "delete-viewpoint"
2726
2726
  ],
2727
2727
  setup(props, { emit }) {
2728
- const getViewers = inject("getViewers", () => []);
2728
+ const getViewers = inject("getViewers", () => {
2729
+ });
2729
2730
  const viewpoints = ref([]);
2730
2731
  watch(() => props.bcfTopic, (topic) => {
2731
2732
  viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
@@ -2740,7 +2741,7 @@ const __vue2_script$9 = {
2740
2741
  emit("delete-viewpoint", viewpoint);
2741
2742
  };
2742
2743
  const takeSnapshots = async () => {
2743
- getViewers().forEach(async (viewer) => {
2744
+ Object.values(getViewers()).flat().forEach(async (viewer) => {
2744
2745
  if (viewer) {
2745
2746
  addViewpoint(await viewer.getViewpoint());
2746
2747
  }
@@ -2754,7 +2755,7 @@ const __vue2_script$9 = {
2754
2755
  }
2755
2756
  };
2756
2757
  const __cssModules$9 = {};
2757
- var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "3de95244", null, null);
2758
+ var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "c9f862a4", null, null);
2758
2759
  function __vue2_injectStyles$9(context) {
2759
2760
  for (let o2 in __cssModules$9) {
2760
2761
  this[o2] = __cssModules$9[o2];
@@ -2836,13 +2837,16 @@ const __vue2_script$8 = {
2836
2837
  bcfTopic: {
2837
2838
  type: Object
2838
2839
  },
2839
- components: {
2840
- type: Object
2841
- },
2842
- annotations: {
2840
+ models: {
2843
2841
  type: Array,
2844
2842
  default: () => []
2845
2843
  },
2844
+ providedComponents: {
2845
+ type: Object
2846
+ },
2847
+ providedPins: {
2848
+ type: Array
2849
+ },
2846
2850
  extensions: {
2847
2851
  type: Object,
2848
2852
  reuiqred: true
@@ -2922,7 +2926,7 @@ const __vue2_script$8 = {
2922
2926
  }
2923
2927
  };
2924
2928
  const submit = async () => {
2925
- var _a;
2929
+ var _a, _b;
2926
2930
  if (!topicTitle.value) {
2927
2931
  hasErrorTitle.value = true;
2928
2932
  return;
@@ -2933,12 +2937,18 @@ const __vue2_script$8 = {
2933
2937
  }
2934
2938
  try {
2935
2939
  loading.value = true;
2936
- if (props.components) {
2937
- viewpoints.value.forEach((viewpoint) => viewpoint.components = props.components);
2938
- viewpointsToCreate.forEach((viewpoint) => viewpoint.components = props.components);
2940
+ const viewpointToUpdate = viewpoints.value.map((viewpoint) => __spreadProps(__spreadValues({}, viewpoint), { snapshot: void 0 }));
2941
+ if (props.providedComponents) {
2942
+ viewpointToUpdate.forEach((viewpoint) => viewpoint.components = props.providedComponents);
2943
+ viewpointsToCreate.forEach((viewpoint) => viewpoint.components = props.providedComponents);
2944
+ }
2945
+ if (props.providedPins) {
2946
+ viewpointToUpdate.forEach((viewpoint) => viewpoint.pins = props.providedPins);
2947
+ viewpointsToCreate.forEach((viewpoint) => viewpoint.pins = props.providedPins);
2939
2948
  }
2940
2949
  const data = {
2941
2950
  guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
2951
+ models: ((_b = props.bcfTopic) == null ? void 0 : _b.models) || props.models,
2942
2952
  title: topicTitle.value,
2943
2953
  topicType: topicType.value,
2944
2954
  priority: topicPriority.value,
@@ -2948,7 +2958,7 @@ const __vue2_script$8 = {
2948
2958
  dueDate: topicDate.value ? serialize(topicDate.value) : void 0,
2949
2959
  description: topicDescription.value,
2950
2960
  labels: topicLabels.value,
2951
- viewpoints: viewpoints.value
2961
+ viewpoints: viewpointToUpdate
2952
2962
  };
2953
2963
  let newTopic;
2954
2964
  if (isCreation.value) {
@@ -2992,7 +3002,7 @@ const __vue2_script$8 = {
2992
3002
  }
2993
3003
  };
2994
3004
  const __cssModules$8 = {};
2995
- var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "95ae7c9a", null, null);
3005
+ var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "6e6b2311", null, null);
2996
3006
  function __vue2_injectStyles$8(context) {
2997
3007
  for (let o2 in __cssModules$8) {
2998
3008
  this[o2] = __cssModules$8[o2];
@@ -3745,7 +3755,7 @@ var render$4 = function() {
3745
3755
  return _c("div", { key: viewpoint.guid, staticClass: "snapshot-preview" }, [viewpoint.snapshot.snapshotData ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshotData } }) : _vm._e()]);
3746
3756
  }), 0)] : [_c("BcfTopicDefaultImage", { staticClass: "default-image" })]], 2), !_vm.viewerMode ? _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
3747
3757
  return _vm.$emit("view-bcf-topic", _vm.bcfTopic);
3748
- } } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]) : _vm._e(), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _vm.topicElements.length > 0 ? _c("span", [_vm._v(" " + _vm._s(_vm.topicElements.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicElements.length ? _vm.$t("BcfComponents.BcfTopicOverview.elements") : _vm.$t("BcfComponents.BcfTopicOverview.noElements")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.type")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topicType ? _vm.bcfTopic.topicType : _vm.$t("BcfComponents.BcfTopicOverview.noTypeSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.description")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.description ? _vm.bcfTopic.description : _vm.$t("BcfComponents.BcfTopicOverview.noDescriptionProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.assignedTo")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.assignedTo ? _vm.bcfTopic.assignedTo : _vm.$t("BcfComponents.BcfTopicOverview.notAssigned")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.dueDate")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.dueDate ? _vm.$d(_vm.bcfTopic.dueDate, "short") : _vm.$t("BcfComponents.BcfTopicOverview.noDueDate")) + " ")])])]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "bcf" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.informations")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.status")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topicStatus || _vm.$t("BcfComponents.BcfTopicOverview.noStatusSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.stage")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.stage || _vm.$t("BcfComponents.BcfTopicOverview.noStageProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: " label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.priority")) + " ")]), _c("span", { staticClass: " value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicOverview.priorityNotDefined")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: " label" }, [_vm._v(" Auteur : ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.creationAuthor) + " ")])]), _c("div", { staticClass: "line m-t-12" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.tags")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.topicLabels.length ? _vm.topicLabels.join(", ") : _vm.$t("BcfComponents.BcfTopicOverview.noTags")) + " ")])])]), _c("BcfTopicComments", { attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic }, on: { "comment-created": function($event) {
3758
+ } } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]) : _vm._e(), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _vm.topicComponents.length > 0 ? _c("span", [_vm._v(" " + _vm._s(_vm.topicComponents.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicComponents.length ? _vm.$t("BcfComponents.BcfTopicOverview.elements") : _vm.$t("BcfComponents.BcfTopicOverview.noElements")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.type")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topicType ? _vm.bcfTopic.topicType : _vm.$t("BcfComponents.BcfTopicOverview.noTypeSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.description")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.description ? _vm.bcfTopic.description : _vm.$t("BcfComponents.BcfTopicOverview.noDescriptionProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.assignedTo")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.assignedTo ? _vm.bcfTopic.assignedTo : _vm.$t("BcfComponents.BcfTopicOverview.notAssigned")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.dueDate")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.dueDate ? _vm.$d(_vm.bcfTopic.dueDate, "short") : _vm.$t("BcfComponents.BcfTopicOverview.noDueDate")) + " ")])])]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "bcf" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.informations")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.status")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topicStatus || _vm.$t("BcfComponents.BcfTopicOverview.noStatusSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.stage")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.stage || _vm.$t("BcfComponents.BcfTopicOverview.noStageProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: " label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.priority")) + " ")]), _c("span", { staticClass: " value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicOverview.priorityNotDefined")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: " label" }, [_vm._v(" Auteur : ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.creationAuthor) + " ")])]), _c("div", { staticClass: "line m-t-12" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.tags")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.topicLabels.length ? _vm.topicLabels.join(", ") : _vm.$t("BcfComponents.BcfTopicOverview.noTags")) + " ")])])]), _c("BcfTopicComments", { attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic }, on: { "comment-created": function($event) {
3749
3759
  return _vm.$emit("comment-created", $event);
3750
3760
  }, "comment-updated": function($event) {
3751
3761
  return _vm.$emit("comment-updated", $event);
@@ -3829,13 +3839,10 @@ const __vue2_script$4 = {
3829
3839
  }
3830
3840
  return DEFAULT_STATUS_COLOR;
3831
3841
  });
3832
- const topicElements = computed(() => {
3833
- var _a;
3834
- if (props.bcfTopic.components && props.bcfTopic.components.length > 0 && ((_a = props.bcfTopic.components[0]) == null ? void 0 : _a.selection)) {
3835
- return props.bcfTopic.components[0].selection;
3836
- } else {
3837
- return [];
3838
- }
3842
+ const topicComponents = computed(() => {
3843
+ var _a, _b;
3844
+ const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
3845
+ return (components2 == null ? void 0 : components2.selection) || [];
3839
3846
  });
3840
3847
  const topicLabels = computed(() => {
3841
3848
  var _a;
@@ -3861,7 +3868,7 @@ const __vue2_script$4 = {
3861
3868
  priorityColor,
3862
3869
  showDeleteModal,
3863
3870
  statusColor,
3864
- topicElements,
3871
+ topicComponents,
3865
3872
  topicLabels,
3866
3873
  viewpointsWithSnapshot,
3867
3874
  adjustColor,
@@ -3870,7 +3877,7 @@ const __vue2_script$4 = {
3870
3877
  }
3871
3878
  };
3872
3879
  const __cssModules$4 = {};
3873
- var __component__$4 = /* @__PURE__ */ normalizeComponent(__vue2_script$4, render$4, staticRenderFns$4, false, __vue2_injectStyles$4, "2371629e", null, null);
3880
+ var __component__$4 = /* @__PURE__ */ normalizeComponent(__vue2_script$4, render$4, staticRenderFns$4, false, __vue2_injectStyles$4, "641b59c8", null, null);
3874
3881
  function __vue2_injectStyles$4(context) {
3875
3882
  for (let o2 in __cssModules$4) {
3876
3883
  this[o2] = __cssModules$4[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-33d9bbba]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-33d9bbba]{display:flex;align-items:center}.setting-card-item__color[data-v-33d9bbba]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-33d9bbba]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-33d9bbba]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-72c52d15]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-72c52d15]{font-weight:700}.setting-card__header__icons[data-v-72c52d15]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-72c52d15]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-72c52d15]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-72c52d15]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-2687ba4b]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-2687ba4b]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-2687ba4b]{height:100%}.bcf-settings__content__text[data-v-2687ba4b]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-5dc331a8]{width:100%}.bcf-statistics__content[data-v-5dc331a8]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-5dc331a8]{flex:1}.bcf-statistics__content__legend[data-v-5dc331a8]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-5dc331a8]{font-weight:700}.bcf-statistics__content__legend__item[data-v-5dc331a8]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-5dc331a8]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-5dc331a8]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-5dc331a8]{font-size:13px}.bcf-statistics__content__legend[data-v-5dc331a8] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-275da59e]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-275da59e]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-275da59e]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-275da59e]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-275da59e]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-275da59e]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-275da59e]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-275da59e]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-275da59e]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-275da59e]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-275da59e]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-b5e56a58]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-b5e56a58]{font-size:14px}.bcf-topic-images[data-v-6ca9dbd4]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-6ca9dbd4]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]{position:relative}.bcf-topic-images__images .image-preview img[data-v-6ca9dbd4]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-6ca9dbd4]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-6ca9dbd4]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-6ca9dbd4]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-6ca9dbd4]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-6ca9dbd4]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-6ca9dbd4]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-3de95244]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-3de95244]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-3de95244]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-3de95244]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-95ae7c9a]{height:100%}.bcf-topic-form__content[data-v-95ae7c9a]{height:calc(100% - 64px - var(--spacing-unit));padding:0 calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-95ae7c9a]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-95ae7c9a],.bcf-topic-form__content__head__date[data-v-95ae7c9a]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light)}.bcf-topic-form__content__head__index[data-v-95ae7c9a]{min-width:50px}.bcf-topic-form__content__head__date[data-v-95ae7c9a]{min-width:100px}.bcf-topic-form__content__actions[data-v-95ae7c9a]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-95ae7c9a]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-95ae7c9a]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-95ae7c9a] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-95ae7c9a] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-95ae7c9a]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-95ae7c9a]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-555abc52]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-555abc52]{width:100%;height:100%}.user-avatar--primary[data-v-555abc52]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-555abc52]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-555abc52]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-4016a6b4]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-4016a6b4]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-4016a6b4]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-4016a6b4]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-35edf7c8]{font-weight:700}.bcf-topic-comments[data-v-35edf7c8] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-2371629e]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-2371629e]{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-2371629e]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-2371629e]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-2371629e]{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-2371629e]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-2371629e],.bcf-topic-overview__content__head__date[data-v-2371629e]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-2371629e]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-2371629e]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-2371629e]{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-2371629e]{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-2371629e] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-2371629e] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-2371629e] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-2371629e] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-2371629e] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-2371629e]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-2371629e]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-2371629e]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-2371629e]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-2371629e]{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-2371629e]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-2371629e]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-2371629e]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4f85c962]{margin:auto}.bcf-topic-priority-cell[data-v-42770510]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-9af43d36]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
1
+ .bcf-filters__btn-toggle[data-v-2db12d9a]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-2db12d9a]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-2db12d9a]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-2db12d9a]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-2db12d9a]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-2db12d9a]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-2db12d9a]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-2db12d9a]{display:flex;justify-content:center}.setting-card-item[data-v-33d9bbba]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-33d9bbba]{display:flex;align-items:center}.setting-card-item__color[data-v-33d9bbba]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-33d9bbba]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-33d9bbba]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-72c52d15]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-72c52d15]{font-weight:700}.setting-card__header__icons[data-v-72c52d15]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-72c52d15]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-72c52d15]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-72c52d15]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-2687ba4b]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-2687ba4b]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-2687ba4b]{height:100%}.bcf-settings__content__text[data-v-2687ba4b]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-5dc331a8]{width:100%}.bcf-statistics__content[data-v-5dc331a8]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-5dc331a8]{flex:1}.bcf-statistics__content__legend[data-v-5dc331a8]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-5dc331a8]{font-weight:700}.bcf-statistics__content__legend__item[data-v-5dc331a8]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-5dc331a8]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-5dc331a8]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-5dc331a8]{font-size:13px}.bcf-statistics__content__legend[data-v-5dc331a8] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-275da59e]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-275da59e]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-275da59e]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-275da59e]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-275da59e]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-275da59e]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-275da59e]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-275da59e]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-275da59e]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-275da59e]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-275da59e]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-b5e56a58]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-b5e56a58]{font-size:14px}.bcf-topic-images[data-v-6ca9dbd4]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-6ca9dbd4]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]{position:relative}.bcf-topic-images__images .image-preview img[data-v-6ca9dbd4]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-6ca9dbd4]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-6ca9dbd4]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-6ca9dbd4]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-6ca9dbd4]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-6ca9dbd4]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-6ca9dbd4]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-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-6e6b2311]{height:100%}.bcf-topic-form__content[data-v-6e6b2311]{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-6e6b2311]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-6e6b2311],.bcf-topic-form__content__head__date[data-v-6e6b2311]{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-6e6b2311]{min-width:50px}.bcf-topic-form__content__head__date[data-v-6e6b2311]{min-width:100px}.bcf-topic-form__content__actions[data-v-6e6b2311]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-6e6b2311]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-6e6b2311]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-6e6b2311] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-6e6b2311] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-6e6b2311]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-6e6b2311]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-555abc52]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-555abc52]{width:100%;height:100%}.user-avatar--primary[data-v-555abc52]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-555abc52]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-555abc52]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-4016a6b4]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-4016a6b4]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-4016a6b4]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-4016a6b4]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-35edf7c8]{font-weight:700}.bcf-topic-comments[data-v-35edf7c8] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-641b59c8]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-641b59c8]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-overview__header__title[data-v-641b59c8]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-641b59c8]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-641b59c8]{height:calc(100% - 32px);padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);overflow:auto;display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-overview__content__head[data-v-641b59c8]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-641b59c8],.bcf-topic-overview__content__head__date[data-v-641b59c8]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-641b59c8]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-641b59c8]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-641b59c8]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-overview__content__image .status-badge[data-v-641b59c8]{position:absolute;z-index:1;left:calc(var(--spacing-unit) / 2);top:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-641b59c8] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-641b59c8]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-641b59c8]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-641b59c8]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-641b59c8]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-641b59c8]{display:flex;align-items:center;gap:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.bcf-topic-overview__content__card .line .label[data-v-641b59c8]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-641b59c8]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-641b59c8]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4f85c962]{margin:auto}.bcf-topic-priority-cell[data-v-42770510]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-9af43d36]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
@@ -2812,7 +2812,8 @@ const _sfc_main$9 = {
2812
2812
  "delete-viewpoint"
2813
2813
  ],
2814
2814
  setup(props, { emit }) {
2815
- const getViewers = inject("getViewers", () => []);
2815
+ const getViewers = inject("getViewers", () => {
2816
+ });
2816
2817
  const viewpoints = ref([]);
2817
2818
  watch(() => props.bcfTopic, (topic) => {
2818
2819
  viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
@@ -2827,7 +2828,7 @@ const _sfc_main$9 = {
2827
2828
  emit("delete-viewpoint", viewpoint);
2828
2829
  };
2829
2830
  const takeSnapshots = async () => {
2830
- getViewers().forEach(async (viewer) => {
2831
+ Object.values(getViewers()).flat().forEach(async (viewer) => {
2831
2832
  if (viewer) {
2832
2833
  addViewpoint(await viewer.getViewpoint());
2833
2834
  }
@@ -2891,7 +2892,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
2891
2892
  ]))
2892
2893
  ]);
2893
2894
  }
2894
- var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-1c93719c"]]);
2895
+ var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-6dfe3d1c"]]);
2895
2896
  var BcfTopicForm_scss_vue_type_style_index_0_src_scoped_true_lang = "";
2896
2897
  const _sfc_main$8 = {
2897
2898
  components: {
@@ -2922,13 +2923,16 @@ const _sfc_main$8 = {
2922
2923
  bcfTopic: {
2923
2924
  type: Object
2924
2925
  },
2925
- components: {
2926
- type: Object
2927
- },
2928
- annotations: {
2926
+ models: {
2929
2927
  type: Array,
2930
2928
  default: () => []
2931
2929
  },
2930
+ providedComponents: {
2931
+ type: Object
2932
+ },
2933
+ providedPins: {
2934
+ type: Array
2935
+ },
2932
2936
  extensions: {
2933
2937
  type: Object,
2934
2938
  reuiqred: true
@@ -3008,7 +3012,7 @@ const _sfc_main$8 = {
3008
3012
  }
3009
3013
  };
3010
3014
  const submit = async () => {
3011
- var _a;
3015
+ var _a, _b;
3012
3016
  if (!topicTitle.value) {
3013
3017
  hasErrorTitle.value = true;
3014
3018
  return;
@@ -3019,12 +3023,18 @@ const _sfc_main$8 = {
3019
3023
  }
3020
3024
  try {
3021
3025
  loading.value = true;
3022
- if (props.components) {
3023
- viewpoints.value.forEach((viewpoint) => viewpoint.components = props.components);
3024
- viewpointsToCreate.forEach((viewpoint) => viewpoint.components = props.components);
3026
+ const viewpointToUpdate = viewpoints.value.map((viewpoint) => __spreadProps(__spreadValues({}, viewpoint), { snapshot: void 0 }));
3027
+ if (props.providedComponents) {
3028
+ viewpointToUpdate.forEach((viewpoint) => viewpoint.components = props.providedComponents);
3029
+ viewpointsToCreate.forEach((viewpoint) => viewpoint.components = props.providedComponents);
3030
+ }
3031
+ if (props.providedPins) {
3032
+ viewpointToUpdate.forEach((viewpoint) => viewpoint.pins = props.providedPins);
3033
+ viewpointsToCreate.forEach((viewpoint) => viewpoint.pins = props.providedPins);
3025
3034
  }
3026
3035
  const data = {
3027
3036
  guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
3037
+ models: ((_b = props.bcfTopic) == null ? void 0 : _b.models) || props.models,
3028
3038
  title: topicTitle.value,
3029
3039
  topicType: topicType.value,
3030
3040
  priority: topicPriority.value,
@@ -3034,7 +3044,7 @@ const _sfc_main$8 = {
3034
3044
  dueDate: topicDate.value ? serialize(topicDate.value) : void 0,
3035
3045
  description: topicDescription.value,
3036
3046
  labels: topicLabels.value,
3037
- viewpoints: viewpoints.value
3047
+ viewpoints: viewpointToUpdate
3038
3048
  };
3039
3049
  let newTopic;
3040
3050
  if (isCreation.value) {
@@ -3275,7 +3285,7 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
3275
3285
  })) : createCommentVNode("", true)
3276
3286
  ]);
3277
3287
  }
3278
- var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$8], ["__scopeId", "data-v-0f93cc73"]]);
3288
+ var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$8], ["__scopeId", "data-v-2fba2dd1"]]);
3279
3289
  var u = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), M$1 = { name: "BIMDataButton", props: { width: { type: String, default: "32px" }, height: { type: String, default: "32px" }, fill: { type: Boolean, default: false }, outline: { type: Boolean, default: false }, ghost: { type: Boolean, default: false }, ripple: { type: Boolean, default: false }, radius: { type: Boolean, default: false }, square: { type: Boolean, default: false }, rounded: { type: Boolean, default: false }, icon: { type: Boolean, default: false }, color: { type: String, default: "default", validator: (n) => u.includes(n) } }, emits: ["click"], computed: { classes() {
3280
3290
  return { "bimdata-btn__icon": this.icon, "bimdata-btn__fill": this.fill, "bimdata-btn__outline": this.outline, "bimdata-btn__ghost": this.ghost, "bimdata-btn__ripple": this.ripple, "bimdata-btn__radius": this.radius, "bimdata-btn__square": this.square, "bimdata-btn__rounded": this.rounded, ["bimdata-btn__fill--" + this.color]: this.fill && this.color, ["bimdata-btn__outline--" + this.color]: this.outline && this.color, ["bimdata-btn__ghost--" + this.color]: this.ghost && this.color, ["bimdata-btn__ripple--" + this.color]: this.ripple && this.color };
3281
3291
  }, style() {
@@ -4276,13 +4286,10 @@ const _sfc_main$4 = {
4276
4286
  }
4277
4287
  return DEFAULT_STATUS_COLOR;
4278
4288
  });
4279
- const topicElements = computed(() => {
4280
- var _a;
4281
- if (props.bcfTopic.components && props.bcfTopic.components.length > 0 && ((_a = props.bcfTopic.components[0]) == null ? void 0 : _a.selection)) {
4282
- return props.bcfTopic.components[0].selection;
4283
- } else {
4284
- return [];
4285
- }
4289
+ const topicComponents = computed(() => {
4290
+ var _a, _b;
4291
+ const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
4292
+ return (components2 == null ? void 0 : components2.selection) || [];
4286
4293
  });
4287
4294
  const topicLabels = computed(() => {
4288
4295
  var _a;
@@ -4308,7 +4315,7 @@ const _sfc_main$4 = {
4308
4315
  priorityColor,
4309
4316
  showDeleteModal,
4310
4317
  statusColor,
4311
- topicElements,
4318
+ topicComponents,
4312
4319
  topicLabels,
4313
4320
  viewpointsWithSnapshot,
4314
4321
  adjustColor,
@@ -4316,7 +4323,7 @@ const _sfc_main$4 = {
4316
4323
  };
4317
4324
  }
4318
4325
  };
4319
- const _withScopeId = (n) => (pushScopeId("data-v-73c6c774"), n = n(), popScopeId(), n);
4326
+ const _withScopeId = (n) => (pushScopeId("data-v-e5878f68"), n = n(), popScopeId(), n);
4320
4327
  const _hoisted_1$1 = { class: "bcf-topic-overview" };
4321
4328
  const _hoisted_2 = { class: "bcf-topic-overview__header" };
4322
4329
  const _hoisted_3 = { class: "bcf-topic-overview__header__title" };
@@ -4511,8 +4518,8 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
4511
4518
  name: "model3d",
4512
4519
  size: "xs"
4513
4520
  }),
4514
- $setup.topicElements.length > 0 ? (openBlock(), createElementBlock("span", _hoisted_11, toDisplayString($setup.topicElements.length), 1)) : createCommentVNode("", true),
4515
- createElementVNode("span", null, toDisplayString($setup.topicElements.length ? _ctx.$t("BcfComponents.BcfTopicOverview.elements") : _ctx.$t("BcfComponents.BcfTopicOverview.noElements")), 1)
4521
+ $setup.topicComponents.length > 0 ? (openBlock(), createElementBlock("span", _hoisted_11, toDisplayString($setup.topicComponents.length), 1)) : createCommentVNode("", true),
4522
+ createElementVNode("span", null, toDisplayString($setup.topicComponents.length ? _ctx.$t("BcfComponents.BcfTopicOverview.elements") : _ctx.$t("BcfComponents.BcfTopicOverview.noElements")), 1)
4516
4523
  ]),
4517
4524
  createElementVNode("div", _hoisted_12, [
4518
4525
  createElementVNode("span", _hoisted_13, toDisplayString(_ctx.$t("BcfComponents.BcfTopicOverview.type")), 1),
@@ -4604,7 +4611,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
4604
4611
  ])) : createCommentVNode("", true)
4605
4612
  ]);
4606
4613
  }
4607
- var BcfTopicOverview = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-73c6c774"]]);
4614
+ var BcfTopicOverview = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-e5878f68"]]);
4608
4615
  var columnsDef = [
4609
4616
  {
4610
4617
  id: "index",
@@ -1 +1 @@
1
- .bcf-filters__btn-toggle[data-v-077f83aa]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-077f83aa]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-077f83aa]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-077f83aa]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-077f83aa]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-077f83aa]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-077f83aa]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-077f83aa]{display:flex;justify-content:center}.setting-card-item[data-v-263afb1b]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-263afb1b]{display:flex;align-items:center}.setting-card-item__color[data-v-263afb1b]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-263afb1b]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-263afb1b]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-6b7af8f7]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-6b7af8f7]{font-weight:700}.setting-card__header__icons[data-v-6b7af8f7]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-6b7af8f7]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-6b7af8f7]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-6b7af8f7]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-54aa64a7]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-54aa64a7]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-54aa64a7]{height:100%}.bcf-settings__content__text[data-v-54aa64a7]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-763cac12]{width:100%}.bcf-statistics__content[data-v-763cac12]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-763cac12]{flex:1}.bcf-statistics__content__legend[data-v-763cac12]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-763cac12]{font-weight:700}.bcf-statistics__content__legend__item[data-v-763cac12]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-763cac12]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-763cac12]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-763cac12]{font-size:13px}.bcf-statistics__content__legend[data-v-763cac12] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-6bf8a944]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-6bf8a944]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-6bf8a944]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-6bf8a944]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-6bf8a944]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-6bf8a944]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-6bf8a944]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-6bf8a944]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-6bf8a944]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-6bf8a944]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-6bf8a944]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-02f52cb0]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-02f52cb0]{font-size:14px}.bcf-topic-images[data-v-428a3422]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-428a3422]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-428a3422]{position:relative}.bcf-topic-images__images .image-preview img[data-v-428a3422]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-428a3422]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-428a3422]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-428a3422]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-428a3422]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-428a3422]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-428a3422]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-1c93719c]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-1c93719c]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-1c93719c]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-1c93719c]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-0f93cc73]{height:100%}.bcf-topic-form__content[data-v-0f93cc73]{height:calc(100% - 64px - var(--spacing-unit));padding:0 calc(var(--spacing-unit) / 2);display:flex;flex-direction:column;gap:var(--spacing-unit);overflow:auto}.bcf-topic-form__content__head[data-v-0f93cc73]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-0f93cc73],.bcf-topic-form__content__head__date[data-v-0f93cc73]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light)}.bcf-topic-form__content__head__index[data-v-0f93cc73]{min-width:50px}.bcf-topic-form__content__head__date[data-v-0f93cc73]{min-width:100px}.bcf-topic-form__content__actions[data-v-0f93cc73]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-0f93cc73]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-0f93cc73]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-0f93cc73] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-0f93cc73] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-0f93cc73]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-0f93cc73]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-f84b809a]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-f84b809a]{width:100%;height:100%}.user-avatar--primary[data-v-f84b809a]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-f84b809a]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-f84b809a]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-b9f88f20]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-b9f88f20]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-b9f88f20]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-b9f88f20]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-377292f2]{font-weight:700}.bcf-topic-comments[data-v-377292f2] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-73c6c774]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-73c6c774]{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-73c6c774]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-73c6c774]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-73c6c774]{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-73c6c774]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-73c6c774],.bcf-topic-overview__content__head__date[data-v-73c6c774]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-73c6c774]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-73c6c774]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-73c6c774]{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-73c6c774]{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-73c6c774] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-73c6c774] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-73c6c774] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-73c6c774] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-73c6c774] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-73c6c774]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-73c6c774]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-73c6c774]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-73c6c774]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-73c6c774]{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-73c6c774]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-73c6c774]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-73c6c774]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4e8d8704]{margin:auto}.bcf-topic-priority-cell[data-v-4584461c]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-ef484b2a]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
1
+ .bcf-filters__btn-toggle[data-v-077f83aa]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-077f83aa]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-077f83aa]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-077f83aa]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-077f83aa]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-077f83aa]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-077f83aa]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-077f83aa]{display:flex;justify-content:center}.setting-card-item[data-v-263afb1b]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-263afb1b]{display:flex;align-items:center}.setting-card-item__color[data-v-263afb1b]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-263afb1b]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-263afb1b]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-6b7af8f7]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-6b7af8f7]{font-weight:700}.setting-card__header__icons[data-v-6b7af8f7]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-6b7af8f7]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-6b7af8f7]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-6b7af8f7]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-54aa64a7]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-54aa64a7]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-54aa64a7]{height:100%}.bcf-settings__content__text[data-v-54aa64a7]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-763cac12]{width:100%}.bcf-statistics__content[data-v-763cac12]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-763cac12]{flex:1}.bcf-statistics__content__legend[data-v-763cac12]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-763cac12]{font-weight:700}.bcf-statistics__content__legend__item[data-v-763cac12]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-763cac12]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-763cac12]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-763cac12]{font-size:13px}.bcf-statistics__content__legend[data-v-763cac12] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-6bf8a944]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-6bf8a944]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-6bf8a944]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-6bf8a944]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-6bf8a944]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-6bf8a944]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-6bf8a944]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-6bf8a944]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-6bf8a944]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-6bf8a944]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-6bf8a944]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-02f52cb0]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-02f52cb0]{font-size:14px}.bcf-topic-images[data-v-428a3422]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-428a3422]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-428a3422]{position:relative}.bcf-topic-images__images .image-preview img[data-v-428a3422]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-428a3422]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-428a3422]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-428a3422]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-428a3422]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-428a3422]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-428a3422]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-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-2fba2dd1]{height:100%}.bcf-topic-form__content[data-v-2fba2dd1]{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-2fba2dd1]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-2fba2dd1],.bcf-topic-form__content__head__date[data-v-2fba2dd1]{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-2fba2dd1]{min-width:50px}.bcf-topic-form__content__head__date[data-v-2fba2dd1]{min-width:100px}.bcf-topic-form__content__actions[data-v-2fba2dd1]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-2fba2dd1]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-2fba2dd1]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-2fba2dd1] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-2fba2dd1] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-2fba2dd1]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-2fba2dd1]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-f84b809a]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-f84b809a]{width:100%;height:100%}.user-avatar--primary[data-v-f84b809a]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-f84b809a]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-f84b809a]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-b9f88f20]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-b9f88f20]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-b9f88f20]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-b9f88f20]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-377292f2]{font-weight:700}.bcf-topic-comments[data-v-377292f2] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-e5878f68]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-e5878f68]{padding:0 calc(var(--spacing-unit) / 2);display:flex;align-items:center;gap:calc(var(--spacing-unit) / 3)}.bcf-topic-overview__header__title[data-v-e5878f68]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-e5878f68]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-e5878f68]{height:calc(100% - 32px);padding:var(--spacing-unit) calc(var(--spacing-unit) / 2);overflow:auto;display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-overview__content__head[data-v-e5878f68]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-e5878f68],.bcf-topic-overview__content__head__date[data-v-e5878f68]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-e5878f68]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-e5878f68]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-e5878f68]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-overview__content__image .status-badge[data-v-e5878f68]{position:absolute;z-index:1;left:calc(var(--spacing-unit) / 2);top:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-e5878f68] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-e5878f68]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-e5878f68]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-e5878f68]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-e5878f68]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-e5878f68]{display:flex;align-items:center;gap:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.bcf-topic-overview__content__card .line .label[data-v-e5878f68]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-e5878f68]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-e5878f68]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4e8d8704]{margin:auto}.bcf-topic-priority-cell[data-v-4584461c]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-ef484b2a]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimdata/bcf-components",
3
- "version": "1.1.0-rc.16",
3
+ "version": "1.1.0-rc.19",
4
4
  "files": [
5
5
  "dist",
6
6
  "vue2-plugin.js",