@bimdata/bcf-components 1.1.0-rc.29 → 1.1.0-rc.31

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.
@@ -18,7 +18,7 @@ var __spreadValues = (a2, b2) => {
18
18
  return a2;
19
19
  };
20
20
  var __spreadProps = (a2, b2) => __defProps(a2, __getOwnPropDescs(b2));
21
- import { reactive, computed, ref, watch, toRaw, inject } from "@vue/composition-api";
21
+ import { reactive, computed, ref, watch, toRaw, inject } from "vue";
22
22
  let apiClient = null;
23
23
  function setApiClient(client) {
24
24
  apiClient = client;
@@ -167,6 +167,41 @@ function useBcfSort(topics) {
167
167
  sortOrderDate
168
168
  };
169
169
  }
170
+ const EXTENSION_TYPES = [
171
+ "Priority",
172
+ "Type",
173
+ "Stage",
174
+ "Status",
175
+ "Label"
176
+ ];
177
+ const EXTENSION_WITH_COLOR = [
178
+ "Priority",
179
+ "Status"
180
+ ];
181
+ const EXTENSION_FIELDS = {
182
+ Priority: "priority",
183
+ Type: "topicType",
184
+ Stage: "stage",
185
+ Status: "topicStatus",
186
+ Label: "label"
187
+ };
188
+ const EXTENSION_LIST_FIELDS = {
189
+ Priority: "priorities",
190
+ Type: "topicTypes",
191
+ Stage: "stages",
192
+ Status: "topicStatuses",
193
+ Label: "topicLabels"
194
+ };
195
+ const DEFAULT_PRIORITY_COLOR = "D8D8D8";
196
+ const DEFAULT_STATUS_COLOR = "D8D8D8";
197
+ function getPriorityColor(topic, detailedExtensions) {
198
+ const priorityDetail = detailedExtensions.priorities.find((p2) => p2.priority === topic.priority);
199
+ return (priorityDetail == null ? void 0 : priorityDetail.color) || DEFAULT_PRIORITY_COLOR;
200
+ }
201
+ function getStatusColor(topic, detailedExtensions) {
202
+ const statusDetail = detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === topic.topicStatus);
203
+ return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
204
+ }
170
205
  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() {
171
206
  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 };
172
207
  }, style() {
@@ -1051,7 +1086,7 @@ const __vue2_script$j = {
1051
1086
  }
1052
1087
  };
1053
1088
  const __cssModules$j = {};
1054
- var __component__$j = /* @__PURE__ */ normalizeComponent(__vue2_script$j, render$j, staticRenderFns$j, false, __vue2_injectStyles$j, "2db12d9a", null, null);
1089
+ var __component__$j = /* @__PURE__ */ normalizeComponent(__vue2_script$j, render$j, staticRenderFns$j, false, __vue2_injectStyles$j, "2ef5e90d", null, null);
1055
1090
  function __vue2_injectStyles$j(context) {
1056
1091
  for (let o2 in __cssModules$j) {
1057
1092
  this[o2] = __cssModules$j[o2];
@@ -1060,33 +1095,6 @@ function __vue2_injectStyles$j(context) {
1060
1095
  var BcfFilters = /* @__PURE__ */ function() {
1061
1096
  return __component__$j.exports;
1062
1097
  }();
1063
- const EXTENSION_TYPES = [
1064
- "Priority",
1065
- "Type",
1066
- "Stage",
1067
- "Status",
1068
- "Label"
1069
- ];
1070
- const EXTENSION_WITH_COLOR = [
1071
- "Priority",
1072
- "Status"
1073
- ];
1074
- const EXTENSION_FIELDS = {
1075
- Priority: "priority",
1076
- Type: "topicType",
1077
- Stage: "stage",
1078
- Status: "topicStatus",
1079
- Label: "label"
1080
- };
1081
- const EXTENSION_LIST_FIELDS = {
1082
- Priority: "priorities",
1083
- Type: "topicTypes",
1084
- Stage: "stages",
1085
- Status: "topicStatuses",
1086
- Label: "topicLabels"
1087
- };
1088
- const DEFAULT_PRIORITY_COLOR = "D8D8D8";
1089
- const DEFAULT_STATUS_COLOR = "D8D8D8";
1090
1098
  const colors = Object.freeze({
1091
1099
  bisque: "ffe4c4",
1092
1100
  orange: "ffa500",
@@ -1381,7 +1389,7 @@ const __vue2_script$i = {
1381
1389
  }
1382
1390
  };
1383
1391
  const __cssModules$i = {};
1384
- var __component__$i = /* @__PURE__ */ normalizeComponent(__vue2_script$i, render$i, staticRenderFns$i, false, __vue2_injectStyles$i, "cb6da68e", null, null);
1392
+ var __component__$i = /* @__PURE__ */ normalizeComponent(__vue2_script$i, render$i, staticRenderFns$i, false, __vue2_injectStyles$i, "27af5073", null, null);
1385
1393
  function __vue2_injectStyles$i(context) {
1386
1394
  for (let o2 in __cssModules$i) {
1387
1395
  this[o2] = __cssModules$i[o2];
@@ -1475,7 +1483,7 @@ const __vue2_script$h = {
1475
1483
  }
1476
1484
  };
1477
1485
  const __cssModules$h = {};
1478
- var __component__$h = /* @__PURE__ */ normalizeComponent(__vue2_script$h, render$h, staticRenderFns$h, false, __vue2_injectStyles$h, "72c52d15", null, null);
1486
+ var __component__$h = /* @__PURE__ */ normalizeComponent(__vue2_script$h, render$h, staticRenderFns$h, false, __vue2_injectStyles$h, "6e8123c6", null, null);
1479
1487
  function __vue2_injectStyles$h(context) {
1480
1488
  for (let o2 in __cssModules$h) {
1481
1489
  this[o2] = __cssModules$h[o2];
@@ -1839,7 +1847,7 @@ const __vue2_script$f = {
1839
1847
  }
1840
1848
  };
1841
1849
  const __cssModules$f = {};
1842
- var __component__$f = /* @__PURE__ */ normalizeComponent(__vue2_script$f, render$f, staticRenderFns$f, false, __vue2_injectStyles$f, "5dc331a8", null, null);
1850
+ var __component__$f = /* @__PURE__ */ normalizeComponent(__vue2_script$f, render$f, staticRenderFns$f, false, __vue2_injectStyles$f, "08cce8e2", null, null);
1843
1851
  function __vue2_injectStyles$f(context) {
1844
1852
  for (let o2 in __cssModules$f) {
1845
1853
  this[o2] = __cssModules$f[o2];
@@ -1848,14 +1856,6 @@ function __vue2_injectStyles$f(context) {
1848
1856
  var BcfStatistics = /* @__PURE__ */ function() {
1849
1857
  return __component__$f.exports;
1850
1858
  }();
1851
- function getPriorityColor(topic, detailedExtensions) {
1852
- const priorityDetail = detailedExtensions.priorities.find((p2) => p2.priority === topic.priority);
1853
- return (priorityDetail == null ? void 0 : priorityDetail.color) || DEFAULT_PRIORITY_COLOR;
1854
- }
1855
- function getStatusColor(topic, detailedExtensions) {
1856
- const statusDetail = detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === topic.topicStatus);
1857
- return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
1858
- }
1859
1859
  var t$6 = { props: { width: { type: String, default: "100%" }, minWidth: { type: String }, maxWidth: { type: String }, text: { type: String, default: "" }, cutPosition: { type: String, default: "middle", validator: (t2) => ["start", "middle", "end"].includes(t2) }, tooltip: { type: Boolean, default: true }, tooltipPosition: { type: String, default: "bottom", validator: (t2) => ["top", "right", "bottom", "left"].includes(t2) }, tooltipColor: { type: String, default: "primary", validator: (t2) => ["white", "primary", "secondary", "granite-light", "silver-light"].includes(t2) } }, data: () => ({ showTooltip: false, isOverflowing: false, textHead: "", textTail: "" }), watch: { width: "computeText", text: "computeText", cutPosition: "computeText" }, mounted() {
1860
1860
  this.observer = new ResizeObserver(() => this.computeText()), this.observer.observe(this.$refs.textBox), this.computeText();
1861
1861
  }, beforeUnmount() {
@@ -1994,7 +1994,7 @@ const __vue2_script$d = {
1994
1994
  }
1995
1995
  };
1996
1996
  const __cssModules$d = {};
1997
- var __component__$d = /* @__PURE__ */ normalizeComponent(__vue2_script$d, render$d, staticRenderFns$d, false, __vue2_injectStyles$d, "7e55712c", null, null);
1997
+ var __component__$d = /* @__PURE__ */ normalizeComponent(__vue2_script$d, render$d, staticRenderFns$d, false, __vue2_injectStyles$d, "5b20213c", null, null);
1998
1998
  function __vue2_injectStyles$d(context) {
1999
1999
  for (let o2 in __cssModules$d) {
2000
2000
  this[o2] = __cssModules$d[o2];
@@ -2796,7 +2796,7 @@ const __vue2_script$9 = {
2796
2796
  }
2797
2797
  };
2798
2798
  const __cssModules$9 = {};
2799
- var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "37d61702", null, null);
2799
+ var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "15f8e3a0", null, null);
2800
2800
  function __vue2_injectStyles$9(context) {
2801
2801
  for (let o2 in __cssModules$9) {
2802
2802
  this[o2] = __cssModules$9[o2];
@@ -3055,7 +3055,7 @@ const __vue2_script$8 = {
3055
3055
  }
3056
3056
  };
3057
3057
  const __cssModules$8 = {};
3058
- var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "60ab0668", null, null);
3058
+ var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "f9d9dcfc", null, null);
3059
3059
  function __vue2_injectStyles$8(context) {
3060
3060
  for (let o2 in __cssModules$8) {
3061
3061
  this[o2] = __cssModules$8[o2];
@@ -3596,7 +3596,7 @@ const __vue2_script$7 = {
3596
3596
  }
3597
3597
  };
3598
3598
  const __cssModules$7 = {};
3599
- var __component__$7 = /* @__PURE__ */ normalizeComponent(__vue2_script$7, render$7, staticRenderFns$7, false, __vue2_injectStyles$7, "555abc52", null, null);
3599
+ var __component__$7 = /* @__PURE__ */ normalizeComponent(__vue2_script$7, render$7, staticRenderFns$7, false, __vue2_injectStyles$7, "f84b809a", null, null);
3600
3600
  function __vue2_injectStyles$7(context) {
3601
3601
  for (let o2 in __cssModules$7) {
3602
3602
  this[o2] = __cssModules$7[o2];
@@ -3704,7 +3704,7 @@ const __vue2_script$6 = {
3704
3704
  }
3705
3705
  };
3706
3706
  const __cssModules$6 = {};
3707
- var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "b47244ac", null, null);
3707
+ var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "47f184d0", null, null);
3708
3708
  function __vue2_injectStyles$6(context) {
3709
3709
  for (let o2 in __cssModules$6) {
3710
3710
  this[o2] = __cssModules$6[o2];
@@ -3783,7 +3783,7 @@ const __vue2_script$5 = {
3783
3783
  }
3784
3784
  };
3785
3785
  const __cssModules$5 = {};
3786
- var __component__$5 = /* @__PURE__ */ normalizeComponent(__vue2_script$5, render$5, staticRenderFns$5, false, __vue2_injectStyles$5, "35edf7c8", null, null);
3786
+ var __component__$5 = /* @__PURE__ */ normalizeComponent(__vue2_script$5, render$5, staticRenderFns$5, false, __vue2_injectStyles$5, "561aa0f8", null, null);
3787
3787
  function __vue2_injectStyles$5(context) {
3788
3788
  for (let o2 in __cssModules$5) {
3789
3789
  this[o2] = __cssModules$5[o2];
@@ -3922,7 +3922,7 @@ const __vue2_script$4 = {
3922
3922
  }
3923
3923
  };
3924
3924
  const __cssModules$4 = {};
3925
- var __component__$4 = /* @__PURE__ */ normalizeComponent(__vue2_script$4, render$4, staticRenderFns$4, false, __vue2_injectStyles$4, "2fe121d2", null, null);
3925
+ var __component__$4 = /* @__PURE__ */ normalizeComponent(__vue2_script$4, render$4, staticRenderFns$4, false, __vue2_injectStyles$4, "1d986817", null, null);
3926
3926
  function __vue2_injectStyles$4(context) {
3927
3927
  for (let o2 in __cssModules$4) {
3928
3928
  this[o2] = __cssModules$4[o2];
@@ -4177,7 +4177,7 @@ const __vue2_script$2 = {
4177
4177
  }
4178
4178
  };
4179
4179
  const __cssModules$2 = {};
4180
- var __component__$2 = /* @__PURE__ */ normalizeComponent(__vue2_script$2, render$2, staticRenderFns$2, false, __vue2_injectStyles$2, "ef38ad94", null, null);
4180
+ var __component__$2 = /* @__PURE__ */ normalizeComponent(__vue2_script$2, render$2, staticRenderFns$2, false, __vue2_injectStyles$2, "691e94e8", null, null);
4181
4181
  function __vue2_injectStyles$2(context) {
4182
4182
  for (let o2 in __cssModules$2) {
4183
4183
  this[o2] = __cssModules$2[o2];
@@ -4217,7 +4217,7 @@ const __vue2_script$1 = {
4217
4217
  }
4218
4218
  };
4219
4219
  const __cssModules$1 = {};
4220
- var __component__$1 = /* @__PURE__ */ normalizeComponent(__vue2_script$1, render$1, staticRenderFns$1, false, __vue2_injectStyles$1, "26d68c1e", null, null);
4220
+ var __component__$1 = /* @__PURE__ */ normalizeComponent(__vue2_script$1, render$1, staticRenderFns$1, false, __vue2_injectStyles$1, "41224f82", null, null);
4221
4221
  function __vue2_injectStyles$1(context) {
4222
4222
  for (let o2 in __cssModules$1) {
4223
4223
  this[o2] = __cssModules$1[o2];
@@ -4318,4 +4318,4 @@ const components = {
4318
4318
  BcfTopicOverview,
4319
4319
  BcfTopicsTable
4320
4320
  };
4321
- export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
4321
+ export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, getPriorityColor, getStatusColor, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
@@ -1 +1 @@
1
- .bcf-filters__btn-toggle[data-v-2db12d9a]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-2db12d9a]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-2db12d9a]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-2db12d9a]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-2db12d9a]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-2db12d9a]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-2db12d9a]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-2db12d9a]{display:flex;justify-content:center}.setting-card-item[data-v-cb6da68e]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-cb6da68e]{display:flex;align-items:center}.setting-card-item__color[data-v-cb6da68e]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-cb6da68e]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-cb6da68e]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-72c52d15]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-72c52d15]{font-weight:700}.setting-card__header__icons[data-v-72c52d15]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-72c52d15]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-72c52d15]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-72c52d15]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-2687ba4b]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-2687ba4b]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-2687ba4b]{height:100%}.bcf-settings__content__text[data-v-2687ba4b]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-5dc331a8]{width:100%}.bcf-statistics__content[data-v-5dc331a8]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-5dc331a8]{flex:1}.bcf-statistics__content__legend[data-v-5dc331a8]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-5dc331a8]{font-weight:700}.bcf-statistics__content__legend__item[data-v-5dc331a8]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-5dc331a8]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-5dc331a8]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-5dc331a8]{font-size:13px}.bcf-statistics__content__legend[data-v-5dc331a8] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-7e55712c]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-7e55712c]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-7e55712c]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-7e55712c]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-7e55712c]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-7e55712c]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-7e55712c]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-7e55712c]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-7e55712c]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-7e55712c]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-7e55712c]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-b5e56a58]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-b5e56a58]{font-size:14px}.bcf-topic-images[data-v-203feea2]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-203feea2]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-203feea2]{position:relative}.bcf-topic-images__images .image-preview img[data-v-203feea2]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-203feea2]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-203feea2]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-203feea2]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-203feea2]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-203feea2]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-203feea2]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-203feea2]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-203feea2]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-203feea2]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-203feea2]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-37d61702]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-37d61702]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-37d61702]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-37d61702]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-37d61702]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-37d61702]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-37d61702]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-60ab0668]{height:100%}.bcf-topic-form__content[data-v-60ab0668]{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-60ab0668]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-60ab0668],.bcf-topic-form__content__head__date[data-v-60ab0668]{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-60ab0668]{min-width:50px}.bcf-topic-form__content__head__date[data-v-60ab0668]{min-width:100px}.bcf-topic-form__content__actions[data-v-60ab0668]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-60ab0668]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-60ab0668]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-60ab0668] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-60ab0668] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-60ab0668]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-60ab0668]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-555abc52]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-555abc52]{width:100%;height:100%}.user-avatar--primary[data-v-555abc52]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-555abc52]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-555abc52]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-b47244ac]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-b47244ac]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-b47244ac]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-b47244ac]{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-b47244ac] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-b47244ac] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-b47244ac] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-35edf7c8]{font-weight:700}.bcf-topic-comments[data-v-35edf7c8] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-2fe121d2]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-2fe121d2]{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-2fe121d2]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-2fe121d2]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-2fe121d2]{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-2fe121d2]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-2fe121d2],.bcf-topic-overview__content__head__date[data-v-2fe121d2]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-2fe121d2]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-2fe121d2]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-2fe121d2]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-overview__content__image .status-badge[data-v-2fe121d2]{position:absolute;z-index:1;left:calc(var(--spacing-unit) / 2);top:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-2fe121d2] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-2fe121d2] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-2fe121d2] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-2fe121d2] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-2fe121d2] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-2fe121d2]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-2fe121d2]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-2fe121d2]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-2fe121d2]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-2fe121d2]{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-2fe121d2]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-2fe121d2]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-2fe121d2]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-763dfe5d]{margin:auto}.bcf-topic-priority-cell[data-v-ef38ad94]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-26d68c1e]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
1
+ .bcf-filters__btn-toggle[data-v-2ef5e90d]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-2ef5e90d]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-2ef5e90d]{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-2ef5e90d]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-2ef5e90d]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-2ef5e90d]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-2ef5e90d]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-2ef5e90d]{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-5b20213c]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-5b20213c]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-5b20213c]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-5b20213c]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-5b20213c]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-5b20213c]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-5b20213c]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-5b20213c]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-5b20213c]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-5b20213c]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-5b20213c]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-b5e56a58]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-b5e56a58]{font-size:14px}.bcf-topic-images[data-v-203feea2]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-203feea2]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-203feea2]{position:relative}.bcf-topic-images__images .image-preview img[data-v-203feea2]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-203feea2]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-203feea2]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-203feea2]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-203feea2]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-203feea2]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-203feea2]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-203feea2]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-203feea2]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-203feea2]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-203feea2]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-15f8e3a0]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-15f8e3a0]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-15f8e3a0]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-15f8e3a0]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-15f8e3a0]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-15f8e3a0]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-15f8e3a0]{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-f9d9dcfc]{height:100%}.bcf-topic-form__content[data-v-f9d9dcfc]{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-f9d9dcfc]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-f9d9dcfc],.bcf-topic-form__content__head__date[data-v-f9d9dcfc]{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-f9d9dcfc]{min-width:50px}.bcf-topic-form__content__head__date[data-v-f9d9dcfc]{min-width:100px}.bcf-topic-form__content__actions[data-v-f9d9dcfc]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions>*[data-v-f9d9dcfc]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-f9d9dcfc]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-f9d9dcfc] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-f9d9dcfc] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-f9d9dcfc]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-f9d9dcfc]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-f84b809a]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-f84b809a]{width:100%;height:100%}.user-avatar--primary[data-v-f84b809a]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-f84b809a]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-f84b809a]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-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-overview[data-v-1d986817]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-1d986817]{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-1d986817]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-1d986817]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-1d986817]{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-1d986817]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-1d986817],.bcf-topic-overview__content__head__date[data-v-1d986817]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-1d986817]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-1d986817]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-1d986817]{position:relative;height:262px;min-height:262px;text-align:center;background-color:var(--color-silver-light);overflow:hidden}.bcf-topic-overview__content__image .status-badge[data-v-1d986817]{position:absolute;z-index:1;left:calc(var(--spacing-unit) / 2);top:calc(var(--spacing-unit) / 2);padding:calc(var(--spacing-unit) / 2);border-radius:3px;display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-1d986817] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-1d986817] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-1d986817] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-1d986817] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-1d986817] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-1d986817]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-1d986817]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-1d986817]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-1d986817]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-1d986817]{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-1d986817]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-1d986817]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-1d986817]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-763dfe5d]{margin:auto}.bcf-topic-priority-cell[data-v-691e94e8]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-41224f82]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
@@ -167,6 +167,41 @@ function useBcfSort(topics) {
167
167
  sortOrderDate
168
168
  };
169
169
  }
170
+ const EXTENSION_TYPES = [
171
+ "Priority",
172
+ "Type",
173
+ "Stage",
174
+ "Status",
175
+ "Label"
176
+ ];
177
+ const EXTENSION_WITH_COLOR = [
178
+ "Priority",
179
+ "Status"
180
+ ];
181
+ const EXTENSION_FIELDS = {
182
+ Priority: "priority",
183
+ Type: "topicType",
184
+ Stage: "stage",
185
+ Status: "topicStatus",
186
+ Label: "label"
187
+ };
188
+ const EXTENSION_LIST_FIELDS = {
189
+ Priority: "priorities",
190
+ Type: "topicTypes",
191
+ Stage: "stages",
192
+ Status: "topicStatuses",
193
+ Label: "topicLabels"
194
+ };
195
+ const DEFAULT_PRIORITY_COLOR = "D8D8D8";
196
+ const DEFAULT_STATUS_COLOR = "D8D8D8";
197
+ function getPriorityColor(topic, detailedExtensions) {
198
+ const priorityDetail = detailedExtensions.priorities.find((p2) => p2.priority === topic.priority);
199
+ return (priorityDetail == null ? void 0 : priorityDetail.color) || DEFAULT_PRIORITY_COLOR;
200
+ }
201
+ function getStatusColor(topic, detailedExtensions) {
202
+ const statusDetail = detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === topic.topicStatus);
203
+ return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
204
+ }
170
205
  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() {
171
206
  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 };
172
207
  }, style() {
@@ -1032,33 +1067,6 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
1032
1067
  ]);
1033
1068
  }
1034
1069
  var BcfFilters = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["render", _sfc_render$j], ["__scopeId", "data-v-077f83aa"]]);
1035
- const EXTENSION_TYPES = [
1036
- "Priority",
1037
- "Type",
1038
- "Stage",
1039
- "Status",
1040
- "Label"
1041
- ];
1042
- const EXTENSION_WITH_COLOR = [
1043
- "Priority",
1044
- "Status"
1045
- ];
1046
- const EXTENSION_FIELDS = {
1047
- Priority: "priority",
1048
- Type: "topicType",
1049
- Stage: "stage",
1050
- Status: "topicStatus",
1051
- Label: "label"
1052
- };
1053
- const EXTENSION_LIST_FIELDS = {
1054
- Priority: "priorities",
1055
- Type: "topicTypes",
1056
- Stage: "stages",
1057
- Status: "topicStatuses",
1058
- Label: "topicLabels"
1059
- };
1060
- const DEFAULT_PRIORITY_COLOR = "D8D8D8";
1061
- const DEFAULT_STATUS_COLOR = "D8D8D8";
1062
1070
  const colors = Object.freeze({
1063
1071
  bisque: "ffe4c4",
1064
1072
  orange: "ffa500",
@@ -1907,14 +1915,6 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
1907
1915
  ]);
1908
1916
  }
1909
1917
  var BcfStatistics = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$f], ["__scopeId", "data-v-763cac12"]]);
1910
- function getPriorityColor(topic, detailedExtensions) {
1911
- const priorityDetail = detailedExtensions.priorities.find((p2) => p2.priority === topic.priority);
1912
- return (priorityDetail == null ? void 0 : priorityDetail.color) || DEFAULT_PRIORITY_COLOR;
1913
- }
1914
- function getStatusColor(topic, detailedExtensions) {
1915
- const statusDetail = detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === topic.topicStatus);
1916
- return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
1917
- }
1918
1918
  var s$1 = { props: { width: { type: String, default: "100%" }, minWidth: { type: String }, maxWidth: { type: String }, text: { type: String, default: "" }, cutPosition: { type: String, default: "middle", validator: (t) => ["start", "middle", "end"].includes(t) }, tooltip: { type: Boolean, default: true }, tooltipPosition: { type: String, default: "bottom", validator: (t) => ["top", "right", "bottom", "left"].includes(t) }, tooltipColor: { type: String, default: "primary", validator: (t) => ["white", "primary", "secondary", "granite-light", "silver-light"].includes(t) } }, data: () => ({ showTooltip: false, isOverflowing: false, textHead: "", textTail: "" }), watch: { width: "computeText", text: "computeText", cutPosition: "computeText" }, mounted() {
1919
1919
  this.observer = new ResizeObserver(() => this.computeText()), this.observer.observe(this.$refs.textBox), this.computeText();
1920
1920
  }, beforeUnmount() {
@@ -5009,4 +5009,4 @@ const components = {
5009
5009
  BcfTopicOverview,
5010
5010
  BcfTopicsTable
5011
5011
  };
5012
- export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
5012
+ export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, getPriorityColor, getStatusColor, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimdata/bcf-components",
3
- "version": "1.1.0-rc.29",
3
+ "version": "1.1.0-rc.31",
4
4
  "files": [
5
5
  "dist",
6
6
  "vue2-plugin.js",
@@ -19,8 +19,7 @@
19
19
  "@bimdata/design-system": "1.4.0-rc.20"
20
20
  },
21
21
  "peerDependencies": {
22
- "@vue/composition-api": "^1.4.9",
23
- "vue": "^2.6 || ^3.0"
22
+ "vue": "^2.7 || ^3.0"
24
23
  },
25
24
  "peerDependenciesMeta": {
26
25
  "@vue/composition-api": {