@bimdata/bcf-components 1.1.0-rc.11 → 1.1.0-rc.12

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, inject } from "@vue/composition-api";
21
+ import { reactive, computed, ref, watch, toRaw, inject } from "@vue/composition-api";
22
22
  let apiClient = null;
23
23
  function setApiClient(client) {
24
24
  apiClient = client;
@@ -81,16 +81,16 @@ function useBcfFilter(topics) {
81
81
  }
82
82
  return list;
83
83
  });
84
- function submit(f) {
84
+ function apply(f) {
85
85
  Object.assign(filters, f);
86
86
  }
87
87
  function reset() {
88
- Object.assign(filters, EMPTY_FILTERS);
88
+ apply(EMPTY_FILTERS);
89
89
  }
90
90
  return {
91
91
  filters,
92
92
  filteredTopics,
93
- submit,
93
+ apply,
94
94
  reset
95
95
  };
96
96
  }
@@ -1015,14 +1015,20 @@ const __vue2_script$j = {
1015
1015
  return;
1016
1016
  }
1017
1017
  }
1018
- emit("submit", filteredTopics.value);
1018
+ emit("submit", {
1019
+ filters: toRaw(filters),
1020
+ topics: filteredTopics.value
1021
+ });
1019
1022
  isOpen.value = false;
1020
1023
  };
1021
1024
  const resetFilters = () => {
1022
1025
  hasErrorStartDate.value = false;
1023
1026
  hasErrorEndDate.value = false;
1024
1027
  reset();
1025
- emit("submit", filteredTopics.value);
1028
+ emit("submit", {
1029
+ filters: toRaw(filters),
1030
+ topics: filteredTopics.value
1031
+ });
1026
1032
  };
1027
1033
  return {
1028
1034
  creatorOptions,
@@ -1042,7 +1048,7 @@ const __vue2_script$j = {
1042
1048
  }
1043
1049
  };
1044
1050
  const __cssModules$j = {};
1045
- var __component__$j = /* @__PURE__ */ normalizeComponent(__vue2_script$j, render$j, staticRenderFns$j, false, __vue2_injectStyles$j, "8221b7a8", null, null);
1051
+ var __component__$j = /* @__PURE__ */ normalizeComponent(__vue2_script$j, render$j, staticRenderFns$j, false, __vue2_injectStyles$j, "2db12d9a", null, null);
1046
1052
  function __vue2_injectStyles$j(context) {
1047
1053
  for (let o2 in __cssModules$j) {
1048
1054
  this[o2] = __cssModules$j[o2];
@@ -1 +1 @@
1
- .bcf-filters__btn-toggle[data-v-8221b7a8]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-8221b7a8]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-8221b7a8]{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-8221b7a8]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-8221b7a8]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-8221b7a8]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-8221b7a8]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-8221b7a8]{display:flex;justify-content:center}.setting-card-item[data-v-33d9bbba]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-33d9bbba]{display:flex;align-items:center}.setting-card-item__color[data-v-33d9bbba]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-33d9bbba]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-33d9bbba]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-72c52d15]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-72c52d15]{font-weight:700}.setting-card__header__icons[data-v-72c52d15]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-72c52d15]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-72c52d15]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-72c52d15]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-2687ba4b]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-2687ba4b]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-2687ba4b]{height:100%}.bcf-settings__content__text[data-v-2687ba4b]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-5dc331a8]{width:400px}.bcf-statistics__content[data-v-5dc331a8]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-5dc331a8]{flex:1}.bcf-statistics__content__legend[data-v-5dc331a8]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-5dc331a8]{font-weight:700}.bcf-statistics__content__legend__item[data-v-5dc331a8]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-5dc331a8]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-5dc331a8]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-5dc331a8]{font-size:13px}.bcf-statistics__content__legend[data-v-5dc331a8] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-275da59e]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-275da59e]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-275da59e]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-275da59e]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-275da59e]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-275da59e]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-275da59e]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-275da59e]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-275da59e]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-275da59e]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-275da59e]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-b5e56a58]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-b5e56a58]{font-size:14px}.bcf-topic-images[data-v-6ca9dbd4]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-6ca9dbd4]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]{position:relative}.bcf-topic-images__images .image-preview img[data-v-6ca9dbd4]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-6ca9dbd4]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-6ca9dbd4]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-6ca9dbd4]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-6ca9dbd4]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-6ca9dbd4]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-6ca9dbd4]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-3de95244]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-3de95244]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-3de95244]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-3de95244]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-6300b837]{height:100%}.bcf-topic-form__content[data-v-6300b837]{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-6300b837]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-6300b837],.bcf-topic-form__content__head__date[data-v-6300b837]{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-6300b837]{min-width:50px}.bcf-topic-form__content__head__date[data-v-6300b837]{min-width:100px}.bcf-topic-form__content__actions[data-v-6300b837]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-6300b837]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-6300b837]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-6300b837] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-6300b837] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-6300b837]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-6300b837]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-555abc52]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-555abc52]{width:100%;height:100%}.user-avatar--primary[data-v-555abc52]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-555abc52]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-555abc52]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-4016a6b4]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-4016a6b4]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-4016a6b4]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-4016a6b4]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-35edf7c8]{font-weight:700}.bcf-topic-comments[data-v-35edf7c8] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-e37ec164]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-e37ec164]{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-e37ec164]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-e37ec164]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-e37ec164]{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-e37ec164]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-e37ec164],.bcf-topic-overview__content__head__date[data-v-e37ec164]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-e37ec164]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-e37ec164]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-e37ec164]{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-e37ec164]{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-e37ec164] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-e37ec164]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-e37ec164]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-e37ec164]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-e37ec164]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-e37ec164]{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-e37ec164]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-e37ec164]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-e37ec164]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4f85c962]{margin:auto}.bcf-topic-priority-cell[data-v-42770510]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-9af43d36]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
1
+ .bcf-filters__btn-toggle[data-v-2db12d9a]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-2db12d9a]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-2db12d9a]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-2db12d9a]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-2db12d9a]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-2db12d9a]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-2db12d9a]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-2db12d9a]{display:flex;justify-content:center}.setting-card-item[data-v-33d9bbba]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-33d9bbba]{display:flex;align-items:center}.setting-card-item__color[data-v-33d9bbba]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-33d9bbba]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-33d9bbba]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-72c52d15]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-72c52d15]{font-weight:700}.setting-card__header__icons[data-v-72c52d15]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-72c52d15]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-72c52d15]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-72c52d15]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-72c52d15]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-2687ba4b]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-2687ba4b]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-2687ba4b]{height:100%}.bcf-settings__content__text[data-v-2687ba4b]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-5dc331a8]{width:400px}.bcf-statistics__content[data-v-5dc331a8]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-5dc331a8]{flex:1}.bcf-statistics__content__legend[data-v-5dc331a8]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-5dc331a8]{font-weight:700}.bcf-statistics__content__legend__item[data-v-5dc331a8]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-5dc331a8]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-5dc331a8]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-5dc331a8]{font-size:13px}.bcf-statistics__content__legend[data-v-5dc331a8] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-275da59e]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-275da59e]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-275da59e]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-275da59e]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-275da59e]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-275da59e]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-275da59e]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-275da59e]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-275da59e]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-275da59e]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-275da59e]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-b5e56a58]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-b5e56a58]{font-size:14px}.bcf-topic-images[data-v-6ca9dbd4]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-6ca9dbd4]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]{position:relative}.bcf-topic-images__images .image-preview img[data-v-6ca9dbd4]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-6ca9dbd4]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-6ca9dbd4]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-6ca9dbd4]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-6ca9dbd4]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-6ca9dbd4]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-6ca9dbd4]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-6ca9dbd4]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-3de95244]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-3de95244]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-3de95244]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-3de95244]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-3de95244]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-6300b837]{height:100%}.bcf-topic-form__content[data-v-6300b837]{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-6300b837]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-6300b837],.bcf-topic-form__content__head__date[data-v-6300b837]{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-6300b837]{min-width:50px}.bcf-topic-form__content__head__date[data-v-6300b837]{min-width:100px}.bcf-topic-form__content__actions[data-v-6300b837]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-6300b837]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-6300b837]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-6300b837] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-6300b837] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-6300b837]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-6300b837]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-555abc52]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-555abc52]{width:100%;height:100%}.user-avatar--primary[data-v-555abc52]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-555abc52]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-555abc52]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-4016a6b4]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-4016a6b4]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-4016a6b4]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-4016a6b4]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-4016a6b4] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-35edf7c8]{font-weight:700}.bcf-topic-comments[data-v-35edf7c8] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-e37ec164]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-e37ec164]{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-e37ec164]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-e37ec164]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-e37ec164]{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-e37ec164]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-e37ec164],.bcf-topic-overview__content__head__date[data-v-e37ec164]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-e37ec164]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-e37ec164]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-e37ec164]{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-e37ec164]{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-e37ec164] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-e37ec164] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-e37ec164]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-e37ec164]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-e37ec164]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-e37ec164]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-e37ec164]{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-e37ec164]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-e37ec164]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-e37ec164]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4f85c962]{margin:auto}.bcf-topic-priority-cell[data-v-42770510]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-9af43d36]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
@@ -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, openBlock, createElementBlock, normalizeClass, normalizeStyle, renderSlot, createElementVNode, createBlock, resolveDynamicComponent, pushScopeId, popScopeId, mergeProps, toDisplayString, createCommentVNode, createTextVNode, resolveComponent, createVNode, resolveDirective, withDirectives, Transition, withCtx, Fragment, renderList, vShow, withKeys, withModifiers, createSlots, createStaticVNode, inject } from "vue";
21
+ import { reactive, computed, ref, watch, openBlock, createElementBlock, normalizeClass, normalizeStyle, renderSlot, createElementVNode, createBlock, resolveDynamicComponent, pushScopeId, popScopeId, mergeProps, toDisplayString, createCommentVNode, createTextVNode, resolveComponent, createVNode, resolveDirective, withDirectives, Transition, withCtx, Fragment, renderList, vShow, toRaw, withKeys, withModifiers, createSlots, createStaticVNode, inject } from "vue";
22
22
  let apiClient = null;
23
23
  function setApiClient(client) {
24
24
  apiClient = client;
@@ -81,16 +81,16 @@ function useBcfFilter(topics) {
81
81
  }
82
82
  return list;
83
83
  });
84
- function submit(f2) {
84
+ function apply(f2) {
85
85
  Object.assign(filters, f2);
86
86
  }
87
87
  function reset() {
88
- Object.assign(filters, EMPTY_FILTERS);
88
+ apply(EMPTY_FILTERS);
89
89
  }
90
90
  return {
91
91
  filters,
92
92
  filteredTopics,
93
- submit,
93
+ apply,
94
94
  reset
95
95
  };
96
96
  }
@@ -826,14 +826,20 @@ const _sfc_main$j = {
826
826
  return;
827
827
  }
828
828
  }
829
- emit("submit", filteredTopics.value);
829
+ emit("submit", {
830
+ filters: toRaw(filters),
831
+ topics: filteredTopics.value
832
+ });
830
833
  isOpen.value = false;
831
834
  };
832
835
  const resetFilters = () => {
833
836
  hasErrorStartDate.value = false;
834
837
  hasErrorEndDate.value = false;
835
838
  reset();
836
- emit("submit", filteredTopics.value);
839
+ emit("submit", {
840
+ filters: toRaw(filters),
841
+ topics: filteredTopics.value
842
+ });
837
843
  };
838
844
  return {
839
845
  creatorOptions,
@@ -1022,7 +1028,7 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
1022
1028
  [_directive_click_away, $setup.close]
1023
1029
  ]);
1024
1030
  }
1025
- var BcfFilters = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["render", _sfc_render$j], ["__scopeId", "data-v-f082722c"]]);
1031
+ var BcfFilters = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["render", _sfc_render$j], ["__scopeId", "data-v-077f83aa"]]);
1026
1032
  const EXTENSION_TYPES = [
1027
1033
  "Priority",
1028
1034
  "Type",
@@ -1 +1 @@
1
- .bcf-filters__btn-toggle[data-v-f082722c]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-f082722c]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-f082722c]{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-f082722c]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-f082722c]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-f082722c]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-f082722c]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-f082722c]{display:flex;justify-content:center}.setting-card-item[data-v-263afb1b]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-263afb1b]{display:flex;align-items:center}.setting-card-item__color[data-v-263afb1b]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-263afb1b]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-263afb1b]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-6b7af8f7]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-6b7af8f7]{font-weight:700}.setting-card__header__icons[data-v-6b7af8f7]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-6b7af8f7]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-6b7af8f7]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-6b7af8f7]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-54aa64a7]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-54aa64a7]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-54aa64a7]{height:100%}.bcf-settings__content__text[data-v-54aa64a7]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-763cac12]{width:400px}.bcf-statistics__content[data-v-763cac12]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-763cac12]{flex:1}.bcf-statistics__content__legend[data-v-763cac12]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-763cac12]{font-weight:700}.bcf-statistics__content__legend__item[data-v-763cac12]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-763cac12]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-763cac12]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-763cac12]{font-size:13px}.bcf-statistics__content__legend[data-v-763cac12] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-6bf8a944]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-6bf8a944]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-6bf8a944]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-6bf8a944]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-6bf8a944]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-6bf8a944]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-6bf8a944]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-6bf8a944]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-6bf8a944]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-6bf8a944]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-6bf8a944]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-02f52cb0]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-02f52cb0]{font-size:14px}.bcf-topic-images[data-v-428a3422]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-428a3422]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-428a3422]{position:relative}.bcf-topic-images__images .image-preview img[data-v-428a3422]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-428a3422]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-428a3422]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-428a3422]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-428a3422]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-428a3422]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-428a3422]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-1c93719c]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-1c93719c]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-1c93719c]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-1c93719c]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-6751e577]{height:100%}.bcf-topic-form__content[data-v-6751e577]{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-6751e577]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-6751e577],.bcf-topic-form__content__head__date[data-v-6751e577]{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-6751e577]{min-width:50px}.bcf-topic-form__content__head__date[data-v-6751e577]{min-width:100px}.bcf-topic-form__content__actions[data-v-6751e577]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-6751e577]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-6751e577]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-6751e577] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-6751e577] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-6751e577]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-6751e577]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-f84b809a]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-f84b809a]{width:100%;height:100%}.user-avatar--primary[data-v-f84b809a]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-f84b809a]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-f84b809a]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-b9f88f20]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-b9f88f20]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-b9f88f20]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-b9f88f20]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-377292f2]{font-weight:700}.bcf-topic-comments[data-v-377292f2] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-f1df5924]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-f1df5924]{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-f1df5924]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-f1df5924]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-f1df5924]{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-f1df5924]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-f1df5924],.bcf-topic-overview__content__head__date[data-v-f1df5924]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-f1df5924]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-f1df5924]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-f1df5924]{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-f1df5924]{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-f1df5924] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-f1df5924]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-f1df5924]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-f1df5924]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-f1df5924]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-f1df5924]{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-f1df5924]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-f1df5924]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-f1df5924]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4e8d8704]{margin:auto}.bcf-topic-priority-cell[data-v-4584461c]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-ef484b2a]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
1
+ .bcf-filters__btn-toggle[data-v-077f83aa]:enabled{color:var(--color-primary)}.bcf-filters__btn-toggle[data-v-077f83aa]:disabled{background-color:var(--color-white);color:var(--color-silver-dark)}.bcf-filters__container[data-v-077f83aa]{position:absolute;z-index:1;top:44px;left:0;width:100%;min-width:252px;max-width:296px;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background-color:var(--color-white);display:flex;flex-direction:column;gap:calc(var(--spacing-unit) * 2)}.bcf-filters__container__header[data-v-077f83aa]{display:flex;justify-content:space-between;align-items:center}.bcf-filters__container__header__title[data-v-077f83aa]{font-size:1.1rem;font-weight:700}.bcf-filters__container__date[data-v-077f83aa]{display:flex;gap:calc(var(--spacing-unit) / 2)}.bcf-filters__container__date .example[data-v-077f83aa]{margin-top:calc(var(--spacing-unit) / 2);font-size:11px}.bcf-filters__container__actions[data-v-077f83aa]{display:flex;justify-content:center}.setting-card-item[data-v-263afb1b]{position:relative;height:37px;background-color:var(--color-silver-light);display:flex;justify-content:space-between;align-items:center;margin-bottom:calc(var(--spacing-unit) / 2);padding:0 var(--spacing-unit)}.setting-card-item__actions[data-v-263afb1b]{display:flex;align-items:center}.setting-card-item__color[data-v-263afb1b]{display:block;width:19px;height:19px;margin-left:var(--spacing-unit);border-radius:3px;border:1px solid var(--color-silver);cursor:pointer}.setting-card-item__color-selector[data-v-263afb1b]{position:absolute;z-index:1;top:37px;right:-12px}.setting-card-item__delete-guard[data-v-263afb1b]{position:absolute;right:1%;width:98%;height:100%;padding:0 var(--spacing-unit);gap:var(--spacing-unit);display:flex;justify-content:space-between;align-items:center;box-shadow:var(--box-shadow);background-color:var(--color-white)}.setting-card[data-v-6b7af8f7]{margin:var(--spacing-unit) 0;padding:var(--spacing-unit);box-shadow:var(--box-shadow);background:var(--color-white)}.setting-card__header[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;cursor:pointer}.setting-card__header__text[data-v-6b7af8f7]{font-weight:700}.setting-card__header__icons[data-v-6b7af8f7]{display:flex;align-items:center;gap:calc(var(--spacing-unit) * 2)}.setting-card__header__icons .count[data-v-6b7af8f7]{min-width:21px;height:21px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:11px;font-size:11px;font-weight:700;background-color:var(--color-primary);color:var(--color-white)}.setting-card__subheader[data-v-6b7af8f7]{display:flex;justify-content:space-between;align-items:center;margin-top:calc(var(--spacing-unit) / 2);margin-bottom:var(--spacing-unit)}.setting-card__add-form[data-v-6b7af8f7]{margin-bottom:var(--spacing-unit)}.setting-card__add-form .actions[data-v-6b7af8f7]{display:flex;justify-content:flex-end;align-items:center;gap:calc(var(--spacing-unit) / 2)}.bcf-settings[data-v-54aa64a7]{height:100%;padding:var(--spacing-unit)}.bcf-settings__header[data-v-54aa64a7]{height:60px;display:flex;justify-content:space-between;align-items:center}.bcf-settings__content[data-v-54aa64a7]{height:100%}.bcf-settings__content__text[data-v-54aa64a7]{padding:calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);text-align:center;color:var(--color-granite)}.bcf-statistics[data-v-763cac12]{width:400px}.bcf-statistics__content[data-v-763cac12]{position:relative;display:flex}.bcf-statistics__content__chart[data-v-763cac12]{flex:1}.bcf-statistics__content__legend[data-v-763cac12]{flex:1;height:100%;display:flex;flex-direction:column;gap:var(--spacing-unit);margin-left:var(--spacing-unit);font-size:14px}.bcf-statistics__content__legend__title[data-v-763cac12]{font-weight:700}.bcf-statistics__content__legend__item[data-v-763cac12]{display:flex;align-items:center;line-height:24px}.bcf-statistics__content__legend__item__mark[data-v-763cac12]{width:10px;height:10px;border:3px solid;border-radius:50px}.bcf-statistics__content__legend__item__percent[data-v-763cac12]{margin:0 calc(var(--spacing-unit) / 2);font-weight:700}.bcf-statistics__content__legend__item__text .total[data-v-763cac12]{font-size:13px}.bcf-statistics__content__legend[data-v-763cac12] .bimdata-paginated-list ul:first-child{height:144px}.bcf-topic-card[data-v-6bf8a944]{position:relative;width:336px;height:307px}.bcf-topic-card__header[data-v-6bf8a944]{min-height:204px;box-shadow:var(--box-shadow)}.bcf-topic-card__header__infos[data-v-6bf8a944]{height:32px;background-color:var(--color-white)}.bcf-topic-card__header__infos__index[data-v-6bf8a944]{padding:3px;min-width:32px;background-color:var(--color-silver);color:var(--color-text)}.bcf-topic-card__header__infos__title[data-v-6bf8a944]{width:calc(100% - var(--spacing-unit) * 2 - 32px);color:var(--color-primary)}.bcf-topic-card__header__img[data-v-6bf8a944]{height:172px;position:relative}.bcf-topic-card__header__img img[data-v-6bf8a944]{width:100%;height:100%;object-fit:cover}.bcf-topic-card__header__img .default-img[data-v-6bf8a944]{width:120px;height:120px}.bcf-topic-card__header__img__status[data-v-6bf8a944]{position:absolute;top:6px;left:6px;border-radius:3px}.bcf-topic-card__header__img__date[data-v-6bf8a944]{position:absolute;bottom:0;right:0;font-size:11px;background-color:var(--color-white)}.bcf-topic-card__content[data-v-6bf8a944]{min-height:98px;margin-top:3px;box-shadow:var(--box-shadow);font-size:12px;background-color:var(--color-white);color:var(--color-text)}.bcf-topic-creation-card[data-v-02f52cb0]{width:336px;height:307px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 2);box-shadow:var(--box-shadow);background-color:var(--color-white)}.bcf-topic-creation-card__text[data-v-02f52cb0]{font-size:14px}.bcf-topic-images[data-v-428a3422]{display:flex;flex-direction:column;gap:var(--spacing-unit)}.bcf-topic-images__images[data-v-428a3422]{width:100%;height:262px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.bcf-topic-images__images .image-preview[data-v-428a3422]{position:relative}.bcf-topic-images__images .image-preview img[data-v-428a3422]{width:100%;height:100%;object-fit:cover}.bcf-topic-images__images .image-preview .btn-delete[data-v-428a3422]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-images__images .image-preview:first-child.single[data-v-428a3422]{height:262px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:first-child:not(.single){height:180px;grid-area:1/1/2/4}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(2){height:72px;grid-area:2/1/3/2}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(3){height:72px;grid-area:2/2/3/3}.bcf-topic-images__images .image-preview[data-v-428a3422]:nth-child(4){height:72px;grid-area:2/3/3/4}.bcf-topic-images .btn-upload label[data-v-428a3422]{display:flex;justify-content:center;align-items:center}.bcf-topic-images .btn-upload:not(:disabled) label[data-v-428a3422]{width:100%;height:100%;cursor:pointer}.bcf-topic-images__upload[data-v-428a3422]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:calc(var(--spacing-unit) * 3 / 2);border:2px dashed var(--color-silver)}.bcf-topic-images__upload .icon[data-v-428a3422]{width:52px;height:52px;display:flex;justify-content:center;align-items:center;background-color:var(--color-silver-light);border-radius:50%}.bcf-topic-snapshots__snapshots[data-v-1c93719c]{width:100%;min-height:180px;max-height:262px;display:flex;flex-wrap:wrap;gap:10px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]{position:relative}.bcf-topic-snapshots__snapshots .snapshot-preview img[data-v-1c93719c]{width:100%;height:100%;object-fit:cover}.bcf-topic-snapshots__snapshots .snapshot-preview .btn-delete[data-v-1c93719c]{position:absolute;top:calc(50% - 16px);left:calc(50% - 16px)}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]:first-child{width:100%;height:180px}.bcf-topic-snapshots__snapshots .snapshot-preview[data-v-1c93719c]:not(:first-child){width:30%;height:72px}.bcf-topic-snapshots__create[data-v-1c93719c]{width:100%;height:180px;min-height:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;border:2px dashed var(--color-silver);cursor:pointer}.bcf-topic-form[data-v-6751e577]{height:100%}.bcf-topic-form__content[data-v-6751e577]{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-6751e577]{height:27px;display:flex;justify-content:space-between;align-items:center;font-size:12px}.bcf-topic-form__content__head__index[data-v-6751e577],.bcf-topic-form__content__head__date[data-v-6751e577]{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-6751e577]{min-width:50px}.bcf-topic-form__content__head__date[data-v-6751e577]{min-width:100px}.bcf-topic-form__content__actions[data-v-6751e577]{display:flex;gap:var(--spacing-unit)}.bcf-topic-form__content__actions .bimdata-btn[data-v-6751e577]{flex-grow:1}.bcf-topic-form__content__body .bimdata-select[data-v-6751e577]{margin:30px 0;font-size:13px}.bcf-topic-form__content__body[data-v-6751e577] .bimdata-input input{font-size:13px;color:var(--color-granite)}.bcf-topic-form__content__body[data-v-6751e577] .bimdata-textarea textarea{font-family:var(--primary-font);font-size:13px;color:var(--color-granite);resize:vertical}.bcf-topic-form__footer[data-v-6751e577]{padding:var(--spacing-unit) calc(var(--spacing-unit) / 2)}.bcf-topic-form__loader[data-v-6751e577]{position:absolute;z-index:10;top:0;left:0;width:100%;height:100%;background-color:#2f374ae6;display:flex;justify-content:center;align-items:center}.user-avatar[data-v-f84b809a]{min-width:32px;min-height:32px;display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}.user-avatar img[data-v-f84b809a]{width:100%;height:100%}.user-avatar--primary[data-v-f84b809a]{background-color:var(--color-primary);color:var(--color-silver-light)}.user-avatar--secondary[data-v-f84b809a]{background-color:var(--color-secondary);color:var(--color-primary)}.user-avatar--silver-light[data-v-f84b809a]{background-color:var(--color-silver-light);color:var(--color-primary)}.topic-comment__header[data-v-b9f88f20]{position:relative;font-weight:700}.topic-comment__header__left__user[data-v-b9f88f20]{width:32px;height:32px;border-radius:50px;background-color:var(--color-silver-light)}.topic-comment__header__right__actions[data-v-b9f88f20]{position:absolute;top:0;right:0;background-color:var(--color-white)}.topic-comment__header__right__delete[data-v-b9f88f20]{position:absolute;top:0;right:2%;width:96%;height:40px;display:flex;justify-content:space-between;align-items:center;background-color:var(--color-white);box-shadow:var(--box-shadow)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea{margin-bottom:calc(var(--spacing-unit) / 2)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea textarea{font-family:Roboto;color:var(--color-granite)}.topic-comment__content[data-v-b9f88f20] .bimdata-textarea:not(.editing) .bar{display:none}.bcf-topic-comments p[data-v-377292f2]{font-weight:700}.bcf-topic-comments[data-v-377292f2] .bimdata-textarea{width:100%}.bcf-topic-overview[data-v-f1df5924]{height:100%;font-size:12px}.bcf-topic-overview__header[data-v-f1df5924]{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-f1df5924]{flex-grow:1;font-size:14px;font-weight:700}.bcf-topic-overview__header__actions[data-v-f1df5924]{display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content[data-v-f1df5924]{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-f1df5924]{height:27px;display:flex;justify-content:space-between;align-items:center}.bcf-topic-overview__content__head__index[data-v-f1df5924],.bcf-topic-overview__content__head__date[data-v-f1df5924]{height:100%;padding:calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}.bcf-topic-overview__content__head__index[data-v-f1df5924]{min-width:50px}.bcf-topic-overview__content__head__date[data-v-f1df5924]{min-width:100px;background-color:var(--color-silver-light);color:var(--color-primary)}.bcf-topic-overview__content__image[data-v-f1df5924]{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-f1df5924]{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-f1df5924] .bimdata-carousel{height:100%}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__container{height:100%;margin:0;padding:0;overflow:hidden}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__container__slider{height:100%!important}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__btn-prev{left:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image[data-v-f1df5924] .bimdata-carousel .bimdata-carousel__btn-next{right:calc(var(--spacing-unit) / 2)}.bcf-topic-overview__content__image .snapshot-preview[data-v-f1df5924]{position:relative;width:100%;height:100%}.bcf-topic-overview__content__image .snapshot-preview img[data-v-f1df5924]{width:100%;height:100%;object-fit:cover}.bcf-topic-overview__content__image .default-image[data-v-f1df5924]{width:170px;height:170px;padding:12px}.bcf-topic-overview__content__card[data-v-f1df5924]{padding:var(--spacing-unit);box-shadow:var(--box-shadow);line-height:1.5}.bcf-topic-overview__content__card .title[data-v-f1df5924]{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-f1df5924]{margin-right:4px;font-weight:700;color:var(--color-primary)}.bcf-topic-overview__content__card .line .value[data-v-f1df5924]{color:var(--color-granite)}.bcf-topic-overview .delete-modal[data-v-f1df5924]{z-index:10}.bcf-topic-actions-cell .bimdata-btn[data-v-4e8d8704]{margin:auto}.bcf-topic-priority-cell[data-v-4584461c]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center;font-weight:700}.bcf-topic-status-cell[data-v-ef484b2a]{height:42px;padding:0 calc(var(--spacing-unit) / 2);display:flex;justify-content:center;align-items:center}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimdata/bcf-components",
3
- "version": "1.1.0-rc.11",
3
+ "version": "1.1.0-rc.12",
4
4
  "files": [
5
5
  "dist",
6
6
  "vue2-plugin.js",