@bimdata/bcf-components 2.0.0-rc.14 → 2.0.0-rc.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46,6 +46,8 @@ const EXTENSION_LIST_FIELDS = Object.freeze({
46
46
  });
47
47
  const DEFAULT_PRIORITY_COLOR = "D8D8D8";
48
48
  const DEFAULT_STATUS_COLOR = "D8D8D8";
49
+ const VIEWPOINT_TYPE_FIELD = "originating_system";
50
+ const VIEWPOINT_MODELS_FIELD = "authoring_tool_id";
49
51
  const VIEWPOINT_TYPES = Object.freeze({
50
52
  V3D: "ifc3d",
51
53
  V2D: "ifc2d",
@@ -55,28 +57,24 @@ const VIEWPOINT_TYPES = Object.freeze({
55
57
  const VIEWPOINT_CONFIG = Object.freeze({
56
58
  [VIEWPOINT_TYPES.V3D]: {
57
59
  order: 1,
58
- category: "3d",
59
60
  window: "3d",
60
61
  plugin: "viewer3d",
61
62
  icon: "fileIfcPolychrome"
62
63
  },
63
64
  [VIEWPOINT_TYPES.V2D]: {
64
65
  order: 2,
65
- category: "2d",
66
66
  window: "2d",
67
67
  plugin: "viewer2d",
68
68
  icon: "fileIfcPolychrome"
69
69
  },
70
70
  [VIEWPOINT_TYPES.DWG]: {
71
71
  order: 3,
72
- category: "2d",
73
72
  window: "dwg",
74
73
  plugin: "dwg",
75
74
  icon: "fileDwgPolychrome"
76
75
  },
77
76
  [VIEWPOINT_TYPES.PLAN]: {
78
77
  order: 4,
79
- category: "2d",
80
78
  window: "plan",
81
79
  plugin: "plan",
82
80
  icon: "filePlanPolychrome"
@@ -91,7 +89,9 @@ var config = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty
91
89
  EXTENSION_TYPES,
92
90
  EXTENSION_WITH_COLOR,
93
91
  VIEWPOINT_CONFIG,
94
- VIEWPOINT_TYPES
92
+ VIEWPOINT_MODELS_FIELD,
93
+ VIEWPOINT_TYPES,
94
+ VIEWPOINT_TYPE_FIELD
95
95
  }, Symbol.toStringTag, { value: "Module" }));
96
96
  let apiClient = null;
97
97
  function setApiClient(client) {
@@ -254,6 +254,16 @@ function getStatusColor(topic, detailedExtensions) {
254
254
  const statusDetail = detailedExtensions.topic_statuses.find((s2) => s2.topic_status === topic.topic_status);
255
255
  return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
256
256
  }
257
+ function getViewpointType(viewpoint) {
258
+ return viewpoint[VIEWPOINT_TYPE_FIELD];
259
+ }
260
+ function getViewpointModels(viewpoint) {
261
+ var _a, _b;
262
+ return (_b = (_a = viewpoint[VIEWPOINT_MODELS_FIELD]) == null ? void 0 : _a.split(",").map(Number)) != null ? _b : [];
263
+ }
264
+ function getViewpointConfig(viewpoint) {
265
+ return VIEWPOINT_CONFIG[getViewpointType(viewpoint)];
266
+ }
257
267
  var r$d = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), o$d = { name: "BIMDataButton", props: { width: { type: String, default: "32px" }, height: { type: String, default: "32px" }, fill: { type: Boolean, default: false }, outline: { type: Boolean, default: false }, ghost: { type: Boolean, default: false }, ripple: { type: Boolean, default: false }, radius: { type: Boolean, default: false }, square: { type: Boolean, default: false }, rounded: { type: Boolean, default: false }, icon: { type: Boolean, default: false }, color: { type: String, default: "default", validator: (o2) => r$d.includes(o2) } }, emits: ["click"], computed: { classes() {
258
268
  return { "bimdata-btn__icon": this.icon, "bimdata-btn__fill": this.fill, "bimdata-btn__outline": this.outline, "bimdata-btn__ghost": this.ghost, "bimdata-btn__ripple": this.ripple, "bimdata-btn__radius": this.radius, "bimdata-btn__square": this.square, "bimdata-btn__rounded": this.rounded, ["bimdata-btn__fill--" + this.color]: this.fill && this.color, ["bimdata-btn__outline--" + this.color]: this.outline && this.color, ["bimdata-btn__ghost--" + this.color]: this.ghost && this.color, ["bimdata-btn__ripple--" + this.color]: this.ripple && this.color };
259
269
  }, style() {
@@ -2029,7 +2039,7 @@ var render$f = function() {
2029
2039
  } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-card__header__infos__title flex items-center m-l-12" }, [_c("BIMDataTextbox", { attrs: { "maxWidth": "100% - 48px", "text": _vm.bcfTopic.title } })], 1)]), _c("div", { staticClass: "bcf-topic-card__header__img flex items-center justify-center" }, [_vm.bcfTopic.topic_status ? _c("div", { staticClass: "bcf-topic-card__header__img__status flex p-6", style: {
2030
2040
  "background-color": "#" + _vm.statusColor,
2031
2041
  color: _vm.adjustTextColor("#" + _vm.statusColor, "#ffffff", "var(--color-text)")
2032
- } }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", { staticClass: "m-l-6" }, [_vm._v(_vm._s(_vm.bcfTopic.topic_status))])], 1) : _vm._e(), _c("div", { staticClass: "bcf-topic-card__header__img__date p-6" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")]), _vm.viewpointsWithSnapshot.length > 0 ? _c("img", { attrs: { "src": _vm.viewpointsWithSnapshot[0].snapshot.snapshot_data, "alt": "ViewPoint", "loading": "lazy" } }) : _c("BcfTopicDefaultImage", { staticClass: "default-img" })], 1)]), _c("div", { staticClass: "bcf-topic-card__content p-12" }, [_c("div", { staticClass: "bcf-topic-card__content__priority" }, [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.priority")) + " ")]), _c("span", { style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicCard.noPriority")) + " ")])]), _c("div", [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.assignedTo")) + " ")]), _c("span", [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to || _vm.$t("BcfComponents.BcfTopicCard.notSpecified")) + " ")])]), _c("div", { staticClass: "flex justify-around m-t-12" }, [_c("div", { staticClass: "flex items-center" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "fill": "", "color": "default", "size": "xs", "margin": "0 6px 0 0" } }), _vm.topicElements.length > 0 ? _c("span", { staticClass: "m-r-6" }, [_vm._v(" " + _vm._s(_vm.topicElements.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicElements.length ? _vm.$t("BcfComponents.BcfTopicCard.elements") : _vm.$t("BcfComponents.BcfTopicCard.noElements")) + " ")])], 1), _c("BIMDataButton", { attrs: { "width": "48%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
2042
+ } }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", { staticClass: "m-l-6" }, [_vm._v(_vm._s(_vm.bcfTopic.topic_status))])], 1) : _vm._e(), _c("div", { staticClass: "bcf-topic-card__header__img__date p-6" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")]), _vm.viewpointsWithSnapshot.length > 0 ? _c("img", { attrs: { "src": _vm.viewpointsWithSnapshot[0].snapshot.snapshot_data, "alt": "ViewPoint", "loading": "lazy" } }) : _c("BcfTopicDefaultImage", { staticClass: "default-img" })], 1)]), _c("div", { staticClass: "bcf-topic-card__content p-12" }, [_c("div", { staticClass: "bcf-topic-card__content__priority" }, [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.priority")) + " ")]), _c("span", { style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicCard.noPriority")) + " ")])]), _c("div", [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.assignedTo")) + " ")]), _c("span", [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to || _vm.$t("BcfComponents.BcfTopicCard.notSpecified")) + " ")])]), _c("div", { staticClass: "flex justify-around m-t-12" }, [_c("div", { staticClass: "flex items-center" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "fill": "", "color": "default", "size": "xs", "margin": "0 6px 0 0" } }), _vm.topicObjects.length > 0 ? _c("span", { staticClass: "m-r-6" }, [_vm._v(" " + _vm._s(_vm.topicObjects.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicObjects.length > 0 ? _vm.$t("BcfComponents.BcfTopicCard.elements") : _vm.$t("BcfComponents.BcfTopicCard.noElements")) + " ")])], 1), _c("BIMDataButton", { attrs: { "width": "48%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
2033
2043
  return _vm.$emit("open-bcf-topic", _vm.bcfTopic);
2034
2044
  } } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.see")) + " ")])], 1)])]);
2035
2045
  };
@@ -2061,25 +2071,22 @@ const __vue2_script$f = {
2061
2071
  });
2062
2072
  const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
2063
2073
  const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
2064
- const topicElements = computed(() => {
2065
- var _a;
2066
- if (props.bcfTopic.components && props.bcfTopic.components.length > 0 && ((_a = props.bcfTopic.components[0]) == null ? void 0 : _a.selection)) {
2067
- return props.bcfTopic.components[0].selection;
2068
- } else {
2069
- return [];
2070
- }
2074
+ const topicObjects = computed(() => {
2075
+ var _a, _b;
2076
+ const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
2077
+ return (components2 == null ? void 0 : components2.selection) || [];
2071
2078
  });
2072
2079
  return {
2073
2080
  priorityColor,
2074
2081
  statusColor,
2075
- topicElements,
2082
+ topicObjects,
2076
2083
  viewpointsWithSnapshot,
2077
2084
  adjustTextColor
2078
2085
  };
2079
2086
  }
2080
2087
  };
2081
2088
  const __cssModules$f = {};
2082
- var __component__$f = /* @__PURE__ */ normalizeComponent(__vue2_script$f, render$f, staticRenderFns$f, false, __vue2_injectStyles$f, "9ee26932", null, null);
2089
+ var __component__$f = /* @__PURE__ */ normalizeComponent(__vue2_script$f, render$f, staticRenderFns$f, false, __vue2_injectStyles$f, "6474e4d2", null, null);
2083
2090
  function __vue2_injectStyles$f(context) {
2084
2091
  for (let o2 in __cssModules$f) {
2085
2092
  this[o2] = __cssModules$f[o2];
@@ -2899,10 +2906,10 @@ const __vue2_script$b = {
2899
2906
  const [type, config2] = Object.entries(VIEWPOINT_CONFIG).find(([, c2]) => c2.plugin === id);
2900
2907
  viewers.forEach(async (viewer) => {
2901
2908
  const viewpoint = await viewer.getViewpoint();
2902
- const { order, category } = config2 != null ? config2 : {};
2909
+ const { order } = config2 != null ? config2 : {};
2903
2910
  viewpoint.order = order;
2904
- viewpoint.originating_system = category;
2905
- viewpoint.authoring_tool_id = type;
2911
+ viewpoint[VIEWPOINT_TYPE_FIELD] = type;
2912
+ viewpoint[VIEWPOINT_MODELS_FIELD] = viewer.getLoadedModels().map((m) => m.id).join(",");
2906
2913
  emit("add-viewpoint", viewpoint);
2907
2914
  });
2908
2915
  });
@@ -2917,7 +2924,7 @@ const __vue2_script$b = {
2917
2924
  }
2918
2925
  };
2919
2926
  const __cssModules$b = {};
2920
- var __component__$b = /* @__PURE__ */ normalizeComponent(__vue2_script$b, render$b, staticRenderFns$b, false, __vue2_injectStyles$b, "08b68b6b", null, null);
2927
+ var __component__$b = /* @__PURE__ */ normalizeComponent(__vue2_script$b, render$b, staticRenderFns$b, false, __vue2_injectStyles$b, "0bd88982", null, null);
2921
2928
  function __vue2_injectStyles$b(context) {
2922
2929
  for (let o2 in __cssModules$b) {
2923
2930
  this[o2] = __cssModules$b[o2];
@@ -3124,8 +3131,29 @@ const __vue2_script$a = {
3124
3131
  }
3125
3132
  if (props.bcfTopicObjects) {
3126
3133
  if (viewpointsToUpdate.value.length > 0 || viewpointsToCreate.value.length > 0) {
3127
- viewpointsToUpdate.value.forEach((viewpoint) => viewpoint.components = props.bcfTopicObjects);
3128
- viewpointsToCreate.value.forEach((viewpoint) => viewpoint.components = props.bcfTopicObjects);
3134
+ [
3135
+ ...viewpointsToUpdate.value,
3136
+ ...viewpointsToCreate.value
3137
+ ].forEach((viewpoint) => {
3138
+ Object.assign(viewpoint, props.bcfTopicObjects);
3139
+ if (!viewpoint.components) {
3140
+ viewpoint.components = {};
3141
+ }
3142
+ if (!viewpoint.components.selection) {
3143
+ viewpoint.components.selection = [];
3144
+ }
3145
+ if (!viewpoint.components.visibility) {
3146
+ viewpoint.components.visibility = {
3147
+ default_visibility: true,
3148
+ exceptions: [],
3149
+ view_setup_hints: {
3150
+ spaces_visible: false,
3151
+ space_boundaries_visible: false,
3152
+ openings_visible: false
3153
+ }
3154
+ };
3155
+ }
3156
+ });
3129
3157
  } else {
3130
3158
  viewpointsToCreate.value.push({
3131
3159
  components: props.bcfTopicObjects
@@ -3133,8 +3161,10 @@ const __vue2_script$a = {
3133
3161
  }
3134
3162
  }
3135
3163
  if (props.bcfTopicAnnotations) {
3136
- viewpointsToUpdate.value.forEach((viewpoint) => viewpoint.pins = props.bcfTopicAnnotations);
3137
- viewpointsToCreate.value.forEach((viewpoint) => viewpoint.pins = props.bcfTopicAnnotations);
3164
+ [
3165
+ ...viewpointsToUpdate.value,
3166
+ ...viewpointsToCreate.value
3167
+ ].forEach((viewpoint) => viewpoint.pins = props.bcfTopicAnnotations);
3138
3168
  }
3139
3169
  const data = {
3140
3170
  guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
@@ -3194,7 +3224,7 @@ const __vue2_script$a = {
3194
3224
  }
3195
3225
  };
3196
3226
  const __cssModules$a = {};
3197
- var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "23e45e21", null, null);
3227
+ var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "6cd2b994", null, null);
3198
3228
  function __vue2_injectStyles$a(context) {
3199
3229
  for (let o2 in __cssModules$a) {
3200
3230
  this[o2] = __cssModules$a[o2];
@@ -3997,7 +4027,7 @@ const __vue2_script$6 = {
3997
4027
  const viewpoints = computed(() => props.bcfTopic.viewpoints.filter((viewpoint) => viewpoint.snapshot).map((viewpoint) => {
3998
4028
  var _a;
3999
4029
  return __spreadProps(__spreadValues({}, viewpoint), {
4000
- icon: (_a = VIEWPOINT_CONFIG[viewpoint.authoring_tool_id]) == null ? void 0 : _a.icon
4030
+ icon: (_a = getViewpointConfig(viewpoint)) == null ? void 0 : _a.icon
4001
4031
  });
4002
4032
  }));
4003
4033
  const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
@@ -4009,7 +4039,7 @@ const __vue2_script$6 = {
4009
4039
  }
4010
4040
  };
4011
4041
  const __cssModules$6 = {};
4012
- var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "cac84fce", null, null);
4042
+ var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "6ca0f1b6", null, null);
4013
4043
  function __vue2_injectStyles$6(context) {
4014
4044
  for (let o2 in __cssModules$6) {
4015
4045
  this[o2] = __cssModules$6[o2];
@@ -4033,11 +4063,11 @@ var render$5 = function() {
4033
4063
  } } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e()], 2)], 2), _c("div", { staticClass: "bcf-topic-overview__content" }, [_c("div", { staticClass: "bcf-topic-overview__content__head" }, [_c("div", { staticClass: "bcf-topic-overview__content__head__index", style: {
4034
4064
  backgroundColor: "#" + _vm.priorityColor,
4035
4065
  color: _vm.adjustTextColor("#" + _vm.priorityColor, "#FFF", "#2F374A")
4036
- } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")])]), _c("BcfTopicViewpoints", { attrs: { "detailedExtensions": _vm.detailedExtensions, "bcfTopic": _vm.bcfTopic } }), _vm.viewerMode ? _c("BIMDataButton", { attrs: { "width": "100%", "fill": "", "radius": "", "disabled": _vm.topicComponents.length === 0 }, on: { "click": function($event) {
4066
+ } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")])]), _c("BcfTopicViewpoints", { attrs: { "detailedExtensions": _vm.detailedExtensions, "bcfTopic": _vm.bcfTopic } }), _vm.viewerMode ? _c("BIMDataButton", { attrs: { "width": "100%", "fill": "", "radius": "", "disabled": _vm.topicObjects.length === 0 }, on: { "click": function($event) {
4037
4067
  return _vm.$emit("view-components", _vm.bcfTopic);
4038
- } } }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs", "margin": "0 6px 0 0" } }), _vm.topicComponents.length > 0 ? [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.elements", { count: _vm.topicComponents.length })) + " ")] : [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.noElements")) + " ")]], 2) : _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
4068
+ } } }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs", "margin": "0 6px 0 0" } }), _vm.topicObjects.length > 0 ? [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.elements", { count: _vm.topicObjects.length })) + " ")] : [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.noElements")) + " ")]], 2) : _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
4039
4069
  return _vm.$emit("view-bcf-topic", _vm.bcfTopic);
4040
- } } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [!_vm.viewerMode ? _c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.elements", { count: _vm.topicComponents.length })) + " ")])], 1) : _vm._e(), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.type")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_type ? _vm.bcfTopic.topic_type : _vm.$t("BcfComponents.BcfTopicOverview.noTypeSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.description")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.description ? _vm.bcfTopic.description : _vm.$t("BcfComponents.BcfTopicOverview.noDescriptionProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.assignedTo")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to ? _vm.bcfTopic.assigned_to : _vm.$t("BcfComponents.BcfTopicOverview.notAssigned")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.dueDate")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.due_date ? _vm.$d(_vm.bcfTopic.due_date, "short") : _vm.$t("BcfComponents.BcfTopicOverview.noDueDate")) + " ")])])]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "bcf" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.informations")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.status")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_status || _vm.$t("BcfComponents.BcfTopicOverview.noStatusSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.stage")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.stage || _vm.$t("BcfComponents.BcfTopicOverview.noStageProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.priority")) + " ")]), _c("span", { staticClass: "value", style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicOverview.priorityNotDefined")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" Auteur : ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.creation_author) + " ")])]), _c("div", { staticClass: "line m-t-12" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.tags")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.topicLabels.length ? _vm.topicLabels.join(", ") : _vm.$t("BcfComponents.BcfTopicOverview.noTags")) + " ")])])]), _c("BcfTopicComments", { attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic }, on: { "comment-created": function($event) {
4070
+ } } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [!_vm.viewerMode ? _c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.elements", { count: _vm.topicObjects.length })) + " ")])], 1) : _vm._e(), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.type")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_type ? _vm.bcfTopic.topic_type : _vm.$t("BcfComponents.BcfTopicOverview.noTypeSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.description")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.description ? _vm.bcfTopic.description : _vm.$t("BcfComponents.BcfTopicOverview.noDescriptionProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.assignedTo")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to ? _vm.bcfTopic.assigned_to : _vm.$t("BcfComponents.BcfTopicOverview.notAssigned")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.dueDate")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.due_date ? _vm.$d(_vm.bcfTopic.due_date, "short") : _vm.$t("BcfComponents.BcfTopicOverview.noDueDate")) + " ")])])]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "bcf" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.informations")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.status")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_status || _vm.$t("BcfComponents.BcfTopicOverview.noStatusSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.stage")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.stage || _vm.$t("BcfComponents.BcfTopicOverview.noStageProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.priority")) + " ")]), _c("span", { staticClass: "value", style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicOverview.priorityNotDefined")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" Auteur : ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.creation_author) + " ")])]), _c("div", { staticClass: "line m-t-12" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.tags")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.topicLabels.length ? _vm.topicLabels.join(", ") : _vm.$t("BcfComponents.BcfTopicOverview.noTags")) + " ")])])]), _c("BcfTopicComments", { attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic }, on: { "comment-created": function($event) {
4041
4071
  return _vm.$emit("comment-created", $event);
4042
4072
  }, "comment-updated": function($event) {
4043
4073
  return _vm.$emit("comment-updated", $event);
@@ -4103,7 +4133,7 @@ const __vue2_script$5 = {
4103
4133
  const loading = ref(false);
4104
4134
  const showDeleteModal = ref(false);
4105
4135
  const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
4106
- const topicComponents = computed(() => {
4136
+ const topicObjects = computed(() => {
4107
4137
  var _a, _b;
4108
4138
  const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
4109
4139
  return (components2 == null ? void 0 : components2.selection) || [];
@@ -4133,15 +4163,15 @@ const __vue2_script$5 = {
4133
4163
  loading,
4134
4164
  priorityColor,
4135
4165
  showDeleteModal,
4136
- topicComponents,
4137
4166
  topicLabels,
4167
+ topicObjects,
4138
4168
  adjustTextColor,
4139
4169
  removeTopic
4140
4170
  };
4141
4171
  }
4142
4172
  };
4143
4173
  const __cssModules$5 = {};
4144
- var __component__$5 = /* @__PURE__ */ normalizeComponent(__vue2_script$5, render$5, staticRenderFns$5, false, __vue2_injectStyles$5, "d9c4613c", null, null);
4174
+ var __component__$5 = /* @__PURE__ */ normalizeComponent(__vue2_script$5, render$5, staticRenderFns$5, false, __vue2_injectStyles$5, "b15c7908", null, null);
4145
4175
  function __vue2_injectStyles$5(context) {
4146
4176
  for (let o2 in __cssModules$5) {
4147
4177
  this[o2] = __cssModules$5[o2];
@@ -4574,4 +4604,4 @@ const components = {
4574
4604
  BcfTopicOverview,
4575
4605
  BcfTopicsTable
4576
4606
  };
4577
- export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, config, getPriorityColor, getStatusColor, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
4607
+ export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, config, getPriorityColor, getStatusColor, getViewpointConfig, getViewpointModels, getViewpointType, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
@@ -1 +1 @@
1
- .bcf-filters__btn-toggle[data-v-41d6e8d0]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-41d6e8d0]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-41d6e8d0]{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-41d6e8d0]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-41d6e8d0]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-41d6e8d0]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-41d6e8d0]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-41d6e8d0]{display:flex;justify-content:center}.setting-card-item[data-v-27af5073]{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-27af5073]{display:flex;align-items:center}.setting-card-item__color[data-v-27af5073]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-27af5073]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-27af5073]{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-6e8123c6]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-6e8123c6]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-6e8123c6]{font-weight:700}.setting-card__header__icons[data-v-6e8123c6]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-6e8123c6]{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-6e8123c6]{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-6e8123c6]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-6e8123c6]{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-08cce8e2]{width:100%}.bcf-statistics__content[data-v-08cce8e2]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-08cce8e2]{flex:1}.bcf-statistics__content__legend[data-v-08cce8e2]{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-08cce8e2]{font-weight:700}.bcf-statistics__content__legend__item[data-v-08cce8e2]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-08cce8e2]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-08cce8e2]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-08cce8e2]{font-size:13px}.bcf-statistics__content__legend[data-v-08cce8e2] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-9ee26932]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-9ee26932]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-9ee26932]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-9ee26932]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-9ee26932]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-9ee26932]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-9ee26932]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-9ee26932]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-9ee26932]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-9ee26932]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-9ee26932]{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-46dea43b]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-46dea43b]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-46dea43b]{position:relative}.bcf-topic-images__images .image-preview img[data-v-46dea43b]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-46dea43b]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-46dea43b]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-46dea43b]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-46dea43b]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-46dea43b]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-46dea43b]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-46dea43b]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-46dea43b]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-46dea43b]{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-46dea43b]{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-08b68b6b]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-08b68b6b]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-08b68b6b]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-08b68b6b]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-08b68b6b]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-08b68b6b]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-08b68b6b]{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-23e45e21]{height:100%}.bcf-topic-form__content[data-v-23e45e21]{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-23e45e21]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-23e45e21],.bcf-topic-form__content__head__date[data-v-23e45e21]{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-23e45e21]{min-width:50px}.bcf-topic-form__content__head__date[data-v-23e45e21]{min-width:100px}.bcf-topic-form__content__actions[data-v-23e45e21]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-23e45e21]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-23e45e21],.bcf-topic-form__content__actions .count-annotations[data-v-23e45e21]{min-width:16px;height:16px;margin-left:var(--spacing-unit);padding:0 4px;border-radius:8px;font-size:10px;display:flex;justify-content:center;align-items:center}.bcf-topic-form__content__actions .count-objects[data-v-23e45e21]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-23e45e21]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-23e45e21]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-23e45e21] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-23e45e21] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-23e45e21]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-23e45e21]{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-e5e255f0]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-e5e255f0]{width:100%;height:100%}.user-avatar--primary[data-v-e5e255f0]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-e5e255f0]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-e5e255f0]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-47f184d0]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-47f184d0]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-47f184d0]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-47f184d0]{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-47f184d0] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-47f184d0] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-47f184d0] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-561aa0f8]{font-weight:700}.bcf-topic-comments[data-v-561aa0f8] .bimdata-textarea{width:100%}.bcf-topic-viewpoints[data-v-cac84fce]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-viewpoints.empty[data-v-cac84fce]{display:flex;justify-content:center;align-items:center}.bcf-topic-viewpoints .status-badge[data-v-cac84fce]{position:absolute;z-index:1;top:calc(var(--spacing-unit) / 2);left:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-cac84fce] .bimdata-carousel{height:100%}.bcf-topic-viewpoints[data-v-cac84fce] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-viewpoints[data-v-cac84fce] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-viewpoints[data-v-cac84fce] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-cac84fce] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .snapshot-preview[data-v-cac84fce]{position:relative;width:100%;height:100%}.bcf-topic-viewpoints .snapshot-preview img[data-v-cac84fce]{width:100%;height:100%;object-fit:cover}.bcf-topic-viewpoints .snapshot-preview .icon[data-v-cac84fce]{position:absolute;z-index:1;bottom:calc(var(--spacing-unit) / 2);right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .default-image[data-v-cac84fce]{width:170px;height:170px;padding:12px}.bcf-topic-overview[data-v-d9c4613c]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-d9c4613c]{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-d9c4613c]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-d9c4613c]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-d9c4613c]{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-d9c4613c]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-d9c4613c],.bcf-topic-overview__content__head__date[data-v-d9c4613c]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-d9c4613c]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-d9c4613c]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__card[data-v-d9c4613c]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-d9c4613c]{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-d9c4613c]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-d9c4613c]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-d9c4613c]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-490491b3]{margin:auto}.bcf-topic-index-cell[data-v-73373bfa]{position:relative;display:flex;justify-content:center;align-items:center}.bcf-topic-index-cell .left-stripe[data-v-73373bfa]{position:absolute;left:calc(0px - var(--spacing-unit));width:10px;height:42px}.bcf-topic-priority-cell[data-v-7be782b8]{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-a51b4af6]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
1
+ .bcf-filters__btn-toggle[data-v-41d6e8d0]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-41d6e8d0]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-41d6e8d0]{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-41d6e8d0]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-41d6e8d0]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-41d6e8d0]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-41d6e8d0]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-41d6e8d0]{display:flex;justify-content:center}.setting-card-item[data-v-27af5073]{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-27af5073]{display:flex;align-items:center}.setting-card-item__color[data-v-27af5073]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-27af5073]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-27af5073]{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-6e8123c6]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-6e8123c6]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-6e8123c6]{font-weight:700}.setting-card__header__icons[data-v-6e8123c6]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-6e8123c6]{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-6e8123c6]{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-6e8123c6]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-6e8123c6]{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-08cce8e2]{width:100%}.bcf-statistics__content[data-v-08cce8e2]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-08cce8e2]{flex:1}.bcf-statistics__content__legend[data-v-08cce8e2]{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-08cce8e2]{font-weight:700}.bcf-statistics__content__legend__item[data-v-08cce8e2]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-08cce8e2]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-08cce8e2]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-08cce8e2]{font-size:13px}.bcf-statistics__content__legend[data-v-08cce8e2] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-6474e4d2]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-6474e4d2]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-6474e4d2]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-6474e4d2]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-6474e4d2]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-6474e4d2]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-6474e4d2]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-6474e4d2]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-6474e4d2]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-6474e4d2]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-6474e4d2]{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-46dea43b]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-46dea43b]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-46dea43b]{position:relative}.bcf-topic-images__images .image-preview img[data-v-46dea43b]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-46dea43b]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-46dea43b]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-46dea43b]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-46dea43b]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-46dea43b]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-46dea43b]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-46dea43b]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-46dea43b]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-46dea43b]{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-46dea43b]{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-0bd88982]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-0bd88982]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-0bd88982]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-0bd88982]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-0bd88982]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-0bd88982]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-0bd88982]{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-6cd2b994]{height:100%}.bcf-topic-form__content[data-v-6cd2b994]{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-6cd2b994]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-6cd2b994],.bcf-topic-form__content__head__date[data-v-6cd2b994]{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-6cd2b994]{min-width:50px}.bcf-topic-form__content__head__date[data-v-6cd2b994]{min-width:100px}.bcf-topic-form__content__actions[data-v-6cd2b994]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-6cd2b994]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-6cd2b994],.bcf-topic-form__content__actions .count-annotations[data-v-6cd2b994]{min-width:16px;height:16px;margin-left:var(--spacing-unit);padding:0 4px;border-radius:8px;font-size:10px;display:flex;justify-content:center;align-items:center}.bcf-topic-form__content__actions .count-objects[data-v-6cd2b994]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-6cd2b994]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-6cd2b994]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-6cd2b994] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-6cd2b994] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-6cd2b994]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-6cd2b994]{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-e5e255f0]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-e5e255f0]{width:100%;height:100%}.user-avatar--primary[data-v-e5e255f0]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-e5e255f0]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-e5e255f0]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-47f184d0]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-47f184d0]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-47f184d0]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-47f184d0]{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-47f184d0] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-47f184d0] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-47f184d0] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-561aa0f8]{font-weight:700}.bcf-topic-comments[data-v-561aa0f8] .bimdata-textarea{width:100%}.bcf-topic-viewpoints[data-v-6ca0f1b6]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-viewpoints.empty[data-v-6ca0f1b6]{display:flex;justify-content:center;align-items:center}.bcf-topic-viewpoints .status-badge[data-v-6ca0f1b6]{position:absolute;z-index:1;top:calc(var(--spacing-unit) / 2);left:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-6ca0f1b6] .bimdata-carousel{height:100%}.bcf-topic-viewpoints[data-v-6ca0f1b6] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-viewpoints[data-v-6ca0f1b6] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-viewpoints[data-v-6ca0f1b6] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-6ca0f1b6] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .snapshot-preview[data-v-6ca0f1b6]{position:relative;width:100%;height:100%}.bcf-topic-viewpoints .snapshot-preview img[data-v-6ca0f1b6]{width:100%;height:100%;object-fit:cover}.bcf-topic-viewpoints .snapshot-preview .icon[data-v-6ca0f1b6]{position:absolute;z-index:1;bottom:calc(var(--spacing-unit) / 2);right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .default-image[data-v-6ca0f1b6]{width:170px;height:170px;padding:12px}.bcf-topic-overview[data-v-b15c7908]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-b15c7908]{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-b15c7908]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-b15c7908]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-b15c7908]{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-b15c7908]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-b15c7908],.bcf-topic-overview__content__head__date[data-v-b15c7908]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-b15c7908]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-b15c7908]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__card[data-v-b15c7908]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-b15c7908]{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-b15c7908]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-b15c7908]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-b15c7908]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-490491b3]{margin:auto}.bcf-topic-index-cell[data-v-73373bfa]{position:relative;display:flex;justify-content:center;align-items:center}.bcf-topic-index-cell .left-stripe[data-v-73373bfa]{position:absolute;left:calc(0px - var(--spacing-unit));width:10px;height:42px}.bcf-topic-priority-cell[data-v-7be782b8]{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-a51b4af6]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
@@ -46,6 +46,8 @@ const EXTENSION_LIST_FIELDS = Object.freeze({
46
46
  });
47
47
  const DEFAULT_PRIORITY_COLOR = "D8D8D8";
48
48
  const DEFAULT_STATUS_COLOR = "D8D8D8";
49
+ const VIEWPOINT_TYPE_FIELD = "originating_system";
50
+ const VIEWPOINT_MODELS_FIELD = "authoring_tool_id";
49
51
  const VIEWPOINT_TYPES = Object.freeze({
50
52
  V3D: "ifc3d",
51
53
  V2D: "ifc2d",
@@ -55,28 +57,24 @@ const VIEWPOINT_TYPES = Object.freeze({
55
57
  const VIEWPOINT_CONFIG = Object.freeze({
56
58
  [VIEWPOINT_TYPES.V3D]: {
57
59
  order: 1,
58
- category: "3d",
59
60
  window: "3d",
60
61
  plugin: "viewer3d",
61
62
  icon: "fileIfcPolychrome"
62
63
  },
63
64
  [VIEWPOINT_TYPES.V2D]: {
64
65
  order: 2,
65
- category: "2d",
66
66
  window: "2d",
67
67
  plugin: "viewer2d",
68
68
  icon: "fileIfcPolychrome"
69
69
  },
70
70
  [VIEWPOINT_TYPES.DWG]: {
71
71
  order: 3,
72
- category: "2d",
73
72
  window: "dwg",
74
73
  plugin: "dwg",
75
74
  icon: "fileDwgPolychrome"
76
75
  },
77
76
  [VIEWPOINT_TYPES.PLAN]: {
78
77
  order: 4,
79
- category: "2d",
80
78
  window: "plan",
81
79
  plugin: "plan",
82
80
  icon: "filePlanPolychrome"
@@ -91,7 +89,9 @@ var config = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty
91
89
  EXTENSION_TYPES,
92
90
  EXTENSION_WITH_COLOR,
93
91
  VIEWPOINT_CONFIG,
94
- VIEWPOINT_TYPES
92
+ VIEWPOINT_MODELS_FIELD,
93
+ VIEWPOINT_TYPES,
94
+ VIEWPOINT_TYPE_FIELD
95
95
  }, Symbol.toStringTag, { value: "Module" }));
96
96
  let apiClient = null;
97
97
  function setApiClient(client) {
@@ -254,6 +254,16 @@ function getStatusColor(topic, detailedExtensions) {
254
254
  const statusDetail = detailedExtensions.topic_statuses.find((s2) => s2.topic_status === topic.topic_status);
255
255
  return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
256
256
  }
257
+ function getViewpointType(viewpoint) {
258
+ return viewpoint[VIEWPOINT_TYPE_FIELD];
259
+ }
260
+ function getViewpointModels(viewpoint) {
261
+ var _a, _b;
262
+ return (_b = (_a = viewpoint[VIEWPOINT_MODELS_FIELD]) == null ? void 0 : _a.split(",").map(Number)) != null ? _b : [];
263
+ }
264
+ function getViewpointConfig(viewpoint) {
265
+ return VIEWPOINT_CONFIG[getViewpointType(viewpoint)];
266
+ }
257
267
  var i$1 = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), l = { 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) => i$1.includes(n) } }, emits: ["click"], computed: { classes() {
258
268
  return { "bimdata-btn__icon": this.icon, "bimdata-btn__fill": this.fill, "bimdata-btn__outline": this.outline, "bimdata-btn__ghost": this.ghost, "bimdata-btn__ripple": this.ripple, "bimdata-btn__radius": this.radius, "bimdata-btn__square": this.square, "bimdata-btn__rounded": this.rounded, ["bimdata-btn__fill--" + this.color]: this.fill && this.color, ["bimdata-btn__outline--" + this.color]: this.outline && this.color, ["bimdata-btn__ghost--" + this.color]: this.ghost && this.color, ["bimdata-btn__ripple--" + this.color]: this.ripple && this.color };
259
269
  }, style() {
@@ -2064,18 +2074,15 @@ const _sfc_main$f = {
2064
2074
  });
2065
2075
  const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
2066
2076
  const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
2067
- const topicElements = computed(() => {
2068
- var _a;
2069
- if (props.bcfTopic.components && props.bcfTopic.components.length > 0 && ((_a = props.bcfTopic.components[0]) == null ? void 0 : _a.selection)) {
2070
- return props.bcfTopic.components[0].selection;
2071
- } else {
2072
- return [];
2073
- }
2077
+ const topicObjects = computed(() => {
2078
+ var _a, _b;
2079
+ const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
2080
+ return (components2 == null ? void 0 : components2.selection) || [];
2074
2081
  });
2075
2082
  return {
2076
2083
  priorityColor,
2077
2084
  statusColor,
2078
- topicElements,
2085
+ topicObjects,
2079
2086
  viewpointsWithSnapshot,
2080
2087
  adjustTextColor
2081
2088
  };
@@ -2167,8 +2174,8 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
2167
2174
  size: "xs",
2168
2175
  margin: "0 6px 0 0"
2169
2176
  }),
2170
- $setup.topicElements.length > 0 ? (openBlock(), createElementBlock("span", _hoisted_13$2, toDisplayString($setup.topicElements.length), 1)) : createCommentVNode("", true),
2171
- createElementVNode("span", null, toDisplayString($setup.topicElements.length ? _ctx.$t("BcfComponents.BcfTopicCard.elements") : _ctx.$t("BcfComponents.BcfTopicCard.noElements")), 1)
2177
+ $setup.topicObjects.length > 0 ? (openBlock(), createElementBlock("span", _hoisted_13$2, toDisplayString($setup.topicObjects.length), 1)) : createCommentVNode("", true),
2178
+ createElementVNode("span", null, toDisplayString($setup.topicObjects.length > 0 ? _ctx.$t("BcfComponents.BcfTopicCard.elements") : _ctx.$t("BcfComponents.BcfTopicCard.noElements")), 1)
2172
2179
  ]),
2173
2180
  createVNode(_component_BIMDataButton, {
2174
2181
  width: "48%",
@@ -2186,7 +2193,7 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
2186
2193
  ])
2187
2194
  ]);
2188
2195
  }
2189
- var BcfTopicCard = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$f], ["__scopeId", "data-v-6cce5009"]]);
2196
+ var BcfTopicCard = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$f], ["__scopeId", "data-v-4d6c5487"]]);
2190
2197
  const _sfc_main$e = {};
2191
2198
  const _hoisted_1$b = {
2192
2199
  width: "66",
@@ -2947,10 +2954,10 @@ const _sfc_main$b = {
2947
2954
  const [type, config2] = Object.entries(VIEWPOINT_CONFIG).find(([, c2]) => c2.plugin === id);
2948
2955
  viewers.forEach(async (viewer) => {
2949
2956
  const viewpoint = await viewer.getViewpoint();
2950
- const { order, category } = config2 != null ? config2 : {};
2957
+ const { order } = config2 != null ? config2 : {};
2951
2958
  viewpoint.order = order;
2952
- viewpoint.originating_system = category;
2953
- viewpoint.authoring_tool_id = type;
2959
+ viewpoint[VIEWPOINT_TYPE_FIELD] = type;
2960
+ viewpoint[VIEWPOINT_MODELS_FIELD] = viewer.getLoadedModels().map((m2) => m2.id).join(",");
2954
2961
  emit("add-viewpoint", viewpoint);
2955
2962
  });
2956
2963
  });
@@ -3015,7 +3022,7 @@ function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
3015
3022
  ]))
3016
3023
  ]);
3017
3024
  }
3018
- var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["render", _sfc_render$b], ["__scopeId", "data-v-56050af2"]]);
3025
+ var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["render", _sfc_render$b], ["__scopeId", "data-v-aca32dc4"]]);
3019
3026
  var BcfTopicForm_scss_vue_type_style_index_0_src_scoped_true_lang = "";
3020
3027
  const _sfc_main$a = {
3021
3028
  components: {
@@ -3171,8 +3178,29 @@ const _sfc_main$a = {
3171
3178
  }
3172
3179
  if (props.bcfTopicObjects) {
3173
3180
  if (viewpointsToUpdate.value.length > 0 || viewpointsToCreate.value.length > 0) {
3174
- viewpointsToUpdate.value.forEach((viewpoint) => viewpoint.components = props.bcfTopicObjects);
3175
- viewpointsToCreate.value.forEach((viewpoint) => viewpoint.components = props.bcfTopicObjects);
3181
+ [
3182
+ ...viewpointsToUpdate.value,
3183
+ ...viewpointsToCreate.value
3184
+ ].forEach((viewpoint) => {
3185
+ Object.assign(viewpoint, props.bcfTopicObjects);
3186
+ if (!viewpoint.components) {
3187
+ viewpoint.components = {};
3188
+ }
3189
+ if (!viewpoint.components.selection) {
3190
+ viewpoint.components.selection = [];
3191
+ }
3192
+ if (!viewpoint.components.visibility) {
3193
+ viewpoint.components.visibility = {
3194
+ default_visibility: true,
3195
+ exceptions: [],
3196
+ view_setup_hints: {
3197
+ spaces_visible: false,
3198
+ space_boundaries_visible: false,
3199
+ openings_visible: false
3200
+ }
3201
+ };
3202
+ }
3203
+ });
3176
3204
  } else {
3177
3205
  viewpointsToCreate.value.push({
3178
3206
  components: props.bcfTopicObjects
@@ -3180,8 +3208,10 @@ const _sfc_main$a = {
3180
3208
  }
3181
3209
  }
3182
3210
  if (props.bcfTopicAnnotations) {
3183
- viewpointsToUpdate.value.forEach((viewpoint) => viewpoint.pins = props.bcfTopicAnnotations);
3184
- viewpointsToCreate.value.forEach((viewpoint) => viewpoint.pins = props.bcfTopicAnnotations);
3211
+ [
3212
+ ...viewpointsToUpdate.value,
3213
+ ...viewpointsToCreate.value
3214
+ ].forEach((viewpoint) => viewpoint.pins = props.bcfTopicAnnotations);
3185
3215
  }
3186
3216
  const data = {
3187
3217
  guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
@@ -3460,7 +3490,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
3460
3490
  })) : createCommentVNode("", true)
3461
3491
  ]);
3462
3492
  }
3463
- var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a], ["__scopeId", "data-v-6df91d96"]]);
3493
+ var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a], ["__scopeId", "data-v-8ba2f600"]]);
3464
3494
  var UserAvatar_scss_vue_type_style_index_0_src_scoped_true_lang = "";
3465
3495
  const _sfc_main$9 = {
3466
3496
  props: {
@@ -4456,7 +4486,7 @@ const _sfc_main$6 = {
4456
4486
  const viewpoints = computed(() => props.bcfTopic.viewpoints.filter((viewpoint) => viewpoint.snapshot).map((viewpoint) => {
4457
4487
  var _a;
4458
4488
  return __spreadProps(__spreadValues({}, viewpoint), {
4459
- icon: (_a = VIEWPOINT_CONFIG[viewpoint.authoring_tool_id]) == null ? void 0 : _a.icon
4489
+ icon: (_a = getViewpointConfig(viewpoint)) == null ? void 0 : _a.icon
4460
4490
  });
4461
4491
  }));
4462
4492
  const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
@@ -4520,7 +4550,7 @@ function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
4520
4550
  }))
4521
4551
  ], 2);
4522
4552
  }
4523
- var BcfTopicViewpoints = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render$6], ["__scopeId", "data-v-500a5c19"]]);
4553
+ var BcfTopicViewpoints = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render$6], ["__scopeId", "data-v-0a9e5076"]]);
4524
4554
  var BcfTopicOverview_scss_vue_type_style_index_0_src_scoped_true_lang = "";
4525
4555
  const _sfc_main$5 = {
4526
4556
  components: {
@@ -4572,7 +4602,7 @@ const _sfc_main$5 = {
4572
4602
  const loading = ref(false);
4573
4603
  const showDeleteModal = ref(false);
4574
4604
  const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
4575
- const topicComponents = computed(() => {
4605
+ const topicObjects = computed(() => {
4576
4606
  var _a, _b;
4577
4607
  const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
4578
4608
  return (components2 == null ? void 0 : components2.selection) || [];
@@ -4602,14 +4632,14 @@ const _sfc_main$5 = {
4602
4632
  loading,
4603
4633
  priorityColor,
4604
4634
  showDeleteModal,
4605
- topicComponents,
4606
4635
  topicLabels,
4636
+ topicObjects,
4607
4637
  adjustTextColor,
4608
4638
  removeTopic
4609
4639
  };
4610
4640
  }
4611
4641
  };
4612
- const _withScopeId = (n) => (pushScopeId("data-v-75c785d0"), n = n(), popScopeId(), n);
4642
+ const _withScopeId = (n) => (pushScopeId("data-v-7ced0e0c"), n = n(), popScopeId(), n);
4613
4643
  const _hoisted_1$2 = { class: "bcf-topic-overview" };
4614
4644
  const _hoisted_2$1 = { class: "bcf-topic-overview__header" };
4615
4645
  const _hoisted_3 = { class: "bcf-topic-overview__header__title" };
@@ -4750,7 +4780,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
4750
4780
  width: "100%",
4751
4781
  fill: "",
4752
4782
  radius: "",
4753
- disabled: $setup.topicComponents.length === 0,
4783
+ disabled: $setup.topicObjects.length === 0,
4754
4784
  onClick: _cache[4] || (_cache[4] = ($event) => _ctx.$emit("view-components", $props.bcfTopic))
4755
4785
  }, {
4756
4786
  default: withCtx(() => [
@@ -4759,8 +4789,8 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
4759
4789
  size: "xs",
4760
4790
  margin: "0 6px 0 0"
4761
4791
  }),
4762
- $setup.topicComponents.length > 0 ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
4763
- createTextVNode(toDisplayString(_ctx.$t("BcfComponents.BcfTopicOverview.elements", { count: $setup.topicComponents.length })), 1)
4792
+ $setup.topicObjects.length > 0 ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
4793
+ createTextVNode(toDisplayString(_ctx.$t("BcfComponents.BcfTopicOverview.elements", { count: $setup.topicObjects.length })), 1)
4764
4794
  ], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
4765
4795
  createTextVNode(toDisplayString(_ctx.$t("BcfComponents.BcfTopicOverview.noElements")), 1)
4766
4796
  ], 64))
@@ -4785,7 +4815,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
4785
4815
  name: "model3d",
4786
4816
  size: "xs"
4787
4817
  }),
4788
- createElementVNode("span", null, toDisplayString(_ctx.$t("BcfComponents.BcfTopicOverview.elements", { count: $setup.topicComponents.length })), 1)
4818
+ createElementVNode("span", null, toDisplayString(_ctx.$t("BcfComponents.BcfTopicOverview.elements", { count: $setup.topicObjects.length })), 1)
4789
4819
  ])) : createCommentVNode("", true),
4790
4820
  createElementVNode("div", _hoisted_10, [
4791
4821
  createElementVNode("span", _hoisted_11, toDisplayString(_ctx.$t("BcfComponents.BcfTopicOverview.type")), 1),
@@ -4880,7 +4910,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
4880
4910
  ])) : createCommentVNode("", true)
4881
4911
  ]);
4882
4912
  }
4883
- var BcfTopicOverview = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render$5], ["__scopeId", "data-v-75c785d0"]]);
4913
+ var BcfTopicOverview = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render$5], ["__scopeId", "data-v-7ced0e0c"]]);
4884
4914
  var columnsDef = [
4885
4915
  {
4886
4916
  id: "index",
@@ -5295,4 +5325,4 @@ const components = {
5295
5325
  BcfTopicOverview,
5296
5326
  BcfTopicsTable
5297
5327
  };
5298
- export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, config, getPriorityColor, getStatusColor, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
5328
+ export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, config, getPriorityColor, getStatusColor, getViewpointConfig, getViewpointModels, getViewpointType, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
@@ -1 +1 @@
1
- .bcf-filters__btn-toggle[data-v-1efe16f2]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-1efe16f2]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-1efe16f2]{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-1efe16f2]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-1efe16f2]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-1efe16f2]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-1efe16f2]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-1efe16f2]{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-6cce5009]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-6cce5009]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-6cce5009]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-6cce5009]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-6cce5009]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-6cce5009]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-6cce5009]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-6cce5009]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-6cce5009]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-6cce5009]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-6cce5009]{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-f9b6ed42]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-f9b6ed42]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]{position:relative}.bcf-topic-images__images .image-preview img[data-v-f9b6ed42]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-f9b6ed42]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-f9b6ed42]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-f9b6ed42]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-f9b6ed42]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-f9b6ed42]{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-f9b6ed42]{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-56050af2]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-56050af2]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-56050af2]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-56050af2]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-56050af2]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-56050af2]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-56050af2]{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-6df91d96]{height:100%}.bcf-topic-form__content[data-v-6df91d96]{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-6df91d96]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-6df91d96],.bcf-topic-form__content__head__date[data-v-6df91d96]{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-6df91d96]{min-width:50px}.bcf-topic-form__content__head__date[data-v-6df91d96]{min-width:100px}.bcf-topic-form__content__actions[data-v-6df91d96]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-6df91d96]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-6df91d96],.bcf-topic-form__content__actions .count-annotations[data-v-6df91d96]{min-width:16px;height:16px;margin-left:var(--spacing-unit);padding:0 4px;border-radius:8px;font-size:10px;display:flex;justify-content:center;align-items:center}.bcf-topic-form__content__actions .count-objects[data-v-6df91d96]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-6df91d96]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-6df91d96]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-6df91d96] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-6df91d96] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-6df91d96]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-6df91d96]{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-e5e255f0]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-e5e255f0]{width:100%;height:100%}.user-avatar--primary[data-v-e5e255f0]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-e5e255f0]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-e5e255f0]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-7631a934]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-7631a934]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-7631a934]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-7631a934]{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-7631a934] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-7631a934] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-7631a934] .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-viewpoints[data-v-500a5c19]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-viewpoints.empty[data-v-500a5c19]{display:flex;justify-content:center;align-items:center}.bcf-topic-viewpoints .status-badge[data-v-500a5c19]{position:absolute;z-index:1;top:calc(var(--spacing-unit) / 2);left:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-500a5c19] .bimdata-carousel{height:100%}.bcf-topic-viewpoints[data-v-500a5c19] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-viewpoints[data-v-500a5c19] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-viewpoints[data-v-500a5c19] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-500a5c19] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .snapshot-preview[data-v-500a5c19]{position:relative;width:100%;height:100%}.bcf-topic-viewpoints .snapshot-preview img[data-v-500a5c19]{width:100%;height:100%;object-fit:cover}.bcf-topic-viewpoints .snapshot-preview .icon[data-v-500a5c19]{position:absolute;z-index:1;bottom:calc(var(--spacing-unit) / 2);right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .default-image[data-v-500a5c19]{width:170px;height:170px;padding:12px}.bcf-topic-overview[data-v-75c785d0]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-75c785d0]{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-75c785d0]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-75c785d0]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-75c785d0]{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-75c785d0]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-75c785d0],.bcf-topic-overview__content__head__date[data-v-75c785d0]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-75c785d0]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-75c785d0]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__card[data-v-75c785d0]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-75c785d0]{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-75c785d0]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-75c785d0]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-75c785d0]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-fe159426]{margin:auto}.bcf-topic-index-cell[data-v-73373bfa]{position:relative;display:flex;justify-content:center;align-items:center}.bcf-topic-index-cell .left-stripe[data-v-73373bfa]{position:absolute;left:calc(0px - var(--spacing-unit));width:10px;height:42px}.bcf-topic-priority-cell[data-v-7be782b8]{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-a51b4af6]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
1
+ .bcf-filters__btn-toggle[data-v-1efe16f2]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-1efe16f2]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-1efe16f2]{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-1efe16f2]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-1efe16f2]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-1efe16f2]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-1efe16f2]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-1efe16f2]{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-4d6c5487]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-4d6c5487]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-4d6c5487]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-4d6c5487]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-4d6c5487]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-4d6c5487]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-4d6c5487]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-4d6c5487]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-4d6c5487]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-4d6c5487]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-4d6c5487]{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-f9b6ed42]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-f9b6ed42]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]{position:relative}.bcf-topic-images__images .image-preview img[data-v-f9b6ed42]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-f9b6ed42]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-f9b6ed42]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-f9b6ed42]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-f9b6ed42]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-f9b6ed42]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-f9b6ed42]{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-f9b6ed42]{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-aca32dc4]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-aca32dc4]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-aca32dc4]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-aca32dc4]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-aca32dc4]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-aca32dc4]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-aca32dc4]{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-8ba2f600]{height:100%}.bcf-topic-form__content[data-v-8ba2f600]{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-8ba2f600]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-8ba2f600],.bcf-topic-form__content__head__date[data-v-8ba2f600]{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-8ba2f600]{min-width:50px}.bcf-topic-form__content__head__date[data-v-8ba2f600]{min-width:100px}.bcf-topic-form__content__actions[data-v-8ba2f600]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-8ba2f600]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-8ba2f600],.bcf-topic-form__content__actions .count-annotations[data-v-8ba2f600]{min-width:16px;height:16px;margin-left:var(--spacing-unit);padding:0 4px;border-radius:8px;font-size:10px;display:flex;justify-content:center;align-items:center}.bcf-topic-form__content__actions .count-objects[data-v-8ba2f600]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-8ba2f600]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-8ba2f600]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-8ba2f600] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-8ba2f600] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-8ba2f600]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-8ba2f600]{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-e5e255f0]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-e5e255f0]{width:100%;height:100%}.user-avatar--primary[data-v-e5e255f0]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-e5e255f0]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-e5e255f0]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-7631a934]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-7631a934]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-7631a934]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-7631a934]{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-7631a934] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-7631a934] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-7631a934] .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-viewpoints[data-v-0a9e5076]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-viewpoints.empty[data-v-0a9e5076]{display:flex;justify-content:center;align-items:center}.bcf-topic-viewpoints .status-badge[data-v-0a9e5076]{position:absolute;z-index:1;top:calc(var(--spacing-unit) / 2);left:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-0a9e5076] .bimdata-carousel{height:100%}.bcf-topic-viewpoints[data-v-0a9e5076] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-viewpoints[data-v-0a9e5076] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-viewpoints[data-v-0a9e5076] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints[data-v-0a9e5076] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .snapshot-preview[data-v-0a9e5076]{position:relative;width:100%;height:100%}.bcf-topic-viewpoints .snapshot-preview img[data-v-0a9e5076]{width:100%;height:100%;object-fit:cover}.bcf-topic-viewpoints .snapshot-preview .icon[data-v-0a9e5076]{position:absolute;z-index:1;bottom:calc(var(--spacing-unit) / 2);right:calc(var(--spacing-unit) / 2)}.bcf-topic-viewpoints .default-image[data-v-0a9e5076]{width:170px;height:170px;padding:12px}.bcf-topic-overview[data-v-7ced0e0c]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-7ced0e0c]{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-7ced0e0c]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-7ced0e0c]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-7ced0e0c]{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-7ced0e0c]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-7ced0e0c],.bcf-topic-overview__content__head__date[data-v-7ced0e0c]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-7ced0e0c]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-7ced0e0c]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__card[data-v-7ced0e0c]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-7ced0e0c]{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-7ced0e0c]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-7ced0e0c]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-7ced0e0c]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-fe159426]{margin:auto}.bcf-topic-index-cell[data-v-73373bfa]{position:relative;display:flex;justify-content:center;align-items:center}.bcf-topic-index-cell .left-stripe[data-v-73373bfa]{position:absolute;left:calc(0px - var(--spacing-unit));width:10px;height:42px}.bcf-topic-priority-cell[data-v-7be782b8]{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-a51b4af6]{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": "2.0.0-rc.14",
3
+ "version": "2.0.0-rc.17",
4
4
  "files": [
5
5
  "dist",
6
6
  "vue2-plugin.js",