@bimdata/bcf-components 1.1.0-rc.8 → 2.0.0-alpha.1

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 { ref, computed, 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;
@@ -26,17 +26,14 @@ function setApiClient(client) {
26
26
  function useApiClient() {
27
27
  return apiClient;
28
28
  }
29
- function formatToDateObject(date) {
30
- const decomposedDate = date.split("/");
31
- const output = new Date(+decomposedDate[2], decomposedDate[1] - 1, +decomposedDate[0]);
32
- output.setHours(0, 0, 0, 0);
33
- return output;
34
- }
35
29
  const dateRegex = new RegExp(/^((([0]?[1-9]|1[0-9]|2[0-8])[./-](0[1-9]|1[012]))|((29|30|31))[./-]((0[13578]|1[02]))|((29|30))[./-](0[4,6,9]|11))[./-]((19|[2-9][0-9])\d\d$|(^29[./-]02[./-](19|[2-9][0-9])(00|04|08|12|16|20|24|28|32|36|40|44|48|52|56|60|64|68|72|76|80|84|88|92|96)$))/);
30
+ function formatToISO(date) {
31
+ return date.split("/").reverse().join("-");
32
+ }
36
33
  function serialize(date) {
37
- return new Date(date.split("/").reverse().join("-"));
34
+ return new Date(formatToISO(date));
38
35
  }
39
- function deserialize(date) {
36
+ function deserialize$1(date) {
40
37
  return date.toISOString().split("T")[0].split("-").reverse().join("/");
41
38
  }
42
39
  function validate(date) {
@@ -51,6 +48,125 @@ function validate(date) {
51
48
  today.setHours(0, 0, 0, 0);
52
49
  return dateObj.getTime() >= today.getTime();
53
50
  }
51
+ const EMPTY_FILTERS = {
52
+ priorities: [],
53
+ statuses: [],
54
+ users: [],
55
+ creators: [],
56
+ labels: [],
57
+ startDate: "",
58
+ endDate: ""
59
+ };
60
+ function useBcfFilter(topics) {
61
+ const filters = reactive(__spreadValues({}, EMPTY_FILTERS));
62
+ const filteredTopics = computed(() => {
63
+ let list = topics.value;
64
+ if (filters.priorities.length > 0) {
65
+ list = list.filter((t2) => filters.priorities.includes(t2.priority));
66
+ }
67
+ if (filters.statuses.length > 0) {
68
+ list = list.filter((t2) => filters.statuses.includes(t2.topic_status));
69
+ }
70
+ if (filters.users.length > 0) {
71
+ list = list.filter((t2) => filters.users.includes(t2.assigned_to));
72
+ }
73
+ if (filters.creators.length > 0) {
74
+ list = list.filter((t2) => filters.creators.includes(t2.creation_author));
75
+ }
76
+ if (filters.labels.length > 0) {
77
+ list = list.filter((t2) => filters.labels.some((l2) => t2.labels.includes(l2)));
78
+ }
79
+ if (filters.startDate && filters.endDate) {
80
+ list = list.filter((t2) => t2.creation_date >= new Date(`${formatToISO(filters.startDate)}T00:00`) && t2.creation_date <= new Date(`${formatToISO(filters.endDate)}T23:59:59`));
81
+ }
82
+ return list;
83
+ });
84
+ function apply(f) {
85
+ Object.assign(filters, f);
86
+ }
87
+ function reset() {
88
+ apply(EMPTY_FILTERS);
89
+ }
90
+ return {
91
+ filters,
92
+ filteredTopics,
93
+ apply,
94
+ reset
95
+ };
96
+ }
97
+ const searchFields = [
98
+ "title",
99
+ "topic_type",
100
+ "priority",
101
+ "topic_status",
102
+ "stage",
103
+ "creation_author",
104
+ "modified_author",
105
+ "assigned_to",
106
+ "description"
107
+ ];
108
+ function useBcfSearch(topics) {
109
+ const searchText = ref("");
110
+ const filteredTopics = ref([]);
111
+ watch([topics, searchText], () => {
112
+ if (searchText.value) {
113
+ const lowerCaseSearchText = searchText.value.toLowerCase();
114
+ filteredTopics.value = topics.value.filter((topic) => searchFields.some((field) => (topic[field] || "").toLowerCase().includes(lowerCaseSearchText)));
115
+ } else {
116
+ filteredTopics.value = topics.value;
117
+ }
118
+ }, { immediate: true });
119
+ return {
120
+ searchText,
121
+ filteredTopics
122
+ };
123
+ }
124
+ function useListSort(list, mapper) {
125
+ const initialList = ref(list);
126
+ const sort = (order = "asc") => {
127
+ const sortedList = initialList.value.slice().sort((a2, b2) => mapper(a2) < mapper(b2) ? -1 : 1);
128
+ if (order === "desc") {
129
+ sortedList.reverse();
130
+ }
131
+ initialList.value = sortedList;
132
+ };
133
+ const sortOrder = ref("none");
134
+ const sortToggle = () => {
135
+ sortOrder.value = sortOrder.value === "asc" ? "desc" : "asc";
136
+ sort(sortOrder.value);
137
+ };
138
+ return {
139
+ sortOrder,
140
+ sortToggle
141
+ };
142
+ }
143
+ function useBcfSort(topics) {
144
+ const { sortToggle: sortToggleIndex, sortOrder: sortOrderIndex } = useListSort(topics, (topic) => topic.index);
145
+ const { sortToggle: sortToggleTitle, sortOrder: sortOrderTitle } = useListSort(topics, (topic) => topic.title);
146
+ const { sortToggle: sortToggleDate, sortOrder: sortOrderDate } = useListSort(topics, (topic) => topic.creation_date);
147
+ const sortedBy = ref("");
148
+ const sortByIndex = () => {
149
+ sortedBy.value = "index";
150
+ sortToggleIndex();
151
+ };
152
+ const sortByTitle = () => {
153
+ sortedBy.value = "title";
154
+ sortToggleTitle();
155
+ };
156
+ const sortByDate = () => {
157
+ sortedBy.value = "date";
158
+ sortToggleDate();
159
+ };
160
+ return {
161
+ sortedBy,
162
+ sortByIndex,
163
+ sortByTitle,
164
+ sortByDate,
165
+ sortOrderIndex,
166
+ sortOrderTitle,
167
+ sortOrderDate
168
+ };
169
+ }
54
170
  var r$c = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), o$c = { 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$c.includes(o2) } }, emits: ["click"], computed: { classes() {
55
171
  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 };
56
172
  }, style() {
@@ -104,25 +220,25 @@ const c$5 = a$a({ render: function() {
104
220
  }, staticRenderFns: [] }, function(r2) {
105
221
  r2 && (r2("data-v-7af18892_0", { source: 'html[data-v-7af18892]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}html[data-v-7af18892]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.text-left[data-v-7af18892]{text-align:left}.text-center[data-v-7af18892]{text-align:center}.text-right[data-v-7af18892]{text-align:right}.bimdata-link[data-v-7af18892]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-7af18892]{font-family:roboto,sans-serif}', map: void 0, media: void 0 }), r2("data-v-7af18892_1", { source: ".bimdata-btn{padding:0 var(--spacing-unit);height:fit-content;display:flex;align-items:center;justify-content:center;background-color:transparent;border:none;color:var(--color-primary);cursor:pointer;font-family:var(--primary-font);font-size:12px;transition:all .1s ease}.bimdata-btn:hover{transition:all .25s ease-in}.bimdata-btn:focus{outline:0}.bimdata-btn__icon{padding:0}.bimdata-btn__radius{border-radius:3px}.bimdata-btn__square{border-radius:0}.bimdata-btn__rounded{border-radius:50%}.bimdata-btn__fill{background-color:var(--color-white);justify-content:center}.bimdata-btn__fill--default{box-shadow:var(--box-shadow)}.bimdata-btn__fill--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__fill--primary{background-color:var(--color-primary);color:var(--color-white)}.bimdata-btn__fill--primary:hover{background-color:var(--color-primary-light)}.bimdata-btn__fill--secondary{background-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__fill--secondary:hover{background-color:var(--color-secondary-light)}.bimdata-btn__fill--granite{background-color:var(--color-granite);color:var(--color-white)}.bimdata-btn__fill--granite:hover{background-color:var(--color-granite)}.bimdata-btn__fill--high{background-color:var(--color-high);color:var(--color-white)}.bimdata-btn__fill--high:hover{background-color:var(--color-high-light)}.bimdata-btn__fill--success{background-color:var(--color-success);color:var(--color-white)}.bimdata-btn__fill--success:hover{background-color:var(--color-success-light)}.bimdata-btn__fill--btn-icon svg{margin:0 6px}.bimdata-btn__fill:disabled{background-color:var(--color-silver-dark);color:var(--color-white);cursor:auto}.bimdata-btn__ripple{background-position:center;transition:background .8s}.bimdata-btn__ripple--default{background-color:transparent;color:var(--color-primary)}.bimdata-btn__ripple--default:hover{background:transparent radial-gradient(circle,transparent 1%,var(--color-silver-light) 1%) center/15000%}.bimdata-btn__ripple--default:active:not(:disabled){background-color:var(--color-silver-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--primary{background-color:var(--color-primary);color:var(--color-white)}.bimdata-btn__ripple--primary:hover{background:var(--color-primary) radial-gradient(circle,transparent 1%,var(--color-primary) 1%) center/15000%}.bimdata-btn__ripple--primary:active:not(:disabled){background-color:var(--color-primary-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--secondary{background-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__ripple--secondary:hover{background:var(--color-secondary) radial-gradient(circle,transparent 1%,var(--color-secondary) 1%) center/15000%}.bimdata-btn__ripple--secondary:active:not(:disabled){background-color:var(--color-secondary-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--granite{background-color:var(--color-granite);color:var(--color-white)}.bimdata-btn__ripple--granite:hover{background:var(--color-granite) radial-gradient(circle,transparent 1%,var(--color-granite) 1%) center/15000%}.bimdata-btn__ripple--granite:active:not(:disabled){background-color:var(--color-granite-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--high{background-color:var(--color-high);color:var(--color-white)}.bimdata-btn__ripple--high:hover{background:var(--color-high) radial-gradient(circle,transparent 1%,var(--color-high) 1%) center/15000%}.bimdata-btn__ripple--high:active:not(:disabled){background-color:var(--color-high-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--success{background-color:var(--color-success);color:var(--color-white)}.bimdata-btn__ripple--success:hover{background:var(--color-success) radial-gradient(circle,transparent 1%,var(--color-success) 1%) center/15000%}.bimdata-btn__ripple--success:active:not(:disabled){background-color:var(--color-success-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple:disabled{background-color:var(--color-silver-dark);color:var(--color-white);cursor:auto}.bimdata-btn__outline{justify-content:center;border:1px solid}.bimdata-btn__outline--default{border-color:var(--color-silver);color:var(--color-primary)}.bimdata-btn__outline--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__outline--primary{border-color:var(--color-primary);color:var(--color-primary)}.bimdata-btn__outline--primary:hover{background-color:var(--color-primary-lighter)}.bimdata-btn__outline--secondary{border-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__outline--secondary:hover{background-color:var(--color-secondary-lighter)}.bimdata-btn__outline--granite{border-color:var(--color-granite);color:var(--color-granite)}.bimdata-btn__outline--granite:hover{background-color:var(--color-silver-light)}.bimdata-btn__outline--high{border-color:var(--color-high);color:var(--color-high)}.bimdata-btn__outline--high:hover{background-color:var(--color-high-lighter)}.bimdata-btn__outline--success{border-color:var(--color-success);color:var(--color-success)}.bimdata-btn__outline--success:hover{background-color:var(--color-success-lighter)}.bimdata-btn__outline:disabled{border-color:var(--color-silver-dark);color:var(--color-silver-dark);cursor:auto}.bimdata-btn__outline:disabled:hover{background-color:transparent}.bimdata-btn__ghost{justify-content:center}.bimdata-btn__ghost svg{display:flex;align-items:center}.bimdata-btn__ghost--default{color:var(--color-primary)}.bimdata-btn__ghost--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__ghost--primary{color:var(--color-primary)}.bimdata-btn__ghost--primary:hover{background-color:var(--color-primary-lighter)}.bimdata-btn__ghost--secondary{color:var(--color-secondary)}.bimdata-btn__ghost--secondary:hover{background-color:var(--color-secondary-lighter)}.bimdata-btn__ghost--granite{color:var(--color-granite)}.bimdata-btn__ghost--granite:hover{background-color:var(--color-silver-light)}.bimdata-btn__ghost--high{color:var(--color-high)}.bimdata-btn__ghost--high:hover{background-color:var(--color-high-lighter)}.bimdata-btn__ghost--success{color:var(--color-success)}.bimdata-btn__ghost--success:hover{background-color:var(--color-success-lighter)}.bimdata-btn__ghost:disabled{color:var(--color-silver-dark);cursor:auto}", map: void 0, media: void 0 }));
106
222
  }, o$c, "data-v-7af18892", false, void 0, false, e$c, void 0, void 0);
107
- function e$b(e2, t2, i2, r2, d2, o2, n2, C2, v2, s2) {
108
- typeof n2 != "boolean" && (v2 = C2, C2 = n2, n2 = false);
223
+ function e$b(e2, t2, i2, d2, r2, o2, n2, v2, C2, s2) {
224
+ typeof n2 != "boolean" && (C2 = v2, v2 = n2, n2 = false);
109
225
  const l2 = typeof i2 == "function" ? i2.options : i2;
110
- let L;
111
- if (e2 && e2.render && (l2.render = e2.render, l2.staticRenderFns = e2.staticRenderFns, l2._compiled = true, d2 && (l2.functional = true)), r2 && (l2._scopeId = r2), o2 ? (L = function(e3) {
112
- (e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, v2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(o2);
113
- }, l2._ssrRegister = L) : t2 && (L = n2 ? function(e3) {
226
+ let a2;
227
+ if (e2 && e2.render && (l2.render = e2.render, l2.staticRenderFns = e2.staticRenderFns, l2._compiled = true, r2 && (l2.functional = true)), d2 && (l2._scopeId = d2), o2 ? (a2 = function(e3) {
228
+ (e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, C2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(o2);
229
+ }, l2._ssrRegister = a2) : t2 && (a2 = n2 ? function(e3) {
114
230
  t2.call(this, s2(e3, this.$root.$options.shadowRoot));
115
231
  } : function(e3) {
116
- t2.call(this, C2(e3));
117
- }), L)
232
+ t2.call(this, v2(e3));
233
+ }), a2)
118
234
  if (l2.functional) {
119
235
  const e3 = l2.render;
120
236
  l2.render = function(t3, i3) {
121
- return L.call(i3), e3(t3, i3);
237
+ return a2.call(i3), e3(t3, i3);
122
238
  };
123
239
  } else {
124
240
  const e3 = l2.beforeCreate;
125
- l2.beforeCreate = e3 ? [].concat(e3, L) : [L];
241
+ l2.beforeCreate = e3 ? [].concat(e3, a2) : [a2];
126
242
  }
127
243
  return i2;
128
244
  }
@@ -135,6 +251,12 @@ var t$b = { addFile: e$b({ render: function() {
135
251
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addUser: e$b({ render: function() {
136
252
  var e2 = this.$createElement;
137
253
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.8177 7.18182C18.8177 9.49225 16.9463 11.3636 14.6359 11.3636C12.3254 11.3636 10.4541 9.49225 10.4541 7.18182C10.4541 4.87139 12.3254 3 14.6359 3C16.9463 3 18.8177 4.87139 18.8177 7.18182ZM5.22678 8.22703V5.09066H3.13588V8.22703H-0.000488281V10.3179H3.13588V13.4543H5.22678V10.3179H8.36315V8.22703H5.22678ZM14.6359 13.4542C11.8445 13.4542 6.27224 14.8552 6.27224 17.636V19.727H22.9995V17.636C22.9995 14.8552 17.4273 13.4542 14.6359 13.4542Z" } });
254
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalAscending: e$b({ render: function() {
255
+ var e2 = this.$createElement, t2 = this._self._c || e2;
256
+ return t2("g", [t2("path", { attrs: { d: "M7.78286 7.489H4.60159L3.8871 9.47078H2.85449L5.75415 1.87744H6.6303L9.53517 9.47078H8.50777L7.78286 7.489ZM4.90407 6.665H7.48559L6.19222 3.11344L4.90407 6.665Z" } }), this._v(" "), t2("path", { attrs: { d: "M4.62766 20.3037H8.97193V21.1225H3.44381V20.3715L7.60554 14.3532H3.51161V13.5292H8.80504V14.2645L4.62766 20.3037Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.6303 1.87746L9.53516 9.47079H8.50777L7.78286 7.48902H4.60158L3.8871 9.47079H2.85449L5.75414 1.87746H6.6303ZM6.19222 3.11346L4.90406 6.66501H7.48559L6.19222 3.11346ZM6.19314 4.53477L5.59659 6.17953H6.79211L6.19314 4.53477ZM4.94263 7.9745L4.22814 9.95628H2.14941L5.41985 1.39197H6.96437L10.2407 9.95628H8.16841L7.44349 7.9745H4.94263ZM3.44381 20.3715L7.60554 14.3532H3.5116V13.5292H8.80504V14.2645L4.62766 20.3037H8.97192V21.1225H3.44381V20.3715ZM5.55379 19.8182H9.45741V21.608H2.95832V20.22L6.67956 14.8387H3.02612V13.0437H9.29052V14.4161L5.55379 19.8182Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.9443 1.39197V20.7091H17.0023V1.39197H18.9443Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.581 17.3666C15.6001 17.3461 15.6313 17.3461 15.6504 17.3666L17.9423 19.8349L20.2245 17.3772C20.2436 17.3566 20.2749 17.3566 20.294 17.3772L20.836 17.961C20.8552 17.9815 20.8552 18.0152 20.836 18.0358L17.9798 21.1118C17.961 21.1321 17.9305 21.1323 17.9113 21.1128C17.9054 21.1102 17.8999 21.1063 17.8952 21.1012L15.0389 18.0252C15.0198 18.0046 15.0198 17.9709 15.0389 17.9504L15.581 17.3666Z" } })]);
257
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalDescending: e$b({ render: function() {
258
+ var e2 = this.$createElement, t2 = this._self._c || e2;
259
+ return t2("g", [t2("path", { attrs: { d: "M8.08205 7.47655H4.90078L4.1863 9.45833H3.15369L6.05334 1.86499H6.92949L9.83436 9.45833H8.80697L8.08205 7.47655ZM5.20326 6.65255H7.78479L6.49142 3.10099L5.20326 6.65255Z" } }), this._v(" "), t2("path", { attrs: { d: "M4.92686 20.2913H9.27112V21.11H3.743V20.3591L7.90474 14.3407H3.8108V13.5167H9.10423V14.252L4.92686 20.2913Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.92949 1.865L9.83436 9.45834H8.80696L8.08205 7.47657H4.90078L4.18629 9.45834H3.15368L6.05334 1.865H6.92949ZM6.49141 3.10101L5.20326 6.65256H7.78478L6.49141 3.10101ZM6.49233 4.52232L5.89578 6.16707H7.0913L6.49233 4.52232ZM5.24182 7.96205L4.52734 9.94383H2.44861L5.71905 1.37952H7.26356L10.5399 9.94383H8.4676L7.74269 7.96205H5.24182ZM3.743 20.3591L7.90473 14.3407H3.8108V13.5167H9.10423V14.2521L4.92685 20.2913H9.27112V21.1101H3.743V20.3591ZM5.85298 19.8058H9.7566V21.5955H3.25751V20.2076L6.97876 14.8262H3.32531V13.0312H9.58972V14.4036L5.85298 19.8058Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.2426 2.56055V21.608H17.3008V2.56055H19.2426Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.8795 5.63065C15.8986 5.65095 15.9298 5.65095 15.949 5.63065L18.2408 3.19454L20.5228 5.62019C20.5419 5.64055 20.5732 5.64055 20.5923 5.62019L21.1343 5.04404C21.1535 5.02374 21.1535 4.99049 21.1343 4.97019L18.2782 1.9342C18.2594 1.91423 18.2289 1.91401 18.2097 1.93326C18.2039 1.93581 18.1984 1.93962 18.1936 1.94466L15.3374 4.98065C15.3183 5.00095 15.3183 5.03419 15.3374 5.05449L15.8795 5.63065Z" } })]);
138
260
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalSort: e$b({ render: function() {
139
261
  var e2 = this.$createElement, t2 = this._self._c || e2;
140
262
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.2918 7.49901C15.3115 7.52019 15.3436 7.52019 15.3634 7.49901L17.7238 4.95698L20.0741 7.4881C20.0938 7.50934 20.126 7.50934 20.1457 7.4881L20.704 6.88689C20.7237 6.86571 20.7237 6.83102 20.704 6.80984L17.7623 3.64184C17.743 3.62101 17.7115 3.62078 17.6918 3.64086C17.6858 3.64352 17.6801 3.6475 17.6752 3.65275L14.7335 6.82074C14.7138 6.84193 14.7138 6.87662 14.7335 6.8978L15.2918 7.49901Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.2918 18.183C15.3115 18.1618 15.3436 18.1618 15.3634 18.183L17.7238 20.725L20.0741 18.1939C20.0938 18.1727 20.126 18.1727 20.1457 18.1939L20.704 18.7951C20.7237 18.8163 20.7237 18.851 20.704 18.8722L17.7623 22.0402C17.743 22.061 17.7115 22.0612 17.6918 22.0411C17.6858 22.0385 17.6801 22.0345 17.6752 22.0293L14.7335 18.8613C14.7138 18.8401 14.7138 18.8054 14.7335 18.7842L15.2918 18.183Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.34473 9.441H3.41497L3.4388 9.37492L4.15081 7.39999H7.28703L8.0096 9.37536L8.03361 9.441H8.10352H9.16162H9.30694L9.25502 9.30527L6.26332 1.48496L6.23873 1.42069H6.16992H5.26758H5.19872L5.17416 1.48502L2.18783 9.30533L2.13602 9.441H2.28125H3.34473ZM8.68154 22.4977V22.3977H8.58154H4.29819L8.49191 16.3349L8.50967 16.3092V16.278V15.5207V15.4207H8.40967H2.95801H2.85801V15.5207V16.3693V16.4693H2.95801H6.98358L2.80593 22.5107L2.78818 22.5364V22.5676V23.341V23.441H2.88818H8.58154H8.68154V23.341V22.4977ZM4.53473 6.35136L5.71894 3.0864L6.90794 6.35136H4.53473Z" } })]);
@@ -156,6 +278,9 @@ var t$b = { addFile: e$b({ render: function() {
156
278
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), attach: e$b({ render: function() {
157
279
  var e2 = this.$createElement;
158
280
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.1353 0.97151C16.3653 -0.0111109 14.0902 0.591777 13.0536 2.3181L10.7744 6.11407C10.0103 7.38659 10.1326 8.91433 10.9585 10.0232L10.0988 11.5123C8.75683 11.4605 7.42339 12.1185 6.69746 13.3276L4.41822 17.1235C3.38168 18.8498 3.97626 21.0459 5.74626 22.0285C7.51626 23.0111 9.79142 22.4082 10.828 20.6819L13.1072 16.8859C13.8713 15.6134 13.749 14.0857 12.9231 12.9768L13.7828 11.4877C15.1248 11.5395 16.4582 10.8815 17.1842 9.67246L19.4634 5.87648C20.4999 4.15016 19.9053 1.95413 18.1353 0.97151ZM15.1171 8.66728C15.2354 8.56657 15.3391 8.44577 15.4225 8.30644L17.3449 5.09331C17.7532 4.41085 17.518 3.54214 16.8195 3.15299C16.121 2.76384 15.2238 3.00161 14.8155 3.68407L12.893 6.8972C12.8 7.0527 12.7404 7.21786 12.712 7.38482C13.1909 7.09804 13.8068 7.07256 14.3244 7.37143C14.8089 7.65111 15.0903 8.14736 15.1171 8.66728ZM8.76452 14.3326C8.79131 14.8525 9.07277 15.3488 9.55722 15.6285C10.0748 15.9273 10.6907 15.9019 11.1695 15.6152C11.1411 15.7821 11.0815 15.9473 10.9885 16.1028L9.06607 19.3159C8.65776 19.9984 7.76052 20.2361 7.06203 19.847C6.36354 19.4578 6.12831 18.5891 6.53662 17.9067L8.45904 14.6935C8.54242 14.5541 8.64621 14.4333 8.76452 14.3326Z" } });
281
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), backInTime: e$b({ render: function() {
282
+ var e2 = this.$createElement, t2 = this._self._c || e2;
283
+ return t2("svg", { attrs: { width: "23", height: "23", viewBox: "0 0 23 23", xmlns: "http://www.w3.org/2000/svg" } }, [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.5152 18.8912C14.7948 19.8847 12.7947 20.3156 10.8063 20.1211C8.81778 19.9266 6.94481 19.1169 5.46017 17.8099L4.20403 19.1719C5.98558 20.7403 8.23315 21.7119 10.6193 21.9453C13.0055 22.1787 15.4056 21.6616 17.47 20.4695C19.5345 19.2773 21.1554 17.4723 22.0966 15.3175C23.0379 13.1626 23.2503 10.7704 22.7029 8.48932C22.1556 6.20828 20.877 4.15755 19.0536 2.63588C17.2301 1.11421 14.957 0.201092 12.5654 0.0295368C10.1737 -0.142017 7.78844 0.436958 5.75705 1.68212C3.74822 2.91346 2.18922 4.73267 1.30143 6.87966L5.26823e-05 6.39128L1.17369 9.93593L4.47445 8.07041L3.05349 7.53716C3.79534 5.76072 5.08945 4.25563 6.75436 3.2351C8.44718 2.19746 10.4349 1.71498 12.4279 1.85795C14.421 2.00091 16.3153 2.76184 17.8348 4.0299C19.3544 5.29796 20.4198 7.0069 20.8759 8.90777C21.332 10.8086 21.155 12.8021 20.3707 14.5979C19.5863 16.3936 18.2355 17.8978 16.5152 18.8912ZM12.0098 6.24789H10.8615V11.8578H10.8614V12.9813H17.7518V11.8578H12.0098V6.24789Z" } })]);
159
284
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcf: e$b({ render: function() {
160
285
  var e2 = this.$createElement;
161
286
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.5638 14.574C15.5651 14.6276 15.5665 14.6846 15.5665 14.7468C16.1967 14.6326 16.7553 14.4489 17.1707 14.0071C17.1964 13.9797 17.2227 13.9522 17.2492 13.9244C17.547 13.6121 17.8733 13.27 17.7701 12.7976C17.7252 12.5932 17.6806 12.3886 17.6359 12.1841C17.321 10.7405 17.0058 9.29526 16.5932 7.87892C16.2429 6.67372 15.7432 5.50726 15.2475 4.34989L15.2288 4.3062C14.988 3.74418 14.6627 3.19308 14.2702 2.72539C13.2993 1.56907 12.0408 0.82782 10.6002 0.374527C9.04977 -0.114015 7.49483 -0.117987 5.94735 0.323886C4.56153 0.720082 3.34682 1.42906 2.33457 2.47119C0.939797 3.90852 0.175259 5.62587 0.0255348 7.6143C-0.0615141 8.7731 0.0698054 9.91452 0.484158 11.0023C0.641925 11.4171 0.841186 11.816 1.04895 12.2319C1.14382 12.4219 1.24047 12.6153 1.33575 12.8155C1.36603 12.769 1.38858 12.7368 1.40523 12.7131C1.43016 12.6776 1.4419 12.6609 1.44667 12.6427C1.7496 11.5509 2.38182 10.6389 3.023 9.73032C3.07453 9.65753 3.12878 9.58579 3.18307 9.51399C3.32692 9.32376 3.47108 9.13312 3.56569 8.92154C3.66341 8.70179 3.73641 8.47108 3.80938 8.24044C3.88463 8.00264 3.95985 7.7649 4.06212 7.53933C5.06044 5.34436 6.79247 4.03612 9.12737 3.54608C10.1555 3.33061 11.137 3.53864 11.9303 4.31167C13.2107 5.55884 14.1369 7.03291 14.7696 8.69614C15.4551 10.4989 15.7719 12.3547 15.5685 14.2841C15.5589 14.3755 15.5612 14.4679 15.5638 14.574ZM14.2089 1.78922C15.1446 1.71773 15.9977 1.79865 16.8249 2.01959C17.9162 2.31202 18.923 2.79064 19.8228 3.49614C20.7192 4.19917 21.4484 5.03674 21.9891 6.03021C22.7158 7.36576 23.067 8.81054 22.9894 10.3228C22.9108 11.8679 22.4482 13.3077 21.5578 14.5966C20.7854 15.7157 19.8129 16.6138 18.6086 17.2424C17.764 17.6832 16.8821 18.0139 15.9007 18.0382C14.2885 18.0785 12.7152 17.8317 11.1597 17.4554C9.97487 17.1694 8.79946 16.8427 7.62654 16.51C7.5413 16.4859 7.45527 16.4624 7.36895 16.4388C6.88459 16.3064 6.39117 16.1714 5.97659 15.9177C5.65675 15.7216 5.41301 15.2793 5.29811 14.898C5.11804 14.3012 5.1449 13.6697 5.45131 13.0396C5.54177 13.0994 5.63077 13.1586 5.71889 13.2172L5.71898 13.2172C5.90314 13.3397 6.08343 13.4596 6.26509 13.5768C7.41613 14.3205 8.65919 14.8473 9.9878 15.1859C11.7949 15.6477 13.613 15.6635 15.4435 15.3632C16.6344 15.1676 17.6093 14.677 18.1803 13.5336C18.5743 12.7452 18.7076 11.9141 18.7419 11.0561C18.8265 8.92969 18.0261 7.1622 16.5418 5.66629C16.3766 5.49955 16.2784 5.25672 16.186 5.02798L16.1603 4.96475C15.6922 3.82432 15.1252 2.74545 14.2089 1.78922ZM11.9724 5.19575C10.8024 5.68777 9.76084 6.32576 8.81872 7.13056C7.40206 8.34199 6.26396 9.76542 5.4835 11.4604C5.24424 11.9807 5.0393 12.5179 4.8468 13.0576C4.37724 14.3768 4.68713 15.552 5.64716 16.5216C7.65077 18.5448 10.0543 19.1803 12.8165 18.4514C12.9692 18.4107 13.1413 18.4083 13.299 18.4291C14.3978 18.5756 15.4976 18.663 16.6039 18.5274C16.6573 18.5208 16.7106 18.5126 16.7647 18.5044L16.7648 18.5043C16.9417 18.4773 17.1276 18.4488 17.3585 18.4678C17.2774 18.5942 17.1981 18.7217 17.1187 18.8492L17.1185 18.8495C16.9422 19.1329 16.7658 19.4163 16.571 19.6867C15.7369 20.8435 14.6371 21.6945 13.3482 22.2729C11.6933 23.0147 9.95384 23.1894 8.17854 22.7947C6.54699 22.4323 5.13431 21.6558 3.98875 20.429C2.73425 19.085 1.98961 17.5027 1.7991 15.6686C1.67623 14.4865 1.69712 13.2964 2.19703 12.2126C2.5895 11.3611 3.11528 10.5558 3.67736 9.80017C4.80452 8.28539 6.13264 6.94289 7.50702 5.64954C7.91734 5.26388 8.34354 4.89555 8.76981 4.52717L8.7703 4.52674C8.89318 4.42055 9.01606 4.31436 9.13856 4.20774C9.20571 4.14866 9.29724 4.09206 9.3833 4.08313C10.4572 3.96844 11.265 4.18193 11.9724 5.19575Z" } });
@@ -207,6 +332,12 @@ var t$b = { addFile: e$b({ render: function() {
207
332
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cursor: e$b({ render: function() {
208
333
  var e2 = this.$createElement;
209
334
  return (this._self._c || e2)("path", { attrs: { d: "M23 0L0 9.62167V10.8739L8.74 14.26L12.1133 23H13.3656L23 0Z" } });
335
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateAscending: e$b({ render: function() {
336
+ var e2 = this.$createElement, t2 = this._self._c || e2;
337
+ return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.9932 20.4443L17.9932 1.39685L19.9351 1.39685L19.9351 20.4443L17.9932 20.4443Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.3563 17.3742C21.3372 17.3539 21.306 17.3539 21.2868 17.3742L18.9951 19.8103L16.713 17.3847C16.6939 17.3643 16.6627 17.3643 16.6436 17.3847L16.1015 17.9608C16.0824 17.9811 16.0824 18.0144 16.1015 18.0347L18.9577 21.0707C18.9764 21.0906 19.0069 21.0909 19.0261 21.0716C19.032 21.0691 19.0375 21.0653 19.0422 21.0602L21.8984 18.0242C21.9175 18.0039 21.9175 17.9707 21.8984 17.9504L21.3563 17.3742Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.7945 7.18197H11.3399C11.9399 7.18197 12.4308 7.67288 12.4308 8.27288V17.0002C12.4308 17.6002 11.9399 18.0911 11.3399 18.0911H2.61264C2.01264 18.0911 1.52173 17.6002 1.52173 17.0002V8.27288C1.52173 7.67288 2.01264 7.18197 2.61264 7.18197H3.15809V6.09106H4.249V7.18197H9.70355V6.09106H10.7945V7.18197ZM2.61264 17.0002H11.3399V9.90925H2.61264V17.0002ZM6.01196 10.5634H3.26468V13.3107H6.01196V10.5634Z" } })]);
338
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateDescending: e$b({ render: function() {
339
+ var e2 = this.$createElement, t2 = this._self._c || e2;
340
+ return t2("g", [t2("path", { attrs: { d: "M11.3399 7.18185H10.7945V6.09094H9.70355V7.18185H4.249V6.09094H3.15809V7.18185H2.61264C2.01264 7.18185 1.52173 7.67276 1.52173 8.27276V17C1.52173 17.6 2.01264 18.0909 2.61264 18.0909H11.3399C11.9399 18.0909 12.4308 17.6 12.4308 17V8.27276C12.4308 7.67276 11.9399 7.18185 11.3399 7.18185ZM11.3399 17H2.61264V9.90912H11.3399V17Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.0067 2.56714V21.6146H18.0648V2.56714H20.0067Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.6436 5.63724C16.6627 5.65754 16.6939 5.65754 16.713 5.63724L19.0048 3.20114L21.2868 5.62679C21.3059 5.64714 21.3372 5.64714 21.3563 5.62679L21.8983 5.05063C21.9175 5.03033 21.9175 4.99709 21.8983 4.97679L19.0422 1.94079C19.0234 1.92083 18.9929 1.92061 18.9738 1.93985C18.9679 1.9424 18.9624 1.94622 18.9577 1.95125L16.1015 4.98724C16.0824 5.00754 16.0824 5.04078 16.1015 5.06108L16.6436 5.63724Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.7945 7.18185H11.3399C11.9399 7.18185 12.4308 7.67276 12.4308 8.27276V17C12.4308 17.6 11.9399 18.0909 11.3399 18.0909H2.61264C2.01264 18.0909 1.52173 17.6 1.52173 17V8.27276C1.52173 7.67276 2.01264 7.18185 2.61264 7.18185H3.15809V6.09094H4.249V7.18185H9.70355V6.09094H10.7945V7.18185ZM2.61264 17H11.3399V9.90912H2.61264V17ZM10.6696 13.5819H7.91956V16.3319H10.6696V13.5819Z" } })]);
210
341
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), default: e$b({ render: function() {
211
342
  var e2 = this.$createElement;
212
343
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M1.4375 19.8906V4.4375H21.5625V19.8906H1.4375ZM0 4.07812C0 3.48269 0.482693 3 1.07812 3H21.9219C22.5173 3 23 3.48269 23 4.07812V20.25C23 20.8454 22.5173 21.3281 21.9219 21.3281H1.07812C0.482693 21.3281 0 20.8454 0 20.25V4.07812ZM7.54688 8.21094C7.54688 9.50104 6.50104 10.5469 5.21094 10.5469C3.92084 10.5469 2.875 9.50104 2.875 8.21094C2.875 6.92084 3.92084 5.875 5.21094 5.875C6.50104 5.875 7.54688 6.92084 7.54688 8.21094ZM2.875 16.1172V18.4531H20.125V12.8828L15.0938 7.85156L8.80469 14.1406L6.82812 12.1641L2.875 16.1172Z" } });
@@ -251,7 +382,7 @@ var t$b = { addFile: e$b({ render: function() {
251
382
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.6172 3.34817C11.549 3.12969 11.3438 2.98329 11.115 2.98997C10.8862 2.99664 10.6898 3.15475 10.6345 3.37683L8.79044 10.7763L2.90624 6.97704C2.72176 6.85793 2.48179 6.87012 2.31033 7.00731C2.13888 7.14451 2.07435 7.37596 2.1501 7.58207L5.26103 16.0467L0.350471 17.6681C0.148987 17.7346 0.0096536 17.9188 0.000480396 18.1308C-0.00869285 18.3428 0.114207 18.5384 0.309191 18.6221L6.25703 21.1748C6.51614 21.286 6.81634 21.1661 6.92754 20.907C7.03875 20.6479 6.91885 20.3477 6.65974 20.2365L1.9502 18.2152L6.08239 16.8508C6.21376 16.8074 6.32191 16.7126 6.38206 16.588C6.44222 16.4634 6.44924 16.3197 6.40152 16.1899L3.63531 8.66321L8.83628 12.0213C8.9747 12.1107 9.14775 12.1278 9.30098 12.0672C9.4542 12.0066 9.56876 11.8757 9.6086 11.7159L11.185 5.39037L13.3994 12.4848C13.4458 12.6332 13.5572 12.7525 13.7022 12.8087C13.8471 12.8649 14.0098 12.852 14.1441 12.7736L20.828 8.87298L17.5593 15.8953C17.5019 16.0186 17.4961 16.1597 17.5432 16.2873C17.5902 16.4149 17.6862 16.5185 17.8099 16.575L21.3166 18.1781L17.2541 20.2508C17.0029 20.379 16.9032 20.6865 17.0314 20.9376C17.1595 21.1888 17.467 21.2885 17.7182 21.1604L22.7215 18.6077C22.8959 18.5187 23.0041 18.3377 22.9999 18.1419C22.9957 17.9461 22.8798 17.77 22.7017 17.6886L18.702 15.8601L22.4418 7.82561C22.536 7.62326 22.4878 7.38318 22.3228 7.23283C22.1579 7.08248 21.9144 7.05672 21.7216 7.16922L14.1831 11.5686L11.6172 3.34817ZM11.8626 11.9433C11.8215 11.7198 11.6232 11.5599 11.3961 11.5671C11.169 11.5743 10.9812 11.7465 10.9544 11.9721L10.4943 15.8413L8.33957 14C8.17477 13.8592 7.93398 13.8527 7.76183 13.9844C7.58968 14.1162 7.53301 14.3503 7.62586 14.5462L9.2083 17.8845L6.87485 18.1039C6.67435 18.1227 6.50948 18.2699 6.46815 18.4671C6.42683 18.6642 6.51867 18.8652 6.69472 18.963L8.76033 20.1106L7.67407 21.5523C7.52137 21.755 7.56188 22.0431 7.76456 22.1958C7.96724 22.3485 8.25534 22.308 8.40805 22.1053L9.81204 20.2418C9.89204 20.1357 9.92213 20 9.89454 19.87C9.86696 19.74 9.78441 19.6282 9.6682 19.5637L8.43756 18.88L9.94755 18.738C10.0968 18.724 10.2298 18.638 10.3039 18.5077C10.3781 18.3774 10.384 18.2192 10.3197 18.0837L9.37737 16.0957L10.5505 17.0982C10.6794 17.2084 10.8585 17.2386 11.0163 17.1769C11.1742 17.1151 11.2853 16.9715 11.3053 16.8032L11.5081 15.0984L11.8267 16.832C11.8547 16.9845 11.9578 17.1126 12.1008 17.1726C12.2438 17.2326 12.4075 17.2164 12.536 17.1295L14.5182 15.7891L13.126 18.3413C13.0484 18.4837 13.0515 18.6564 13.1343 18.7959C13.2171 18.9353 13.3672 19.0208 13.5294 19.0208H15.1757L13.7572 19.8494C13.6424 19.9164 13.5623 20.0299 13.5375 20.1604C13.5127 20.291 13.5456 20.4259 13.6279 20.5304L14.5724 21.7301C14.7293 21.9295 15.0182 21.9639 15.2176 21.807C15.417 21.65 15.4514 21.3611 15.2944 21.1617L14.6764 20.3767L17.1052 18.9581C17.2844 18.8534 17.3712 18.6416 17.317 18.4413C17.2628 18.241 17.081 18.1019 16.8735 18.1019H14.3034L16.2302 14.5694C16.3317 14.3833 16.2928 14.1519 16.1359 14.0093C15.9791 13.8668 15.745 13.85 15.5695 13.9687L12.6034 15.9745L11.8626 11.9433Z" } });
252
383
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), export: e$b({ render: function() {
253
384
  var e2 = this.$createElement, t2 = this._self._c || e2;
254
- return t2("g", [t2("path", { attrs: { d: "M22.3,15.3l-4.1-2.8h-2.1l3.6,2.6h-4l-1.1,2.5h-3.1h-0.2H8.3l-1.1-2.5h-4l3.6-2.6H4.8l-4.1,2.8\n c0,0-0.2,4,1.4,5h9.3h0.2h9.3C22.6,19.3,22.3,15.3,22.3,15.3z" } }), this._v(" "), t2("polygon", { attrs: { points: "16.8,7.6 14.1,5.2 11.4,2.7 8.7,5.2 5.9,7.6 9.2,7.6 9.2,13.1 13.5,13.1 13.5,7.6" } })]);
385
+ return t2("g", [t2("path", { attrs: { d: "M22.3,15.3l-4.1-2.8h-2.1l3.6,2.6h-4l-1.1,2.5h-3.1h-0.2H8.3l-1.1-2.5h-4l3.6-2.6H4.8l-4.1,2.8 c0,0-0.2,4,1.4,5h9.3h0.2h9.3C22.6,19.3,22.3,15.3,22.3,15.3z" } }), this._v(" "), t2("polygon", { attrs: { points: "16.8,7.6 14.1,5.2 11.4,2.7 8.7,5.2 5.9,7.6 9.2,7.6 9.2,13.1 13.5,13.1 13.5,7.6" } })]);
255
386
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), exportIfc: e$b({ render: function() {
256
387
  var e2 = this.$createElement, t2 = this._self._c || e2;
257
388
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.8743 18.5537H5.92538V1.6318H14.0184V6.63481H18.6686V6.30358L18.8743 6.51754V18.5537ZM18.4533 6.07957L16.4743 4.02064L14.5737 2.12235V6.07957H18.4533ZM5.33679 1.04321H14.3261L16.8945 3.60843L19.4629 6.28053V19.1423H5.33679V1.04321Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.84741 0.553833H14.5286L17.2474 3.26923L19.9522 6.08347V19.6316H4.84741V0.553833ZM18.3849 7.12416H13.5291V2.12114H6.41472V18.0643H18.3849V7.12416ZM17.3042 5.59019L16.1249 4.36333L15.063 3.30273V5.59019H17.3042Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.0184 17.4473H10.7076V20.1695L9.3833 20.1695L12.3998 23.5538L15.4163 20.1695L14.0184 20.1695V17.4473Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.0162 8.23163C13.5359 7.90501 14.2302 7.98058 14.6665 8.44511L15.8945 9.75273C16.3293 10.2157 16.3635 10.9113 16.0102 11.4107L16.0096 11.4102C15.9597 11.4808 15.902 11.5476 15.8366 11.6092L14.8553 12.5339C14.776 12.6086 14.6898 12.6716 14.5989 12.7228L14.5992 12.7231C14.5055 12.7757 14.4069 12.8158 14.3057 12.8436C13.9524 12.9408 13.5674 12.8868 13.2516 12.6846L13.2526 12.6837L13.2443 12.6783L13.943 12.0259L13.9466 12.0298L15.3488 10.7085L13.6673 8.92294L13.1447 9.42292L12.4913 8.73761L13.0181 8.23359L13.0162 8.23163ZM13.1267 11.1586L12.4033 11.8341L11.7812 11.1686C11.3641 10.7223 11.3179 10.0619 11.63 9.56849L13.1267 11.1586ZM8.72122 11.2988C8.3954 10.7782 8.47097 10.0828 8.93471 9.64576L10.2396 8.41598C10.7018 7.98042 11.3961 7.94601 11.8946 8.29968L11.8943 8.30004C11.9647 8.35001 12.0313 8.40774 12.0928 8.47319L13.0162 9.45663C13.0909 9.53616 13.1537 9.62255 13.2048 9.71363L13.2053 9.71322C13.2847 9.85519 13.3356 10.0085 13.3583 10.1649C13.4033 10.4729 13.3387 10.7931 13.1665 11.0629L13.1658 11.0621L13.1606 11.0702L12.5094 10.3704L12.5131 10.367L11.1938 8.962L9.41138 10.6466L9.9107 11.1702L9.22553 11.8258L8.72216 11.2979L8.72122 11.2988ZM11.6437 11.1881L12.3179 11.9127L11.6531 12.5362C11.2078 12.9539 10.5487 13.0001 10.0562 12.6875L11.6437 11.1881ZM11.784 15.5876C11.2642 15.9142 10.57 15.8386 10.1338 15.3741L8.90577 14.0664C8.47101 13.6035 8.43679 12.9079 8.79001 12.4085L8.79049 12.409C8.84043 12.3383 8.89812 12.2715 8.96355 12.2099L9.94485 11.2852C10.0241 11.2105 10.1102 11.1476 10.201 11.0965L10.2006 11.0961C10.2924 11.0446 10.3888 11.005 10.4878 10.9774C10.843 10.8776 11.2308 10.931 11.5486 11.1345L11.5473 11.1357L11.5552 11.1408L10.8566 11.7931L10.8533 11.7895L9.45126 13.1107L11.133 14.8964L11.6557 14.3963L12.3127 15.0853L11.7862 15.589L11.7151 15.5145L11.784 15.5876ZM11.6729 12.6603L12.3963 11.9849L13.0186 12.6507C13.4356 13.0969 13.4819 13.7573 13.1698 14.2507L11.6729 12.6603ZM15.8647 14.187C16.3285 13.75 16.404 13.0546 16.0782 12.5339L16.0774 12.5347L15.5741 12.0069L14.8891 12.6624L15.3883 13.186L13.606 14.8704L12.2868 13.4655L12.2904 13.4621L11.6392 12.7623L11.6341 12.7703L11.6333 12.7695C11.4871 12.9987 11.4184 13.2642 11.4287 13.5278C11.4363 13.7321 11.4913 13.9353 11.5944 14.1195L11.595 14.1189C11.6461 14.21 11.709 14.2963 11.7836 14.3758L12.707 15.3593C12.7685 15.4247 12.835 15.4824 12.9055 15.5324L12.9048 15.5331C13.4033 15.8868 14.0976 15.8524 14.5598 15.4168L15.8647 14.187ZM12.482 11.9198L13.1562 12.6444L14.7434 11.1452C14.2509 10.8326 13.5918 10.8788 13.1465 11.2965L12.482 11.9198Z" } })]);
@@ -276,6 +407,9 @@ var t$b = { addFile: e$b({ render: function() {
276
407
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fullscreen: e$b({ render: function() {
277
408
  var e2 = this.$createElement;
278
409
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 0H4.8995e-05H2.19545H8.05005V2.15625H2.19545V7.90625H0V0ZM20.8045 2.15628L14.95 2.15628V3.05176e-05H23V2.15628V7.90628H20.8045V2.15628ZM4.8995e-05 23H0V15.0938H2.19545V20.8437H8.05005V23H2.19545H4.8995e-05ZM14.95 23L23 23V20.8438V15.0938H20.8045V20.8438H14.95V23Z" } });
410
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), grid: e$b({ render: function() {
411
+ var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
412
+ return i2("g", [i2("path", { attrs: { d: "M3.11719 2.52161C3.11719 2.24546 3.34105 2.02161 3.61719 2.02161H7.61719C7.89333 2.02161 8.11719 2.24546 8.11719 2.52161V6.52161C8.11719 6.79775 7.89333 7.02161 7.61719 7.02161H3.61719C3.34105 7.02161 3.11719 6.79775 3.11719 6.52161V2.52161Z" } }), e2._v(" "), i2("path", { attrs: { d: "M3.11719 16.4784C3.11719 16.2023 3.34105 15.9784 3.61719 15.9784H7.61719C7.89333 15.9784 8.11719 16.2023 8.11719 16.4784V20.4784C8.11719 20.7545 7.89333 20.9784 7.61719 20.9784H3.61719C3.34105 20.9784 3.11719 20.7545 3.11719 20.4784V16.4784Z" } }), e2._v(" "), i2("path", { attrs: { d: "M3.11719 9.5C3.11719 9.22386 3.34105 9 3.61719 9H7.61719C7.89333 9 8.11719 9.22386 8.11719 9.5V13.5C8.11719 13.7761 7.89333 14 7.61719 14H3.61719C3.34105 14 3.11719 13.7761 3.11719 13.5V9.5Z" } }), e2._v(" "), i2("path", { attrs: { d: "M9.68536 2.52161C9.68536 2.24546 9.90922 2.02161 10.1854 2.02161H14.1854C14.4615 2.02161 14.6854 2.24546 14.6854 2.52161V6.52161C14.6854 6.79775 14.4615 7.02161 14.1854 7.02161H10.1854C9.90922 7.02161 9.68536 6.79775 9.68536 6.52161V2.52161Z" } }), e2._v(" "), i2("path", { attrs: { d: "M9.68536 16.4784C9.68536 16.2023 9.90922 15.9784 10.1854 15.9784H14.1854C14.4615 15.9784 14.6854 16.2023 14.6854 16.4784V20.4784C14.6854 20.7545 14.4615 20.9784 14.1854 20.9784H10.1854C9.90922 20.9784 9.68536 20.7545 9.68536 20.4784V16.4784Z" } }), e2._v(" "), i2("path", { attrs: { d: "M9.68536 9.5C9.68536 9.22386 9.90922 9 10.1854 9H14.1854C14.4615 9 14.6854 9.22386 14.6854 9.5V13.5C14.6854 13.7761 14.4615 14 14.1854 14H10.1854C9.90922 14 9.68536 13.7761 9.68536 13.5V9.5Z" } }), e2._v(" "), i2("path", { attrs: { d: "M16.2535 2.52161C16.2535 2.24546 16.4774 2.02161 16.7535 2.02161H20.7535C21.0297 2.02161 21.2535 2.24546 21.2535 2.52161V6.52161C21.2535 6.79775 21.0297 7.02161 20.7535 7.02161H16.7535C16.4774 7.02161 16.2535 6.79775 16.2535 6.52161V2.52161Z" } }), e2._v(" "), i2("path", { attrs: { d: "M16.2535 16.4784C16.2535 16.2023 16.4774 15.9784 16.7535 15.9784H20.7535C21.0297 15.9784 21.2535 16.2023 21.2535 16.4784V20.4784C21.2535 20.7545 21.0297 20.9784 20.7535 20.9784H16.7535C16.4774 20.9784 16.2535 20.7545 16.2535 20.4784V16.4784Z" } }), e2._v(" "), i2("path", { attrs: { d: "M16.2535 9.5C16.2535 9.22386 16.4774 9 16.7535 9H20.7535C21.0297 9 21.2535 9.22386 21.2535 9.5V13.5C21.2535 13.7761 21.0297 14 20.7535 14H16.7535C16.4774 14 16.2535 13.7761 16.2535 13.5V9.5Z" } })]);
279
413
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), group: e$b({ render: function() {
280
414
  var e2 = this.$createElement, t2 = this._self._c || e2;
281
415
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.1632 14.0812C5.66865 14.0812 0.688965 15.3332 0.688965 17.8184V19.6869H15.6374V17.8184C15.6374 15.3332 10.6577 14.0812 8.1632 14.0812Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.16302 12.2129C10.2278 12.2129 11.9001 10.5405 11.9001 8.47576C11.9001 6.41103 10.2278 4.73865 8.16302 4.73865C6.09828 4.73865 4.4259 6.41103 4.4259 8.47576C4.4259 10.5405 6.09828 12.2129 8.16302 12.2129Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.2606 13.2593C19.0363 13.2593 20.4745 11.821 20.4745 10.0453C20.4745 8.26967 19.0363 6.83142 17.2606 6.83142C15.4849 6.83142 14.0467 8.26967 14.0467 10.0453C14.0467 11.821 15.4849 13.2593 17.2606 13.2593Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.8334 19.6868H17.2612V17.6154C17.2612 16.5705 16.4671 15.7222 15.3304 15.0718C16.0414 14.9347 16.7195 14.866 17.2613 14.866C19.4066 14.866 23.6891 15.9427 23.6891 18.08V19.6869H10.8334V19.6868Z" } })]);
@@ -291,12 +425,21 @@ var t$b = { addFile: e$b({ render: function() {
291
425
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), import: e$b({ render: function() {
292
426
  var e2 = this.$createElement;
293
427
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.8998 13.6346L6.68806 8.51539L9.94558 8.51539L9.94558 2.85382L13.8541 2.85382V8.51539L17.1116 8.51539L11.8998 13.6346ZM1.06519 15.8128L5.86457 12.5658L7.81884 12.8583L3.45051 15.8128H6.46811C6.89919 15.8128 7.53145 16.2516 7.81884 17.4217C8.04875 18.3578 8.98756 18.7284 9.42822 18.7966H11.8998L11.8998 18.7966H14.3713C14.812 18.7284 15.7508 18.3578 15.9807 17.4217C16.2681 16.2516 16.9004 15.8128 17.3314 15.8128H20.349L15.9807 12.8583L17.935 12.5658L22.7344 15.8128C23.108 16.0079 23.723 16.8776 23.1942 18.7966C22.5332 21.1954 21.2974 21.2539 20.8951 21.2539H11.8998L11.8998 21.2538H2.90447C2.50213 21.2538 1.26636 21.1953 0.605363 18.7966C0.0765659 16.8776 0.691582 16.0078 1.06519 15.8128Z" } });
428
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexAscending: e$b({ render: function() {
429
+ var e2 = this.$createElement, t2 = this._self._c || e2;
430
+ return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.9932 20.4443L17.9932 1.39685L19.9351 1.39685L19.9351 20.4443L17.9932 20.4443Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.3563 17.3742C21.3372 17.3539 21.306 17.3539 21.2868 17.3742L18.9951 19.8103L16.713 17.3847C16.6939 17.3643 16.6627 17.3643 16.6436 17.3847L16.1015 17.9608C16.0824 17.9811 16.0824 18.0144 16.1015 18.0347L18.9577 21.0707C18.9764 21.0906 19.0069 21.0909 19.0261 21.0716C19.032 21.0691 19.0375 21.0653 19.0422 21.0602L21.8984 18.0242C21.9175 18.0039 21.9175 17.9707 21.8984 17.9504L21.3563 17.3742Z" } }), this._v(" "), t2("path", { attrs: { d: "M2.8938 18.5909L5.23755 4.37219H7.17114L4.83716 18.5909H2.8938ZM6.40942 18.5909L8.75317 4.37219H10.6965L8.35278 18.5909H6.40942ZM12.2786 10.2218H2.11255V8.43469H12.2786V10.2218ZM11.5364 14.587H1.38013V12.7999H11.5364V14.587Z" } })]);
431
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexDescending: e$b({ render: function() {
432
+ var e2 = this.$createElement, t2 = this._self._c || e2;
433
+ return t2("g", [t2("g", { attrs: { "clip-path": "url(#clip0_3035_480)" } }, [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.0067 2.56714V21.6146H18.0648V2.56714H20.0067Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.6436 5.63724C16.6627 5.65754 16.6939 5.65754 16.713 5.63724L19.0048 3.20114L21.2868 5.62679C21.3059 5.64714 21.3372 5.64714 21.3563 5.62679L21.8983 5.05063C21.9175 5.03033 21.9175 4.99709 21.8983 4.97679L19.0422 1.94079C19.0234 1.92083 18.9929 1.92061 18.9738 1.93985C18.9679 1.9424 18.9624 1.94622 18.9577 1.95125L16.1015 4.98724C16.0824 5.00754 16.0824 5.04078 16.1015 5.06108L16.6436 5.63724Z" } }), this._v(" "), t2("path", { attrs: { d: "M2.8938 18.5909L5.23755 4.37219H7.17114L4.83716 18.5909H2.8938ZM6.40942 18.5909L8.75317 4.37219H10.6965L8.35278 18.5909H6.40942ZM12.2786 10.2218H2.11255V8.43469H12.2786V10.2218ZM11.5364 14.587H1.38013V12.7999H11.5364V14.587Z" } })])]);
294
434
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), information: e$b({ render: function() {
295
435
  var e2 = this.$createElement;
296
436
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 11.5C0 17.8424 5.15936 23 11.5 23C17.8406 23 23 17.8424 23 11.5C23 5.15936 17.8406 0 11.5 0C5.15936 0 0 5.15936 0 11.5ZM1.70953 11.5C1.70953 6.10131 6.10131 1.70953 11.5 1.70953C16.8987 1.70953 21.2905 6.10131 21.2905 11.5C21.2905 16.8987 16.8987 21.2905 11.5 21.2905C6.10131 21.2905 1.70953 16.8987 1.70953 11.5ZM10.8029 14.3193L10.5157 4.4775H12.4834L12.1962 14.3193H10.8029ZM10.2901 17.2508C10.2901 16.5123 10.8029 15.9789 11.5004 15.9789C12.2372 15.9789 12.7091 16.5123 12.7091 17.2508C12.7091 17.9688 12.2372 18.5209 11.5004 18.5209C10.7824 18.5209 10.2901 17.9688 10.2901 17.2508Z" } });
297
437
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), inProgressFile: e$b({ render: function() {
298
438
  var e2 = this.$createElement, t2 = this._self._c || e2;
299
439
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 18.6042V0.395833C0 0.178125 0.178125 0 0.395833 0H9.5V5.14583C9.5 5.36354 9.67813 5.54167 9.89583 5.54167H14.25V18.6042C14.25 18.8219 14.0719 19 13.8542 19H0.395833C0.178125 19 0 18.8219 0 18.6042ZM14.1508 4.55257C14.1904 4.61194 14.2101 4.67132 14.2299 4.75048H10.2914V0.237984L14.1508 4.55257Z" } }), this._v(" "), t2("circle", { attrs: { cx: "13", cy: "18", r: "6", fill: "#D8D8D8" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11 15V17H11.0033L11 17.0033L12.3333 18.3333L11 19.6667L11.0033 19.67H11V21.6667H15V19.67H14.9967L15 19.6667L13.6667 18.3333L15 17.0033L14.9967 17H15V15H11ZM14.3333 19.8333V21H11.6667V19.8333L13 18.5L14.3333 19.8333ZM11.6667 16.8333V15.6667H14.3333V16.8333L13 18.1667L11.6667 16.8333ZM13.0002 19.6667L12.0002 20.6667H14.0002L13.0002 19.6667ZM13.9999 16.8333L12.9999 17.8333L11.9999 16.8333L13.9999 16.8333Z", fill: "#2F374A" } })]);
440
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), invitation: e$b({ render: function() {
441
+ var e2 = this.$createElement;
442
+ return (this._self._c || e2)("path", { attrs: { d: "M11.5 1.5C5.98 1.5 1.5 5.98 1.5 11.5C1.5 17.02 5.98 21.5 11.5 21.5C17.02 21.5 21.5 17.02 21.5 11.5C21.5 5.98 17.02 1.5 11.5 1.5ZM15.11 7.84C16.18 7.84 17.04 8.7 17.04 9.77C17.04 10.84 16.18 11.7 15.11 11.7C14.04 11.7 13.18 10.84 13.18 9.77C13.17 8.7 14.04 7.84 15.11 7.84ZM9.11 6.26C10.41 6.26 11.47 7.32 11.47 8.62C11.47 9.92 10.41 10.98 9.11 10.98C7.81 10.98 6.75 9.92 6.75 8.62C6.75 7.31 7.8 6.26 9.11 6.26ZM9.11 15.39V19.14C6.71 18.39 4.81 16.54 3.97 14.18C5.02 13.06 7.64 12.49 9.11 12.49C9.64 12.49 10.31 12.57 11.01 12.71C9.37 13.58 9.11 14.73 9.11 15.39ZM11.5 19.5C11.23 19.5 10.97 19.49 10.71 19.46V15.39C10.71 13.97 13.65 13.26 15.11 13.26C16.18 13.26 18.03 13.65 18.95 14.41C17.78 17.38 14.89 19.5 11.5 19.5Z" } });
300
443
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), isolate: e$b({ render: function() {
301
444
  var e2 = this.$createElement;
302
445
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.3904 17.581L4.92852 14.6238C4.819 14.6238 4.70947 14.5143 4.70947 14.4048V7.39524C4.70947 7.34048 4.73685 7.28571 4.76423 7.23095C4.79162 7.17619 4.819 7.12143 4.819 7.06667H5.14757L11.3904 9.58571L17.0857 7.17619L11.4999 4.65714L6.89995 6.84762C6.79042 6.95714 6.57138 6.84762 6.46185 6.73809C6.35233 6.51905 6.46185 6.40952 6.57138 6.3L11.0619 4H11.3904L17.8523 6.95714C17.9619 7.06667 18.0714 7.17619 18.0714 7.28571V14.2952C18.0714 14.4048 17.9619 14.6238 17.8523 14.6238L11.3904 17.581ZM11.2809 10.3524L5.36662 7.83333V14.1857L11.0619 16.8143V11.6667C11.0619 11.4476 11.1714 11.3381 11.3904 11.3381C11.6095 11.3381 11.719 11.4476 11.719 11.6667V16.8143L17.5238 14.1857V7.83333L11.4999 10.3524H11.2809ZM18.9476 14.4001V9.58105C21.4667 10.7858 23 12.5382 23 14.5096C23 18.1239 17.8524 20.9715 11.5 20.9715C5.14762 20.9715 0 18.1239 0 14.5096C0 12.5382 1.53333 10.7858 4.05238 9.58105V14.4001C4.05238 14.7287 4.27143 15.1668 4.6 15.2763L10.9524 18.2334H11.0619H11.281H11.5H11.6095L18.4 15.2763C18.7286 15.1668 18.9476 14.8382 18.9476 14.4001Z" } });
@@ -309,6 +452,9 @@ var t$b = { addFile: e$b({ render: function() {
309
452
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), linkedDocument: e$b({ render: function() {
310
453
  var e2 = this.$createElement;
311
454
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3 0.479167V22.5208C3 22.7844 3.21562 23 3.47917 23H19.7708C20.0344 23 20.25 22.7844 20.25 22.5208V6.70833H14.9792C14.7156 6.70833 14.5 6.49271 14.5 6.22917V0H3.47917C3.21562 0 3 0.215625 3 0.479167ZM20.2257 5.75036C20.2017 5.65452 20.1778 5.58265 20.1299 5.51077L15.458 0.287855V5.75036H20.2257ZM15.1622 15.8675C16.4073 15.859 17.4235 14.8428 17.4321 13.5977C17.4406 12.3526 16.4382 11.3502 15.1931 11.3587L14.0318 11.3667C13.7931 11.3683 13.5983 11.5632 13.5966 11.8019C13.595 12.0406 13.7872 12.2327 14.0259 12.2311L15.1872 12.2231C15.9549 12.2179 16.5729 12.8359 16.5677 13.6036C16.5624 14.3713 15.9358 14.9979 15.1681 15.0031L12.8455 15.0191C12.0833 15.0243 11.4686 14.415 11.465 13.6549C11.4706 13.5382 11.4293 13.4203 11.3408 13.3319C11.1729 13.164 10.8988 13.1658 10.7286 13.336C10.6357 13.429 10.5929 13.5529 10.6006 13.6736C10.6077 14.9051 11.6042 15.8919 12.8396 15.8835L15.1622 15.8675ZM8.73734 11.4119C7.49227 11.4204 6.47603 12.4367 6.4675 13.6817C6.45897 14.9268 7.46138 15.9292 8.70646 15.9207L9.86777 15.9127C10.1065 15.9111 10.3013 15.7163 10.3029 15.4776C10.3046 15.2389 10.1124 15.0467 9.8737 15.0483L8.71238 15.0563C7.9447 15.0615 7.32664 14.4435 7.3319 13.6758C7.33715 12.9081 7.96374 12.2815 8.73142 12.2763L11.0541 12.2604C11.8163 12.2551 12.431 12.8644 12.4346 13.6245C12.429 13.7412 12.4703 13.8591 12.5588 13.9476C12.7267 14.1155 13.0007 14.1136 13.1709 13.9434C13.2639 13.8504 13.3066 13.7265 13.299 13.6059C13.2918 12.3743 12.2954 11.3875 11.06 11.396L8.73734 11.4119Z" } });
455
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), list: e$b({ render: function() {
456
+ var e2 = this.$createElement, t2 = this._self._c || e2;
457
+ return t2("g", [t2("path", { attrs: { d: "M19.1537 13.26C19.1537 12.9839 18.9298 12.76 18.6537 12.76H8.56629C8.29015 12.76 8.06629 12.9839 8.06629 13.26V14.3701C8.06629 14.6462 8.29015 14.8701 8.56629 14.8701H18.6537C18.9298 14.8701 19.1537 14.6462 19.1537 14.3701V13.26Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.1537 17.8898C19.1537 17.6137 18.9298 17.3898 18.6537 17.3898H8.56629C8.29015 17.3898 8.06629 17.6137 8.06629 17.8898V18.9999C8.06629 19.276 8.29015 19.4999 8.56629 19.4999H18.6537C18.9298 19.4999 19.1537 19.276 19.1537 18.9999V17.8898Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.1537 8.62994C19.1537 8.3538 18.9298 8.12994 18.6537 8.12994H8.56629C8.29015 8.12994 8.06629 8.3538 8.06629 8.62994V9.74C8.06629 10.0161 8.29015 10.24 8.56629 10.24H18.6537C18.9298 10.24 19.1537 10.0161 19.1537 9.74V8.62994Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.1537 4C19.1537 3.72386 18.9298 3.5 18.6537 3.5H8.56629C8.29015 3.5 8.06629 3.72386 8.06629 4V5.11006C8.06629 5.3862 8.29015 5.61006 8.56629 5.61006H18.6537C18.9298 5.61006 19.1537 5.3862 19.1537 5.11006V4Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 13.26C3.84619 12.9839 4.07005 12.76 4.34619 12.76H5.45625C5.73239 12.76 5.95625 12.9839 5.95625 13.26V14.3701C5.95625 14.6462 5.73239 14.8701 5.45625 14.8701H4.34619C4.07005 14.8701 3.84619 14.6462 3.84619 14.3701V13.26Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 17.8898C3.84619 17.6137 4.07005 17.3898 4.34619 17.3898H5.45625C5.73239 17.3898 5.95625 17.6137 5.95625 17.8898V18.9999C5.95625 19.276 5.73239 19.4999 5.45625 19.4999H4.34619C4.07005 19.4999 3.84619 19.276 3.84619 18.9999V17.8898Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 8.62994C3.84619 8.3538 4.07005 8.12994 4.34619 8.12994H5.45625C5.73239 8.12994 5.95625 8.3538 5.95625 8.62994V9.74C5.95625 10.0161 5.73239 10.24 5.45625 10.24H4.34619C4.07005 10.24 3.84619 10.0161 3.84619 9.74V8.62994Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 4C3.84619 3.72386 4.07005 3.5 4.34619 3.5H5.45625C5.73239 3.5 5.95625 3.72386 5.95625 4V5.11006C5.95625 5.3862 5.73239 5.61006 5.45625 5.61006H4.34619C4.07005 5.61006 3.84619 5.3862 3.84619 5.11006V4Z" } })]);
312
458
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), listManage: e$b({ render: function() {
313
459
  var e2 = this.$createElement;
314
460
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.82965 16.6538L5.82965 0.553833H8.12965L8.12965 16.6538H11.9593L6.97965 23.5538L2 16.6538H5.82965ZM16.1796 0.553833L21.1593 7.45383L17.3296 7.45383V23.5538H15.0296V7.45383L11.2 7.45383L16.1796 0.553833Z" } });
@@ -339,6 +485,9 @@ var t$b = { addFile: e$b({ render: function() {
339
485
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), path: e$b({ render: function() {
340
486
  var e2 = this.$createElement;
341
487
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 2.87267C23 4.23366 21.8967 5.33696 20.5357 5.33696C19.8712 5.33696 19.2682 5.07396 18.825 4.64637L9.83851 9.13959C9.85081 9.23937 9.85714 9.341 9.85714 9.4441C9.85714 9.54715 9.85082 9.64872 9.83853 9.74845L18.8251 14.2417C19.2683 13.8142 19.8713 13.5512 20.5357 13.5512C21.8967 13.5512 23 14.6545 23 16.0155C23 17.3765 21.8967 18.4798 20.5357 18.4798C19.6964 18.4798 18.9551 18.0602 18.5101 17.4193L4.92202 21.1252C4.82932 22.4016 3.76438 23.4084 2.46429 23.4084C1.1033 23.4084 0 22.3051 0 20.9441C0 19.5831 1.1033 18.4798 2.46429 18.4798C3.30355 18.4798 4.04483 18.8994 4.48982 19.5402L18.078 15.8343C18.081 15.7929 18.085 15.7518 18.0901 15.711L9.10365 11.2178C8.66043 11.6454 8.05736 11.9084 7.39286 11.9084C6.03187 11.9084 4.92857 10.8051 4.92857 9.4441C4.92857 8.08311 6.03187 6.97982 7.39286 6.97982C8.0573 6.97982 8.66032 7.24278 9.10353 7.67032L18.09 3.17706C18.0778 3.07732 18.0714 2.97573 18.0714 2.87267C18.0714 1.51168 19.1747 0.408386 20.5357 0.408386C21.8967 0.408386 23 1.51168 23 2.87267Z" } });
488
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), pieGraph: e$b({ render: function() {
489
+ var e2 = this.$createElement, t2 = this._self._c || e2;
490
+ return t2("g", [t2("circle", { attrs: { cx: "12.2266", cy: "12.2281", r: "9.65632", stroke: "#D8D8D8", "stroke-width": "5", fill: "none" } }), this._v(" "), t2("path", { attrs: { d: "M21.8824 12.2281C21.8824 6.89506 17.5592 2.57178 12.2261 2.57178C11.6725 2.57178 11.1297 2.61837 10.6016 2.70785", stroke: "var(--color-secondary)", "stroke-width": "5", fill: "none" } }), this._v(" "), t2("path", { attrs: { d: "M12.2266 21.8843C6.89359 21.8843 2.57031 17.5611 2.57031 12.228C2.57031 7.44861 6.04256 3.4802 10.6021 2.70776", stroke: "var(--color-primary)", "stroke-width": "5", fill: "none" } })]);
342
491
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), plus: e$b({ render: function() {
343
492
  var e2 = this.$createElement;
344
493
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.2066 0.46463H9.92089V10.3218H0.0637207V13.6075H9.92089V23.4646H13.2066V13.6075H23.0637V10.3218H13.2066V0.46463Z" } });
@@ -429,6 +578,9 @@ var t$b = { addFile: e$b({ render: function() {
429
578
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), system: e$b({ render: function() {
430
579
  var e2 = this.$createElement;
431
580
  return (this._self._c || e2)("path", { attrs: { d: "M18.0935 15.9516C16.9935 15.9516 15.9935 16.4516 15.2935 17.2516L8.99346 13.5516C9.09346 13.1516 9.19346 12.7516 9.19346 12.3516C9.19346 11.9516 9.09346 11.4516 8.99346 11.1516L15.2935 7.35159C15.9935 8.15159 16.9935 8.65159 18.0935 8.65159C20.1935 8.65159 21.7935 6.95159 21.7935 4.95159C21.7935 2.95159 20.0935 1.25159 18.0935 1.25159C15.9935 1.25159 14.3935 2.95159 14.3935 4.95159C14.3935 5.35159 14.4935 5.85159 14.5935 6.15159L8.29346 9.85159C7.59346 9.05159 6.59346 8.55159 5.49346 8.55159C3.39346 8.55159 1.79346 10.2516 1.79346 12.2516C1.79346 14.3516 3.49346 15.9516 5.49346 15.9516C6.59346 15.9516 7.59346 15.4516 8.29346 14.6516L14.5935 18.3516C14.4935 18.7516 14.3935 19.1516 14.3935 19.5516C14.3935 21.6516 16.0935 23.2516 18.0935 23.2516C20.1935 23.2516 21.7935 21.5516 21.7935 19.5516C21.7935 17.5516 20.1935 15.9516 18.0935 15.9516Z" } });
581
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tag: e$b({ render: function() {
582
+ var e2 = this.$createElement, t2 = this._self._c || e2;
583
+ return t2("svg", { attrs: { width: "23", height: "23", viewBox: "0 0 23 23", xmlns: "http://www.w3.org/2000/svg" } }, [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.3962 22.0997C9.45679 23.0219 7.94129 23.0015 7.01123 22.0541L0.836436 15.7643C-0.0936297 14.8169 -0.0860675 13.3012 0.853323 12.379L12.5926 0.854517C13.0398 0.415541 13.6433 0.171805 14.2725 0.176062L20.091 0.215414C21.3707 0.224069 22.4258 1.23792 22.486 2.51688L22.7832 8.82547C22.8151 9.50319 22.5582 10.1602 22.0763 10.6333L10.3962 22.0997ZM19.2431 6.6774C18.3037 7.59961 16.7882 7.57919 15.8581 6.63179C14.9281 5.68439 14.9356 4.16877 15.875 3.24657C16.8144 2.32436 18.3299 2.34479 19.26 3.29219C20.19 4.23959 20.1825 5.7552 19.2431 6.6774Z" } })]);
432
584
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tree: e$b({ render: function() {
433
585
  var e2 = this.$createElement;
434
586
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6656 16.4201H20.5497V12.3624C20.5497 11.9155 20.2107 11.5506 19.7954 11.5506H12.2543V7.49294H13.1828C13.9164 7.49294 14.5163 6.84638 14.5163 6.05693V2.43601C14.5163 1.64656 13.9164 1 13.1828 1H9.81719C9.08361 1 8.4828 1.64656 8.4828 2.43601V6.05693C8.4828 6.84638 9.08361 7.49294 9.81719 7.49294H10.7457V11.5506H3.20459C2.78931 11.5506 2.45029 11.9155 2.45029 12.3624V16.4201H1.33438C0.600802 16.4201 0 17.0667 0 17.8561V21.477C0 22.2665 0.600802 22.913 1.33438 22.913H4.69907C5.43265 22.913 6.03345 22.2665 6.03345 21.477V17.8561C6.03345 17.0667 5.43265 16.4201 4.69907 16.4201H3.95795V13.1741H10.7457V16.4201H9.81719C9.08361 16.4201 8.4828 17.0667 8.4828 17.8561V21.477C8.4828 22.2665 9.08361 22.913 9.81719 22.913H13.1828C13.9164 22.913 14.5163 22.2665 14.5163 21.477V17.8561C14.5163 17.0667 13.9164 16.4201 13.1828 16.4201H12.2543V13.1741H19.0411V16.4201H18.3009C17.5664 16.4201 16.9665 17.0667 16.9665 17.8561V21.477C16.9665 22.2665 17.5664 22.913 18.3009 22.913H21.6656C22.3992 22.913 23 22.2665 23 21.477V17.8561C23 17.0667 22.3992 16.4201 21.6656 16.4201Z" } });
@@ -453,6 +605,9 @@ var t$b = { addFile: e$b({ render: function() {
453
605
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validatedFile: e$b({ render: function() {
454
606
  var e2 = this.$createElement, t2 = this._self._c || e2;
455
607
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 18.6042V0.395833C0 0.178125 0.178125 0 0.395833 0H9.5V5.14583C9.5 5.36354 9.67813 5.54167 9.89583 5.54167H14.25V18.6042C14.25 18.8219 14.0719 19 13.8542 19H0.395833C0.178125 19 0 18.8219 0 18.6042ZM14.1508 4.55257C14.1904 4.61194 14.2101 4.67132 14.2299 4.75048H10.2914V0.237984L14.1508 4.55257Z" } }), this._v(" "), t2("circle", { attrs: { cx: "13", cy: "18", r: "6", fill: "#00AF50" } }), this._v(" "), t2("path", { attrs: { d: "M15.9565 15L17 16.0588L12.1374 21L9 17.8235L10.0435 16.7647L12.1374 18.8824L15.9565 15Z", fill: "white" } })]);
608
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), versioning: e$b({ render: function() {
609
+ var e2 = this.$createElement, t2 = this._self._c || e2;
610
+ return t2("svg", { attrs: { width: "23", height: "23", viewBox: "0 0 23 23", xmlns: "http://www.w3.org/2000/svg" } }, [t2("rect", { attrs: { x: "10.7764", y: "3", width: "12.2237", height: "18" } }), this._v(" "), t2("rect", { attrs: { x: "5.38818", y: "4.89471", width: "3.86011", height: "14.2105" } }), this._v(" "), t2("rect", { attrs: { y: "6.78949", width: "3.86011", height: "10.4211" } })]);
456
611
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), video: e$b({ render: function() {
457
612
  var e2 = this.$createElement;
458
613
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.40701 12.9833C4.32585 12.9833 3.45013 12.1298 3.45013 11.076C3.45013 10.0222 4.32585 9.16866 5.40701 9.16866C6.48817 9.16866 7.36388 10.0222 7.36388 11.076C7.36388 12.1298 6.48817 12.9833 5.40701 12.9833ZM21.9841 7.21059L18.5565 10.6275V7.87929C18.5565 7.10276 17.9049 6.46759 17.1082 6.46759H1.46619C0.669494 6.46759 0.0178223 7.10276 0.0178223 7.87929V17.8337C0.0178223 18.6093 0.669494 19.2454 1.46619 19.2454H17.1082C17.9049 19.2454 18.5565 18.6093 18.5565 17.8337V14.7294L21.9841 18.1463C22.3615 18.5232 23.0178 18.2623 23.0178 17.7358V7.62196C23.0178 7.09461 22.3615 6.83365 21.9841 7.21059Z" } });
@@ -481,41 +636,41 @@ var t$b = { addFile: e$b({ render: function() {
481
636
  var e2 = this.$createElement, t2 = this._self._c || e2;
482
637
  return t2("g", [t2("path", { attrs: { d: "M8.96582 11.3144L11.6658 10.1144V3.91443L1.96582 8.11443L8.96582 11.3144Z" } }), this._v(" "), t2("path", { attrs: { d: "M1.0658 15.2145L11.6658 19.9145V13.6145L1.0658 8.81445V15.2145Z" } }), this._v(" "), t2("path", { attrs: { d: "M22.9658 8.11443L13.2658 3.91443V10.1144L15.9658 11.3144L22.9658 8.11443Z" } }), this._v(" "), t2("path", { attrs: { d: "M13.2658 13.6145V19.9145L23.8658 15.2145V8.81445L13.2658 13.6145Z" } })]);
483
638
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, i$a = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
484
- const r$b = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
485
- var d$6 = { name: "BIMDataIcon", components: __spreadValues({}, function(e2 = {}) {
639
+ const d$6 = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
640
+ var r$b = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
486
641
  return Object.entries(e2).reduce((e3, [t2, i2]) => __spreadProps(__spreadValues({}, e3), { ["bimdata-icon-" + t2]: i2 }), {});
487
- }(t$b)), props: { name: { type: String, required: true, validator: (e2) => Object.keys(t$b).includes(e2) }, color: { type: String, default: "default", validator: (e2) => i$a.includes(e2) }, fillColor: { type: String, default: "currentColor" }, fill: { type: Boolean, default: false }, stroke: { type: Boolean, default: false }, size: { type: String, default: "s", validator: (e2) => Object.keys(r$b).includes(e2) }, customSize: { type: [Number, String], default: null }, rotate: { type: Number, default: 0 }, margin: { type: String, default: "0px" } }, computed: { classes() {
642
+ }(t$b)), props: { name: { type: String, required: true, validator: (e2) => Object.keys(t$b).includes(e2) }, color: { type: String, default: "default", validator: (e2) => i$a.includes(e2) }, fillColor: { type: String, default: "currentColor" }, fill: { type: Boolean, default: false }, stroke: { type: Boolean, default: false }, size: { type: String, default: "s", validator: (e2) => Object.keys(d$6).includes(e2) }, customSize: { type: [Number, String], default: null }, rotate: { type: Number, default: 0 }, margin: { type: String, default: "0px" } }, computed: { classes() {
488
643
  return { "icon-fill": this.fill, "icon-stroke": this.stroke, ["icon-fill--" + this.color]: this.fill && this.color, ["icon-stroke--" + this.color]: this.stroke && this.color };
489
644
  }, style() {
490
645
  const e2 = this.getPixelSize(this.size);
491
646
  return { width: e2 + "px", minWidth: e2 + "px", height: e2 + "px", minHeight: e2 + "px", margin: "" + this.margin, transform: `rotate(${this.rotate}deg)` };
492
647
  } }, methods: { getPixelSize() {
493
- return this.customSize ? this.customSize : r$b[this.size];
648
+ return this.customSize ? this.customSize : d$6[this.size];
494
649
  } } };
495
650
  const o$b = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
496
651
  function n$9(e2) {
497
652
  return (e3, t2) => function(e4, t3) {
498
- const i2 = o$b ? t3.media || "default" : e4, r2 = v$2[i2] || (v$2[i2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
499
- if (!r2.ids.has(e4)) {
500
- r2.ids.add(e4);
653
+ const i2 = o$b ? t3.media || "default" : e4, d2 = C$1[i2] || (C$1[i2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
654
+ if (!d2.ids.has(e4)) {
655
+ d2.ids.add(e4);
501
656
  let i3 = t3.source;
502
- if (t3.map && (i3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", i3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"), r2.element || (r2.element = document.createElement("style"), r2.element.type = "text/css", t3.media && r2.element.setAttribute("media", t3.media), C$1 === void 0 && (C$1 = document.head || document.getElementsByTagName("head")[0]), C$1.appendChild(r2.element)), "styleSheet" in r2.element)
503
- r2.styles.push(i3), r2.element.styleSheet.cssText = r2.styles.filter(Boolean).join("\n");
657
+ if (t3.map && (i3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", i3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"), d2.element || (d2.element = document.createElement("style"), d2.element.type = "text/css", t3.media && d2.element.setAttribute("media", t3.media), v$2 === void 0 && (v$2 = document.head || document.getElementsByTagName("head")[0]), v$2.appendChild(d2.element)), "styleSheet" in d2.element)
658
+ d2.styles.push(i3), d2.element.styleSheet.cssText = d2.styles.filter(Boolean).join("\n");
504
659
  else {
505
- const e5 = r2.ids.size - 1, t4 = document.createTextNode(i3), d2 = r2.element.childNodes;
506
- d2[e5] && r2.element.removeChild(d2[e5]), d2.length ? r2.element.insertBefore(t4, d2[e5]) : r2.element.appendChild(t4);
660
+ const e5 = d2.ids.size - 1, t4 = document.createTextNode(i3), r2 = d2.element.childNodes;
661
+ r2[e5] && d2.element.removeChild(r2[e5]), r2.length ? d2.element.insertBefore(t4, r2[e5]) : d2.element.appendChild(t4);
507
662
  }
508
663
  }
509
664
  }(e3, t2);
510
665
  }
511
- let C$1;
512
- const v$2 = {};
666
+ let v$2;
667
+ const C$1 = {};
513
668
  const s$9 = e$b({ render: function() {
514
669
  var e2 = this.$createElement, t2 = this._self._c || e2;
515
- return t2("svg", { class: this.classes, style: this.style, attrs: { xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 24 24", width: "100%", fill: this.fillColor, color: this.color } }, [t2("bimdata-icon-" + this.name, { tag: "component" })], 1);
670
+ return t2("svg", { class: this.classes, style: this.style, attrs: { xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 23 23", width: "100%", fill: this.fillColor, color: this.color } }, [t2("bimdata-icon-" + this.name, { tag: "component" })], 1);
516
671
  }, staticRenderFns: [] }, function(e2) {
517
- e2 && (e2("data-v-364a838f_0", { source: 'html[data-v-364a838f]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}', map: void 0, media: void 0 }), e2("data-v-364a838f_1", { source: ".icon-fill--black{fill:var(--color-black)}.icon-fill--default{fill:currentColor}.icon-fill--disabled{fill:var(--color-silver-dark)}.icon-fill--high{fill:var(--color-high)}.icon-fill--primary{fill:var(--color-primary)}.icon-fill--secondary{fill:var(--color-secondary)}.icon-fill--success{fill:var(--color-success)}.icon-fill--silver{fill:var(--color-silver)}.icon-fill--granite-light{fill:var(--color-granite-light)}.icon-fill--granite{fill:var(--color-granite)}.icon-fill--silver-light{fill:var(--color-silver-light)}.icon-fill--warning{fill:var(--color-warning)}.icon-fill--white{fill:var(--color-white)}.icon-stroke{fill:transparent}.icon-stroke--black{stroke:var(--color-black)}.icon-stroke--default{stroke:currentColor}.icon-stroke--disabled{stroke:var(--color-silver-dark)}.icon-stroke--high{stroke:var(--color-high)}.icon-stroke--neutral{stroke:var(--color-neutral)}.icon-stroke--primary{stroke:var(--color-primary)}.icon-stroke--secondary{stroke:var(--color-secondary)}.icon-stroke--success{stroke:var(--color-success)}.icon-stroke--silver{stroke:var(--color-silver)}.icon-stroke--granite-light{stroke:var(--color-granite-light)}.icon-stroke--granite{stroke:var(--color-granite)}.icon-stroke--silver-light{stroke:var(--color-silver-light)}.icon-stroke--warning{stroke:var(--color-warning)}.icon-stroke--white{stroke:var(--color-white)}", map: void 0, media: void 0 }));
518
- }, d$6, "data-v-364a838f", false, void 0, false, n$9, void 0, void 0);
672
+ e2 && (e2("data-v-198621a2_0", { source: 'html[data-v-198621a2]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}', map: void 0, media: void 0 }), e2("data-v-198621a2_1", { source: ".icon-fill--black{fill:var(--color-black)}.icon-fill--default{fill:currentColor}.icon-fill--disabled{fill:var(--color-silver-dark)}.icon-fill--high{fill:var(--color-high)}.icon-fill--primary{fill:var(--color-primary)}.icon-fill--secondary{fill:var(--color-secondary)}.icon-fill--success{fill:var(--color-success)}.icon-fill--silver{fill:var(--color-silver)}.icon-fill--granite-light{fill:var(--color-granite-light)}.icon-fill--granite{fill:var(--color-granite)}.icon-fill--silver-light{fill:var(--color-silver-light)}.icon-fill--warning{fill:var(--color-warning)}.icon-fill--white{fill:var(--color-white)}.icon-stroke{fill:transparent}.icon-stroke--black{stroke:var(--color-black)}.icon-stroke--default{stroke:currentColor}.icon-stroke--disabled{stroke:var(--color-silver-dark)}.icon-stroke--high{stroke:var(--color-high)}.icon-stroke--neutral{stroke:var(--color-neutral)}.icon-stroke--primary{stroke:var(--color-primary)}.icon-stroke--secondary{stroke:var(--color-secondary)}.icon-stroke--success{stroke:var(--color-success)}.icon-stroke--silver{stroke:var(--color-silver)}.icon-stroke--granite-light{stroke:var(--color-granite-light)}.icon-stroke--granite{stroke:var(--color-granite)}.icon-stroke--silver-light{stroke:var(--color-silver-light)}.icon-stroke--warning{stroke:var(--color-warning)}.icon-stroke--white{stroke:var(--color-white)}", map: void 0, media: void 0 }));
673
+ }, r$b, "data-v-198621a2", false, void 0, false, n$9, void 0, void 0);
519
674
  let r$a = 0;
520
675
  var e$a = { model: { prop: "modelValue", event: "update:modelValue" }, props: { modelValue: { type: [String, Number, Boolean], default: "" }, placeholder: { type: String, default: "" }, error: { type: Boolean, default: false }, success: { type: Boolean, default: false }, errorMessage: { type: String, default: "" }, successMessage: { type: String, default: "" }, loading: { type: Boolean, default: false }, disabled: { type: Boolean, default: false }, margin: { type: String, default: "12px 0px" }, autocomplete: { type: Boolean, default: false } }, emits: ["update:modelValue", "blur", "keypress", "focus", "change"], computed: { style() {
521
676
  return { margin: "" + this.margin };
@@ -585,16 +740,16 @@ const s$8 = t$a({ render: function() {
585
740
  return r2.$emit("change", e3);
586
741
  } } }, "input", r2.$attrs, false)), r2._v(" "), t2("div", { staticClass: "bimdata-input__icon" }, [r2._t("inputIcon")], 2), r2._v(" "), t2("label", { attrs: { for: "bimdata-input-" + r2.uuid } }, [r2._v(r2._s(r2.placeholder))]), r2._v(" "), t2("span", { staticClass: "bar" }), r2._v(" "), r2.error ? t2("span", { staticClass: "error" }, [r2._v(r2._s(r2.errorMessage))]) : r2._e(), r2._v(" "), r2.success ? t2("span", { staticClass: "success" }, [r2._v(r2._s(r2.successMessage))]) : r2._e()]);
587
742
  }, staticRenderFns: [] }, function(r2) {
588
- r2 && (r2("data-v-957ba7b2_0", { source: 'html[data-v-957ba7b2]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}html[data-v-957ba7b2]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.text-left[data-v-957ba7b2]{text-align:left}.text-center[data-v-957ba7b2]{text-align:center}.text-right[data-v-957ba7b2]{text-align:right}.bimdata-link[data-v-957ba7b2]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-957ba7b2]{font-family:roboto,sans-serif}', map: void 0, media: void 0 }), r2("data-v-957ba7b2_1", { source: '@keyframes scaleX{0%{transform:scaleX(0);left:-50%}25%{transform:scaleX(1);left:0}50%{transform:scaleX(1);left:50%}75%{transform:scaleX(0);left:50%}100%{transform:scaleX(0);left:50%}}input:-webkit-autofill{box-shadow:0 0 0 1000px var(--color-white) inset}.bimdata-input{min-height:32px;position:relative;font-family:var(--primary-font)}.bimdata-input.not-empty label{top:-22px;color:var(--color-primary);font-size:.7142857143em}.bimdata-input input{padding:0;width:100%;height:32px;border:none;display:flex;cursor:pointer;background-color:transparent;font-size:1em}.bimdata-input input:focus{outline:0}.bimdata-input input:focus~label{top:-22px;font-size:.7142857143em}.bimdata-input input:focus~.bar:after{width:100%;transition:transform .2s cubic-bezier(.55,0,.55,.2);transform:scaleX(1)}.bimdata-input__icon{position:absolute;right:0;top:8px}.bimdata-input label{position:absolute;top:0;left:0;font-size:.8571428571em;transform:translateY(8px);transition:.2s ease all;color:var(--color-granite-light);cursor:pointer}.bimdata-input .bar{width:100%;height:1px;display:block;background:var(--color-silver)}.bimdata-input .bar::after,.bimdata-input .bar::before{width:0;height:2px;content:"";display:block;position:absolute;background-color:var(--color-primary);transform:scaleX(0)}.bimdata-input.loading input~.bar:after{width:50%;animation:scaleX 2s linear infinite none;transform-origin:right}.bimdata-input.loading input~.bar:before{width:50%;animation:scaleX 2s linear 1s infinite none;transform-origin:right}.bimdata-input .error{color:var(--color-high);font-size:.7857142857em}.bimdata-input .success{color:var(--color-success);font-size:.7857142857em}.bimdata-input.disabled{opacity:.6}.bimdata-input.error label{color:var(--color-high)}.bimdata-input.error .bar{background-color:var(--color-high)}.bimdata-input.error .bar::after,.bimdata-input.error .bar::before{background-color:var(--color-high)}.bimdata-input.success label{color:var(--color-success)}.bimdata-input.success .bar{background-color:var(--color-success)}.bimdata-input.success .bar::after,.bimdata-input.success .bar::before{background-color:var(--color-success)}', map: void 0, media: void 0 }));
743
+ r2 && (r2("data-v-957ba7b2_0", { source: 'html[data-v-957ba7b2]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}html[data-v-957ba7b2]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.text-left[data-v-957ba7b2]{text-align:left}.text-center[data-v-957ba7b2]{text-align:center}.text-right[data-v-957ba7b2]{text-align:right}.bimdata-link[data-v-957ba7b2]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-957ba7b2]{font-family:roboto,sans-serif}', map: void 0, media: void 0 }), r2("data-v-957ba7b2_1", { source: '@keyframes scaleX{0%{transform:scaleX(0);left:-50%}25%{transform:scaleX(1);left:0}50%{transform:scaleX(1);left:50%}75%{transform:scaleX(0);left:50%}100%{transform:scaleX(0);left:50%}}input:-webkit-autofill{box-shadow:0 0 0 1000px var(--color-white) inset}.bimdata-input{min-height:32px;position:relative;font-family:var(--primary-font);font-size:16px}.bimdata-input.not-empty label{top:-22px;color:var(--color-primary);font-size:.7142857143em}.bimdata-input input{padding:0;width:100%;height:32px;border:none;display:flex;cursor:pointer;background-color:transparent;font-size:1em}.bimdata-input input:focus{outline:0}.bimdata-input input:focus~label{top:-22px;font-size:.7142857143em}.bimdata-input input:focus~.bar:after{width:100%;transition:transform .2s cubic-bezier(.55,0,.55,.2);transform:scaleX(1)}.bimdata-input__icon{position:absolute;right:0;top:8px}.bimdata-input label{position:absolute;top:0;left:0;font-size:.8571428571em;transform:translateY(8px);transition:.2s ease all;color:var(--color-granite-light);cursor:pointer}.bimdata-input .bar{width:100%;height:1px;display:block;background:var(--color-silver)}.bimdata-input .bar::after,.bimdata-input .bar::before{width:0;height:2px;content:"";display:block;position:absolute;background-color:var(--color-primary);transform:scaleX(0)}.bimdata-input.loading input~.bar:after{width:50%;animation:scaleX 2s linear infinite none;transform-origin:right}.bimdata-input.loading input~.bar:before{width:50%;animation:scaleX 2s linear 1s infinite none;transform-origin:right}.bimdata-input .error{color:var(--color-high);font-size:.7857142857em}.bimdata-input .success{color:var(--color-success);font-size:.7857142857em}.bimdata-input.disabled{opacity:.6}.bimdata-input.error label{color:var(--color-high)}.bimdata-input.error .bar{background-color:var(--color-high)}.bimdata-input.error .bar::after,.bimdata-input.error .bar::before{background-color:var(--color-high)}.bimdata-input.success label{color:var(--color-success)}.bimdata-input.success .bar{background-color:var(--color-success)}.bimdata-input.success .bar::after,.bimdata-input.success .bar::before{background-color:var(--color-success)}', map: void 0, media: void 0 }));
589
744
  }, e$a, "data-v-957ba7b2", false, void 0, false, o$a, void 0, void 0);
590
745
  var e$9 = { bind(e2, t2) {
591
746
  if (typeof t2.value != "function")
592
747
  throw Error("click away directive needs function, got " + typeof t2.value);
593
748
  e2.clickAwayHandler = (o2) => {
594
749
  (o2.path || o2.composedPath && o2.composedPath()).find((t3) => t3 === e2) || t2.value();
595
- }, window.addEventListener("click", e2.clickAwayHandler, true);
596
- }, unbind(e2) {
597
- window.removeEventListener("click", e2.clickAwayHandler, true), delete e2.clickAwayHandler;
750
+ }, window.addEventListener(t2.arg || "click", e2.clickAwayHandler, true);
751
+ }, unbind(e2, t2) {
752
+ window.removeEventListener(t2.arg || "click", e2.clickAwayHandler, true), delete e2.clickAwayHandler;
598
753
  } }, t$9 = { name: "BIMDataCheckbox", inheritAttrs: false, model: { prop: "modelValue", event: "update:modelValue" }, props: { text: { type: String, default: null }, modelValue: { type: Boolean, validator: (e2) => e2 === null || typeof e2 == "boolean" }, disabled: { type: Boolean, default: false }, margin: { type: String, default: "0px" } }, emits: ["update:modelValue"], computed: { indeterminate() {
599
754
  return this.modelValue === null;
600
755
  }, checked() {
@@ -607,22 +762,22 @@ var e$9 = { bind(e2, t2) {
607
762
  function o$9(e2, t2, o2, a2, r2, i2, l2, n2, s2, c2) {
608
763
  typeof l2 != "boolean" && (s2 = n2, n2 = l2, l2 = false);
609
764
  const d2 = typeof o2 == "function" ? o2.options : o2;
610
- let p2;
611
- if (e2 && e2.render && (d2.render = e2.render, d2.staticRenderFns = e2.staticRenderFns, d2._compiled = true, r2 && (d2.functional = true)), a2 && (d2._scopeId = a2), i2 ? (p2 = function(e3) {
765
+ let b2;
766
+ if (e2 && e2.render && (d2.render = e2.render, d2.staticRenderFns = e2.staticRenderFns, d2._compiled = true, r2 && (d2.functional = true)), a2 && (d2._scopeId = a2), i2 ? (b2 = function(e3) {
612
767
  (e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, s2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(i2);
613
- }, d2._ssrRegister = p2) : t2 && (p2 = l2 ? function(e3) {
768
+ }, d2._ssrRegister = b2) : t2 && (b2 = l2 ? function(e3) {
614
769
  t2.call(this, c2(e3, this.$root.$options.shadowRoot));
615
770
  } : function(e3) {
616
771
  t2.call(this, n2(e3));
617
- }), p2)
772
+ }), b2)
618
773
  if (d2.functional) {
619
774
  const e3 = d2.render;
620
775
  d2.render = function(t3, o3) {
621
- return p2.call(o3), e3(t3, o3);
776
+ return b2.call(o3), e3(t3, o3);
622
777
  };
623
778
  } else {
624
779
  const e3 = d2.beforeCreate;
625
- d2.beforeCreate = e3 ? [].concat(e3, p2) : [p2];
780
+ d2.beforeCreate = e3 ? [].concat(e3, b2) : [b2];
626
781
  }
627
782
  return o2;
628
783
  }
@@ -658,13 +813,13 @@ const s$7 = o$9({ render: function() {
658
813
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0);
659
814
  var c$4 = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
660
815
  const d$5 = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
661
- var p;
662
- const b$2 = o$9({ render: function() {
816
+ var b$2;
817
+ const p = o$9({ render: function() {
663
818
  var e2 = this.$createElement, t2 = this._self._c || e2;
664
819
  return t2("svg", { class: this.classes, style: this.style, attrs: { xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 24 24", width: "100%", fill: this.fillColor, color: this.color } }, [t2("Chevron")], 1);
665
820
  }, staticRenderFns: [] }, function(e2) {
666
821
  e2 && (e2("data-v-20c38c94_0", { source: 'html[data-v-20c38c94]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}', map: void 0, media: void 0 }), e2("data-v-20c38c94_1", { source: ".icon-fill--black{fill:var(--color-black)}.icon-fill--default{fill:currentColor}.icon-fill--disabled{fill:var(--color-silver-dark)}.icon-fill--high{fill:var(--color-high)}.icon-fill--primary{fill:var(--color-primary)}.icon-fill--secondary{fill:var(--color-secondary)}.icon-fill--success{fill:var(--color-success)}.icon-fill--silver{fill:var(--color-silver)}.icon-fill--granite-light{fill:var(--color-granite-light)}.icon-fill--granite{fill:var(--color-granite)}.icon-fill--silver-light{fill:var(--color-silver-light)}.icon-fill--warning{fill:var(--color-warning)}.icon-fill--white{fill:var(--color-white)}.icon-stroke{fill:transparent}.icon-stroke--black{stroke:var(--color-black)}.icon-stroke--default{stroke:currentColor}.icon-stroke--disabled{stroke:var(--color-silver-dark)}.icon-stroke--high{stroke:var(--color-high)}.icon-stroke--neutral{stroke:var(--color-neutral)}.icon-stroke--primary{stroke:var(--color-primary)}.icon-stroke--secondary{stroke:var(--color-secondary)}.icon-stroke--success{stroke:var(--color-success)}.icon-stroke--silver{stroke:var(--color-silver)}.icon-stroke--granite-light{stroke:var(--color-granite-light)}.icon-stroke--granite{stroke:var(--color-granite)}.icon-stroke--silver-light{stroke:var(--color-silver-light)}.icon-stroke--warning{stroke:var(--color-warning)}.icon-stroke--white{stroke:var(--color-white)}", map: void 0, media: void 0 }));
667
- }, { name: "BIMDataIcon" + (p = "Chevron"), components: { [p]: s$7 }, props: { color: { type: String, default: "default", validator: (e2) => c$4.includes(e2) }, fillColor: { type: String, default: "currentColor" }, fill: { type: Boolean, default: false }, stroke: { type: Boolean, default: false }, size: { type: String, default: "s", validator: (e2) => Object.keys(d$5).includes(e2) }, customSize: { type: [Number, String], default: null }, rotate: { type: Number, default: 0 }, margin: { type: String, default: "0px" } }, computed: { classes() {
822
+ }, { name: "BIMDataIcon" + (b$2 = "Chevron"), components: { [b$2]: s$7 }, props: { color: { type: String, default: "default", validator: (e2) => c$4.includes(e2) }, fillColor: { type: String, default: "currentColor" }, fill: { type: Boolean, default: false }, stroke: { type: Boolean, default: false }, size: { type: String, default: "s", validator: (e2) => Object.keys(d$5).includes(e2) }, customSize: { type: [Number, String], default: null }, rotate: { type: Number, default: 0 }, margin: { type: String, default: "0px" } }, computed: { classes() {
668
823
  return { "icon-fill": this.fill, "icon-stroke": this.stroke, ["icon-fill--" + this.color]: this.fill && this.color, ["icon-stroke--" + this.color]: this.stroke && this.color };
669
824
  }, style() {
670
825
  const e2 = this.getPixelSize(this.size);
@@ -687,15 +842,15 @@ const g$3 = o$9({ render: function() {
687
842
  } } }, [e2.isOptionGroup(t3) ? [e2._v("\n " + e2._s(e2.optionLabel(t3)) + "\n ")] : o2("BIMDataCheckbox", { attrs: { modelValue: e2.isSelected(t3), disabled: e2.isDisabled(t3), text: e2.optionLabel(t3) } })], 2);
688
843
  }), 0)])], 1);
689
844
  }, staticRenderFns: [] }, function(e2) {
690
- e2 && e2("data-v-2a480795_0", { source: 'html[data-v-2a480795]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.bimdata-select[data-v-2a480795]{position:relative;font-family:var(--primary-font);font-size:1em;user-select:none}.bimdata-select__content[data-v-2a480795]{height:32px}.bimdata-select__content__value[data-v-2a480795]{width:100%;height:32px;position:absolute;z-index:10;top:0;display:flex;justify-content:space-between;align-items:center;cursor:pointer}.bimdata-select__content__value span[data-v-2a480795]{width:100%;height:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bimdata-select__content__label[data-v-2a480795]{position:absolute;top:6px;left:0;font-size:.8571428571em;transition:.2s ease all;color:var(--color-granite-light);transition:.2s ease all}.bimdata-select__content__underline[data-v-2a480795]{width:100%;height:1px;position:absolute;bottom:0;display:block;background:var(--color-silver)}.bimdata-select.disabled[data-v-2a480795]{opacity:.6}.bimdata-select.active .bimdata-select__content .bimdata-select__content__label[data-v-2a480795],.bimdata-select.not-empty .bimdata-select__content .bimdata-select__content__label[data-v-2a480795]{top:-18px;font-size:.7142857143em;color:var(--color-primary)}.bimdata-select__option-list[data-v-2a480795]{position:absolute;z-index:11;top:-3px;width:100%;max-height:220px;padding:calc(var(--spacing-unit)/ 2) 0;overflow:auto;box-shadow:var(--box-shadow);background-color:var(--color-white)}.bimdata-select__option-list__entry[data-v-2a480795]{height:29px;padding:0 var(--spacing-unit);display:flex;align-items:center;font-size:.8571428571em;cursor:pointer}.bimdata-select__option-list__entry[data-v-2a480795]:hover{background-color:var(--color-silver-light);transition:all .2s ease}.bimdata-select__option-list__entry.selected[data-v-2a480795]{background-color:var(--color-silver-light)}.bimdata-select__option-list__entry.selected[data-v-2a480795]:hover{background-color:var(--color-silver)}.bimdata-select__option-list__entry.disabled[data-v-2a480795]{color:var(--color-silver-dark);cursor:default}.bimdata-select__option-list__entry.option-group[data-v-2a480795]{color:var(--color-granite);font-weight:700}.bimdata-select__option-list__entry.option-group[data-v-2a480795]:hover{background-color:transparent;cursor:default}.bimdata-select__option-list__entry.option-group~.bimdata-select__option-list__entry[data-v-2a480795]:not(.option-group){padding-left:calc(var(--spacing-unit) * 2)}', map: void 0, media: void 0 });
691
- }, { components: { BIMDataCheckbox: n$7, BIMDataIconChevron: b$2 }, directives: { clickaway: e$9 }, model: { prop: "modelValue", event: "update:modelValue" }, props: { width: { type: [String, Number] }, label: { type: String, default: null }, options: { type: Array, default: () => [] }, optionKey: { type: String }, optionLabelKey: { type: String }, modelValue: { type: Array }, disabled: { type: Boolean, default: false } }, emits: ["update:modelValue"], data: () => ({ isOpen: false }), computed: { displayedValue() {
845
+ e2 && e2("data-v-09766700_0", { source: 'html[data-v-09766700]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.bimdata-select[data-v-09766700]{position:relative;font-family:var(--primary-font);font-size:1em;user-select:none}.bimdata-select__content[data-v-09766700]{height:32px}.bimdata-select__content__value[data-v-09766700]{width:100%;height:32px;position:absolute;z-index:10;top:0;display:flex;justify-content:space-between;align-items:center;cursor:pointer}.bimdata-select__content__value span[data-v-09766700]{width:100%;height:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bimdata-select__content__label[data-v-09766700]{position:absolute;top:6px;left:0;font-size:.8571428571em;transition:.2s ease all;color:var(--color-granite-light);transition:.2s ease all}.bimdata-select__content__underline[data-v-09766700]{width:100%;height:1px;position:absolute;bottom:0;display:block;background:var(--color-silver)}.bimdata-select.disabled[data-v-09766700]{opacity:.6}.bimdata-select.active .bimdata-select__content .bimdata-select__content__label[data-v-09766700],.bimdata-select.not-empty .bimdata-select__content .bimdata-select__content__label[data-v-09766700]{top:-18px;font-size:.7142857143em;color:var(--color-primary)}.bimdata-select__option-list[data-v-09766700]{position:absolute;z-index:11;top:-3px;width:100%;max-height:220px;padding:calc(var(--spacing-unit)/ 2) 0;overflow:auto;box-shadow:var(--box-shadow);background-color:var(--color-white)}.bimdata-select__option-list__entry[data-v-09766700]{height:29px;padding:0 var(--spacing-unit);display:flex;align-items:center;font-size:.8571428571em;cursor:pointer}.bimdata-select__option-list__entry[data-v-09766700]:hover{background-color:var(--color-silver-light);transition:all .2s ease}.bimdata-select__option-list__entry.selected[data-v-09766700]{background-color:var(--color-silver-light)}.bimdata-select__option-list__entry.selected[data-v-09766700]:hover{background-color:var(--color-silver)}.bimdata-select__option-list__entry.disabled[data-v-09766700]{color:var(--color-silver-dark);cursor:default}.bimdata-select__option-list__entry.option-group[data-v-09766700]{color:var(--color-granite);font-weight:700}.bimdata-select__option-list__entry.option-group[data-v-09766700]:hover{background-color:transparent;cursor:default}.bimdata-select__option-list__entry.option-group~.bimdata-select__option-list__entry[data-v-09766700]:not(.option-group){padding-left:calc(var(--spacing-unit) * 2)}', map: void 0, media: void 0 });
846
+ }, { components: { BIMDataCheckbox: n$7, BIMDataIconChevron: p }, directives: { clickaway: e$9 }, model: { prop: "modelValue", event: "update:modelValue" }, props: { width: { type: [String, Number] }, label: { type: String, default: null }, options: { type: Array, default: () => [] }, optionKey: { type: String }, optionLabelKey: { type: String }, modelValue: { type: Array }, nullLabel: { type: String }, disabled: { type: Boolean, default: false } }, emits: ["update:modelValue"], data: () => ({ isOpen: false }), computed: { displayedValue() {
692
847
  return this.modelValue.map(this.optionLabel).join(", ");
693
848
  } }, methods: { toggle() {
694
849
  this.disabled || (this.isOpen = !this.isOpen);
695
850
  }, optionValue(e2) {
696
851
  return this.optionKey && e2 ? e2[this.optionKey] : e2;
697
852
  }, optionLabel(e2) {
698
- return this.optionLabelKey && e2 ? e2[this.optionLabelKey] : this.optionKey && e2 ? e2[this.optionKey] : e2;
853
+ return this.nullLabel && e2 == null ? this.nullLabel : this.optionLabelKey && e2 ? e2[this.optionLabelKey] : this.optionKey && e2 ? e2[this.optionKey] : e2;
699
854
  }, isSelected(e2) {
700
855
  const t2 = this.optionValue(e2);
701
856
  return this.modelValue.map(this.optionValue).includes(t2);
@@ -713,27 +868,27 @@ const g$3 = o$9({ render: function() {
713
868
  } else
714
869
  t2 = this.modelValue.concat(e2);
715
870
  this.$emit("update:modelValue", t2);
716
- } } }, "data-v-2a480795", false, void 0, false, r$9, void 0, void 0), BIMDataSelectSingle: o$9({ render: function() {
871
+ } } }, "data-v-09766700", false, void 0, false, r$9, void 0, void 0), BIMDataSelectSingle: o$9({ render: function() {
717
872
  var e2 = this, t2 = e2.$createElement, o2 = e2._self._c || t2;
718
873
  return o2("div", { directives: [{ name: "clickaway", rawName: "v-clickaway", value: function() {
719
874
  return e2.isOpen = false;
720
875
  }, expression: "() => (isOpen = false)" }], staticClass: "bimdata-select", class: { disabled: e2.disabled, active: e2.isOpen, "not-empty": e2.modelValue !== void 0 && e2.modelValue !== null }, style: { width: e2.width } }, [o2("div", { staticClass: "bimdata-select__content" }, [o2("div", { staticClass: "bimdata-select__content__value", on: { click: e2.toggle } }, [o2("span", [e2._v(e2._s(e2.displayedValue))]), e2._v(" "), o2("BIMDataIconChevron", { attrs: { size: "xxs", rotate: e2.isOpen ? 90 : 0 } })], 1), e2._v(" "), o2("label", { staticClass: "bimdata-select__content__label" }, [e2._v("\n " + e2._s(e2.label) + "\n ")]), e2._v(" "), o2("span", { staticClass: "bimdata-select__content__underline" })]), e2._v(" "), o2("transition", { attrs: { name: "slide-fade-down" } }, [o2("ul", { directives: [{ name: "show", rawName: "v-show", value: !e2.disabled && e2.isOpen, expression: "!disabled && isOpen" }], staticClass: "bimdata-select__option-list" }, [e2.nullValue ? o2("li", { staticClass: "bimdata-select__option-list__entry", on: { click: function(t3) {
721
876
  return e2.onNullValueClick();
722
- } } }, [e2._v("\n None\n ")]) : e2._e(), e2._v(" "), e2._l(e2.options, function(t3, a2) {
877
+ } } }, [e2._v("\n " + e2._s(e2.nullLabel || "None") + "\n ")]) : e2._e(), e2._v(" "), e2._l(e2.options, function(t3, a2) {
723
878
  return o2("li", { key: a2, staticClass: "bimdata-select__option-list__entry", class: { selected: e2.isSelected(t3), disabled: e2.isDisabled(t3), "option-group": e2.isOptionGroup(t3) }, on: { click: function(o3) {
724
879
  return e2.onOptionClick(t3);
725
880
  } } }, [e2._v("\n " + e2._s(e2.optionLabel(t3)) + "\n ")]);
726
881
  })], 2)])], 1);
727
882
  }, staticRenderFns: [] }, function(e2) {
728
- e2 && e2("data-v-2093dedd_0", { source: 'html[data-v-2093dedd]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.bimdata-select[data-v-2093dedd]{position:relative;font-family:var(--primary-font);font-size:1em;user-select:none}.bimdata-select__content[data-v-2093dedd]{height:32px}.bimdata-select__content__value[data-v-2093dedd]{width:100%;height:32px;position:absolute;z-index:10;top:0;display:flex;justify-content:space-between;align-items:center;cursor:pointer}.bimdata-select__content__value span[data-v-2093dedd]{width:100%;height:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bimdata-select__content__label[data-v-2093dedd]{position:absolute;top:6px;left:0;font-size:.8571428571em;transition:.2s ease all;color:var(--color-granite-light);transition:.2s ease all}.bimdata-select__content__underline[data-v-2093dedd]{width:100%;height:1px;position:absolute;bottom:0;display:block;background:var(--color-silver)}.bimdata-select.disabled[data-v-2093dedd]{opacity:.6}.bimdata-select.active .bimdata-select__content .bimdata-select__content__label[data-v-2093dedd],.bimdata-select.not-empty .bimdata-select__content .bimdata-select__content__label[data-v-2093dedd]{top:-18px;font-size:.7142857143em;color:var(--color-primary)}.bimdata-select__option-list[data-v-2093dedd]{position:absolute;z-index:11;top:-3px;width:100%;max-height:220px;padding:calc(var(--spacing-unit)/ 2) 0;overflow:auto;box-shadow:var(--box-shadow);background-color:var(--color-white)}.bimdata-select__option-list__entry[data-v-2093dedd]{height:29px;padding:0 var(--spacing-unit);display:flex;align-items:center;font-size:.8571428571em;cursor:pointer}.bimdata-select__option-list__entry[data-v-2093dedd]:hover{background-color:var(--color-silver-light);transition:all .2s ease}.bimdata-select__option-list__entry.selected[data-v-2093dedd]{background-color:var(--color-silver-light)}.bimdata-select__option-list__entry.selected[data-v-2093dedd]:hover{background-color:var(--color-silver)}.bimdata-select__option-list__entry.disabled[data-v-2093dedd]{color:var(--color-silver-dark);cursor:default}.bimdata-select__option-list__entry.option-group[data-v-2093dedd]{color:var(--color-granite);font-weight:700}.bimdata-select__option-list__entry.option-group[data-v-2093dedd]:hover{background-color:transparent;cursor:default}.bimdata-select__option-list__entry.option-group~.bimdata-select__option-list__entry[data-v-2093dedd]:not(.option-group){padding-left:calc(var(--spacing-unit) * 2)}', map: void 0, media: void 0 });
729
- }, { components: { BIMDataIconChevron: b$2 }, directives: { clickaway: e$9 }, model: { prop: "modelValue", event: "update:modelValue" }, props: { width: { type: [String, Number] }, label: { type: String, default: null }, options: { type: Array, default: () => [] }, optionKey: { type: String }, optionLabelKey: { type: String }, modelValue: { type: [String, Object] }, nullValue: { type: Boolean, default: false }, disabled: { type: Boolean, default: false } }, emits: ["update:modelValue"], data: () => ({ isOpen: false }), computed: { displayedValue() {
883
+ e2 && e2("data-v-1b2410f3_0", { source: 'html[data-v-1b2410f3]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.bimdata-select[data-v-1b2410f3]{position:relative;font-family:var(--primary-font);font-size:1em;user-select:none}.bimdata-select__content[data-v-1b2410f3]{height:32px}.bimdata-select__content__value[data-v-1b2410f3]{width:100%;height:32px;position:absolute;z-index:10;top:0;display:flex;justify-content:space-between;align-items:center;cursor:pointer}.bimdata-select__content__value span[data-v-1b2410f3]{width:100%;height:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bimdata-select__content__label[data-v-1b2410f3]{position:absolute;top:6px;left:0;font-size:.8571428571em;transition:.2s ease all;color:var(--color-granite-light);transition:.2s ease all}.bimdata-select__content__underline[data-v-1b2410f3]{width:100%;height:1px;position:absolute;bottom:0;display:block;background:var(--color-silver)}.bimdata-select.disabled[data-v-1b2410f3]{opacity:.6}.bimdata-select.active .bimdata-select__content .bimdata-select__content__label[data-v-1b2410f3],.bimdata-select.not-empty .bimdata-select__content .bimdata-select__content__label[data-v-1b2410f3]{top:-18px;font-size:.7142857143em;color:var(--color-primary)}.bimdata-select__option-list[data-v-1b2410f3]{position:absolute;z-index:11;top:-3px;width:100%;max-height:220px;padding:calc(var(--spacing-unit)/ 2) 0;overflow:auto;box-shadow:var(--box-shadow);background-color:var(--color-white)}.bimdata-select__option-list__entry[data-v-1b2410f3]{height:29px;padding:0 var(--spacing-unit);display:flex;align-items:center;font-size:.8571428571em;cursor:pointer}.bimdata-select__option-list__entry[data-v-1b2410f3]:hover{background-color:var(--color-silver-light);transition:all .2s ease}.bimdata-select__option-list__entry.selected[data-v-1b2410f3]{background-color:var(--color-silver-light)}.bimdata-select__option-list__entry.selected[data-v-1b2410f3]:hover{background-color:var(--color-silver)}.bimdata-select__option-list__entry.disabled[data-v-1b2410f3]{color:var(--color-silver-dark);cursor:default}.bimdata-select__option-list__entry.option-group[data-v-1b2410f3]{color:var(--color-granite);font-weight:700}.bimdata-select__option-list__entry.option-group[data-v-1b2410f3]:hover{background-color:transparent;cursor:default}.bimdata-select__option-list__entry.option-group~.bimdata-select__option-list__entry[data-v-1b2410f3]:not(.option-group){padding-left:calc(var(--spacing-unit) * 2)}', map: void 0, media: void 0 });
884
+ }, { components: { BIMDataIconChevron: p }, directives: { clickaway: e$9 }, model: { prop: "modelValue", event: "update:modelValue" }, props: { width: { type: [String, Number] }, label: { type: String, default: null }, options: { type: Array, default: () => [] }, optionKey: { type: String }, optionLabelKey: { type: String }, modelValue: { type: [String, Object] }, nullValue: { type: Boolean, default: false }, nullLabel: { type: String }, disabled: { type: Boolean, default: false } }, emits: ["update:modelValue"], data: () => ({ isOpen: false }), computed: { displayedValue() {
730
885
  return this.optionLabel(this.modelValue);
731
886
  } }, methods: { toggle() {
732
887
  this.disabled || (this.isOpen = !this.isOpen);
733
888
  }, optionValue(e2) {
734
889
  return this.optionKey && e2 ? e2[this.optionKey] : e2;
735
890
  }, optionLabel(e2) {
736
- return this.optionLabelKey && e2 ? e2[this.optionLabelKey] : this.optionKey && e2 ? e2[this.optionKey] : e2;
891
+ return this.nullLabel && e2 == null ? this.nullLabel : this.optionLabelKey && e2 ? e2[this.optionLabelKey] : this.optionKey && e2 ? e2[this.optionKey] : e2;
737
892
  }, isSelected(e2) {
738
893
  const t2 = this.optionValue(e2);
739
894
  return this.optionValue(this.modelValue) === t2;
@@ -745,31 +900,31 @@ const g$3 = o$9({ render: function() {
745
900
  this.optionKey && (e2.disabled || e2.optionGroup) || (this.$emit("update:modelValue", e2), this.isOpen = false);
746
901
  }, onNullValueClick() {
747
902
  this.$emit("update:modelValue", null), this.isOpen = false;
748
- } } }, "data-v-2093dedd", false, void 0, false, r$9, void 0, void 0) }, model: { prop: "modelValue", event: "update:modelValue" }, props: { width: { type: [String, Number], default: "100%" }, label: { type: String, default: null }, options: { type: Array, default: () => [] }, optionKey: { type: String }, optionLabelKey: { type: String }, modelValue: { type: [String, Object, Array] }, multi: { type: Boolean, default: false }, nullValue: { type: Boolean, default: false }, disabled: { type: Boolean, default: false } }, emits: ["update:modelValue"], computed: { selectorComponent() {
903
+ } } }, "data-v-1b2410f3", false, void 0, false, r$9, void 0, void 0) }, model: { prop: "modelValue", event: "update:modelValue" }, props: { width: { type: [String, Number], default: "100%" }, label: { type: String, default: null }, options: { type: Array, default: () => [] }, optionKey: { type: String }, optionLabelKey: { type: String }, modelValue: { type: [String, Object, Array] }, multi: { type: Boolean, default: false }, nullValue: { type: Boolean, default: false }, nullLabel: { type: String }, disabled: { type: Boolean, default: false } }, emits: ["update:modelValue"], computed: { selectorComponent() {
749
904
  return this.multi ? "BIMDataSelectMulti" : "BIMDataSelectSingle";
750
905
  } } }, void 0, false, void 0, false, void 0, void 0, void 0);
751
906
  var render$j = function() {
752
907
  var _vm = this;
753
908
  var _h = _vm.$createElement;
754
909
  var _c = _vm._self._c || _h;
755
- return _c("div", { directives: [{ name: "click-away", rawName: "v-click-away", value: _vm.closeFilters, expression: "closeFilters" }], staticClass: "bcf-filters" }, [_c("BIMDataButton", { staticClass: "bcf-filters__btn-toggle", class: { "btn-active": _vm.showFilters }, attrs: { "disabled": _vm.bcfTopics.length === 0, "width": "120px", "fill": "", "square": "", "icon": "" }, on: { "click": _vm.toggleFilters } }, [_c("BIMDataIcon", { attrs: { "name": "filter", "size": "xxs", "fill": "", "color": "default", "margin": "0 6px 0 0" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.filtersButton")) + " ")])], 1), _c("transition", { attrs: { "name": "slide-fade-up" } }, [_c("div", { directives: [{ name: "show", rawName: "v-show", value: _vm.showFilters, expression: "showFilters" }], staticClass: "bcf-filters__container" }, [_c("div", { staticClass: "bcf-filters__container__header" }, [_c("div", { staticClass: "bcf-filters__container__header__title" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.filtersTitle")) + " ")]), _c("BIMDataButton", { attrs: { "color": "primary", "ghost": "", "rounded": "", "icon": "" } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "primary" }, on: { "click": _vm.closeFilters } })], 1)], 1), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.priorityLabel"), "options": _vm.priorityOptions, "optionKey": "value", "optionLabelKey": "label" }, model: { value: _vm.priorities, callback: function($$v) {
756
- _vm.priorities = $$v;
757
- }, expression: "priorities" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.statusLabel"), "options": _vm.statusOptions, "optionKey": "value", "optionLabelKey": "label" }, model: { value: _vm.status, callback: function($$v) {
758
- _vm.status = $$v;
759
- }, expression: "status" } }), _c("div", { staticClass: "bcf-filters__container__date" }, [_c("div", [_c("BIMDataInput", { attrs: { "margin": "0", "placeholder": _vm.$t("BcfComponents.BcfFilters.startDatePlaceholder"), "error": _vm.hasStartDateError, "errorMessage": "Error" }, model: { value: _vm.startDateInput, callback: function($$v) {
760
- _vm.startDateInput = $$v;
761
- }, expression: "startDateInput" } }), _c("p", { staticClass: "example" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.startDateExample")) + " ")])], 1), _c("div", [_c("BIMDataInput", { attrs: { "margin": "0", "placeholder": _vm.$t("BcfComponents.BcfFilters.endDatePlaceholder"), "error": _vm.hasEndDateError, "errorMessage": "Error" }, model: { value: _vm.endDateInput, callback: function($$v) {
762
- _vm.endDateInput = $$v;
763
- }, expression: "endDateInput" } }), _c("p", { staticClass: "example" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.endDateExample")) + " ")])], 1)]), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.assignedToLabel"), "options": _vm.userOptions, "optionKey": "value", "optionLabelKey": "label" }, model: { value: _vm.users, callback: function($$v) {
764
- _vm.users = $$v;
765
- }, expression: "users" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.creatorsLabel"), "options": _vm.creatorOptions, "optionKey": "value", "optionLabelKey": "label" }, model: { value: _vm.creators, callback: function($$v) {
766
- _vm.creators = $$v;
767
- }, expression: "creators" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.tagsLabel"), "options": _vm.tagOptions }, model: { value: _vm.tags, callback: function($$v) {
768
- _vm.tags = $$v;
769
- }, expression: "tags" } }), _c("div", { staticClass: "bcf-filters__container__actions" }, [_c("BIMDataButton", { staticClass: "m-r-12", attrs: { "color": "primary", "ghost": "", "radius": "" }, on: { "click": _vm.resetFilters } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.resetButton")) + " ")]), _c("BIMDataButton", { attrs: { "color": "primary", "fill": "", "radius": "" }, on: { "click": _vm.submitFilters } }, [_c("BIMDataIcon", { attrs: { "name": "search", "size": "xxs", "fill": "", "color": "default", "margin": "0 6px 0 0" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.searchButton")) + " ")])], 1)], 1)], 1)])], 1);
910
+ return _c("div", { directives: [{ name: "click-away", rawName: "v-click-away", value: _vm.close, expression: "close" }], staticClass: "bcf-filters" }, [_c("BIMDataButton", { staticClass: "bcf-filters__btn-toggle", attrs: { "disabled": _vm.bcfTopics.length === 0, "width": "120px", "fill": "", "square": "", "icon": "" }, on: { "click": _vm.toggle } }, [_c("BIMDataIcon", { attrs: { "name": "filter", "size": "xxs", "fill": "", "color": "default", "margin": "0 6px 0 0" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.filtersButton")) + " ")])], 1), _c("transition", { attrs: { "name": "slide-fade-up" } }, [_c("div", { directives: [{ name: "show", rawName: "v-show", value: _vm.isOpen, expression: "isOpen" }], staticClass: "bcf-filters__container" }, [_c("div", { staticClass: "bcf-filters__container__header" }, [_c("div", { staticClass: "bcf-filters__container__header__title" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.filtersTitle")) + " ")]), _c("BIMDataButton", { attrs: { "color": "primary", "ghost": "", "rounded": "", "icon": "" } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "primary" }, on: { "click": _vm.close } })], 1)], 1), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.priorityLabel"), "nullLabel": _vm.$t("BcfComponents.BcfFilters.undefined"), "options": _vm.priorityOptions }, model: { value: _vm.filters.priorities, callback: function($$v) {
911
+ _vm.$set(_vm.filters, "priorities", $$v);
912
+ }, expression: "filters.priorities" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.statusLabel"), "nullLabel": _vm.$t("BcfComponents.BcfFilters.undefined"), "options": _vm.statusOptions }, model: { value: _vm.filters.statuses, callback: function($$v) {
913
+ _vm.$set(_vm.filters, "statuses", $$v);
914
+ }, expression: "filters.statuses" } }), _c("div", { staticClass: "bcf-filters__container__date" }, [_c("div", [_c("BIMDataInput", { attrs: { "margin": "0", "placeholder": _vm.$t("BcfComponents.BcfFilters.startDatePlaceholder"), "error": _vm.hasErrorStartDate, "errorMessage": _vm.$t("BcfComponents.BcfFilters.startDateError") }, model: { value: _vm.filters.startDate, callback: function($$v) {
915
+ _vm.$set(_vm.filters, "startDate", $$v);
916
+ }, expression: "filters.startDate" } }), _c("p", { staticClass: "example" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.startDateExample")) + " ")])], 1), _c("div", [_c("BIMDataInput", { attrs: { "margin": "0", "placeholder": _vm.$t("BcfComponents.BcfFilters.endDatePlaceholder"), "error": _vm.hasErrorEndDate, "errorMessage": _vm.$t("BcfComponents.BcfFilters.endDateError") }, model: { value: _vm.filters.endDate, callback: function($$v) {
917
+ _vm.$set(_vm.filters, "endDate", $$v);
918
+ }, expression: "filters.endDate" } }), _c("p", { staticClass: "example" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.endDateExample")) + " ")])], 1)]), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.assignedToLabel"), "nullLabel": _vm.$t("BcfComponents.BcfFilters.undefined"), "options": _vm.userOptions }, model: { value: _vm.filters.users, callback: function($$v) {
919
+ _vm.$set(_vm.filters, "users", $$v);
920
+ }, expression: "filters.users" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.creatorsLabel"), "nullLabel": _vm.$t("BcfComponents.BcfFilters.undefined"), "options": _vm.creatorOptions }, model: { value: _vm.filters.creators, callback: function($$v) {
921
+ _vm.$set(_vm.filters, "creators", $$v);
922
+ }, expression: "filters.creators" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfFilters.tagsLabel"), "nullLabel": _vm.$t("BcfComponents.BcfFilters.undefined"), "options": _vm.labelOptions }, model: { value: _vm.filters.labels, callback: function($$v) {
923
+ _vm.$set(_vm.filters, "labels", $$v);
924
+ }, expression: "filters.labels" } }), _c("div", { staticClass: "bcf-filters__container__actions" }, [_c("BIMDataButton", { staticClass: "m-r-12", attrs: { "color": "primary", "ghost": "", "radius": "" }, on: { "click": _vm.resetFilters } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.resetButton")) + " ")]), _c("BIMDataButton", { attrs: { "color": "primary", "fill": "", "radius": "" }, on: { "click": _vm.submitFilters } }, [_c("BIMDataIcon", { attrs: { "name": "search", "size": "xxs", "fill": "", "color": "default", "margin": "0 6px 0 0" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfFilters.searchButton")) + " ")])], 1)], 1)], 1)])], 1);
770
925
  };
771
926
  var staticRenderFns$j = [];
772
- var BcfFilters_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfFilters_2FBcfFilters_vue_src_scoped_true_lang = "";
927
+ var BcfFilters_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfFilters_2FBcfFilters_vue_src_scoped_true_lang = "";
773
928
  function normalizeComponent(scriptExports, render2, staticRenderFns2, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
774
929
  var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
775
930
  if (render2) {
@@ -821,6 +976,9 @@ function normalizeComponent(scriptExports, render2, staticRenderFns2, functional
821
976
  options
822
977
  };
823
978
  }
979
+ function getSelectOptions(list) {
980
+ return Array.from(new Set(list)).sort((a2, b2) => a2.localeCompare(b2, void 0, { sensitivity: "base" }));
981
+ }
824
982
  const __vue2_script$j = {
825
983
  components: {
826
984
  BIMDataButton: c$5,
@@ -834,139 +992,66 @@ const __vue2_script$j = {
834
992
  required: true
835
993
  }
836
994
  },
837
- emits: ["submit"],
995
+ emits: [
996
+ "submit"
997
+ ],
838
998
  setup(props, { emit }) {
839
- const showFilters = ref(false);
840
- const closeFilters = () => showFilters.value = false;
841
- const toggleFilters = () => showFilters.value = !showFilters.value;
842
- const priorities = ref([]);
843
- const priorityOptions = computed(() => {
844
- return Array.from(new Set(props.bcfTopics.map((bcfTopic) => bcfTopic.priority))).sort((a2, b2) => a2 > b2 ? 1 : -1).map((priorityOption) => {
845
- return {
846
- label: priorityOption || "Aucune priorit\xE9",
847
- value: priorityOption
848
- };
849
- });
850
- });
851
- const status = ref([]);
852
- const statusOptions = computed(() => {
853
- return Array.from(new Set(props.bcfTopics.map((bcfTopic) => bcfTopic.topicStatus))).sort((a2, b2) => a2 > b2 ? 1 : -1).map((statusOption) => {
854
- return {
855
- label: statusOption || "Non d\xE9fini",
856
- value: statusOption
857
- };
858
- });
859
- });
860
- const startDateInput = ref("");
861
- const endDateInput = ref("");
862
- const hasStartDateError = ref(false);
863
- const hasEndDateError = ref(false);
864
- const isStartDateConform = ({ value }) => {
865
- const dateToCompare = formatToDateObject(value);
866
- const today = new Date();
867
- today.setHours(0, 0, 0, 0);
868
- return value.match(dateRegex) && dateToCompare.getTime() <= today.getTime();
869
- };
870
- const isEndDateConform = (startValue, endValue) => {
871
- const startDateToCompare = formatToDateObject(startValue.value);
872
- const endDateToCompare = formatToDateObject(endValue.value);
873
- if (startValue.value < endValue.value) {
874
- return startDateToCompare.getTime() <= endDateToCompare.getTime();
875
- } else {
876
- return false;
877
- }
878
- };
879
- const users = ref([]);
880
- const userOptions = computed(() => {
881
- return Array.from(new Set(props.bcfTopics.map((bcfTopic) => bcfTopic.assignedTo))).sort((a2, b2) => a2 > b2 ? 1 : -1).map((userOption) => {
882
- return {
883
- label: userOption || "Non d\xE9fini",
884
- value: userOption
885
- };
886
- });
887
- });
888
- const creators = ref([]);
889
- const creatorOptions = computed(() => {
890
- return Array.from(new Set(props.bcfTopics.map((bcfTopic) => bcfTopic.creationAuthor))).sort((a2, b2) => a2 > b2 ? 1 : -1).map((creatorOption) => {
891
- return {
892
- label: creatorOption || "Non d\xE9fini",
893
- value: creatorOption
894
- };
895
- });
896
- });
897
- const tags = ref([]);
898
- const tagOptions = computed(() => {
899
- return Array.from(new Set(props.bcfTopics.flatMap((bcfTopic) => bcfTopic.labels))).flat().sort((a2, b2) => a2.localeCompare(b2, void 0, { sensitivity: "base" }));
900
- });
999
+ const isOpen = ref(false);
1000
+ const close = () => isOpen.value = false;
1001
+ const toggle = () => isOpen.value = !isOpen.value;
1002
+ const hasErrorStartDate = ref(false);
1003
+ const hasErrorEndDate = ref(false);
1004
+ const { filters, filteredTopics, reset } = useBcfFilter(computed(() => props.bcfTopics));
1005
+ const priorityOptions = computed(() => getSelectOptions(props.bcfTopics.map((topic) => topic.priority)));
1006
+ const statusOptions = computed(() => getSelectOptions(props.bcfTopics.map((topic) => topic.topic_status)));
1007
+ const userOptions = computed(() => getSelectOptions(props.bcfTopics.map((topic) => topic.assigned_to)));
1008
+ const creatorOptions = computed(() => getSelectOptions(props.bcfTopics.map((topic) => topic.creation_author)));
1009
+ const labelOptions = computed(() => getSelectOptions(props.bcfTopics.flatMap((topic) => topic.labels)));
901
1010
  const submitFilters = () => {
902
- if (startDateInput.value && !isStartDateConform(startDateInput) || !startDateInput.value && endDateInput.value) {
903
- hasStartDateError.value = true;
904
- return;
905
- }
906
- if (startDateInput.value && endDateInput.value && !isEndDateConform(startDateInput, endDateInput)) {
907
- hasEndDateError.value = true;
908
- return;
909
- }
910
- if (priorities.value.length || status.value.length || startDateInput.value || startDateInput.value && endDateInput.value || users.value.length || creators.value.length || tags.value.length) {
911
- emit("submit", {
912
- priorities: priorities.value.map((p2) => p2.value),
913
- status: status.value.map((s2) => s2.value),
914
- startDate: startDateInput.value,
915
- endDate: endDateInput.value,
916
- users: users.value.map((u) => u.value),
917
- creators: creators.value.map((creator) => creator.value),
918
- tags: tags.value
919
- });
920
- showFilters.value = false;
921
- } else {
922
- resetFilters();
1011
+ if (filters.startDate && filters.endDate) {
1012
+ if (!filters.startDate.match(dateRegex) || filters.startDate > deserialize(new Date())) {
1013
+ hasErrorStartDate.value = true;
1014
+ return;
1015
+ }
1016
+ if (!filters.endDate.match(dateRegex) || filters.endDate < filters.startDate) {
1017
+ hasErrorEndDate.value = true;
1018
+ return;
1019
+ }
923
1020
  }
1021
+ emit("submit", {
1022
+ filters: toRaw(filters),
1023
+ topics: filteredTopics.value
1024
+ });
1025
+ isOpen.value = false;
924
1026
  };
925
1027
  const resetFilters = () => {
926
- priorities.value = [];
927
- status.value = [];
928
- startDateInput.value = "";
929
- endDateInput.value = "";
930
- users.value = [];
931
- creators.value = [];
932
- tags.value = [];
1028
+ hasErrorStartDate.value = false;
1029
+ hasErrorEndDate.value = false;
1030
+ reset();
933
1031
  emit("submit", {
934
- priorities: priorities.value,
935
- status: status.value,
936
- startDate: startDateInput.value,
937
- endDate: endDateInput.value,
938
- users: users.value,
939
- creators: creators.value,
940
- tags: tags.value
1032
+ filters: toRaw(filters),
1033
+ topics: filteredTopics.value
941
1034
  });
942
- hasStartDateError.value = false;
943
- hasEndDateError.value = false;
944
1035
  };
945
1036
  return {
946
- creators,
947
1037
  creatorOptions,
948
- endDateInput,
949
- hasEndDateError,
950
- hasStartDateError,
951
- priorities,
1038
+ filters,
1039
+ hasErrorEndDate,
1040
+ hasErrorStartDate,
1041
+ isOpen,
952
1042
  priorityOptions,
953
- showFilters,
954
- startDateInput,
955
- status,
956
1043
  statusOptions,
957
- tags,
958
- tagOptions,
959
- users,
1044
+ labelOptions,
960
1045
  userOptions,
961
- closeFilters,
1046
+ close,
962
1047
  resetFilters,
963
1048
  submitFilters,
964
- toggleFilters
1049
+ toggle
965
1050
  };
966
1051
  }
967
1052
  };
968
1053
  const __cssModules$j = {};
969
- var __component__$j = /* @__PURE__ */ normalizeComponent(__vue2_script$j, render$j, staticRenderFns$j, false, __vue2_injectStyles$j, "6bb10c71", null, null);
1054
+ var __component__$j = /* @__PURE__ */ normalizeComponent(__vue2_script$j, render$j, staticRenderFns$j, false, __vue2_injectStyles$j, "6f72a22c", null, null);
970
1055
  function __vue2_injectStyles$j(context) {
971
1056
  for (let o2 in __cssModules$j) {
972
1057
  this[o2] = __cssModules$j[o2];
@@ -988,17 +1073,17 @@ const EXTENSION_WITH_COLOR = [
988
1073
  ];
989
1074
  const EXTENSION_FIELDS = {
990
1075
  Priority: "priority",
991
- Type: "topicType",
1076
+ Type: "topic_type",
992
1077
  Stage: "stage",
993
- Status: "topicStatus",
1078
+ Status: "topic_status",
994
1079
  Label: "label"
995
1080
  };
996
1081
  const EXTENSION_LIST_FIELDS = {
997
1082
  Priority: "priorities",
998
- Type: "topicTypes",
1083
+ Type: "topic_types",
999
1084
  Stage: "stages",
1000
- Status: "topicStatuses",
1001
- Label: "topicLabels"
1085
+ Status: "topic_statuses",
1086
+ Label: "topic_labels"
1002
1087
  };
1003
1088
  const DEFAULT_PRIORITY_COLOR = "D8D8D8";
1004
1089
  const DEFAULT_STATUS_COLOR = "D8D8D8";
@@ -1047,16 +1132,16 @@ function getRandomHexColor() {
1047
1132
  const index = Math.floor(Math.random() * validColors.length);
1048
1133
  return validColors[index][1];
1049
1134
  }
1050
- function adjustBorderColor(color, amount) {
1051
- return "#" + color.replace(/^#/, "").replace(/../g, (color2) => ("0" + Math.min(255, Math.max(0, parseInt(color2, 16) + amount)).toString(16)).substr(-2));
1052
- }
1053
- function adjustColor(bgColor, lightTextColor, darkTextColor) {
1135
+ function adjustTextColor(bgColor, lightTextColor, darkTextColor) {
1054
1136
  const color = bgColor.charAt(0) === "#" ? bgColor.substring(1, 7) : bgColor;
1055
1137
  const r2 = parseInt(color.substring(0, 2), 16);
1056
1138
  const g2 = parseInt(color.substring(2, 4), 16);
1057
1139
  const b2 = parseInt(color.substring(4, 6), 16);
1058
1140
  return r2 * 0.299 + g2 * 0.587 + b2 * 0.114 > 186 ? darkTextColor : lightTextColor;
1059
1141
  }
1142
+ function adjustBorderColor(color, amount) {
1143
+ return "#" + color.replace(/^#/, "").replace(/../g, (color2) => ("0" + Math.min(255, Math.max(0, parseInt(color2, 16) + amount)).toString(16)).slice(-2));
1144
+ }
1060
1145
  const createTopic = async (project, topic) => {
1061
1146
  return await useApiClient().bcfApi.createFullTopic(project.id, topic);
1062
1147
  };
@@ -1218,7 +1303,7 @@ var render$i = function() {
1218
1303
  } } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxxs" } })], 1)], 1)]) : _vm._e()], 1);
1219
1304
  };
1220
1305
  var staticRenderFns$i = [];
1221
- var SettingCardItem_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfSettings_2FsettingCard_2FSettingCardItem_vue_src_scoped_true_lang = "";
1306
+ var SettingCardItem_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfSettings_2FsettingCard_2FSettingCardItem_vue_src_scoped_true_lang = "";
1222
1307
  const __vue2_script$i = {
1223
1308
  components: {
1224
1309
  BIMDataButton: c$5,
@@ -1296,7 +1381,7 @@ const __vue2_script$i = {
1296
1381
  }
1297
1382
  };
1298
1383
  const __cssModules$i = {};
1299
- var __component__$i = /* @__PURE__ */ normalizeComponent(__vue2_script$i, render$i, staticRenderFns$i, false, __vue2_injectStyles$i, "33d9bbba", null, null);
1384
+ var __component__$i = /* @__PURE__ */ normalizeComponent(__vue2_script$i, render$i, staticRenderFns$i, false, __vue2_injectStyles$i, "cb6da68e", null, null);
1300
1385
  function __vue2_injectStyles$i(context) {
1301
1386
  for (let o2 in __cssModules$i) {
1302
1387
  this[o2] = __cssModules$i[o2];
@@ -1326,7 +1411,7 @@ var render$h = function() {
1326
1411
  }), 1)], 1)]);
1327
1412
  };
1328
1413
  var staticRenderFns$h = [];
1329
- var SettingCard_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfSettings_2FsettingCard_2FSettingCard_vue_src_scoped_true_lang = "";
1414
+ var SettingCard_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfSettings_2FsettingCard_2FSettingCard_vue_src_scoped_true_lang = "";
1330
1415
  const __vue2_script$h = {
1331
1416
  components: {
1332
1417
  BIMDataButton: c$5,
@@ -1410,7 +1495,7 @@ var render$g = function() {
1410
1495
  })], 2)]);
1411
1496
  };
1412
1497
  var staticRenderFns$g = [];
1413
- var BcfSettings_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfSettings_2FBcfSettings_vue_src_scoped_true_lang = "";
1498
+ var BcfSettings_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfSettings_2FBcfSettings_vue_src_scoped_true_lang = "";
1414
1499
  const __vue2_script$g = {
1415
1500
  components: {
1416
1501
  BIMDataButton: c$5,
@@ -1707,7 +1792,7 @@ var render$f = function() {
1707
1792
  } }]) })], 1)], 1)]);
1708
1793
  };
1709
1794
  var staticRenderFns$f = [];
1710
- var BcfStatistics_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfStatistics_2FBcfStatistics_vue_src_scoped_true_lang = "";
1795
+ var BcfStatistics_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfStatistics_2FBcfStatistics_vue_src_scoped_true_lang = "";
1711
1796
  const __vue2_script$f = {
1712
1797
  components: {
1713
1798
  BIMDataPaginatedList: b$1,
@@ -1847,16 +1932,16 @@ var render$d = function() {
1847
1932
  var _c = _vm._self._c || _h;
1848
1933
  return _c("div", { staticClass: "bcf-topic-card" }, [_c("div", { staticClass: "bcf-topic-card__header" }, [_c("div", { staticClass: "bcf-topic-card__header__infos flex" }, [_c("div", { staticClass: "bcf-topic-card__header__infos__index flex items-center justify-center", style: {
1849
1934
  "background-color": "#" + _vm.priorityColor,
1850
- color: _vm.adjustColor("#" + _vm.priorityColor, "#ffffff", "var(--color-text)")
1851
- } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-card__header__infos__title flex items-center m-l-12" }, [_c("BIMDataTextbox", { attrs: { "maxWidth": "100% - 48px", "text": _vm.bcfTopic.title } })], 1)]), _c("div", { staticClass: "bcf-topic-card__header__img flex items-center justify-center" }, [_vm.bcfTopic.topicStatus ? _c("div", { staticClass: "bcf-topic-card__header__img__status flex p-6", style: {
1935
+ color: _vm.adjustTextColor("#" + _vm.priorityColor, "#ffffff", "var(--color-text)")
1936
+ } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-card__header__infos__title flex items-center m-l-12" }, [_c("BIMDataTextbox", { attrs: { "maxWidth": "100% - 48px", "text": _vm.bcfTopic.title } })], 1)]), _c("div", { staticClass: "bcf-topic-card__header__img flex items-center justify-center" }, [_vm.bcfTopic.topic_status ? _c("div", { staticClass: "bcf-topic-card__header__img__status flex p-6", style: {
1852
1937
  "background-color": "#" + _vm.statusColor,
1853
- color: _vm.adjustColor("#" + _vm.statusColor, "#ffffff", "var(--color-text)")
1854
- } }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", { staticClass: "m-l-6" }, [_vm._v(_vm._s(_vm.bcfTopic.topicStatus))])], 1) : _vm._e(), _c("div", { staticClass: "bcf-topic-card__header__img__date p-6" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creationDate, "short")) + " ")]), _vm.viewpointsWithSnapshot.length > 0 ? _c("img", { attrs: { "src": _vm.viewpointsWithSnapshot[0].snapshot.snapshotData, "alt": "ViewPoint", "loading": "lazy" } }) : _c("BcfTopicDefaultImage", { staticClass: "default-img" })], 1)]), _c("div", { staticClass: "bcf-topic-card__content p-12" }, [_c("div", { staticClass: "bcf-topic-card__content__priority" }, [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.priority")) + " ")]), _c("span", { style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicCard.noPriority")) + " ")])]), _c("div", [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.assignedTo")) + " ")]), _c("span", [_vm._v(" " + _vm._s(_vm.bcfTopic.assignedTo || _vm.$t("BcfComponents.BcfTopicCard.notSpecified")) + " ")])]), _c("div", { staticClass: "flex justify-around m-t-12" }, [_c("div", { staticClass: "flex items-center" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "fill": "", "color": "default", "size": "xs", "margin": "0 6px 0 0" } }), _vm.topicElements.length > 0 ? _c("span", { staticClass: "m-r-6" }, [_vm._v(" " + _vm._s(_vm.topicElements.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicElements.length ? _vm.$t("BcfComponents.BcfTopicCard.elements") : _vm.$t("BcfComponents.BcfTopicCard.noElements")) + " ")])], 1), _c("BIMDataButton", { attrs: { "width": "48%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
1938
+ color: _vm.adjustTextColor("#" + _vm.statusColor, "#ffffff", "var(--color-text)")
1939
+ } }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", { staticClass: "m-l-6" }, [_vm._v(_vm._s(_vm.bcfTopic.topic_status))])], 1) : _vm._e(), _c("div", { staticClass: "bcf-topic-card__header__img__date p-6" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")]), _vm.viewpointsWithSnapshot.length > 0 ? _c("img", { attrs: { "src": _vm.viewpointsWithSnapshot[0].snapshot.snapshot_data, "alt": "ViewPoint", "loading": "lazy" } }) : _c("BcfTopicDefaultImage", { staticClass: "default-img" })], 1)]), _c("div", { staticClass: "bcf-topic-card__content p-12" }, [_c("div", { staticClass: "bcf-topic-card__content__priority" }, [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.priority")) + " ")]), _c("span", { style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicCard.noPriority")) + " ")])]), _c("div", [_c("strong", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.assignedTo")) + " ")]), _c("span", [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to || _vm.$t("BcfComponents.BcfTopicCard.notSpecified")) + " ")])]), _c("div", { staticClass: "flex justify-around m-t-12" }, [_c("div", { staticClass: "flex items-center" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "fill": "", "color": "default", "size": "xs", "margin": "0 6px 0 0" } }), _vm.topicElements.length > 0 ? _c("span", { staticClass: "m-r-6" }, [_vm._v(" " + _vm._s(_vm.topicElements.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicElements.length ? _vm.$t("BcfComponents.BcfTopicCard.elements") : _vm.$t("BcfComponents.BcfTopicCard.noElements")) + " ")])], 1), _c("BIMDataButton", { attrs: { "width": "48%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
1855
1940
  return _vm.$emit("open-bcf-topic", _vm.bcfTopic);
1856
1941
  } } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.see")) + " ")])], 1)])]);
1857
1942
  };
1858
1943
  var staticRenderFns$d = [];
1859
- var BcfTopicCard_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicCard_2FBcfTopicCard_vue_src_scoped_true_lang = "";
1944
+ var BcfTopicCard_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicCard_2FBcfTopicCard_vue_src_scoped_true_lang = "";
1860
1945
  const __vue2_script$d = {
1861
1946
  components: {
1862
1947
  BcfTopicDefaultImage,
@@ -1891,8 +1976,8 @@ const __vue2_script$d = {
1891
1976
  return DEFAULT_PRIORITY_COLOR;
1892
1977
  });
1893
1978
  const statusColor = computed(() => {
1894
- if (props.bcfTopic.topicStatus) {
1895
- const statusDetail = props.detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === props.bcfTopic.topicStatus);
1979
+ if (props.bcfTopic.topic_status) {
1980
+ const statusDetail = props.detailedExtensions.topic_statuses.find((s2) => s2.topic_status === props.bcfTopic.topic_status);
1896
1981
  if (statusDetail && statusDetail.color) {
1897
1982
  return statusDetail.color;
1898
1983
  }
@@ -1912,12 +1997,12 @@ const __vue2_script$d = {
1912
1997
  statusColor,
1913
1998
  topicElements,
1914
1999
  viewpointsWithSnapshot,
1915
- adjustColor
2000
+ adjustTextColor
1916
2001
  };
1917
2002
  }
1918
2003
  };
1919
2004
  const __cssModules$d = {};
1920
- var __component__$d = /* @__PURE__ */ normalizeComponent(__vue2_script$d, render$d, staticRenderFns$d, false, __vue2_injectStyles$d, "275da59e", null, null);
2005
+ var __component__$d = /* @__PURE__ */ normalizeComponent(__vue2_script$d, render$d, staticRenderFns$d, false, __vue2_injectStyles$d, "67461590", null, null);
1921
2006
  function __vue2_injectStyles$d(context) {
1922
2007
  for (let o2 in __cssModules$d) {
1923
2008
  this[o2] = __cssModules$d[o2];
@@ -1953,7 +2038,7 @@ var render$b = function() {
1953
2038
  } } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "m", "fill": "", "color": "default" } })], 1)], 1);
1954
2039
  };
1955
2040
  var staticRenderFns$b = [];
1956
- var BcfTopicCreationCard_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicCreationCard_2FBcfTopicCreationCard_vue_src_scoped_true_lang = "";
2041
+ var BcfTopicCreationCard_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicCreationCard_2FBcfTopicCreationCard_vue_src_scoped_true_lang = "";
1957
2042
  const __vue2_script$b = {
1958
2043
  components: {
1959
2044
  BcfTopicCreationCardImage,
@@ -2032,11 +2117,11 @@ const a$3 = t$4({ render: function() {
2032
2117
  }, staticRenderFns: [] }, function(t2) {
2033
2118
  t2 && (t2("data-v-ddc1f86c_0", { source: 'html[data-v-ddc1f86c]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}', map: void 0, media: void 0 }), t2("data-v-ddc1f86c_1", { source: '@keyframes bimdataloading{0%{box-shadow:inset 0 0 0 0 rgba(var(--color-white),.1);transform:rotate(0)}20%{transform:rotate(180deg)}40%{transform:rotate(0)}60%{transform:rotate(0);box-shadow:inset 0 0 0 0 rgba(var(--color-white),.1)}80%{box-shadow:inset 0 -20px 0 0 rgba(var(--color-white),1)}100%{box-shadow:inset 0 0 0 0 rgba(var(--color-white),.1)}}.bimdata-loading{width:100%;height:100%;position:absolute;top:0;left:0;display:flex;align-items:center;justify-content:center;flex-direction:column;color:var(--color-white);font-family:var(--primary-font);z-index:2}.bimdata-loading::after{content:" ";position:absolute;width:100%;height:100%;background-color:var(--color-primary);opacity:.9;z-index:-1}.bimdata-loading--square{width:20px;height:20px;position:relative;border:2px var(--color-white) solid;animation:bimdataloading 1.4s linear infinite}.bimdata-loading--text{margin-top:12px;display:block}.bimdata-loading p{text-align:center;margin:0}', map: void 0, media: void 0 }));
2034
2119
  }, e$4, "data-v-ddc1f86c", false, void 0, false, i$4, void 0, void 0);
2035
- function e$3(e2, t2, i2, r2, d2, o2, n2, v2, s2, C2) {
2120
+ function e$3(e2, t2, i2, d2, r2, o2, n2, v2, s2, C2) {
2036
2121
  typeof n2 != "boolean" && (s2 = v2, v2 = n2, n2 = false);
2037
2122
  const a2 = typeof i2 == "function" ? i2.options : i2;
2038
2123
  let l2;
2039
- if (e2 && e2.render && (a2.render = e2.render, a2.staticRenderFns = e2.staticRenderFns, a2._compiled = true, d2 && (a2.functional = true)), r2 && (a2._scopeId = r2), o2 ? (l2 = function(e3) {
2124
+ if (e2 && e2.render && (a2.render = e2.render, a2.staticRenderFns = e2.staticRenderFns, a2._compiled = true, r2 && (a2.functional = true)), d2 && (a2._scopeId = d2), o2 ? (l2 = function(e3) {
2040
2125
  (e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, s2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(o2);
2041
2126
  }, a2._ssrRegister = l2) : t2 && (l2 = n2 ? function(e3) {
2042
2127
  t2.call(this, C2(e3, this.$root.$options.shadowRoot));
@@ -2063,6 +2148,12 @@ var t$3 = { addFile: e$3({ render: function() {
2063
2148
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addUser: e$3({ render: function() {
2064
2149
  var e2 = this.$createElement;
2065
2150
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.8177 7.18182C18.8177 9.49225 16.9463 11.3636 14.6359 11.3636C12.3254 11.3636 10.4541 9.49225 10.4541 7.18182C10.4541 4.87139 12.3254 3 14.6359 3C16.9463 3 18.8177 4.87139 18.8177 7.18182ZM5.22678 8.22703V5.09066H3.13588V8.22703H-0.000488281V10.3179H3.13588V13.4543H5.22678V10.3179H8.36315V8.22703H5.22678ZM14.6359 13.4542C11.8445 13.4542 6.27224 14.8552 6.27224 17.636V19.727H22.9995V17.636C22.9995 14.8552 17.4273 13.4542 14.6359 13.4542Z" } });
2151
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalAscending: e$3({ render: function() {
2152
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2153
+ return t2("g", [t2("path", { attrs: { d: "M7.78286 7.489H4.60159L3.8871 9.47078H2.85449L5.75415 1.87744H6.6303L9.53517 9.47078H8.50777L7.78286 7.489ZM4.90407 6.665H7.48559L6.19222 3.11344L4.90407 6.665Z" } }), this._v(" "), t2("path", { attrs: { d: "M4.62766 20.3037H8.97193V21.1225H3.44381V20.3715L7.60554 14.3532H3.51161V13.5292H8.80504V14.2645L4.62766 20.3037Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.6303 1.87746L9.53516 9.47079H8.50777L7.78286 7.48902H4.60158L3.8871 9.47079H2.85449L5.75414 1.87746H6.6303ZM6.19222 3.11346L4.90406 6.66501H7.48559L6.19222 3.11346ZM6.19314 4.53477L5.59659 6.17953H6.79211L6.19314 4.53477ZM4.94263 7.9745L4.22814 9.95628H2.14941L5.41985 1.39197H6.96437L10.2407 9.95628H8.16841L7.44349 7.9745H4.94263ZM3.44381 20.3715L7.60554 14.3532H3.5116V13.5292H8.80504V14.2645L4.62766 20.3037H8.97192V21.1225H3.44381V20.3715ZM5.55379 19.8182H9.45741V21.608H2.95832V20.22L6.67956 14.8387H3.02612V13.0437H9.29052V14.4161L5.55379 19.8182Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.9443 1.39197V20.7091H17.0023V1.39197H18.9443Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.581 17.3666C15.6001 17.3461 15.6313 17.3461 15.6504 17.3666L17.9423 19.8349L20.2245 17.3772C20.2436 17.3566 20.2749 17.3566 20.294 17.3772L20.836 17.961C20.8552 17.9815 20.8552 18.0152 20.836 18.0358L17.9798 21.1118C17.961 21.1321 17.9305 21.1323 17.9113 21.1128C17.9054 21.1102 17.8999 21.1063 17.8952 21.1012L15.0389 18.0252C15.0198 18.0046 15.0198 17.9709 15.0389 17.9504L15.581 17.3666Z" } })]);
2154
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalDescending: e$3({ render: function() {
2155
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2156
+ return t2("g", [t2("path", { attrs: { d: "M8.08205 7.47655H4.90078L4.1863 9.45833H3.15369L6.05334 1.86499H6.92949L9.83436 9.45833H8.80697L8.08205 7.47655ZM5.20326 6.65255H7.78479L6.49142 3.10099L5.20326 6.65255Z" } }), this._v(" "), t2("path", { attrs: { d: "M4.92686 20.2913H9.27112V21.11H3.743V20.3591L7.90474 14.3407H3.8108V13.5167H9.10423V14.252L4.92686 20.2913Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.92949 1.865L9.83436 9.45834H8.80696L8.08205 7.47657H4.90078L4.18629 9.45834H3.15368L6.05334 1.865H6.92949ZM6.49141 3.10101L5.20326 6.65256H7.78478L6.49141 3.10101ZM6.49233 4.52232L5.89578 6.16707H7.0913L6.49233 4.52232ZM5.24182 7.96205L4.52734 9.94383H2.44861L5.71905 1.37952H7.26356L10.5399 9.94383H8.4676L7.74269 7.96205H5.24182ZM3.743 20.3591L7.90473 14.3407H3.8108V13.5167H9.10423V14.2521L4.92685 20.2913H9.27112V21.1101H3.743V20.3591ZM5.85298 19.8058H9.7566V21.5955H3.25751V20.2076L6.97876 14.8262H3.32531V13.0312H9.58972V14.4036L5.85298 19.8058Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.2426 2.56055V21.608H17.3008V2.56055H19.2426Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.8795 5.63065C15.8986 5.65095 15.9298 5.65095 15.949 5.63065L18.2408 3.19454L20.5228 5.62019C20.5419 5.64055 20.5732 5.64055 20.5923 5.62019L21.1343 5.04404C21.1535 5.02374 21.1535 4.99049 21.1343 4.97019L18.2782 1.9342C18.2594 1.91423 18.2289 1.91401 18.2097 1.93326C18.2039 1.93581 18.1984 1.93962 18.1936 1.94466L15.3374 4.98065C15.3183 5.00095 15.3183 5.03419 15.3374 5.05449L15.8795 5.63065Z" } })]);
2066
2157
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalSort: e$3({ render: function() {
2067
2158
  var e2 = this.$createElement, t2 = this._self._c || e2;
2068
2159
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.2918 7.49901C15.3115 7.52019 15.3436 7.52019 15.3634 7.49901L17.7238 4.95698L20.0741 7.4881C20.0938 7.50934 20.126 7.50934 20.1457 7.4881L20.704 6.88689C20.7237 6.86571 20.7237 6.83102 20.704 6.80984L17.7623 3.64184C17.743 3.62101 17.7115 3.62078 17.6918 3.64086C17.6858 3.64352 17.6801 3.6475 17.6752 3.65275L14.7335 6.82074C14.7138 6.84193 14.7138 6.87662 14.7335 6.8978L15.2918 7.49901Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.2918 18.183C15.3115 18.1618 15.3436 18.1618 15.3634 18.183L17.7238 20.725L20.0741 18.1939C20.0938 18.1727 20.126 18.1727 20.1457 18.1939L20.704 18.7951C20.7237 18.8163 20.7237 18.851 20.704 18.8722L17.7623 22.0402C17.743 22.061 17.7115 22.0612 17.6918 22.0411C17.6858 22.0385 17.6801 22.0345 17.6752 22.0293L14.7335 18.8613C14.7138 18.8401 14.7138 18.8054 14.7335 18.7842L15.2918 18.183Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.34473 9.441H3.41497L3.4388 9.37492L4.15081 7.39999H7.28703L8.0096 9.37536L8.03361 9.441H8.10352H9.16162H9.30694L9.25502 9.30527L6.26332 1.48496L6.23873 1.42069H6.16992H5.26758H5.19872L5.17416 1.48502L2.18783 9.30533L2.13602 9.441H2.28125H3.34473ZM8.68154 22.4977V22.3977H8.58154H4.29819L8.49191 16.3349L8.50967 16.3092V16.278V15.5207V15.4207H8.40967H2.95801H2.85801V15.5207V16.3693V16.4693H2.95801H6.98358L2.80593 22.5107L2.78818 22.5364V22.5676V23.341V23.441H2.88818H8.58154H8.68154V23.341V22.4977ZM4.53473 6.35136L5.71894 3.0864L6.90794 6.35136H4.53473Z" } })]);
@@ -2084,6 +2175,9 @@ var t$3 = { addFile: e$3({ render: function() {
2084
2175
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), attach: e$3({ render: function() {
2085
2176
  var e2 = this.$createElement;
2086
2177
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.1353 0.97151C16.3653 -0.0111109 14.0902 0.591777 13.0536 2.3181L10.7744 6.11407C10.0103 7.38659 10.1326 8.91433 10.9585 10.0232L10.0988 11.5123C8.75683 11.4605 7.42339 12.1185 6.69746 13.3276L4.41822 17.1235C3.38168 18.8498 3.97626 21.0459 5.74626 22.0285C7.51626 23.0111 9.79142 22.4082 10.828 20.6819L13.1072 16.8859C13.8713 15.6134 13.749 14.0857 12.9231 12.9768L13.7828 11.4877C15.1248 11.5395 16.4582 10.8815 17.1842 9.67246L19.4634 5.87648C20.4999 4.15016 19.9053 1.95413 18.1353 0.97151ZM15.1171 8.66728C15.2354 8.56657 15.3391 8.44577 15.4225 8.30644L17.3449 5.09331C17.7532 4.41085 17.518 3.54214 16.8195 3.15299C16.121 2.76384 15.2238 3.00161 14.8155 3.68407L12.893 6.8972C12.8 7.0527 12.7404 7.21786 12.712 7.38482C13.1909 7.09804 13.8068 7.07256 14.3244 7.37143C14.8089 7.65111 15.0903 8.14736 15.1171 8.66728ZM8.76452 14.3326C8.79131 14.8525 9.07277 15.3488 9.55722 15.6285C10.0748 15.9273 10.6907 15.9019 11.1695 15.6152C11.1411 15.7821 11.0815 15.9473 10.9885 16.1028L9.06607 19.3159C8.65776 19.9984 7.76052 20.2361 7.06203 19.847C6.36354 19.4578 6.12831 18.5891 6.53662 17.9067L8.45904 14.6935C8.54242 14.5541 8.64621 14.4333 8.76452 14.3326Z" } });
2178
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), backInTime: e$3({ render: function() {
2179
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2180
+ return t2("svg", { attrs: { width: "23", height: "23", viewBox: "0 0 23 23", xmlns: "http://www.w3.org/2000/svg" } }, [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.5152 18.8912C14.7948 19.8847 12.7947 20.3156 10.8063 20.1211C8.81778 19.9266 6.94481 19.1169 5.46017 17.8099L4.20403 19.1719C5.98558 20.7403 8.23315 21.7119 10.6193 21.9453C13.0055 22.1787 15.4056 21.6616 17.47 20.4695C19.5345 19.2773 21.1554 17.4723 22.0966 15.3175C23.0379 13.1626 23.2503 10.7704 22.7029 8.48932C22.1556 6.20828 20.877 4.15755 19.0536 2.63588C17.2301 1.11421 14.957 0.201092 12.5654 0.0295368C10.1737 -0.142017 7.78844 0.436958 5.75705 1.68212C3.74822 2.91346 2.18922 4.73267 1.30143 6.87966L5.26823e-05 6.39128L1.17369 9.93593L4.47445 8.07041L3.05349 7.53716C3.79534 5.76072 5.08945 4.25563 6.75436 3.2351C8.44718 2.19746 10.4349 1.71498 12.4279 1.85795C14.421 2.00091 16.3153 2.76184 17.8348 4.0299C19.3544 5.29796 20.4198 7.0069 20.8759 8.90777C21.332 10.8086 21.155 12.8021 20.3707 14.5979C19.5863 16.3936 18.2355 17.8978 16.5152 18.8912ZM12.0098 6.24789H10.8615V11.8578H10.8614V12.9813H17.7518V11.8578H12.0098V6.24789Z" } })]);
2087
2181
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcf: e$3({ render: function() {
2088
2182
  var e2 = this.$createElement;
2089
2183
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.5638 14.574C15.5651 14.6276 15.5665 14.6846 15.5665 14.7468C16.1967 14.6326 16.7553 14.4489 17.1707 14.0071C17.1964 13.9797 17.2227 13.9522 17.2492 13.9244C17.547 13.6121 17.8733 13.27 17.7701 12.7976C17.7252 12.5932 17.6806 12.3886 17.6359 12.1841C17.321 10.7405 17.0058 9.29526 16.5932 7.87892C16.2429 6.67372 15.7432 5.50726 15.2475 4.34989L15.2288 4.3062C14.988 3.74418 14.6627 3.19308 14.2702 2.72539C13.2993 1.56907 12.0408 0.82782 10.6002 0.374527C9.04977 -0.114015 7.49483 -0.117987 5.94735 0.323886C4.56153 0.720082 3.34682 1.42906 2.33457 2.47119C0.939797 3.90852 0.175259 5.62587 0.0255348 7.6143C-0.0615141 8.7731 0.0698054 9.91452 0.484158 11.0023C0.641925 11.4171 0.841186 11.816 1.04895 12.2319C1.14382 12.4219 1.24047 12.6153 1.33575 12.8155C1.36603 12.769 1.38858 12.7368 1.40523 12.7131C1.43016 12.6776 1.4419 12.6609 1.44667 12.6427C1.7496 11.5509 2.38182 10.6389 3.023 9.73032C3.07453 9.65753 3.12878 9.58579 3.18307 9.51399C3.32692 9.32376 3.47108 9.13312 3.56569 8.92154C3.66341 8.70179 3.73641 8.47108 3.80938 8.24044C3.88463 8.00264 3.95985 7.7649 4.06212 7.53933C5.06044 5.34436 6.79247 4.03612 9.12737 3.54608C10.1555 3.33061 11.137 3.53864 11.9303 4.31167C13.2107 5.55884 14.1369 7.03291 14.7696 8.69614C15.4551 10.4989 15.7719 12.3547 15.5685 14.2841C15.5589 14.3755 15.5612 14.4679 15.5638 14.574ZM14.2089 1.78922C15.1446 1.71773 15.9977 1.79865 16.8249 2.01959C17.9162 2.31202 18.923 2.79064 19.8228 3.49614C20.7192 4.19917 21.4484 5.03674 21.9891 6.03021C22.7158 7.36576 23.067 8.81054 22.9894 10.3228C22.9108 11.8679 22.4482 13.3077 21.5578 14.5966C20.7854 15.7157 19.8129 16.6138 18.6086 17.2424C17.764 17.6832 16.8821 18.0139 15.9007 18.0382C14.2885 18.0785 12.7152 17.8317 11.1597 17.4554C9.97487 17.1694 8.79946 16.8427 7.62654 16.51C7.5413 16.4859 7.45527 16.4624 7.36895 16.4388C6.88459 16.3064 6.39117 16.1714 5.97659 15.9177C5.65675 15.7216 5.41301 15.2793 5.29811 14.898C5.11804 14.3012 5.1449 13.6697 5.45131 13.0396C5.54177 13.0994 5.63077 13.1586 5.71889 13.2172L5.71898 13.2172C5.90314 13.3397 6.08343 13.4596 6.26509 13.5768C7.41613 14.3205 8.65919 14.8473 9.9878 15.1859C11.7949 15.6477 13.613 15.6635 15.4435 15.3632C16.6344 15.1676 17.6093 14.677 18.1803 13.5336C18.5743 12.7452 18.7076 11.9141 18.7419 11.0561C18.8265 8.92969 18.0261 7.1622 16.5418 5.66629C16.3766 5.49955 16.2784 5.25672 16.186 5.02798L16.1603 4.96475C15.6922 3.82432 15.1252 2.74545 14.2089 1.78922ZM11.9724 5.19575C10.8024 5.68777 9.76084 6.32576 8.81872 7.13056C7.40206 8.34199 6.26396 9.76542 5.4835 11.4604C5.24424 11.9807 5.0393 12.5179 4.8468 13.0576C4.37724 14.3768 4.68713 15.552 5.64716 16.5216C7.65077 18.5448 10.0543 19.1803 12.8165 18.4514C12.9692 18.4107 13.1413 18.4083 13.299 18.4291C14.3978 18.5756 15.4976 18.663 16.6039 18.5274C16.6573 18.5208 16.7106 18.5126 16.7647 18.5044L16.7648 18.5043C16.9417 18.4773 17.1276 18.4488 17.3585 18.4678C17.2774 18.5942 17.1981 18.7217 17.1187 18.8492L17.1185 18.8495C16.9422 19.1329 16.7658 19.4163 16.571 19.6867C15.7369 20.8435 14.6371 21.6945 13.3482 22.2729C11.6933 23.0147 9.95384 23.1894 8.17854 22.7947C6.54699 22.4323 5.13431 21.6558 3.98875 20.429C2.73425 19.085 1.98961 17.5027 1.7991 15.6686C1.67623 14.4865 1.69712 13.2964 2.19703 12.2126C2.5895 11.3611 3.11528 10.5558 3.67736 9.80017C4.80452 8.28539 6.13264 6.94289 7.50702 5.64954C7.91734 5.26388 8.34354 4.89555 8.76981 4.52717L8.7703 4.52674C8.89318 4.42055 9.01606 4.31436 9.13856 4.20774C9.20571 4.14866 9.29724 4.09206 9.3833 4.08313C10.4572 3.96844 11.265 4.18193 11.9724 5.19575Z" } });
@@ -2135,6 +2229,12 @@ var t$3 = { addFile: e$3({ render: function() {
2135
2229
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cursor: e$3({ render: function() {
2136
2230
  var e2 = this.$createElement;
2137
2231
  return (this._self._c || e2)("path", { attrs: { d: "M23 0L0 9.62167V10.8739L8.74 14.26L12.1133 23H13.3656L23 0Z" } });
2232
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateAscending: e$3({ render: function() {
2233
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2234
+ return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.9932 20.4443L17.9932 1.39685L19.9351 1.39685L19.9351 20.4443L17.9932 20.4443Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.3563 17.3742C21.3372 17.3539 21.306 17.3539 21.2868 17.3742L18.9951 19.8103L16.713 17.3847C16.6939 17.3643 16.6627 17.3643 16.6436 17.3847L16.1015 17.9608C16.0824 17.9811 16.0824 18.0144 16.1015 18.0347L18.9577 21.0707C18.9764 21.0906 19.0069 21.0909 19.0261 21.0716C19.032 21.0691 19.0375 21.0653 19.0422 21.0602L21.8984 18.0242C21.9175 18.0039 21.9175 17.9707 21.8984 17.9504L21.3563 17.3742Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.7945 7.18197H11.3399C11.9399 7.18197 12.4308 7.67288 12.4308 8.27288V17.0002C12.4308 17.6002 11.9399 18.0911 11.3399 18.0911H2.61264C2.01264 18.0911 1.52173 17.6002 1.52173 17.0002V8.27288C1.52173 7.67288 2.01264 7.18197 2.61264 7.18197H3.15809V6.09106H4.249V7.18197H9.70355V6.09106H10.7945V7.18197ZM2.61264 17.0002H11.3399V9.90925H2.61264V17.0002ZM6.01196 10.5634H3.26468V13.3107H6.01196V10.5634Z" } })]);
2235
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateDescending: e$3({ render: function() {
2236
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2237
+ return t2("g", [t2("path", { attrs: { d: "M11.3399 7.18185H10.7945V6.09094H9.70355V7.18185H4.249V6.09094H3.15809V7.18185H2.61264C2.01264 7.18185 1.52173 7.67276 1.52173 8.27276V17C1.52173 17.6 2.01264 18.0909 2.61264 18.0909H11.3399C11.9399 18.0909 12.4308 17.6 12.4308 17V8.27276C12.4308 7.67276 11.9399 7.18185 11.3399 7.18185ZM11.3399 17H2.61264V9.90912H11.3399V17Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.0067 2.56714V21.6146H18.0648V2.56714H20.0067Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.6436 5.63724C16.6627 5.65754 16.6939 5.65754 16.713 5.63724L19.0048 3.20114L21.2868 5.62679C21.3059 5.64714 21.3372 5.64714 21.3563 5.62679L21.8983 5.05063C21.9175 5.03033 21.9175 4.99709 21.8983 4.97679L19.0422 1.94079C19.0234 1.92083 18.9929 1.92061 18.9738 1.93985C18.9679 1.9424 18.9624 1.94622 18.9577 1.95125L16.1015 4.98724C16.0824 5.00754 16.0824 5.04078 16.1015 5.06108L16.6436 5.63724Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.7945 7.18185H11.3399C11.9399 7.18185 12.4308 7.67276 12.4308 8.27276V17C12.4308 17.6 11.9399 18.0909 11.3399 18.0909H2.61264C2.01264 18.0909 1.52173 17.6 1.52173 17V8.27276C1.52173 7.67276 2.01264 7.18185 2.61264 7.18185H3.15809V6.09094H4.249V7.18185H9.70355V6.09094H10.7945V7.18185ZM2.61264 17H11.3399V9.90912H2.61264V17ZM10.6696 13.5819H7.91956V16.3319H10.6696V13.5819Z" } })]);
2138
2238
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), default: e$3({ render: function() {
2139
2239
  var e2 = this.$createElement;
2140
2240
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M1.4375 19.8906V4.4375H21.5625V19.8906H1.4375ZM0 4.07812C0 3.48269 0.482693 3 1.07812 3H21.9219C22.5173 3 23 3.48269 23 4.07812V20.25C23 20.8454 22.5173 21.3281 21.9219 21.3281H1.07812C0.482693 21.3281 0 20.8454 0 20.25V4.07812ZM7.54688 8.21094C7.54688 9.50104 6.50104 10.5469 5.21094 10.5469C3.92084 10.5469 2.875 9.50104 2.875 8.21094C2.875 6.92084 3.92084 5.875 5.21094 5.875C6.50104 5.875 7.54688 6.92084 7.54688 8.21094ZM2.875 16.1172V18.4531H20.125V12.8828L15.0938 7.85156L8.80469 14.1406L6.82812 12.1641L2.875 16.1172Z" } });
@@ -2179,7 +2279,7 @@ var t$3 = { addFile: e$3({ render: function() {
2179
2279
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.6172 3.34817C11.549 3.12969 11.3438 2.98329 11.115 2.98997C10.8862 2.99664 10.6898 3.15475 10.6345 3.37683L8.79044 10.7763L2.90624 6.97704C2.72176 6.85793 2.48179 6.87012 2.31033 7.00731C2.13888 7.14451 2.07435 7.37596 2.1501 7.58207L5.26103 16.0467L0.350471 17.6681C0.148987 17.7346 0.0096536 17.9188 0.000480396 18.1308C-0.00869285 18.3428 0.114207 18.5384 0.309191 18.6221L6.25703 21.1748C6.51614 21.286 6.81634 21.1661 6.92754 20.907C7.03875 20.6479 6.91885 20.3477 6.65974 20.2365L1.9502 18.2152L6.08239 16.8508C6.21376 16.8074 6.32191 16.7126 6.38206 16.588C6.44222 16.4634 6.44924 16.3197 6.40152 16.1899L3.63531 8.66321L8.83628 12.0213C8.9747 12.1107 9.14775 12.1278 9.30098 12.0672C9.4542 12.0066 9.56876 11.8757 9.6086 11.7159L11.185 5.39037L13.3994 12.4848C13.4458 12.6332 13.5572 12.7525 13.7022 12.8087C13.8471 12.8649 14.0098 12.852 14.1441 12.7736L20.828 8.87298L17.5593 15.8953C17.5019 16.0186 17.4961 16.1597 17.5432 16.2873C17.5902 16.4149 17.6862 16.5185 17.8099 16.575L21.3166 18.1781L17.2541 20.2508C17.0029 20.379 16.9032 20.6865 17.0314 20.9376C17.1595 21.1888 17.467 21.2885 17.7182 21.1604L22.7215 18.6077C22.8959 18.5187 23.0041 18.3377 22.9999 18.1419C22.9957 17.9461 22.8798 17.77 22.7017 17.6886L18.702 15.8601L22.4418 7.82561C22.536 7.62326 22.4878 7.38318 22.3228 7.23283C22.1579 7.08248 21.9144 7.05672 21.7216 7.16922L14.1831 11.5686L11.6172 3.34817ZM11.8626 11.9433C11.8215 11.7198 11.6232 11.5599 11.3961 11.5671C11.169 11.5743 10.9812 11.7465 10.9544 11.9721L10.4943 15.8413L8.33957 14C8.17477 13.8592 7.93398 13.8527 7.76183 13.9844C7.58968 14.1162 7.53301 14.3503 7.62586 14.5462L9.2083 17.8845L6.87485 18.1039C6.67435 18.1227 6.50948 18.2699 6.46815 18.4671C6.42683 18.6642 6.51867 18.8652 6.69472 18.963L8.76033 20.1106L7.67407 21.5523C7.52137 21.755 7.56188 22.0431 7.76456 22.1958C7.96724 22.3485 8.25534 22.308 8.40805 22.1053L9.81204 20.2418C9.89204 20.1357 9.92213 20 9.89454 19.87C9.86696 19.74 9.78441 19.6282 9.6682 19.5637L8.43756 18.88L9.94755 18.738C10.0968 18.724 10.2298 18.638 10.3039 18.5077C10.3781 18.3774 10.384 18.2192 10.3197 18.0837L9.37737 16.0957L10.5505 17.0982C10.6794 17.2084 10.8585 17.2386 11.0163 17.1769C11.1742 17.1151 11.2853 16.9715 11.3053 16.8032L11.5081 15.0984L11.8267 16.832C11.8547 16.9845 11.9578 17.1126 12.1008 17.1726C12.2438 17.2326 12.4075 17.2164 12.536 17.1295L14.5182 15.7891L13.126 18.3413C13.0484 18.4837 13.0515 18.6564 13.1343 18.7959C13.2171 18.9353 13.3672 19.0208 13.5294 19.0208H15.1757L13.7572 19.8494C13.6424 19.9164 13.5623 20.0299 13.5375 20.1604C13.5127 20.291 13.5456 20.4259 13.6279 20.5304L14.5724 21.7301C14.7293 21.9295 15.0182 21.9639 15.2176 21.807C15.417 21.65 15.4514 21.3611 15.2944 21.1617L14.6764 20.3767L17.1052 18.9581C17.2844 18.8534 17.3712 18.6416 17.317 18.4413C17.2628 18.241 17.081 18.1019 16.8735 18.1019H14.3034L16.2302 14.5694C16.3317 14.3833 16.2928 14.1519 16.1359 14.0093C15.9791 13.8668 15.745 13.85 15.5695 13.9687L12.6034 15.9745L11.8626 11.9433Z" } });
2180
2280
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), export: e$3({ render: function() {
2181
2281
  var e2 = this.$createElement, t2 = this._self._c || e2;
2182
- return t2("g", [t2("path", { attrs: { d: "M22.3,15.3l-4.1-2.8h-2.1l3.6,2.6h-4l-1.1,2.5h-3.1h-0.2H8.3l-1.1-2.5h-4l3.6-2.6H4.8l-4.1,2.8\n c0,0-0.2,4,1.4,5h9.3h0.2h9.3C22.6,19.3,22.3,15.3,22.3,15.3z" } }), this._v(" "), t2("polygon", { attrs: { points: "16.8,7.6 14.1,5.2 11.4,2.7 8.7,5.2 5.9,7.6 9.2,7.6 9.2,13.1 13.5,13.1 13.5,7.6" } })]);
2282
+ return t2("g", [t2("path", { attrs: { d: "M22.3,15.3l-4.1-2.8h-2.1l3.6,2.6h-4l-1.1,2.5h-3.1h-0.2H8.3l-1.1-2.5h-4l3.6-2.6H4.8l-4.1,2.8 c0,0-0.2,4,1.4,5h9.3h0.2h9.3C22.6,19.3,22.3,15.3,22.3,15.3z" } }), this._v(" "), t2("polygon", { attrs: { points: "16.8,7.6 14.1,5.2 11.4,2.7 8.7,5.2 5.9,7.6 9.2,7.6 9.2,13.1 13.5,13.1 13.5,7.6" } })]);
2183
2283
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), exportIfc: e$3({ render: function() {
2184
2284
  var e2 = this.$createElement, t2 = this._self._c || e2;
2185
2285
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.8743 18.5537H5.92538V1.6318H14.0184V6.63481H18.6686V6.30358L18.8743 6.51754V18.5537ZM18.4533 6.07957L16.4743 4.02064L14.5737 2.12235V6.07957H18.4533ZM5.33679 1.04321H14.3261L16.8945 3.60843L19.4629 6.28053V19.1423H5.33679V1.04321Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.84741 0.553833H14.5286L17.2474 3.26923L19.9522 6.08347V19.6316H4.84741V0.553833ZM18.3849 7.12416H13.5291V2.12114H6.41472V18.0643H18.3849V7.12416ZM17.3042 5.59019L16.1249 4.36333L15.063 3.30273V5.59019H17.3042Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.0184 17.4473H10.7076V20.1695L9.3833 20.1695L12.3998 23.5538L15.4163 20.1695L14.0184 20.1695V17.4473Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.0162 8.23163C13.5359 7.90501 14.2302 7.98058 14.6665 8.44511L15.8945 9.75273C16.3293 10.2157 16.3635 10.9113 16.0102 11.4107L16.0096 11.4102C15.9597 11.4808 15.902 11.5476 15.8366 11.6092L14.8553 12.5339C14.776 12.6086 14.6898 12.6716 14.5989 12.7228L14.5992 12.7231C14.5055 12.7757 14.4069 12.8158 14.3057 12.8436C13.9524 12.9408 13.5674 12.8868 13.2516 12.6846L13.2526 12.6837L13.2443 12.6783L13.943 12.0259L13.9466 12.0298L15.3488 10.7085L13.6673 8.92294L13.1447 9.42292L12.4913 8.73761L13.0181 8.23359L13.0162 8.23163ZM13.1267 11.1586L12.4033 11.8341L11.7812 11.1686C11.3641 10.7223 11.3179 10.0619 11.63 9.56849L13.1267 11.1586ZM8.72122 11.2988C8.3954 10.7782 8.47097 10.0828 8.93471 9.64576L10.2396 8.41598C10.7018 7.98042 11.3961 7.94601 11.8946 8.29968L11.8943 8.30004C11.9647 8.35001 12.0313 8.40774 12.0928 8.47319L13.0162 9.45663C13.0909 9.53616 13.1537 9.62255 13.2048 9.71363L13.2053 9.71322C13.2847 9.85519 13.3356 10.0085 13.3583 10.1649C13.4033 10.4729 13.3387 10.7931 13.1665 11.0629L13.1658 11.0621L13.1606 11.0702L12.5094 10.3704L12.5131 10.367L11.1938 8.962L9.41138 10.6466L9.9107 11.1702L9.22553 11.8258L8.72216 11.2979L8.72122 11.2988ZM11.6437 11.1881L12.3179 11.9127L11.6531 12.5362C11.2078 12.9539 10.5487 13.0001 10.0562 12.6875L11.6437 11.1881ZM11.784 15.5876C11.2642 15.9142 10.57 15.8386 10.1338 15.3741L8.90577 14.0664C8.47101 13.6035 8.43679 12.9079 8.79001 12.4085L8.79049 12.409C8.84043 12.3383 8.89812 12.2715 8.96355 12.2099L9.94485 11.2852C10.0241 11.2105 10.1102 11.1476 10.201 11.0965L10.2006 11.0961C10.2924 11.0446 10.3888 11.005 10.4878 10.9774C10.843 10.8776 11.2308 10.931 11.5486 11.1345L11.5473 11.1357L11.5552 11.1408L10.8566 11.7931L10.8533 11.7895L9.45126 13.1107L11.133 14.8964L11.6557 14.3963L12.3127 15.0853L11.7862 15.589L11.7151 15.5145L11.784 15.5876ZM11.6729 12.6603L12.3963 11.9849L13.0186 12.6507C13.4356 13.0969 13.4819 13.7573 13.1698 14.2507L11.6729 12.6603ZM15.8647 14.187C16.3285 13.75 16.404 13.0546 16.0782 12.5339L16.0774 12.5347L15.5741 12.0069L14.8891 12.6624L15.3883 13.186L13.606 14.8704L12.2868 13.4655L12.2904 13.4621L11.6392 12.7623L11.6341 12.7703L11.6333 12.7695C11.4871 12.9987 11.4184 13.2642 11.4287 13.5278C11.4363 13.7321 11.4913 13.9353 11.5944 14.1195L11.595 14.1189C11.6461 14.21 11.709 14.2963 11.7836 14.3758L12.707 15.3593C12.7685 15.4247 12.835 15.4824 12.9055 15.5324L12.9048 15.5331C13.4033 15.8868 14.0976 15.8524 14.5598 15.4168L15.8647 14.187ZM12.482 11.9198L13.1562 12.6444L14.7434 11.1452C14.2509 10.8326 13.5918 10.8788 13.1465 11.2965L12.482 11.9198Z" } })]);
@@ -2204,6 +2304,9 @@ var t$3 = { addFile: e$3({ render: function() {
2204
2304
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fullscreen: e$3({ render: function() {
2205
2305
  var e2 = this.$createElement;
2206
2306
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 0H4.8995e-05H2.19545H8.05005V2.15625H2.19545V7.90625H0V0ZM20.8045 2.15628L14.95 2.15628V3.05176e-05H23V2.15628V7.90628H20.8045V2.15628ZM4.8995e-05 23H0V15.0938H2.19545V20.8437H8.05005V23H2.19545H4.8995e-05ZM14.95 23L23 23V20.8438V15.0938H20.8045V20.8438H14.95V23Z" } });
2307
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), grid: e$3({ render: function() {
2308
+ var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
2309
+ return i2("g", [i2("path", { attrs: { d: "M3.11719 2.52161C3.11719 2.24546 3.34105 2.02161 3.61719 2.02161H7.61719C7.89333 2.02161 8.11719 2.24546 8.11719 2.52161V6.52161C8.11719 6.79775 7.89333 7.02161 7.61719 7.02161H3.61719C3.34105 7.02161 3.11719 6.79775 3.11719 6.52161V2.52161Z" } }), e2._v(" "), i2("path", { attrs: { d: "M3.11719 16.4784C3.11719 16.2023 3.34105 15.9784 3.61719 15.9784H7.61719C7.89333 15.9784 8.11719 16.2023 8.11719 16.4784V20.4784C8.11719 20.7545 7.89333 20.9784 7.61719 20.9784H3.61719C3.34105 20.9784 3.11719 20.7545 3.11719 20.4784V16.4784Z" } }), e2._v(" "), i2("path", { attrs: { d: "M3.11719 9.5C3.11719 9.22386 3.34105 9 3.61719 9H7.61719C7.89333 9 8.11719 9.22386 8.11719 9.5V13.5C8.11719 13.7761 7.89333 14 7.61719 14H3.61719C3.34105 14 3.11719 13.7761 3.11719 13.5V9.5Z" } }), e2._v(" "), i2("path", { attrs: { d: "M9.68536 2.52161C9.68536 2.24546 9.90922 2.02161 10.1854 2.02161H14.1854C14.4615 2.02161 14.6854 2.24546 14.6854 2.52161V6.52161C14.6854 6.79775 14.4615 7.02161 14.1854 7.02161H10.1854C9.90922 7.02161 9.68536 6.79775 9.68536 6.52161V2.52161Z" } }), e2._v(" "), i2("path", { attrs: { d: "M9.68536 16.4784C9.68536 16.2023 9.90922 15.9784 10.1854 15.9784H14.1854C14.4615 15.9784 14.6854 16.2023 14.6854 16.4784V20.4784C14.6854 20.7545 14.4615 20.9784 14.1854 20.9784H10.1854C9.90922 20.9784 9.68536 20.7545 9.68536 20.4784V16.4784Z" } }), e2._v(" "), i2("path", { attrs: { d: "M9.68536 9.5C9.68536 9.22386 9.90922 9 10.1854 9H14.1854C14.4615 9 14.6854 9.22386 14.6854 9.5V13.5C14.6854 13.7761 14.4615 14 14.1854 14H10.1854C9.90922 14 9.68536 13.7761 9.68536 13.5V9.5Z" } }), e2._v(" "), i2("path", { attrs: { d: "M16.2535 2.52161C16.2535 2.24546 16.4774 2.02161 16.7535 2.02161H20.7535C21.0297 2.02161 21.2535 2.24546 21.2535 2.52161V6.52161C21.2535 6.79775 21.0297 7.02161 20.7535 7.02161H16.7535C16.4774 7.02161 16.2535 6.79775 16.2535 6.52161V2.52161Z" } }), e2._v(" "), i2("path", { attrs: { d: "M16.2535 16.4784C16.2535 16.2023 16.4774 15.9784 16.7535 15.9784H20.7535C21.0297 15.9784 21.2535 16.2023 21.2535 16.4784V20.4784C21.2535 20.7545 21.0297 20.9784 20.7535 20.9784H16.7535C16.4774 20.9784 16.2535 20.7545 16.2535 20.4784V16.4784Z" } }), e2._v(" "), i2("path", { attrs: { d: "M16.2535 9.5C16.2535 9.22386 16.4774 9 16.7535 9H20.7535C21.0297 9 21.2535 9.22386 21.2535 9.5V13.5C21.2535 13.7761 21.0297 14 20.7535 14H16.7535C16.4774 14 16.2535 13.7761 16.2535 13.5V9.5Z" } })]);
2207
2310
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), group: e$3({ render: function() {
2208
2311
  var e2 = this.$createElement, t2 = this._self._c || e2;
2209
2312
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.1632 14.0812C5.66865 14.0812 0.688965 15.3332 0.688965 17.8184V19.6869H15.6374V17.8184C15.6374 15.3332 10.6577 14.0812 8.1632 14.0812Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.16302 12.2129C10.2278 12.2129 11.9001 10.5405 11.9001 8.47576C11.9001 6.41103 10.2278 4.73865 8.16302 4.73865C6.09828 4.73865 4.4259 6.41103 4.4259 8.47576C4.4259 10.5405 6.09828 12.2129 8.16302 12.2129Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.2606 13.2593C19.0363 13.2593 20.4745 11.821 20.4745 10.0453C20.4745 8.26967 19.0363 6.83142 17.2606 6.83142C15.4849 6.83142 14.0467 8.26967 14.0467 10.0453C14.0467 11.821 15.4849 13.2593 17.2606 13.2593Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.8334 19.6868H17.2612V17.6154C17.2612 16.5705 16.4671 15.7222 15.3304 15.0718C16.0414 14.9347 16.7195 14.866 17.2613 14.866C19.4066 14.866 23.6891 15.9427 23.6891 18.08V19.6869H10.8334V19.6868Z" } })]);
@@ -2219,12 +2322,21 @@ var t$3 = { addFile: e$3({ render: function() {
2219
2322
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), import: e$3({ render: function() {
2220
2323
  var e2 = this.$createElement;
2221
2324
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.8998 13.6346L6.68806 8.51539L9.94558 8.51539L9.94558 2.85382L13.8541 2.85382V8.51539L17.1116 8.51539L11.8998 13.6346ZM1.06519 15.8128L5.86457 12.5658L7.81884 12.8583L3.45051 15.8128H6.46811C6.89919 15.8128 7.53145 16.2516 7.81884 17.4217C8.04875 18.3578 8.98756 18.7284 9.42822 18.7966H11.8998L11.8998 18.7966H14.3713C14.812 18.7284 15.7508 18.3578 15.9807 17.4217C16.2681 16.2516 16.9004 15.8128 17.3314 15.8128H20.349L15.9807 12.8583L17.935 12.5658L22.7344 15.8128C23.108 16.0079 23.723 16.8776 23.1942 18.7966C22.5332 21.1954 21.2974 21.2539 20.8951 21.2539H11.8998L11.8998 21.2538H2.90447C2.50213 21.2538 1.26636 21.1953 0.605363 18.7966C0.0765659 16.8776 0.691582 16.0078 1.06519 15.8128Z" } });
2325
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexAscending: e$3({ render: function() {
2326
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2327
+ return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.9932 20.4443L17.9932 1.39685L19.9351 1.39685L19.9351 20.4443L17.9932 20.4443Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.3563 17.3742C21.3372 17.3539 21.306 17.3539 21.2868 17.3742L18.9951 19.8103L16.713 17.3847C16.6939 17.3643 16.6627 17.3643 16.6436 17.3847L16.1015 17.9608C16.0824 17.9811 16.0824 18.0144 16.1015 18.0347L18.9577 21.0707C18.9764 21.0906 19.0069 21.0909 19.0261 21.0716C19.032 21.0691 19.0375 21.0653 19.0422 21.0602L21.8984 18.0242C21.9175 18.0039 21.9175 17.9707 21.8984 17.9504L21.3563 17.3742Z" } }), this._v(" "), t2("path", { attrs: { d: "M2.8938 18.5909L5.23755 4.37219H7.17114L4.83716 18.5909H2.8938ZM6.40942 18.5909L8.75317 4.37219H10.6965L8.35278 18.5909H6.40942ZM12.2786 10.2218H2.11255V8.43469H12.2786V10.2218ZM11.5364 14.587H1.38013V12.7999H11.5364V14.587Z" } })]);
2328
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexDescending: e$3({ render: function() {
2329
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2330
+ return t2("g", [t2("g", { attrs: { "clip-path": "url(#clip0_3035_480)" } }, [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.0067 2.56714V21.6146H18.0648V2.56714H20.0067Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.6436 5.63724C16.6627 5.65754 16.6939 5.65754 16.713 5.63724L19.0048 3.20114L21.2868 5.62679C21.3059 5.64714 21.3372 5.64714 21.3563 5.62679L21.8983 5.05063C21.9175 5.03033 21.9175 4.99709 21.8983 4.97679L19.0422 1.94079C19.0234 1.92083 18.9929 1.92061 18.9738 1.93985C18.9679 1.9424 18.9624 1.94622 18.9577 1.95125L16.1015 4.98724C16.0824 5.00754 16.0824 5.04078 16.1015 5.06108L16.6436 5.63724Z" } }), this._v(" "), t2("path", { attrs: { d: "M2.8938 18.5909L5.23755 4.37219H7.17114L4.83716 18.5909H2.8938ZM6.40942 18.5909L8.75317 4.37219H10.6965L8.35278 18.5909H6.40942ZM12.2786 10.2218H2.11255V8.43469H12.2786V10.2218ZM11.5364 14.587H1.38013V12.7999H11.5364V14.587Z" } })])]);
2222
2331
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), information: e$3({ render: function() {
2223
2332
  var e2 = this.$createElement;
2224
2333
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 11.5C0 17.8424 5.15936 23 11.5 23C17.8406 23 23 17.8424 23 11.5C23 5.15936 17.8406 0 11.5 0C5.15936 0 0 5.15936 0 11.5ZM1.70953 11.5C1.70953 6.10131 6.10131 1.70953 11.5 1.70953C16.8987 1.70953 21.2905 6.10131 21.2905 11.5C21.2905 16.8987 16.8987 21.2905 11.5 21.2905C6.10131 21.2905 1.70953 16.8987 1.70953 11.5ZM10.8029 14.3193L10.5157 4.4775H12.4834L12.1962 14.3193H10.8029ZM10.2901 17.2508C10.2901 16.5123 10.8029 15.9789 11.5004 15.9789C12.2372 15.9789 12.7091 16.5123 12.7091 17.2508C12.7091 17.9688 12.2372 18.5209 11.5004 18.5209C10.7824 18.5209 10.2901 17.9688 10.2901 17.2508Z" } });
2225
2334
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), inProgressFile: e$3({ render: function() {
2226
2335
  var e2 = this.$createElement, t2 = this._self._c || e2;
2227
2336
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 18.6042V0.395833C0 0.178125 0.178125 0 0.395833 0H9.5V5.14583C9.5 5.36354 9.67813 5.54167 9.89583 5.54167H14.25V18.6042C14.25 18.8219 14.0719 19 13.8542 19H0.395833C0.178125 19 0 18.8219 0 18.6042ZM14.1508 4.55257C14.1904 4.61194 14.2101 4.67132 14.2299 4.75048H10.2914V0.237984L14.1508 4.55257Z" } }), this._v(" "), t2("circle", { attrs: { cx: "13", cy: "18", r: "6", fill: "#D8D8D8" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11 15V17H11.0033L11 17.0033L12.3333 18.3333L11 19.6667L11.0033 19.67H11V21.6667H15V19.67H14.9967L15 19.6667L13.6667 18.3333L15 17.0033L14.9967 17H15V15H11ZM14.3333 19.8333V21H11.6667V19.8333L13 18.5L14.3333 19.8333ZM11.6667 16.8333V15.6667H14.3333V16.8333L13 18.1667L11.6667 16.8333ZM13.0002 19.6667L12.0002 20.6667H14.0002L13.0002 19.6667ZM13.9999 16.8333L12.9999 17.8333L11.9999 16.8333L13.9999 16.8333Z", fill: "#2F374A" } })]);
2337
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), invitation: e$3({ render: function() {
2338
+ var e2 = this.$createElement;
2339
+ return (this._self._c || e2)("path", { attrs: { d: "M11.5 1.5C5.98 1.5 1.5 5.98 1.5 11.5C1.5 17.02 5.98 21.5 11.5 21.5C17.02 21.5 21.5 17.02 21.5 11.5C21.5 5.98 17.02 1.5 11.5 1.5ZM15.11 7.84C16.18 7.84 17.04 8.7 17.04 9.77C17.04 10.84 16.18 11.7 15.11 11.7C14.04 11.7 13.18 10.84 13.18 9.77C13.17 8.7 14.04 7.84 15.11 7.84ZM9.11 6.26C10.41 6.26 11.47 7.32 11.47 8.62C11.47 9.92 10.41 10.98 9.11 10.98C7.81 10.98 6.75 9.92 6.75 8.62C6.75 7.31 7.8 6.26 9.11 6.26ZM9.11 15.39V19.14C6.71 18.39 4.81 16.54 3.97 14.18C5.02 13.06 7.64 12.49 9.11 12.49C9.64 12.49 10.31 12.57 11.01 12.71C9.37 13.58 9.11 14.73 9.11 15.39ZM11.5 19.5C11.23 19.5 10.97 19.49 10.71 19.46V15.39C10.71 13.97 13.65 13.26 15.11 13.26C16.18 13.26 18.03 13.65 18.95 14.41C17.78 17.38 14.89 19.5 11.5 19.5Z" } });
2228
2340
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), isolate: e$3({ render: function() {
2229
2341
  var e2 = this.$createElement;
2230
2342
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.3904 17.581L4.92852 14.6238C4.819 14.6238 4.70947 14.5143 4.70947 14.4048V7.39524C4.70947 7.34048 4.73685 7.28571 4.76423 7.23095C4.79162 7.17619 4.819 7.12143 4.819 7.06667H5.14757L11.3904 9.58571L17.0857 7.17619L11.4999 4.65714L6.89995 6.84762C6.79042 6.95714 6.57138 6.84762 6.46185 6.73809C6.35233 6.51905 6.46185 6.40952 6.57138 6.3L11.0619 4H11.3904L17.8523 6.95714C17.9619 7.06667 18.0714 7.17619 18.0714 7.28571V14.2952C18.0714 14.4048 17.9619 14.6238 17.8523 14.6238L11.3904 17.581ZM11.2809 10.3524L5.36662 7.83333V14.1857L11.0619 16.8143V11.6667C11.0619 11.4476 11.1714 11.3381 11.3904 11.3381C11.6095 11.3381 11.719 11.4476 11.719 11.6667V16.8143L17.5238 14.1857V7.83333L11.4999 10.3524H11.2809ZM18.9476 14.4001V9.58105C21.4667 10.7858 23 12.5382 23 14.5096C23 18.1239 17.8524 20.9715 11.5 20.9715C5.14762 20.9715 0 18.1239 0 14.5096C0 12.5382 1.53333 10.7858 4.05238 9.58105V14.4001C4.05238 14.7287 4.27143 15.1668 4.6 15.2763L10.9524 18.2334H11.0619H11.281H11.5H11.6095L18.4 15.2763C18.7286 15.1668 18.9476 14.8382 18.9476 14.4001Z" } });
@@ -2237,6 +2349,9 @@ var t$3 = { addFile: e$3({ render: function() {
2237
2349
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), linkedDocument: e$3({ render: function() {
2238
2350
  var e2 = this.$createElement;
2239
2351
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3 0.479167V22.5208C3 22.7844 3.21562 23 3.47917 23H19.7708C20.0344 23 20.25 22.7844 20.25 22.5208V6.70833H14.9792C14.7156 6.70833 14.5 6.49271 14.5 6.22917V0H3.47917C3.21562 0 3 0.215625 3 0.479167ZM20.2257 5.75036C20.2017 5.65452 20.1778 5.58265 20.1299 5.51077L15.458 0.287855V5.75036H20.2257ZM15.1622 15.8675C16.4073 15.859 17.4235 14.8428 17.4321 13.5977C17.4406 12.3526 16.4382 11.3502 15.1931 11.3587L14.0318 11.3667C13.7931 11.3683 13.5983 11.5632 13.5966 11.8019C13.595 12.0406 13.7872 12.2327 14.0259 12.2311L15.1872 12.2231C15.9549 12.2179 16.5729 12.8359 16.5677 13.6036C16.5624 14.3713 15.9358 14.9979 15.1681 15.0031L12.8455 15.0191C12.0833 15.0243 11.4686 14.415 11.465 13.6549C11.4706 13.5382 11.4293 13.4203 11.3408 13.3319C11.1729 13.164 10.8988 13.1658 10.7286 13.336C10.6357 13.429 10.5929 13.5529 10.6006 13.6736C10.6077 14.9051 11.6042 15.8919 12.8396 15.8835L15.1622 15.8675ZM8.73734 11.4119C7.49227 11.4204 6.47603 12.4367 6.4675 13.6817C6.45897 14.9268 7.46138 15.9292 8.70646 15.9207L9.86777 15.9127C10.1065 15.9111 10.3013 15.7163 10.3029 15.4776C10.3046 15.2389 10.1124 15.0467 9.8737 15.0483L8.71238 15.0563C7.9447 15.0615 7.32664 14.4435 7.3319 13.6758C7.33715 12.9081 7.96374 12.2815 8.73142 12.2763L11.0541 12.2604C11.8163 12.2551 12.431 12.8644 12.4346 13.6245C12.429 13.7412 12.4703 13.8591 12.5588 13.9476C12.7267 14.1155 13.0007 14.1136 13.1709 13.9434C13.2639 13.8504 13.3066 13.7265 13.299 13.6059C13.2918 12.3743 12.2954 11.3875 11.06 11.396L8.73734 11.4119Z" } });
2352
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), list: e$3({ render: function() {
2353
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2354
+ return t2("g", [t2("path", { attrs: { d: "M19.1537 13.26C19.1537 12.9839 18.9298 12.76 18.6537 12.76H8.56629C8.29015 12.76 8.06629 12.9839 8.06629 13.26V14.3701C8.06629 14.6462 8.29015 14.8701 8.56629 14.8701H18.6537C18.9298 14.8701 19.1537 14.6462 19.1537 14.3701V13.26Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.1537 17.8898C19.1537 17.6137 18.9298 17.3898 18.6537 17.3898H8.56629C8.29015 17.3898 8.06629 17.6137 8.06629 17.8898V18.9999C8.06629 19.276 8.29015 19.4999 8.56629 19.4999H18.6537C18.9298 19.4999 19.1537 19.276 19.1537 18.9999V17.8898Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.1537 8.62994C19.1537 8.3538 18.9298 8.12994 18.6537 8.12994H8.56629C8.29015 8.12994 8.06629 8.3538 8.06629 8.62994V9.74C8.06629 10.0161 8.29015 10.24 8.56629 10.24H18.6537C18.9298 10.24 19.1537 10.0161 19.1537 9.74V8.62994Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.1537 4C19.1537 3.72386 18.9298 3.5 18.6537 3.5H8.56629C8.29015 3.5 8.06629 3.72386 8.06629 4V5.11006C8.06629 5.3862 8.29015 5.61006 8.56629 5.61006H18.6537C18.9298 5.61006 19.1537 5.3862 19.1537 5.11006V4Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 13.26C3.84619 12.9839 4.07005 12.76 4.34619 12.76H5.45625C5.73239 12.76 5.95625 12.9839 5.95625 13.26V14.3701C5.95625 14.6462 5.73239 14.8701 5.45625 14.8701H4.34619C4.07005 14.8701 3.84619 14.6462 3.84619 14.3701V13.26Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 17.8898C3.84619 17.6137 4.07005 17.3898 4.34619 17.3898H5.45625C5.73239 17.3898 5.95625 17.6137 5.95625 17.8898V18.9999C5.95625 19.276 5.73239 19.4999 5.45625 19.4999H4.34619C4.07005 19.4999 3.84619 19.276 3.84619 18.9999V17.8898Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 8.62994C3.84619 8.3538 4.07005 8.12994 4.34619 8.12994H5.45625C5.73239 8.12994 5.95625 8.3538 5.95625 8.62994V9.74C5.95625 10.0161 5.73239 10.24 5.45625 10.24H4.34619C4.07005 10.24 3.84619 10.0161 3.84619 9.74V8.62994Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 4C3.84619 3.72386 4.07005 3.5 4.34619 3.5H5.45625C5.73239 3.5 5.95625 3.72386 5.95625 4V5.11006C5.95625 5.3862 5.73239 5.61006 5.45625 5.61006H4.34619C4.07005 5.61006 3.84619 5.3862 3.84619 5.11006V4Z" } })]);
2240
2355
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), listManage: e$3({ render: function() {
2241
2356
  var e2 = this.$createElement;
2242
2357
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.82965 16.6538L5.82965 0.553833H8.12965L8.12965 16.6538H11.9593L6.97965 23.5538L2 16.6538H5.82965ZM16.1796 0.553833L21.1593 7.45383L17.3296 7.45383V23.5538H15.0296V7.45383L11.2 7.45383L16.1796 0.553833Z" } });
@@ -2267,6 +2382,9 @@ var t$3 = { addFile: e$3({ render: function() {
2267
2382
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), path: e$3({ render: function() {
2268
2383
  var e2 = this.$createElement;
2269
2384
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 2.87267C23 4.23366 21.8967 5.33696 20.5357 5.33696C19.8712 5.33696 19.2682 5.07396 18.825 4.64637L9.83851 9.13959C9.85081 9.23937 9.85714 9.341 9.85714 9.4441C9.85714 9.54715 9.85082 9.64872 9.83853 9.74845L18.8251 14.2417C19.2683 13.8142 19.8713 13.5512 20.5357 13.5512C21.8967 13.5512 23 14.6545 23 16.0155C23 17.3765 21.8967 18.4798 20.5357 18.4798C19.6964 18.4798 18.9551 18.0602 18.5101 17.4193L4.92202 21.1252C4.82932 22.4016 3.76438 23.4084 2.46429 23.4084C1.1033 23.4084 0 22.3051 0 20.9441C0 19.5831 1.1033 18.4798 2.46429 18.4798C3.30355 18.4798 4.04483 18.8994 4.48982 19.5402L18.078 15.8343C18.081 15.7929 18.085 15.7518 18.0901 15.711L9.10365 11.2178C8.66043 11.6454 8.05736 11.9084 7.39286 11.9084C6.03187 11.9084 4.92857 10.8051 4.92857 9.4441C4.92857 8.08311 6.03187 6.97982 7.39286 6.97982C8.0573 6.97982 8.66032 7.24278 9.10353 7.67032L18.09 3.17706C18.0778 3.07732 18.0714 2.97573 18.0714 2.87267C18.0714 1.51168 19.1747 0.408386 20.5357 0.408386C21.8967 0.408386 23 1.51168 23 2.87267Z" } });
2385
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), pieGraph: e$3({ render: function() {
2386
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2387
+ return t2("g", [t2("circle", { attrs: { cx: "12.2266", cy: "12.2281", r: "9.65632", stroke: "#D8D8D8", "stroke-width": "5", fill: "none" } }), this._v(" "), t2("path", { attrs: { d: "M21.8824 12.2281C21.8824 6.89506 17.5592 2.57178 12.2261 2.57178C11.6725 2.57178 11.1297 2.61837 10.6016 2.70785", stroke: "var(--color-secondary)", "stroke-width": "5", fill: "none" } }), this._v(" "), t2("path", { attrs: { d: "M12.2266 21.8843C6.89359 21.8843 2.57031 17.5611 2.57031 12.228C2.57031 7.44861 6.04256 3.4802 10.6021 2.70776", stroke: "var(--color-primary)", "stroke-width": "5", fill: "none" } })]);
2270
2388
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), plus: e$3({ render: function() {
2271
2389
  var e2 = this.$createElement;
2272
2390
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.2066 0.46463H9.92089V10.3218H0.0637207V13.6075H9.92089V23.4646H13.2066V13.6075H23.0637V10.3218H13.2066V0.46463Z" } });
@@ -2357,6 +2475,9 @@ var t$3 = { addFile: e$3({ render: function() {
2357
2475
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), system: e$3({ render: function() {
2358
2476
  var e2 = this.$createElement;
2359
2477
  return (this._self._c || e2)("path", { attrs: { d: "M18.0935 15.9516C16.9935 15.9516 15.9935 16.4516 15.2935 17.2516L8.99346 13.5516C9.09346 13.1516 9.19346 12.7516 9.19346 12.3516C9.19346 11.9516 9.09346 11.4516 8.99346 11.1516L15.2935 7.35159C15.9935 8.15159 16.9935 8.65159 18.0935 8.65159C20.1935 8.65159 21.7935 6.95159 21.7935 4.95159C21.7935 2.95159 20.0935 1.25159 18.0935 1.25159C15.9935 1.25159 14.3935 2.95159 14.3935 4.95159C14.3935 5.35159 14.4935 5.85159 14.5935 6.15159L8.29346 9.85159C7.59346 9.05159 6.59346 8.55159 5.49346 8.55159C3.39346 8.55159 1.79346 10.2516 1.79346 12.2516C1.79346 14.3516 3.49346 15.9516 5.49346 15.9516C6.59346 15.9516 7.59346 15.4516 8.29346 14.6516L14.5935 18.3516C14.4935 18.7516 14.3935 19.1516 14.3935 19.5516C14.3935 21.6516 16.0935 23.2516 18.0935 23.2516C20.1935 23.2516 21.7935 21.5516 21.7935 19.5516C21.7935 17.5516 20.1935 15.9516 18.0935 15.9516Z" } });
2478
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tag: e$3({ render: function() {
2479
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2480
+ return t2("svg", { attrs: { width: "23", height: "23", viewBox: "0 0 23 23", xmlns: "http://www.w3.org/2000/svg" } }, [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.3962 22.0997C9.45679 23.0219 7.94129 23.0015 7.01123 22.0541L0.836436 15.7643C-0.0936297 14.8169 -0.0860675 13.3012 0.853323 12.379L12.5926 0.854517C13.0398 0.415541 13.6433 0.171805 14.2725 0.176062L20.091 0.215414C21.3707 0.224069 22.4258 1.23792 22.486 2.51688L22.7832 8.82547C22.8151 9.50319 22.5582 10.1602 22.0763 10.6333L10.3962 22.0997ZM19.2431 6.6774C18.3037 7.59961 16.7882 7.57919 15.8581 6.63179C14.9281 5.68439 14.9356 4.16877 15.875 3.24657C16.8144 2.32436 18.3299 2.34479 19.26 3.29219C20.19 4.23959 20.1825 5.7552 19.2431 6.6774Z" } })]);
2360
2481
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tree: e$3({ render: function() {
2361
2482
  var e2 = this.$createElement;
2362
2483
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6656 16.4201H20.5497V12.3624C20.5497 11.9155 20.2107 11.5506 19.7954 11.5506H12.2543V7.49294H13.1828C13.9164 7.49294 14.5163 6.84638 14.5163 6.05693V2.43601C14.5163 1.64656 13.9164 1 13.1828 1H9.81719C9.08361 1 8.4828 1.64656 8.4828 2.43601V6.05693C8.4828 6.84638 9.08361 7.49294 9.81719 7.49294H10.7457V11.5506H3.20459C2.78931 11.5506 2.45029 11.9155 2.45029 12.3624V16.4201H1.33438C0.600802 16.4201 0 17.0667 0 17.8561V21.477C0 22.2665 0.600802 22.913 1.33438 22.913H4.69907C5.43265 22.913 6.03345 22.2665 6.03345 21.477V17.8561C6.03345 17.0667 5.43265 16.4201 4.69907 16.4201H3.95795V13.1741H10.7457V16.4201H9.81719C9.08361 16.4201 8.4828 17.0667 8.4828 17.8561V21.477C8.4828 22.2665 9.08361 22.913 9.81719 22.913H13.1828C13.9164 22.913 14.5163 22.2665 14.5163 21.477V17.8561C14.5163 17.0667 13.9164 16.4201 13.1828 16.4201H12.2543V13.1741H19.0411V16.4201H18.3009C17.5664 16.4201 16.9665 17.0667 16.9665 17.8561V21.477C16.9665 22.2665 17.5664 22.913 18.3009 22.913H21.6656C22.3992 22.913 23 22.2665 23 21.477V17.8561C23 17.0667 22.3992 16.4201 21.6656 16.4201Z" } });
@@ -2381,6 +2502,9 @@ var t$3 = { addFile: e$3({ render: function() {
2381
2502
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validatedFile: e$3({ render: function() {
2382
2503
  var e2 = this.$createElement, t2 = this._self._c || e2;
2383
2504
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 18.6042V0.395833C0 0.178125 0.178125 0 0.395833 0H9.5V5.14583C9.5 5.36354 9.67813 5.54167 9.89583 5.54167H14.25V18.6042C14.25 18.8219 14.0719 19 13.8542 19H0.395833C0.178125 19 0 18.8219 0 18.6042ZM14.1508 4.55257C14.1904 4.61194 14.2101 4.67132 14.2299 4.75048H10.2914V0.237984L14.1508 4.55257Z" } }), this._v(" "), t2("circle", { attrs: { cx: "13", cy: "18", r: "6", fill: "#00AF50" } }), this._v(" "), t2("path", { attrs: { d: "M15.9565 15L17 16.0588L12.1374 21L9 17.8235L10.0435 16.7647L12.1374 18.8824L15.9565 15Z", fill: "white" } })]);
2505
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), versioning: e$3({ render: function() {
2506
+ var e2 = this.$createElement, t2 = this._self._c || e2;
2507
+ return t2("svg", { attrs: { width: "23", height: "23", viewBox: "0 0 23 23", xmlns: "http://www.w3.org/2000/svg" } }, [t2("rect", { attrs: { x: "10.7764", y: "3", width: "12.2237", height: "18" } }), this._v(" "), t2("rect", { attrs: { x: "5.38818", y: "4.89471", width: "3.86011", height: "14.2105" } }), this._v(" "), t2("rect", { attrs: { y: "6.78949", width: "3.86011", height: "10.4211" } })]);
2384
2508
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), video: e$3({ render: function() {
2385
2509
  var e2 = this.$createElement;
2386
2510
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.40701 12.9833C4.32585 12.9833 3.45013 12.1298 3.45013 11.076C3.45013 10.0222 4.32585 9.16866 5.40701 9.16866C6.48817 9.16866 7.36388 10.0222 7.36388 11.076C7.36388 12.1298 6.48817 12.9833 5.40701 12.9833ZM21.9841 7.21059L18.5565 10.6275V7.87929C18.5565 7.10276 17.9049 6.46759 17.1082 6.46759H1.46619C0.669494 6.46759 0.0178223 7.10276 0.0178223 7.87929V17.8337C0.0178223 18.6093 0.669494 19.2454 1.46619 19.2454H17.1082C17.9049 19.2454 18.5565 18.6093 18.5565 17.8337V14.7294L21.9841 18.1463C22.3615 18.5232 23.0178 18.2623 23.0178 17.7358V7.62196C23.0178 7.09461 22.3615 6.83365 21.9841 7.21059Z" } });
@@ -2409,29 +2533,29 @@ var t$3 = { addFile: e$3({ render: function() {
2409
2533
  var e2 = this.$createElement, t2 = this._self._c || e2;
2410
2534
  return t2("g", [t2("path", { attrs: { d: "M8.96582 11.3144L11.6658 10.1144V3.91443L1.96582 8.11443L8.96582 11.3144Z" } }), this._v(" "), t2("path", { attrs: { d: "M1.0658 15.2145L11.6658 19.9145V13.6145L1.0658 8.81445V15.2145Z" } }), this._v(" "), t2("path", { attrs: { d: "M22.9658 8.11443L13.2658 3.91443V10.1144L15.9658 11.3144L22.9658 8.11443Z" } }), this._v(" "), t2("path", { attrs: { d: "M13.2658 13.6145V19.9145L23.8658 15.2145V8.81445L13.2658 13.6145Z" } })]);
2411
2535
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, i$3 = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
2412
- const r$3 = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
2413
- var d$2 = { name: "BIMDataIcon", components: __spreadValues({}, function(e2 = {}) {
2536
+ const d$2 = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
2537
+ var r$3 = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
2414
2538
  return Object.entries(e2).reduce((e3, [t2, i2]) => __spreadProps(__spreadValues({}, e3), { ["bimdata-icon-" + t2]: i2 }), {});
2415
- }(t$3)), props: { name: { type: String, required: true, validator: (e2) => Object.keys(t$3).includes(e2) }, color: { type: String, default: "default", validator: (e2) => i$3.includes(e2) }, fillColor: { type: String, default: "currentColor" }, fill: { type: Boolean, default: false }, stroke: { type: Boolean, default: false }, size: { type: String, default: "s", validator: (e2) => Object.keys(r$3).includes(e2) }, customSize: { type: [Number, String], default: null }, rotate: { type: Number, default: 0 }, margin: { type: String, default: "0px" } }, computed: { classes() {
2539
+ }(t$3)), props: { name: { type: String, required: true, validator: (e2) => Object.keys(t$3).includes(e2) }, color: { type: String, default: "default", validator: (e2) => i$3.includes(e2) }, fillColor: { type: String, default: "currentColor" }, fill: { type: Boolean, default: false }, stroke: { type: Boolean, default: false }, size: { type: String, default: "s", validator: (e2) => Object.keys(d$2).includes(e2) }, customSize: { type: [Number, String], default: null }, rotate: { type: Number, default: 0 }, margin: { type: String, default: "0px" } }, computed: { classes() {
2416
2540
  return { "icon-fill": this.fill, "icon-stroke": this.stroke, ["icon-fill--" + this.color]: this.fill && this.color, ["icon-stroke--" + this.color]: this.stroke && this.color };
2417
2541
  }, style() {
2418
2542
  const e2 = this.getPixelSize(this.size);
2419
2543
  return { width: e2 + "px", minWidth: e2 + "px", height: e2 + "px", minHeight: e2 + "px", margin: "" + this.margin, transform: `rotate(${this.rotate}deg)` };
2420
2544
  } }, methods: { getPixelSize() {
2421
- return this.customSize ? this.customSize : r$3[this.size];
2545
+ return this.customSize ? this.customSize : d$2[this.size];
2422
2546
  } } };
2423
2547
  const o$3 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
2424
2548
  function n$2(e2) {
2425
2549
  return (e3, t2) => function(e4, t3) {
2426
- const i2 = o$3 ? t3.media || "default" : e4, r2 = s$3[i2] || (s$3[i2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
2427
- if (!r2.ids.has(e4)) {
2428
- r2.ids.add(e4);
2550
+ const i2 = o$3 ? t3.media || "default" : e4, d2 = s$3[i2] || (s$3[i2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
2551
+ if (!d2.ids.has(e4)) {
2552
+ d2.ids.add(e4);
2429
2553
  let i3 = t3.source;
2430
- if (t3.map && (i3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", i3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"), r2.element || (r2.element = document.createElement("style"), r2.element.type = "text/css", t3.media && r2.element.setAttribute("media", t3.media), v$1 === void 0 && (v$1 = document.head || document.getElementsByTagName("head")[0]), v$1.appendChild(r2.element)), "styleSheet" in r2.element)
2431
- r2.styles.push(i3), r2.element.styleSheet.cssText = r2.styles.filter(Boolean).join("\n");
2554
+ if (t3.map && (i3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", i3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(t3.map)))) + " */"), d2.element || (d2.element = document.createElement("style"), d2.element.type = "text/css", t3.media && d2.element.setAttribute("media", t3.media), v$1 === void 0 && (v$1 = document.head || document.getElementsByTagName("head")[0]), v$1.appendChild(d2.element)), "styleSheet" in d2.element)
2555
+ d2.styles.push(i3), d2.element.styleSheet.cssText = d2.styles.filter(Boolean).join("\n");
2432
2556
  else {
2433
- const e5 = r2.ids.size - 1, t4 = document.createTextNode(i3), d2 = r2.element.childNodes;
2434
- d2[e5] && r2.element.removeChild(d2[e5]), d2.length ? r2.element.insertBefore(t4, d2[e5]) : r2.element.appendChild(t4);
2557
+ const e5 = d2.ids.size - 1, t4 = document.createTextNode(i3), r2 = d2.element.childNodes;
2558
+ r2[e5] && d2.element.removeChild(r2[e5]), r2.length ? d2.element.insertBefore(t4, r2[e5]) : d2.element.appendChild(t4);
2435
2559
  }
2436
2560
  }
2437
2561
  }(e3, t2);
@@ -2445,10 +2569,10 @@ const C = e$3({ render: function() {
2445
2569
  e2 && e2("data-v-a619a4f2_0", { source: '.overlay[data-v-a619a4f2]{position:absolute;left:0;top:0;height:100%;width:100%}.overlay[data-v-a619a4f2]::before{content:"";position:absolute;left:0;top:0;height:100%;width:100%;background-color:var(--color-primary);opacity:.9}.overlay .safe-zone[data-v-a619a4f2]{z-index:1}.overlay .safe-zone__content[data-v-a619a4f2]{background-color:var(--color-white);font-size:1.2rem;text-align:center;color:var(--color-high)}.overlay .safe-zone__content p[data-v-a619a4f2]{margin-bottom:0}.overlay .safe-zone__actions[data-v-a619a4f2]{height:75px;justify-content:space-evenly;background-color:var(--color-silver-light);border-top:1px solid var(--color-silver)}', map: void 0, media: void 0 });
2446
2570
  }, { components: { BIMDataIcon: e$3({ render: function() {
2447
2571
  var e2 = this.$createElement, t2 = this._self._c || e2;
2448
- return t2("svg", { class: this.classes, style: this.style, attrs: { xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 24 24", width: "100%", fill: this.fillColor, color: this.color } }, [t2("bimdata-icon-" + this.name, { tag: "component" })], 1);
2572
+ return t2("svg", { class: this.classes, style: this.style, attrs: { xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 23 23", width: "100%", fill: this.fillColor, color: this.color } }, [t2("bimdata-icon-" + this.name, { tag: "component" })], 1);
2449
2573
  }, staticRenderFns: [] }, function(e2) {
2450
- e2 && (e2("data-v-364a838f_0", { source: 'html[data-v-364a838f]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}', map: void 0, media: void 0 }), e2("data-v-364a838f_1", { source: ".icon-fill--black{fill:var(--color-black)}.icon-fill--default{fill:currentColor}.icon-fill--disabled{fill:var(--color-silver-dark)}.icon-fill--high{fill:var(--color-high)}.icon-fill--primary{fill:var(--color-primary)}.icon-fill--secondary{fill:var(--color-secondary)}.icon-fill--success{fill:var(--color-success)}.icon-fill--silver{fill:var(--color-silver)}.icon-fill--granite-light{fill:var(--color-granite-light)}.icon-fill--granite{fill:var(--color-granite)}.icon-fill--silver-light{fill:var(--color-silver-light)}.icon-fill--warning{fill:var(--color-warning)}.icon-fill--white{fill:var(--color-white)}.icon-stroke{fill:transparent}.icon-stroke--black{stroke:var(--color-black)}.icon-stroke--default{stroke:currentColor}.icon-stroke--disabled{stroke:var(--color-silver-dark)}.icon-stroke--high{stroke:var(--color-high)}.icon-stroke--neutral{stroke:var(--color-neutral)}.icon-stroke--primary{stroke:var(--color-primary)}.icon-stroke--secondary{stroke:var(--color-secondary)}.icon-stroke--success{stroke:var(--color-success)}.icon-stroke--silver{stroke:var(--color-silver)}.icon-stroke--granite-light{stroke:var(--color-granite-light)}.icon-stroke--granite{stroke:var(--color-granite)}.icon-stroke--silver-light{stroke:var(--color-silver-light)}.icon-stroke--warning{stroke:var(--color-warning)}.icon-stroke--white{stroke:var(--color-white)}", map: void 0, media: void 0 }));
2451
- }, d$2, "data-v-364a838f", false, void 0, false, n$2, void 0, void 0) }, props: { iconName: { type: String, default: "warning" }, width: { type: String, default: "350px" } } }, "data-v-a619a4f2", false, void 0, false, n$2, void 0, void 0);
2574
+ e2 && (e2("data-v-198621a2_0", { source: 'html[data-v-198621a2]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}', map: void 0, media: void 0 }), e2("data-v-198621a2_1", { source: ".icon-fill--black{fill:var(--color-black)}.icon-fill--default{fill:currentColor}.icon-fill--disabled{fill:var(--color-silver-dark)}.icon-fill--high{fill:var(--color-high)}.icon-fill--primary{fill:var(--color-primary)}.icon-fill--secondary{fill:var(--color-secondary)}.icon-fill--success{fill:var(--color-success)}.icon-fill--silver{fill:var(--color-silver)}.icon-fill--granite-light{fill:var(--color-granite-light)}.icon-fill--granite{fill:var(--color-granite)}.icon-fill--silver-light{fill:var(--color-silver-light)}.icon-fill--warning{fill:var(--color-warning)}.icon-fill--white{fill:var(--color-white)}.icon-stroke{fill:transparent}.icon-stroke--black{stroke:var(--color-black)}.icon-stroke--default{stroke:currentColor}.icon-stroke--disabled{stroke:var(--color-silver-dark)}.icon-stroke--high{stroke:var(--color-high)}.icon-stroke--neutral{stroke:var(--color-neutral)}.icon-stroke--primary{stroke:var(--color-primary)}.icon-stroke--secondary{stroke:var(--color-secondary)}.icon-stroke--success{stroke:var(--color-success)}.icon-stroke--silver{stroke:var(--color-silver)}.icon-stroke--granite-light{stroke:var(--color-granite-light)}.icon-stroke--granite{stroke:var(--color-granite)}.icon-stroke--silver-light{stroke:var(--color-silver-light)}.icon-stroke--warning{stroke:var(--color-warning)}.icon-stroke--white{stroke:var(--color-white)}", map: void 0, media: void 0 }));
2575
+ }, r$3, "data-v-198621a2", false, void 0, false, n$2, void 0, void 0) }, props: { iconName: { type: String, default: "warning" }, width: { type: String, default: "350px" } } }, "data-v-a619a4f2", false, void 0, false, n$2, void 0, void 0);
2452
2576
  var e$2 = { model: { prop: "modelValue", event: "update:modelValue" }, props: { name: { type: [String, Number], default: "" }, resizable: { type: Boolean, default: true }, modelValue: { type: [String, Number], default: null }, placeholder: { type: String, default: null }, label: { type: String, default: "" }, width: { type: [Number, String], default: "150px" }, height: { type: [Number, String], default: "32px" }, error: { type: Boolean, default: false }, success: { type: Boolean, default: false }, errorMessage: { type: String, default: "" }, successMessage: { type: String, default: "" }, fitContent: { type: Boolean, default: false } }, emits: ["update:modelValue"], created() {
2453
2577
  this.$watch(() => this.success && this.error, (e2) => {
2454
2578
  if (e2)
@@ -2516,13 +2640,13 @@ var render$a = function() {
2516
2640
  var _h = _vm.$createElement;
2517
2641
  var _c = _vm._self._c || _h;
2518
2642
  return _c("div", { staticClass: "bcf-topic-images" }, [_vm.viewpoints.length > 0 ? [_c("div", { staticClass: "bcf-topic-images__images" }, _vm._l(_vm.viewpoints.slice(0, 4), function(viewpoint, i2) {
2519
- return _c("div", { key: viewpoint.guid || i2, staticClass: "image-preview", class: { single: _vm.viewpoints.length === 1 } }, [viewpoint.snapshot.snapshotData ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshotData } }) : _vm._e(), _c("BIMDataButton", { staticClass: "btn-delete", attrs: { "fill": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
2643
+ return _c("div", { key: viewpoint.guid || i2, staticClass: "image-preview", class: { single: _vm.viewpoints.length === 1 } }, [viewpoint.snapshot.snapshot_data ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshot_data } }) : _vm._e(), _c("BIMDataButton", { staticClass: "btn-delete", attrs: { "fill": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
2520
2644
  return _vm.deleteViewpoint(viewpoint);
2521
2645
  } } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xs", "fill": "", "color": "high" } })], 1)], 1);
2522
2646
  }), 0), _c("BIMDataButton", { staticClass: "btn-upload", attrs: { "disabled": _vm.viewpoints.length >= 4, "width": "100%", "color": "primary", "fill": "", "radius": "" } }, [_c("label", { attrs: { "for": "files" } }, [_c("BIMDataIcon", { attrs: { "name": "camera", "size": "xs", "margin": "0 6px 0 0" } }), _vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.addPictureButton")) + " ")], 1), _c("input", { attrs: { "disabled": _vm.viewpoints.length >= 4, "hidden": "", "id": "files", "type": "file", "multiple": "", "accept": "image/png, image/jpeg" }, on: { "change": _vm.addImage } })])] : [_c("div", { staticClass: "bcf-topic-images__upload" }, [_c("span", { staticClass: "icon" }, [_c("BIMDataIcon", { attrs: { "name": "unarchive", "size": "m" } })], 1), _c("BIMDataButton", { staticClass: "btn-upload", attrs: { "color": "primary", "outline": "", "radius": "" } }, [_c("label", { attrs: { "for": "files" } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.dragDropImageText")) + " ")]), _c("input", { attrs: { "hidden": "", "id": "files", "type": "file", "multiple": "", "accept": "image/png, image/jpeg" }, on: { "change": _vm.addImage } })])], 1)]], 2);
2523
2647
  };
2524
2648
  var staticRenderFns$a = [];
2525
- var BcfTopicImages_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicForm_2FbcfTopicImages_2FBcfTopicImages_vue_src_scoped_true_lang = "";
2649
+ var BcfTopicImages_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicForm_2FbcfTopicImages_2FBcfTopicImages_vue_src_scoped_true_lang = "";
2526
2650
  const __vue2_script$a = {
2527
2651
  components: {
2528
2652
  BIMDataButton: c$5,
@@ -2548,8 +2672,8 @@ const __vue2_script$a = {
2548
2672
  reader.addEventListener("load", () => {
2549
2673
  const viewpoint = {
2550
2674
  snapshot: {
2551
- snapshotType: file.type,
2552
- snapshotData: reader.result
2675
+ snapshot_type: file.type,
2676
+ snapshot_data: reader.result
2553
2677
  }
2554
2678
  };
2555
2679
  viewpoints.value.push(viewpoint);
@@ -2571,7 +2695,7 @@ const __vue2_script$a = {
2571
2695
  }
2572
2696
  };
2573
2697
  const __cssModules$a = {};
2574
- var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "6ca9dbd4", null, null);
2698
+ var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "f7646344", null, null);
2575
2699
  function __vue2_injectStyles$a(context) {
2576
2700
  for (let o2 in __cssModules$a) {
2577
2701
  this[o2] = __cssModules$a[o2];
@@ -2585,13 +2709,13 @@ var render$9 = function() {
2585
2709
  var _h = _vm.$createElement;
2586
2710
  var _c = _vm._self._c || _h;
2587
2711
  return _c("div", { staticClass: "bcf-topic-snapshots" }, [_vm.viewpoints.length > 0 ? [_c("div", { staticClass: "bcf-topic-snapshots__snapshots" }, _vm._l(_vm.viewpoints.slice(0, 4), function(viewpoint, i2) {
2588
- return _c("div", { key: viewpoint.guid || i2, staticClass: "snapshot-preview", class: { single: _vm.viewpoints.length === 1 } }, [viewpoint.snapshot.snapshotData ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshotData } }) : _vm._e(), _c("BIMDataButton", { staticClass: "btn-delete", attrs: { "fill": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
2712
+ return _c("div", { key: viewpoint.guid || i2, staticClass: "snapshot-preview", class: { single: _vm.viewpoints.length === 1 } }, [viewpoint.snapshot.snapshot_data ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshot_data } }) : _vm._e(), _c("BIMDataButton", { staticClass: "btn-delete", attrs: { "fill": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
2589
2713
  return _vm.deleteViewpoint(viewpoint);
2590
2714
  } } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xs", "fill": "", "color": "high" } })], 1)], 1);
2591
2715
  }), 0)] : [_c("div", { staticClass: "bcf-topic-snapshots__create", on: { "click": _vm.takeSnapshots } }, [_c("BIMDataIcon", { attrs: { "name": "camera", "size": "xl" } })], 1)]], 2);
2592
2716
  };
2593
2717
  var staticRenderFns$9 = [];
2594
- var BcfTopicSnapshots_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicForm_2FbcfTopicSnapshots_2FBcfTopicSnapshots_vue_src_scoped_true_lang = "";
2718
+ var BcfTopicSnapshots_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicForm_2FbcfTopicSnapshots_2FBcfTopicSnapshots_vue_src_scoped_true_lang = "";
2595
2719
  const __vue2_script$9 = {
2596
2720
  components: {
2597
2721
  BIMDataButton: c$5,
@@ -2607,7 +2731,8 @@ const __vue2_script$9 = {
2607
2731
  "delete-viewpoint"
2608
2732
  ],
2609
2733
  setup(props, { emit }) {
2610
- const getViewers = inject("getViewers", () => []);
2734
+ const getViewers = inject("getViewers", () => {
2735
+ });
2611
2736
  const viewpoints = ref([]);
2612
2737
  watch(() => props.bcfTopic, (topic) => {
2613
2738
  viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
@@ -2622,7 +2747,7 @@ const __vue2_script$9 = {
2622
2747
  emit("delete-viewpoint", viewpoint);
2623
2748
  };
2624
2749
  const takeSnapshots = async () => {
2625
- getViewers().forEach(async (viewer) => {
2750
+ Object.values(getViewers()).flat().forEach(async (viewer) => {
2626
2751
  if (viewer) {
2627
2752
  addViewpoint(await viewer.getViewpoint());
2628
2753
  }
@@ -2636,7 +2761,7 @@ const __vue2_script$9 = {
2636
2761
  }
2637
2762
  };
2638
2763
  const __cssModules$9 = {};
2639
- var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "3de95244", null, null);
2764
+ var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "75e15c50", null, null);
2640
2765
  function __vue2_injectStyles$9(context) {
2641
2766
  for (let o2 in __cssModules$9) {
2642
2767
  this[o2] = __cssModules$9[o2];
@@ -2649,9 +2774,9 @@ var render$8 = function() {
2649
2774
  var _vm = this;
2650
2775
  var _h = _vm.$createElement;
2651
2776
  var _c = _vm._self._c || _h;
2652
- return _c("div", { staticClass: "bcf-topic-form" }, [_c("div", { staticClass: "bcf-topic-form__content" }, [_c("div", { staticClass: "bcf-topic-form__content__head" }, [_c("div", { staticClass: "bcf-topic-form__content__head__index" }, [_vm._v(" " + _vm._s(_vm.isCreation ? _vm.nextIndex : _vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-form__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.isCreation ? new Date() : _vm.bcfTopic.creationDate, "short")) + " ")])]), _vm.viewerMode ? [_c("BcfTopicSnapshots", { attrs: { "bcfTopic": _vm.bcfTopic }, on: { "add-viewpoint": _vm.addViewpoint, "delete-viewpoint": _vm.delViewpoint } }), _c("div", { staticClass: "bcf-topic-form__content__actions" }, [_c("BIMDataButton", { attrs: { "fill": "", "radius": "" }, on: { "click": function($event) {
2777
+ return _c("div", { staticClass: "bcf-topic-form" }, [_c("div", { staticClass: "bcf-topic-form__content" }, [_c("div", { staticClass: "bcf-topic-form__content__head" }, [_c("div", { staticClass: "bcf-topic-form__content__head__index" }, [_vm._v(" " + _vm._s(_vm.isCreation ? _vm.nextIndex : _vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-form__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.isCreation ? new Date() : _vm.bcfTopic.creation_date, "short")) + " ")])]), _vm.viewerMode ? [_c("BcfTopicSnapshots", { attrs: { "bcfTopic": _vm.bcfTopic }, on: { "add-viewpoint": _vm.addViewpoint, "delete-viewpoint": _vm.delViewpoint } }), _c("div", { staticClass: "bcf-topic-form__content__actions" }, [_c("BIMDataButton", { attrs: { "fill": "", "radius": "" }, on: { "click": function($event) {
2653
2778
  return _vm.$emit("add-object", _vm.bcfTopic);
2654
- } } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }), _vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.addObjectButton")) + " ")], 1), _c("BIMDataButton", { attrs: { "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
2779
+ } } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }), _vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.addObjectButton")) + " ")], 1), _c("BIMDataButton", { attrs: { "color": "primary", "fill": "", "radius": "", "disabled": _vm.viewpoints.length === 0 && _vm.viewpointsToCreate.length === 0 }, on: { "click": function($event) {
2655
2780
  return _vm.$emit("add-annotation", _vm.bcfTopic);
2656
2781
  } } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }), _vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.addAnnotationButton")) + " ")], 1)], 1)] : [_c("BcfTopicImages", { attrs: { "bcfTopic": _vm.bcfTopic }, on: { "add-image": _vm.addViewpoint, "delete-viewpoint": _vm.delViewpoint } })], _c("div", { staticClass: "bcf-topic-form__content__body" }, [_c("BIMDataInput", { attrs: { "placeholder": _vm.$t("BcfComponents.BcfTopicForm.titlePlaceholder"), "error": _vm.hasErrorTitle, "errorMessage": _vm.$t("BcfComponents.BcfTopicForm.titleErrorMessage") }, on: { "keyup": function($event) {
2657
2782
  if (!$event.type.indexOf("key") && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
@@ -2661,21 +2786,21 @@ var render$8 = function() {
2661
2786
  return _vm.submit.apply(null, arguments);
2662
2787
  } }, model: { value: _vm.topicTitle, callback: function($$v) {
2663
2788
  _vm.topicTitle = $$v;
2664
- }, expression: "topicTitle" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "label": _vm.$t("BcfComponents.BcfTopicForm.typeLabel"), "options": _vm.extensions.topicType }, model: { value: _vm.topicType, callback: function($$v) {
2789
+ }, expression: "topicTitle" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "label": _vm.$t("BcfComponents.BcfTopicForm.typeLabel"), "options": _vm.extensions.topic_type }, model: { value: _vm.topicType, callback: function($$v) {
2665
2790
  _vm.topicType = $$v;
2666
2791
  }, expression: "topicType" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "label": _vm.$t("BcfComponents.BcfTopicForm.priorityLabel"), "options": _vm.extensions.priority }, model: { value: _vm.topicPriority, callback: function($$v) {
2667
2792
  _vm.topicPriority = $$v;
2668
- }, expression: "topicPriority" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "label": _vm.$t("BcfComponents.BcfTopicForm.statusLabel"), "options": _vm.extensions.topicStatus }, model: { value: _vm.topicStatus, callback: function($$v) {
2793
+ }, expression: "topicPriority" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "label": _vm.$t("BcfComponents.BcfTopicForm.statusLabel"), "options": _vm.extensions.topic_status }, model: { value: _vm.topicStatus, callback: function($$v) {
2669
2794
  _vm.topicStatus = $$v;
2670
2795
  }, expression: "topicStatus" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "label": _vm.$t("BcfComponents.BcfTopicForm.stageLabel"), "options": _vm.extensions.stage }, model: { value: _vm.topicStage, callback: function($$v) {
2671
2796
  _vm.topicStage = $$v;
2672
- }, expression: "topicStage" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "label": _vm.$t("BcfComponents.BcfTopicForm.assignedToLabel"), "options": _vm.extensions.userIdType }, model: { value: _vm.topicAssignedTo, callback: function($$v) {
2797
+ }, expression: "topicStage" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "label": _vm.$t("BcfComponents.BcfTopicForm.assignedToLabel"), "options": _vm.extensions.user_id_type }, model: { value: _vm.topicAssignedTo, callback: function($$v) {
2673
2798
  _vm.topicAssignedTo = $$v;
2674
2799
  }, expression: "topicAssignedTo" } }), _c("div", { staticClass: "m-b-30" }, [_c("BIMDataInput", { attrs: { "margin": "0", "placeholder": _vm.$t("BcfComponents.BcfTopicForm.dueDateLabel"), "error": _vm.hasErrorDate, "errorMessage": _vm.$t("BcfComponents.BcfTopicForm.dateErrorMessage") }, model: { value: _vm.topicDate, callback: function($$v) {
2675
2800
  _vm.topicDate = $$v;
2676
2801
  }, expression: "topicDate" } }), _c("div", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.dateExample")) + " ")])], 1), _c("BIMDataTextarea", { attrs: { "width": "100%", "name": "description", "label": _vm.$t("BcfComponents.BcfTopicForm.descriptionLabel"), "fitContent": "" }, model: { value: _vm.topicDescription, callback: function($$v) {
2677
2802
  _vm.topicDescription = $$v;
2678
- }, expression: "topicDescription" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfTopicForm.labelsLabel"), "options": _vm.extensions.topicLabel }, model: { value: _vm.topicLabels, callback: function($$v) {
2803
+ }, expression: "topicDescription" } }), _c("BIMDataSelect", { attrs: { "width": "100%", "multi": true, "label": _vm.$t("BcfComponents.BcfTopicForm.labelsLabel"), "options": _vm.extensions.topic_label }, model: { value: _vm.topicLabels, callback: function($$v) {
2679
2804
  _vm.topicLabels = $$v;
2680
2805
  }, expression: "topicLabels" } })], 1)], 2), _c("div", { staticClass: "bcf-topic-form__footer" }, [_c("BIMDataButton", { attrs: { "disabled": !_vm.topicTitle, "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": _vm.submit } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm." + (_vm.isCreation ? "createButton" : "updateButton"))) + " ")])], 1), _vm.loading ? _c("div", { staticClass: "bcf-topic-form__loader" }, [_c("BIMDataLoading")], 1) : _vm._e(), _vm.isOpenModal ? _c("BIMDataSafeZoneModal", { scopedSlots: _vm._u([{ key: "text", fn: function() {
2681
2806
  return [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.modalText", { name: _vm.bcfTopic.title })) + " ")];
@@ -2688,7 +2813,7 @@ var render$8 = function() {
2688
2813
  }, proxy: true }], null, false, 3660211068) }) : _vm._e()], 1);
2689
2814
  };
2690
2815
  var staticRenderFns$8 = [];
2691
- var BcfTopicForm_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicForm_2FBcfTopicForm_vue_src_scoped_true_lang = "";
2816
+ var BcfTopicForm_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicForm_2FBcfTopicForm_vue_src_scoped_true_lang = "";
2692
2817
  const __vue2_script$8 = {
2693
2818
  components: {
2694
2819
  BcfTopicImages,
@@ -2718,6 +2843,16 @@ const __vue2_script$8 = {
2718
2843
  bcfTopic: {
2719
2844
  type: Object
2720
2845
  },
2846
+ models: {
2847
+ type: Array,
2848
+ default: () => []
2849
+ },
2850
+ providedComponents: {
2851
+ type: Object
2852
+ },
2853
+ providedPins: {
2854
+ type: Array
2855
+ },
2721
2856
  extensions: {
2722
2857
  type: Object,
2723
2858
  reuiqred: true
@@ -2749,8 +2884,9 @@ const __vue2_script$8 = {
2749
2884
  const topicDescription = ref("");
2750
2885
  const topicLabels = ref([]);
2751
2886
  const viewpoints = ref([]);
2752
- const viewpointsToCreate = [];
2753
- const viewpointsToDelete = [];
2887
+ const viewpointsToCreate = ref([]);
2888
+ const viewpointsToUpdate = ref([]);
2889
+ const viewpointsToDelete = ref([]);
2754
2890
  const loading = ref(false);
2755
2891
  const isOpenModal = ref(false);
2756
2892
  const hasErrorTitle = ref(false);
@@ -2758,12 +2894,12 @@ const __vue2_script$8 = {
2758
2894
  watch(() => props.bcfTopic, (topic) => {
2759
2895
  if (!isCreation.value) {
2760
2896
  topicTitle.value = topic.title || "";
2761
- topicType.value = topic.topicType || null;
2897
+ topicType.value = topic.topic_type || null;
2762
2898
  topicPriority.value = topic.priority || null;
2763
- topicStatus.value = topic.topicStatus || null;
2899
+ topicStatus.value = topic.topic_status || null;
2764
2900
  topicStage.value = topic.stage || null;
2765
- topicAssignedTo.value = topic.assignedTo || null;
2766
- topicDate.value = topic.dueDate ? deserialize(topic.dueDate) : "";
2901
+ topicAssignedTo.value = topic.assigned_to || null;
2902
+ topicDate.value = topic.due_date ? deserialize$1(topic.due_date) : "";
2767
2903
  topicDescription.value = topic.description || "";
2768
2904
  topicLabels.value = topic.labels || [];
2769
2905
  viewpoints.value = topic.viewpoints || [];
@@ -2786,30 +2922,40 @@ const __vue2_script$8 = {
2786
2922
  hasErrorDate.value = false;
2787
2923
  };
2788
2924
  const addViewpoint = (viewpoint) => {
2789
- viewpointsToCreate.push(viewpoint);
2925
+ viewpointsToCreate.value.push(viewpoint);
2790
2926
  };
2791
2927
  const delViewpoint = (viewpoint) => {
2792
2928
  if (viewpoint.guid) {
2793
- viewpointsToDelete.push(viewpoint);
2929
+ viewpointsToDelete.value.push(viewpoint);
2794
2930
  } else {
2795
- let index = viewpointsToCreate.indexOf(viewpoint);
2796
- viewpointsToCreate.splice(index, 1);
2931
+ let index = viewpointsToCreate.value.indexOf(viewpoint);
2932
+ viewpointsToCreate.value.splice(index, 1);
2797
2933
  }
2798
2934
  };
2799
2935
  const submit = async () => {
2800
- var _a;
2936
+ var _a, _b;
2801
2937
  if (!topicTitle.value) {
2802
2938
  hasErrorTitle.value = true;
2803
2939
  return;
2804
2940
  }
2805
- if (!validate(topicDate.value) && topicDate.value !== deserialize(props.bcfTopic.dueDate)) {
2941
+ if (!validate(topicDate.value) && topicDate.value !== deserialize$1(props.bcfTopic.due_date)) {
2806
2942
  hasErrorDate.value = true;
2807
2943
  return;
2808
2944
  }
2809
2945
  try {
2810
2946
  loading.value = true;
2947
+ viewpointsToUpdate.value = viewpoints.value.map((viewpoint) => __spreadProps(__spreadValues({}, viewpoint), { snapshot: void 0 }));
2948
+ if (props.providedComponents) {
2949
+ viewpointsToUpdate.value.forEach((viewpoint) => viewpoint.components = props.providedComponents);
2950
+ viewpointsToCreate.value.forEach((viewpoint) => viewpoint.components = props.providedComponents);
2951
+ }
2952
+ if (props.providedPins) {
2953
+ viewpointsToUpdate.value.forEach((viewpoint) => viewpoint.pins = props.providedPins);
2954
+ viewpointsToCreate.value.forEach((viewpoint) => viewpoint.pins = props.providedPins);
2955
+ }
2811
2956
  const data = {
2812
2957
  guid: (_a = props.bcfTopic) == null ? void 0 : _a.guid,
2958
+ models: ((_b = props.bcfTopic) == null ? void 0 : _b.models) || props.models,
2813
2959
  title: topicTitle.value,
2814
2960
  topicType: topicType.value,
2815
2961
  priority: topicPriority.value,
@@ -2818,7 +2964,8 @@ const __vue2_script$8 = {
2818
2964
  assignedTo: topicAssignedTo.value,
2819
2965
  dueDate: topicDate.value ? serialize(topicDate.value) : void 0,
2820
2966
  description: topicDescription.value,
2821
- labels: topicLabels.value
2967
+ labels: topicLabels.value,
2968
+ viewpoints: viewpointsToUpdate.value
2822
2969
  };
2823
2970
  let newTopic;
2824
2971
  if (isCreation.value) {
@@ -2826,8 +2973,8 @@ const __vue2_script$8 = {
2826
2973
  } else {
2827
2974
  newTopic = await updateTopic2(props.project, data);
2828
2975
  }
2829
- await Promise.all(viewpointsToCreate.map((viewpoint) => createViewpoint2(props.project, newTopic, viewpoint)));
2830
- await Promise.all(viewpointsToDelete.map((viewpoint) => deleteViewpoint2(props.project, newTopic, viewpoint)));
2976
+ await Promise.all(viewpointsToCreate.value.map((viewpoint) => createViewpoint2(props.project, newTopic, viewpoint)));
2977
+ await Promise.all(viewpointsToDelete.value.map((viewpoint) => deleteViewpoint2(props.project, newTopic, viewpoint)));
2831
2978
  if (isCreation.value) {
2832
2979
  emit("bcf-topic-created", newTopic);
2833
2980
  reset();
@@ -2855,6 +3002,7 @@ const __vue2_script$8 = {
2855
3002
  topicTitle,
2856
3003
  topicType,
2857
3004
  viewpoints,
3005
+ viewpointsToCreate,
2858
3006
  addViewpoint,
2859
3007
  delViewpoint,
2860
3008
  submit
@@ -2862,7 +3010,7 @@ const __vue2_script$8 = {
2862
3010
  }
2863
3011
  };
2864
3012
  const __cssModules$8 = {};
2865
- var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "6300b837", null, null);
3013
+ var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "1f4c899c", null, null);
2866
3014
  function __vue2_injectStyles$8(context) {
2867
3015
  for (let o2 in __cssModules$8) {
2868
3016
  this[o2] = __cssModules$8[o2];
@@ -2876,14 +3024,14 @@ var e$1 = Object.freeze(["default", "primary", "secondary", "high", "success", "
2876
3024
  }, style() {
2877
3025
  return { "min-width": "" + this.width, "min-height": "" + this.height };
2878
3026
  } } };
2879
- function r$1(e2, t2, r2, i2, o2, d2, a2, n2, l2, s2) {
2880
- typeof a2 != "boolean" && (l2 = n2, n2 = a2, a2 = false);
3027
+ function r$1(e2, t2, r2, i2, o2, d2, a2, n2, s2, l2) {
3028
+ typeof a2 != "boolean" && (s2 = n2, n2 = a2, a2 = false);
2881
3029
  const v2 = typeof r2 == "function" ? r2.options : r2;
2882
3030
  let c2;
2883
3031
  if (e2 && e2.render && (v2.render = e2.render, v2.staticRenderFns = e2.staticRenderFns, v2._compiled = true, o2 && (v2.functional = true)), i2 && (v2._scopeId = i2), d2 ? (c2 = function(e3) {
2884
- (e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, l2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(d2);
3032
+ (e3 = e3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (e3 = __VUE_SSR_CONTEXT__), t2 && t2.call(this, s2(e3)), e3 && e3._registeredComponents && e3._registeredComponents.add(d2);
2885
3033
  }, v2._ssrRegister = c2) : t2 && (c2 = a2 ? function(e3) {
2886
- t2.call(this, s2(e3, this.$root.$options.shadowRoot));
3034
+ t2.call(this, l2(e3, this.$root.$options.shadowRoot));
2887
3035
  } : function(e3) {
2888
3036
  t2.call(this, n2(e3));
2889
3037
  }), c2)
@@ -2924,7 +3072,7 @@ const n$1 = r$1({ render: function() {
2924
3072
  }, staticRenderFns: [] }, function(e2) {
2925
3073
  e2 && (e2("data-v-7af18892_0", { source: 'html[data-v-7af18892]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}html[data-v-7af18892]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}.text-left[data-v-7af18892]{text-align:left}.text-center[data-v-7af18892]{text-align:center}.text-right[data-v-7af18892]{text-align:right}.bimdata-link[data-v-7af18892]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-7af18892]{font-family:roboto,sans-serif}', map: void 0, media: void 0 }), e2("data-v-7af18892_1", { source: ".bimdata-btn{padding:0 var(--spacing-unit);height:fit-content;display:flex;align-items:center;justify-content:center;background-color:transparent;border:none;color:var(--color-primary);cursor:pointer;font-family:var(--primary-font);font-size:12px;transition:all .1s ease}.bimdata-btn:hover{transition:all .25s ease-in}.bimdata-btn:focus{outline:0}.bimdata-btn__icon{padding:0}.bimdata-btn__radius{border-radius:3px}.bimdata-btn__square{border-radius:0}.bimdata-btn__rounded{border-radius:50%}.bimdata-btn__fill{background-color:var(--color-white);justify-content:center}.bimdata-btn__fill--default{box-shadow:var(--box-shadow)}.bimdata-btn__fill--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__fill--primary{background-color:var(--color-primary);color:var(--color-white)}.bimdata-btn__fill--primary:hover{background-color:var(--color-primary-light)}.bimdata-btn__fill--secondary{background-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__fill--secondary:hover{background-color:var(--color-secondary-light)}.bimdata-btn__fill--granite{background-color:var(--color-granite);color:var(--color-white)}.bimdata-btn__fill--granite:hover{background-color:var(--color-granite)}.bimdata-btn__fill--high{background-color:var(--color-high);color:var(--color-white)}.bimdata-btn__fill--high:hover{background-color:var(--color-high-light)}.bimdata-btn__fill--success{background-color:var(--color-success);color:var(--color-white)}.bimdata-btn__fill--success:hover{background-color:var(--color-success-light)}.bimdata-btn__fill--btn-icon svg{margin:0 6px}.bimdata-btn__fill:disabled{background-color:var(--color-silver-dark);color:var(--color-white);cursor:auto}.bimdata-btn__ripple{background-position:center;transition:background .8s}.bimdata-btn__ripple--default{background-color:transparent;color:var(--color-primary)}.bimdata-btn__ripple--default:hover{background:transparent radial-gradient(circle,transparent 1%,var(--color-silver-light) 1%) center/15000%}.bimdata-btn__ripple--default:active:not(:disabled){background-color:var(--color-silver-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--primary{background-color:var(--color-primary);color:var(--color-white)}.bimdata-btn__ripple--primary:hover{background:var(--color-primary) radial-gradient(circle,transparent 1%,var(--color-primary) 1%) center/15000%}.bimdata-btn__ripple--primary:active:not(:disabled){background-color:var(--color-primary-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--secondary{background-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__ripple--secondary:hover{background:var(--color-secondary) radial-gradient(circle,transparent 1%,var(--color-secondary) 1%) center/15000%}.bimdata-btn__ripple--secondary:active:not(:disabled){background-color:var(--color-secondary-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--granite{background-color:var(--color-granite);color:var(--color-white)}.bimdata-btn__ripple--granite:hover{background:var(--color-granite) radial-gradient(circle,transparent 1%,var(--color-granite) 1%) center/15000%}.bimdata-btn__ripple--granite:active:not(:disabled){background-color:var(--color-granite-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--high{background-color:var(--color-high);color:var(--color-white)}.bimdata-btn__ripple--high:hover{background:var(--color-high) radial-gradient(circle,transparent 1%,var(--color-high) 1%) center/15000%}.bimdata-btn__ripple--high:active:not(:disabled){background-color:var(--color-high-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple--success{background-color:var(--color-success);color:var(--color-white)}.bimdata-btn__ripple--success:hover{background:var(--color-success) radial-gradient(circle,transparent 1%,var(--color-success) 1%) center/15000%}.bimdata-btn__ripple--success:active:not(:disabled){background-color:var(--color-success-light);background-size:100%;transition:background 0s}.bimdata-btn__ripple:disabled{background-color:var(--color-silver-dark);color:var(--color-white);cursor:auto}.bimdata-btn__outline{justify-content:center;border:1px solid}.bimdata-btn__outline--default{border-color:var(--color-silver);color:var(--color-primary)}.bimdata-btn__outline--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__outline--primary{border-color:var(--color-primary);color:var(--color-primary)}.bimdata-btn__outline--primary:hover{background-color:var(--color-primary-lighter)}.bimdata-btn__outline--secondary{border-color:var(--color-secondary);color:var(--color-primary)}.bimdata-btn__outline--secondary:hover{background-color:var(--color-secondary-lighter)}.bimdata-btn__outline--granite{border-color:var(--color-granite);color:var(--color-granite)}.bimdata-btn__outline--granite:hover{background-color:var(--color-silver-light)}.bimdata-btn__outline--high{border-color:var(--color-high);color:var(--color-high)}.bimdata-btn__outline--high:hover{background-color:var(--color-high-lighter)}.bimdata-btn__outline--success{border-color:var(--color-success);color:var(--color-success)}.bimdata-btn__outline--success:hover{background-color:var(--color-success-lighter)}.bimdata-btn__outline:disabled{border-color:var(--color-silver-dark);color:var(--color-silver-dark);cursor:auto}.bimdata-btn__outline:disabled:hover{background-color:transparent}.bimdata-btn__ghost{justify-content:center}.bimdata-btn__ghost svg{display:flex;align-items:center}.bimdata-btn__ghost--default{color:var(--color-primary)}.bimdata-btn__ghost--default:hover{background-color:var(--color-silver-light)}.bimdata-btn__ghost--primary{color:var(--color-primary)}.bimdata-btn__ghost--primary:hover{background-color:var(--color-primary-lighter)}.bimdata-btn__ghost--secondary{color:var(--color-secondary)}.bimdata-btn__ghost--secondary:hover{background-color:var(--color-secondary-lighter)}.bimdata-btn__ghost--granite{color:var(--color-granite)}.bimdata-btn__ghost--granite:hover{background-color:var(--color-silver-light)}.bimdata-btn__ghost--high{color:var(--color-high)}.bimdata-btn__ghost--high:hover{background-color:var(--color-high-lighter)}.bimdata-btn__ghost--success{color:var(--color-success)}.bimdata-btn__ghost--success:hover{background-color:var(--color-success-lighter)}.bimdata-btn__ghost:disabled{color:var(--color-silver-dark);cursor:auto}", map: void 0, media: void 0 }));
2926
3074
  }, t$1, "data-v-7af18892", false, void 0, false, o$1, void 0, void 0);
2927
- var l$1 = { addFile: r$1({ render: function() {
3075
+ var s$1 = { addFile: r$1({ render: function() {
2928
3076
  var e2 = this.$createElement;
2929
3077
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.6687 16.5312H14.4343V19.7656H12.2781V16.5312H9.04369V14.375H12.2781V11.1406H14.4343V14.375H17.6687V16.5312ZM4.01244 7.90625L10.1218 1.79688V5.97245V7.90625H4.01244ZM20.3885 2.3C20.3885 1.035 19.365 0 18.1 0H8.9L2 6.9V20.7C2 21.965 3.03464 23 4.3 23H18.1115C19.3765 23 20.4 21.965 20.4 20.7L20.3885 2.3Z" } });
2930
3078
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addFolder: r$1({ render: function() {
@@ -2933,6 +3081,12 @@ var l$1 = { addFile: r$1({ render: function() {
2933
3081
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addUser: r$1({ render: function() {
2934
3082
  var e2 = this.$createElement;
2935
3083
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.8177 7.18182C18.8177 9.49225 16.9463 11.3636 14.6359 11.3636C12.3254 11.3636 10.4541 9.49225 10.4541 7.18182C10.4541 4.87139 12.3254 3 14.6359 3C16.9463 3 18.8177 4.87139 18.8177 7.18182ZM5.22678 8.22703V5.09066H3.13588V8.22703H-0.000488281V10.3179H3.13588V13.4543H5.22678V10.3179H8.36315V8.22703H5.22678ZM14.6359 13.4542C11.8445 13.4542 6.27224 14.8552 6.27224 17.636V19.727H22.9995V17.636C22.9995 14.8552 17.4273 13.4542 14.6359 13.4542Z" } });
3084
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalAscending: r$1({ render: function() {
3085
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3086
+ return t2("g", [t2("path", { attrs: { d: "M7.78286 7.489H4.60159L3.8871 9.47078H2.85449L5.75415 1.87744H6.6303L9.53517 9.47078H8.50777L7.78286 7.489ZM4.90407 6.665H7.48559L6.19222 3.11344L4.90407 6.665Z" } }), this._v(" "), t2("path", { attrs: { d: "M4.62766 20.3037H8.97193V21.1225H3.44381V20.3715L7.60554 14.3532H3.51161V13.5292H8.80504V14.2645L4.62766 20.3037Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.6303 1.87746L9.53516 9.47079H8.50777L7.78286 7.48902H4.60158L3.8871 9.47079H2.85449L5.75414 1.87746H6.6303ZM6.19222 3.11346L4.90406 6.66501H7.48559L6.19222 3.11346ZM6.19314 4.53477L5.59659 6.17953H6.79211L6.19314 4.53477ZM4.94263 7.9745L4.22814 9.95628H2.14941L5.41985 1.39197H6.96437L10.2407 9.95628H8.16841L7.44349 7.9745H4.94263ZM3.44381 20.3715L7.60554 14.3532H3.5116V13.5292H8.80504V14.2645L4.62766 20.3037H8.97192V21.1225H3.44381V20.3715ZM5.55379 19.8182H9.45741V21.608H2.95832V20.22L6.67956 14.8387H3.02612V13.0437H9.29052V14.4161L5.55379 19.8182Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.9443 1.39197V20.7091H17.0023V1.39197H18.9443Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.581 17.3666C15.6001 17.3461 15.6313 17.3461 15.6504 17.3666L17.9423 19.8349L20.2245 17.3772C20.2436 17.3566 20.2749 17.3566 20.294 17.3772L20.836 17.961C20.8552 17.9815 20.8552 18.0152 20.836 18.0358L17.9798 21.1118C17.961 21.1321 17.9305 21.1323 17.9113 21.1128C17.9054 21.1102 17.8999 21.1063 17.8952 21.1012L15.0389 18.0252C15.0198 18.0046 15.0198 17.9709 15.0389 17.9504L15.581 17.3666Z" } })]);
3087
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalDescending: r$1({ render: function() {
3088
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3089
+ return t2("g", [t2("path", { attrs: { d: "M8.08205 7.47655H4.90078L4.1863 9.45833H3.15369L6.05334 1.86499H6.92949L9.83436 9.45833H8.80697L8.08205 7.47655ZM5.20326 6.65255H7.78479L6.49142 3.10099L5.20326 6.65255Z" } }), this._v(" "), t2("path", { attrs: { d: "M4.92686 20.2913H9.27112V21.11H3.743V20.3591L7.90474 14.3407H3.8108V13.5167H9.10423V14.252L4.92686 20.2913Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.92949 1.865L9.83436 9.45834H8.80696L8.08205 7.47657H4.90078L4.18629 9.45834H3.15368L6.05334 1.865H6.92949ZM6.49141 3.10101L5.20326 6.65256H7.78478L6.49141 3.10101ZM6.49233 4.52232L5.89578 6.16707H7.0913L6.49233 4.52232ZM5.24182 7.96205L4.52734 9.94383H2.44861L5.71905 1.37952H7.26356L10.5399 9.94383H8.4676L7.74269 7.96205H5.24182ZM3.743 20.3591L7.90473 14.3407H3.8108V13.5167H9.10423V14.2521L4.92685 20.2913H9.27112V21.1101H3.743V20.3591ZM5.85298 19.8058H9.7566V21.5955H3.25751V20.2076L6.97876 14.8262H3.32531V13.0312H9.58972V14.4036L5.85298 19.8058Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.2426 2.56055V21.608H17.3008V2.56055H19.2426Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.8795 5.63065C15.8986 5.65095 15.9298 5.65095 15.949 5.63065L18.2408 3.19454L20.5228 5.62019C20.5419 5.64055 20.5732 5.64055 20.5923 5.62019L21.1343 5.04404C21.1535 5.02374 21.1535 4.99049 21.1343 4.97019L18.2782 1.9342C18.2594 1.91423 18.2289 1.91401 18.2097 1.93326C18.2039 1.93581 18.1984 1.93962 18.1936 1.94466L15.3374 4.98065C15.3183 5.00095 15.3183 5.03419 15.3374 5.05449L15.8795 5.63065Z" } })]);
2936
3090
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalSort: r$1({ render: function() {
2937
3091
  var e2 = this.$createElement, t2 = this._self._c || e2;
2938
3092
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.2918 7.49901C15.3115 7.52019 15.3436 7.52019 15.3634 7.49901L17.7238 4.95698L20.0741 7.4881C20.0938 7.50934 20.126 7.50934 20.1457 7.4881L20.704 6.88689C20.7237 6.86571 20.7237 6.83102 20.704 6.80984L17.7623 3.64184C17.743 3.62101 17.7115 3.62078 17.6918 3.64086C17.6858 3.64352 17.6801 3.6475 17.6752 3.65275L14.7335 6.82074C14.7138 6.84193 14.7138 6.87662 14.7335 6.8978L15.2918 7.49901Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.2918 18.183C15.3115 18.1618 15.3436 18.1618 15.3634 18.183L17.7238 20.725L20.0741 18.1939C20.0938 18.1727 20.126 18.1727 20.1457 18.1939L20.704 18.7951C20.7237 18.8163 20.7237 18.851 20.704 18.8722L17.7623 22.0402C17.743 22.061 17.7115 22.0612 17.6918 22.0411C17.6858 22.0385 17.6801 22.0345 17.6752 22.0293L14.7335 18.8613C14.7138 18.8401 14.7138 18.8054 14.7335 18.7842L15.2918 18.183Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.34473 9.441H3.41497L3.4388 9.37492L4.15081 7.39999H7.28703L8.0096 9.37536L8.03361 9.441H8.10352H9.16162H9.30694L9.25502 9.30527L6.26332 1.48496L6.23873 1.42069H6.16992H5.26758H5.19872L5.17416 1.48502L2.18783 9.30533L2.13602 9.441H2.28125H3.34473ZM8.68154 22.4977V22.3977H8.58154H4.29819L8.49191 16.3349L8.50967 16.3092V16.278V15.5207V15.4207H8.40967H2.95801H2.85801V15.5207V16.3693V16.4693H2.95801H6.98358L2.80593 22.5107L2.78818 22.5364V22.5676V23.341V23.441H2.88818H8.58154H8.68154V23.341V22.4977ZM4.53473 6.35136L5.71894 3.0864L6.90794 6.35136H4.53473Z" } })]);
@@ -2954,6 +3108,9 @@ var l$1 = { addFile: r$1({ render: function() {
2954
3108
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), attach: r$1({ render: function() {
2955
3109
  var e2 = this.$createElement;
2956
3110
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.1353 0.97151C16.3653 -0.0111109 14.0902 0.591777 13.0536 2.3181L10.7744 6.11407C10.0103 7.38659 10.1326 8.91433 10.9585 10.0232L10.0988 11.5123C8.75683 11.4605 7.42339 12.1185 6.69746 13.3276L4.41822 17.1235C3.38168 18.8498 3.97626 21.0459 5.74626 22.0285C7.51626 23.0111 9.79142 22.4082 10.828 20.6819L13.1072 16.8859C13.8713 15.6134 13.749 14.0857 12.9231 12.9768L13.7828 11.4877C15.1248 11.5395 16.4582 10.8815 17.1842 9.67246L19.4634 5.87648C20.4999 4.15016 19.9053 1.95413 18.1353 0.97151ZM15.1171 8.66728C15.2354 8.56657 15.3391 8.44577 15.4225 8.30644L17.3449 5.09331C17.7532 4.41085 17.518 3.54214 16.8195 3.15299C16.121 2.76384 15.2238 3.00161 14.8155 3.68407L12.893 6.8972C12.8 7.0527 12.7404 7.21786 12.712 7.38482C13.1909 7.09804 13.8068 7.07256 14.3244 7.37143C14.8089 7.65111 15.0903 8.14736 15.1171 8.66728ZM8.76452 14.3326C8.79131 14.8525 9.07277 15.3488 9.55722 15.6285C10.0748 15.9273 10.6907 15.9019 11.1695 15.6152C11.1411 15.7821 11.0815 15.9473 10.9885 16.1028L9.06607 19.3159C8.65776 19.9984 7.76052 20.2361 7.06203 19.847C6.36354 19.4578 6.12831 18.5891 6.53662 17.9067L8.45904 14.6935C8.54242 14.5541 8.64621 14.4333 8.76452 14.3326Z" } });
3111
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), backInTime: r$1({ render: function() {
3112
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3113
+ return t2("svg", { attrs: { width: "23", height: "23", viewBox: "0 0 23 23", xmlns: "http://www.w3.org/2000/svg" } }, [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.5152 18.8912C14.7948 19.8847 12.7947 20.3156 10.8063 20.1211C8.81778 19.9266 6.94481 19.1169 5.46017 17.8099L4.20403 19.1719C5.98558 20.7403 8.23315 21.7119 10.6193 21.9453C13.0055 22.1787 15.4056 21.6616 17.47 20.4695C19.5345 19.2773 21.1554 17.4723 22.0966 15.3175C23.0379 13.1626 23.2503 10.7704 22.7029 8.48932C22.1556 6.20828 20.877 4.15755 19.0536 2.63588C17.2301 1.11421 14.957 0.201092 12.5654 0.0295368C10.1737 -0.142017 7.78844 0.436958 5.75705 1.68212C3.74822 2.91346 2.18922 4.73267 1.30143 6.87966L5.26823e-05 6.39128L1.17369 9.93593L4.47445 8.07041L3.05349 7.53716C3.79534 5.76072 5.08945 4.25563 6.75436 3.2351C8.44718 2.19746 10.4349 1.71498 12.4279 1.85795C14.421 2.00091 16.3153 2.76184 17.8348 4.0299C19.3544 5.29796 20.4198 7.0069 20.8759 8.90777C21.332 10.8086 21.155 12.8021 20.3707 14.5979C19.5863 16.3936 18.2355 17.8978 16.5152 18.8912ZM12.0098 6.24789H10.8615V11.8578H10.8614V12.9813H17.7518V11.8578H12.0098V6.24789Z" } })]);
2957
3114
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcf: r$1({ render: function() {
2958
3115
  var e2 = this.$createElement;
2959
3116
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.5638 14.574C15.5651 14.6276 15.5665 14.6846 15.5665 14.7468C16.1967 14.6326 16.7553 14.4489 17.1707 14.0071C17.1964 13.9797 17.2227 13.9522 17.2492 13.9244C17.547 13.6121 17.8733 13.27 17.7701 12.7976C17.7252 12.5932 17.6806 12.3886 17.6359 12.1841C17.321 10.7405 17.0058 9.29526 16.5932 7.87892C16.2429 6.67372 15.7432 5.50726 15.2475 4.34989L15.2288 4.3062C14.988 3.74418 14.6627 3.19308 14.2702 2.72539C13.2993 1.56907 12.0408 0.82782 10.6002 0.374527C9.04977 -0.114015 7.49483 -0.117987 5.94735 0.323886C4.56153 0.720082 3.34682 1.42906 2.33457 2.47119C0.939797 3.90852 0.175259 5.62587 0.0255348 7.6143C-0.0615141 8.7731 0.0698054 9.91452 0.484158 11.0023C0.641925 11.4171 0.841186 11.816 1.04895 12.2319C1.14382 12.4219 1.24047 12.6153 1.33575 12.8155C1.36603 12.769 1.38858 12.7368 1.40523 12.7131C1.43016 12.6776 1.4419 12.6609 1.44667 12.6427C1.7496 11.5509 2.38182 10.6389 3.023 9.73032C3.07453 9.65753 3.12878 9.58579 3.18307 9.51399C3.32692 9.32376 3.47108 9.13312 3.56569 8.92154C3.66341 8.70179 3.73641 8.47108 3.80938 8.24044C3.88463 8.00264 3.95985 7.7649 4.06212 7.53933C5.06044 5.34436 6.79247 4.03612 9.12737 3.54608C10.1555 3.33061 11.137 3.53864 11.9303 4.31167C13.2107 5.55884 14.1369 7.03291 14.7696 8.69614C15.4551 10.4989 15.7719 12.3547 15.5685 14.2841C15.5589 14.3755 15.5612 14.4679 15.5638 14.574ZM14.2089 1.78922C15.1446 1.71773 15.9977 1.79865 16.8249 2.01959C17.9162 2.31202 18.923 2.79064 19.8228 3.49614C20.7192 4.19917 21.4484 5.03674 21.9891 6.03021C22.7158 7.36576 23.067 8.81054 22.9894 10.3228C22.9108 11.8679 22.4482 13.3077 21.5578 14.5966C20.7854 15.7157 19.8129 16.6138 18.6086 17.2424C17.764 17.6832 16.8821 18.0139 15.9007 18.0382C14.2885 18.0785 12.7152 17.8317 11.1597 17.4554C9.97487 17.1694 8.79946 16.8427 7.62654 16.51C7.5413 16.4859 7.45527 16.4624 7.36895 16.4388C6.88459 16.3064 6.39117 16.1714 5.97659 15.9177C5.65675 15.7216 5.41301 15.2793 5.29811 14.898C5.11804 14.3012 5.1449 13.6697 5.45131 13.0396C5.54177 13.0994 5.63077 13.1586 5.71889 13.2172L5.71898 13.2172C5.90314 13.3397 6.08343 13.4596 6.26509 13.5768C7.41613 14.3205 8.65919 14.8473 9.9878 15.1859C11.7949 15.6477 13.613 15.6635 15.4435 15.3632C16.6344 15.1676 17.6093 14.677 18.1803 13.5336C18.5743 12.7452 18.7076 11.9141 18.7419 11.0561C18.8265 8.92969 18.0261 7.1622 16.5418 5.66629C16.3766 5.49955 16.2784 5.25672 16.186 5.02798L16.1603 4.96475C15.6922 3.82432 15.1252 2.74545 14.2089 1.78922ZM11.9724 5.19575C10.8024 5.68777 9.76084 6.32576 8.81872 7.13056C7.40206 8.34199 6.26396 9.76542 5.4835 11.4604C5.24424 11.9807 5.0393 12.5179 4.8468 13.0576C4.37724 14.3768 4.68713 15.552 5.64716 16.5216C7.65077 18.5448 10.0543 19.1803 12.8165 18.4514C12.9692 18.4107 13.1413 18.4083 13.299 18.4291C14.3978 18.5756 15.4976 18.663 16.6039 18.5274C16.6573 18.5208 16.7106 18.5126 16.7647 18.5044L16.7648 18.5043C16.9417 18.4773 17.1276 18.4488 17.3585 18.4678C17.2774 18.5942 17.1981 18.7217 17.1187 18.8492L17.1185 18.8495C16.9422 19.1329 16.7658 19.4163 16.571 19.6867C15.7369 20.8435 14.6371 21.6945 13.3482 22.2729C11.6933 23.0147 9.95384 23.1894 8.17854 22.7947C6.54699 22.4323 5.13431 21.6558 3.98875 20.429C2.73425 19.085 1.98961 17.5027 1.7991 15.6686C1.67623 14.4865 1.69712 13.2964 2.19703 12.2126C2.5895 11.3611 3.11528 10.5558 3.67736 9.80017C4.80452 8.28539 6.13264 6.94289 7.50702 5.64954C7.91734 5.26388 8.34354 4.89555 8.76981 4.52717L8.7703 4.52674C8.89318 4.42055 9.01606 4.31436 9.13856 4.20774C9.20571 4.14866 9.29724 4.09206 9.3833 4.08313C10.4572 3.96844 11.265 4.18193 11.9724 5.19575Z" } });
@@ -3005,6 +3162,12 @@ var l$1 = { addFile: r$1({ render: function() {
3005
3162
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cursor: r$1({ render: function() {
3006
3163
  var e2 = this.$createElement;
3007
3164
  return (this._self._c || e2)("path", { attrs: { d: "M23 0L0 9.62167V10.8739L8.74 14.26L12.1133 23H13.3656L23 0Z" } });
3165
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateAscending: r$1({ render: function() {
3166
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3167
+ return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.9932 20.4443L17.9932 1.39685L19.9351 1.39685L19.9351 20.4443L17.9932 20.4443Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.3563 17.3742C21.3372 17.3539 21.306 17.3539 21.2868 17.3742L18.9951 19.8103L16.713 17.3847C16.6939 17.3643 16.6627 17.3643 16.6436 17.3847L16.1015 17.9608C16.0824 17.9811 16.0824 18.0144 16.1015 18.0347L18.9577 21.0707C18.9764 21.0906 19.0069 21.0909 19.0261 21.0716C19.032 21.0691 19.0375 21.0653 19.0422 21.0602L21.8984 18.0242C21.9175 18.0039 21.9175 17.9707 21.8984 17.9504L21.3563 17.3742Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.7945 7.18197H11.3399C11.9399 7.18197 12.4308 7.67288 12.4308 8.27288V17.0002C12.4308 17.6002 11.9399 18.0911 11.3399 18.0911H2.61264C2.01264 18.0911 1.52173 17.6002 1.52173 17.0002V8.27288C1.52173 7.67288 2.01264 7.18197 2.61264 7.18197H3.15809V6.09106H4.249V7.18197H9.70355V6.09106H10.7945V7.18197ZM2.61264 17.0002H11.3399V9.90925H2.61264V17.0002ZM6.01196 10.5634H3.26468V13.3107H6.01196V10.5634Z" } })]);
3168
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateDescending: r$1({ render: function() {
3169
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3170
+ return t2("g", [t2("path", { attrs: { d: "M11.3399 7.18185H10.7945V6.09094H9.70355V7.18185H4.249V6.09094H3.15809V7.18185H2.61264C2.01264 7.18185 1.52173 7.67276 1.52173 8.27276V17C1.52173 17.6 2.01264 18.0909 2.61264 18.0909H11.3399C11.9399 18.0909 12.4308 17.6 12.4308 17V8.27276C12.4308 7.67276 11.9399 7.18185 11.3399 7.18185ZM11.3399 17H2.61264V9.90912H11.3399V17Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.0067 2.56714V21.6146H18.0648V2.56714H20.0067Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.6436 5.63724C16.6627 5.65754 16.6939 5.65754 16.713 5.63724L19.0048 3.20114L21.2868 5.62679C21.3059 5.64714 21.3372 5.64714 21.3563 5.62679L21.8983 5.05063C21.9175 5.03033 21.9175 4.99709 21.8983 4.97679L19.0422 1.94079C19.0234 1.92083 18.9929 1.92061 18.9738 1.93985C18.9679 1.9424 18.9624 1.94622 18.9577 1.95125L16.1015 4.98724C16.0824 5.00754 16.0824 5.04078 16.1015 5.06108L16.6436 5.63724Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.7945 7.18185H11.3399C11.9399 7.18185 12.4308 7.67276 12.4308 8.27276V17C12.4308 17.6 11.9399 18.0909 11.3399 18.0909H2.61264C2.01264 18.0909 1.52173 17.6 1.52173 17V8.27276C1.52173 7.67276 2.01264 7.18185 2.61264 7.18185H3.15809V6.09094H4.249V7.18185H9.70355V6.09094H10.7945V7.18185ZM2.61264 17H11.3399V9.90912H2.61264V17ZM10.6696 13.5819H7.91956V16.3319H10.6696V13.5819Z" } })]);
3008
3171
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), default: r$1({ render: function() {
3009
3172
  var e2 = this.$createElement;
3010
3173
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M1.4375 19.8906V4.4375H21.5625V19.8906H1.4375ZM0 4.07812C0 3.48269 0.482693 3 1.07812 3H21.9219C22.5173 3 23 3.48269 23 4.07812V20.25C23 20.8454 22.5173 21.3281 21.9219 21.3281H1.07812C0.482693 21.3281 0 20.8454 0 20.25V4.07812ZM7.54688 8.21094C7.54688 9.50104 6.50104 10.5469 5.21094 10.5469C3.92084 10.5469 2.875 9.50104 2.875 8.21094C2.875 6.92084 3.92084 5.875 5.21094 5.875C6.50104 5.875 7.54688 6.92084 7.54688 8.21094ZM2.875 16.1172V18.4531H20.125V12.8828L15.0938 7.85156L8.80469 14.1406L6.82812 12.1641L2.875 16.1172Z" } });
@@ -3049,7 +3212,7 @@ var l$1 = { addFile: r$1({ render: function() {
3049
3212
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.6172 3.34817C11.549 3.12969 11.3438 2.98329 11.115 2.98997C10.8862 2.99664 10.6898 3.15475 10.6345 3.37683L8.79044 10.7763L2.90624 6.97704C2.72176 6.85793 2.48179 6.87012 2.31033 7.00731C2.13888 7.14451 2.07435 7.37596 2.1501 7.58207L5.26103 16.0467L0.350471 17.6681C0.148987 17.7346 0.0096536 17.9188 0.000480396 18.1308C-0.00869285 18.3428 0.114207 18.5384 0.309191 18.6221L6.25703 21.1748C6.51614 21.286 6.81634 21.1661 6.92754 20.907C7.03875 20.6479 6.91885 20.3477 6.65974 20.2365L1.9502 18.2152L6.08239 16.8508C6.21376 16.8074 6.32191 16.7126 6.38206 16.588C6.44222 16.4634 6.44924 16.3197 6.40152 16.1899L3.63531 8.66321L8.83628 12.0213C8.9747 12.1107 9.14775 12.1278 9.30098 12.0672C9.4542 12.0066 9.56876 11.8757 9.6086 11.7159L11.185 5.39037L13.3994 12.4848C13.4458 12.6332 13.5572 12.7525 13.7022 12.8087C13.8471 12.8649 14.0098 12.852 14.1441 12.7736L20.828 8.87298L17.5593 15.8953C17.5019 16.0186 17.4961 16.1597 17.5432 16.2873C17.5902 16.4149 17.6862 16.5185 17.8099 16.575L21.3166 18.1781L17.2541 20.2508C17.0029 20.379 16.9032 20.6865 17.0314 20.9376C17.1595 21.1888 17.467 21.2885 17.7182 21.1604L22.7215 18.6077C22.8959 18.5187 23.0041 18.3377 22.9999 18.1419C22.9957 17.9461 22.8798 17.77 22.7017 17.6886L18.702 15.8601L22.4418 7.82561C22.536 7.62326 22.4878 7.38318 22.3228 7.23283C22.1579 7.08248 21.9144 7.05672 21.7216 7.16922L14.1831 11.5686L11.6172 3.34817ZM11.8626 11.9433C11.8215 11.7198 11.6232 11.5599 11.3961 11.5671C11.169 11.5743 10.9812 11.7465 10.9544 11.9721L10.4943 15.8413L8.33957 14C8.17477 13.8592 7.93398 13.8527 7.76183 13.9844C7.58968 14.1162 7.53301 14.3503 7.62586 14.5462L9.2083 17.8845L6.87485 18.1039C6.67435 18.1227 6.50948 18.2699 6.46815 18.4671C6.42683 18.6642 6.51867 18.8652 6.69472 18.963L8.76033 20.1106L7.67407 21.5523C7.52137 21.755 7.56188 22.0431 7.76456 22.1958C7.96724 22.3485 8.25534 22.308 8.40805 22.1053L9.81204 20.2418C9.89204 20.1357 9.92213 20 9.89454 19.87C9.86696 19.74 9.78441 19.6282 9.6682 19.5637L8.43756 18.88L9.94755 18.738C10.0968 18.724 10.2298 18.638 10.3039 18.5077C10.3781 18.3774 10.384 18.2192 10.3197 18.0837L9.37737 16.0957L10.5505 17.0982C10.6794 17.2084 10.8585 17.2386 11.0163 17.1769C11.1742 17.1151 11.2853 16.9715 11.3053 16.8032L11.5081 15.0984L11.8267 16.832C11.8547 16.9845 11.9578 17.1126 12.1008 17.1726C12.2438 17.2326 12.4075 17.2164 12.536 17.1295L14.5182 15.7891L13.126 18.3413C13.0484 18.4837 13.0515 18.6564 13.1343 18.7959C13.2171 18.9353 13.3672 19.0208 13.5294 19.0208H15.1757L13.7572 19.8494C13.6424 19.9164 13.5623 20.0299 13.5375 20.1604C13.5127 20.291 13.5456 20.4259 13.6279 20.5304L14.5724 21.7301C14.7293 21.9295 15.0182 21.9639 15.2176 21.807C15.417 21.65 15.4514 21.3611 15.2944 21.1617L14.6764 20.3767L17.1052 18.9581C17.2844 18.8534 17.3712 18.6416 17.317 18.4413C17.2628 18.241 17.081 18.1019 16.8735 18.1019H14.3034L16.2302 14.5694C16.3317 14.3833 16.2928 14.1519 16.1359 14.0093C15.9791 13.8668 15.745 13.85 15.5695 13.9687L12.6034 15.9745L11.8626 11.9433Z" } });
3050
3213
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), export: r$1({ render: function() {
3051
3214
  var e2 = this.$createElement, t2 = this._self._c || e2;
3052
- return t2("g", [t2("path", { attrs: { d: "M22.3,15.3l-4.1-2.8h-2.1l3.6,2.6h-4l-1.1,2.5h-3.1h-0.2H8.3l-1.1-2.5h-4l3.6-2.6H4.8l-4.1,2.8\n c0,0-0.2,4,1.4,5h9.3h0.2h9.3C22.6,19.3,22.3,15.3,22.3,15.3z" } }), this._v(" "), t2("polygon", { attrs: { points: "16.8,7.6 14.1,5.2 11.4,2.7 8.7,5.2 5.9,7.6 9.2,7.6 9.2,13.1 13.5,13.1 13.5,7.6" } })]);
3215
+ return t2("g", [t2("path", { attrs: { d: "M22.3,15.3l-4.1-2.8h-2.1l3.6,2.6h-4l-1.1,2.5h-3.1h-0.2H8.3l-1.1-2.5h-4l3.6-2.6H4.8l-4.1,2.8 c0,0-0.2,4,1.4,5h9.3h0.2h9.3C22.6,19.3,22.3,15.3,22.3,15.3z" } }), this._v(" "), t2("polygon", { attrs: { points: "16.8,7.6 14.1,5.2 11.4,2.7 8.7,5.2 5.9,7.6 9.2,7.6 9.2,13.1 13.5,13.1 13.5,7.6" } })]);
3053
3216
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), exportIfc: r$1({ render: function() {
3054
3217
  var e2 = this.$createElement, t2 = this._self._c || e2;
3055
3218
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.8743 18.5537H5.92538V1.6318H14.0184V6.63481H18.6686V6.30358L18.8743 6.51754V18.5537ZM18.4533 6.07957L16.4743 4.02064L14.5737 2.12235V6.07957H18.4533ZM5.33679 1.04321H14.3261L16.8945 3.60843L19.4629 6.28053V19.1423H5.33679V1.04321Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.84741 0.553833H14.5286L17.2474 3.26923L19.9522 6.08347V19.6316H4.84741V0.553833ZM18.3849 7.12416H13.5291V2.12114H6.41472V18.0643H18.3849V7.12416ZM17.3042 5.59019L16.1249 4.36333L15.063 3.30273V5.59019H17.3042Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.0184 17.4473H10.7076V20.1695L9.3833 20.1695L12.3998 23.5538L15.4163 20.1695L14.0184 20.1695V17.4473Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.0162 8.23163C13.5359 7.90501 14.2302 7.98058 14.6665 8.44511L15.8945 9.75273C16.3293 10.2157 16.3635 10.9113 16.0102 11.4107L16.0096 11.4102C15.9597 11.4808 15.902 11.5476 15.8366 11.6092L14.8553 12.5339C14.776 12.6086 14.6898 12.6716 14.5989 12.7228L14.5992 12.7231C14.5055 12.7757 14.4069 12.8158 14.3057 12.8436C13.9524 12.9408 13.5674 12.8868 13.2516 12.6846L13.2526 12.6837L13.2443 12.6783L13.943 12.0259L13.9466 12.0298L15.3488 10.7085L13.6673 8.92294L13.1447 9.42292L12.4913 8.73761L13.0181 8.23359L13.0162 8.23163ZM13.1267 11.1586L12.4033 11.8341L11.7812 11.1686C11.3641 10.7223 11.3179 10.0619 11.63 9.56849L13.1267 11.1586ZM8.72122 11.2988C8.3954 10.7782 8.47097 10.0828 8.93471 9.64576L10.2396 8.41598C10.7018 7.98042 11.3961 7.94601 11.8946 8.29968L11.8943 8.30004C11.9647 8.35001 12.0313 8.40774 12.0928 8.47319L13.0162 9.45663C13.0909 9.53616 13.1537 9.62255 13.2048 9.71363L13.2053 9.71322C13.2847 9.85519 13.3356 10.0085 13.3583 10.1649C13.4033 10.4729 13.3387 10.7931 13.1665 11.0629L13.1658 11.0621L13.1606 11.0702L12.5094 10.3704L12.5131 10.367L11.1938 8.962L9.41138 10.6466L9.9107 11.1702L9.22553 11.8258L8.72216 11.2979L8.72122 11.2988ZM11.6437 11.1881L12.3179 11.9127L11.6531 12.5362C11.2078 12.9539 10.5487 13.0001 10.0562 12.6875L11.6437 11.1881ZM11.784 15.5876C11.2642 15.9142 10.57 15.8386 10.1338 15.3741L8.90577 14.0664C8.47101 13.6035 8.43679 12.9079 8.79001 12.4085L8.79049 12.409C8.84043 12.3383 8.89812 12.2715 8.96355 12.2099L9.94485 11.2852C10.0241 11.2105 10.1102 11.1476 10.201 11.0965L10.2006 11.0961C10.2924 11.0446 10.3888 11.005 10.4878 10.9774C10.843 10.8776 11.2308 10.931 11.5486 11.1345L11.5473 11.1357L11.5552 11.1408L10.8566 11.7931L10.8533 11.7895L9.45126 13.1107L11.133 14.8964L11.6557 14.3963L12.3127 15.0853L11.7862 15.589L11.7151 15.5145L11.784 15.5876ZM11.6729 12.6603L12.3963 11.9849L13.0186 12.6507C13.4356 13.0969 13.4819 13.7573 13.1698 14.2507L11.6729 12.6603ZM15.8647 14.187C16.3285 13.75 16.404 13.0546 16.0782 12.5339L16.0774 12.5347L15.5741 12.0069L14.8891 12.6624L15.3883 13.186L13.606 14.8704L12.2868 13.4655L12.2904 13.4621L11.6392 12.7623L11.6341 12.7703L11.6333 12.7695C11.4871 12.9987 11.4184 13.2642 11.4287 13.5278C11.4363 13.7321 11.4913 13.9353 11.5944 14.1195L11.595 14.1189C11.6461 14.21 11.709 14.2963 11.7836 14.3758L12.707 15.3593C12.7685 15.4247 12.835 15.4824 12.9055 15.5324L12.9048 15.5331C13.4033 15.8868 14.0976 15.8524 14.5598 15.4168L15.8647 14.187ZM12.482 11.9198L13.1562 12.6444L14.7434 11.1452C14.2509 10.8326 13.5918 10.8788 13.1465 11.2965L12.482 11.9198Z" } })]);
@@ -3074,6 +3237,9 @@ var l$1 = { addFile: r$1({ render: function() {
3074
3237
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fullscreen: r$1({ render: function() {
3075
3238
  var e2 = this.$createElement;
3076
3239
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 0H4.8995e-05H2.19545H8.05005V2.15625H2.19545V7.90625H0V0ZM20.8045 2.15628L14.95 2.15628V3.05176e-05H23V2.15628V7.90628H20.8045V2.15628ZM4.8995e-05 23H0V15.0938H2.19545V20.8437H8.05005V23H2.19545H4.8995e-05ZM14.95 23L23 23V20.8438V15.0938H20.8045V20.8438H14.95V23Z" } });
3240
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), grid: r$1({ render: function() {
3241
+ var e2 = this, t2 = e2.$createElement, r2 = e2._self._c || t2;
3242
+ return r2("g", [r2("path", { attrs: { d: "M3.11719 2.52161C3.11719 2.24546 3.34105 2.02161 3.61719 2.02161H7.61719C7.89333 2.02161 8.11719 2.24546 8.11719 2.52161V6.52161C8.11719 6.79775 7.89333 7.02161 7.61719 7.02161H3.61719C3.34105 7.02161 3.11719 6.79775 3.11719 6.52161V2.52161Z" } }), e2._v(" "), r2("path", { attrs: { d: "M3.11719 16.4784C3.11719 16.2023 3.34105 15.9784 3.61719 15.9784H7.61719C7.89333 15.9784 8.11719 16.2023 8.11719 16.4784V20.4784C8.11719 20.7545 7.89333 20.9784 7.61719 20.9784H3.61719C3.34105 20.9784 3.11719 20.7545 3.11719 20.4784V16.4784Z" } }), e2._v(" "), r2("path", { attrs: { d: "M3.11719 9.5C3.11719 9.22386 3.34105 9 3.61719 9H7.61719C7.89333 9 8.11719 9.22386 8.11719 9.5V13.5C8.11719 13.7761 7.89333 14 7.61719 14H3.61719C3.34105 14 3.11719 13.7761 3.11719 13.5V9.5Z" } }), e2._v(" "), r2("path", { attrs: { d: "M9.68536 2.52161C9.68536 2.24546 9.90922 2.02161 10.1854 2.02161H14.1854C14.4615 2.02161 14.6854 2.24546 14.6854 2.52161V6.52161C14.6854 6.79775 14.4615 7.02161 14.1854 7.02161H10.1854C9.90922 7.02161 9.68536 6.79775 9.68536 6.52161V2.52161Z" } }), e2._v(" "), r2("path", { attrs: { d: "M9.68536 16.4784C9.68536 16.2023 9.90922 15.9784 10.1854 15.9784H14.1854C14.4615 15.9784 14.6854 16.2023 14.6854 16.4784V20.4784C14.6854 20.7545 14.4615 20.9784 14.1854 20.9784H10.1854C9.90922 20.9784 9.68536 20.7545 9.68536 20.4784V16.4784Z" } }), e2._v(" "), r2("path", { attrs: { d: "M9.68536 9.5C9.68536 9.22386 9.90922 9 10.1854 9H14.1854C14.4615 9 14.6854 9.22386 14.6854 9.5V13.5C14.6854 13.7761 14.4615 14 14.1854 14H10.1854C9.90922 14 9.68536 13.7761 9.68536 13.5V9.5Z" } }), e2._v(" "), r2("path", { attrs: { d: "M16.2535 2.52161C16.2535 2.24546 16.4774 2.02161 16.7535 2.02161H20.7535C21.0297 2.02161 21.2535 2.24546 21.2535 2.52161V6.52161C21.2535 6.79775 21.0297 7.02161 20.7535 7.02161H16.7535C16.4774 7.02161 16.2535 6.79775 16.2535 6.52161V2.52161Z" } }), e2._v(" "), r2("path", { attrs: { d: "M16.2535 16.4784C16.2535 16.2023 16.4774 15.9784 16.7535 15.9784H20.7535C21.0297 15.9784 21.2535 16.2023 21.2535 16.4784V20.4784C21.2535 20.7545 21.0297 20.9784 20.7535 20.9784H16.7535C16.4774 20.9784 16.2535 20.7545 16.2535 20.4784V16.4784Z" } }), e2._v(" "), r2("path", { attrs: { d: "M16.2535 9.5C16.2535 9.22386 16.4774 9 16.7535 9H20.7535C21.0297 9 21.2535 9.22386 21.2535 9.5V13.5C21.2535 13.7761 21.0297 14 20.7535 14H16.7535C16.4774 14 16.2535 13.7761 16.2535 13.5V9.5Z" } })]);
3077
3243
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), group: r$1({ render: function() {
3078
3244
  var e2 = this.$createElement, t2 = this._self._c || e2;
3079
3245
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.1632 14.0812C5.66865 14.0812 0.688965 15.3332 0.688965 17.8184V19.6869H15.6374V17.8184C15.6374 15.3332 10.6577 14.0812 8.1632 14.0812Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.16302 12.2129C10.2278 12.2129 11.9001 10.5405 11.9001 8.47576C11.9001 6.41103 10.2278 4.73865 8.16302 4.73865C6.09828 4.73865 4.4259 6.41103 4.4259 8.47576C4.4259 10.5405 6.09828 12.2129 8.16302 12.2129Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.2606 13.2593C19.0363 13.2593 20.4745 11.821 20.4745 10.0453C20.4745 8.26967 19.0363 6.83142 17.2606 6.83142C15.4849 6.83142 14.0467 8.26967 14.0467 10.0453C14.0467 11.821 15.4849 13.2593 17.2606 13.2593Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.8334 19.6868H17.2612V17.6154C17.2612 16.5705 16.4671 15.7222 15.3304 15.0718C16.0414 14.9347 16.7195 14.866 17.2613 14.866C19.4066 14.866 23.6891 15.9427 23.6891 18.08V19.6869H10.8334V19.6868Z" } })]);
@@ -3089,12 +3255,21 @@ var l$1 = { addFile: r$1({ render: function() {
3089
3255
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), import: r$1({ render: function() {
3090
3256
  var e2 = this.$createElement;
3091
3257
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.8998 13.6346L6.68806 8.51539L9.94558 8.51539L9.94558 2.85382L13.8541 2.85382V8.51539L17.1116 8.51539L11.8998 13.6346ZM1.06519 15.8128L5.86457 12.5658L7.81884 12.8583L3.45051 15.8128H6.46811C6.89919 15.8128 7.53145 16.2516 7.81884 17.4217C8.04875 18.3578 8.98756 18.7284 9.42822 18.7966H11.8998L11.8998 18.7966H14.3713C14.812 18.7284 15.7508 18.3578 15.9807 17.4217C16.2681 16.2516 16.9004 15.8128 17.3314 15.8128H20.349L15.9807 12.8583L17.935 12.5658L22.7344 15.8128C23.108 16.0079 23.723 16.8776 23.1942 18.7966C22.5332 21.1954 21.2974 21.2539 20.8951 21.2539H11.8998L11.8998 21.2538H2.90447C2.50213 21.2538 1.26636 21.1953 0.605363 18.7966C0.0765659 16.8776 0.691582 16.0078 1.06519 15.8128Z" } });
3258
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexAscending: r$1({ render: function() {
3259
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3260
+ return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.9932 20.4443L17.9932 1.39685L19.9351 1.39685L19.9351 20.4443L17.9932 20.4443Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.3563 17.3742C21.3372 17.3539 21.306 17.3539 21.2868 17.3742L18.9951 19.8103L16.713 17.3847C16.6939 17.3643 16.6627 17.3643 16.6436 17.3847L16.1015 17.9608C16.0824 17.9811 16.0824 18.0144 16.1015 18.0347L18.9577 21.0707C18.9764 21.0906 19.0069 21.0909 19.0261 21.0716C19.032 21.0691 19.0375 21.0653 19.0422 21.0602L21.8984 18.0242C21.9175 18.0039 21.9175 17.9707 21.8984 17.9504L21.3563 17.3742Z" } }), this._v(" "), t2("path", { attrs: { d: "M2.8938 18.5909L5.23755 4.37219H7.17114L4.83716 18.5909H2.8938ZM6.40942 18.5909L8.75317 4.37219H10.6965L8.35278 18.5909H6.40942ZM12.2786 10.2218H2.11255V8.43469H12.2786V10.2218ZM11.5364 14.587H1.38013V12.7999H11.5364V14.587Z" } })]);
3261
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexDescending: r$1({ render: function() {
3262
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3263
+ return t2("g", [t2("g", { attrs: { "clip-path": "url(#clip0_3035_480)" } }, [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.0067 2.56714V21.6146H18.0648V2.56714H20.0067Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M16.6436 5.63724C16.6627 5.65754 16.6939 5.65754 16.713 5.63724L19.0048 3.20114L21.2868 5.62679C21.3059 5.64714 21.3372 5.64714 21.3563 5.62679L21.8983 5.05063C21.9175 5.03033 21.9175 4.99709 21.8983 4.97679L19.0422 1.94079C19.0234 1.92083 18.9929 1.92061 18.9738 1.93985C18.9679 1.9424 18.9624 1.94622 18.9577 1.95125L16.1015 4.98724C16.0824 5.00754 16.0824 5.04078 16.1015 5.06108L16.6436 5.63724Z" } }), this._v(" "), t2("path", { attrs: { d: "M2.8938 18.5909L5.23755 4.37219H7.17114L4.83716 18.5909H2.8938ZM6.40942 18.5909L8.75317 4.37219H10.6965L8.35278 18.5909H6.40942ZM12.2786 10.2218H2.11255V8.43469H12.2786V10.2218ZM11.5364 14.587H1.38013V12.7999H11.5364V14.587Z" } })])]);
3092
3264
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), information: r$1({ render: function() {
3093
3265
  var e2 = this.$createElement;
3094
3266
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 11.5C0 17.8424 5.15936 23 11.5 23C17.8406 23 23 17.8424 23 11.5C23 5.15936 17.8406 0 11.5 0C5.15936 0 0 5.15936 0 11.5ZM1.70953 11.5C1.70953 6.10131 6.10131 1.70953 11.5 1.70953C16.8987 1.70953 21.2905 6.10131 21.2905 11.5C21.2905 16.8987 16.8987 21.2905 11.5 21.2905C6.10131 21.2905 1.70953 16.8987 1.70953 11.5ZM10.8029 14.3193L10.5157 4.4775H12.4834L12.1962 14.3193H10.8029ZM10.2901 17.2508C10.2901 16.5123 10.8029 15.9789 11.5004 15.9789C12.2372 15.9789 12.7091 16.5123 12.7091 17.2508C12.7091 17.9688 12.2372 18.5209 11.5004 18.5209C10.7824 18.5209 10.2901 17.9688 10.2901 17.2508Z" } });
3095
3267
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), inProgressFile: r$1({ render: function() {
3096
3268
  var e2 = this.$createElement, t2 = this._self._c || e2;
3097
3269
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 18.6042V0.395833C0 0.178125 0.178125 0 0.395833 0H9.5V5.14583C9.5 5.36354 9.67813 5.54167 9.89583 5.54167H14.25V18.6042C14.25 18.8219 14.0719 19 13.8542 19H0.395833C0.178125 19 0 18.8219 0 18.6042ZM14.1508 4.55257C14.1904 4.61194 14.2101 4.67132 14.2299 4.75048H10.2914V0.237984L14.1508 4.55257Z" } }), this._v(" "), t2("circle", { attrs: { cx: "13", cy: "18", r: "6", fill: "#D8D8D8" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11 15V17H11.0033L11 17.0033L12.3333 18.3333L11 19.6667L11.0033 19.67H11V21.6667H15V19.67H14.9967L15 19.6667L13.6667 18.3333L15 17.0033L14.9967 17H15V15H11ZM14.3333 19.8333V21H11.6667V19.8333L13 18.5L14.3333 19.8333ZM11.6667 16.8333V15.6667H14.3333V16.8333L13 18.1667L11.6667 16.8333ZM13.0002 19.6667L12.0002 20.6667H14.0002L13.0002 19.6667ZM13.9999 16.8333L12.9999 17.8333L11.9999 16.8333L13.9999 16.8333Z", fill: "#2F374A" } })]);
3270
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), invitation: r$1({ render: function() {
3271
+ var e2 = this.$createElement;
3272
+ return (this._self._c || e2)("path", { attrs: { d: "M11.5 1.5C5.98 1.5 1.5 5.98 1.5 11.5C1.5 17.02 5.98 21.5 11.5 21.5C17.02 21.5 21.5 17.02 21.5 11.5C21.5 5.98 17.02 1.5 11.5 1.5ZM15.11 7.84C16.18 7.84 17.04 8.7 17.04 9.77C17.04 10.84 16.18 11.7 15.11 11.7C14.04 11.7 13.18 10.84 13.18 9.77C13.17 8.7 14.04 7.84 15.11 7.84ZM9.11 6.26C10.41 6.26 11.47 7.32 11.47 8.62C11.47 9.92 10.41 10.98 9.11 10.98C7.81 10.98 6.75 9.92 6.75 8.62C6.75 7.31 7.8 6.26 9.11 6.26ZM9.11 15.39V19.14C6.71 18.39 4.81 16.54 3.97 14.18C5.02 13.06 7.64 12.49 9.11 12.49C9.64 12.49 10.31 12.57 11.01 12.71C9.37 13.58 9.11 14.73 9.11 15.39ZM11.5 19.5C11.23 19.5 10.97 19.49 10.71 19.46V15.39C10.71 13.97 13.65 13.26 15.11 13.26C16.18 13.26 18.03 13.65 18.95 14.41C17.78 17.38 14.89 19.5 11.5 19.5Z" } });
3098
3273
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), isolate: r$1({ render: function() {
3099
3274
  var e2 = this.$createElement;
3100
3275
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.3904 17.581L4.92852 14.6238C4.819 14.6238 4.70947 14.5143 4.70947 14.4048V7.39524C4.70947 7.34048 4.73685 7.28571 4.76423 7.23095C4.79162 7.17619 4.819 7.12143 4.819 7.06667H5.14757L11.3904 9.58571L17.0857 7.17619L11.4999 4.65714L6.89995 6.84762C6.79042 6.95714 6.57138 6.84762 6.46185 6.73809C6.35233 6.51905 6.46185 6.40952 6.57138 6.3L11.0619 4H11.3904L17.8523 6.95714C17.9619 7.06667 18.0714 7.17619 18.0714 7.28571V14.2952C18.0714 14.4048 17.9619 14.6238 17.8523 14.6238L11.3904 17.581ZM11.2809 10.3524L5.36662 7.83333V14.1857L11.0619 16.8143V11.6667C11.0619 11.4476 11.1714 11.3381 11.3904 11.3381C11.6095 11.3381 11.719 11.4476 11.719 11.6667V16.8143L17.5238 14.1857V7.83333L11.4999 10.3524H11.2809ZM18.9476 14.4001V9.58105C21.4667 10.7858 23 12.5382 23 14.5096C23 18.1239 17.8524 20.9715 11.5 20.9715C5.14762 20.9715 0 18.1239 0 14.5096C0 12.5382 1.53333 10.7858 4.05238 9.58105V14.4001C4.05238 14.7287 4.27143 15.1668 4.6 15.2763L10.9524 18.2334H11.0619H11.281H11.5H11.6095L18.4 15.2763C18.7286 15.1668 18.9476 14.8382 18.9476 14.4001Z" } });
@@ -3107,6 +3282,9 @@ var l$1 = { addFile: r$1({ render: function() {
3107
3282
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), linkedDocument: r$1({ render: function() {
3108
3283
  var e2 = this.$createElement;
3109
3284
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3 0.479167V22.5208C3 22.7844 3.21562 23 3.47917 23H19.7708C20.0344 23 20.25 22.7844 20.25 22.5208V6.70833H14.9792C14.7156 6.70833 14.5 6.49271 14.5 6.22917V0H3.47917C3.21562 0 3 0.215625 3 0.479167ZM20.2257 5.75036C20.2017 5.65452 20.1778 5.58265 20.1299 5.51077L15.458 0.287855V5.75036H20.2257ZM15.1622 15.8675C16.4073 15.859 17.4235 14.8428 17.4321 13.5977C17.4406 12.3526 16.4382 11.3502 15.1931 11.3587L14.0318 11.3667C13.7931 11.3683 13.5983 11.5632 13.5966 11.8019C13.595 12.0406 13.7872 12.2327 14.0259 12.2311L15.1872 12.2231C15.9549 12.2179 16.5729 12.8359 16.5677 13.6036C16.5624 14.3713 15.9358 14.9979 15.1681 15.0031L12.8455 15.0191C12.0833 15.0243 11.4686 14.415 11.465 13.6549C11.4706 13.5382 11.4293 13.4203 11.3408 13.3319C11.1729 13.164 10.8988 13.1658 10.7286 13.336C10.6357 13.429 10.5929 13.5529 10.6006 13.6736C10.6077 14.9051 11.6042 15.8919 12.8396 15.8835L15.1622 15.8675ZM8.73734 11.4119C7.49227 11.4204 6.47603 12.4367 6.4675 13.6817C6.45897 14.9268 7.46138 15.9292 8.70646 15.9207L9.86777 15.9127C10.1065 15.9111 10.3013 15.7163 10.3029 15.4776C10.3046 15.2389 10.1124 15.0467 9.8737 15.0483L8.71238 15.0563C7.9447 15.0615 7.32664 14.4435 7.3319 13.6758C7.33715 12.9081 7.96374 12.2815 8.73142 12.2763L11.0541 12.2604C11.8163 12.2551 12.431 12.8644 12.4346 13.6245C12.429 13.7412 12.4703 13.8591 12.5588 13.9476C12.7267 14.1155 13.0007 14.1136 13.1709 13.9434C13.2639 13.8504 13.3066 13.7265 13.299 13.6059C13.2918 12.3743 12.2954 11.3875 11.06 11.396L8.73734 11.4119Z" } });
3285
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), list: r$1({ render: function() {
3286
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3287
+ return t2("g", [t2("path", { attrs: { d: "M19.1537 13.26C19.1537 12.9839 18.9298 12.76 18.6537 12.76H8.56629C8.29015 12.76 8.06629 12.9839 8.06629 13.26V14.3701C8.06629 14.6462 8.29015 14.8701 8.56629 14.8701H18.6537C18.9298 14.8701 19.1537 14.6462 19.1537 14.3701V13.26Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.1537 17.8898C19.1537 17.6137 18.9298 17.3898 18.6537 17.3898H8.56629C8.29015 17.3898 8.06629 17.6137 8.06629 17.8898V18.9999C8.06629 19.276 8.29015 19.4999 8.56629 19.4999H18.6537C18.9298 19.4999 19.1537 19.276 19.1537 18.9999V17.8898Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.1537 8.62994C19.1537 8.3538 18.9298 8.12994 18.6537 8.12994H8.56629C8.29015 8.12994 8.06629 8.3538 8.06629 8.62994V9.74C8.06629 10.0161 8.29015 10.24 8.56629 10.24H18.6537C18.9298 10.24 19.1537 10.0161 19.1537 9.74V8.62994Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.1537 4C19.1537 3.72386 18.9298 3.5 18.6537 3.5H8.56629C8.29015 3.5 8.06629 3.72386 8.06629 4V5.11006C8.06629 5.3862 8.29015 5.61006 8.56629 5.61006H18.6537C18.9298 5.61006 19.1537 5.3862 19.1537 5.11006V4Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 13.26C3.84619 12.9839 4.07005 12.76 4.34619 12.76H5.45625C5.73239 12.76 5.95625 12.9839 5.95625 13.26V14.3701C5.95625 14.6462 5.73239 14.8701 5.45625 14.8701H4.34619C4.07005 14.8701 3.84619 14.6462 3.84619 14.3701V13.26Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 17.8898C3.84619 17.6137 4.07005 17.3898 4.34619 17.3898H5.45625C5.73239 17.3898 5.95625 17.6137 5.95625 17.8898V18.9999C5.95625 19.276 5.73239 19.4999 5.45625 19.4999H4.34619C4.07005 19.4999 3.84619 19.276 3.84619 18.9999V17.8898Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 8.62994C3.84619 8.3538 4.07005 8.12994 4.34619 8.12994H5.45625C5.73239 8.12994 5.95625 8.3538 5.95625 8.62994V9.74C5.95625 10.0161 5.73239 10.24 5.45625 10.24H4.34619C4.07005 10.24 3.84619 10.0161 3.84619 9.74V8.62994Z" } }), this._v(" "), t2("path", { attrs: { d: "M3.84619 4C3.84619 3.72386 4.07005 3.5 4.34619 3.5H5.45625C5.73239 3.5 5.95625 3.72386 5.95625 4V5.11006C5.95625 5.3862 5.73239 5.61006 5.45625 5.61006H4.34619C4.07005 5.61006 3.84619 5.3862 3.84619 5.11006V4Z" } })]);
3110
3288
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), listManage: r$1({ render: function() {
3111
3289
  var e2 = this.$createElement;
3112
3290
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.82965 16.6538L5.82965 0.553833H8.12965L8.12965 16.6538H11.9593L6.97965 23.5538L2 16.6538H5.82965ZM16.1796 0.553833L21.1593 7.45383L17.3296 7.45383V23.5538H15.0296V7.45383L11.2 7.45383L16.1796 0.553833Z" } });
@@ -3137,6 +3315,9 @@ var l$1 = { addFile: r$1({ render: function() {
3137
3315
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), path: r$1({ render: function() {
3138
3316
  var e2 = this.$createElement;
3139
3317
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 2.87267C23 4.23366 21.8967 5.33696 20.5357 5.33696C19.8712 5.33696 19.2682 5.07396 18.825 4.64637L9.83851 9.13959C9.85081 9.23937 9.85714 9.341 9.85714 9.4441C9.85714 9.54715 9.85082 9.64872 9.83853 9.74845L18.8251 14.2417C19.2683 13.8142 19.8713 13.5512 20.5357 13.5512C21.8967 13.5512 23 14.6545 23 16.0155C23 17.3765 21.8967 18.4798 20.5357 18.4798C19.6964 18.4798 18.9551 18.0602 18.5101 17.4193L4.92202 21.1252C4.82932 22.4016 3.76438 23.4084 2.46429 23.4084C1.1033 23.4084 0 22.3051 0 20.9441C0 19.5831 1.1033 18.4798 2.46429 18.4798C3.30355 18.4798 4.04483 18.8994 4.48982 19.5402L18.078 15.8343C18.081 15.7929 18.085 15.7518 18.0901 15.711L9.10365 11.2178C8.66043 11.6454 8.05736 11.9084 7.39286 11.9084C6.03187 11.9084 4.92857 10.8051 4.92857 9.4441C4.92857 8.08311 6.03187 6.97982 7.39286 6.97982C8.0573 6.97982 8.66032 7.24278 9.10353 7.67032L18.09 3.17706C18.0778 3.07732 18.0714 2.97573 18.0714 2.87267C18.0714 1.51168 19.1747 0.408386 20.5357 0.408386C21.8967 0.408386 23 1.51168 23 2.87267Z" } });
3318
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), pieGraph: r$1({ render: function() {
3319
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3320
+ return t2("g", [t2("circle", { attrs: { cx: "12.2266", cy: "12.2281", r: "9.65632", stroke: "#D8D8D8", "stroke-width": "5", fill: "none" } }), this._v(" "), t2("path", { attrs: { d: "M21.8824 12.2281C21.8824 6.89506 17.5592 2.57178 12.2261 2.57178C11.6725 2.57178 11.1297 2.61837 10.6016 2.70785", stroke: "var(--color-secondary)", "stroke-width": "5", fill: "none" } }), this._v(" "), t2("path", { attrs: { d: "M12.2266 21.8843C6.89359 21.8843 2.57031 17.5611 2.57031 12.228C2.57031 7.44861 6.04256 3.4802 10.6021 2.70776", stroke: "var(--color-primary)", "stroke-width": "5", fill: "none" } })]);
3140
3321
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), plus: r$1({ render: function() {
3141
3322
  var e2 = this.$createElement;
3142
3323
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.2066 0.46463H9.92089V10.3218H0.0637207V13.6075H9.92089V23.4646H13.2066V13.6075H23.0637V10.3218H13.2066V0.46463Z" } });
@@ -3227,6 +3408,9 @@ var l$1 = { addFile: r$1({ render: function() {
3227
3408
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), system: r$1({ render: function() {
3228
3409
  var e2 = this.$createElement;
3229
3410
  return (this._self._c || e2)("path", { attrs: { d: "M18.0935 15.9516C16.9935 15.9516 15.9935 16.4516 15.2935 17.2516L8.99346 13.5516C9.09346 13.1516 9.19346 12.7516 9.19346 12.3516C9.19346 11.9516 9.09346 11.4516 8.99346 11.1516L15.2935 7.35159C15.9935 8.15159 16.9935 8.65159 18.0935 8.65159C20.1935 8.65159 21.7935 6.95159 21.7935 4.95159C21.7935 2.95159 20.0935 1.25159 18.0935 1.25159C15.9935 1.25159 14.3935 2.95159 14.3935 4.95159C14.3935 5.35159 14.4935 5.85159 14.5935 6.15159L8.29346 9.85159C7.59346 9.05159 6.59346 8.55159 5.49346 8.55159C3.39346 8.55159 1.79346 10.2516 1.79346 12.2516C1.79346 14.3516 3.49346 15.9516 5.49346 15.9516C6.59346 15.9516 7.59346 15.4516 8.29346 14.6516L14.5935 18.3516C14.4935 18.7516 14.3935 19.1516 14.3935 19.5516C14.3935 21.6516 16.0935 23.2516 18.0935 23.2516C20.1935 23.2516 21.7935 21.5516 21.7935 19.5516C21.7935 17.5516 20.1935 15.9516 18.0935 15.9516Z" } });
3411
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tag: r$1({ render: function() {
3412
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3413
+ return t2("svg", { attrs: { width: "23", height: "23", viewBox: "0 0 23 23", xmlns: "http://www.w3.org/2000/svg" } }, [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.3962 22.0997C9.45679 23.0219 7.94129 23.0015 7.01123 22.0541L0.836436 15.7643C-0.0936297 14.8169 -0.0860675 13.3012 0.853323 12.379L12.5926 0.854517C13.0398 0.415541 13.6433 0.171805 14.2725 0.176062L20.091 0.215414C21.3707 0.224069 22.4258 1.23792 22.486 2.51688L22.7832 8.82547C22.8151 9.50319 22.5582 10.1602 22.0763 10.6333L10.3962 22.0997ZM19.2431 6.6774C18.3037 7.59961 16.7882 7.57919 15.8581 6.63179C14.9281 5.68439 14.9356 4.16877 15.875 3.24657C16.8144 2.32436 18.3299 2.34479 19.26 3.29219C20.19 4.23959 20.1825 5.7552 19.2431 6.6774Z" } })]);
3230
3414
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tree: r$1({ render: function() {
3231
3415
  var e2 = this.$createElement;
3232
3416
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6656 16.4201H20.5497V12.3624C20.5497 11.9155 20.2107 11.5506 19.7954 11.5506H12.2543V7.49294H13.1828C13.9164 7.49294 14.5163 6.84638 14.5163 6.05693V2.43601C14.5163 1.64656 13.9164 1 13.1828 1H9.81719C9.08361 1 8.4828 1.64656 8.4828 2.43601V6.05693C8.4828 6.84638 9.08361 7.49294 9.81719 7.49294H10.7457V11.5506H3.20459C2.78931 11.5506 2.45029 11.9155 2.45029 12.3624V16.4201H1.33438C0.600802 16.4201 0 17.0667 0 17.8561V21.477C0 22.2665 0.600802 22.913 1.33438 22.913H4.69907C5.43265 22.913 6.03345 22.2665 6.03345 21.477V17.8561C6.03345 17.0667 5.43265 16.4201 4.69907 16.4201H3.95795V13.1741H10.7457V16.4201H9.81719C9.08361 16.4201 8.4828 17.0667 8.4828 17.8561V21.477C8.4828 22.2665 9.08361 22.913 9.81719 22.913H13.1828C13.9164 22.913 14.5163 22.2665 14.5163 21.477V17.8561C14.5163 17.0667 13.9164 16.4201 13.1828 16.4201H12.2543V13.1741H19.0411V16.4201H18.3009C17.5664 16.4201 16.9665 17.0667 16.9665 17.8561V21.477C16.9665 22.2665 17.5664 22.913 18.3009 22.913H21.6656C22.3992 22.913 23 22.2665 23 21.477V17.8561C23 17.0667 22.3992 16.4201 21.6656 16.4201Z" } });
@@ -3251,6 +3435,9 @@ var l$1 = { addFile: r$1({ render: function() {
3251
3435
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validatedFile: r$1({ render: function() {
3252
3436
  var e2 = this.$createElement, t2 = this._self._c || e2;
3253
3437
  return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 18.6042V0.395833C0 0.178125 0.178125 0 0.395833 0H9.5V5.14583C9.5 5.36354 9.67813 5.54167 9.89583 5.54167H14.25V18.6042C14.25 18.8219 14.0719 19 13.8542 19H0.395833C0.178125 19 0 18.8219 0 18.6042ZM14.1508 4.55257C14.1904 4.61194 14.2101 4.67132 14.2299 4.75048H10.2914V0.237984L14.1508 4.55257Z" } }), this._v(" "), t2("circle", { attrs: { cx: "13", cy: "18", r: "6", fill: "#00AF50" } }), this._v(" "), t2("path", { attrs: { d: "M15.9565 15L17 16.0588L12.1374 21L9 17.8235L10.0435 16.7647L12.1374 18.8824L15.9565 15Z", fill: "white" } })]);
3438
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), versioning: r$1({ render: function() {
3439
+ var e2 = this.$createElement, t2 = this._self._c || e2;
3440
+ return t2("svg", { attrs: { width: "23", height: "23", viewBox: "0 0 23 23", xmlns: "http://www.w3.org/2000/svg" } }, [t2("rect", { attrs: { x: "10.7764", y: "3", width: "12.2237", height: "18" } }), this._v(" "), t2("rect", { attrs: { x: "5.38818", y: "4.89471", width: "3.86011", height: "14.2105" } }), this._v(" "), t2("rect", { attrs: { y: "6.78949", width: "3.86011", height: "10.4211" } })]);
3254
3441
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), video: r$1({ render: function() {
3255
3442
  var e2 = this.$createElement;
3256
3443
  return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.40701 12.9833C4.32585 12.9833 3.45013 12.1298 3.45013 11.076C3.45013 10.0222 4.32585 9.16866 5.40701 9.16866C6.48817 9.16866 7.36388 10.0222 7.36388 11.076C7.36388 12.1298 6.48817 12.9833 5.40701 12.9833ZM21.9841 7.21059L18.5565 10.6275V7.87929C18.5565 7.10276 17.9049 6.46759 17.1082 6.46759H1.46619C0.669494 6.46759 0.0178223 7.10276 0.0178223 7.87929V17.8337C0.0178223 18.6093 0.669494 19.2454 1.46619 19.2454H17.1082C17.9049 19.2454 18.5565 18.6093 18.5565 17.8337V14.7294L21.9841 18.1463C22.3615 18.5232 23.0178 18.2623 23.0178 17.7358V7.62196C23.0178 7.09461 22.3615 6.83365 21.9841 7.21059Z" } });
@@ -3278,7 +3465,7 @@ var l$1 = { addFile: r$1({ render: function() {
3278
3465
  }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), zone: r$1({ render: function() {
3279
3466
  var e2 = this.$createElement, t2 = this._self._c || e2;
3280
3467
  return t2("g", [t2("path", { attrs: { d: "M8.96582 11.3144L11.6658 10.1144V3.91443L1.96582 8.11443L8.96582 11.3144Z" } }), this._v(" "), t2("path", { attrs: { d: "M1.0658 15.2145L11.6658 19.9145V13.6145L1.0658 8.81445V15.2145Z" } }), this._v(" "), t2("path", { attrs: { d: "M22.9658 8.11443L13.2658 3.91443V10.1144L15.9658 11.3144L22.9658 8.11443Z" } }), this._v(" "), t2("path", { attrs: { d: "M13.2658 13.6145V19.9145L23.8658 15.2145V8.81445L13.2658 13.6145Z" } })]);
3281
- }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, s$1 = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
3468
+ }, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, l$1 = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
3282
3469
  const v = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
3283
3470
  const c$1 = r$1({ render: function() {
3284
3471
  var e2 = this, t2 = e2.$createElement, r2 = e2._self._c || t2;
@@ -3288,27 +3475,29 @@ const c$1 = r$1({ render: function() {
3288
3475
  e2.index++;
3289
3476
  } } }, [r2("BIMDataIcon", { attrs: { name: "chevron", size: "s" } })], 1)], 1);
3290
3477
  }, staticRenderFns: [] }, function(e2) {
3291
- e2 && e2("data-v-5283e647_0", { source: ".bimdata-carousel[data-v-5283e647]{--button-size:44px;position:relative}.bimdata-carousel__container[data-v-5283e647]{overflow-x:hidden;margin:-28px 0;padding:28px 0}.bimdata-carousel__container__slider[data-v-5283e647]{position:relative;transition:transform .5s ease-out}.bimdata-carousel__btn-next[data-v-5283e647],.bimdata-carousel__btn-prev[data-v-5283e647]{position:absolute;z-index:2;top:calc(50% - var(--button-size)/ 2);width:var(--button-size);height:var(--button-size);box-shadow:var(--box-shadow)}.bimdata-carousel__btn-prev[data-v-5283e647]{left:calc(0px - var(--button-size)/ 2)}.bimdata-carousel__btn-next[data-v-5283e647]{right:calc(0px - var(--button-size)/ 2)}", map: void 0, media: void 0 });
3478
+ e2 && e2("data-v-55e9fb46_0", { source: ".bimdata-carousel[data-v-55e9fb46]{--button-size:44px;position:relative}.bimdata-carousel__container[data-v-55e9fb46]{overflow-x:hidden;margin:-28px 0;padding:28px 0}.bimdata-carousel__container__slider[data-v-55e9fb46]{position:relative;transition:transform .5s ease-out}.bimdata-carousel__btn-next[data-v-55e9fb46],.bimdata-carousel__btn-prev[data-v-55e9fb46]{position:absolute;z-index:2;top:calc(50% - var(--button-size)/ 2);width:var(--button-size);height:var(--button-size);box-shadow:var(--box-shadow)}.bimdata-carousel__btn-prev[data-v-55e9fb46]{left:calc(0px - var(--button-size)/ 2)}.bimdata-carousel__btn-next[data-v-55e9fb46]{right:calc(0px - var(--button-size)/ 2)}", map: void 0, media: void 0 });
3292
3479
  }, { components: { BIMDataButton: n$1, BIMDataIcon: r$1({ render: function() {
3293
3480
  var e2 = this.$createElement, t2 = this._self._c || e2;
3294
- return t2("svg", { class: this.classes, style: this.style, attrs: { xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 24 24", width: "100%", fill: this.fillColor, color: this.color } }, [t2("bimdata-icon-" + this.name, { tag: "component" })], 1);
3481
+ return t2("svg", { class: this.classes, style: this.style, attrs: { xmlns: "http://www.w3.org/2000/svg", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 23 23", width: "100%", fill: this.fillColor, color: this.color } }, [t2("bimdata-icon-" + this.name, { tag: "component" })], 1);
3295
3482
  }, staticRenderFns: [] }, function(e2) {
3296
- e2 && (e2("data-v-364a838f_0", { source: 'html[data-v-364a838f]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}', map: void 0, media: void 0 }), e2("data-v-364a838f_1", { source: ".icon-fill--black{fill:var(--color-black)}.icon-fill--default{fill:currentColor}.icon-fill--disabled{fill:var(--color-silver-dark)}.icon-fill--high{fill:var(--color-high)}.icon-fill--primary{fill:var(--color-primary)}.icon-fill--secondary{fill:var(--color-secondary)}.icon-fill--success{fill:var(--color-success)}.icon-fill--silver{fill:var(--color-silver)}.icon-fill--granite-light{fill:var(--color-granite-light)}.icon-fill--granite{fill:var(--color-granite)}.icon-fill--silver-light{fill:var(--color-silver-light)}.icon-fill--warning{fill:var(--color-warning)}.icon-fill--white{fill:var(--color-white)}.icon-stroke{fill:transparent}.icon-stroke--black{stroke:var(--color-black)}.icon-stroke--default{stroke:currentColor}.icon-stroke--disabled{stroke:var(--color-silver-dark)}.icon-stroke--high{stroke:var(--color-high)}.icon-stroke--neutral{stroke:var(--color-neutral)}.icon-stroke--primary{stroke:var(--color-primary)}.icon-stroke--secondary{stroke:var(--color-secondary)}.icon-stroke--success{stroke:var(--color-success)}.icon-stroke--silver{stroke:var(--color-silver)}.icon-stroke--granite-light{stroke:var(--color-granite-light)}.icon-stroke--granite{stroke:var(--color-granite)}.icon-stroke--silver-light{stroke:var(--color-silver-light)}.icon-stroke--warning{stroke:var(--color-warning)}.icon-stroke--white{stroke:var(--color-white)}", map: void 0, media: void 0 }));
3297
- }, { name: "BIMDataIcon", components: __spreadValues({}, function(e2 = {}) {
3483
+ e2 && (e2("data-v-198621a2_0", { source: 'html[data-v-198621a2]{--color-primary-lighter:rgba(248, 249, 250, 1);--color-primary-light:rgba(67, 78, 105, 1);--color-primary:rgba(47, 55, 74, 1);--color-primary-dark:rgba(27, 32, 43, 1);--color-secondary-lighter:rgba(255, 252, 242, 1);--color-secondary-light:rgba(250, 212, 94, 1);--color-secondary:rgba(249, 199, 44, 1);--color-secondary-dark:rgba(235, 180, 7, 1);--color-white:rgba(255, 255, 255, 1);--color-silver-light:rgba(247, 247, 247, 1);--color-silver:rgba(216, 216, 216, 1);--color-silver-dark:rgba(189, 189, 189, 1);--color-granite-light:rgba(122, 122, 122, 1);--color-granite:rgba(96, 96, 96, 1);--color-black:rgba(0, 0, 0, 1);--color-text:rgba(47, 55, 74, 1);--color-black-100:rgba(0, 0, 0, 0.1);--color-success-lighter:rgba(226, 255, 239, 1);--color-success-light:rgba(0, 200, 92, 1);--color-success:rgba(0, 175, 80, 1);--color-success-dark:rgba(0, 149, 68, 1);--color-warning-lighter:rgba(255, 233, 204, 1);--color-warning-light:rgba(255, 167, 51, 1);--color-warning:rgba(255, 145, 0, 1);--color-warning-dark:rgba(204, 116, 0, 1);--color-high-lighter:rgba(255, 237, 234, 1);--color-high-light:rgba(255, 104, 81, 1);--color-high:rgba(255, 61, 30, 1);--color-high-dark:rgba(234, 31, 0, 1);--font-size:14px;--box-shadow:0px 2px 10px rgba(0, 0, 0, 0.1);--border-radius-tiny:3px;--spacing-unit:12px;--size-btn-options:45px;--primary-font:"roboto",sans-serif}', map: void 0, media: void 0 }), e2("data-v-198621a2_1", { source: ".icon-fill--black{fill:var(--color-black)}.icon-fill--default{fill:currentColor}.icon-fill--disabled{fill:var(--color-silver-dark)}.icon-fill--high{fill:var(--color-high)}.icon-fill--primary{fill:var(--color-primary)}.icon-fill--secondary{fill:var(--color-secondary)}.icon-fill--success{fill:var(--color-success)}.icon-fill--silver{fill:var(--color-silver)}.icon-fill--granite-light{fill:var(--color-granite-light)}.icon-fill--granite{fill:var(--color-granite)}.icon-fill--silver-light{fill:var(--color-silver-light)}.icon-fill--warning{fill:var(--color-warning)}.icon-fill--white{fill:var(--color-white)}.icon-stroke{fill:transparent}.icon-stroke--black{stroke:var(--color-black)}.icon-stroke--default{stroke:currentColor}.icon-stroke--disabled{stroke:var(--color-silver-dark)}.icon-stroke--high{stroke:var(--color-high)}.icon-stroke--neutral{stroke:var(--color-neutral)}.icon-stroke--primary{stroke:var(--color-primary)}.icon-stroke--secondary{stroke:var(--color-secondary)}.icon-stroke--success{stroke:var(--color-success)}.icon-stroke--silver{stroke:var(--color-silver)}.icon-stroke--granite-light{stroke:var(--color-granite-light)}.icon-stroke--granite{stroke:var(--color-granite)}.icon-stroke--silver-light{stroke:var(--color-silver-light)}.icon-stroke--warning{stroke:var(--color-warning)}.icon-stroke--white{stroke:var(--color-white)}", map: void 0, media: void 0 }));
3484
+ }, { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
3298
3485
  return Object.entries(e2).reduce((e3, [t2, r2]) => __spreadProps(__spreadValues({}, e3), { ["bimdata-icon-" + t2]: r2 }), {});
3299
- }(l$1)), props: { name: { type: String, required: true, validator: (e2) => Object.keys(l$1).includes(e2) }, color: { type: String, default: "default", validator: (e2) => s$1.includes(e2) }, fillColor: { type: String, default: "currentColor" }, fill: { type: Boolean, default: false }, stroke: { type: Boolean, default: false }, size: { type: String, default: "s", validator: (e2) => Object.keys(v).includes(e2) }, customSize: { type: [Number, String], default: null }, rotate: { type: Number, default: 0 }, margin: { type: String, default: "0px" } }, computed: { classes() {
3486
+ }(s$1)), props: { name: { type: String, required: true, validator: (e2) => Object.keys(s$1).includes(e2) }, color: { type: String, default: "default", validator: (e2) => l$1.includes(e2) }, fillColor: { type: String, default: "currentColor" }, fill: { type: Boolean, default: false }, stroke: { type: Boolean, default: false }, size: { type: String, default: "s", validator: (e2) => Object.keys(v).includes(e2) }, customSize: { type: [Number, String], default: null }, rotate: { type: Number, default: 0 }, margin: { type: String, default: "0px" } }, computed: { classes() {
3300
3487
  return { "icon-fill": this.fill, "icon-stroke": this.stroke, ["icon-fill--" + this.color]: this.fill && this.color, ["icon-stroke--" + this.color]: this.stroke && this.color };
3301
3488
  }, style() {
3302
3489
  const e2 = this.getPixelSize(this.size);
3303
3490
  return { width: e2 + "px", minWidth: e2 + "px", height: e2 + "px", minHeight: e2 + "px", margin: "" + this.margin, transform: `rotate(${this.rotate}deg)` };
3304
3491
  } }, methods: { getPixelSize() {
3305
3492
  return this.customSize ? this.customSize : v[this.size];
3306
- } } }, "data-v-364a838f", false, void 0, false, o$1, void 0, void 0) }, props: { sliderPadding: { type: Number, default: 12 }, minGap: { type: Number, default: 24 } }, data: () => ({ index: 0, maxIndex: 0, translations: [] }), mounted() {
3307
- this.distributeItems(), this.resizeObserver = new ResizeObserver(() => this.distributeItems()), this.resizeObserver.observe(this.$refs.slider);
3493
+ } } }, "data-v-198621a2", false, void 0, false, o$1, void 0, void 0) }, props: { sliderPadding: { type: Number, default: 12 }, minGap: { type: Number, default: 24 } }, data: () => ({ index: 0, maxIndex: 0, translations: [] }), watch: { minGap() {
3494
+ this.distributeItems();
3495
+ } }, mounted() {
3496
+ this.distributeItems(), this.resizeObserver = new ResizeObserver(() => this.distributeItems()), this.resizeObserver.observe(this.$refs.slider), this.mutationObserver = new MutationObserver(() => this.distributeItems()), this.mutationObserver.observe(this.$refs.slider, { childList: true });
3308
3497
  }, unmounted() {
3309
- this.resizeObserver.disconnect();
3498
+ this.resizeObserver.disconnect(), this.mutationObserver.disconnect();
3310
3499
  }, destroyed() {
3311
- this.resizeObserver.disconnect();
3500
+ this.resizeObserver.disconnect(), this.mutationObserver.disconnect();
3312
3501
  }, methods: { distributeItems() {
3313
3502
  const e2 = this.$refs.slider.getBoundingClientRect().width - 2 * this.sliderPadding, t2 = Array.from(this.$refs.slider.children);
3314
3503
  if (t2.length > 0) {
@@ -3316,24 +3505,24 @@ const c$1 = r$1({ render: function() {
3316
3505
  this.$refs.slider.style.height = i2 + 2 * this.sliderPadding + "px";
3317
3506
  let o2, d2 = Math.max(Math.floor(e2 / (r2 + this.minGap)), 1), a2 = this.minGap;
3318
3507
  d2 > 1 && (a2 = (e2 - d2 * r2) / (d2 - 1));
3319
- const n2 = r2 + a2, l2 = [];
3508
+ const n2 = r2 + a2, s2 = [];
3320
3509
  for (let e3 = 0; e3 < t2.length; e3++)
3321
- o2 = e3 * n2, l2.push(o2), Object.assign(t2[e3].style, { position: "absolute", top: this.sliderPadding + "px", left: this.sliderPadding + o2 + "px" });
3322
- this.maxIndex = t2.length - d2, this.translations = l2;
3510
+ o2 = e3 * n2, s2.push(o2), Object.assign(t2[e3].style, { position: "absolute", top: this.sliderPadding + "px", left: this.sliderPadding + o2 + "px" });
3511
+ this.maxIndex = t2.length - d2, this.translations = s2;
3323
3512
  }
3324
- } } }, "data-v-5283e647", false, void 0, false, o$1, void 0, void 0);
3513
+ } } }, "data-v-55e9fb46", false, void 0, false, o$1, void 0, void 0);
3325
3514
  var render$7 = function() {
3326
3515
  var _vm = this;
3327
3516
  var _h = _vm.$createElement;
3328
3517
  var _c = _vm._self._c || _h;
3329
- return _c("div", { staticClass: "user-avatar", class: "user-avatar--" + (_vm.user.profilePicture ? "silver-light" : _vm.color), style: {
3518
+ return _c("div", { staticClass: "user-avatar", class: "user-avatar--" + (_vm.user.profile_picture ? "silver-light" : _vm.color), style: {
3330
3519
  width: _vm.size + "px",
3331
3520
  height: _vm.size + "px",
3332
3521
  fontSize: (_vm.initialsSize ? _vm.initialsSize : +_vm.size * 0.382) + "px"
3333
- } }, [_vm.user.profilePicture ? [_c("img", { attrs: { "src": _vm.user.profilePicture } })] : _vm.initials ? [_vm._v(" " + _vm._s(_vm.initials) + " ")] : [_c("BIMDataIcon", { attrs: { "name": "user", "size": "s" } })]], 2);
3522
+ } }, [_vm.user.profile_picture ? [_c("img", { attrs: { "src": _vm.user.profile_picture } })] : _vm.initials ? [_vm._v(" " + _vm._s(_vm.initials) + " ")] : [_c("BIMDataIcon", { attrs: { "name": "user", "size": "s" } })]], 2);
3334
3523
  };
3335
3524
  var staticRenderFns$7 = [];
3336
- var UserAvatar_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FuserAvatar_2FUserAvatar_vue_src_scoped_true_lang = "";
3525
+ var UserAvatar_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FuserAvatar_2FUserAvatar_vue_src_scoped_true_lang = "";
3337
3526
  const __vue2_script$7 = {
3338
3527
  props: {
3339
3528
  user: {
@@ -3362,7 +3551,7 @@ const __vue2_script$7 = {
3362
3551
  }
3363
3552
  };
3364
3553
  const __cssModules$7 = {};
3365
- var __component__$7 = /* @__PURE__ */ normalizeComponent(__vue2_script$7, render$7, staticRenderFns$7, false, __vue2_injectStyles$7, "555abc52", null, null);
3554
+ var __component__$7 = /* @__PURE__ */ normalizeComponent(__vue2_script$7, render$7, staticRenderFns$7, false, __vue2_injectStyles$7, "9c71e7a4", null, null);
3366
3555
  function __vue2_injectStyles$7(context) {
3367
3556
  for (let o2 in __cssModules$7) {
3368
3557
  this[o2] = __cssModules$7[o2];
@@ -3384,7 +3573,7 @@ var render$6 = function() {
3384
3573
  }, expression: "text" } })], 1), _vm.loading ? [_c("BIMDataLoading")] : _vm._e()], 2);
3385
3574
  };
3386
3575
  var staticRenderFns$6 = [];
3387
- var TopicComment_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FbcfTopicComments_2FtopicComment_2FTopicComment_vue_src_scoped_true_lang = "";
3576
+ var TopicComment_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FbcfTopicComments_2FtopicComment_2FTopicComment_vue_src_scoped_true_lang = "";
3388
3577
  const __vue2_script$6 = {
3389
3578
  components: {
3390
3579
  BIMDataButton: c$5,
@@ -3467,7 +3656,7 @@ const __vue2_script$6 = {
3467
3656
  }
3468
3657
  };
3469
3658
  const __cssModules$6 = {};
3470
- var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "4016a6b4", null, null);
3659
+ var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "7e291e4c", null, null);
3471
3660
  function __vue2_injectStyles$6(context) {
3472
3661
  for (let o2 in __cssModules$6) {
3473
3662
  this[o2] = __cssModules$6[o2];
@@ -3495,7 +3684,7 @@ var render$5 = function() {
3495
3684
  }), 1) : _vm._e()]), _vm.loading ? [_c("BIMDataLoading")] : _vm._e()], 2);
3496
3685
  };
3497
3686
  var staticRenderFns$5 = [];
3498
- var BcfTopicComments_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FbcfTopicComments_2FBcfTopicComments_vue_src_scoped_true_lang = "";
3687
+ var BcfTopicComments_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FbcfTopicComments_2FBcfTopicComments_vue_src_scoped_true_lang = "";
3499
3688
  const __vue2_script$5 = {
3500
3689
  components: {
3501
3690
  BIMDataButton: c$5,
@@ -3569,17 +3758,17 @@ var render$4 = function() {
3569
3758
  return _vm.$emit("close");
3570
3759
  } } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e()], 2)], 2), _c("div", { staticClass: "bcf-topic-overview__content" }, [_c("div", { staticClass: "bcf-topic-overview__content__head" }, [_c("div", { staticClass: "bcf-topic-overview__content__head__index", style: {
3571
3760
  backgroundColor: "#" + _vm.priorityColor,
3572
- color: _vm.adjustColor("#" + _vm.priorityColor, "#ffffff", "#2f374a")
3573
- } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creationDate, "short")) + " ")])]), _c("div", { staticClass: "bcf-topic-overview__content__image", class: {
3761
+ color: _vm.adjustTextColor("#" + _vm.priorityColor, "#ffffff", "#2f374a")
3762
+ } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__head__date" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.bcfTopic.creation_date, "short")) + " ")])]), _c("div", { staticClass: "bcf-topic-overview__content__image", class: {
3574
3763
  "flex items-center justify-center": _vm.viewpointsWithSnapshot.length === 0
3575
- } }, [_vm.bcfTopic.topicStatus ? _c("div", { staticClass: "status-badge", style: {
3764
+ } }, [_vm.bcfTopic.topic_status ? _c("div", { staticClass: "status-badge", style: {
3576
3765
  backgroundColor: "#" + _vm.statusColor,
3577
- color: _vm.adjustColor("#" + _vm.statusColor, "#ffffff", "#2f374a")
3578
- } }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", [_vm._v(_vm._s(_vm.bcfTopic.topicStatus))])], 1) : _vm._e(), _vm.viewpointsWithSnapshot.length > 0 ? [_c("BIMDataCarousel", { attrs: { "sliderPadding": 0 } }, _vm._l(_vm.viewpointsWithSnapshot, function(viewpoint) {
3579
- return _c("div", { key: viewpoint.guid, staticClass: "snapshot-preview" }, [viewpoint.snapshot.snapshotData ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshotData } }) : _vm._e()]);
3580
- }), 0)] : [_c("BcfTopicDefaultImage", { staticClass: "default-image" })]], 2), _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
3766
+ color: _vm.adjustTextColor("#" + _vm.statusColor, "#ffffff", "#2f374a")
3767
+ } }, [_c("BIMDataIcon", { attrs: { "name": "information", "fill": "", "color": "default" } }), _c("span", [_vm._v(_vm._s(_vm.bcfTopic.topic_status))])], 1) : _vm._e(), _vm.viewpointsWithSnapshot.length > 0 ? [_c("BIMDataCarousel", { attrs: { "sliderPadding": 0 } }, _vm._l(_vm.viewpointsWithSnapshot, function(viewpoint) {
3768
+ return _c("div", { key: viewpoint.guid, staticClass: "snapshot-preview" }, [viewpoint.snapshot.snapshot_data ? _c("img", { attrs: { "src": viewpoint.snapshot.snapshot_data } }) : _vm._e()]);
3769
+ }), 0)] : [_c("BcfTopicDefaultImage", { staticClass: "default-image" })]], 2), !_vm.viewerMode ? _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
3581
3770
  return _vm.$emit("view-bcf-topic", _vm.bcfTopic);
3582
- } } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _vm.topicElements.length > 0 ? _c("span", [_vm._v(" " + _vm._s(_vm.topicElements.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicElements.length ? _vm.$t("BcfComponents.BcfTopicOverview.elements") : _vm.$t("BcfComponents.BcfTopicOverview.noElements")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.type")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topicType ? _vm.bcfTopic.topicType : _vm.$t("BcfComponents.BcfTopicOverview.noTypeSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.description")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.description ? _vm.bcfTopic.description : _vm.$t("BcfComponents.BcfTopicOverview.noDescriptionProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.assignedTo")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.assignedTo ? _vm.bcfTopic.assignedTo : _vm.$t("BcfComponents.BcfTopicOverview.notAssigned")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.dueDate")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.dueDate ? _vm.$d(_vm.bcfTopic.dueDate, "short") : _vm.$t("BcfComponents.BcfTopicOverview.noDueDate")) + " ")])])]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "bcf" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.informations")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.status")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topicStatus || _vm.$t("BcfComponents.BcfTopicOverview.noStatusSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.stage")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.stage || _vm.$t("BcfComponents.BcfTopicOverview.noStageProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: " label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.priority")) + " ")]), _c("span", { staticClass: " value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicOverview.priorityNotDefined")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: " label" }, [_vm._v(" Auteur : ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.creationAuthor) + " ")])]), _c("div", { staticClass: "line m-t-12" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.tags")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.topicLabels.length ? _vm.topicLabels.join(", ") : _vm.$t("BcfComponents.BcfTopicOverview.noTags")) + " ")])])]), _c("BcfTopicComments", { attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic }, on: { "comment-created": function($event) {
3771
+ } } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]) : _vm._e(), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _vm.topicComponents.length > 0 ? _c("span", [_vm._v(" " + _vm._s(_vm.topicComponents.length) + " ")]) : _vm._e(), _c("span", [_vm._v(" " + _vm._s(_vm.topicComponents.length ? _vm.$t("BcfComponents.BcfTopicOverview.elements") : _vm.$t("BcfComponents.BcfTopicOverview.noElements")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.type")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_type ? _vm.bcfTopic.topic_type : _vm.$t("BcfComponents.BcfTopicOverview.noTypeSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.description")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.description ? _vm.bcfTopic.description : _vm.$t("BcfComponents.BcfTopicOverview.noDescriptionProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.assignedTo")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to ? _vm.bcfTopic.assigned_to : _vm.$t("BcfComponents.BcfTopicOverview.notAssigned")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.dueDate")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.due_date ? _vm.$d(_vm.bcfTopic.due_date, "short") : _vm.$t("BcfComponents.BcfTopicOverview.noDueDate")) + " ")])])]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "bcf" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.informations")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.status")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_status || _vm.$t("BcfComponents.BcfTopicOverview.noStatusSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.stage")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.stage || _vm.$t("BcfComponents.BcfTopicOverview.noStageProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: " label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.priority")) + " ")]), _c("span", { staticClass: " value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicOverview.priorityNotDefined")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: " label" }, [_vm._v(" Auteur : ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.creation_author) + " ")])]), _c("div", { staticClass: "line m-t-12" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.tags")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.topicLabels.length ? _vm.topicLabels.join(", ") : _vm.$t("BcfComponents.BcfTopicOverview.noTags")) + " ")])])]), _c("BcfTopicComments", { attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic }, on: { "comment-created": function($event) {
3583
3772
  return _vm.$emit("comment-created", $event);
3584
3773
  }, "comment-updated": function($event) {
3585
3774
  return _vm.$emit("comment-updated", $event);
@@ -3594,7 +3783,7 @@ var render$4 = function() {
3594
3783
  }, proxy: true }], null, false, 2806232332) }) : _vm._e(), _vm.loading ? _c("div", [_c("BIMDataLoading")], 1) : _vm._e()], 1);
3595
3784
  };
3596
3785
  var staticRenderFns$4 = [];
3597
- var BcfTopicOverview_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FBcfTopicOverview_vue_src_scoped_true_lang = "";
3786
+ var BcfTopicOverview_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicOverview_2FBcfTopicOverview_vue_src_scoped_true_lang = "";
3598
3787
  const __vue2_script$4 = {
3599
3788
  components: {
3600
3789
  BcfTopicComments,
@@ -3607,6 +3796,10 @@ const __vue2_script$4 = {
3607
3796
  BIMDataTextbox: l$2
3608
3797
  },
3609
3798
  props: {
3799
+ viewerMode: {
3800
+ type: Boolean,
3801
+ default: false
3802
+ },
3610
3803
  project: {
3611
3804
  type: Object,
3612
3805
  required: true
@@ -3651,21 +3844,18 @@ const __vue2_script$4 = {
3651
3844
  return DEFAULT_PRIORITY_COLOR;
3652
3845
  });
3653
3846
  const statusColor = computed(() => {
3654
- if (props.bcfTopic.topicStatus) {
3655
- const statusDetail = props.detailedExtensions.topicStatuses.find((s2) => s2.topicStatus === props.bcfTopic.topicStatus);
3847
+ if (props.bcfTopic.topic_status) {
3848
+ const statusDetail = props.detailedExtensions.topic_statuses.find((s2) => s2.topic_status === props.bcfTopic.topic_status);
3656
3849
  if (statusDetail && statusDetail.color) {
3657
3850
  return statusDetail.color;
3658
3851
  }
3659
3852
  }
3660
3853
  return DEFAULT_STATUS_COLOR;
3661
3854
  });
3662
- const topicElements = computed(() => {
3663
- var _a;
3664
- if (props.bcfTopic.components && props.bcfTopic.components.length > 0 && ((_a = props.bcfTopic.components[0]) == null ? void 0 : _a.selection)) {
3665
- return props.bcfTopic.components[0].selection;
3666
- } else {
3667
- return [];
3668
- }
3855
+ const topicComponents = computed(() => {
3856
+ var _a, _b;
3857
+ const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
3858
+ return (components2 == null ? void 0 : components2.selection) || [];
3669
3859
  });
3670
3860
  const topicLabels = computed(() => {
3671
3861
  var _a;
@@ -3691,16 +3881,16 @@ const __vue2_script$4 = {
3691
3881
  priorityColor,
3692
3882
  showDeleteModal,
3693
3883
  statusColor,
3694
- topicElements,
3884
+ topicComponents,
3695
3885
  topicLabels,
3696
3886
  viewpointsWithSnapshot,
3697
- adjustColor,
3887
+ adjustTextColor,
3698
3888
  removeTopic
3699
3889
  };
3700
3890
  }
3701
3891
  };
3702
3892
  const __cssModules$4 = {};
3703
- var __component__$4 = /* @__PURE__ */ normalizeComponent(__vue2_script$4, render$4, staticRenderFns$4, false, __vue2_injectStyles$4, "e37ec164", null, null);
3893
+ var __component__$4 = /* @__PURE__ */ normalizeComponent(__vue2_script$4, render$4, staticRenderFns$4, false, __vue2_injectStyles$4, "0aa12d94", null, null);
3704
3894
  function __vue2_injectStyles$4(context) {
3705
3895
  for (let o2 in __cssModules$4) {
3706
3896
  this[o2] = __cssModules$4[o2];
@@ -3733,6 +3923,12 @@ var columnsDef = [
3733
3923
  label: "Titre",
3734
3924
  align: "left"
3735
3925
  },
3926
+ {
3927
+ id: "creator",
3928
+ label: "Cr\xE9\xE9 par",
3929
+ width: "120px",
3930
+ align: "center"
3931
+ },
3736
3932
  {
3737
3933
  id: "date",
3738
3934
  label: "Date",
@@ -3897,7 +4093,7 @@ var render$3 = function() {
3897
4093
  } } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicActionsCell.seeButton")) + " ")])], 1);
3898
4094
  };
3899
4095
  var staticRenderFns$3 = [];
3900
- var BcfTopicActionsCell_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicsTable_2FbcfTopicActionsCell_2FBcfTopicActionsCell_vue_src_scoped_true_lang = "";
4096
+ var BcfTopicActionsCell_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicsTable_2FbcfTopicActionsCell_2FBcfTopicActionsCell_vue_src_scoped_true_lang = "";
3901
4097
  const __vue2_script$3 = {
3902
4098
  components: {
3903
4099
  BIMDataButton: c$5
@@ -3929,7 +4125,7 @@ var render$2 = function() {
3929
4125
  return _c("span", { staticClass: "bcf-topic-priority-cell", style: { color: _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicPriorityCell.noPriority")) + " ")]);
3930
4126
  };
3931
4127
  var staticRenderFns$2 = [];
3932
- var BcfTopicPriorityCell_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicsTable_2FbcfTopicPriorityCell_2FBcfTopicPriorityCell_vue_src_scoped_true_lang = "";
4128
+ var BcfTopicPriorityCell_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicsTable_2FbcfTopicPriorityCell_2FBcfTopicPriorityCell_vue_src_scoped_true_lang = "";
3933
4129
  const __vue2_script$2 = {
3934
4130
  props: {
3935
4131
  bcfTopic: {
@@ -3972,11 +4168,11 @@ var render$1 = function() {
3972
4168
  var _c = _vm._self._c || _h;
3973
4169
  return _c("span", { staticClass: "bcf-topic-status-cell", style: {
3974
4170
  backgroundColor: _vm.statusColor,
3975
- color: _vm.adjustColor(_vm.statusColor, "#ffffff", "var(--color-text)")
4171
+ color: _vm.adjustTextColor(_vm.statusColor, "#ffffff", "var(--color-text)")
3976
4172
  } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topicStatus) + " ")]);
3977
4173
  };
3978
4174
  var staticRenderFns$1 = [];
3979
- var BcfTopicStatusCell_scss_vue_type_style_index_0_from__2Fhome_2Frunner_2FactionsRunner_2F_work_2FbcfComponents_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicsTable_2FbcfTopicStatusCell_2FBcfTopicStatusCell_vue_src_scoped_true_lang = "";
4175
+ var BcfTopicStatusCell_scss_vue_type_style_index_0_from__2Fhome_2Fnyko_2FWork_2Fprojects_2FbcfComponents_2Fsrc_2Fcomponents_2FbcfTopicsTable_2FbcfTopicStatusCell_2FBcfTopicStatusCell_vue_src_scoped_true_lang = "";
3980
4176
  const __vue2_script$1 = {
3981
4177
  props: {
3982
4178
  bcfTopic: {
@@ -3990,8 +4186,8 @@ const __vue2_script$1 = {
3990
4186
  },
3991
4187
  setup(props) {
3992
4188
  const statusColor = computed(() => {
3993
- if (props.bcfTopic.topicStatus) {
3994
- const statusDetail = props.detailedExtensions.topicStatuses.find((status) => status.topicStatus === props.bcfTopic.topicStatus);
4189
+ if (props.bcfTopic.topic_status) {
4190
+ const statusDetail = props.detailedExtensions.topic_statuses.find((status) => status.topic_status === props.bcfTopic.topic_status);
3995
4191
  if (statusDetail == null ? void 0 : statusDetail.color) {
3996
4192
  return `#${statusDetail.color}`;
3997
4193
  }
@@ -4000,12 +4196,12 @@ const __vue2_script$1 = {
4000
4196
  });
4001
4197
  return {
4002
4198
  statusColor,
4003
- adjustColor
4199
+ adjustTextColor
4004
4200
  };
4005
4201
  }
4006
4202
  };
4007
4203
  const __cssModules$1 = {};
4008
- var __component__$1 = /* @__PURE__ */ normalizeComponent(__vue2_script$1, render$1, staticRenderFns$1, false, __vue2_injectStyles$1, "9af43d36", null, null);
4204
+ var __component__$1 = /* @__PURE__ */ normalizeComponent(__vue2_script$1, render$1, staticRenderFns$1, false, __vue2_injectStyles$1, "609c94dc", null, null);
4009
4205
  function __vue2_injectStyles$1(context) {
4010
4206
  for (let o2 in __cssModules$1) {
4011
4207
  this[o2] = __cssModules$1[o2];
@@ -4018,7 +4214,7 @@ var render = function() {
4018
4214
  var _vm = this;
4019
4215
  var _h = _vm.$createElement;
4020
4216
  var _c = _vm._self._c || _h;
4021
- return _c("BIMDataTable", { staticClass: "bcf-topics-table", attrs: { "columns": _vm.columns, "rows": _vm.bcfTopics, "rowKey": "guid", "paginated": true, "perPage": _vm.perPage, "rowHeight": 42 }, scopedSlots: _vm._u([{ key: "cell-index", fn: function(ref2) {
4217
+ return _c("BIMDataTable", { staticClass: "bcf-topics-table", attrs: { "columns": _vm.displayedColumns, "rows": _vm.bcfTopics, "rowKey": "guid", "paginated": _vm.paginated, "perPage": _vm.perPage, "rowHeight": 42 }, scopedSlots: _vm._u([{ key: "cell-index", fn: function(ref2) {
4022
4218
  var bcfTopic = ref2.row;
4023
4219
  return [_vm._v(" " + _vm._s(bcfTopic.index) + " ")];
4024
4220
  } }, { key: "cell-priority", fn: function(ref2) {
@@ -4026,13 +4222,18 @@ var render = function() {
4026
4222
  return [_c("BcfTopicPriorityCell", { attrs: { "bcfTopic": bcfTopic, "detailedExtensions": _vm.detailedExtensions } })];
4027
4223
  } }, { key: "cell-status", fn: function(ref2) {
4028
4224
  var bcfTopic = ref2.row;
4029
- return [bcfTopic.topicStatus ? _c("BcfTopicStatusCell", { attrs: { "bcfTopic": bcfTopic, "detailedExtensions": _vm.detailedExtensions } }) : _vm._e()];
4225
+ return [bcfTopic.topic_status ? _c("BcfTopicStatusCell", { attrs: { "bcfTopic": bcfTopic, "detailedExtensions": _vm.detailedExtensions } }) : _vm._e()];
4030
4226
  } }, { key: "cell-title", fn: function(ref2) {
4031
4227
  var bcfTopic = ref2.row;
4032
4228
  return [_c("BIMDataTextbox", { attrs: { "maxWidth": "100%", "text": bcfTopic.title } })];
4229
+ } }, { key: "cell-creator", fn: function(ref2) {
4230
+ var ref_row = ref2.row;
4231
+ var creator = ref_row.creator;
4232
+ var creation_author = ref_row.creation_author;
4233
+ return [creator ? [_c("UserAvatar", { staticStyle: { "margin": "auto" }, attrs: { "user": creator, "size": 30 } })] : [_c("BIMDataTextbox", { attrs: { "maxWidth": "120px", "text": creation_author } })]];
4033
4234
  } }, { key: "cell-date", fn: function(ref2) {
4034
4235
  var bcfTopic = ref2.row;
4035
- return [_vm._v(" " + _vm._s(_vm.$d(bcfTopic.creationDate, "short")) + " ")];
4236
+ return [_vm._v(" " + _vm._s(_vm.$d(bcfTopic.creation_date, "short")) + " ")];
4036
4237
  } }, { key: "cell-actions", fn: function(ref2) {
4037
4238
  var bcfTopic = ref2.row;
4038
4239
  return [_c("BcfTopicActionsCell", { attrs: { "bcfTopic": bcfTopic }, on: { "open-bcf-topic": function($event) {
@@ -4047,7 +4248,8 @@ const __vue2_script = {
4047
4248
  BcfTopicPriorityCell,
4048
4249
  BcfTopicStatusCell,
4049
4250
  BIMDataTable: h,
4050
- BIMDataTextbox: l$2
4251
+ BIMDataTextbox: l$2,
4252
+ UserAvatar
4051
4253
  },
4052
4254
  props: {
4053
4255
  bcfTopics: {
@@ -4058,18 +4260,25 @@ const __vue2_script = {
4058
4260
  type: Object,
4059
4261
  required: true
4060
4262
  },
4263
+ paginated: {
4264
+ type: Boolean,
4265
+ default: false
4266
+ },
4061
4267
  perPage: {
4062
4268
  type: Number,
4063
- default: 14
4269
+ default: 10
4270
+ },
4271
+ columns: {
4272
+ type: Array
4064
4273
  }
4065
4274
  },
4066
4275
  emits: [
4067
4276
  "open-bcf-topic"
4068
4277
  ],
4069
- setup() {
4070
- const columns = ref(columnsDef);
4278
+ setup(props) {
4279
+ const displayedColumns = computed(() => props.columns && props.columns.length > 0 ? columnsDef.filter((c2) => props.columns.includes(c2.id)) : columnsDef);
4071
4280
  return {
4072
- columns
4281
+ displayedColumns
4073
4282
  };
4074
4283
  }
4075
4284
  };
@@ -4093,4 +4302,4 @@ const components = {
4093
4302
  BcfTopicOverview,
4094
4303
  BcfTopicsTable
4095
4304
  };
4096
- export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, setApiClient };
4305
+ export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };