@bimdata/bcf-components 2.0.0-rc.13 → 2.0.0-rc.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vue2/bcf-components.es.js +54 -18
- package/dist/vue2/style.css +1 -1
- package/dist/vue3/bcf-components.es.js +54 -18
- package/dist/vue3/style.css +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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() {
|
|
@@ -2899,10 +2909,10 @@ const __vue2_script$b = {
|
|
|
2899
2909
|
const [type, config2] = Object.entries(VIEWPOINT_CONFIG).find(([, c2]) => c2.plugin === id);
|
|
2900
2910
|
viewers.forEach(async (viewer) => {
|
|
2901
2911
|
const viewpoint = await viewer.getViewpoint();
|
|
2902
|
-
const { order
|
|
2912
|
+
const { order } = config2 != null ? config2 : {};
|
|
2903
2913
|
viewpoint.order = order;
|
|
2904
|
-
viewpoint
|
|
2905
|
-
viewpoint
|
|
2914
|
+
viewpoint[VIEWPOINT_TYPE_FIELD] = type;
|
|
2915
|
+
viewpoint[VIEWPOINT_MODELS_FIELD] = viewer.getLoadedModels().map((m) => m.id).join(",");
|
|
2906
2916
|
emit("add-viewpoint", viewpoint);
|
|
2907
2917
|
});
|
|
2908
2918
|
});
|
|
@@ -2917,7 +2927,7 @@ const __vue2_script$b = {
|
|
|
2917
2927
|
}
|
|
2918
2928
|
};
|
|
2919
2929
|
const __cssModules$b = {};
|
|
2920
|
-
var __component__$b = /* @__PURE__ */ normalizeComponent(__vue2_script$b, render$b, staticRenderFns$b, false, __vue2_injectStyles$b, "
|
|
2930
|
+
var __component__$b = /* @__PURE__ */ normalizeComponent(__vue2_script$b, render$b, staticRenderFns$b, false, __vue2_injectStyles$b, "0bd88982", null, null);
|
|
2921
2931
|
function __vue2_injectStyles$b(context) {
|
|
2922
2932
|
for (let o2 in __cssModules$b) {
|
|
2923
2933
|
this[o2] = __cssModules$b[o2];
|
|
@@ -3117,12 +3127,36 @@ const __vue2_script$a = {
|
|
|
3117
3127
|
loading.value = true;
|
|
3118
3128
|
viewpointsToUpdate.value = viewpoints.value.map((viewpoint) => __spreadProps(__spreadValues({}, viewpoint), { snapshot: void 0 }));
|
|
3119
3129
|
if (viewpointsToUpdate.value.length === 0) {
|
|
3120
|
-
viewpointsToCreate.value.sort((v1, v2) =>
|
|
3130
|
+
viewpointsToCreate.value.sort((v1, v2) => {
|
|
3131
|
+
var _a2, _b2;
|
|
3132
|
+
return ((_a2 = v1.order) != null ? _a2 : Infinity) - ((_b2 = v2.order) != null ? _b2 : Infinity);
|
|
3133
|
+
});
|
|
3121
3134
|
}
|
|
3122
3135
|
if (props.bcfTopicObjects) {
|
|
3123
3136
|
if (viewpointsToUpdate.value.length > 0 || viewpointsToCreate.value.length > 0) {
|
|
3124
|
-
|
|
3125
|
-
|
|
3137
|
+
[
|
|
3138
|
+
...viewpointsToUpdate.value,
|
|
3139
|
+
...viewpointsToCreate.value
|
|
3140
|
+
].forEach((viewpoint) => {
|
|
3141
|
+
Object.assign(viewpoint, props.bcfTopicObjects);
|
|
3142
|
+
if (!viewpoint.components) {
|
|
3143
|
+
viewpoint.components = {};
|
|
3144
|
+
}
|
|
3145
|
+
if (!viewpoint.components.selection) {
|
|
3146
|
+
viewpoint.components.selection = [];
|
|
3147
|
+
}
|
|
3148
|
+
if (!viewpoint.components.visibility) {
|
|
3149
|
+
viewpoint.components.visibility = {
|
|
3150
|
+
default_visibility: true,
|
|
3151
|
+
exceptions: [],
|
|
3152
|
+
view_setup_hints: {
|
|
3153
|
+
spaces_visible: false,
|
|
3154
|
+
space_boundaries_visible: false,
|
|
3155
|
+
openings_visible: false
|
|
3156
|
+
}
|
|
3157
|
+
};
|
|
3158
|
+
}
|
|
3159
|
+
});
|
|
3126
3160
|
} else {
|
|
3127
3161
|
viewpointsToCreate.value.push({
|
|
3128
3162
|
components: props.bcfTopicObjects
|
|
@@ -3130,8 +3164,10 @@ const __vue2_script$a = {
|
|
|
3130
3164
|
}
|
|
3131
3165
|
}
|
|
3132
3166
|
if (props.bcfTopicAnnotations) {
|
|
3133
|
-
|
|
3134
|
-
|
|
3167
|
+
[
|
|
3168
|
+
...viewpointsToUpdate.value,
|
|
3169
|
+
...viewpointsToCreate.value
|
|
3170
|
+
].forEach((viewpoint) => viewpoint.pins = props.bcfTopicAnnotations);
|
|
3135
3171
|
}
|
|
3136
3172
|
const data = {
|
|
3137
3173
|
guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
|
|
@@ -3191,7 +3227,7 @@ const __vue2_script$a = {
|
|
|
3191
3227
|
}
|
|
3192
3228
|
};
|
|
3193
3229
|
const __cssModules$a = {};
|
|
3194
|
-
var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "
|
|
3230
|
+
var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "6cd2b994", null, null);
|
|
3195
3231
|
function __vue2_injectStyles$a(context) {
|
|
3196
3232
|
for (let o2 in __cssModules$a) {
|
|
3197
3233
|
this[o2] = __cssModules$a[o2];
|
|
@@ -3994,7 +4030,7 @@ const __vue2_script$6 = {
|
|
|
3994
4030
|
const viewpoints = computed(() => props.bcfTopic.viewpoints.filter((viewpoint) => viewpoint.snapshot).map((viewpoint) => {
|
|
3995
4031
|
var _a;
|
|
3996
4032
|
return __spreadProps(__spreadValues({}, viewpoint), {
|
|
3997
|
-
icon: (_a =
|
|
4033
|
+
icon: (_a = getViewpointConfig(viewpoint)) == null ? void 0 : _a.icon
|
|
3998
4034
|
});
|
|
3999
4035
|
}));
|
|
4000
4036
|
const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
|
|
@@ -4006,7 +4042,7 @@ const __vue2_script$6 = {
|
|
|
4006
4042
|
}
|
|
4007
4043
|
};
|
|
4008
4044
|
const __cssModules$6 = {};
|
|
4009
|
-
var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "
|
|
4045
|
+
var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "6ca0f1b6", null, null);
|
|
4010
4046
|
function __vue2_injectStyles$6(context) {
|
|
4011
4047
|
for (let o2 in __cssModules$6) {
|
|
4012
4048
|
this[o2] = __cssModules$6[o2];
|
|
@@ -4571,4 +4607,4 @@ const components = {
|
|
|
4571
4607
|
BcfTopicOverview,
|
|
4572
4608
|
BcfTopicsTable
|
|
4573
4609
|
};
|
|
4574
|
-
export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, config, getPriorityColor, getStatusColor, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
|
|
4610
|
+
export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, config, getPriorityColor, getStatusColor, getViewpointConfig, getViewpointModels, getViewpointType, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
|
package/dist/vue2/style.css
CHANGED
|
@@ -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-574ca2ba]{height:100%}.bcf-topic-form__content[data-v-574ca2ba]{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-574ca2ba]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-574ca2ba],.bcf-topic-form__content__head__date[data-v-574ca2ba]{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-574ca2ba]{min-width:50px}.bcf-topic-form__content__head__date[data-v-574ca2ba]{min-width:100px}.bcf-topic-form__content__actions[data-v-574ca2ba]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-574ca2ba]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-574ca2ba],.bcf-topic-form__content__actions .count-annotations[data-v-574ca2ba]{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-574ca2ba]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-574ca2ba]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-574ca2ba]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-574ca2ba] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-574ca2ba] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-574ca2ba]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-574ca2ba]{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-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-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-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}
|
|
@@ -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
|
-
|
|
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() {
|
|
@@ -2947,10 +2957,10 @@ const _sfc_main$b = {
|
|
|
2947
2957
|
const [type, config2] = Object.entries(VIEWPOINT_CONFIG).find(([, c2]) => c2.plugin === id);
|
|
2948
2958
|
viewers.forEach(async (viewer) => {
|
|
2949
2959
|
const viewpoint = await viewer.getViewpoint();
|
|
2950
|
-
const { order
|
|
2960
|
+
const { order } = config2 != null ? config2 : {};
|
|
2951
2961
|
viewpoint.order = order;
|
|
2952
|
-
viewpoint
|
|
2953
|
-
viewpoint
|
|
2962
|
+
viewpoint[VIEWPOINT_TYPE_FIELD] = type;
|
|
2963
|
+
viewpoint[VIEWPOINT_MODELS_FIELD] = viewer.getLoadedModels().map((m2) => m2.id).join(",");
|
|
2954
2964
|
emit("add-viewpoint", viewpoint);
|
|
2955
2965
|
});
|
|
2956
2966
|
});
|
|
@@ -3015,7 +3025,7 @@ function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3015
3025
|
]))
|
|
3016
3026
|
]);
|
|
3017
3027
|
}
|
|
3018
|
-
var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["render", _sfc_render$b], ["__scopeId", "data-v-
|
|
3028
|
+
var BcfTopicSnapshots = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["render", _sfc_render$b], ["__scopeId", "data-v-aca32dc4"]]);
|
|
3019
3029
|
var BcfTopicForm_scss_vue_type_style_index_0_src_scoped_true_lang = "";
|
|
3020
3030
|
const _sfc_main$a = {
|
|
3021
3031
|
components: {
|
|
@@ -3164,12 +3174,36 @@ const _sfc_main$a = {
|
|
|
3164
3174
|
loading.value = true;
|
|
3165
3175
|
viewpointsToUpdate.value = viewpoints.value.map((viewpoint) => __spreadProps(__spreadValues({}, viewpoint), { snapshot: void 0 }));
|
|
3166
3176
|
if (viewpointsToUpdate.value.length === 0) {
|
|
3167
|
-
viewpointsToCreate.value.sort((v1, v2) =>
|
|
3177
|
+
viewpointsToCreate.value.sort((v1, v2) => {
|
|
3178
|
+
var _a2, _b2;
|
|
3179
|
+
return ((_a2 = v1.order) != null ? _a2 : Infinity) - ((_b2 = v2.order) != null ? _b2 : Infinity);
|
|
3180
|
+
});
|
|
3168
3181
|
}
|
|
3169
3182
|
if (props.bcfTopicObjects) {
|
|
3170
3183
|
if (viewpointsToUpdate.value.length > 0 || viewpointsToCreate.value.length > 0) {
|
|
3171
|
-
|
|
3172
|
-
|
|
3184
|
+
[
|
|
3185
|
+
...viewpointsToUpdate.value,
|
|
3186
|
+
...viewpointsToCreate.value
|
|
3187
|
+
].forEach((viewpoint) => {
|
|
3188
|
+
Object.assign(viewpoint, props.bcfTopicObjects);
|
|
3189
|
+
if (!viewpoint.components) {
|
|
3190
|
+
viewpoint.components = {};
|
|
3191
|
+
}
|
|
3192
|
+
if (!viewpoint.components.selection) {
|
|
3193
|
+
viewpoint.components.selection = [];
|
|
3194
|
+
}
|
|
3195
|
+
if (!viewpoint.components.visibility) {
|
|
3196
|
+
viewpoint.components.visibility = {
|
|
3197
|
+
default_visibility: true,
|
|
3198
|
+
exceptions: [],
|
|
3199
|
+
view_setup_hints: {
|
|
3200
|
+
spaces_visible: false,
|
|
3201
|
+
space_boundaries_visible: false,
|
|
3202
|
+
openings_visible: false
|
|
3203
|
+
}
|
|
3204
|
+
};
|
|
3205
|
+
}
|
|
3206
|
+
});
|
|
3173
3207
|
} else {
|
|
3174
3208
|
viewpointsToCreate.value.push({
|
|
3175
3209
|
components: props.bcfTopicObjects
|
|
@@ -3177,8 +3211,10 @@ const _sfc_main$a = {
|
|
|
3177
3211
|
}
|
|
3178
3212
|
}
|
|
3179
3213
|
if (props.bcfTopicAnnotations) {
|
|
3180
|
-
|
|
3181
|
-
|
|
3214
|
+
[
|
|
3215
|
+
...viewpointsToUpdate.value,
|
|
3216
|
+
...viewpointsToCreate.value
|
|
3217
|
+
].forEach((viewpoint) => viewpoint.pins = props.bcfTopicAnnotations);
|
|
3182
3218
|
}
|
|
3183
3219
|
const data = {
|
|
3184
3220
|
guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
|
|
@@ -3457,7 +3493,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3457
3493
|
})) : createCommentVNode("", true)
|
|
3458
3494
|
]);
|
|
3459
3495
|
}
|
|
3460
|
-
var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a], ["__scopeId", "data-v-
|
|
3496
|
+
var BcfTopicForm = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a], ["__scopeId", "data-v-8ba2f600"]]);
|
|
3461
3497
|
var UserAvatar_scss_vue_type_style_index_0_src_scoped_true_lang = "";
|
|
3462
3498
|
const _sfc_main$9 = {
|
|
3463
3499
|
props: {
|
|
@@ -4453,7 +4489,7 @@ const _sfc_main$6 = {
|
|
|
4453
4489
|
const viewpoints = computed(() => props.bcfTopic.viewpoints.filter((viewpoint) => viewpoint.snapshot).map((viewpoint) => {
|
|
4454
4490
|
var _a;
|
|
4455
4491
|
return __spreadProps(__spreadValues({}, viewpoint), {
|
|
4456
|
-
icon: (_a =
|
|
4492
|
+
icon: (_a = getViewpointConfig(viewpoint)) == null ? void 0 : _a.icon
|
|
4457
4493
|
});
|
|
4458
4494
|
}));
|
|
4459
4495
|
const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
|
|
@@ -4517,7 +4553,7 @@ function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
4517
4553
|
}))
|
|
4518
4554
|
], 2);
|
|
4519
4555
|
}
|
|
4520
|
-
var BcfTopicViewpoints = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render$6], ["__scopeId", "data-v-
|
|
4556
|
+
var BcfTopicViewpoints = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render$6], ["__scopeId", "data-v-0a9e5076"]]);
|
|
4521
4557
|
var BcfTopicOverview_scss_vue_type_style_index_0_src_scoped_true_lang = "";
|
|
4522
4558
|
const _sfc_main$5 = {
|
|
4523
4559
|
components: {
|
|
@@ -5292,4 +5328,4 @@ const components = {
|
|
|
5292
5328
|
BcfTopicOverview,
|
|
5293
5329
|
BcfTopicsTable
|
|
5294
5330
|
};
|
|
5295
|
-
export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, config, getPriorityColor, getStatusColor, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
|
|
5331
|
+
export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, config, getPriorityColor, getStatusColor, getViewpointConfig, getViewpointModels, getViewpointType, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
|
package/dist/vue3/style.css
CHANGED
|
@@ -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-231a67b7]{height:100%}.bcf-topic-form__content[data-v-231a67b7]{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-231a67b7]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-231a67b7],.bcf-topic-form__content__head__date[data-v-231a67b7]{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-231a67b7]{min-width:50px}.bcf-topic-form__content__head__date[data-v-231a67b7]{min-width:100px}.bcf-topic-form__content__actions[data-v-231a67b7]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-231a67b7]{flex-grow:1}.bcf-topic-form__content__actions .count-objects[data-v-231a67b7],.bcf-topic-form__content__actions .count-annotations[data-v-231a67b7]{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-231a67b7]{background-color:var(--color-primary);color:var(--color-white)}.bcf-topic-form__content__actions .count-annotations[data-v-231a67b7]{background-color:var(--color-white);color:var(--color-primary)}.bcf-topic-form__content__body .bimdata-select[data-v-231a67b7]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-231a67b7] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-231a67b7] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-231a67b7]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-231a67b7]{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-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-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-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}
|