@bimdata/bcf-components 2.0.0-alpha.1 → 2.0.0-rc.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.
- package/dist/i18n/lang/de.json +155 -152
- package/dist/i18n/lang/en.json +155 -154
- package/dist/i18n/lang/es.json +155 -152
- package/dist/i18n/lang/fr.json +5 -5
- package/dist/i18n/lang/it.json +155 -152
- package/dist/vue2/bcf-components.es.js +799 -741
- package/dist/vue2/style.css +1 -1
- package/dist/vue3/bcf-components.es.js +460 -404
- package/dist/vue3/style.css +1 -1
- package/package.json +3 -4
- package/vue2-plugin.js +1 -1
|
@@ -18,7 +18,7 @@ var __spreadValues = (a2, b2) => {
|
|
|
18
18
|
return a2;
|
|
19
19
|
};
|
|
20
20
|
var __spreadProps = (a2, b2) => __defProps(a2, __getOwnPropDescs(b2));
|
|
21
|
-
import { reactive, computed, ref, watch, toRaw, inject } from "
|
|
21
|
+
import { reactive, computed, ref, watch, toRaw, inject } from "vue";
|
|
22
22
|
let apiClient = null;
|
|
23
23
|
function setApiClient(client) {
|
|
24
24
|
apiClient = client;
|
|
@@ -36,6 +36,11 @@ function serialize(date) {
|
|
|
36
36
|
function deserialize$1(date) {
|
|
37
37
|
return date.toISOString().split("T")[0].split("-").reverse().join("/");
|
|
38
38
|
}
|
|
39
|
+
function deserializeShort(date) {
|
|
40
|
+
const a2 = date.toISOString().split("T")[0].split("-").reverse();
|
|
41
|
+
a2[2] = a2[2].slice(-2);
|
|
42
|
+
return a2.join("/");
|
|
43
|
+
}
|
|
39
44
|
function validate(date) {
|
|
40
45
|
if (!date) {
|
|
41
46
|
return true;
|
|
@@ -167,12 +172,47 @@ function useBcfSort(topics) {
|
|
|
167
172
|
sortOrderDate
|
|
168
173
|
};
|
|
169
174
|
}
|
|
170
|
-
|
|
175
|
+
const EXTENSION_TYPES = [
|
|
176
|
+
"Priority",
|
|
177
|
+
"Type",
|
|
178
|
+
"Stage",
|
|
179
|
+
"Status",
|
|
180
|
+
"Label"
|
|
181
|
+
];
|
|
182
|
+
const EXTENSION_WITH_COLOR = [
|
|
183
|
+
"Priority",
|
|
184
|
+
"Status"
|
|
185
|
+
];
|
|
186
|
+
const EXTENSION_FIELDS = {
|
|
187
|
+
Priority: "priority",
|
|
188
|
+
Type: "topic_type",
|
|
189
|
+
Stage: "stage",
|
|
190
|
+
Status: "topic_status",
|
|
191
|
+
Label: "label"
|
|
192
|
+
};
|
|
193
|
+
const EXTENSION_LIST_FIELDS = {
|
|
194
|
+
Priority: "priorities",
|
|
195
|
+
Type: "topic_types",
|
|
196
|
+
Stage: "stages",
|
|
197
|
+
Status: "topic_statuses",
|
|
198
|
+
Label: "topic_labels"
|
|
199
|
+
};
|
|
200
|
+
const DEFAULT_PRIORITY_COLOR = "D8D8D8";
|
|
201
|
+
const DEFAULT_STATUS_COLOR = "D8D8D8";
|
|
202
|
+
function getPriorityColor(topic, detailedExtensions) {
|
|
203
|
+
const priorityDetail = detailedExtensions.priorities.find((p2) => p2.priority === topic.priority);
|
|
204
|
+
return (priorityDetail == null ? void 0 : priorityDetail.color) || DEFAULT_PRIORITY_COLOR;
|
|
205
|
+
}
|
|
206
|
+
function getStatusColor(topic, detailedExtensions) {
|
|
207
|
+
const statusDetail = detailedExtensions.topic_statuses.find((s2) => s2.topic_status === topic.topic_status);
|
|
208
|
+
return (statusDetail == null ? void 0 : statusDetail.color) || DEFAULT_STATUS_COLOR;
|
|
209
|
+
}
|
|
210
|
+
var r$d = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), o$d = { name: "BIMDataButton", props: { width: { type: String, default: "32px" }, height: { type: String, default: "32px" }, fill: { type: Boolean, default: false }, outline: { type: Boolean, default: false }, ghost: { type: Boolean, default: false }, ripple: { type: Boolean, default: false }, radius: { type: Boolean, default: false }, square: { type: Boolean, default: false }, rounded: { type: Boolean, default: false }, icon: { type: Boolean, default: false }, color: { type: String, default: "default", validator: (o2) => r$d.includes(o2) } }, emits: ["click"], computed: { classes() {
|
|
171
211
|
return { "bimdata-btn__icon": this.icon, "bimdata-btn__fill": this.fill, "bimdata-btn__outline": this.outline, "bimdata-btn__ghost": this.ghost, "bimdata-btn__ripple": this.ripple, "bimdata-btn__radius": this.radius, "bimdata-btn__square": this.square, "bimdata-btn__rounded": this.rounded, ["bimdata-btn__fill--" + this.color]: this.fill && this.color, ["bimdata-btn__outline--" + this.color]: this.outline && this.color, ["bimdata-btn__ghost--" + this.color]: this.ghost && this.color, ["bimdata-btn__ripple--" + this.color]: this.ripple && this.color };
|
|
172
212
|
}, style() {
|
|
173
213
|
return { "min-width": "" + this.width, "min-height": "" + this.height };
|
|
174
214
|
} } };
|
|
175
|
-
function a$
|
|
215
|
+
function a$b(r2, o2, a2, t2, e2, i2, l2, c2, n2, s2) {
|
|
176
216
|
typeof l2 != "boolean" && (n2 = c2, c2 = l2, l2 = false);
|
|
177
217
|
const d2 = typeof a2 == "function" ? a2.options : a2;
|
|
178
218
|
let b2;
|
|
@@ -194,14 +234,14 @@ function a$a(r2, o2, a2, t2, e2, i2, l2, c2, n2, s2) {
|
|
|
194
234
|
}
|
|
195
235
|
return a2;
|
|
196
236
|
}
|
|
197
|
-
const t$
|
|
198
|
-
function e$
|
|
237
|
+
const t$d = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
238
|
+
function e$d(r2) {
|
|
199
239
|
return (r3, o2) => function(r4, o3) {
|
|
200
|
-
const a2 = t$
|
|
240
|
+
const a2 = t$d ? o3.media || "default" : r4, e2 = l$7[a2] || (l$7[a2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
201
241
|
if (!e2.ids.has(r4)) {
|
|
202
242
|
e2.ids.add(r4);
|
|
203
243
|
let a3 = o3.source;
|
|
204
|
-
if (o3.map && (a3 += "\n/*# sourceURL=" + o3.map.sources[0] + " */", a3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(o3.map)))) + " */"), e2.element || (e2.element = document.createElement("style"), e2.element.type = "text/css", o3.media && e2.element.setAttribute("media", o3.media), i$
|
|
244
|
+
if (o3.map && (a3 += "\n/*# sourceURL=" + o3.map.sources[0] + " */", a3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(o3.map)))) + " */"), e2.element || (e2.element = document.createElement("style"), e2.element.type = "text/css", o3.media && e2.element.setAttribute("media", o3.media), i$c === void 0 && (i$c = document.head || document.getElementsByTagName("head")[0]), i$c.appendChild(e2.element)), "styleSheet" in e2.element)
|
|
205
245
|
e2.styles.push(a3), e2.element.styleSheet.cssText = e2.styles.filter(Boolean).join("\n");
|
|
206
246
|
else {
|
|
207
247
|
const r5 = e2.ids.size - 1, o4 = document.createTextNode(a3), t2 = e2.element.childNodes;
|
|
@@ -210,17 +250,17 @@ function e$c(r2) {
|
|
|
210
250
|
}
|
|
211
251
|
}(r3, o2);
|
|
212
252
|
}
|
|
213
|
-
let i$
|
|
214
|
-
const l$
|
|
215
|
-
const c$5 = a$
|
|
253
|
+
let i$c;
|
|
254
|
+
const l$7 = {};
|
|
255
|
+
const c$5 = a$b({ render: function() {
|
|
216
256
|
var r2 = this, o2 = r2.$createElement;
|
|
217
257
|
return (r2._self._c || o2)("button", { staticClass: "bimdata-btn", class: r2.classes, style: r2.style, attrs: { color: r2.color, type: "button" }, on: { click: function(o3) {
|
|
218
258
|
return r2.$emit("click", o3);
|
|
219
259
|
} } }, [r2._t("default")], 2);
|
|
220
260
|
}, staticRenderFns: [] }, function(r2) {
|
|
221
261
|
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 }));
|
|
222
|
-
}, o$
|
|
223
|
-
function e$
|
|
262
|
+
}, o$d, "data-v-7af18892", false, void 0, false, e$d, void 0, void 0);
|
|
263
|
+
function e$c(e2, t2, i2, d2, r2, o2, n2, v2, C2, s2) {
|
|
224
264
|
typeof n2 != "boolean" && (C2 = v2, v2 = n2, n2 = false);
|
|
225
265
|
const l2 = typeof i2 == "function" ? i2.options : i2;
|
|
226
266
|
let a2;
|
|
@@ -242,404 +282,404 @@ function e$b(e2, t2, i2, d2, r2, o2, n2, v2, C2, s2) {
|
|
|
242
282
|
}
|
|
243
283
|
return i2;
|
|
244
284
|
}
|
|
245
|
-
var t$
|
|
285
|
+
var t$c = { addFile: e$c({ render: function() {
|
|
246
286
|
var e2 = this.$createElement;
|
|
247
287
|
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" } });
|
|
248
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addFolder: e$
|
|
288
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addFolder: e$c({ render: function() {
|
|
249
289
|
var e2 = this.$createElement;
|
|
250
290
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.55 15.0531H16.0997V18.503H13.7999V15.0531H10.35V12.7529H13.7999V9.303H16.0997V12.7529H19.55V15.0531ZM20.7001 5.85364H11.4997L9.19989 3.55383H2.29968C1.02325 3.55383 0.0113988 4.5772 0.0113988 5.85364L-0.00012207 19.6537C-0.00012207 20.9301 1.02325 21.9539 2.29968 21.9539H20.7001C21.9761 21.9539 22.9999 20.9301 22.9999 19.6537V8.15384C22.9999 6.87701 21.9761 5.85364 20.7001 5.85364Z" } });
|
|
251
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addUser: e$
|
|
291
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addUser: e$c({ render: function() {
|
|
252
292
|
var e2 = this.$createElement;
|
|
253
293
|
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$
|
|
294
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalAscending: e$c({ render: function() {
|
|
255
295
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
256
296
|
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$
|
|
297
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalDescending: e$c({ render: function() {
|
|
258
298
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
259
299
|
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" } })]);
|
|
260
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalSort: e$
|
|
300
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalSort: e$c({ render: function() {
|
|
261
301
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
262
302
|
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" } })]);
|
|
263
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alt: e$
|
|
303
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alt: e$c({ render: function() {
|
|
264
304
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
265
305
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.7015 3.57515L5.95106 8.45858L0.201477 13.342H5.54916V19.4455H17.8546V13.342H23.2015L17.4519 8.45858L11.7015 3.57515Z" } })]);
|
|
266
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), angle: e$
|
|
306
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), angle: e$c({ render: function() {
|
|
267
307
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
268
308
|
return t2("g", [t2("path", { attrs: { d: "M1.97143 0.989715L3.94286 3.61829L0 3.61829L1.97143 0.989715Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.62856 2.30405L2.62856 22.6755L1.31427 22.6755L1.31427 2.30405L2.62856 2.30405Z" } }), this._v(" "), t2("path", { attrs: { d: "M22.9999 22.0183L20.3713 23.9897L20.3713 20.0469L22.9999 22.0183Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6856 22.6754H1.31421V21.3611H21.6856V22.6754Z" } }), this._v(" "), t2("path", { attrs: { d: "M17.7429 22.0183C17.7429 19.8609 17.3349 17.7246 16.5423 15.7314C15.7497 13.7381 14.588 11.9271 13.1235 10.4015C11.659 8.876 9.92038 7.66588 8.0069 6.84027C6.09342 6.01466 4.04257 5.58972 1.97144 5.58972L1.97144 22.0183H17.7429Z" } })]);
|
|
269
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), api: e$
|
|
309
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), api: e$c({ render: function() {
|
|
270
310
|
var e2 = this.$createElement;
|
|
271
311
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.58497 3.93973L10.6402 3.62V2.00037H13.7601V3.59997L14.8315 3.91204C16.1242 4.28859 17.2929 4.94218 18.2616 5.80229L19.0793 6.52835L20.5167 5.73415L22.0766 8.32L20.636 9.11602L20.8775 10.1526C21.0158 10.7465 21.0891 11.3652 21.0891 12.002C21.0891 12.6666 21.0093 13.3115 20.859 13.9292L20.6047 14.9738L22.0774 15.7876L20.5175 18.3734L19.0168 17.5442L18.2001 18.2559C17.2436 19.0893 16.0969 19.7234 14.8315 20.092L13.7601 20.4041V22.1073H10.6402V20.384L9.58497 20.0643C8.34041 19.6872 7.21348 19.0525 6.27315 18.224L5.45582 17.5038L3.88196 18.3735L2.32201 15.7876L3.88637 14.9232L3.63966 13.8834C3.49644 13.2797 3.4205 12.6502 3.4205 12.002C3.4205 11.3816 3.49006 10.7784 3.62158 10.1986L3.8556 9.16688L2.32281 8.31994L3.88275 5.73409L5.39381 6.56903L6.21204 5.83441C7.16447 4.9793 8.31333 4.32502 9.58497 3.93973ZM12.1698 18.9829C16.1967 18.9829 19.4611 15.8587 19.4611 12.0048C19.4611 8.15092 16.1967 5.02673 12.1698 5.02673C8.14298 5.02673 4.87858 8.15092 4.87858 12.0048C4.87858 15.8587 8.14298 18.9829 12.1698 18.9829ZM10.3379 0.553833C9.67013 0.553833 9.12877 1.07194 9.12877 1.71106V2.56066C7.63716 3.0126 6.29183 3.77936 5.17793 4.77943L4.37669 4.33671C3.79836 4.01715 3.05884 4.20679 2.72494 4.76028L0.862703 7.84722C0.528802 8.40071 0.726954 9.10846 1.30529 9.42802L2.14453 9.89174C1.99029 10.5717 1.90904 11.2778 1.90904 12.002C1.90904 12.7587 1.99774 13.4956 2.16573 14.2037L1.30449 14.6795C0.726157 14.9991 0.528005 15.7069 0.861906 16.2603L2.72414 19.3473C3.05804 19.9008 3.79756 20.0904 4.37589 19.7709L5.24943 19.2882C6.34921 20.2572 7.66893 21.0011 9.12877 21.4434V22.3966C9.12877 23.0357 9.67014 23.5538 10.3379 23.5538H14.0624C14.7302 23.5538 15.2716 23.0357 15.2716 22.3966V21.4758C16.756 21.0434 18.0989 20.3003 19.2176 19.3255L20.0235 19.7708C20.6019 20.0904 21.3414 19.9007 21.6753 19.3472L23.5375 16.2603C23.8714 15.7068 23.6733 14.999 23.0949 14.6795L22.331 14.2574C22.5073 13.5329 22.6006 12.7779 22.6006 12.002C22.6006 11.2586 22.515 10.5344 22.3527 9.83776L23.0941 9.42808C23.6725 9.10852 23.8706 8.40077 23.5367 7.84728L21.6745 4.76034C21.3406 4.20685 20.6011 4.01721 20.0227 4.33677L19.2896 4.74185C18.1567 3.73592 16.788 2.9699 15.2716 2.52819V1.71106C15.2716 1.07194 14.7302 0.553833 14.0624 0.553833H10.3379ZM12.1698 17.5363C15.3619 17.5363 17.9496 15.0598 17.9496 12.0048C17.9496 8.94982 15.3619 6.47326 12.1698 6.47326C8.97774 6.47326 6.39003 8.94982 6.39003 12.0048C6.39003 15.0598 8.97774 17.5363 12.1698 17.5363ZM10.3429 13.3399H8.78295L8.48637 14.2046H7.54029L9.14773 10.0078H9.97221L11.5885 14.2046H10.6425L10.3429 13.3399ZM9.02317 12.6394H10.1027L9.55997 11.0685L9.02317 12.6394ZM12.8816 12.7259V14.2046H11.9919V10.0078H13.6764C14.0007 10.0078 14.2854 10.0655 14.5306 10.1808C14.7777 10.2961 14.9675 10.4603 15.1 10.6736C15.2325 10.885 15.2987 11.1262 15.2987 11.3971C15.2987 11.8084 15.1534 12.1331 14.8627 12.3714C14.5741 12.6077 14.1737 12.7259 13.6616 12.7259H12.8816ZM12.8816 12.0255H13.6764C13.9117 12.0255 14.0907 11.9717 14.2132 11.8641C14.3378 11.7565 14.4001 11.6027 14.4001 11.4029C14.4001 11.1973 14.3378 11.0311 14.2132 10.9042C14.0887 10.7774 13.9167 10.7121 13.6972 10.7082H12.8816V12.0255ZM15.969 14.2046H16.8587V10.0078H15.969V14.2046Z" } });
|
|
272
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), archive: e$
|
|
312
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), archive: e$c({ render: function() {
|
|
273
313
|
var e2 = this.$createElement;
|
|
274
314
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.99856 2.98975H14.0663V6.55599H16.6753L11.4995 11.3798L6.32372 6.55599H8.99856V2.98975ZM8.47943 4.54312H4.53947L1.91832 12.2755H1.26615C0.566874 12.2755 0 12.8424 0 13.5417V20.7158C0 21.4151 0.566876 21.982 1.26615 21.982H21.7339C22.4331 21.982 23 21.4151 23 20.7158V13.5417C23 12.8424 22.4331 12.2755 21.7339 12.2755H21.0649L18.3821 4.54312H14.5607V5.38716H17.7816L20.1716 12.2755H2.80954L5.14457 5.38716H8.47943V4.54312ZM15.1789 16.378H7.82121V17.8795H15.1789V16.378Z" } });
|
|
275
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), arrow: e$
|
|
315
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), arrow: e$c({ render: function() {
|
|
276
316
|
var e2 = this.$createElement;
|
|
277
317
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5005 0L2.30076 9.19978L0 11.4995L2.30076 13.8002L11.5005 23L13.8002 20.7003L6.2268 13.1269H22.9995V11.5V9.8731H6.2268L13.8002 2.29967L11.5005 0Z" } });
|
|
278
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), attach: e$
|
|
318
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), attach: e$c({ render: function() {
|
|
279
319
|
var e2 = this.$createElement;
|
|
280
320
|
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$
|
|
321
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), backInTime: e$c({ render: function() {
|
|
282
322
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
283
323
|
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" } })]);
|
|
284
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcf: e$
|
|
324
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcf: e$c({ render: function() {
|
|
285
325
|
var e2 = this.$createElement;
|
|
286
326
|
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" } });
|
|
287
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), building: e$
|
|
327
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), building: e$c({ render: function() {
|
|
288
328
|
var e2 = this.$createElement;
|
|
289
329
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.3333 3.63158V10.8947H23V23H0V6.05263H7.66667V3.63158L11.5 0L15.3333 3.63158ZM2.55551 20.5793H5.11106V18.1582H2.55551V20.5793ZM5.11106 15.7373H2.55551V13.3162H5.11106V15.7373ZM2.55551 10.8943H5.11106V8.47325H2.55551V10.8943ZM12.7778 20.5793H10.2223V18.1582H12.7778V20.5793ZM10.2223 15.7373H12.7778V13.3162H10.2223V15.7373ZM12.7778 10.8943H10.2223V8.47325H12.7778V10.8943ZM10.2223 6.05231H12.7778V3.63126H10.2223V6.05231ZM20.4444 20.5793H17.8889V18.1582H20.4444V20.5793ZM17.8889 15.7373H20.4444V13.3162H17.8889V15.7373Z" } });
|
|
290
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), burgerMenu: e$
|
|
330
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), burgerMenu: e$c({ render: function() {
|
|
291
331
|
var e2 = this.$createElement;
|
|
292
332
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 6.55556H23V4H0V6.55556ZM0 12.9446H23V10.389H0V12.9446ZM0 19.3332H23V16.7777H0V19.3332Z" } });
|
|
293
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), calendar: e$
|
|
333
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), calendar: e$c({ render: function() {
|
|
294
334
|
var e2 = this.$createElement;
|
|
295
335
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.9401 2.0909H18.9856C20.1356 2.0909 21.0765 3.03181 21.0765 4.1818V20.909C21.0765 22.059 20.1356 22.9999 18.9856 22.9999H2.25838C1.10839 22.9999 0.16748 22.059 0.16748 20.909V4.1818C0.16748 3.03181 1.10839 2.0909 2.25838 2.0909H3.30383V0H5.39473V2.0909H15.8492V0H17.9401V2.0909ZM2.25838 20.909H18.9856V7.31815H2.25838V20.909ZM8.77371 8.57203H3.50813V13.8376H8.77371V8.57203Z" } });
|
|
296
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), caliper: e$
|
|
336
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), caliper: e$c({ render: function() {
|
|
297
337
|
var e2 = this.$createElement;
|
|
298
|
-
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.4094 6.03868C15.7162\
|
|
299
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), camera: e$
|
|
338
|
+
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.4094 6.03868C15.7162\n 5.46323 15.8901 4.80619 15.8901 4.10853C15.8901 1.83945 14.0507 0 11.7816\n 0C9.51251 0 7.67306 1.83945 7.67306 4.10853C7.67306 4.80469 7.84621 5.46041\n 8.15178 6.03497L4.91762 12.3967C4.36198 11.8537 3.87187 11.2459 3.4583\n 10.5855C3.13751 10.0733 2.4887 9.83995 1.944 10.1018C1.39931 10.3636 1.16579\n 11.0206 1.47611 11.5392C2.12429 12.6225 2.93847 13.5955 3.88741\n 14.4232L1.00004 20.1028L1.62696 23L4.33716 21.7993L7.07177 16.4202C8.55075\n 17.0507 10.1475 17.3804 11.7682 17.3822C14.028 17.3848 16.2426 16.7497 18.1576\n 15.5499C19.7626 14.5444 21.1025 13.1765 22.0733 11.5622C22.3848 11.0443\n 22.1527 10.3868 21.6086 10.1237C21.0645 9.86066 20.4152 10.0926 20.0933\n 10.6041C19.6815 11.2583 19.1944 11.8607 18.643 12.3992L15.4094\n 6.03868ZM12.3008 8.18457C12.1307 8.20601 11.9574 8.21706 11.7816\n 8.21706C11.6045 8.21706 11.43 8.20585 11.2588 8.18411L8.06635 14.4638C9.23735\n 14.9423 10.4949 15.1922 11.7706 15.1936C13.0526 15.1951 14.3167 14.9456\n 15.4936 14.4651L12.3008 8.18457ZM11.7816 5.92554C10.7781 5.92554 9.96458\n 5.11204 9.96458 4.10853C9.96458 3.10502 10.7781 2.29152 11.7816\n 2.29152C12.7851 2.29152 13.5986 3.10502 13.5986 4.10853C13.5986 5.11204\n 12.7851 5.92554 11.7816 5.92554ZM19.2221 21.7991L17.2609 17.9415C18.0623\n 17.6222 18.8367 17.2302 19.574 16.7683C19.9026 16.5625 20.2218 16.344 20.5312\n 16.1135L22.5592 20.1026L21.9323 22.9998L19.2221 21.7991Z" } });
|
|
339
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), camera: e$c({ render: function() {
|
|
300
340
|
var e2 = this.$createElement;
|
|
301
341
|
return (this._self._c || e2)("path", { attrs: { d: "M3.91781 5.21572V2.51572H5.71781V5.21572H8.41781V7.01572H5.71781V9.71572H3.91781V7.01572H1.31781V5.21572H3.91781ZM6.61781 10.6157V7.91572H9.31781V5.21572H15.5178L17.1178 7.01572H20.0178C21.0178 7.01572 21.8178 7.81572 21.8178 8.81572V19.5157C21.8178 20.5157 21.0178 21.3157 20.0178 21.3157H5.71781C4.71781 21.3157 3.91781 20.5157 3.91781 19.5157V10.6157H6.61781ZM12.8178 18.6157C15.3178 18.6157 17.3178 16.6157 17.3178 14.1157C17.3178 11.6157 15.3178 9.61572 12.8178 9.61572C10.3178 9.61572 8.31781 11.6157 8.31781 14.1157C8.31781 16.6157 10.4178 18.6157 12.8178 18.6157ZM10.0178 14.1157C10.0178 15.7157 11.3178 17.0157 12.9178 17.0157C14.5178 17.0157 15.8178 15.7157 15.8178 14.1157C15.8178 12.5157 14.5178 11.2157 12.9178 11.2157C11.3178 11.2157 10.0178 12.6157 10.0178 14.1157Z" } });
|
|
302
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cancelCamera: e$
|
|
342
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cancelCamera: e$c({ render: function() {
|
|
303
343
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
304
344
|
return t2("g", [t2("path", { attrs: { d: "M1.30957 3.00321L3.1304 4.82404C2.8429 5.20738 2.65124 5.68654 2.65124 6.16571V8.08238V17.6657C2.65124 18.7199 3.51374 19.5824 4.5679 19.5824H17.8887L20.0929 21.7865L21.0512 20.8282L2.2679 2.04488L1.30957 3.00321ZM12.2346 16.7074C9.55124 16.7074 7.4429 14.599 7.4429 11.9157C7.4429 11.149 7.63457 10.3824 8.0179 9.71154L9.35957 11.0532C9.26374 11.3407 9.26374 11.6282 9.26374 11.9157C9.26374 13.6407 10.6054 14.9824 12.3304 14.9824C12.6179 14.9824 12.9054 14.8865 13.1929 14.8865L14.5346 16.2282C13.7679 16.5157 13.0012 16.7074 12.2346 16.7074Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.9012 4.24905H16.8346L15.1096 2.33238H13.9596H9.93457H9.35957L7.63457 4.24905H6.29291L9.83874 7.79488C10.5096 7.41155 11.3721 7.12405 12.2346 7.12405C14.9179 7.12405 17.0262 9.23238 17.0262 11.9157C17.0262 12.7782 16.7387 13.6407 16.3554 14.3115L21.1471 19.1032C21.5304 18.7199 21.8179 18.2407 21.8179 17.6657V8.08238V6.16572C21.8179 5.11155 20.9554 4.24905 19.9012 4.24905Z" } }), this._v(" "), t2("path", { attrs: { d: "M12.2346 8.84904C11.8513 8.84904 11.4679 8.94488 11.0846 9.04071L15.1096 13.0657C15.2054 12.6824 15.3013 12.299 15.3013 11.9157C15.3013 10.1907 13.9596 8.84904 12.2346 8.84904Z" } })]);
|
|
305
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), check: e$
|
|
345
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), check: e$c({ render: function() {
|
|
306
346
|
var e2 = this.$createElement;
|
|
307
347
|
return (this._self._c || e2)("path", { attrs: { d: "M13.7426 8.83955H0.599731V10.9824H13.7426V8.83955ZM13.7426 4.55383H0.599731V6.69669H13.7426V4.55383ZM0.599731 15.2681H9.36164V13.1253H0.599731V15.2681ZM21.9569 10.4467L23.5997 12.0538L15.944 19.5538L11.0045 14.7324L12.6474 13.1253L15.944 16.3395L21.9569 10.4467Z" } });
|
|
308
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), chevron: e$
|
|
348
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), chevron: e$c({ render: function() {
|
|
309
349
|
var e2 = this.$createElement;
|
|
310
350
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.0522 2.19676C5.9826 2.27217 5.9826 2.39544 6.0522 2.47105L14.4046 11.5192L6.08804 20.529C6.01825 20.6044 6.01825 20.7279 6.08804 20.8033L8.06344 22.9433C8.13304 23.0189 8.24702 23.0189 8.31662 22.9433L18.7257 11.667C18.7942 11.5928 18.795 11.4724 18.729 11.3968C18.7202 11.3736 18.7071 11.3518 18.6899 11.3331L8.28077 0.0565512C8.21117 -0.0188504 8.09719 -0.0188504 8.02759 0.0565512L6.0522 2.19676Z" } });
|
|
311
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), classificationCategorie: e$
|
|
351
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), classificationCategorie: e$c({ render: function() {
|
|
312
352
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
313
353
|
return t2("g", [t2("path", { attrs: { d: "M22.4015 1.01572H9.1015V4.91572H22.4015V1.01572Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.5015 6.81572H9.1015V10.7157H19.5015V6.81572Z" } }), this._v(" "), t2("path", { attrs: { d: "M16.5015 12.6157H9.1015V16.5157H16.5015V12.6157Z" } }), this._v(" "), t2("path", { attrs: { d: "M7.30149 1.01572H3.40149V18.4157H0.901489L3.10149 20.7157L5.30149 23.0157L7.50149 20.7157L9.70149 18.4157H7.30149V1.01572Z" } })]);
|
|
314
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), classificationElement: e$
|
|
354
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), classificationElement: e$c({ render: function() {
|
|
315
355
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
316
356
|
return t2("g", [t2("path", { attrs: { d: "M18.0475 5.01572H5.34753V7.61572H18.0475V5.01572Z" } }), this._v(" "), t2("path", { attrs: { d: "M18.0475 10.2157H5.34753V12.8157H18.0475V10.2157Z" } }), this._v(" "), t2("path", { attrs: { d: "M18.0475 15.3157H5.34753V17.9157H18.0475V15.3157Z" } }), this._v(" "), t2("path", { attrs: { d: "M9.14756 0.515717H3.34756H0.747559V3.11572V8.81572H3.34756V3.11572H9.14756V0.515717Z" } }), this._v(" "), t2("path", { attrs: { d: "M20.1475 14.2157V19.9157H14.3475V22.5157H20.1475H22.7475V19.9157V14.2157H20.1475Z" } })]);
|
|
317
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), click: e$
|
|
357
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), click: e$c({ render: function() {
|
|
318
358
|
var e2 = this.$createElement;
|
|
319
359
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.94492 4.49546C10.154 4.49546 10.2586 4.28637 10.2586 4.18182V0.313636C10.2586 0.104545 10.0495 0 9.94492 0C9.84037 0 9.52674 0.104545 9.52674 0.313636V4.07727C9.52674 4.39091 9.73583 4.49546 9.94492 4.49546ZM21.4449 17.3545L15.4858 12.5454L9.52674 7.63181L9.63128 15.2636V23L14.1267 17.1455L21.4449 17.3545ZM15.5904 2.3C15.6949 2.40455 15.6949 2.71818 15.5904 2.82273L12.8722 5.54091C12.7676 5.64546 12.454 5.64546 12.3495 5.54091C12.2449 5.43637 12.2449 5.12273 12.3495 5.01818L15.0676 2.3C15.1722 2.19546 15.4858 2.19546 15.5904 2.3ZM7.0177 10.35L4.29951 13.0682C4.19497 13.1727 4.19497 13.4864 4.29951 13.5909C4.40406 13.6955 4.71769 13.6955 4.82224 13.5909L7.54042 10.8727C7.64497 10.7682 7.64497 10.4546 7.54042 10.35C7.33133 10.2455 7.12224 10.2455 7.0177 10.35ZM13.7085 8.2591C13.604 8.2591 13.3949 8.15456 13.3949 7.94546C13.3949 7.73637 13.4994 7.52728 13.7085 7.63183H17.4721C17.5767 7.63183 17.7858 7.73637 17.7858 7.94546C17.7858 8.05001 17.6812 8.2591 17.4721 8.2591H13.7085ZM6.49497 7.94546C6.49497 7.73637 6.28588 7.63183 6.18133 7.63183H2.31315C2.10406 7.52728 1.99951 7.73637 1.99951 7.94546C1.99951 8.15456 2.2086 8.2591 2.31315 8.2591H6.07679C6.28588 8.2591 6.49497 8.15456 6.49497 7.94546ZM4.29951 2.3C4.40406 2.19546 4.71769 2.19546 4.82224 2.3L7.54042 5.01818C7.64497 5.12273 7.64497 5.43637 7.54042 5.54091C7.33133 5.64546 7.12224 5.64546 7.0177 5.54091L4.29951 2.82273C4.19497 2.71818 4.19497 2.50909 4.29951 2.3Z" } });
|
|
320
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), close: e$
|
|
360
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), close: e$c({ render: function() {
|
|
321
361
|
var e2 = this.$createElement;
|
|
322
362
|
return (this._self._c || e2)("path", { attrs: { d: "M23 2.31643L20.6836 0L11.5 9.18357L2.31643 0L0 2.31643L9.18357 11.5L0 20.6836L2.31643 23L11.5 13.8164L20.6836 23L23 20.6836L13.8164 11.5L23 2.31643Z" } });
|
|
323
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cloud: e$
|
|
363
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cloud: e$c({ render: function() {
|
|
324
364
|
var e2 = this.$createElement;
|
|
325
365
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M22.9995 13.7162C22.9995 10.6768 20.5357 8.21286 17.4963 8.21286C17.095 8.21286 16.7041 8.25698 16.3273 8.33851C15.6281 5.83623 13.333 4 10.6077 4C7.32729 4 4.66778 6.65933 4.66778 9.93979C4.66778 10.2037 4.68688 10.463 4.72022 10.7178H4.25039C1.91241 10.7178 -0.000488281 12.6307 -0.000488281 14.9687C-0.000488281 17.3067 1.91241 19.2195 4.25039 19.2195H8.87188H13.9108H18.7488C21.0866 19.2195 22.9995 17.3067 22.9995 14.9687C22.9995 14.7743 22.9817 14.5844 22.9562 14.3968C22.9837 14.1736 22.9995 13.9468 22.9995 13.7162Z" } });
|
|
326
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), color: e$
|
|
366
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), color: e$c({ render: function() {
|
|
327
367
|
var e2 = this.$createElement;
|
|
328
368
|
return (this._self._c || e2)("path", { attrs: { d: "M11.405 0.00179965C5.89928 0.116844 1.7993 3.45312 0.393597 8.51505C-1.01211 13.577 1.7993 17.6035 1.7993 17.6035C1.7993 17.6035 4.025 21.4 8.35926 22.5504C10.9364 23.2407 13.5135 23.3557 16.2078 21.2849C16.2078 21.2849 16.6763 20.9398 16.5592 20.5947C16.4421 20.2495 15.6221 20.3646 15.6221 20.3646H14.2164C13.1621 20.3646 12.2249 19.4442 12.2249 18.4088C12.2249 17.3734 13.1621 16.4531 14.2164 16.4531H18.3163C18.6678 16.4531 20.3078 16.4531 21.1277 15.1876C21.2449 14.9575 21.4792 14.6124 21.5963 14.3823C26.6334 5.29382 16.9106 -0.113244 11.405 0.00179965ZM4.49357 11.5062C3.43929 11.5062 2.50215 10.5858 2.50215 9.55044C2.50215 8.51505 3.43929 7.5947 4.49357 7.5947C5.54785 7.5947 6.48499 8.51505 6.48499 9.55044C6.48499 10.5858 5.54785 11.5062 4.49357 11.5062ZM8.35926 6.44426C7.30498 6.44426 6.36784 5.52391 6.36784 4.48851C6.36784 3.45312 7.30498 2.53276 8.35926 2.53276C9.41354 2.53276 10.3507 3.45312 10.3507 4.48851C10.3507 5.52391 9.53068 6.44426 8.35926 6.44426ZM14.8021 6.32921C13.7478 6.32921 12.8107 5.40886 12.8107 4.37347C12.8107 3.33807 13.7478 2.41772 14.8021 2.41772C15.8564 2.41772 16.7935 3.33807 16.7935 4.37347C16.7935 5.40886 15.8564 6.32921 14.8021 6.32921ZM18.7849 11.5062C17.7306 11.5062 16.7935 10.5858 16.7935 9.55044C16.7935 8.51505 17.7306 7.5947 18.7849 7.5947C19.8392 7.5947 20.7763 8.51505 20.7763 9.55044C20.6592 10.5858 19.8392 11.5062 18.7849 11.5062Z" } });
|
|
329
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), comment: e$
|
|
369
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), comment: e$c({ render: function() {
|
|
330
370
|
var e2 = this.$createElement;
|
|
331
371
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2 0C0.895431 0 0 0.895431 0 2V14C0 15.1046 0.895431 16 2 16H6.01207L6.01207 22.4845C6.01207 22.9512 6.59476 23.1635 6.89492 22.8061L12.612 16H21C22.1046 16 23 15.1046 23 14V2C23 0.895431 22.1046 0 21 0H2ZM3.6767 5.08725C3.6767 4.53497 4.12442 4.08725 4.6767 4.08725H18.0124C18.5647 4.08725 19.0124 4.53497 19.0124 5.08725V5.6432C19.0124 6.19548 18.5647 6.6432 18.0124 6.6432H4.6767C4.12442 6.6432 3.6767 6.19548 3.6767 5.6432V5.08725ZM4.6767 9.19914C4.12442 9.19914 3.6767 9.64685 3.6767 10.1991V10.7551C3.6767 11.3074 4.12442 11.7551 4.6767 11.7551H14.1785C14.7307 11.7551 15.1785 11.3074 15.1785 10.7551V10.1991C15.1785 9.64685 14.7307 9.19914 14.1785 9.19914H4.6767Z" } });
|
|
332
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cursor: e$
|
|
372
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cursor: e$c({ render: function() {
|
|
333
373
|
var e2 = this.$createElement;
|
|
334
374
|
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$
|
|
375
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateAscending: e$c({ render: function() {
|
|
336
376
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
337
377
|
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$
|
|
378
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateDescending: e$c({ render: function() {
|
|
339
379
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
340
380
|
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" } })]);
|
|
341
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), default: e$
|
|
381
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), default: e$c({ render: function() {
|
|
342
382
|
var e2 = this.$createElement;
|
|
343
383
|
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" } });
|
|
344
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), delete: e$
|
|
384
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), delete: e$c({ render: function() {
|
|
345
385
|
var e2 = this.$createElement;
|
|
346
386
|
return (this._self._c || e2)("path", { attrs: { d: "M4.1508 20.7945C4.1508 22.1993 5.33296 23.3486 6.77783 23.3486H17.286C18.7308 23.3486 19.913 22.1993 19.913 20.7945V5.47018H4.1508V20.7945ZM7.38204 11.7021L9.2341 9.90147L12.0319 12.6088L14.8165 9.90147L16.6686 11.7021L13.8839 14.4094L16.6686 17.1167L14.8165 18.9173L12.0319 16.21L9.24724 18.9173L7.39518 17.1167L10.1798 14.4094L7.38204 11.7021ZM16.6292 1.63909L15.3157 0.362061H8.7481L7.43459 1.63909H2.83728V4.19315H21.2265V1.63909H16.6292Z" } });
|
|
347
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), deniedFile: e$
|
|
387
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), deniedFile: e$c({ render: function() {
|
|
348
388
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
349
389
|
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("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" } }), this._v(" "), t2("path", { attrs: { d: "M10.7275 13.0429C11.4757 11.6116 13.5243 11.6116 14.2725 13.0429L18.4702 21.0735C19.1663 22.4051 18.2003 24 16.6978 24H8.30222C6.79967 24 5.8337 22.4051 6.52977 21.0735L10.7275 13.0429Z", fill: "#FF3D1E" } }), this._v(" "), t2("path", { attrs: { d: "M13.2031 16L13.0581 20.4429H12.0034L11.854 16H13.2031ZM11.8188 21.8184C11.8188 21.6309 11.8833 21.4756 12.0122 21.3525C12.144 21.2266 12.3169 21.1636 12.5308 21.1636C12.7476 21.1636 12.9204 21.2266 13.0493 21.3525C13.1782 21.4756 13.2427 21.6309 13.2427 21.8184C13.2427 22 13.1782 22.1538 13.0493 22.2798C12.9204 22.4058 12.7476 22.4688 12.5308 22.4688C12.3169 22.4688 12.144 22.4058 12.0122 22.2798C11.8833 22.1538 11.8188 22 11.8188 21.8184Z", fill: "white" } })]);
|
|
350
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), deploy: e$
|
|
390
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), deploy: e$c({ render: function() {
|
|
351
391
|
var e2 = this.$createElement;
|
|
352
392
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.7691 6.1512C21.6937 6.0816 21.5704 6.0816 21.4948 6.1512L12.4466 14.5036L3.43681 6.18704C3.36141 6.11725 3.23794 6.11725 3.16253 6.18704L1.02253 8.16243C0.946918 8.23204 0.946918 8.34601 1.02253 8.41562L12.2989 18.8247C12.373 18.8932 12.4934 18.894 12.569 18.828C12.5923 18.8192 12.614 18.8061 12.6327 18.7889L23.9093 8.37977C23.9847 8.31017 23.9847 8.19619 23.9093 8.12659L21.7691 6.1512Z" } });
|
|
353
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), detach: e$
|
|
393
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), detach: e$c({ render: function() {
|
|
354
394
|
var e2 = this.$createElement;
|
|
355
395
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M12.0537 2.3513C13.0902 0.62498 15.3654 0.0220922 17.1354 1.00471C18.9054 1.98733 19.5 4.18337 18.4634 5.90969L16.1842 9.70566C15.4582 10.9147 14.1248 11.5727 12.7828 11.5209L12.4773 12.0501L9.7249 10.461L9.95854 10.0563C9.13259 8.94749 9.01038 7.41978 9.77444 6.14727L12.0537 2.3513ZM14.1171 8.70055C14.0903 8.18061 13.8088 7.68435 13.3244 7.40465C12.8068 7.1058 12.1909 7.13127 11.7121 7.418C11.7404 7.25105 11.8 7.08589 11.8931 6.93041L13.8155 3.71728C14.2238 3.03482 15.121 2.79704 15.8195 3.1862C16.518 3.57535 16.7532 4.44406 16.3449 5.12652L14.4225 8.33965C14.3391 8.47901 14.2354 8.59983 14.1171 8.70055ZM5.6974 13.3607C6.42334 12.1517 7.7568 11.4937 9.09878 11.5455L9.3791 11.0599L12.1315 12.649L11.923 13.01C12.749 14.1189 12.8712 15.6466 12.1071 16.9191L9.8279 20.7151C8.79136 22.4414 6.5162 23.0443 4.7462 22.0617C2.9762 21.0791 2.38162 18.883 3.41816 17.1567L5.6974 13.3607ZM7.45903 14.7267C7.54241 14.5874 7.64618 14.4665 7.76448 14.3658C7.79126 14.8858 8.07272 15.382 8.55717 15.6617C9.07479 15.9606 9.69066 15.9351 10.1695 15.6484C10.1411 15.8153 10.0815 15.9805 9.98848 16.136L8.06607 19.3491C7.65775 20.0316 6.76051 20.2693 6.06202 19.8802C5.36354 19.491 5.1283 18.6223 5.53662 17.9398L7.45903 14.7267ZM17.7429 16.2934L18.5331 14.9246L14.7161 13.6334L17.7429 16.2934ZM15.9264 17.7095L14.3998 18.1185L14.1404 14.0974L15.9264 17.7095ZM18.5467 12.5879L18.1376 11.0613L14.5255 12.8473L18.5467 12.5879ZM3.85241 8.07499L4.70693 6.7454L7.60365 9.54648L3.85241 8.07499ZM8.13313 5.08147L6.58873 5.4174L8.20076 9.11043L8.13313 5.08147ZM4.0636 11.9528L3.72767 10.4084L7.75663 10.3408L4.0636 11.9528Z" } });
|
|
356
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), distance: e$
|
|
396
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), distance: e$c({ render: function() {
|
|
357
397
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
358
|
-
return t2("g", [t2("rect", { attrs: { y: "6.24689", width: "23", height: "17.7429" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.28571 0.989746L0 2.96117L3.28571 4.9326L3.28571 0.989746ZM20.3714 4.9326L23 2.96117L20.3714 0.989746V4.9326Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.3715\n
|
|
359
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), doubleChevron: e$
|
|
398
|
+
return t2("g", [t2("rect", { attrs: { y: "6.24689", width: "23", height: "17.7429" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.28571 0.989746L0 2.96117L3.28571 4.9326L3.28571 0.989746ZM20.3714 4.9326L23 2.96117L20.3714 0.989746V4.9326Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.3715\n 3.6183H2.6286V2.30402H20.3715V3.6183Z" } })]);
|
|
399
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), doubleChevron: e$c({ render: function() {
|
|
360
400
|
var e2 = this.$createElement;
|
|
361
401
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M1.05119 2.47105C0.982285 2.39544 0.982285 2.27217 1.05119 2.19676L3.00683 0.0565512C3.07573 -0.0188504 3.18857 -0.0188504 3.25748 0.0565512L13.5625 11.3331C13.5796 11.3518 13.5925 11.3736 13.6012 11.3968C13.6665 11.4724 13.6658 11.5928 13.598 11.667L3.29296 22.9433C3.22406 23.0189 3.11122 23.0189 3.04231 22.9433L1.08668 20.8033C1.01758 20.7279 1.01758 20.6044 1.08668 20.529L9.32003 11.5192L1.05119 2.47105ZM10.2512 2.47105C10.1823 2.39544 10.1823 2.27217 10.2512 2.19676L12.2068 0.0565512C12.2757 -0.0188504 12.3886 -0.0188504 12.4575 0.0565512L22.7625 11.3331C22.7796 11.3518 22.7925 11.3736 22.8012 11.3968C22.8665 11.4724 22.8658 11.5928 22.798 11.667L12.493 22.9433C12.4241 23.0189 12.3112 23.0189 12.2423 22.9433L10.2867 20.8033C10.2176 20.7279 10.2176 20.6044 10.2867 20.529L18.52 11.5192L10.2512 2.47105Z" } });
|
|
362
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), down: e$
|
|
402
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), down: e$c({ render: function() {
|
|
363
403
|
var e2 = this.$createElement;
|
|
364
404
|
return (this._self._c || e2)("path", { attrs: { d: "M11.8209 21.5107L0.320924 0.0440684L23.3209 0.0440705L11.8209 21.5107Z" } });
|
|
365
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), download: e$
|
|
405
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), download: e$c({ render: function() {
|
|
366
406
|
var e2 = this.$createElement;
|
|
367
407
|
return (this._self._c || e2)("path", { attrs: { d: "M18.5438 9.77808C17.8921 6.47183 14.9883 3.98975 11.5 3.98975C8.73042 3.98975 6.325 5.56141 5.12708 7.86141C2.2425 8.16808 0 10.6118 0 13.5731C0 16.7452 2.57792 19.3231 5.75 19.3231H18.2083C20.8533 19.3231 23 17.1764 23 14.5314C23 12.0014 21.0354 9.95058 18.5438 9.77808ZM16.2917 12.6147L11.5 17.4064L6.70833 12.6147H9.58333V8.78141H13.4167V12.6147H16.2917Z" } });
|
|
368
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), drag: e$
|
|
408
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), drag: e$c({ render: function() {
|
|
369
409
|
var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
|
|
370
410
|
return i2("g", [i2("rect", { attrs: { x: "7.0011", y: "8.99884", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "7.0011", y: "12.3734", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "10.3756", y: "8.99884", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "10.3756", y: "12.3734", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "13.7502", y: "8.99884", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "13.7502", y: "12.3734", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "11.5002", width: "1.27286", height: "6.36432", transform: "rotate(45 11.5002 0)" } }), e2._v(" "), i2("rect", { attrs: { x: "15.9996", y: "4.50104", width: "1.27287", height: "6.36432", transform: "rotate(135 15.9996 4.50104)" } }), e2._v(" "), i2("rect", { attrs: { width: "1.22648", height: "6.13242", transform: "matrix(-0.733847 -0.679315 0.733847 -0.679315 11.4996 22.9999)" } }), e2._v(" "), i2("rect", { attrs: { width: "1.22648", height: "6.13242", transform: "matrix(0.733847 -0.679315 0.733847 0.679315 7 18.8331)" } })]);
|
|
371
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), edit: e$
|
|
411
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), edit: e$c({ render: function() {
|
|
372
412
|
var e2 = this.$createElement;
|
|
373
413
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M22.6263 3.36328C23.1245 3.86155 23.1245 4.66643 22.6263 5.1647L20.2883 7.50271L15.4973 2.71171L17.8353 0.373698C18.3335 -0.124566 19.1384 -0.124566 19.6367 0.373698L22.6263 3.36328ZM0 23.0001V18.2091L14.1303 4.07886L18.9213 8.86987L4.791 23.0001H0Z" } });
|
|
374
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ellipsis: e$
|
|
414
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ellipsis: e$c({ render: function() {
|
|
375
415
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
376
416
|
return t2("g", [t2("path", { attrs: { d: "M11.5 8.69377C12.3284 8.69377 13 8.01961 13 7.18798C13 6.35636 12.3284 5.68219 11.5 5.68219C10.6716 5.68219 10 6.35636 10 7.18798C10 8.01961 10.6716 8.69377 11.5 8.69377Z" } }), this._v(" "), t2("path", { attrs: { d: "M11.5 13.0058C12.3284 13.0058 13 12.3316 13 11.5C13 10.6684 12.3284 9.9942 11.5 9.9942C10.6716 9.9942 10 10.6684 10 11.5C10 12.3316 10.6716 13.0058 11.5 13.0058Z" } }), this._v(" "), t2("path", { attrs: { d: "M11.5 17.3179C12.3284 17.3179 13 16.6437 13 15.8121C13 14.9804 12.3284 14.3063 11.5 14.3063C10.6716 14.3063 10 14.9804 10 15.8121C10 16.6437 10.6716 17.3179 11.5 17.3179Z" } })]);
|
|
377
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), expanded: e$
|
|
417
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), expanded: e$c({ render: function() {
|
|
378
418
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
379
419
|
return t2("g", [t2("path", { attrs: { d: "M12.3356 0.500488H0.447998V12.256L12.3356 0.500488Z" } }), this._v(" "), t2("rect", { attrs: { width: "3.30881", height: "8.73784", transform: "matrix(0.711046 -0.703145 0.711046 0.703145 3.54883 5.89368)" } }), this._v(" "), t2("path", { attrs: { d: "M11.5604 23.5005L23.448 23.5005L23.448 11.7449L11.5604 23.5005Z" } }), this._v(" "), t2("rect", { attrs: { width: "3.30881", height: "8.73784", transform: "matrix(-0.711046 0.703145 -0.711046 -0.703146 20.3464 18.1073)" } })]);
|
|
380
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), explosion: e$
|
|
420
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), explosion: e$c({ render: function() {
|
|
381
421
|
var e2 = this.$createElement;
|
|
382
422
|
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" } });
|
|
383
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), export: e$
|
|
423
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), export: e$c({ render: function() {
|
|
384
424
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
385
425
|
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" } })]);
|
|
386
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), exportIfc: e$
|
|
426
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), exportIfc: e$c({ render: function() {
|
|
387
427
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
388
428
|
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" } })]);
|
|
389
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), failed: e$
|
|
429
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), failed: e$c({ render: function() {
|
|
390
430
|
var e2 = this.$createElement;
|
|
391
431
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5 23.0664C17.8513 23.0664 23 17.9177 23 11.5664C23 5.21513 17.8513 0.0664062 11.5 0.0664062C5.14873 0.0664062 0 5.21513 0 11.5664C0 17.9177 5.14873 23.0664 11.5 23.0664ZM16.0918 5.81641L17.25 6.97462L12.6582 11.5664L17.25 16.1582L16.0918 17.3164L11.5 12.7246L6.90821 17.3164L5.75 16.1582L10.3418 11.5664L5.75 6.97462L6.90821 5.81641L11.5 10.4082L16.0918 5.81641Z" } });
|
|
392
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filter: e$
|
|
432
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filter: e$c({ render: function() {
|
|
393
433
|
var e2 = this.$createElement;
|
|
394
434
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 6.55556H23V4H0V6.55556ZM3.83333 12.9442H19.1679V10.3887H3.83333V12.9442ZM8.94442 19.3336H14.0555V16.778H8.94442V19.3336Z" } });
|
|
395
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fitView: e$
|
|
435
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fitView: e$c({ render: function() {
|
|
396
436
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
397
437
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.07563 14.7426C5.80119 14.7426 3.15796 12.0993 3.15796 8.8249C3.15796 5.55045 5.80119 2.90723 9.07563 2.90723C12.3501 2.90723 14.9933 5.55045 14.9933 8.8249C14.9933 12.0993 12.3501 14.7426 9.07563 14.7426V14.7426ZM16.966 14.7428H15.9272L15.559 14.3878C16.8477 12.8886 17.6236 10.9424 17.6236 8.82515C17.6236 4.10416 13.7968 0.277405 9.07582 0.277405C4.35484 0.277405 0.528076 4.10416 0.528076 8.82515C0.528076 13.5461 4.35484 17.3729 9.07582 17.3729C11.193 17.3729 13.1393 16.597 14.6384 15.3083L14.9935 15.6765V16.7154L21.5687 23.2774L23.5281 21.318L16.966 14.7428Z" } }), this._v(" "), t2("path", { attrs: { d: "M4.309 11.6279L9.12309 13.831L13.9372 11.6279C14.0188 11.6279 14.1004 11.4648 14.1004 11.3832V6.1611C14.1004 6.0795 14.0188 5.99791 13.9372 5.91632L9.12309 3.71326C9.0415 3.71326 8.9599 3.71326 8.87831 3.71326L5.53292 5.42675C5.45133 5.50834 5.36973 5.58994 5.45133 5.75313C5.53292 5.83472 5.69611 5.91632 5.77771 5.83472L9.20469 4.20283L13.366 6.0795L9.12309 7.87459L4.47219 5.99791C4.3906 5.99791 4.309 5.99791 4.22741 5.99791C4.22741 6.0795 4.14581 6.1611 4.14581 6.24269V11.4648C4.14581 11.5464 4.22741 11.6279 4.309 11.6279ZM4.63538 6.56907L9.0415 8.44575C9.12309 8.44575 9.20469 8.44575 9.20469 8.44575L13.6924 6.56907V11.3016L9.36788 13.2598V9.42489C9.36788 9.2617 9.28628 9.18011 9.12309 9.18011C8.9599 9.18011 8.87831 9.2617 8.87831 9.42489V13.2598L4.63538 11.3016V6.56907Z" } })]);
|
|
398
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folder: e$
|
|
438
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folder: e$c({ render: function() {
|
|
399
439
|
var e2 = this.$createElement;
|
|
400
440
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.19976 3H2.29984C1.03451 3 0.0111238 4.03491 0.0111238 5.30024L0 19.1001C0 20.3654 1.03451 21.4003 2.29984 21.4003H20.6998C21.9651 21.4003 23 20.3654 23 19.1001V7.60008C23 6.33515 21.9651 5.30024 20.6998 5.30024H11.5L9.19976 3Z" } });
|
|
401
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderMove: e$
|
|
441
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderMove: e$c({ render: function() {
|
|
402
442
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
403
443
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.29985 18.1002H20.6999V6.60037H2.29985V18.1002ZM20.6998 4.3002H11.4998L9.2 2H2.2998C1.03489 2 0.0115209 3.03529 0.0115209 4.3002L0 18.1002C0 19.3651 1.03489 20.4 2.2998 20.4H20.6998C21.9647 20.4 23 19.3651 23 18.1002V6.6C23 5.33509 21.9647 4.3002 20.6998 4.3002Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.653 16.72L15.0877 13.2854L15.9467 12.4268L15.0877 11.5679L11.653 8.1333L10.7945 8.99185L13.6219 11.8193L7.35999 11.8193L7.35999 12.4266L7.35999 13.034L13.6219 13.034L10.7945 15.8614L11.653 16.72Z" } })]);
|
|
404
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderOpen: e$
|
|
444
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderOpen: e$c({ render: function() {
|
|
405
445
|
var e2 = this.$createElement;
|
|
406
446
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.29979 19.1002H20.6998V7.60039H2.29979V19.1002ZM20.6998 5.3002H11.4998L9.2 3H2.2998C1.03489 3 0.0115209 4.03529 0.0115209 5.3002L0 19.1002C0 20.3651 1.03489 21.4 2.2998 21.4H20.6998C21.9647 21.4 23 20.3651 23 19.1002V7.6C23 6.33509 21.9647 5.3002 20.6998 5.3002Z" } });
|
|
407
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fullscreen: e$
|
|
447
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fullscreen: e$c({ render: function() {
|
|
408
448
|
var e2 = this.$createElement;
|
|
409
449
|
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$
|
|
450
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), grid: e$c({ render: function() {
|
|
411
451
|
var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
|
|
412
452
|
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" } })]);
|
|
413
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), group: e$
|
|
453
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), group: e$c({ render: function() {
|
|
414
454
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
415
455
|
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" } })]);
|
|
416
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), hide: e$
|
|
456
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), hide: e$c({ render: function() {
|
|
417
457
|
var e2 = this.$createElement;
|
|
418
458
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.99087 6.78082L0.945206 3.73516L1.68037 3L19.4292 20.6438L18.6941 21.379L16.1735 18.8584C14.7032 19.4886 13.1279 19.8037 11.4475 19.8037C6.30137 19.8037 1.78539 16.653 0 12.032C0.840183 9.93151 2.20548 8.14612 3.99087 6.78082ZM6.19635 12.032C6.19635 14.9726 8.61187 17.2831 11.4475 17.2831C12.2877 17.2831 13.1279 17.0731 13.863 16.653L12.2877 15.0776C11.9726 15.1826 11.7626 15.1826 11.4475 15.1826C9.6621 15.1826 8.2968 13.7123 8.2968 12.032C8.2968 11.7169 8.2968 11.4018 8.40183 11.1918L6.82648 9.61644C6.40639 10.3516 6.19635 11.1918 6.19635 12.032ZM11.4476 4.26048C9.34714 4.26048 7.45673 4.7856 5.77637 5.62578L8.19189 8.0413C9.1371 7.30614 10.1873 6.88605 11.4476 6.88605C14.2832 6.88605 16.6987 9.19656 16.6987 12.1372C16.6987 13.3975 16.2786 14.5527 15.5435 15.3929L18.1691 18.0185C20.3745 16.6532 22.0549 14.5527 23.0001 12.1372C21.1097 7.41117 16.6987 4.26048 11.4476 4.26048ZM11.4475 8.88086C10.8174 8.88086 10.1872 9.0909 9.66211 9.511L14.0731 13.922C14.3881 13.3968 14.7032 12.7667 14.7032 12.1366C14.5982 10.3512 13.1279 8.88086 11.4475 8.88086Z" } });
|
|
419
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ifc: e$
|
|
459
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ifc: e$c({ render: function() {
|
|
420
460
|
var e2 = this.$createElement;
|
|
421
461
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.4279 1.14627C14.9692 0.177724 17.0281 0.401832 18.3218 1.77945L21.9637 5.65738C23.253 7.03033 23.3545 9.09327 22.3069 10.5743L22.3051 10.5723C22.157 10.782 21.9859 10.98 21.7919 11.1628L18.8817 13.905C18.6464 14.1267 18.3908 14.3134 18.1213 14.4652L18.1224 14.4663C17.8104 14.6415 17.4799 14.7701 17.1408 14.8522C16.1239 15.1002 15.0293 14.9307 14.1257 14.3521L14.1289 14.3492L14.1044 14.3334L16.1763 12.3987L16.1869 12.41L20.3454 8.49157L15.3586 3.1964L13.809 4.67919L11.8711 2.6468L13.4333 1.15203L13.4279 1.14627ZM13.7555 9.82669L11.6102 11.8298L9.76531 9.85607C8.52837 8.53274 8.39124 6.57409 9.31689 5.11091L13.7555 9.82669ZM0.690849 10.2425C-0.275375 8.69857 -0.0512554 6.63632 1.32401 5.34024L5.19394 1.69313C6.56454 0.401454 8.62364 0.299392 10.1021 1.34822L10.1006 1.34962C10.3096 1.49781 10.507 1.66901 10.6893 1.86309L13.4278 4.77961C13.6492 5.01543 13.8356 5.27159 13.9871 5.54167L13.9885 5.54034C14.2325 5.97628 14.3857 6.44824 14.4491 6.92921C14.5688 7.82737 14.3751 8.75745 13.8735 9.54335L13.8713 9.54092L13.856 9.56456L11.925 7.48933L11.9356 7.47939L8.02331 3.3128L2.73747 8.30833L4.21831 9.8614L2.18633 11.8057L0.693501 10.24L0.690849 10.2425ZM9.35752 9.91441L11.3569 12.0631L9.38551 13.9122C8.06488 15.151 6.11012 15.2882 4.6496 14.3611L9.35752 9.91441ZM9.77347 22.9615C8.23216 23.93 6.17324 23.7059 4.87947 22.3283L1.23761 18.4504C-0.0517673 17.0774 -0.15322 15.0144 0.894438 13.5334L0.896188 13.5353C1.04427 13.3256 1.21537 13.1276 1.40936 12.9448L4.31957 10.2026C4.5547 9.98105 4.81009 9.7945 5.07933 9.64277L5.07808 9.64144C5.39912 9.46112 5.73974 9.33026 6.08911 9.24851C7.0979 9.01064 8.18039 9.18229 9.07548 9.75545L9.07196 9.75876L9.09521 9.77379L7.02345 11.7083L7.01381 11.6981L2.85576 15.616L7.84304 20.9117L9.39298 19.4286L11.3413 21.472L9.78006 22.9659L9.58559 22.7619L9.77347 22.9615ZM9.44428 14.2803L11.5896 12.2772L13.4352 14.2517C14.6721 15.575 14.8092 17.5337 13.8836 18.9969L9.44428 14.2803ZM21.8757 18.8078C23.251 17.5117 23.4751 15.4495 22.5088 13.9055L22.5063 13.9079L21.0138 12.3426L18.9822 14.2865L20.4627 15.8393L15.1772 20.8345L11.265 16.668L11.2756 16.658L9.34443 14.5826L9.32915 14.6063L9.32712 14.6041C8.94205 15.2075 8.73846 15.8958 8.71879 16.5894C8.69813 17.2832 8.86144 17.9825 9.21132 18.6077L9.21348 18.6057C9.36503 18.8758 9.55143 19.132 9.77289 19.3678L12.5114 22.2844C12.6936 22.4784 12.8909 22.6495 13.0999 22.7977L13.0976 22.7998C14.576 23.8487 16.6352 23.7466 18.0058 22.4549L21.8757 18.8078ZM11.8438 12.0842L13.8431 14.2329L18.5502 9.78693C17.0897 8.85986 15.1349 8.9971 13.8143 10.2358L11.8438 12.0842Z" } });
|
|
422
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ifcFile: e$
|
|
462
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ifcFile: e$c({ render: function() {
|
|
423
463
|
var e2 = this.$createElement;
|
|
424
464
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3 0.479167V22.5208C3 22.7844 3.21563 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.21563 0 3 0.215625 3 0.479167ZM4.4375 9.82251H18.8125V21.5621H4.4375V9.82251ZM5.06037 4.88621V1.48413H4.2937V4.88621H5.06037ZM5.75516 1.48413H7.81558V2.10705H6.52183V2.87371H7.7437V3.49663H6.52183V4.86226H5.75516V1.48413ZM10.0197 4.93444C10.427 4.93444 10.7385 4.86257 10.8822 4.79069L10.7625 4.16777C10.5947 4.23965 10.3552 4.28757 10.1156 4.28757C9.44474 4.28757 9.03745 3.85632 9.03745 3.18548C9.03745 2.41882 9.51662 2.05944 10.1156 2.05944C10.3791 2.05944 10.5947 2.10736 10.7625 2.17923L10.9302 1.58027C10.7864 1.5084 10.4989 1.43652 10.0916 1.43652C9.08537 1.43652 8.24683 2.0834 8.24683 3.2334C8.24683 4.19173 8.84578 4.93444 10.0197 4.93444ZM20.226 5.75034C20.202 5.65451 20.178 5.58263 20.1301 5.51076L15.4583 0.287842V5.75034H20.226ZM13.1105 11.1157C13.374 11.1157 13.5896 11.2116 13.7573 11.3793C14.012 11.6339 14.2693 11.8886 14.5276 12.1442L14.5276 12.1442L14.5277 12.1443L14.5278 12.1444C15.0468 12.6581 15.5694 13.1753 16.0813 13.7032C16.4646 14.0866 16.4646 14.6376 16.0813 15.0209C15.6669 15.4512 15.242 15.8709 14.8135 16.2941L14.8133 16.2943L14.8133 16.2943L14.8133 16.2943L14.8132 16.2944C14.5976 16.5073 14.3811 16.7211 14.1646 16.9376C13.7573 17.3209 13.2063 17.3209 12.799 16.9376C12.7032 16.8418 12.6792 16.7938 12.799 16.6741C13.2951 16.194 13.7804 15.7033 14.2622 15.2161L14.2624 15.216L14.2625 15.2159C14.502 14.9737 14.7406 14.7325 14.9792 14.4938C15.099 14.3741 15.099 14.3022 14.9792 14.1824C14.7867 13.9899 14.5942 13.8 14.4025 13.6111L14.4024 13.611C14.0218 13.2356 13.6447 12.8638 13.2782 12.4813C13.1584 12.3616 13.0865 12.3376 12.9667 12.4813C12.8876 12.5763 12.7981 12.6607 12.705 12.7485C12.6571 12.7937 12.6083 12.8398 12.5594 12.8886C12.4876 12.9605 12.4396 12.9845 12.3438 12.8886C12.2152 12.7439 12.0757 12.61 11.94 12.4796L11.9399 12.4796C11.8735 12.4157 11.8079 12.3527 11.7448 12.2897C11.649 12.2178 11.673 12.1459 11.7448 12.0741L12.4636 11.3553C12.6553 11.2116 12.8709 11.1157 13.1105 11.1157ZM7.16882 13.8711C7.00111 14.0388 6.90527 14.2544 6.90527 14.494C6.90527 14.7336 6.97715 14.9732 7.21673 15.1888L7.71986 15.6919C7.87778 15.8377 7.95562 15.9095 8.03148 15.9075C8.10522 15.9055 8.17708 15.8336 8.31881 15.6919L8.31882 15.6919C8.36673 15.644 8.42246 15.5961 8.47819 15.5482L8.47821 15.5482C8.61756 15.4284 8.75691 15.3086 8.77402 15.1888C8.77402 15.0549 8.63367 14.9443 8.49189 14.8327L8.49188 14.8327C8.43074 14.7845 8.36934 14.7362 8.31882 14.6857L8.29486 14.6617C8.17507 14.5659 8.19902 14.494 8.29486 14.3982L10.0199 12.6732C10.1396 12.5534 10.1876 12.5294 10.3313 12.6732L12.4876 14.8294C12.5834 14.9492 12.6553 14.9492 12.7511 14.8294C13.1105 14.4221 13.1344 13.8711 12.7511 13.4877L10.8105 11.5471C10.4511 11.1877 9.87611 11.1877 9.51673 11.5471C8.72611 12.3138 7.93548 13.0805 7.16882 13.8711ZM10.3073 20.6987C10.0198 20.6987 9.80422 20.6029 9.61255 20.4352L9.61246 20.4351C8.84582 19.6684 8.07919 18.9018 7.31255 18.1591C6.90526 17.7518 6.90526 17.2008 7.31255 16.7935C7.7287 16.3614 8.15554 15.9399 8.57878 15.522L8.57881 15.522L8.57886 15.5219L8.57903 15.5217L8.57919 15.5216L8.57942 15.5214L8.57958 15.5212C8.78961 15.3138 8.99875 15.1073 9.20526 14.9008C9.61255 14.4935 10.1636 14.5175 10.5709 14.9008C10.6907 15.0206 10.6667 15.0685 10.5709 15.1643C9.85213 15.8831 9.13338 16.6018 8.39067 17.3206C8.27088 17.4404 8.27088 17.5123 8.39067 17.632L10.1157 19.3571C10.2115 19.4529 10.2834 19.4768 10.3792 19.3571L10.8105 18.9258C10.8823 18.8539 10.9303 18.8539 10.9782 18.9258L11.6011 19.5487C11.673 19.6206 11.673 19.6685 11.6011 19.7404C11.3615 19.98 11.1219 20.2196 10.8584 20.4591C10.7386 20.6268 10.523 20.6987 10.3073 20.6987ZM16.4886 17.3207C16.4886 17.5842 16.4167 17.7998 16.2251 17.9676C15.4584 18.7582 14.6678 19.5248 13.8772 20.2915C13.5178 20.6509 12.9667 20.6509 12.6074 20.3155C11.9365 19.6686 11.2657 18.9978 10.6188 18.3269C10.2355 17.9436 10.3074 17.3207 10.7147 16.9613C10.8045 16.8894 10.8404 16.9254 10.8831 16.968L10.8831 16.9681C10.8974 16.9823 10.9123 16.9972 10.9303 17.0092C11.1689 17.2478 11.4102 17.4865 11.6523 17.726L11.6524 17.726L11.6526 17.7262L11.6526 17.7263C12.1397 18.208 12.6305 18.6934 13.1105 19.1894C13.2303 19.3092 13.2782 19.3092 13.398 19.1894C13.973 18.5905 14.548 18.0155 15.147 17.4405C15.2667 17.3207 15.2667 17.2728 15.147 17.1769C15.0521 17.0978 14.9676 17.0083 14.8798 16.9152L14.8798 16.9152C14.8346 16.8673 14.7885 16.8185 14.7397 16.7696C14.6438 16.6978 14.6199 16.6259 14.7397 16.554C14.9553 16.3623 15.147 16.1707 15.3386 15.9551C15.4105 15.8832 15.4584 15.8592 15.5542 15.9551L15.5543 15.9551L15.5543 15.9551C15.7939 16.1947 16.0334 16.4342 16.273 16.6978C16.4167 16.8655 16.4886 17.0811 16.4886 17.3207ZM14.3564 14.7815C14.1647 14.5898 13.9251 14.47 13.5418 14.446C13.398 14.446 13.1584 14.5419 12.9907 14.7096C12.6074 15.069 12.248 15.4283 11.8886 15.7877C11.7928 15.8835 11.8168 15.9315 11.8886 16.0033C12.0333 16.132 12.1673 16.2714 12.2976 16.4071L12.2977 16.4071L12.2977 16.4071C12.3616 16.4737 12.4246 16.5393 12.4876 16.6023C12.5595 16.6742 12.6074 16.6981 12.7032 16.6023L14.3564 14.9492C14.4043 14.9013 14.4282 14.8533 14.3564 14.7815ZM13.1584 17.848C13.1584 18.1355 13.0386 18.3751 12.823 18.5667C12.7511 18.6386 12.7032 18.6386 12.6553 18.5667L12.6553 18.5667C12.1042 18.0157 11.5532 17.4647 10.9782 16.9136C10.9063 16.8417 10.9063 16.7938 10.9782 16.7459C11.1938 16.5542 11.4095 16.3386 11.6011 16.123C11.673 16.0511 11.7209 16.0511 11.7928 16.123C12.0315 16.3777 12.2809 16.6217 12.5337 16.8693L12.5337 16.8693L12.534 16.8696C12.6617 16.9946 12.7903 17.1205 12.9188 17.249C13.0866 17.3928 13.1584 17.6084 13.1584 17.848ZM10.7402 13.269C10.7219 13.2452 10.7002 13.2169 10.6668 13.2002C10.6189 13.2242 10.5949 13.2481 10.5709 13.296C10.1636 13.6554 10.1157 14.2304 10.4991 14.6377C10.6787 14.8294 10.8644 15.009 11.0501 15.1887C11.2358 15.3684 11.4215 15.5481 11.6011 15.7398C11.673 15.8117 11.7209 15.8117 11.7928 15.7398C11.8558 15.6768 11.9189 15.6111 11.9827 15.5446L11.9827 15.5446C12.1131 15.4089 12.2471 15.2695 12.3918 15.1408C12.4636 15.045 12.4636 14.9971 12.3918 14.9252L10.7626 13.296C10.7553 13.2888 10.7481 13.2793 10.7402 13.269ZM9.78022 17.3688C9.49272 17.3688 9.25314 17.2491 9.06147 17.0334C8.9896 16.9616 8.9896 16.9136 9.06147 16.8657L10.7146 15.2126C10.7865 15.1407 10.8344 15.1407 10.9063 15.2126C11.0332 15.3554 11.1707 15.4878 11.3117 15.6235C11.3836 15.6927 11.4564 15.7627 11.5292 15.8355C11.6011 15.9074 11.6011 15.9313 11.5292 16.0032L10.3792 17.1532C10.2115 17.297 9.99585 17.3688 9.78022 17.3688Z" } });
|
|
425
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), import: e$
|
|
465
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), import: e$c({ render: function() {
|
|
426
466
|
var e2 = this.$createElement;
|
|
427
467
|
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$
|
|
468
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexAscending: e$c({ render: function() {
|
|
429
469
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
430
470
|
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$
|
|
471
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexDescending: e$c({ render: function() {
|
|
432
472
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
433
473
|
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" } })])]);
|
|
434
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), information: e$
|
|
474
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), information: e$c({ render: function() {
|
|
435
475
|
var e2 = this.$createElement;
|
|
436
476
|
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" } });
|
|
437
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), inProgressFile: e$
|
|
477
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), inProgressFile: e$c({ render: function() {
|
|
438
478
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
439
479
|
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$
|
|
480
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), invitation: e$c({ render: function() {
|
|
441
481
|
var e2 = this.$createElement;
|
|
442
482
|
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" } });
|
|
443
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), isolate: e$
|
|
483
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), isolate: e$c({ render: function() {
|
|
444
484
|
var e2 = this.$createElement;
|
|
445
485
|
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" } });
|
|
446
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), key: e$
|
|
486
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), key: e$c({ render: function() {
|
|
447
487
|
var e2 = this.$createElement;
|
|
448
488
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.0178 10.0262C19.0178 12.9638 16.6364 15.3452 13.6988 15.3452C13.0611 15.3452 12.4495 15.233 11.8829 15.0272L10.9023 16.0078H9.00661V17.8483H7.12931V19.7072H3.98207L3.98206 16.5967L8.7106 11.8769C8.49667 11.3005 8.37977 10.677 8.37977 10.0262C8.37977 7.08856 10.7612 4.70715 13.6988 4.70715C16.6364 4.70715 19.0178 7.08856 19.0178 10.0262ZM16.6431 8.77465C16.6431 9.67924 15.9098 10.4125 15.0052 10.4125C14.1006 10.4125 13.3673 9.67924 13.3673 8.77465C13.3673 7.87007 14.1006 7.13675 15.0052 7.13675C15.9098 7.13675 16.6431 7.87007 16.6431 8.77465Z" } });
|
|
449
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), left: e$
|
|
489
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), left: e$c({ render: function() {
|
|
450
490
|
var e2 = this.$createElement;
|
|
451
491
|
return (this._self._c || e2)("path", { attrs: { d: "M0.481203 11.7773L21.9479 0.277346L21.9479 23.2773L0.481203 11.7773Z" } });
|
|
452
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), linkedDocument: e$
|
|
492
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), linkedDocument: e$c({ render: function() {
|
|
453
493
|
var e2 = this.$createElement;
|
|
454
494
|
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$
|
|
495
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), list: e$c({ render: function() {
|
|
456
496
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
457
497
|
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" } })]);
|
|
458
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), listManage: e$
|
|
498
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), listManage: e$c({ render: function() {
|
|
459
499
|
var e2 = this.$createElement;
|
|
460
500
|
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" } });
|
|
461
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), location: e$
|
|
501
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), location: e$c({ render: function() {
|
|
462
502
|
var e2 = this.$createElement;
|
|
463
503
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4 8.05C4 3.5995 7.5995 0 12.05 0C16.5005 0 20.1 3.5995 20.1 8.05C20.1 14.0875 12.05 23 12.05 23C12.05 23 4 14.0875 4 8.05ZM9.17501 8.05011C9.17501 9.63711 10.463 10.9251 12.05 10.9251C13.637 10.9251 14.925 9.63711 14.925 8.05011C14.925 6.46311 13.637 5.17511 12.05 5.17511C10.463 5.17511 9.17501 6.46311 9.17501 8.05011Z" } });
|
|
464
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), lock: e$
|
|
504
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), lock: e$c({ render: function() {
|
|
465
505
|
var e2 = this.$createElement;
|
|
466
506
|
return (this._self._c || e2)("path", { attrs: { d: "M18.3333 7.66667H17.2381V5.47619C17.2381 2.45333 14.7848 0 11.7619 0C8.73905 0 6.28571 2.45333 6.28571 5.47619V7.66667H5.19048C3.98571 7.66667 3 8.65238 3 9.85714V20.8095C3 22.0143 3.98571 23 5.19048 23H18.3333C19.5381 23 20.5238 22.0143 20.5238 20.8095V9.85714C20.5238 8.65238 19.5381 7.66667 18.3333 7.66667ZM11.7619 17.5238C10.5571 17.5238 9.57143 16.5381 9.57143 15.3333C9.57143 14.1286 10.5571 13.1429 11.7619 13.1429C12.9667 13.1429 13.9524 14.1286 13.9524 15.3333C13.9524 16.5381 12.9667 17.5238 11.7619 17.5238ZM15.1571 7.66667H8.36667V5.47619C8.36667 3.60333 9.88905 2.08095 11.7619 2.08095C13.6348 2.08095 15.1571 3.60333 15.1571 5.47619V7.66667Z" } });
|
|
467
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), logout: e$
|
|
507
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), logout: e$c({ render: function() {
|
|
468
508
|
var e2 = this.$createElement;
|
|
469
509
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.6434 4.08305L16.9078 5.8186C18.8389 7.37083 20.0734 9.75416 20.0734 12.4308C20.0734 17.1608 16.2478 20.9864 11.5178 20.9864C6.78782 20.9864 2.96227 17.1608 2.96227 12.4308C2.96227 9.75416 4.19671 7.37083 6.1156 5.80638L4.39227 4.08305C2.02116 6.09972 0.517822 9.08194 0.517822 12.4308C0.517822 18.5053 5.44338 23.4308 11.5178 23.4308C17.5923 23.4308 22.5178 18.5053 22.5178 12.4308C22.5178 9.08194 21.0133 6.09972 18.6434 4.08305ZM10.2956 13.6531H12.74V1.43085H10.2956V13.6531Z" } });
|
|
470
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), measure: e$
|
|
510
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), measure: e$c({ render: function() {
|
|
471
511
|
var e2 = this.$createElement;
|
|
472
512
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.7717 0.241397L16.4534 1.55968L17.4627 2.56896C17.5803 2.68652 17.5803 2.87926 17.4627 2.99714L16.7515 3.708C16.634 3.82589 16.4412 3.82589 16.3234 3.708L15.3144 2.69873L14.4963 3.51656L16.4711 5.49142C16.589 5.60931 16.589 5.80204 16.4711 5.9196L15.7603 6.63046C15.6427 6.74835 15.4496 6.74835 15.3321 6.63046L13.3572 4.65592L12.5693 5.44388L13.5786 6.45283C13.6961 6.57072 13.6961 6.76345 13.5786 6.88102L12.8677 7.59188C12.7498 7.70976 12.5571 7.70976 12.4395 7.59188L11.4303 6.58292L10.5588 7.45439L12.5336 9.42926C12.6515 9.54682 12.6515 9.73955 12.5336 9.85712L11.8225 10.568C11.7049 10.6859 11.5122 10.6859 11.3946 10.568L9.41976 8.59312L8.59969 9.41352L9.60896 10.4225C9.72684 10.5404 9.72684 10.7331 9.60896 10.8507L8.8981 11.5618C8.78022 11.6794 8.58749 11.6794 8.46992 11.5618L7.46066 10.5526L6.65344 11.3598L8.62828 13.3346C8.74585 13.4522 8.74585 13.6449 8.62828 13.7625L7.91711 14.4737C7.79954 14.5913 7.60681 14.5913 7.48925 14.4737L5.51441 12.4988L4.71554 13.2977L5.7248 14.3067C5.84269 14.4245 5.84269 14.617 5.7248 14.7348L5.01395 15.4457C4.89607 15.5636 4.70334 15.5636 4.58577 15.4457L3.57651 14.4364L2.72496 15.288L4.6998 17.2628C4.81737 17.3807 4.81737 17.5735 4.6998 17.691L3.98895 18.4022C3.87106 18.5198 3.67833 18.5198 3.56077 18.4022L1.58593 16.4274L0.241635 17.7717C-0.0805451 18.0935 -0.0805451 18.6203 0.241635 18.9422L4.05769 22.7586C4.37987 23.0805 4.90634 23.0805 5.22852 22.7586L22.7586 5.22834C23.0805 4.90615 23.0805 4.37968 22.7586 4.05749L18.9422 0.241397C18.6204 -0.0804656 18.0936 -0.0804656 17.7717 0.241397Z" } });
|
|
473
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), minus: e$
|
|
513
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), minus: e$c({ render: function() {
|
|
474
514
|
var e2 = this.$createElement;
|
|
475
515
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0.0178223 13.2484H23.0178V9.9584H0.0178223V13.2484Z" } });
|
|
476
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), model3d: e$
|
|
516
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), model3d: e$c({ render: function() {
|
|
477
517
|
var e2 = this.$createElement;
|
|
478
518
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M22.6758 5.03818L11.7623 0.0529037C11.607 -0.0183966 11.4265 -0.0172466 11.2712 0.0540537L3.22117 3.79272C2.93826 3.92497 2.81981 4.25157 2.95666 4.52413C3.09236 4.79668 3.43277 4.91168 3.71452 4.77943L11.5208 1.15461L21.0739 5.51773L11.4633 9.6175L0.795804 5.14398C0.619853 5.07038 0.417452 5.08648 0.257601 5.18768C0.0966005 5.28888 0 5.46138 0 5.64653V17.5042C0 17.717 0.127651 17.9102 0.327752 18.001L11.277 22.9484C11.2793 22.9495 11.2827 22.9495 11.285 22.9507C11.2977 22.9564 11.3115 22.9622 11.3241 22.9668C11.3299 22.9679 11.3356 22.9702 11.3402 22.9725C11.3552 22.9771 11.369 22.9806 11.3851 22.984C11.3897 22.9852 11.3931 22.9863 11.3989 22.9875C11.415 22.9909 11.4299 22.9932 11.446 22.9955L11.4587 22.9967C11.4782 22.999 11.4978 23.0001 11.5185 23.0001C11.5392 23.0001 11.5587 22.999 11.5794 22.9967C11.5829 22.9967 11.5863 22.9955 11.5909 22.9955C11.607 22.9932 11.6231 22.9909 11.6392 22.9875C11.6438 22.9863 11.6484 22.9852 11.653 22.984C11.668 22.9806 11.6829 22.9771 11.6967 22.9725C11.7025 22.9702 11.7071 22.9679 11.7128 22.9668C11.7266 22.961 11.7404 22.9564 11.7531 22.9507C11.7554 22.9495 11.7577 22.9495 11.76 22.9484L22.6747 17.9999C22.8736 17.9102 23.0001 17.717 23.0001 17.5042V5.53268C23.0001 5.32108 22.8736 5.12903 22.6758 5.03818ZM21.8637 17.1569L12.0863 21.5902V12.9444C12.0863 12.642 11.8322 12.397 11.5182 12.397C11.2043 12.397 10.9501 12.642 10.9501 12.9444V21.5913L1.13713 17.1569V6.48138L11.2388 10.718C11.3848 10.779 11.5504 10.779 11.6953 10.7169L21.8637 6.37903V17.1569Z" } });
|
|
479
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), organization: e$
|
|
519
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), organization: e$c({ render: function() {
|
|
480
520
|
var e2 = this.$createElement;
|
|
481
521
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.0002 5.24957C14.0002 6.6303 12.8809 7.7496 11.5001 7.7496C10.1194 7.7496 9.00009 6.6303 9.00009 5.24957C9.00009 3.86884 10.1194 2.74954 11.5001 2.74954C12.8809 2.74954 14.0002 3.86884 14.0002 5.24957ZM15.4247 7.45313C14.6534 8.82378 13.1849 9.74962 11.5001 9.74962C9.01481 9.74962 7.00007 7.73488 7.00007 5.24957C7.00007 2.76426 9.01481 0.749512 11.5001 0.749512C13.9854 0.749512 16.0002 2.76426 16.0002 5.24957C16.0002 5.31734 15.9987 5.38477 15.9957 5.45181C18.3978 6.83951 20.099 9.30513 20.4381 12.1875C21.9533 12.9117 23 14.4586 23 16.25C23 18.7353 20.9852 20.75 18.4999 20.75C16.0146 20.75 13.9999 18.7353 13.9999 16.25C13.9999 13.8183 15.9285 11.8371 18.3396 11.7527C17.9513 9.97155 16.885 8.44368 15.4247 7.45313ZM7.00009 16.25C7.00009 17.6307 5.88079 18.75 4.50006 18.75C3.11933 18.75 2.00003 17.6307 2.00003 16.25C2.00003 14.8692 3.11933 13.7499 4.50006 13.7499C5.88079 13.7499 7.00009 14.8692 7.00009 16.25ZM9.00011 16.25C9.00011 18.7353 6.98537 20.75 4.50006 20.75C2.01474 20.75 0 18.7353 0 16.25C0 14.4585 1.0468 12.9116 2.56208 12.1874C2.90121 9.30518 4.60227 6.83967 7.00417 5.45195C7.03624 6.17683 7.2398 6.85713 7.57526 7.45328C6.11501 8.44384 5.04879 9.97164 4.66057 11.7527C7.07154 11.8372 9.00011 13.8184 9.00011 16.25ZM18.4999 18.75C19.8807 18.75 21 17.6307 21 16.25C21 14.8692 19.8807 13.7499 18.4999 13.7499C17.1192 13.7499 15.9999 14.8692 15.9999 16.25C15.9999 17.6307 17.1192 18.75 18.4999 18.75ZM15.1323 19.2356C15.6087 19.7726 16.2116 20.1948 16.8942 20.4556C15.391 21.5828 13.5235 22.2505 11.5001 22.2505C9.47656 22.2505 7.60903 21.5827 6.10581 20.4555C6.78842 20.1947 7.39124 19.7724 7.86758 19.2354C8.92655 19.8795 10.17 20.2505 11.5001 20.2505C12.8301 20.2505 14.0734 19.8796 15.1323 19.2356Z" } });
|
|
482
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), parameters: e$
|
|
522
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), parameters: e$c({ render: function() {
|
|
483
523
|
var e2 = this.$createElement;
|
|
484
524
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 17.8889V20.4444H7.66667V17.8889H0ZM0 2.55556V5.11111H12.7778V2.55556H0ZM12.7778 23V20.4444H23V17.8889H12.7778V15.3333H10.2222V23H12.7778ZM5.11111 7.66667V10.2222H0V12.7778H5.11111V15.3333H7.66667V7.66667H5.11111ZM23 12.7778V10.2222H10.2222V12.7778H23ZM15.3333 7.66667H17.8889V5.11111H23V2.55556H17.8889V0H15.3333V7.66667Z" } });
|
|
485
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), path: e$
|
|
525
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), path: e$c({ render: function() {
|
|
486
526
|
var e2 = this.$createElement;
|
|
487
527
|
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$
|
|
528
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), pieGraph: e$c({ render: function() {
|
|
489
529
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
490
530
|
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" } })]);
|
|
491
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), plus: e$
|
|
531
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), plus: e$c({ render: function() {
|
|
492
532
|
var e2 = this.$createElement;
|
|
493
533
|
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" } });
|
|
494
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), project: e$
|
|
534
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), project: e$c({ render: function() {
|
|
495
535
|
var e2 = this.$createElement;
|
|
496
536
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M7.3081 2.94247L12.5649 0V1.89286C18.2707 2.22812 22.7916 6.81993 22.7916 12.4362C22.7916 18.2704 17.9134 23 11.8958 23C5.87827 23 1 18.2704 1 12.4362C1 9.69438 2.07754 7.19679 3.84419 5.31913L5.54766 6.67278C4.09078 8.18052 3.19828 10.2072 3.19828 12.4362C3.19828 17.0934 7.09229 20.8687 11.8958 20.8687C16.6993 20.8687 20.5933 17.0934 20.5933 12.4362C20.5933 7.99732 17.0557 4.35959 12.5649 4.02832V5.88494L7.3081 2.94247ZM7.70508 12.5722C7.70508 10.2578 9.58134 8.38155 11.8958 8.38155C14.2102 8.38155 16.0865 10.2578 16.0865 12.5722C16.0865 14.8867 14.2102 16.7629 11.8958 16.7629C9.58134 16.7629 7.70508 14.8867 7.70508 12.5722Z" } });
|
|
497
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), quickSelect: e$
|
|
537
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), quickSelect: e$c({ render: function() {
|
|
498
538
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
499
539
|
return t2("g", [t2("path", { attrs: { d: "M18.3998 4.89012H7.57623C6.08799 4.89012 4.87035 6.10777 4.87035 7.59601V18.4195H3.51741C2.02917 18.4195 0.811523 17.2019 0.811523 15.7137V3.53718C0.811523 2.04895 2.02917 0.831299 3.51741 0.831299H15.6939C17.1821 0.831299 18.3998 2.04895 18.3998 3.53718V4.89012Z" } }), this._v(" "), t2("path", { attrs: { d: "M8.92915 6.24307H21.1056C22.5939 6.24307 23.8115 7.46072 23.8115 8.94896V21.1254C23.8115 22.6137 22.5939 23.8313 21.1056 23.8313H8.92915C7.44091 23.8313 6.22327 22.6137 6.22327 21.1254V8.94896C6.22327 7.46072 7.44091 6.24307 8.92915 6.24307ZM20.4291 10.3019L12.988 17.7431L10.0115 14.7666L8.92915 15.849L12.8527 19.7725L21.3762 11.249L20.4291 10.3019Z" } })]);
|
|
500
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), readonlyFolder: e$
|
|
540
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), readonlyFolder: e$c({ render: function() {
|
|
501
541
|
var e2 = this.$createElement;
|
|
502
542
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.29984 2H9.19976L11.5 4.30024H20.6998C21.9651 4.30024 23 5.33515 23 6.60008V18.1001C23 19.3654 21.9651 20.4003 20.6998 20.4003H2.29984C1.03451 20.4003 0 19.3654 0 18.1001L0.0111238 4.30024C0.0111238 3.03491 1.03451 2 2.29984 2ZM10 12.5C10 11.7253 10.67 11.1 11.5 11.1C12.33 11.1 13 11.7253 13 12.5C13 13.2747 12.33 13.9 11.5 13.9C10.67 13.9 10 13.2747 10 12.5ZM9 12.5C9 13.788 10.12 14.8333 11.5 14.8333C12.88 14.8333 14 13.788 14 12.5C14 11.212 12.88 10.1667 11.5 10.1667C10.12 10.1667 9 11.212 9 12.5ZM6 12.5C6.865 10.4513 9 9 11.5 9C14 9 16.135 10.4513 17 12.5C16.135 14.5487 14 16 11.5 16C9 16 6.865 14.5487 6 12.5Z" } });
|
|
503
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), redo: e$
|
|
543
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), redo: e$c({ render: function() {
|
|
504
544
|
var e2 = this.$createElement;
|
|
505
545
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.1921 0.277443L22.6409 5.41187L17.1921 10.5463V7.24548H10.0143C6.59996 7.24548 3.83206 10.0134 3.83206 13.4278C3.83206 16.8421 6.59996 19.61 10.0143 19.61H17.4016V23.2775H10.0143C4.57448 23.2775 0.164612 18.8676 0.164612 13.4278C0.164612 7.9879 4.57448 3.57803 10.0143 3.57803H17.1921V0.277443Z" } });
|
|
506
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reduced: e$
|
|
546
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reduced: e$c({ render: function() {
|
|
507
547
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
508
548
|
return t2("g", [t2("path", { attrs: { d: "M0.000108719 12.2561L11.8879 12.2561L11.8879 0.50036L0.000108719 12.2561Z" } }), this._v(" "), t2("rect", { attrs: { width: "3.30887", height: "8.73798", transform: "matrix(-0.711046 0.703145 -0.711046 -0.703146 8.78711 6.86267)" } }), this._v(" "), t2("path", { attrs: { d: "M23.0004 11.7451L11.1125 11.7451L11.1125 23.5009L23.0004 11.7451Z" } }), this._v(" "), t2("rect", { attrs: { width: "3.30887", height: "8.73798", transform: "matrix(0.711046 -0.703145 0.711046 0.703145 14.2141 17.1385)" } })]);
|
|
509
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), refresh: e$
|
|
549
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), refresh: e$c({ render: function() {
|
|
510
550
|
var e2 = this.$createElement;
|
|
511
551
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M12.3636 8.36364V5.22727C8.90318 5.22727 6.09091 8.03954 6.09091 11.5C6.09091 12.5559 6.35227 13.5595 6.82273 14.4273L5.29636 15.9536C4.48091 14.6677 4 13.1414 4 11.5C4 6.87909 7.74273 3.13636 12.3636 3.13636V0L16.5455 4.18182L12.3636 8.36364ZM17.9045 8.57278L19.4309 7.04642C20.2464 8.33233 20.7273 9.85869 20.7273 11.5001C20.7273 16.121 16.9845 19.8637 12.3636 19.8637V23.0001L8.18181 18.8182L12.3636 14.6364V17.7728C15.8241 17.7728 18.6364 14.9605 18.6364 11.5001C18.6364 10.4441 18.3645 9.45096 17.9045 8.57278Z" } });
|
|
512
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reprocessIfc: e$
|
|
552
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reprocessIfc: e$c({ render: function() {
|
|
513
553
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
514
554
|
return t2("g", [t2("path", { attrs: { d: "M11.8203 4.50582V5.99229L15.4758 3.25508L11.8203 0.553833V2.00433C6.00773 2.00433 1.2998 6.482 1.2998 12.0103C1.2998 13.974 1.90473 15.8 2.93048 17.3385L4.85047 15.5124C4.25869 14.4743 3.92993 13.2735 3.92993 12.0103C3.92993 7.87032 7.46745 4.50582 11.8203 4.50582Z" } }), this._v(" "), t2("path", { attrs: { d: "M11.7793 19.6018L11.7793 18.1154L8.12386 20.8526L11.7793 23.5538L11.7793 22.1033C17.5919 22.1033 22.2998 17.6257 22.2998 12.0974C22.2998 10.1337 21.6949 8.30762 20.6691 6.76921L18.7491 8.59529C19.3409 9.63341 19.6697 10.8341 19.6697 12.0974C19.6697 16.2373 16.1322 19.6018 11.7793 19.6018Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.1641 7.92453C11.1641 7.40334 11.5866 6.98083 12.1078 6.98083C12.629 6.98083 13.0515 7.40334 13.0515 7.92453V8.65954C13.4326 8.74917 13.7916 8.89186 14.1195 9.07888L14.6993 8.52748C15.0678 8.17697 15.6653 8.17697 16.0339 8.52748C16.4024 8.87799 16.4024 9.44627 16.0339 9.79678L15.4579 10.3446C15.6576 10.6571 15.8103 10.9999 15.9066 11.3639H16.7626C17.2583 11.3639 17.6601 11.7657 17.6601 12.2614C17.6601 12.7571 17.2583 13.159 16.7626 13.159H15.9143C15.8203 13.5268 15.6689 13.8733 15.4696 14.1894L16.0339 14.7261C16.4024 15.0766 16.4024 15.6449 16.0339 15.9954C15.6654 16.3459 15.0678 16.3459 14.6993 15.9954L14.1388 15.4623C13.8057 15.6548 13.44 15.8014 13.0515 15.8928V16.5984C13.0515 17.1196 12.629 17.5421 12.1078 17.5421C11.5866 17.5421 11.1641 17.1196 11.1641 16.5984V15.8927C10.7756 15.8013 10.41 15.6548 10.077 15.4623L9.51643 15.9955C9.1479 16.346 8.55039 16.346 8.18185 15.9955C7.81332 15.6449 7.81332 15.0767 8.18185 14.7261L8.7462 14.1894C8.54691 13.8733 8.39551 13.5268 8.30152 13.159H7.4532C6.9575 13.159 6.55566 12.7571 6.55566 12.2614C6.55566 11.7657 6.95751 11.3639 7.4532 11.3639H8.30917C8.40551 10.9999 8.55817 10.6572 8.75782 10.3446L8.18182 9.79677C7.81329 9.44626 7.81329 8.87797 8.18182 8.52746C8.55035 8.17695 9.14787 8.17695 9.5164 8.52746L10.0962 9.07891C10.4241 8.89189 10.7831 8.74921 11.1641 8.65957V7.92453ZM12.1079 14.4477C13.3689 14.4477 14.3911 13.4755 14.3911 12.2761C14.3911 11.0768 13.3689 10.1046 12.1079 10.1046C10.8469 10.1046 9.82463 11.0768 9.82463 12.2761C9.82463 13.4755 10.8469 14.4477 12.1079 14.4477Z" } })]);
|
|
515
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reset: e$
|
|
555
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reset: e$c({ render: function() {
|
|
516
556
|
var e2 = this.$createElement;
|
|
517
557
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.89662 7.99349L16.5789 4.13546L9.89662 0.277418V7.99349ZM0.221069 13.1147C0.221069 7.66542 4.50998 3.21786 9.89633 2.96351V5.05472C5.66388 5.30673 2.30929 8.81897 2.30929 13.1147C2.30929 17.5741 5.92436 21.1892 10.3838 21.1892C14.8432 21.1892 18.4582 17.5741 18.4582 13.1147L18.4579 13.0467H20.5462L20.5465 13.1147C20.5465 18.7274 15.9965 23.2774 10.3838 23.2774C4.77106 23.2774 0.221069 18.7274 0.221069 13.1147Z" } });
|
|
518
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), right: e$
|
|
558
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), right: e$c({ render: function() {
|
|
519
559
|
var e2 = this.$createElement;
|
|
520
560
|
return (this._self._c || e2)("path", { attrs: { d: "M21.7407 11.7774L0.274057 23.2774L0.274058 0.277404L21.7407 11.7774Z" } });
|
|
521
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), rules: e$
|
|
561
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), rules: e$c({ render: function() {
|
|
522
562
|
var e2 = this.$createElement;
|
|
523
563
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 4H13.1428V6.19047H0V4ZM0 8.38093H13.1428V10.5714H0V8.38093ZM0 14.9524H8.76189V12.7619H0V14.9524ZM23 11.6666L21.3571 10.0238L15.3443 16.0476L12.0476 12.7619L10.4048 14.4047L15.3443 19.3333L23 11.6666Z" } });
|
|
524
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), sandglass: e$
|
|
564
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), sandglass: e$c({ render: function() {
|
|
525
565
|
var e2 = this.$createElement;
|
|
526
566
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5 0V6.9H5.0115L5 6.9115L9.6 11.5L5 16.1L5.0115 16.1115H5V23H18.8V16.1115H18.7885L18.8 16.1L14.2 11.5L18.8 6.9115L18.7885 6.9H18.8V0H5ZM16.5 16.675V20.7H7.3V16.675L11.9 12.075L16.5 16.675ZM11.9 10.925L7.3 6.325V2.3H16.5V6.325L11.9 10.925ZM11.9 16.1L8.45 19.55H15.35L11.9 16.1ZM15.35 6.325L11.9 9.775L8.45 6.325L15.35 6.325Z" } });
|
|
527
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), save: e$
|
|
567
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), save: e$c({ render: function() {
|
|
528
568
|
var e2 = this.$createElement;
|
|
529
569
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M 18.486083,0 H 1.4831979 C 0.66405087,0 0,0.66939113 0,1.4951152 V 20.504964 C 0,21.330672 0.66405183,22 1.4831998,22 H 20.516712 C 21.335835,22 22,21.330672 22,20.504964 V 3.5420143 Z M 3.0019947,11.000759 H 18.997863 V 21.469905 H 3.0019947 Z M 4.0318778,0.55220191 H 13.015922 V 5.4153029 c 0,0.058989 0.0474,0.1067975 0.10593,0.1067975 h 2.811993 c 0.05851,0 0.105944,-0.047817 0.105944,-0.1067975 V 0.55220191 h 1.928324 V 6.085047 c 0,0.5308217 -0.426912,0.9611484 -0.953468,0.9611484 H 4.9853636 c -0.5265892,0 -0.9534858,-0.4303267 -0.9534858,-0.9611484 z M 4.5687237,12.888559 H 17.431253 v 0.541178 H 4.5687237 Z M 17.431253,14.563595 H 4.5687237 v 0.54116 H 17.431253 Z M 4.5687237,16.238579 H 17.431253 v 0.541178 H 4.5687237 Z m 12.8625293,1.67514 H 4.5687237 v 0.541004 H 17.431253 Z" } });
|
|
530
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), screenConfig: e$
|
|
570
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), screenConfig: e$c({ render: function() {
|
|
531
571
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
532
572
|
return t2("g", [t2("path", { attrs: { d: "M16.4286 3H1.64286C0.731071 3 0 3.7565 0 4.7V14.9C0 15.835 0.731071 16.6 1.64286 16.6H7.39286V18.3H5.75V20H12.3214V18.3H10.6786V16.6H12.3214V14.9H1.64286V4.7H16.4286V8.95H18.0714V4.7C18.0714 3.7565 17.3321 3 16.4286 3Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.7143 10.65H17.25V11.7176C17.1264 11.7628 17.0058 11.8147 16.8886 11.8727L16.1589 11.1176L14.4164 12.9207L15.146 13.6757C15.0899 13.797 15.0399 13.9217 14.9962 14.0496H13.9643V16.5996H14.9959C15.0396 16.7277 15.0898 16.8527 15.1459 16.9741L14.4162 17.7292L16.1587 19.5323L16.8884 18.7772C17.0057 18.8353 17.1263 18.8871 17.2501 18.9324V20H19.7143V18.9323C19.838 18.8871 19.9587 18.8352 20.0759 18.7772L20.8055 19.5321L22.548 17.729L21.8184 16.974C21.8744 16.8527 21.9245 16.728 21.9682 16.6001H23V14.0501H21.9682C21.9246 13.9222 21.8745 13.7974 21.8184 13.6761L22.5482 12.921L20.8057 11.1178L20.076 11.8729C19.9588 11.8148 19.8381 11.7629 19.7143 11.7177V10.65ZM18.4822 17.45C19.6163 17.45 20.5357 16.4986 20.5357 15.325C20.5357 14.1514 19.6163 13.2 18.4822 13.2C17.348 13.2 16.4286 14.1514 16.4286 15.325C16.4286 16.4986 17.348 17.45 18.4822 17.45Z" } })]);
|
|
533
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), screenshot: e$
|
|
573
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), screenshot: e$c({ render: function() {
|
|
534
574
|
var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
|
|
535
575
|
return i2("g", [i2("path", { attrs: { d: "M17.284 16.9705C17.284 19.1126 15.5475 20.8492 13.4053 20.8492C11.2632 20.8492 9.52663 19.1126 9.52663 16.9705C9.52663 14.8283 11.2632 13.0918 13.4053 13.0918C15.5475 13.0918 17.284 14.8283 17.284 16.9705ZM11.393 16.9705C11.393 18.0818 12.294 18.9828 13.4053 18.9828C14.5167 18.9828 15.4176 18.0818 15.4176 16.9705C15.4176 15.8591 14.5167 14.9582 13.4053 14.9582C12.294 14.9582 11.393 15.8591 11.393 16.9705Z" } }), e2._v(" "), i2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.81065 11.2545V23.7072H23V11.2545H18.1602L16.7396 9.41721H10.1391L8.73535 11.2545H3.81065ZM9.66272 13.0918H5.71598V21.8018H21.0947V13.0918H17.216L15.787 11.2545H11.0237L9.66272 13.0918Z" } }), e2._v(" "), i2("path", { attrs: { d: "M19.0533 8.32845H21.0947V10.3699H19.0533V8.32845Z" } }), e2._v(" "), i2("path", { attrs: { d: "M19.0533 4.5178H21.0947V6.55922H19.0533V4.5178Z" } }), e2._v(" "), i2("path", { attrs: { d: "M19.0533 0.707153H21.0947V2.74857H19.0533V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M15.2426 0.707153H17.284V2.74857H15.2426V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M11.432 0.707153H13.4734V2.74857H11.432V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M7.6213 0.707153H9.66272V2.74857H7.6213V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M3.81065 0.707153H5.85207V2.74857H3.81065V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 0.707153H2.04142V2.74857H0V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 4.5178H2.04142V6.55922H0V4.5178Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 8.32845H2.04142V10.3699H0V8.32845Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 12.1391H2.04142V14.1805H0V12.1391Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 15.9498H2.04142V17.9912H0V15.9498Z" } })]);
|
|
536
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), search: e$
|
|
576
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), search: e$c({ render: function() {
|
|
537
577
|
var e2 = this.$createElement;
|
|
538
578
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.54777 14.4652C5.27332 14.4652 2.6301 11.822 2.6301 8.54753C2.6301 5.27309 5.27332 2.62986 8.54777 2.62986C11.8222 2.62986 14.4654 5.27309 14.4654 8.54753C14.4654 11.822 11.8222 14.4652 8.54777 14.4652ZM16.438 14.4654H15.3991L15.0309 14.1103C16.3196 12.6112 17.0955 10.665 17.0955 8.54774C17.0955 3.82676 13.2687 0 8.54774 0C3.82676 0 0 3.82676 0 8.54774C0 13.2687 3.82676 17.0955 8.54774 17.0955C10.665 17.0955 12.6112 16.3196 14.1103 15.0309L14.4654 15.3991V16.438L21.0406 23L23 21.0406L16.438 14.4654Z" } });
|
|
539
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), section: e$
|
|
579
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), section: e$c({ render: function() {
|
|
540
580
|
var e2 = this.$createElement;
|
|
541
581
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 7.73164V23L11.953 16.5753C11.953 16.5753 6.49999 14.0121 6.28069 13.8522C6.26505 13.8408 6.24156 13.8259 6.21198 13.8071C5.82653 13.5623 4.40617 12.66 5.8354 10.3329C7.11214 8.25209 9.34904 9.49862 9.34904 9.49862L13.7885 11.4995V0L0 7.73164ZM19.8067 10.2348L18.2687 11.0038L20.3082 16.2667L8.58975 10.69C8.58975 10.69 7.57905 10.1296 7.03365 11.1403C6.3805 12.3517 7.13376 12.6275 7.13376 12.6275L19.2556 18.215L13.8883 20.6252L14.8085 22.0092L23 18.6253L19.8067 10.2348Z" } });
|
|
542
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), settings: e$
|
|
582
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), settings: e$c({ render: function() {
|
|
543
583
|
var e2 = this.$createElement;
|
|
544
584
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.4907 15.5796C9.27638 15.5782 7.45187 13.7521 7.45375 11.5394C7.4554 9.32548 9.28085 7.50261 11.4952 7.50402C13.7103 7.50519 15.5319 9.32923 15.5294 11.5438C15.527 13.7615 13.7058 15.5813 11.4907 15.5796ZM19.8834 9.58064C19.6779 9.5487 19.5797 9.46792 19.5046 9.25984C19.2902 8.66804 19.0518 8.08304 18.7827 7.51448C18.6767 7.29138 18.6918 7.15235 18.8289 6.96142C19.4376 6.11292 20.0311 5.25363 20.606 4.43284C19.92 3.7471 19.2556 3.08296 18.5692 2.39674C18.4945 2.44911 18.3926 2.5198 18.2918 2.59237C17.5359 3.1358 16.7764 3.67476 16.027 4.22712C15.8635 4.3476 15.744 4.34149 15.5625 4.25929C14.9683 3.99063 14.364 3.74217 13.7556 3.50779C13.5729 3.43757 13.4803 3.35772 13.4479 3.15599C13.295 2.2037 13.1187 1.25516 12.9634 0.303332C12.9275 0.0821085 12.8451 -0.00407955 12.6102 0.000147662C11.8399 0.0142384 11.0692 0.00460971 10.2989 0.00695816C10.2118 0.00719301 10.1246 0.0266851 10.0333 0.0379577C9.86301 1.08231 9.68899 2.10083 9.53658 3.12264C9.50417 3.3387 9.41235 3.42653 9.21602 3.50004C8.61575 3.72455 8.0169 3.95752 7.43636 4.22806C7.22336 4.32716 7.0949 4.31331 6.91618 4.1832C6.08084 3.57472 5.2361 2.97915 4.42048 2.39721C3.73098 3.08413 3.06026 3.7532 2.37804 4.43331C2.96327 5.27194 3.56635 6.12584 4.153 6.99077C4.2204 7.08988 4.24952 7.27071 4.20748 7.37944C3.9562 8.0309 3.68425 8.67461 3.40455 9.31456C3.36251 9.41085 3.25401 9.52874 3.16031 9.54495C2.10891 9.72672 1.05422 9.89017 0 10.0588V12.9572C1.02886 13.139 2.05677 13.3281 3.08798 13.4967C3.29534 13.5307 3.36321 13.6327 3.43249 13.8107C3.67368 14.4292 3.92778 15.0434 4.20137 15.6481C4.28005 15.8216 4.27018 15.9313 4.16145 16.0795C3.69223 16.7188 3.23475 17.3667 2.77375 18.012C2.62204 18.2243 2.47268 18.4378 2.34422 18.6194C3.03936 19.3117 3.70444 19.9739 4.38596 20.6526C5.21473 20.0737 6.07497 19.481 6.92487 18.8735C7.1003 18.748 7.22688 18.7539 7.41875 18.8427C7.98003 19.102 8.54859 19.3502 9.131 19.5554C9.38205 19.6437 9.49713 19.7454 9.53705 20.0134C9.68547 21.0105 9.86137 22.0035 10.0279 23.0034H12.912C13.0938 21.9805 13.2809 20.9763 13.4453 19.9685C13.4848 19.7276 13.5912 19.6367 13.8162 19.5557C14.3866 19.35 14.9521 19.1207 15.4944 18.85C15.7416 18.7264 15.8945 18.7426 16.1071 18.8965C16.9441 19.5012 17.7942 20.0876 18.5995 20.6531C19.2885 19.9641 19.9531 19.2995 20.637 18.6158C20.5827 18.5386 20.5118 18.4357 20.4393 18.3342C19.8954 17.5785 19.3536 16.8211 18.8052 16.0687C18.7033 15.9287 18.6636 15.8235 18.747 15.6392C19.0252 15.0241 19.2608 14.3898 19.5332 13.7719C19.5821 13.6611 19.7169 13.5413 19.8326 13.5148C20.2457 13.4194 20.6682 13.3642 21.0867 13.2905C21.7278 13.1775 22.3683 13.0615 23 12.9486V10.0827C21.9463 9.91177 20.916 9.7401 19.8834 9.58064Z" } });
|
|
545
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), share: e$
|
|
585
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), share: e$c({ render: function() {
|
|
546
586
|
var e2 = this.$createElement;
|
|
547
587
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.564 18.428L22.9999 10.714L14.564 3V7.94155C8.95509 7.51864 -0.50778 9.48476 0.0212735 20.6282C1.12724 17.8112 5.54844 12.6311 14.564 13.4746V18.428Z" } });
|
|
548
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), show: e$
|
|
588
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), show: e$c({ render: function() {
|
|
549
589
|
var e2 = this.$createElement;
|
|
550
590
|
return (this._self._c || e2)("path", { attrs: { d: "M11.4995 8.20455C9.76406 8.20455 8.36315 9.60545 8.36315 11.3409C8.36315 13.0764 9.76406 14.4773 11.4995 14.4773C13.235 14.4773 14.6359 13.0764 14.6359 11.3409C14.6359 9.60545 13.235 8.20455 11.4995 8.20455ZM11.4995 16.5682C8.61406 16.5682 6.27224 14.2264 6.27224 11.3409C6.27224 8.45545 8.61406 6.11364 11.4995 6.11364C14.385 6.11364 16.7268 8.45545 16.7268 11.3409C16.7268 14.2264 14.385 16.5682 11.4995 16.5682ZM11.4995 3.5C6.27224 3.5 1.80815 6.75136 -0.000488281 11.3409C1.80815 15.9305 6.27224 19.1818 11.4995 19.1818C16.7268 19.1818 21.1909 15.9305 22.9995 11.3409C21.1909 6.75136 16.7268 3.5 11.4995 3.5Z" } });
|
|
551
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), showSelected: e$
|
|
591
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), showSelected: e$c({ render: function() {
|
|
552
592
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
553
593
|
return t2("g", [t2("path", { attrs: { d: "M15.6069 2.9494L17.3118 4.61536L9.36673 12.3898L4.24048 7.39196L5.94544 5.726L9.36673 9.05792L15.6069 2.9494Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.42978 9.10136C3.42978 12.3758 6.07301 15.019 9.34745 15.019C12.6219 15.019 15.2651 12.3758 15.2651 9.10136C15.2651 8.63047 15.2105 8.17263 15.1071 7.73382L17.185 5.68489C17.6418 6.73127 17.8952 7.88682 17.8952 9.10157C17.8952 11.2188 17.1193 13.165 15.8306 14.6642L16.1988 15.0192H17.2376L23.7997 21.5944L21.8403 23.5538L15.2651 16.9918V15.9529L14.91 15.5847C13.4109 16.8734 11.4646 17.6493 9.34742 17.6493C4.62644 17.6493 0.799683 13.8226 0.799683 9.10157C0.799683 4.38059 4.62644 0.553833 9.34742 0.553833C11.4683 0.553833 13.4087 1.32617 14.9028 2.60494C14.87 2.63635 14.8357 2.66923 14.8 2.70347C14.3495 3.13521 13.6725 3.78411 12.9949 4.43717C11.9907 3.65145 10.7249 3.1837 9.34745 3.1837C6.07301 3.1837 3.42978 5.82692 3.42978 9.10136Z" } })]);
|
|
554
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), socotec: e$
|
|
594
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), socotec: e$c({ render: function() {
|
|
555
595
|
var e2 = this.$createElement;
|
|
556
596
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.27974 16.9196C6.71704 16.9196 4.63987 14.8424 4.63987 12.2797C4.63987 9.71704 6.71704 7.63987 9.27974 7.63987C10.8157 7.63987 12.1732 8.38943 13.0177 9.53891L9.42965 12.4295L12.8781 15.2074C13.5286 14.4088 13.9198 13.3901 13.9198 12.2798C13.9198 11.2531 13.5825 10.3074 13.0179 9.53871L16.6353 6.62479C14.9386 4.4213 12.2759 3 9.27974 3C4.15463 3 0 7.15463 0 12.2797C0 17.4049 4.15463 21.5595 9.27974 21.5595C12.1921 21.5595 14.7898 20.2169 16.491 18.1182L12.8779 15.2074C12.0271 16.2518 10.7319 16.9196 9.27974 16.9196ZM16.6355 6.62479L20.2061 3.74837C20.2061 3.74837 26.4924 12.1301 20.2061 21.1105L16.4912 18.1182C17.7841 16.5233 18.5597 14.4925 18.5597 12.2797C18.5597 10.1508 17.841 8.19067 16.6355 6.62479Z" } });
|
|
557
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), space: e$
|
|
597
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), space: e$c({ render: function() {
|
|
558
598
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
559
599
|
return t2("g", [t2("path", { attrs: { d: "M12.0115 0.751587L2.51154 6.15159V17.0516L12.0115 11.5516V0.751587ZM8.81154 9.15159L6.41154 10.5516V7.85159L8.81154 6.55159V9.15159Z" } }), this._v(" "), t2("path", { attrs: { d: "M12.6115 0.751587V11.6516L15.5115 13.2516V5.95159L18.6115 7.75159V15.0516L22.1115 17.0516V6.15159L12.6115 0.751587Z" } }), this._v(" "), t2("path", { attrs: { d: "M12.3115 23.3516L2.51154 17.5516L12.3115 11.8516L22.1115 17.5516L12.3115 23.3516ZM3.11154 17.6516L12.3115 23.0516L21.5115 17.6516L12.3115 12.3516L3.11154 17.6516Z" } })]);
|
|
560
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), split: e$
|
|
600
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), split: e$c({ render: function() {
|
|
561
601
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
562
602
|
return t2("g", [t2("rect", { attrs: { x: "12.8649", y: "20.541", width: "1.72499", height: "18.0819", transform: "rotate(-180 12.8649 20.541)" } }), this._v(" "), t2("rect", { attrs: { width: "1.76375", height: "6.39361", transform: "matrix(0.704882 0.709324 -0.704882 0.709324 5.00671 6.9657)" } }), this._v(" "), t2("rect", { attrs: { x: "9.55774", y: "10.7045", width: "1.73586", height: "7.76247", transform: "rotate(90 9.55774 10.7045)" } }), this._v(" "), t2("rect", { attrs: { width: "1.76375", height: "6.39361", transform: "matrix(-0.704882 0.709324 -0.704882 -0.709324 6.25037 14.7845)" } }), this._v(" "), t2("rect", { attrs: { width: "1.76375", height: "6.39361", transform: "matrix(-0.704882 -0.709324 0.704882 -0.709324 18.9933 16.0353)" } }), this._v(" "), t2("rect", { attrs: { x: "14.4423", y: "12.2964", width: "1.73586", height: "7.76247", transform: "rotate(-90 14.4423 12.2964)" } }), this._v(" "), t2("rect", { attrs: { width: "1.76375", height: "6.39361", transform: "matrix(0.704882 -0.709324 0.704882 0.709324 17.7496 8.21649)" } })]);
|
|
563
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), storey: e$
|
|
603
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), storey: e$c({ render: function() {
|
|
564
604
|
var e2 = this.$createElement;
|
|
565
605
|
return (this._self._c || e2)("path", { attrs: { d: "M11.7015 19.5944L2.29239 12.886L0.201477 14.4194L11.7015 22.661L23.2015 14.4194L21.1106 12.886L11.7015 19.5944ZM11.7015 16.7194L21.1106 10.011L23.2015 8.47769L11.7015 0.236023L0.201477 8.47769L2.29239 10.011L11.7015 16.7194Z" } });
|
|
566
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), success: e$
|
|
606
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), success: e$c({ render: function() {
|
|
567
607
|
var e2 = this.$createElement;
|
|
568
608
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 11.5664C23 17.9177 17.8513 23.0664 11.5 23.0664C5.14873 23.0664 0 17.9177 0 11.5664C0 5.21513 5.14873 0.0664062 11.5 0.0664062C17.8513 0.0664062 23 5.21513 23 11.5664ZM17.7727 10.1843L16.2727 8.71857L10.7827 14.0927L7.77271 11.1614L6.27271 12.6271L10.7827 17.0241L17.7727 10.1843Z" } });
|
|
569
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), surface: e$
|
|
609
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), surface: e$c({ render: function() {
|
|
570
610
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
571
611
|
return t2("g", [t2("path", { attrs: { d: "M0 2.96117L3.28571 0.989746V4.9326L0 2.96117Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6857 3.6183H1.97144V2.30402H21.6857V3.6183Z" } }), this._v(" "), t2("path", { attrs: { d: "M21.0286 23.9898L19.0571 21.3612L23 21.3612L21.0286 23.9898Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.3714 22.0183L20.3714 2.30402L21.6857 2.30402L21.6857 22.0183L20.3714 22.0183Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.9266 6.24689H12.6502L17.7429 15.0677V11.1248L14.9266 6.24689ZM17.7429 8.4962L16.4442 6.24689H17.7429V8.4962ZM17.7429 17.6963L11.1326 6.24689H8.85611L17.7429 21.6392V17.6963ZM17.2029 23.3326L7.3385 6.24689H5.06212L14.9266 23.3326H17.2029ZM13.409 23.3326L3.54452 6.24689H1.26814L11.1326 23.3326H13.409ZM9.61498 23.3326L0.657166 7.81722V11.76L7.3386 23.3326H9.61498ZM5.82099 23.3326L0.657166 14.3886V18.3315L3.54454 23.3326H5.82099ZM2.02693 23.3326L0.657166 20.9601V23.3326H2.02693Z" } })]);
|
|
572
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), swap: e$
|
|
612
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), swap: e$c({ render: function() {
|
|
573
613
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
574
614
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M7.80716 0L1 6.07732L7.80716 12.1546V8.29974H21.7947V4.00115H7.80716V0Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.9876 23L21.7948 16.9227L14.9876 10.8454L14.9876 14.7001L1.0001 14.7001L1.0001 18.9987L14.9876 18.9987L14.9876 23Z" } })]);
|
|
575
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), synchro2d: e$
|
|
615
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), synchro2d: e$c({ render: function() {
|
|
576
616
|
var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
|
|
577
617
|
return i2("g", [i2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.43855 9.62606L11.5053 13.8805L18.6466 9.54576L21.5979 11.2011L11.5158 17.311L1.48096 11.2794L4.43855 9.62606Z" } }), e2._v(" "), i2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5054 17.9337L4.43909 13.6795L1.48108 15.3331L11.5159 21.3647L21.598 15.2547L18.6462 13.5992L11.5054 17.9337ZM18.6651 14.689L11.5074 19.0337L4.42144 14.7677L3.35737 15.3625L11.5139 20.2651L19.7298 15.2861L18.6651 14.689Z" } }), e2._v(" "), i2("rect", { attrs: { x: "17.8959", width: "5.10406", height: "1.00266" } }), e2._v(" "), i2("rect", { attrs: { x: "23", y: "0.000183105", width: "5.07595", height: "1.00821", transform: "rotate(90 23 0.000183105)" } }), e2._v(" "), i2("rect", { attrs: { x: "22.9996", y: "17.9227", width: "5.07595", height: "1.00821", transform: "rotate(90 22.9996 17.9227)" } }), e2._v(" "), i2("rect", { attrs: { x: "22.9996", y: "23", width: "5.10406", height: "1.00266", transform: "rotate(-180 22.9996 23)" } }), e2._v(" "), i2("rect", { attrs: { width: "5.10406", height: "1.00266", transform: "matrix(-1 0 0 1 5.10413 0)" } }), e2._v(" "), i2("rect", { attrs: { width: "5.07595", height: "1.00821", transform: "matrix(4.18898e-08 1 1 -4.56122e-08 0.00012207 0.000183105)" } }), e2._v(" "), i2("rect", { attrs: { width: "5.07595", height: "1.00821", transform: "matrix(4.58647e-08 1 1 -4.16591e-08 0 17.9227)" } }), e2._v(" "), i2("rect", { attrs: { width: "5.10406", height: "1.00266", transform: "matrix(1 -8.33183e-08 -9.17295e-08 -1 0 23)" } }), e2._v(" "), i2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.45079 2.7201L11.6262 1.50403L13.6668 2.64858L11.5004 3.89277L9.45079 2.7201ZM8.67663 3.15287L6.74597 4.23215L8.83247 5.42499L10.7366 4.33145L8.67663 3.15287ZM5.9718 4.66492L4.12574 5.6969L6.24637 6.9102L8.06863 5.86367L5.9718 4.66492ZM3.35157 6.12967L1.48108 7.17531L3.58393 8.43926L5.48254 7.34888L3.35157 6.12967ZM4.30028 8.86984L6.13779 9.97431L8.0998 8.84633L6.21696 7.76907L4.30028 8.86984ZM6.85413 10.4049L8.74577 11.5419L10.7726 10.3755L8.8342 9.2665L6.85413 10.4049ZM9.46209 11.9724L11.5159 13.2069L13.5582 11.9693L11.507 10.7957L9.46209 11.9724ZM14.3014 11.5188L16.0777 10.4424L14.0929 9.30768L12.2701 10.3566L14.3014 11.5188ZM16.8209 9.99195L18.6708 8.87093L16.7558 7.77529L14.8559 8.86857L16.8209 9.99195ZM19.414 8.42049L21.598 7.09697L19.7428 6.05644L17.5189 7.33618L19.414 8.42049ZM19.0011 5.64046L17.0474 4.54465L14.8489 5.80858L16.7845 6.91602L19.0011 5.64046ZM16.3057 4.12866L14.4085 3.06458L12.2348 4.31296L14.1145 5.3884L16.3057 4.12866ZM14.0855 6.24749L16.0214 7.35513L14.1213 8.44856L12.1837 7.34085L14.0855 6.24749ZM11.4202 7.77976L13.3582 8.88768L11.5357 9.93643L9.59764 8.8276L11.4202 7.77976ZM8.86324 8.40742L10.6856 7.35975L8.80334 6.28369L6.98079 7.33039L8.86324 8.40742ZM11.449 6.92084L13.3511 5.82731L11.471 4.75164L9.56717 5.84501L11.449 6.92084Z" } })]);
|
|
578
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), system: e$
|
|
618
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), system: e$c({ render: function() {
|
|
579
619
|
var e2 = this.$createElement;
|
|
580
620
|
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$
|
|
621
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tag: e$c({ render: function() {
|
|
582
622
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
583
623
|
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" } })]);
|
|
584
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tree: e$
|
|
624
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tree: e$c({ render: function() {
|
|
585
625
|
var e2 = this.$createElement;
|
|
586
626
|
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" } });
|
|
587
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), unarchive: e$
|
|
627
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), unarchive: e$c({ render: function() {
|
|
588
628
|
var e2 = this.$createElement;
|
|
589
629
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.0005 11.3952L8.93282 11.3952L8.93282 4.82378L6.32345 4.82378L11.4992 0L16.675 4.82378L14.0005 4.82378L14.0005 11.3952ZM8.47948 5.35129H4.53964L1.91846 13.0838H1C0.447715 13.0838 0 13.5315 0 14.0838V21.7902C0 22.3425 0.447715 22.7902 1 22.7902H22C22.5523 22.7902 23 22.3425 23 21.7902V14.0838C23 13.5315 22.5523 13.0838 22 13.0838H21.0651L18.3823 5.35129H14.5608V6.19532H17.7817L20.1717 13.0838H2.80967L5.14474 6.19532L8.47948 6.19532V5.35129ZM15.1788 17.1862H7.82114V18.6878H15.1788V17.1862Z" } });
|
|
590
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), undo: e$
|
|
630
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), undo: e$c({ render: function() {
|
|
591
631
|
var e2 = this.$createElement;
|
|
592
632
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.55706 0.277443L0.108276 5.41187L5.55706 10.5463V7.24548H12.7348C16.1491 7.24548 18.917 10.0134 18.917 13.4278C18.917 16.8421 16.1491 19.61 12.7348 19.61H5.34754V23.2775H12.7348C18.1746 23.2775 22.5845 18.8676 22.5845 13.4278C22.5845 7.9879 18.1746 3.57803 12.7348 3.57803H5.55706V0.277443Z" } });
|
|
593
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), union: e$
|
|
633
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), union: e$c({ render: function() {
|
|
594
634
|
var e2 = this.$createElement;
|
|
595
635
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.3398 7.91262C7.80826 6.62614 5.71323 6.63395 4.26441 6.65983L4.25505 6.65999H0.499756V4.56227H4.23629L4.30929 4.56094C5.69026 4.53548 8.51871 4.48332 10.689 6.30639C11.1904 6.7275 11.6426 7.22319 12.1087 7.73408L12.1087 7.73409L12.1634 7.79412C13.2698 9.00732 14.4941 10.3498 16.6072 10.8996V8.00851L23.4998 12.0541L16.6072 16.0997V13.5387C14.4592 14.1121 13.2296 15.4452 12.1087 16.6738C11.6426 17.1847 11.1904 17.6804 10.689 18.1015C8.51871 19.9246 5.69026 19.8724 4.30929 19.847L4.23629 19.8456H0.499756V17.7479H4.25505L4.26441 17.7481C5.71323 17.774 7.80826 17.7818 9.3398 16.4953C9.60506 16.2725 9.90529 15.9373 10.26 15.5413C11.1568 14.5401 12.4019 13.15 14.3107 12.204C12.4019 11.2579 11.1568 9.86786 10.26 8.86664C9.90529 8.47063 9.60506 8.13544 9.3398 7.91262Z" } });
|
|
596
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), up: e$
|
|
636
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), up: e$c({ render: function() {
|
|
597
637
|
var e2 = this.$createElement;
|
|
598
638
|
return (this._self._c || e2)("path", { attrs: { d: "M12.4011 0.0440674L23.9011 21.5107H0.901062L12.4011 0.0440674Z" } });
|
|
599
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), user: e$
|
|
639
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), user: e$c({ render: function() {
|
|
600
640
|
var e2 = this.$createElement;
|
|
601
641
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5 14.375C7.66179 14.375 0 16.3014 0 20.125V23H23V20.125C23 16.3014 15.3382 14.375 11.5 14.375ZM11.5 11.5C14.6775 11.5 17.25 8.92679 17.25 5.75C17.25 2.57321 14.6775 0 11.5 0C8.32252 0 5.75 2.57321 5.75 5.75C5.75 8.92679 8.32252 11.5 11.5 11.5Z" } });
|
|
602
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validate: e$
|
|
642
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validate: e$c({ render: function() {
|
|
603
643
|
var e2 = this.$createElement;
|
|
604
644
|
return (this._self._c || e2)("path", { attrs: { d: "M20 4L23 6.93137L9.02 20.6111L0 11.817L3 8.88562L9.02 14.7484L20 4Z" } });
|
|
605
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validatedFile: e$
|
|
645
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validatedFile: e$c({ render: function() {
|
|
606
646
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
607
647
|
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$
|
|
648
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), versioning: e$c({ render: function() {
|
|
609
649
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
610
650
|
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" } })]);
|
|
611
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), video: e$
|
|
651
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), video: e$c({ render: function() {
|
|
612
652
|
var e2 = this.$createElement;
|
|
613
653
|
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" } });
|
|
614
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), visa: e$
|
|
654
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), visa: e$c({ render: function() {
|
|
615
655
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
616
656
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21ZM11.5 23C17.8513 23 23 17.8513 23 11.5C23 5.14873 17.8513 0 11.5 0C5.14873 0 0 5.14873 0 11.5C0 17.8513 5.14873 23 11.5 23Z" } }), this._v(" "), t2("path", { attrs: { d: "M17 7.1875L18.6875 8.70956L10.8238 15.8125L5.75 11.2463L7.4375 9.72426L10.8238 12.7684L17 7.1875Z" } })]);
|
|
617
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), warning: e$
|
|
657
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), warning: e$c({ render: function() {
|
|
618
658
|
var e2 = this.$createElement;
|
|
619
659
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.3606 0.552786C12.9921 -0.184262 11.9403 -0.184262 11.5718 0.552787L1.07366 21.549C0.741209 22.2139 1.22471 22.9962 1.96809 22.9962H22.9643C23.7077 22.9962 24.1912 22.2139 23.8588 21.549L13.3606 0.552786ZM11.518 15.71H13.353L13.5637 7.24522H11.316L11.518 15.71ZM11.5794 17.5233C11.3629 17.7267 11.2546 17.9849 11.2546 18.2981C11.2546 18.6003 11.3599 18.8531 11.5706 19.0564C11.7814 19.2597 12.0799 19.3614 12.4662 19.3614C12.8525 19.3614 13.151 19.2597 13.3617 19.0564C13.5724 18.8531 13.6778 18.6003 13.6778 18.2981C13.6778 17.9849 13.5695 17.7267 13.353 17.5233C13.1364 17.3145 12.8408 17.2101 12.4662 17.2101C12.0916 17.2101 11.796 17.3145 11.5794 17.5233Z" } });
|
|
620
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowBottom: e$
|
|
660
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowBottom: e$c({ render: function() {
|
|
621
661
|
var e2 = this.$createElement;
|
|
622
662
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 22L23 22L23 2.28572L1.72348e-06 2.28571L0 22ZM3.28508 10.5001L3.28508 18.7144L19.7137 18.7144L19.7137 10.5001L3.28508 10.5001Z" } });
|
|
623
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowed: e$
|
|
663
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowed: e$c({ render: function() {
|
|
624
664
|
var e2 = this.$createElement;
|
|
625
665
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.05009 7.90625H8.05004H5.85464L4.3869e-05 7.90625L4.40575e-05 5.75L5.85464 5.75L5.85464 0H8.05009L8.05009 7.90625ZM17.1454 5.75003L23 5.75003V7.90628L14.95 7.90628V5.75003L14.95 2.79065e-05L17.1454 2.80984e-05V5.75003ZM8.05 15.0938H8.05005L8.05005 23H5.85459L5.85459 17.25H0V15.0937L5.85459 15.0938H8.05ZM23 15.0938L14.95 15.0938V17.25V23H17.1454V17.25L23 17.25L23 15.0938Z" } });
|
|
626
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowLeft: e$
|
|
666
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowLeft: e$c({ render: function() {
|
|
627
667
|
var e2 = this.$createElement;
|
|
628
668
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 2H0V21.7143H23V2ZM13.143 5.28546H3.28582V18.4283H13.143V5.28546Z" } });
|
|
629
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowRight: e$
|
|
669
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowRight: e$c({ render: function() {
|
|
630
670
|
var e2 = this.$createElement;
|
|
631
671
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 2H0V21.7143H23V2ZM19.7165 5.28546H9.85937V18.4283H19.7165V5.28546Z" } });
|
|
632
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowTop: e$
|
|
672
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowTop: e$c({ render: function() {
|
|
633
673
|
var e2 = this.$createElement;
|
|
634
674
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 2H0V21.7143H23V2ZM19.7137 13.4997V5.28546L3.28515 5.28546L3.28515 13.4997L19.7137 13.4997Z" } });
|
|
635
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), zone: e$
|
|
675
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), zone: e$c({ render: function() {
|
|
636
676
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
637
677
|
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" } })]);
|
|
638
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, i$
|
|
678
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, i$b = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
|
|
639
679
|
const d$6 = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
|
|
640
|
-
var r$
|
|
680
|
+
var r$c = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
|
|
641
681
|
return Object.entries(e2).reduce((e3, [t2, i2]) => __spreadProps(__spreadValues({}, e3), { ["bimdata-icon-" + t2]: i2 }), {});
|
|
642
|
-
}(t$
|
|
682
|
+
}(t$c)), props: { name: { type: String, required: true, validator: (e2) => Object.keys(t$c).includes(e2) }, color: { type: String, default: "default", validator: (e2) => i$b.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() {
|
|
643
683
|
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 };
|
|
644
684
|
}, style() {
|
|
645
685
|
const e2 = this.getPixelSize(this.size);
|
|
@@ -647,10 +687,10 @@ var r$b = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
|
|
|
647
687
|
} }, methods: { getPixelSize() {
|
|
648
688
|
return this.customSize ? this.customSize : d$6[this.size];
|
|
649
689
|
} } };
|
|
650
|
-
const o$
|
|
690
|
+
const o$c = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
651
691
|
function n$9(e2) {
|
|
652
692
|
return (e3, t2) => function(e4, t3) {
|
|
653
|
-
const i2 = o$
|
|
693
|
+
const i2 = o$c ? t3.media || "default" : e4, d2 = C$1[i2] || (C$1[i2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
654
694
|
if (!d2.ids.has(e4)) {
|
|
655
695
|
d2.ids.add(e4);
|
|
656
696
|
let i3 = t3.source;
|
|
@@ -665,17 +705,17 @@ function n$9(e2) {
|
|
|
665
705
|
}
|
|
666
706
|
let v$2;
|
|
667
707
|
const C$1 = {};
|
|
668
|
-
const s$9 = e$
|
|
708
|
+
const s$9 = e$c({ render: function() {
|
|
669
709
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
670
710
|
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);
|
|
671
711
|
}, staticRenderFns: [] }, function(e2) {
|
|
672
712
|
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$
|
|
674
|
-
let r$
|
|
675
|
-
var e$
|
|
713
|
+
}, r$c, "data-v-198621a2", false, void 0, false, n$9, void 0, void 0);
|
|
714
|
+
let r$b = 0;
|
|
715
|
+
var e$b = { 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() {
|
|
676
716
|
return { margin: "" + this.margin };
|
|
677
717
|
} }, beforeCreate() {
|
|
678
|
-
this.uuid = r$
|
|
718
|
+
this.uuid = r$b.toString(), r$b += 1;
|
|
679
719
|
}, created() {
|
|
680
720
|
this.$watch(() => this.success && this.error, (r2) => {
|
|
681
721
|
if (r2)
|
|
@@ -686,7 +726,7 @@ var e$a = { model: { prop: "modelValue", event: "update:modelValue" }, props: {
|
|
|
686
726
|
}, blur() {
|
|
687
727
|
this.$refs.input && this.$refs.input.blur();
|
|
688
728
|
} } };
|
|
689
|
-
function t$
|
|
729
|
+
function t$b(r2, e2, t2, a2, o2, i2, n2, s2, l2, c2) {
|
|
690
730
|
typeof n2 != "boolean" && (l2 = s2, s2 = n2, n2 = false);
|
|
691
731
|
const d2 = typeof t2 == "function" ? t2.options : t2;
|
|
692
732
|
let b2;
|
|
@@ -708,14 +748,14 @@ function t$a(r2, e2, t2, a2, o2, i2, n2, s2, l2, c2) {
|
|
|
708
748
|
}
|
|
709
749
|
return t2;
|
|
710
750
|
}
|
|
711
|
-
const a$
|
|
712
|
-
function o$
|
|
751
|
+
const a$a = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
752
|
+
function o$b(r2) {
|
|
713
753
|
return (r3, e2) => function(r4, e3) {
|
|
714
|
-
const t2 = a$
|
|
754
|
+
const t2 = a$a ? e3.media || "default" : r4, o2 = n$8[t2] || (n$8[t2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
715
755
|
if (!o2.ids.has(r4)) {
|
|
716
756
|
o2.ids.add(r4);
|
|
717
757
|
let t3 = e3.source;
|
|
718
|
-
if (e3.map && (t3 += "\n/*# sourceURL=" + e3.map.sources[0] + " */", t3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(e3.map)))) + " */"), o2.element || (o2.element = document.createElement("style"), o2.element.type = "text/css", e3.media && o2.element.setAttribute("media", e3.media), i$
|
|
758
|
+
if (e3.map && (t3 += "\n/*# sourceURL=" + e3.map.sources[0] + " */", t3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(e3.map)))) + " */"), o2.element || (o2.element = document.createElement("style"), o2.element.type = "text/css", e3.media && o2.element.setAttribute("media", e3.media), i$a === void 0 && (i$a = document.head || document.getElementsByTagName("head")[0]), i$a.appendChild(o2.element)), "styleSheet" in o2.element)
|
|
719
759
|
o2.styles.push(t3), o2.element.styleSheet.cssText = o2.styles.filter(Boolean).join("\n");
|
|
720
760
|
else {
|
|
721
761
|
const r5 = o2.ids.size - 1, e4 = document.createTextNode(t3), a2 = o2.element.childNodes;
|
|
@@ -724,9 +764,9 @@ function o$a(r2) {
|
|
|
724
764
|
}
|
|
725
765
|
}(r3, e2);
|
|
726
766
|
}
|
|
727
|
-
let i$
|
|
767
|
+
let i$a;
|
|
728
768
|
const n$8 = {};
|
|
729
|
-
const s$8 = t$
|
|
769
|
+
const s$8 = t$b({ render: function() {
|
|
730
770
|
var r2 = this, e2 = r2.$createElement, t2 = r2._self._c || e2;
|
|
731
771
|
return t2("div", { staticClass: "bimdata-input", class: { error: r2.error, success: r2.success, disabled: r2.disabled, loading: r2.loading, "not-empty": !!r2.modelValue }, style: r2.style }, [t2("input", r2._b({ ref: "input", attrs: { id: "bimdata-input-" + r2.uuid, disabled: r2.disabled, autocomplete: r2.autocomplete ? "on" : "off" }, domProps: { value: r2.modelValue }, on: { input: function(e3) {
|
|
732
772
|
return r2.$emit("update:modelValue", e3.currentTarget.value);
|
|
@@ -741,8 +781,8 @@ const s$8 = t$a({ render: function() {
|
|
|
741
781
|
} } }, "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()]);
|
|
742
782
|
}, staticRenderFns: [] }, function(r2) {
|
|
743
783
|
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 }));
|
|
744
|
-
}, e$
|
|
745
|
-
var e$
|
|
784
|
+
}, e$b, "data-v-957ba7b2", false, void 0, false, o$b, void 0, void 0);
|
|
785
|
+
var e$a = { bind(e2, t2) {
|
|
746
786
|
if (typeof t2.value != "function")
|
|
747
787
|
throw Error("click away directive needs function, got " + typeof t2.value);
|
|
748
788
|
e2.clickAwayHandler = (o2) => {
|
|
@@ -750,7 +790,7 @@ var e$9 = { bind(e2, t2) {
|
|
|
750
790
|
}, window.addEventListener(t2.arg || "click", e2.clickAwayHandler, true);
|
|
751
791
|
}, unbind(e2, t2) {
|
|
752
792
|
window.removeEventListener(t2.arg || "click", e2.clickAwayHandler, true), delete e2.clickAwayHandler;
|
|
753
|
-
} }, t$
|
|
793
|
+
} }, t$a = { 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() {
|
|
754
794
|
return this.modelValue === null;
|
|
755
795
|
}, checked() {
|
|
756
796
|
return this.modelValue === true || this.indeterminate;
|
|
@@ -759,7 +799,7 @@ var e$9 = { bind(e2, t2) {
|
|
|
759
799
|
} }, methods: { onClick() {
|
|
760
800
|
this.disabled || this.$emit("update:modelValue", !this.checked);
|
|
761
801
|
} } };
|
|
762
|
-
function o$
|
|
802
|
+
function o$a(e2, t2, o2, a2, r2, i2, l2, n2, s2, c2) {
|
|
763
803
|
typeof l2 != "boolean" && (s2 = n2, n2 = l2, l2 = false);
|
|
764
804
|
const d2 = typeof o2 == "function" ? o2.options : o2;
|
|
765
805
|
let b2;
|
|
@@ -781,14 +821,14 @@ function o$9(e2, t2, o2, a2, r2, i2, l2, n2, s2, c2) {
|
|
|
781
821
|
}
|
|
782
822
|
return o2;
|
|
783
823
|
}
|
|
784
|
-
const a$
|
|
785
|
-
function r$
|
|
824
|
+
const a$9 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
825
|
+
function r$a(e2) {
|
|
786
826
|
return (e3, t2) => function(e4, t3) {
|
|
787
|
-
const o2 = a$
|
|
827
|
+
const o2 = a$9 ? t3.media || "default" : e4, r2 = l$6[o2] || (l$6[o2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
788
828
|
if (!r2.ids.has(e4)) {
|
|
789
829
|
r2.ids.add(e4);
|
|
790
830
|
let o3 = t3.source;
|
|
791
|
-
if (t3.map && (o3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", o3 += "\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), i$
|
|
831
|
+
if (t3.map && (o3 += "\n/*# sourceURL=" + t3.map.sources[0] + " */", o3 += "\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), i$9 === void 0 && (i$9 = document.head || document.getElementsByTagName("head")[0]), i$9.appendChild(r2.element)), "styleSheet" in r2.element)
|
|
792
832
|
r2.styles.push(o3), r2.element.styleSheet.cssText = r2.styles.filter(Boolean).join("\n");
|
|
793
833
|
else {
|
|
794
834
|
const e5 = r2.ids.size - 1, t4 = document.createTextNode(o3), a2 = r2.element.childNodes;
|
|
@@ -797,24 +837,24 @@ function r$9(e2) {
|
|
|
797
837
|
}
|
|
798
838
|
}(e3, t2);
|
|
799
839
|
}
|
|
800
|
-
let i$
|
|
801
|
-
const l$
|
|
802
|
-
const n$7 = o$
|
|
840
|
+
let i$9;
|
|
841
|
+
const l$6 = {};
|
|
842
|
+
const n$7 = o$a({ render: function() {
|
|
803
843
|
var e2 = this, t2 = e2.$createElement, o2 = e2._self._c || t2;
|
|
804
844
|
return o2("div", { staticClass: "bimdata-checkbox", class: { indeterminate: e2.indeterminate, disabled: e2.disabled, checked: e2.checked }, style: e2.style, on: { click: e2.onClick } }, [o2("span", { staticClass: "bimdata-checkbox__mark" }), e2._v(" "), e2.text ? o2("span", { staticClass: "bimdata-checkbox__text" }, [e2._t("default", function() {
|
|
805
845
|
return [e2._v(e2._s(e2.text))];
|
|
806
846
|
})], 2) : e2._e()]);
|
|
807
847
|
}, staticRenderFns: [] }, function(e2) {
|
|
808
848
|
e2 && (e2("data-v-119f0061_0", { source: 'html[data-v-119f0061]{--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-119f0061]{--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-119f0061]{text-align:left}.text-center[data-v-119f0061]{text-align:center}.text-right[data-v-119f0061]{text-align:right}.bimdata-link[data-v-119f0061]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-119f0061]{font-family:roboto,sans-serif}', map: void 0, media: void 0 }), e2("data-v-119f0061_1", { source: '.bimdata-checkbox{position:relative;display:flex;align-items:center;font-family:var(--primary-font);font-size:1em;cursor:pointer;user-select:none}.bimdata-checkbox :after,.bimdata-checkbox :before{-webkit-box-sizing:border-box;box-sizing:border-box}.bimdata-checkbox__mark{width:13px;height:13px;position:relative;top:0;left:0;border:solid 1px var(--color-primary);border-radius:2px;box-sizing:border-box}.bimdata-checkbox__mark::after{width:4px;height:7px;content:"";display:block;position:absolute;top:1px;left:3px;border:solid transparent;opacity:0;transform:rotate(45deg)}.bimdata-checkbox__text{width:calc(100% - 13px - 5px);margin-left:6px;font-size:.8571428571em}.bimdata-checkbox.checked>.bimdata-checkbox__mark,.bimdata-checkbox.indeterminate>.bimdata-checkbox__mark{background-color:var(--color-primary)}.bimdata-checkbox:not(.indeterminate):not(.checked)>.bimdata-checkbox__mark::after{border-color:transparent}.bimdata-checkbox.checked>.bimdata-checkbox__mark::after,.bimdata-checkbox:not(.indeterminate)>.bimdata-checkbox__mark::after{border:solid 1px var(--color-white);border-left:none;border-top:none;border-width:0 1px 1px 0;opacity:1}.bimdata-checkbox.indeterminate>.bimdata-checkbox__mark::after{border-width:0 1px 0 0;transform:rotate(90deg)}.bimdata-checkbox.disabled{cursor:default}.bimdata-checkbox.disabled>.bimdata-checkbox__mark{border-color:var(--color-silver-dark)}.bimdata-checkbox.disabled>.bimdata-checkbox__text{color:var(--color-silver-dark)}.bimdata-checkbox.checked.disabled>.bimdata-checkbox__mark{background-color:var(--color-silver-dark)}', map: void 0, media: void 0 }));
|
|
809
|
-
}, t$
|
|
810
|
-
const s$7 = o$
|
|
849
|
+
}, t$a, "data-v-119f0061", false, void 0, false, r$a, void 0, void 0);
|
|
850
|
+
const s$7 = o$a({ render: function() {
|
|
811
851
|
var e2 = this.$createElement;
|
|
812
852
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.0522 2.19676C5.9826 2.27217 5.9826 2.39544 6.0522 2.47105L14.4046 11.5192L6.08804 20.529C6.01825 20.6044 6.01825 20.7279 6.08804 20.8033L8.06344 22.9433C8.13304 23.0189 8.24702 23.0189 8.31662 22.9433L18.7257 11.667C18.7942 11.5928 18.795 11.4724 18.729 11.3968C18.7202 11.3736 18.7071 11.3518 18.6899 11.3331L8.28077 0.0565512C8.21117 -0.0188504 8.09719 -0.0188504 8.02759 0.0565512L6.0522 2.19676Z" } });
|
|
813
853
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0);
|
|
814
854
|
var c$4 = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
|
|
815
855
|
const d$5 = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
|
|
816
856
|
var b$2;
|
|
817
|
-
const p = o$
|
|
857
|
+
const p = o$a({ render: function() {
|
|
818
858
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
819
859
|
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);
|
|
820
860
|
}, staticRenderFns: [] }, function(e2) {
|
|
@@ -826,24 +866,24 @@ const p = o$9({ render: function() {
|
|
|
826
866
|
return { width: e2 + "px", minWidth: e2 + "px", height: e2 + "px", minHeight: e2 + "px", margin: "" + this.margin, transform: `rotate(${this.rotate}deg)` };
|
|
827
867
|
} }, methods: { getPixelSize() {
|
|
828
868
|
return this.customSize ? this.customSize : d$5[this.size];
|
|
829
|
-
} } }, "data-v-20c38c94", false, void 0, false, r$
|
|
830
|
-
const g$3 = o$
|
|
869
|
+
} } }, "data-v-20c38c94", false, void 0, false, r$a, void 0, void 0);
|
|
870
|
+
const g$3 = o$a({ render: function() {
|
|
831
871
|
var e2 = this, t2 = e2.$createElement;
|
|
832
872
|
return (e2._self._c || t2)(e2.selectorComponent, e2._b({ tag: "component", attrs: { modelValue: e2.modelValue }, on: { "update:modelValue": function(t3) {
|
|
833
873
|
return e2.$emit("update:modelValue", t3);
|
|
834
874
|
} } }, "component", e2.$props, false));
|
|
835
|
-
}, staticRenderFns: [] }, void 0, { components: { BIMDataSelectMulti: o$
|
|
875
|
+
}, staticRenderFns: [] }, void 0, { components: { BIMDataSelectMulti: o$a({ render: function() {
|
|
836
876
|
var e2 = this, t2 = e2.$createElement, o2 = e2._self._c || t2;
|
|
837
877
|
return o2("div", { directives: [{ name: "clickaway", rawName: "v-clickaway", value: function() {
|
|
838
878
|
return e2.isOpen = false;
|
|
839
|
-
}, expression: "() => (isOpen = false)" }], staticClass: "bimdata-select", class: { disabled: e2.disabled, active: e2.isOpen, "not-empty": e2.modelValue.length > 0 }, 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
|
|
879
|
+
}, expression: "() => (isOpen = false)" }], staticClass: "bimdata-select", class: { disabled: e2.disabled, active: e2.isOpen, "not-empty": e2.modelValue.length > 0 }, 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._l(e2.options, function(t3, a2) {
|
|
840
880
|
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) {
|
|
841
881
|
return e2.onOptionClick(t3);
|
|
842
|
-
} } }, [e2.isOptionGroup(t3) ? [e2._v("\n
|
|
882
|
+
} } }, [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);
|
|
843
883
|
}), 0)])], 1);
|
|
844
884
|
}, staticRenderFns: [] }, function(e2) {
|
|
845
885
|
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$
|
|
886
|
+
}, { components: { BIMDataCheckbox: n$7, BIMDataIconChevron: p }, directives: { clickaway: e$a }, 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() {
|
|
847
887
|
return this.modelValue.map(this.optionLabel).join(", ");
|
|
848
888
|
} }, methods: { toggle() {
|
|
849
889
|
this.disabled || (this.isOpen = !this.isOpen);
|
|
@@ -868,20 +908,20 @@ const g$3 = o$9({ render: function() {
|
|
|
868
908
|
} else
|
|
869
909
|
t2 = this.modelValue.concat(e2);
|
|
870
910
|
this.$emit("update:modelValue", t2);
|
|
871
|
-
} } }, "data-v-09766700", false, void 0, false, r$
|
|
911
|
+
} } }, "data-v-09766700", false, void 0, false, r$a, void 0, void 0), BIMDataSelectSingle: o$a({ render: function() {
|
|
872
912
|
var e2 = this, t2 = e2.$createElement, o2 = e2._self._c || t2;
|
|
873
913
|
return o2("div", { directives: [{ name: "clickaway", rawName: "v-clickaway", value: function() {
|
|
874
914
|
return e2.isOpen = false;
|
|
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
|
|
915
|
+
}, 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) {
|
|
876
916
|
return e2.onNullValueClick();
|
|
877
|
-
} } }, [e2._v("\n
|
|
917
|
+
} } }, [e2._v("\n " + e2._s(e2.nullLabel || "None") + "\n ")]) : e2._e(), e2._v(" "), e2._l(e2.options, function(t3, a2) {
|
|
878
918
|
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) {
|
|
879
919
|
return e2.onOptionClick(t3);
|
|
880
|
-
} } }, [e2._v("\n
|
|
920
|
+
} } }, [e2._v("\n " + e2._s(e2.optionLabel(t3)) + "\n ")]);
|
|
881
921
|
})], 2)])], 1);
|
|
882
922
|
}, staticRenderFns: [] }, function(e2) {
|
|
883
923
|
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$
|
|
924
|
+
}, { components: { BIMDataIconChevron: p }, directives: { clickaway: e$a }, 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() {
|
|
885
925
|
return this.optionLabel(this.modelValue);
|
|
886
926
|
} }, methods: { toggle() {
|
|
887
927
|
this.disabled || (this.isOpen = !this.isOpen);
|
|
@@ -900,10 +940,10 @@ const g$3 = o$9({ render: function() {
|
|
|
900
940
|
this.optionKey && (e2.disabled || e2.optionGroup) || (this.$emit("update:modelValue", e2), this.isOpen = false);
|
|
901
941
|
}, onNullValueClick() {
|
|
902
942
|
this.$emit("update:modelValue", null), this.isOpen = false;
|
|
903
|
-
} } }, "data-v-1b2410f3", false, void 0, false, r$
|
|
943
|
+
} } }, "data-v-1b2410f3", false, void 0, false, r$a, 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() {
|
|
904
944
|
return this.multi ? "BIMDataSelectMulti" : "BIMDataSelectSingle";
|
|
905
945
|
} } }, void 0, false, void 0, false, void 0, void 0, void 0);
|
|
906
|
-
var render$
|
|
946
|
+
var render$k = function() {
|
|
907
947
|
var _vm = this;
|
|
908
948
|
var _h = _vm.$createElement;
|
|
909
949
|
var _c = _vm._self._c || _h;
|
|
@@ -923,8 +963,8 @@ var render$j = function() {
|
|
|
923
963
|
_vm.$set(_vm.filters, "labels", $$v);
|
|
924
964
|
}, 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);
|
|
925
965
|
};
|
|
926
|
-
var staticRenderFns$
|
|
927
|
-
var
|
|
966
|
+
var staticRenderFns$k = [];
|
|
967
|
+
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 = "";
|
|
928
968
|
function normalizeComponent(scriptExports, render2, staticRenderFns2, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
|
|
929
969
|
var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
|
|
930
970
|
if (render2) {
|
|
@@ -979,7 +1019,7 @@ function normalizeComponent(scriptExports, render2, staticRenderFns2, functional
|
|
|
979
1019
|
function getSelectOptions(list) {
|
|
980
1020
|
return Array.from(new Set(list)).sort((a2, b2) => a2.localeCompare(b2, void 0, { sensitivity: "base" }));
|
|
981
1021
|
}
|
|
982
|
-
const __vue2_script$
|
|
1022
|
+
const __vue2_script$k = {
|
|
983
1023
|
components: {
|
|
984
1024
|
BIMDataButton: c$5,
|
|
985
1025
|
BIMDataIcon: s$9,
|
|
@@ -1050,43 +1090,16 @@ const __vue2_script$j = {
|
|
|
1050
1090
|
};
|
|
1051
1091
|
}
|
|
1052
1092
|
};
|
|
1053
|
-
const __cssModules$
|
|
1054
|
-
var __component__$
|
|
1055
|
-
function __vue2_injectStyles$
|
|
1056
|
-
for (let o2 in __cssModules$
|
|
1057
|
-
this[o2] = __cssModules$
|
|
1093
|
+
const __cssModules$k = {};
|
|
1094
|
+
var __component__$k = /* @__PURE__ */ normalizeComponent(__vue2_script$k, render$k, staticRenderFns$k, false, __vue2_injectStyles$k, "41d6e8d0", null, null);
|
|
1095
|
+
function __vue2_injectStyles$k(context) {
|
|
1096
|
+
for (let o2 in __cssModules$k) {
|
|
1097
|
+
this[o2] = __cssModules$k[o2];
|
|
1058
1098
|
}
|
|
1059
1099
|
}
|
|
1060
1100
|
var BcfFilters = /* @__PURE__ */ function() {
|
|
1061
|
-
return __component__$
|
|
1101
|
+
return __component__$k.exports;
|
|
1062
1102
|
}();
|
|
1063
|
-
const EXTENSION_TYPES = [
|
|
1064
|
-
"Priority",
|
|
1065
|
-
"Type",
|
|
1066
|
-
"Stage",
|
|
1067
|
-
"Status",
|
|
1068
|
-
"Label"
|
|
1069
|
-
];
|
|
1070
|
-
const EXTENSION_WITH_COLOR = [
|
|
1071
|
-
"Priority",
|
|
1072
|
-
"Status"
|
|
1073
|
-
];
|
|
1074
|
-
const EXTENSION_FIELDS = {
|
|
1075
|
-
Priority: "priority",
|
|
1076
|
-
Type: "topic_type",
|
|
1077
|
-
Stage: "stage",
|
|
1078
|
-
Status: "topic_status",
|
|
1079
|
-
Label: "label"
|
|
1080
|
-
};
|
|
1081
|
-
const EXTENSION_LIST_FIELDS = {
|
|
1082
|
-
Priority: "priorities",
|
|
1083
|
-
Type: "topic_types",
|
|
1084
|
-
Stage: "stages",
|
|
1085
|
-
Status: "topic_statuses",
|
|
1086
|
-
Label: "topic_labels"
|
|
1087
|
-
};
|
|
1088
|
-
const DEFAULT_PRIORITY_COLOR = "D8D8D8";
|
|
1089
|
-
const DEFAULT_STATUS_COLOR = "D8D8D8";
|
|
1090
1103
|
const colors = Object.freeze({
|
|
1091
1104
|
bisque: "ffe4c4",
|
|
1092
1105
|
orange: "ffa500",
|
|
@@ -1196,10 +1209,10 @@ function useService() {
|
|
|
1196
1209
|
deleteExtension
|
|
1197
1210
|
};
|
|
1198
1211
|
}
|
|
1199
|
-
const r$
|
|
1200
|
-
Object.entries(r$
|
|
1201
|
-
var e$
|
|
1202
|
-
function t$
|
|
1212
|
+
const r$9 = Object.freeze({ bisque: "ffe4c4", orange: "ffa500", coral: "ff7f50", red: "ff3d1e", maroon: "800000", khaki: "f0e68c", tan: "d2b48c", peru: "cd853f", sienna: "a0522d", brown: "a52a2a", greenyellow: "adff2f", yellowgreen: "9acd32", forestgreen: "00af50", green: "008000", darkgreen: "006400", lightcyan: "e0ffff", skyblue: "87ceeb", steelblue: "4682b4", blue: "0000ff", darkblue: "00008b", mistyrose: "ffe4e1", hotpink: "ff69b4", magenta: "ff00ff", purple: "800080", indigo: "4b0082", whitesmoke: "f5f5f5", silver: "c0c0c0", darkgray: "a9a9a9", grey: "7a7a7a", black: "000000" }), a$8 = ["bisque", "khaki", "greenyellow", "lightcyan", "mistyrose", "whitesmoke"];
|
|
1213
|
+
Object.entries(r$9).filter(([r2]) => !a$8.includes(r2));
|
|
1214
|
+
var e$9 = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), o$9 = { props: { text: { type: String } } };
|
|
1215
|
+
function t$9(r2, a2, e2, o2, t2, i2, c2, n2, l2, s2) {
|
|
1203
1216
|
typeof c2 != "boolean" && (l2 = n2, n2 = c2, c2 = false);
|
|
1204
1217
|
const d2 = typeof e2 == "function" ? e2.options : e2;
|
|
1205
1218
|
let g2;
|
|
@@ -1221,10 +1234,10 @@ function t$8(r2, a2, e2, o2, t2, i2, c2, n2, l2, s2) {
|
|
|
1221
1234
|
}
|
|
1222
1235
|
return e2;
|
|
1223
1236
|
}
|
|
1224
|
-
const i$
|
|
1237
|
+
const i$8 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
1225
1238
|
function c$3(r2) {
|
|
1226
1239
|
return (r3, a2) => function(r4, a3) {
|
|
1227
|
-
const e2 = i$
|
|
1240
|
+
const e2 = i$8 ? a3.media || "default" : r4, o2 = l$5[e2] || (l$5[e2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
1228
1241
|
if (!o2.ids.has(r4)) {
|
|
1229
1242
|
o2.ids.add(r4);
|
|
1230
1243
|
let e3 = a3.source;
|
|
@@ -1238,8 +1251,8 @@ function c$3(r2) {
|
|
|
1238
1251
|
}(r3, a2);
|
|
1239
1252
|
}
|
|
1240
1253
|
let n$6;
|
|
1241
|
-
const l$
|
|
1242
|
-
const s$6 = t$
|
|
1254
|
+
const l$5 = {};
|
|
1255
|
+
const s$6 = t$9({ render: function() {
|
|
1243
1256
|
var r2 = this, a2 = r2.$createElement, e2 = r2._self._c || a2;
|
|
1244
1257
|
return e2("div", { staticClass: "bimdata-card", class: r2.classes, style: { "min-width": r2.width, "border-radius": r2.borderRadius } }, [r2.titleHeader || r2.$slots.headerIcons ? e2("BIMDataCardBand", { staticClass: "bimdata-card__header", attrs: { text: r2.titleHeader }, scopedSlots: r2._u([{ key: "right", fn: function() {
|
|
1245
1258
|
return [r2._t("headerIcons")];
|
|
@@ -1250,15 +1263,15 @@ const s$6 = t$8({ render: function() {
|
|
|
1250
1263
|
}, proxy: true }], null, true) }) : r2._e(), r2._v(" "), r2.$slots.content ? e2("div", { staticClass: "bimdata-card__content" }, [r2._t("content")], 2) : r2._e(), r2._v(" "), r2.$slots.footer ? e2("footer", { staticClass: "bimdata-card__footer" }, [r2._t("footer")], 2) : r2._e()], 1);
|
|
1251
1264
|
}, staticRenderFns: [] }, function(r2) {
|
|
1252
1265
|
r2 && (r2("data-v-ed011768_0", { source: 'html[data-v-ed011768]{--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-ed011768]{--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-ed011768]{text-align:left}.text-center[data-v-ed011768]{text-align:center}.text-right[data-v-ed011768]{text-align:right}.bimdata-link[data-v-ed011768]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-ed011768]{font-family:roboto,sans-serif}', map: void 0, media: void 0 }), r2("data-v-ed011768_1", { source: ".bimdata-card{background-color:var(--color-white);box-shadow:var(--box-shadow);font-family:var(--primary-font);font-size:1em;overflow:auto}.bimdata-card__content,.bimdata-card__footer{font-size:.8571428571em}.bimdata-card__header{padding:10px var(--spacing-unit);height:auto;display:flex;align-items:center;justify-content:space-between;background-color:var(--color-silver-light);color:var(--color-primary);font-size:.9285714286em}.bimdata-card__submenu{padding:calc(var(--spacing-unit)/ 2) var(--spacing-unit);display:flex;align-items:center;position:relative;background:var(--color-white);box-shadow:var(--box-shadow);font-size:.8571428571em}.bimdata-card__content{padding:var(--spacing-unit);color:var(--color-granite)}.bimdata-card__footer{padding:0 var(--spacing-unit) var(--spacing-unit)}.bimdata-card__primary{background-color:var(--color-primary);color:var(--color-white)}.bimdata-card__primary .bimdata-card__header,.bimdata-card__primary .bimdata-card__submenu{background-color:var(--color-primary)}.bimdata-card__primary .bimdata-card__header{color:var(--color-white);filter:saturate(.8)}.bimdata-card__primary .bimdata-card__content{color:var(--color-white)}.bimdata-card__secondary{background-color:var(--color-secondary);color:var(--color-primary)}.bimdata-card__secondary .bimdata-card__header,.bimdata-card__secondary .bimdata-card__submenu{background-color:var(--color-secondary)}.bimdata-card__secondary .bimdata-card__header{color:var(--color-primary);filter:saturate(.8)}", map: void 0, media: void 0 }));
|
|
1253
|
-
}, { components: { BIMDataCardBand: t$
|
|
1266
|
+
}, { components: { BIMDataCardBand: t$9({ render: function() {
|
|
1254
1267
|
var r2 = this, a2 = r2.$createElement, e2 = r2._self._c || a2;
|
|
1255
1268
|
return e2("div", { staticClass: "bimdata-card__brand" }, [e2("div", { staticClass: "bimdata-card__brand--left" }, [r2._t("left"), r2._v(" "), r2.text ? e2("span", [r2._v(r2._s(r2.text))]) : r2._e()], 2), r2._v(" "), r2._t("right")], 2);
|
|
1256
1269
|
}, staticRenderFns: [] }, function(r2) {
|
|
1257
1270
|
r2 && (r2("data-v-d290df1a_0", { source: 'html[data-v-d290df1a]{--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 }), r2("data-v-d290df1a_1", { source: ".bimdata-card__brand{justify-content:space-between}.bimdata-card__brand--left{margin-right:var(--spacing-unit);display:flex;align-items:center}.bimdata-card__brand--left svg{margin-right:calc(var(--spacing-unit)/ 2)}", map: void 0, media: void 0 }));
|
|
1258
|
-
}, o$
|
|
1271
|
+
}, o$9, "data-v-d290df1a", false, void 0, false, c$3, void 0, void 0) }, props: { titleHeader: { type: String }, submenuText: { type: String }, width: { type: [Number, String], default: "215px" }, borderRadius: { type: String, default: "0px" }, bgColor: { type: String, default: "default", validator: (r2) => e$9.includes(r2) } }, computed: { classes() {
|
|
1259
1272
|
return { ["bimdata-card__" + this.bgColor]: this.bgColor };
|
|
1260
|
-
} } }, "data-v-ed011768", false, void 0, false, c$3, void 0, void 0), d$4 = Object.entries(r$
|
|
1261
|
-
const g$2 = t$
|
|
1273
|
+
} } }, "data-v-ed011768", false, void 0, false, c$3, void 0, void 0), d$4 = Object.entries(r$9).reduce((r2, a2, e2) => (e2 % 5 == 0 ? r2.push([a2]) : r2[r2.length - 1].push(a2), r2), []);
|
|
1274
|
+
const g$2 = t$9({ render: function() {
|
|
1262
1275
|
var r2 = this, a2 = r2.$createElement, e2 = r2._self._c || a2;
|
|
1263
1276
|
return e2("BIMDataCard", { staticClass: "color-selector", scopedSlots: r2._u([{ key: "content", fn: function() {
|
|
1264
1277
|
return r2._l(r2.colorLines, function(a3, o2) {
|
|
@@ -1272,8 +1285,8 @@ const g$2 = t$8({ render: function() {
|
|
|
1272
1285
|
}, proxy: true }]) });
|
|
1273
1286
|
}, staticRenderFns: [] }, function(r2) {
|
|
1274
1287
|
r2 && r2("data-v-29b6f3f4_0", { source: ".color-selector__line[data-v-29b6f3f4]{display:flex}.color-selector__line__element[data-v-29b6f3f4]{cursor:pointer;height:30px;width:30px;margin:4px;border-radius:3px}.color-selector__line__element.selected[data-v-29b6f3f4]{border:solid 2px var(--color-primary)}", map: void 0, media: void 0 });
|
|
1275
|
-
}, { components: { BIMDataCard: s$6 }, props: { modelValue: { type: String, default: null, validator: (a2) => Object.values(r$
|
|
1276
|
-
var render$
|
|
1288
|
+
}, { components: { BIMDataCard: s$6 }, props: { modelValue: { type: String, default: null, validator: (a2) => Object.values(r$9).includes(a2) } }, emits: ["update:modelValue"], data: () => ({ colorLines: d$4 }) }, "data-v-29b6f3f4", false, void 0, false, c$3, void 0, void 0);
|
|
1289
|
+
var render$j = function() {
|
|
1277
1290
|
var _vm = this;
|
|
1278
1291
|
var _h = _vm.$createElement;
|
|
1279
1292
|
var _c = _vm._self._c || _h;
|
|
@@ -1302,9 +1315,9 @@ var render$i = function() {
|
|
|
1302
1315
|
_vm.isOpenDeleteGuard = false;
|
|
1303
1316
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxxs" } })], 1)], 1)]) : _vm._e()], 1);
|
|
1304
1317
|
};
|
|
1305
|
-
var staticRenderFns$
|
|
1306
|
-
var
|
|
1307
|
-
const __vue2_script$
|
|
1318
|
+
var staticRenderFns$j = [];
|
|
1319
|
+
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 = "";
|
|
1320
|
+
const __vue2_script$j = {
|
|
1308
1321
|
components: {
|
|
1309
1322
|
BIMDataButton: c$5,
|
|
1310
1323
|
BIMDataColorSelector: g$2,
|
|
@@ -1380,17 +1393,17 @@ const __vue2_script$i = {
|
|
|
1380
1393
|
};
|
|
1381
1394
|
}
|
|
1382
1395
|
};
|
|
1383
|
-
const __cssModules$
|
|
1384
|
-
var __component__$
|
|
1385
|
-
function __vue2_injectStyles$
|
|
1386
|
-
for (let o2 in __cssModules$
|
|
1387
|
-
this[o2] = __cssModules$
|
|
1396
|
+
const __cssModules$j = {};
|
|
1397
|
+
var __component__$j = /* @__PURE__ */ normalizeComponent(__vue2_script$j, render$j, staticRenderFns$j, false, __vue2_injectStyles$j, "27af5073", null, null);
|
|
1398
|
+
function __vue2_injectStyles$j(context) {
|
|
1399
|
+
for (let o2 in __cssModules$j) {
|
|
1400
|
+
this[o2] = __cssModules$j[o2];
|
|
1388
1401
|
}
|
|
1389
1402
|
}
|
|
1390
1403
|
var SettingCardItem = /* @__PURE__ */ function() {
|
|
1391
|
-
return __component__$
|
|
1404
|
+
return __component__$j.exports;
|
|
1392
1405
|
}();
|
|
1393
|
-
var render$
|
|
1406
|
+
var render$i = function() {
|
|
1394
1407
|
var _vm = this;
|
|
1395
1408
|
var _h = _vm.$createElement;
|
|
1396
1409
|
var _c = _vm._self._c || _h;
|
|
@@ -1410,9 +1423,9 @@ var render$h = function() {
|
|
|
1410
1423
|
} } });
|
|
1411
1424
|
}), 1)], 1)]);
|
|
1412
1425
|
};
|
|
1413
|
-
var staticRenderFns$
|
|
1414
|
-
var
|
|
1415
|
-
const __vue2_script$
|
|
1426
|
+
var staticRenderFns$i = [];
|
|
1427
|
+
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 = "";
|
|
1428
|
+
const __vue2_script$i = {
|
|
1416
1429
|
components: {
|
|
1417
1430
|
BIMDataButton: c$5,
|
|
1418
1431
|
BIMDataIcon: s$9,
|
|
@@ -1474,17 +1487,17 @@ const __vue2_script$h = {
|
|
|
1474
1487
|
};
|
|
1475
1488
|
}
|
|
1476
1489
|
};
|
|
1477
|
-
const __cssModules$
|
|
1478
|
-
var __component__$
|
|
1479
|
-
function __vue2_injectStyles$
|
|
1480
|
-
for (let o2 in __cssModules$
|
|
1481
|
-
this[o2] = __cssModules$
|
|
1490
|
+
const __cssModules$i = {};
|
|
1491
|
+
var __component__$i = /* @__PURE__ */ normalizeComponent(__vue2_script$i, render$i, staticRenderFns$i, false, __vue2_injectStyles$i, "6e8123c6", null, null);
|
|
1492
|
+
function __vue2_injectStyles$i(context) {
|
|
1493
|
+
for (let o2 in __cssModules$i) {
|
|
1494
|
+
this[o2] = __cssModules$i[o2];
|
|
1482
1495
|
}
|
|
1483
1496
|
}
|
|
1484
1497
|
var SettingCard = /* @__PURE__ */ function() {
|
|
1485
|
-
return __component__$
|
|
1498
|
+
return __component__$i.exports;
|
|
1486
1499
|
}();
|
|
1487
|
-
var render$
|
|
1500
|
+
var render$h = function() {
|
|
1488
1501
|
var _vm = this;
|
|
1489
1502
|
var _h = _vm.$createElement;
|
|
1490
1503
|
var _c = _vm._self._c || _h;
|
|
@@ -1494,9 +1507,9 @@ var render$g = function() {
|
|
|
1494
1507
|
return _c("SettingCard", { attrs: { "project": _vm.project, "extensionType": t2, "availableExtensions": _vm.detailedExtensions[_vm.EXTENSION_LIST_FIELDS[t2]] }, on: { "create-extension": _vm.createExt, "update-extension": _vm.updateExt, "delete-extension": _vm.deleteExt } });
|
|
1495
1508
|
})], 2)]);
|
|
1496
1509
|
};
|
|
1497
|
-
var staticRenderFns$
|
|
1498
|
-
var
|
|
1499
|
-
const __vue2_script$
|
|
1510
|
+
var staticRenderFns$h = [];
|
|
1511
|
+
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 = "";
|
|
1512
|
+
const __vue2_script$h = {
|
|
1500
1513
|
components: {
|
|
1501
1514
|
BIMDataButton: c$5,
|
|
1502
1515
|
BIMDataIcon: s$9,
|
|
@@ -1545,22 +1558,22 @@ const __vue2_script$g = {
|
|
|
1545
1558
|
};
|
|
1546
1559
|
}
|
|
1547
1560
|
};
|
|
1548
|
-
const __cssModules$
|
|
1549
|
-
var __component__$
|
|
1550
|
-
function __vue2_injectStyles$
|
|
1551
|
-
for (let o2 in __cssModules$
|
|
1552
|
-
this[o2] = __cssModules$
|
|
1561
|
+
const __cssModules$h = {};
|
|
1562
|
+
var __component__$h = /* @__PURE__ */ normalizeComponent(__vue2_script$h, render$h, staticRenderFns$h, false, __vue2_injectStyles$h, "2687ba4b", null, null);
|
|
1563
|
+
function __vue2_injectStyles$h(context) {
|
|
1564
|
+
for (let o2 in __cssModules$h) {
|
|
1565
|
+
this[o2] = __cssModules$h[o2];
|
|
1553
1566
|
}
|
|
1554
1567
|
}
|
|
1555
1568
|
var BcfSettings = /* @__PURE__ */ function() {
|
|
1556
|
-
return __component__$
|
|
1569
|
+
return __component__$h.exports;
|
|
1557
1570
|
}();
|
|
1558
|
-
var r$
|
|
1571
|
+
var r$8 = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), a$7 = { 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: (a2) => r$8.includes(a2) } }, emits: ["click"], computed: { classes() {
|
|
1559
1572
|
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 };
|
|
1560
1573
|
}, style() {
|
|
1561
1574
|
return { "min-width": "" + this.width, "min-height": "" + this.height };
|
|
1562
1575
|
} } };
|
|
1563
|
-
function o$
|
|
1576
|
+
function o$8(r2, a2, o2, t2, i2, e2, l2, c2, n2, s2) {
|
|
1564
1577
|
typeof l2 != "boolean" && (n2 = c2, c2 = l2, l2 = false);
|
|
1565
1578
|
const g2 = typeof o2 == "function" ? o2.options : o2;
|
|
1566
1579
|
let d2;
|
|
@@ -1582,14 +1595,14 @@ function o$7(r2, a2, o2, t2, i2, e2, l2, c2, n2, s2) {
|
|
|
1582
1595
|
}
|
|
1583
1596
|
return o2;
|
|
1584
1597
|
}
|
|
1585
|
-
const t$
|
|
1586
|
-
function i$
|
|
1598
|
+
const t$8 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
1599
|
+
function i$7(r2) {
|
|
1587
1600
|
return (r3, a2) => function(r4, a3) {
|
|
1588
|
-
const o2 = t$
|
|
1601
|
+
const o2 = t$8 ? a3.media || "default" : r4, i2 = l$4[o2] || (l$4[o2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
1589
1602
|
if (!i2.ids.has(r4)) {
|
|
1590
1603
|
i2.ids.add(r4);
|
|
1591
1604
|
let o3 = a3.source;
|
|
1592
|
-
if (a3.map && (o3 += "\n/*# sourceURL=" + a3.map.sources[0] + " */", o3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(a3.map)))) + " */"), i2.element || (i2.element = document.createElement("style"), i2.element.type = "text/css", a3.media && i2.element.setAttribute("media", a3.media), e$
|
|
1605
|
+
if (a3.map && (o3 += "\n/*# sourceURL=" + a3.map.sources[0] + " */", o3 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(a3.map)))) + " */"), i2.element || (i2.element = document.createElement("style"), i2.element.type = "text/css", a3.media && i2.element.setAttribute("media", a3.media), e$8 === void 0 && (e$8 = document.head || document.getElementsByTagName("head")[0]), e$8.appendChild(i2.element)), "styleSheet" in i2.element)
|
|
1593
1606
|
i2.styles.push(o3), i2.element.styleSheet.cssText = i2.styles.filter(Boolean).join("\n");
|
|
1594
1607
|
else {
|
|
1595
1608
|
const r5 = i2.ids.size - 1, a4 = document.createTextNode(o3), t2 = i2.element.childNodes;
|
|
@@ -1598,17 +1611,17 @@ function i$6(r2) {
|
|
|
1598
1611
|
}
|
|
1599
1612
|
}(r3, a2);
|
|
1600
1613
|
}
|
|
1601
|
-
let e$
|
|
1602
|
-
const l$
|
|
1603
|
-
const c$2 = o$
|
|
1614
|
+
let e$8;
|
|
1615
|
+
const l$4 = {};
|
|
1616
|
+
const c$2 = o$8({ render: function() {
|
|
1604
1617
|
var r2 = this, a2 = r2.$createElement;
|
|
1605
1618
|
return (r2._self._c || a2)("button", { staticClass: "bimdata-btn", class: r2.classes, style: r2.style, attrs: { color: r2.color, type: "button" }, on: { click: function(a3) {
|
|
1606
1619
|
return r2.$emit("click", a3);
|
|
1607
1620
|
} } }, [r2._t("default")], 2);
|
|
1608
1621
|
}, staticRenderFns: [] }, function(r2) {
|
|
1609
1622
|
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 }));
|
|
1610
|
-
}, a$
|
|
1611
|
-
const n$5 = o$
|
|
1623
|
+
}, a$7, "data-v-7af18892", false, void 0, false, i$7, void 0, void 0);
|
|
1624
|
+
const n$5 = o$8({ render: function() {
|
|
1612
1625
|
var r2 = this.$createElement;
|
|
1613
1626
|
return (this._self._c || r2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.0522 2.19676C5.9826 2.27217 5.9826 2.39544 6.0522 2.47105L14.4046 11.5192L6.08804 20.529C6.01825 20.6044 6.01825 20.7279 6.08804 20.8033L8.06344 22.9433C8.13304 23.0189 8.24702 23.0189 8.31662 22.9433L18.7257 11.667C18.7942 11.5928 18.795 11.4724 18.729 11.3968C18.7202 11.3736 18.7071 11.3518 18.6899 11.3331L8.28077 0.0565512C8.21117 -0.0188504 8.09719 -0.0188504 8.02759 0.0565512L6.0522 2.19676Z" } });
|
|
1614
1627
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0);
|
|
@@ -1622,18 +1635,18 @@ var d$3 = (r2, a2) => ({ name: "BIMDataIcon" + r2, components: { [r2]: a2 }, pro
|
|
|
1622
1635
|
} }, methods: { getPixelSize() {
|
|
1623
1636
|
return this.customSize ? this.customSize : g$1[this.size];
|
|
1624
1637
|
} } });
|
|
1625
|
-
const b$1 = o$
|
|
1638
|
+
const b$1 = o$8({ render: function() {
|
|
1626
1639
|
var r2 = this, a2 = r2.$createElement, o2 = r2._self._c || a2;
|
|
1627
1640
|
return o2("div", { staticClass: "bimdata-paginated-list" }, [r2.loading ? o2("BIMDataSpinner") : o2("div", [r2._t("header"), r2._v(" "), o2("ul", { staticClass: "bimdata-list bimdata-paginated-list__elements" }, r2._l(r2.page, function(a3) {
|
|
1628
1641
|
return o2("li", { key: r2.elementKey ? a3[r2.elementKey] : a3, on: { click: function(o3) {
|
|
1629
1642
|
return r2.$emit("element-click", a3);
|
|
1630
1643
|
} } }, [r2._t("element", function() {
|
|
1631
|
-
return [r2._v("\n
|
|
1644
|
+
return [r2._v("\n " + r2._s(a3 && a3.toString()) + "\n ")];
|
|
1632
1645
|
}, { element: a3 })], 2);
|
|
1633
1646
|
}), 0), r2._v(" "), r2.list.length === 0 ? [r2._t("empty")] : r2._e(), r2._v(" "), r2.totalPages > 1 ? o2("BIMDataPagination", { attrs: { length: r2.list.length, currentPage: r2.currentPage, totalPages: r2.totalPages, perPage: r2.perPage, first: r2.first, last: r2.last, numberDataElements: r2.numberDataElements, backgroundColor: r2.backgroundColor }, on: { pagechanged: r2.onPageChange } }) : r2._e()], 2)], 1);
|
|
1634
1647
|
}, staticRenderFns: [] }, function(r2) {
|
|
1635
1648
|
r2 && (r2("data-v-9848cfc8_0", { source: 'html[data-v-9848cfc8]{--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-list[data-v-9848cfc8]{margin:0;padding:0}.bimdata-list li[data-v-9848cfc8]{list-style-type:none}', map: void 0, media: void 0 }), r2("data-v-9848cfc8_1", { source: ".bimdata-paginated-list[data-v-9848cfc8]{font-family:var(--primary-font);font-size:1em;line-height:1.5;overflow:auto}.bimdata-paginated-list--small[data-v-9848cfc8]{height:100%;position:relative}.bimdata-paginated-list--small .bimdata-paginated-list__elements li[data-v-9848cfc8]{padding:6px;display:flex;align-items:center;justify-content:space-between;font-size:.8571428571em}.bimdata-paginated-list--small .bimdata-paginated-list__elements li[data-v-9848cfc8]:nth-child(odd){background-color:var(--color-silver-light)}.bimdata-paginated-list--small .bimdata-paginated-list__elements li[data-v-9848cfc8]:nth-child(even){background-color:hsl(var(--color-silver-light),5%)}.bimdata-paginated-list--empty[data-v-9848cfc8]{height:auto}.bimdata-paginated-list .bimdata-spinner[data-v-9848cfc8]{padding:12px 0;justify-content:center}", map: void 0, media: void 0 }));
|
|
1636
|
-
}, { components: { BIMDataPagination: o$
|
|
1649
|
+
}, { components: { BIMDataPagination: o$8({ render: function() {
|
|
1637
1650
|
var r2 = this, a2 = r2.$createElement, o2 = r2._self._c || a2;
|
|
1638
1651
|
return o2("BIMDataNavigation", { staticClass: "bimdata-pagination", attrs: { firstDisabled: r2.isFirstPage, previousDisabled: r2.isFirstPage, nextDisabled: r2.isLastPage, lastDisabled: r2.isLastPage, backgroundColor: r2.backgroundColor }, on: { first: function(a3) {
|
|
1639
1652
|
return r2.firstPage();
|
|
@@ -1644,11 +1657,11 @@ const b$1 = o$7({ render: function() {
|
|
|
1644
1657
|
}, last: function(a3) {
|
|
1645
1658
|
return r2.lastPage();
|
|
1646
1659
|
} }, scopedSlots: r2._u([r2.numberDataElements ? { key: "left", fn: function() {
|
|
1647
|
-
return [r2._v("\n
|
|
1648
|
-
}, proxy: true } : null], null, true) }, [r2._v(" "), o2("span", { staticClass: "bimdata-pagination__item" }, [o2("BIMDataButton", { attrs: { ghost: "", width: "21px", height: "21px" } }, [r2._v("\n
|
|
1660
|
+
return [r2._v("\n " + r2._s(r2.firstIndex) + " - " + r2._s(r2.lastIndex) + " of " + r2._s(r2.length) + "\n ")];
|
|
1661
|
+
}, proxy: true } : null], null, true) }, [r2._v(" "), o2("span", { staticClass: "bimdata-pagination__item" }, [o2("BIMDataButton", { attrs: { ghost: "", width: "21px", height: "21px" } }, [r2._v("\n " + r2._s(r2.currentPage) + "\n ")])], 1)]);
|
|
1649
1662
|
}, staticRenderFns: [] }, function(r2) {
|
|
1650
1663
|
r2 && (r2("data-v-0a60caec_0", { source: 'html[data-v-0a60caec]{--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 }), r2("data-v-0a60caec_1", { source: ".bimdata-pagination__item .bimdata-btn[data-v-0a60caec]{padding:0;justify-content:center}.bimdata-pagination__item.active .bimdata-btn[data-v-0a60caec]{font-weight:700}", map: void 0, media: void 0 }));
|
|
1651
|
-
}, { components: { BIMDataNavigation: o$
|
|
1664
|
+
}, { components: { BIMDataNavigation: o$8({ render: function() {
|
|
1652
1665
|
var r2 = this, a2 = r2.$createElement, o2 = r2._self._c || a2;
|
|
1653
1666
|
return o2("ul", { staticClass: "bimdata-list bimdata-navigation", style: { "background-color": r2.backgroundColor } }, [o2("li", { staticClass: "bimdata-navigation__left m-r-6" }, [r2._t("left")], 2), r2._v(" "), r2.first ? o2("li", { staticClass: "bimdata-navigation__item" }, [o2("BIMDataButton", { class: { disabled: r2.firstDisabled }, attrs: { disabled: r2.firstDisabled, ghost: "", width: "21px", height: "21px" }, on: { click: function(a3) {
|
|
1654
1667
|
return r2.$emit("first");
|
|
@@ -1661,20 +1674,20 @@ const b$1 = o$7({ render: function() {
|
|
|
1661
1674
|
} } }, [o2("BIMDataIconDoubleChevron", { attrs: { size: "xxxs" } })], 1)], 1) : r2._e(), r2._v(" "), o2("li", { staticClass: "bimdata-navigation__right" }, [r2._t("right")], 2)]);
|
|
1662
1675
|
}, staticRenderFns: [] }, function(r2) {
|
|
1663
1676
|
r2 && (r2("data-v-3c48ce0c_0", { source: 'html[data-v-3c48ce0c]{--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-list[data-v-3c48ce0c]{margin:0;padding:0}.bimdata-list li[data-v-3c48ce0c]{list-style-type:none}', map: void 0, media: void 0 }), r2("data-v-3c48ce0c_1", { source: ".bimdata-navigation[data-v-3c48ce0c]{display:inline-flex;width:100%;height:38px;justify-content:center;align-items:center}.bimdata-navigation__item[data-v-3c48ce0c]{padding:6px 2px}.bimdata-navigation__item .bimdata-btn[data-v-3c48ce0c]{padding:0;justify-content:center}.bimdata-navigation__item.active .bimdata-btn[data-v-3c48ce0c]{font-weight:700}.bimdata-navigation__left[data-v-3c48ce0c],.bimdata-navigation__right[data-v-3c48ce0c]{padding:6px 2px;font-size:10px;cursor:default}", map: void 0, media: void 0 }));
|
|
1664
|
-
}, { components: { BIMDataIconChevron: o$
|
|
1677
|
+
}, { components: { BIMDataIconChevron: o$8({ render: function() {
|
|
1665
1678
|
var r2 = this.$createElement, a2 = this._self._c || r2;
|
|
1666
1679
|
return a2("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 } }, [a2("Chevron")], 1);
|
|
1667
1680
|
}, staticRenderFns: [] }, function(r2) {
|
|
1668
1681
|
r2 && (r2("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 }), r2("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 }));
|
|
1669
|
-
}, d$3("Chevron", n$5), "data-v-20c38c94", false, void 0, false, i$
|
|
1682
|
+
}, d$3("Chevron", n$5), "data-v-20c38c94", false, void 0, false, i$7, void 0, void 0), BIMDataIconDoubleChevron: o$8({ render: function() {
|
|
1670
1683
|
var r2 = this.$createElement, a2 = this._self._c || r2;
|
|
1671
1684
|
return a2("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 } }, [a2("DoubleChevron")], 1);
|
|
1672
1685
|
}, staticRenderFns: [] }, function(r2) {
|
|
1673
1686
|
r2 && (r2("data-v-35e61558_0", { source: 'html[data-v-35e61558]{--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 }), r2("data-v-35e61558_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 }));
|
|
1674
|
-
}, d$3("DoubleChevron", o$
|
|
1687
|
+
}, d$3("DoubleChevron", o$8({ render: function() {
|
|
1675
1688
|
var r2 = this.$createElement;
|
|
1676
1689
|
return (this._self._c || r2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M1.05119 2.47105C0.982285 2.39544 0.982285 2.27217 1.05119 2.19676L3.00683 0.0565512C3.07573 -0.0188504 3.18857 -0.0188504 3.25748 0.0565512L13.5625 11.3331C13.5796 11.3518 13.5925 11.3736 13.6012 11.3968C13.6665 11.4724 13.6658 11.5928 13.598 11.667L3.29296 22.9433C3.22406 23.0189 3.11122 23.0189 3.04231 22.9433L1.08668 20.8033C1.01758 20.7279 1.01758 20.6044 1.08668 20.529L9.32003 11.5192L1.05119 2.47105ZM10.2512 2.47105C10.1823 2.39544 10.1823 2.27217 10.2512 2.19676L12.2068 0.0565512C12.2757 -0.0188504 12.3886 -0.0188504 12.4575 0.0565512L22.7625 11.3331C22.7796 11.3518 22.7925 11.3736 22.8012 11.3968C22.8665 11.4724 22.8658 11.5928 22.798 11.667L12.493 22.9433C12.4241 23.0189 12.3112 23.0189 12.2423 22.9433L10.2867 20.8033C10.2176 20.7279 10.2176 20.6044 10.2867 20.529L18.52 11.5192L10.2512 2.47105Z" } });
|
|
1677
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0)), "data-v-35e61558", false, void 0, false, i$
|
|
1690
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0)), "data-v-35e61558", false, void 0, false, i$7, void 0, void 0), BIMDataButton: c$2 }, props: { first: { type: Boolean, default: true }, last: { type: Boolean, default: true }, previous: { type: Boolean, default: true }, next: { type: Boolean, default: true }, firstDisabled: { type: Boolean, default: false }, lastDisabled: { type: Boolean, default: false }, previousDisabled: { type: Boolean, default: false }, nextDisabled: { type: Boolean, default: false }, backgroundColor: { type: String, default: "var(--color-white)" } }, emits: ["first", "previous", "next", "last"] }, "data-v-3c48ce0c", false, void 0, false, i$7, void 0, void 0), BIMDataButton: c$2 }, props: { length: { type: Number, required: true }, currentPage: { type: Number, required: true }, totalPages: { type: Number, required: true }, numberDataElements: { type: Boolean, default: true }, backgroundColor: { type: String, default: "var(--color-white)" }, perPage: { type: Number, required: true, validator: (r2) => r2 > 0 } }, emits: ["pagechanged"], computed: { firstIndex() {
|
|
1678
1691
|
return this.perPage * (this.currentPage - 1) + 1;
|
|
1679
1692
|
}, lastIndex() {
|
|
1680
1693
|
return Math.min(this.firstIndex + this.perPage - 1, this.length);
|
|
@@ -1690,7 +1703,7 @@ const b$1 = o$7({ render: function() {
|
|
|
1690
1703
|
this.$emit("pagechanged", this.currentPage + 1);
|
|
1691
1704
|
}, lastPage() {
|
|
1692
1705
|
this.$emit("pagechanged", this.totalPages);
|
|
1693
|
-
} } }, "data-v-0a60caec", false, void 0, false, i$
|
|
1706
|
+
} } }, "data-v-0a60caec", false, void 0, false, i$7, void 0, void 0), BIMDataSpinner: o$8({ render: function() {
|
|
1694
1707
|
var r2 = this.$createElement, a2 = this._self._c || r2;
|
|
1695
1708
|
return a2("div", { staticClass: "bimdata-spinner" }, [a2("div", { staticClass: "bimdata-spinner--square", style: this.getStyle() })]);
|
|
1696
1709
|
}, staticRenderFns: [] }, function(r2) {
|
|
@@ -1698,7 +1711,7 @@ const b$1 = o$7({ render: function() {
|
|
|
1698
1711
|
}, { props: ["size", "border"], methods: { getStyle() {
|
|
1699
1712
|
if (this.size)
|
|
1700
1713
|
return { width: this.size, height: this.size, "border-width": this.border ? this.border : null };
|
|
1701
|
-
} } }, "data-v-60a4222b", false, void 0, false, i$
|
|
1714
|
+
} } }, "data-v-60a4222b", false, void 0, false, i$7, void 0, void 0) }, props: { list: { type: Array, default: () => [] }, perPage: { type: Number, default: 10, validator: (r2) => r2 > 0 }, elementKey: { type: String }, loading: { type: Boolean, default: false }, first: { type: Boolean, default: true }, last: { type: Boolean, default: true }, numberDataElements: { type: Boolean, default: true }, backgroundColor: { type: String, default: "var(--color-white)" } }, emits: ["element-click"], data: () => ({ currentPage: 1 }), computed: { totalPages() {
|
|
1702
1715
|
return this.list.length ? Math.ceil(this.list.length / this.perPage) : 0;
|
|
1703
1716
|
}, page() {
|
|
1704
1717
|
const r2 = this.perPage * (this.currentPage - 1), a2 = r2 + this.perPage;
|
|
@@ -1707,8 +1720,8 @@ const b$1 = o$7({ render: function() {
|
|
|
1707
1720
|
this.list.length < this.perPage * (this.currentPage - 1) + 1 && (this.currentPage = 1);
|
|
1708
1721
|
}, deep: true, immediate: true } }, methods: { onPageChange(r2) {
|
|
1709
1722
|
this.currentPage = r2;
|
|
1710
|
-
} } }, "data-v-9848cfc8", false, void 0, false, i$
|
|
1711
|
-
var e$
|
|
1723
|
+
} } }, "data-v-9848cfc8", false, void 0, false, i$7, void 0, void 0);
|
|
1724
|
+
var e$7 = { props: { barsData: { type: Array, default: () => [] }, barDistanceFromCenter: { type: Number, default: 50 }, barStrokeWidth: { type: Number, default: 10 }, placeholder: { type: Boolean, default: false }, placeholderStrokeWidth: { type: Number, default: 4 }, placeholderColor: { type: String, default: "#EBEBEB" }, graphDrawTime: { type: Number, default: 4 } }, computed: { roundCapPercentageOffset() {
|
|
1712
1725
|
return (this.barStrokeWidth / 2 - 4) / (2 * this.barDistanceFromCenter * Math.PI) * 100;
|
|
1713
1726
|
}, center() {
|
|
1714
1727
|
return this.viewBoxSize / 2;
|
|
@@ -1734,7 +1747,7 @@ var e$6 = { props: { barsData: { type: Array, default: () => [] }, barDistanceFr
|
|
|
1734
1747
|
const a2 = e2 > 50 ? 1 : 0, { x: r2, y: n2 } = this.getPercentagePosition(e2 + t2);
|
|
1735
1748
|
return `${a2} 1 ${r2},${n2}`;
|
|
1736
1749
|
} } };
|
|
1737
|
-
function t$
|
|
1750
|
+
function t$7(e2, t2, a2, r2, n2, s2, o2, i2, d2, c2) {
|
|
1738
1751
|
typeof o2 != "boolean" && (d2 = i2, i2 = o2, o2 = false);
|
|
1739
1752
|
const l2 = typeof a2 == "function" ? a2.options : a2;
|
|
1740
1753
|
let h2;
|
|
@@ -1756,10 +1769,10 @@ function t$6(e2, t2, a2, r2, n2, s2, o2, i2, d2, c2) {
|
|
|
1756
1769
|
}
|
|
1757
1770
|
return a2;
|
|
1758
1771
|
}
|
|
1759
|
-
const a$
|
|
1760
|
-
function r$
|
|
1772
|
+
const a$6 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
1773
|
+
function r$7(e2) {
|
|
1761
1774
|
return (e3, t2) => function(e4, t3) {
|
|
1762
|
-
const r2 = a$
|
|
1775
|
+
const r2 = a$6 ? t3.media || "default" : e4, o2 = s$4[r2] || (s$4[r2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
1763
1776
|
if (!o2.ids.has(e4)) {
|
|
1764
1777
|
o2.ids.add(e4);
|
|
1765
1778
|
let a2 = t3.source;
|
|
@@ -1774,15 +1787,15 @@ function r$6(e2) {
|
|
|
1774
1787
|
}
|
|
1775
1788
|
let n$4;
|
|
1776
1789
|
const s$4 = {};
|
|
1777
|
-
const o$
|
|
1790
|
+
const o$7 = t$7({ render: function() {
|
|
1778
1791
|
var e2 = this, t2 = e2.$createElement, a2 = e2._self._c || t2;
|
|
1779
1792
|
return a2("div", { ref: "container", staticClass: "bimdata-simple-pie-chart" }, [a2("svg", { style: "--graph-draw-time: " + e2.graphDrawTime + "s;", attrs: { viewBox: e2.viewBox } }, [e2.placeholder ? a2("circle", { attrs: { cx: e2.center, cy: e2.center, r: e2.barDistanceFromCenter, "stroke-width": e2.placeholderStrokeWidth, stroke: e2.placeholderColor, fill: "none" } }) : e2._e(), e2._v(" "), e2._l(e2.displayedBarsData, function(t3, r2) {
|
|
1780
1793
|
return a2("g", { key: r2 }, [t3.percentage > 0 ? a2("path", { staticClass: "path", attrs: { d: e2.getPath(t3), "stroke-width": e2.barStrokeWidth, stroke: t3.color, fill: "none" } }) : e2._e()]);
|
|
1781
1794
|
})], 2)]);
|
|
1782
1795
|
}, staticRenderFns: [] }, function(e2) {
|
|
1783
1796
|
e2 && e2("data-v-1694cb3a_0", { source: ".bimdata-simple-pie-chart[data-v-1694cb3a]{position:relative}.bimdata-simple-pie-chart .path[data-v-1694cb3a]{stroke-dasharray:1000;stroke-dashoffset:1000;animation:dash-data-v-1694cb3a var(--graph-draw-time,2s) ease-in forwards}@keyframes dash-data-v-1694cb3a{to{stroke-dashoffset:0}}", map: void 0, media: void 0 });
|
|
1784
|
-
}, e$
|
|
1785
|
-
var render$
|
|
1797
|
+
}, e$7, "data-v-1694cb3a", false, void 0, false, r$7, void 0, void 0);
|
|
1798
|
+
var render$g = function() {
|
|
1786
1799
|
var _vm = this;
|
|
1787
1800
|
var _h = _vm.$createElement;
|
|
1788
1801
|
var _c = _vm._self._c || _h;
|
|
@@ -1791,12 +1804,12 @@ var render$f = function() {
|
|
|
1791
1804
|
return [_c("div", { staticClass: "bcf-statistics__content__legend__item" }, [_c("span", { staticClass: "bcf-statistics__content__legend__item__mark", style: { borderColor: barData.color } }), _c("span", { staticClass: "bcf-statistics__content__legend__item__percent" }, [_vm._v(" " + _vm._s(barData.percentage.toFixed(0)) + " % ")]), _c("span", { staticClass: "bcf-statistics__content__legend__item__text" }, [_vm._v(" " + _vm._s(barData.label && _vm.$t("BcfComponents.BcfStatistics.extension." + _vm.extensionType)) + " " + _vm._s(barData.label || _vm.$t("BcfComponents.BcfStatistics.extension." + _vm.extensionType + "NotDefined")) + " "), _c("span", { staticClass: "total" }, [_vm._v(" (" + _vm._s(barData.total) + ") ")])])])];
|
|
1792
1805
|
} }]) })], 1)], 1)]);
|
|
1793
1806
|
};
|
|
1794
|
-
var staticRenderFns$
|
|
1795
|
-
var
|
|
1796
|
-
const __vue2_script$
|
|
1807
|
+
var staticRenderFns$g = [];
|
|
1808
|
+
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 = "";
|
|
1809
|
+
const __vue2_script$g = {
|
|
1797
1810
|
components: {
|
|
1798
1811
|
BIMDataPaginatedList: b$1,
|
|
1799
|
-
BIMDataSimplePieChart: o$
|
|
1812
|
+
BIMDataSimplePieChart: o$7
|
|
1800
1813
|
},
|
|
1801
1814
|
props: {
|
|
1802
1815
|
bcfTopics: {
|
|
@@ -1838,17 +1851,17 @@ const __vue2_script$f = {
|
|
|
1838
1851
|
};
|
|
1839
1852
|
}
|
|
1840
1853
|
};
|
|
1841
|
-
const __cssModules$
|
|
1842
|
-
var __component__$
|
|
1843
|
-
function __vue2_injectStyles$
|
|
1844
|
-
for (let o2 in __cssModules$
|
|
1845
|
-
this[o2] = __cssModules$
|
|
1854
|
+
const __cssModules$g = {};
|
|
1855
|
+
var __component__$g = /* @__PURE__ */ normalizeComponent(__vue2_script$g, render$g, staticRenderFns$g, false, __vue2_injectStyles$g, "08cce8e2", null, null);
|
|
1856
|
+
function __vue2_injectStyles$g(context) {
|
|
1857
|
+
for (let o2 in __cssModules$g) {
|
|
1858
|
+
this[o2] = __cssModules$g[o2];
|
|
1846
1859
|
}
|
|
1847
1860
|
}
|
|
1848
1861
|
var BcfStatistics = /* @__PURE__ */ function() {
|
|
1849
|
-
return __component__$
|
|
1862
|
+
return __component__$g.exports;
|
|
1850
1863
|
}();
|
|
1851
|
-
var t$
|
|
1864
|
+
var t$6 = { props: { width: { type: String, default: "100%" }, minWidth: { type: String }, maxWidth: { type: String }, text: { type: String, default: "" }, cutPosition: { type: String, default: "middle", validator: (t2) => ["start", "middle", "end"].includes(t2) }, tooltip: { type: Boolean, default: true }, tooltipPosition: { type: String, default: "bottom", validator: (t2) => ["top", "right", "bottom", "left"].includes(t2) }, tooltipColor: { type: String, default: "primary", validator: (t2) => ["white", "primary", "secondary", "granite-light", "silver-light"].includes(t2) } }, data: () => ({ showTooltip: false, isOverflowing: false, textHead: "", textTail: "" }), watch: { width: "computeText", text: "computeText", cutPosition: "computeText" }, mounted() {
|
|
1852
1865
|
this.observer = new ResizeObserver(() => this.computeText()), this.observer.observe(this.$refs.textBox), this.computeText();
|
|
1853
1866
|
}, beforeUnmount() {
|
|
1854
1867
|
this.observer.disconnect();
|
|
@@ -1858,7 +1871,7 @@ var t$5 = { props: { width: { type: String, default: "100%" }, minWidth: { type:
|
|
|
1858
1871
|
const t2 = this.$props.text, e2 = this.$refs.textHead;
|
|
1859
1872
|
e2 && (this.textHead = t2, this.textTail = "", await this.$nextTick(), this.isOverflowing = e2.clientWidth < e2.scrollWidth, this.isOverflowing && this.$props.cutPosition === "middle" && (this.textTail = t2));
|
|
1860
1873
|
} } };
|
|
1861
|
-
function e$
|
|
1874
|
+
function e$6(t2, e2, o2, a2, r2, i2, l2, n2, s2, d2) {
|
|
1862
1875
|
typeof l2 != "boolean" && (s2 = n2, n2 = l2, l2 = false);
|
|
1863
1876
|
const c2 = typeof o2 == "function" ? o2.options : o2;
|
|
1864
1877
|
let p2;
|
|
@@ -1880,14 +1893,14 @@ function e$5(t2, e2, o2, a2, r2, i2, l2, n2, s2, d2) {
|
|
|
1880
1893
|
}
|
|
1881
1894
|
return o2;
|
|
1882
1895
|
}
|
|
1883
|
-
const o$
|
|
1884
|
-
function a$
|
|
1896
|
+
const o$6 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
1897
|
+
function a$5(t2) {
|
|
1885
1898
|
return (t3, e2) => function(t4, e3) {
|
|
1886
|
-
const a2 = o$
|
|
1899
|
+
const a2 = o$6 ? e3.media || "default" : t4, l2 = i$6[a2] || (i$6[a2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
1887
1900
|
if (!l2.ids.has(t4)) {
|
|
1888
1901
|
l2.ids.add(t4);
|
|
1889
1902
|
let o2 = e3.source;
|
|
1890
|
-
if (e3.map && (o2 += "\n/*# sourceURL=" + e3.map.sources[0] + " */", o2 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(e3.map)))) + " */"), l2.element || (l2.element = document.createElement("style"), l2.element.type = "text/css", e3.media && l2.element.setAttribute("media", e3.media), r$
|
|
1903
|
+
if (e3.map && (o2 += "\n/*# sourceURL=" + e3.map.sources[0] + " */", o2 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(e3.map)))) + " */"), l2.element || (l2.element = document.createElement("style"), l2.element.type = "text/css", e3.media && l2.element.setAttribute("media", e3.media), r$6 === void 0 && (r$6 = document.head || document.getElementsByTagName("head")[0]), r$6.appendChild(l2.element)), "styleSheet" in l2.element)
|
|
1891
1904
|
l2.styles.push(o2), l2.element.styleSheet.cssText = l2.styles.filter(Boolean).join("\n");
|
|
1892
1905
|
else {
|
|
1893
1906
|
const t5 = l2.ids.size - 1, e4 = document.createTextNode(o2), a3 = l2.element.childNodes;
|
|
@@ -1896,37 +1909,37 @@ function a$4(t2) {
|
|
|
1896
1909
|
}
|
|
1897
1910
|
}(t3, e2);
|
|
1898
1911
|
}
|
|
1899
|
-
let r$
|
|
1900
|
-
const i$
|
|
1901
|
-
const l$
|
|
1912
|
+
let r$6;
|
|
1913
|
+
const i$6 = {};
|
|
1914
|
+
const l$3 = e$6({ render: function() {
|
|
1902
1915
|
var t2 = this, e2 = t2.$createElement, o2 = t2._self._c || e2;
|
|
1903
1916
|
return o2("div", { ref: "textBox", staticClass: "bimdata-textbox", style: { width: t2.width, minWidth: t2.minWidth, maxWidth: t2.maxWidth }, on: { mouseenter: function(e3) {
|
|
1904
1917
|
t2.showTooltip = true;
|
|
1905
1918
|
}, mouseleave: function(e3) {
|
|
1906
1919
|
t2.showTooltip = false;
|
|
1907
|
-
} } }, [o2("span", { ref: "textHead", staticClass: "bimdata-textbox__text--head", style: { width: t2.textTail ? "50%" : "100%", direction: t2.cutPosition === "start" ? "rtl" : "ltr" } }, [o2("bdi", [t2._v(t2._s(t2.textHead))])]), t2._v(" "), o2("span", { directives: [{ name: "show", rawName: "v-show", value: t2.textTail, expression: "textTail" }], staticClass: "bimdata-textbox__text--tail" }, [o2("bdi", [t2._v(t2._s(t2.textTail))])]), t2._v(" "), t2.tooltip && t2.isOverflowing ? o2("div", { directives: [{ name: "show", rawName: "v-show", value: t2.showTooltip, expression: "showTooltip" }], staticClass: "bimdata-textbox__tooltip", class: ["bimdata-textbox__tooltip--" + t2.tooltipPosition, "bimdata-textbox__tooltip--" + t2.tooltipColor] }, [t2._v("\n
|
|
1920
|
+
} } }, [o2("span", { ref: "textHead", staticClass: "bimdata-textbox__text--head", style: { width: t2.textTail ? "50%" : "100%", direction: t2.cutPosition === "start" ? "rtl" : "ltr" } }, [o2("bdi", [t2._v(t2._s(t2.textHead))])]), t2._v(" "), o2("span", { directives: [{ name: "show", rawName: "v-show", value: t2.textTail, expression: "textTail" }], staticClass: "bimdata-textbox__text--tail" }, [o2("bdi", [t2._v(t2._s(t2.textTail))])]), t2._v(" "), t2.tooltip && t2.isOverflowing ? o2("div", { directives: [{ name: "show", rawName: "v-show", value: t2.showTooltip, expression: "showTooltip" }], staticClass: "bimdata-textbox__tooltip", class: ["bimdata-textbox__tooltip--" + t2.tooltipPosition, "bimdata-textbox__tooltip--" + t2.tooltipColor] }, [t2._v("\n " + t2._s(t2.text) + "\n ")]) : t2._e()]);
|
|
1908
1921
|
}, staticRenderFns: [] }, function(t2) {
|
|
1909
1922
|
t2 && t2("data-v-79e3dcf0_0", { source: 'html[data-v-79e3dcf0]{--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-textbox[data-v-79e3dcf0]{display:inline-flex;position:relative}.bimdata-textbox__text--head[data-v-79e3dcf0]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.bimdata-textbox__text--tail[data-v-79e3dcf0]{width:50%;white-space:nowrap;overflow:hidden;text-overflow:"";direction:rtl}.bimdata-textbox__tooltip[data-v-79e3dcf0]{position:absolute;z-index:2;min-width:60px;max-width:200px;width:max-content;padding:calc(var(--spacing-unit)/ 3) calc(var(--spacing-unit)/ 2);border-radius:3px;text-align:center;white-space:normal;word-wrap:break-word}.bimdata-textbox__tooltip[data-v-79e3dcf0]::before{content:"";position:absolute;border-style:solid;border-width:8px 0 0 8px}.bimdata-textbox__tooltip--white[data-v-79e3dcf0]{background-color:var(--color-white);color:var(--color-primary)}.bimdata-textbox__tooltip--white[data-v-79e3dcf0]::before{border-color:var(--color-white) transparent transparent}.bimdata-textbox__tooltip--primary[data-v-79e3dcf0]{background-color:var(--color-primary);color:var(--color-white)}.bimdata-textbox__tooltip--primary[data-v-79e3dcf0]::before{border-color:var(--color-primary) transparent transparent}.bimdata-textbox__tooltip--secondary[data-v-79e3dcf0]{background-color:#f9c72c;color:#2f374a}.bimdata-textbox__tooltip--secondary[data-v-79e3dcf0]::before{border-color:var(--color-secondary) transparent transparent}.bimdata-textbox__tooltip--granite-light[data-v-79e3dcf0]{background-color:var(--color-granite-light);color:var(--color-white)}.bimdata-textbox__tooltip--granite-light[data-v-79e3dcf0]::before{border-color:var(--color-granite-light) transparent transparent}.bimdata-textbox__tooltip--silver-light[data-v-79e3dcf0]{background-color:var(--color-silver-light);color:var(--color-primary)}.bimdata-textbox__tooltip--silver-light[data-v-79e3dcf0]::before{border-color:var(--color-silver-light) transparent transparent}.bimdata-textbox__tooltip--top[data-v-79e3dcf0]{top:-8px;left:50%;transform:translateX(-50%) translateY(-100%)}.bimdata-textbox__tooltip--top[data-v-79e3dcf0]::before{top:calc(100% - 4px);left:calc(50% - 4px);transform:rotate(135deg)}.bimdata-textbox__tooltip--right[data-v-79e3dcf0]{top:50%;left:calc(100% + 8px);transform:translateY(-50%)}.bimdata-textbox__tooltip--right[data-v-79e3dcf0]::before{top:calc(50% - 4px);left:-4px;transform:rotate(-135deg)}.bimdata-textbox__tooltip--bottom[data-v-79e3dcf0]{top:calc(100% + 8px);left:50%;transform:translateX(-50%)}.bimdata-textbox__tooltip--bottom[data-v-79e3dcf0]::before{top:-4px;left:calc(50% - 4px);transform:rotate(-45deg)}.bimdata-textbox__tooltip--left[data-v-79e3dcf0]{top:50%;left:-8px;transform:translateX(-100%) translateY(-50%)}.bimdata-textbox__tooltip--left[data-v-79e3dcf0]::before{top:calc(50% - 4px);left:calc(100% - 4px);transform:rotate(45deg)}', map: void 0, media: void 0 });
|
|
1910
|
-
}, t$
|
|
1911
|
-
var render$
|
|
1923
|
+
}, t$6, "data-v-79e3dcf0", false, void 0, false, a$5, void 0, void 0);
|
|
1924
|
+
var render$f = function() {
|
|
1912
1925
|
var _vm = this;
|
|
1913
1926
|
var _h = _vm.$createElement;
|
|
1914
1927
|
var _c = _vm._self._c || _h;
|
|
1915
1928
|
return _c("svg", { attrs: { "width": "84", "height": "81", "viewBox": "0 0 84 81", "fill": "none", "xmlns": "http://www.w3.org/2000/svg" } }, [_c("path", { attrs: { "d": "M83.3154 40.6328C83.3154 62.7242 65.4068 80.6328 43.3154 80.6328C21.224 80.6328 3.31543 62.7242 3.31543 40.6328C3.31543 18.5414 21.224 0.632812 43.3154 0.632812C65.4068 0.632812 83.3154 18.5414 83.3154 40.6328Z", "fill": "#FFFFFF" } }), _c("path", { attrs: { "d": "M46.2756 13.5376L34.124 58.8879C33.9787 59.4301 34.3035 59.9926 34.8457 60.1379L68.3655 69.1195C68.9077 69.2648 69.4702 68.94 69.6155 68.3978L78.333 35.8639L67.4883 32.9581C66.9461 32.8128 66.6213 32.2503 66.7666 31.708L70.2008 18.8916L47.5256 12.8159C46.9834 12.6706 46.4209 12.9953 46.2756 13.5376Z", "fill": "#FFFFFF" } }), _c("path", { staticClass: "fill-silver", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M45.7926 13.4082C46.0094 12.5992 46.8461 12.1161 47.655 12.3329L70.8131 18.5381L67.2496 31.8374C67.1758 32.1129 67.0765 32.4855 67.0765 32.4855L78.92 35.6661L70.0985 68.5272C69.8817 69.3362 69.045 69.8192 68.2361 69.6024L34.7163 60.6209C33.9073 60.4041 33.4243 59.5674 33.641 58.7584L45.7926 13.4082ZM47.3962 13.2988C47.1207 13.225 46.8324 13.3915 46.7585 13.667L34.607 59.0173C34.5331 59.2928 34.6996 59.5811 34.9751 59.6549L68.4949 68.6365C68.7704 68.7103 69.0587 68.5439 69.1326 68.2684L77.7206 36.2174L67.3589 33.441C66.55 33.2243 66.0669 32.3876 66.2837 31.5786L69.5884 19.2452L47.3962 13.2988Z" } }), _c("path", { staticClass: "fill-silver", attrs: { "d": "M67.0765 32.4855L70.8131 18.5404L78.92 35.6661L67.0765 32.4855Z" } }), _c("path", { staticClass: "fill-silver", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M44.3876 52.686L48.3872 37.7594L67.8264 42.9682L63.8269 57.8947L44.3876 52.686ZM47.0917 37.0402C47.2458 36.4651 47.837 36.1238 48.4121 36.2779L68.5456 41.6726C69.1208 41.8268 69.4621 42.4179 69.308 42.9931L65.1224 58.6139C64.9683 59.1891 64.3771 59.5304 63.802 59.3763L43.6684 53.9815C43.0933 53.8274 42.752 53.2362 42.9061 52.6611L47.0917 37.0402ZM53.3118 42.9855C52.9778 44.2316 51.697 44.9712 50.4508 44.6373C49.2047 44.3034 48.4652 43.0225 48.7991 41.7763C49.133 40.5302 50.4139 39.7907 51.66 40.1246C52.9061 40.4585 53.6457 41.7394 53.3118 42.9855ZM46.7528 49.4132L46.1482 51.6695L62.8104 56.1342L64.2521 50.7536L60.6945 44.5916L52.992 49.0387L51.5943 46.6179L46.7528 49.4132Z" } }), _c("path", { attrs: { "d": "M7.70191 20.1034L19.8535 65.4537C19.9988 65.9959 20.5613 66.3207 21.1035 66.1754L54.6233 57.1938C55.1655 57.0485 55.4903 56.486 55.345 55.9437L46.6276 23.4098L35.783 26.3157C35.2407 26.4609 34.6782 26.1362 34.5329 25.5939L31.0988 12.7776L8.42363 18.8533C7.88139 18.9986 7.55662 19.5612 7.70191 20.1034Z", "fill": "white" } }), _c("path", { staticClass: "fill-silver", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M7.21895 20.2328C7.00219 19.4238 7.48525 18.5871 8.29422 18.3704L31.4523 12.1652L35.0159 25.4645C35.0897 25.74 35.1918 26.119 35.1918 26.119L47.0371 22.9451L55.828 55.8143C56.0447 56.6233 55.5617 57.46 54.7527 57.6767L21.2329 66.6583C20.424 66.8751 19.5873 66.392 19.3705 65.5831L7.21895 20.2328ZM8.55304 19.3363C8.27754 19.4101 8.11106 19.6985 8.18488 19.974L20.3365 65.3243C20.4103 65.5998 20.6986 65.7662 20.9741 65.6924L54.4939 56.7108C54.7694 56.637 54.9359 56.3487 54.8621 56.0732L46.274 24.0222L35.9124 26.7986C35.1034 27.0154 34.2667 26.5323 34.0499 25.7234L30.7452 13.3899L8.55304 19.3363Z" } }), _c("path", { staticClass: "fill-silver", attrs: { "d": "M35.1918 26.119L31.4534 12.1672L47.0371 22.9451L35.1918 26.119Z" } }), _c("path", { staticClass: "fill-silver", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M25.6411 54.9509L21.6416 40.0243L41.0808 34.8156L45.0804 49.7422L25.6411 54.9509ZM20.16 40.0492C20.0059 39.4741 20.3472 38.8829 20.9224 38.7288L41.0559 33.3341C41.631 33.1799 42.2222 33.5213 42.3763 34.0964L46.5619 49.7172C46.716 50.2924 46.3747 50.8836 45.7996 51.0377L25.666 56.4324C25.0909 56.5865 24.4997 56.2452 24.3456 55.6701L20.16 40.0492ZM28.5194 42.088C28.8533 43.3341 28.1138 44.615 26.8676 44.9489C25.6215 45.2828 24.3406 44.5433 24.0067 43.2971C23.6728 42.051 24.4123 40.7701 25.6585 40.4362C26.9046 40.1023 28.1855 40.8418 28.5194 42.088ZM26.053 50.934L26.6576 53.1903L43.3198 48.7257L41.8781 43.3452L35.7161 39.7876L31.2691 47.4901L28.8483 46.0924L26.053 50.934Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M6.9375 17.1323V12.6323H7.9375V17.1323H6.9375Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M5.72393 18.0419L2.54195 14.8599L3.24906 14.1528L6.43104 17.3348L5.72393 18.0419Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M5.46582 19.615H0.96582L0.96582 18.615H5.46582V19.615Z" } }), _c("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M46.5972 10.507L47.7619 6.16033L48.7278 6.41915L47.5631 10.7658L46.5972 10.507Z" } }), _c("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M45.1895 11.0715L42.9395 7.17435L43.8056 6.67435L46.0556 10.5715L45.1895 11.0715Z" } }), _c("path", { staticClass: "fill-primary", attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", "d": "M44.5331 12.5242L40.1864 11.3595L40.4452 10.3936L44.7919 11.5582L44.5331 12.5242Z" } })]);
|
|
1916
1929
|
};
|
|
1917
|
-
var staticRenderFns$
|
|
1918
|
-
const __vue2_script$
|
|
1919
|
-
const __cssModules$
|
|
1920
|
-
var __component__$
|
|
1921
|
-
function __vue2_injectStyles$
|
|
1922
|
-
for (let o2 in __cssModules$
|
|
1923
|
-
this[o2] = __cssModules$
|
|
1930
|
+
var staticRenderFns$f = [];
|
|
1931
|
+
const __vue2_script$f = {};
|
|
1932
|
+
const __cssModules$f = {};
|
|
1933
|
+
var __component__$f = /* @__PURE__ */ normalizeComponent(__vue2_script$f, render$f, staticRenderFns$f, false, __vue2_injectStyles$f, null, null, null);
|
|
1934
|
+
function __vue2_injectStyles$f(context) {
|
|
1935
|
+
for (let o2 in __cssModules$f) {
|
|
1936
|
+
this[o2] = __cssModules$f[o2];
|
|
1924
1937
|
}
|
|
1925
1938
|
}
|
|
1926
1939
|
var BcfTopicDefaultImage = /* @__PURE__ */ function() {
|
|
1927
|
-
return __component__$
|
|
1940
|
+
return __component__$f.exports;
|
|
1928
1941
|
}();
|
|
1929
|
-
var render$
|
|
1942
|
+
var render$e = function() {
|
|
1930
1943
|
var _vm = this;
|
|
1931
1944
|
var _h = _vm.$createElement;
|
|
1932
1945
|
var _c = _vm._self._c || _h;
|
|
@@ -1940,14 +1953,14 @@ var render$d = function() {
|
|
|
1940
1953
|
return _vm.$emit("open-bcf-topic", _vm.bcfTopic);
|
|
1941
1954
|
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicCard.see")) + " ")])], 1)])]);
|
|
1942
1955
|
};
|
|
1943
|
-
var staticRenderFns$
|
|
1944
|
-
var
|
|
1945
|
-
const __vue2_script$
|
|
1956
|
+
var staticRenderFns$e = [];
|
|
1957
|
+
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 = "";
|
|
1958
|
+
const __vue2_script$e = {
|
|
1946
1959
|
components: {
|
|
1947
1960
|
BcfTopicDefaultImage,
|
|
1948
1961
|
BIMDataButton: c$5,
|
|
1949
1962
|
BIMDataIcon: s$9,
|
|
1950
|
-
BIMDataTextbox: l$
|
|
1963
|
+
BIMDataTextbox: l$3
|
|
1951
1964
|
},
|
|
1952
1965
|
props: {
|
|
1953
1966
|
bcfTopic: {
|
|
@@ -1966,24 +1979,8 @@ const __vue2_script$d = {
|
|
|
1966
1979
|
const viewpointsWithSnapshot = computed(() => {
|
|
1967
1980
|
return props.bcfTopic.viewpoints.filter((viewpoint) => Boolean(viewpoint.snapshot));
|
|
1968
1981
|
});
|
|
1969
|
-
const priorityColor = computed(() =>
|
|
1970
|
-
|
|
1971
|
-
const priorityDetail = props.detailedExtensions.priorities.find((p2) => p2.priority === props.bcfTopic.priority);
|
|
1972
|
-
if (priorityDetail && priorityDetail.color) {
|
|
1973
|
-
return priorityDetail.color;
|
|
1974
|
-
}
|
|
1975
|
-
}
|
|
1976
|
-
return DEFAULT_PRIORITY_COLOR;
|
|
1977
|
-
});
|
|
1978
|
-
const statusColor = computed(() => {
|
|
1979
|
-
if (props.bcfTopic.topic_status) {
|
|
1980
|
-
const statusDetail = props.detailedExtensions.topic_statuses.find((s2) => s2.topic_status === props.bcfTopic.topic_status);
|
|
1981
|
-
if (statusDetail && statusDetail.color) {
|
|
1982
|
-
return statusDetail.color;
|
|
1983
|
-
}
|
|
1984
|
-
}
|
|
1985
|
-
return DEFAULT_STATUS_COLOR;
|
|
1986
|
-
});
|
|
1982
|
+
const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
|
|
1983
|
+
const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
|
|
1987
1984
|
const topicElements = computed(() => {
|
|
1988
1985
|
var _a;
|
|
1989
1986
|
if (props.bcfTopic.components && props.bcfTopic.components.length > 0 && ((_a = props.bcfTopic.components[0]) == null ? void 0 : _a.selection)) {
|
|
@@ -2001,35 +1998,35 @@ const __vue2_script$d = {
|
|
|
2001
1998
|
};
|
|
2002
1999
|
}
|
|
2003
2000
|
};
|
|
2004
|
-
const __cssModules$
|
|
2005
|
-
var __component__$
|
|
2006
|
-
function __vue2_injectStyles$
|
|
2007
|
-
for (let o2 in __cssModules$
|
|
2008
|
-
this[o2] = __cssModules$
|
|
2001
|
+
const __cssModules$e = {};
|
|
2002
|
+
var __component__$e = /* @__PURE__ */ normalizeComponent(__vue2_script$e, render$e, staticRenderFns$e, false, __vue2_injectStyles$e, "9ee26932", null, null);
|
|
2003
|
+
function __vue2_injectStyles$e(context) {
|
|
2004
|
+
for (let o2 in __cssModules$e) {
|
|
2005
|
+
this[o2] = __cssModules$e[o2];
|
|
2009
2006
|
}
|
|
2010
2007
|
}
|
|
2011
2008
|
var BcfTopicCard = /* @__PURE__ */ function() {
|
|
2012
|
-
return __component__$
|
|
2009
|
+
return __component__$e.exports;
|
|
2013
2010
|
}();
|
|
2014
|
-
var render$
|
|
2011
|
+
var render$d = function() {
|
|
2015
2012
|
var _vm = this;
|
|
2016
2013
|
var _h = _vm.$createElement;
|
|
2017
2014
|
var _c = _vm._self._c || _h;
|
|
2018
2015
|
return _c("svg", { attrs: { "width": "66", "height": "60", "viewBox": "0 0 66 60", "fill": "none", "xmlns": "http://www.w3.org/2000/svg" } }, [_c("path", { staticClass: "fill-granite-light", attrs: { "opacity": "0.21", "d": "M14.4999 59.2445C22.2871 59.2445 28.5999 58.9311 28.5999 58.5445C28.5999 58.1579 22.2871 57.8445 14.4999 57.8445C6.71269 57.8445 0.399902 58.1579 0.399902 58.5445C0.399902 58.9311 6.71269 59.2445 14.4999 59.2445Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M46.84 26.5444C45.0533 26.5444 43.5645 28.0444 43.5645 29.8444C43.5645 31.6444 45.0533 33.1444 46.84 33.1444C48.6267 33.1444 50.1156 31.6444 50.1156 29.8444C50.1156 28.0444 48.6267 26.5444 46.84 26.5444ZM48.4282 29.8444C48.4282 30.7444 47.7333 31.4444 46.84 31.4444C45.9467 31.4444 45.2519 30.7444 45.2519 29.8444C45.2519 28.9444 45.9467 28.2444 46.84 28.2444C47.7333 28.2444 48.4282 29.0444 48.4282 29.8444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M54.8797 27.6444C52.9938 27.6444 51.5049 29.1444 51.5049 31.0444C51.5049 32.9444 52.9938 34.4444 54.8797 34.4444C56.7656 34.4444 58.2545 32.9444 58.2545 31.0444C58.1553 29.1444 56.6664 27.6444 54.8797 27.6444ZM56.4678 31.0444C56.4678 31.9444 55.773 32.6444 54.8797 32.6444C53.9864 32.6444 53.2916 31.9444 53.2916 31.0444C53.2916 30.1444 53.9864 29.4444 54.8797 29.4444C55.773 29.4444 56.4678 30.1444 56.4678 31.0444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M52.1005 11.1444C44.7554 11.1444 38.7998 17.1444 38.7998 24.5444V50.9444C38.7998 53.0444 40.4872 54.8444 42.6709 54.8444C42.9687 54.8444 43.2665 54.8444 43.5642 54.7444C43.6635 56.8444 45.3509 58.5444 47.4354 58.5444C49.5198 58.5444 51.3065 56.8444 51.3065 54.6444V52.7444C51.6042 52.8444 51.902 52.8444 52.1998 52.8444H52.3983C52.6961 52.8444 52.9939 52.8444 53.2917 52.7444C53.4902 54.7444 55.0783 56.2444 57.0635 56.2444C57.3613 56.2444 57.6591 56.2444 57.9568 56.1444C58.3539 57.9444 59.8428 59.2444 61.7287 59.2444C63.8131 59.2444 65.5998 57.5444 65.5998 55.3444V24.5444C65.4013 17.1444 59.4457 11.1444 52.1005 11.1444ZM57.7583 47.8444V52.4444C57.7583 52.9444 57.3613 53.3444 56.865 53.3444C56.3687 53.3444 55.9717 52.9444 55.9717 52.4444V47.1444H52.9939V49.0444C52.9939 49.5444 52.5968 49.9444 52.1005 49.9444H51.902C51.4057 49.9444 51.0087 49.5444 51.0087 49.0444V42.0444H48.0309V54.6444C48.0309 55.1444 47.6339 55.5444 47.1376 55.5444C46.6413 55.5444 46.2442 55.1444 46.2442 54.6444V48.5444H43.2665V51.0444C43.2665 51.5444 42.8694 51.9444 42.3731 51.9444C41.8768 51.9444 41.4798 51.5444 41.4798 51.0444V24.5444C41.4798 18.8444 46.145 14.1444 51.8028 14.1444C57.4605 14.1444 62.1257 18.8444 62.1257 24.5444V55.3444C62.1257 55.8444 61.7287 56.2444 61.2324 56.2444C60.7361 56.2444 60.3391 55.8444 60.3391 55.3444V47.8444H57.7583Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M29.8001 6.84446C31.5674 6.84446 33.0001 5.41177 33.0001 3.64446C33.0001 1.87715 31.5674 0.444458 29.8001 0.444458C28.0328 0.444458 26.6001 1.87715 26.6001 3.64446C26.6001 5.41177 28.0328 6.84446 29.8001 6.84446Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "d": "M23.8997 15.9444C25.1147 15.9444 26.0997 14.9595 26.0997 13.7444C26.0997 12.5294 25.1147 11.5444 23.8997 11.5444C22.6847 11.5444 21.6997 12.5294 21.6997 13.7444C21.6997 14.9595 22.6847 15.9444 23.8997 15.9444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M28.8999 22.0444C29.7283 22.0444 30.3999 21.3729 30.3999 20.5444C30.3999 19.716 29.7283 19.0444 28.8999 19.0444C28.0715 19.0444 27.3999 19.716 27.3999 20.5444C27.3999 21.3729 28.0715 22.0444 28.8999 22.0444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M13.9995 33.5444C15.2995 34.1444 16.4995 34.8444 17.5995 35.7444C19.1995 37.1444 20.4995 38.7444 21.3995 40.6444C21.6995 41.2444 21.8995 41.8444 22.0995 42.4444C22.5995 43.9444 22.2995 45.2444 21.1995 46.3444C18.8995 48.6444 16.1995 49.3444 13.0995 48.5444C12.8995 48.5444 12.6995 48.5444 12.5995 48.5444C11.3995 48.7444 10.0995 48.8444 8.89951 48.6444C8.59951 48.6444 8.39951 48.5444 7.99951 48.5444C8.29951 49.0444 8.59951 49.4444 8.89951 49.9444C9.79951 51.2444 11.0995 52.2444 12.4995 52.8444C14.3995 53.6444 16.2995 53.8444 18.2995 53.4444C20.0995 53.0444 21.6995 52.1444 22.9995 50.7444C24.3995 49.2444 25.2995 47.4444 25.4995 45.3444C25.5995 44.0444 25.5995 42.6444 25.0995 41.4444C24.6995 40.4444 24.0995 39.5444 23.3995 38.7444C22.0995 37.0444 20.5995 35.5444 19.0995 34.0444C18.4995 33.4444 17.8995 32.9444 17.2995 32.4444C17.1995 32.3444 17.0995 32.3444 16.9995 32.3444C15.6995 32.1444 14.7995 32.3444 13.9995 33.5444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M11.4997 29.6444C10.3997 29.5444 9.49967 29.6444 8.59967 29.9444C7.39967 30.2444 6.19967 30.8444 5.19967 31.6444C4.19967 32.4444 3.39967 33.3444 2.79967 34.5444C1.99967 36.0444 1.59967 37.6444 1.69967 39.3444C1.79967 41.0444 2.29967 42.7444 3.29967 44.1444C4.19967 45.4444 5.29967 46.4444 6.59967 47.1444C7.59967 47.6444 8.49967 48.0444 9.59967 48.0444C11.3997 48.0444 13.1997 47.8444 14.8997 47.3444C16.1997 47.0444 17.5997 46.6444 18.8997 46.2444C19.4997 46.0444 20.1997 45.9444 20.7997 45.5444C21.1997 45.3444 21.3997 44.8444 21.5997 44.3444C21.7997 43.6444 21.7997 42.9444 21.3997 42.2444C21.0997 42.4444 20.7997 42.6444 20.4997 42.8444C19.1997 43.6444 17.7997 44.2444 16.2997 44.6444C14.2997 45.1444 12.1997 45.1444 10.1997 44.8444C8.89967 44.6444 7.79967 44.0444 7.09967 42.7444C6.69967 41.8444 6.49967 40.9444 6.49967 39.9444C6.39967 37.5444 7.29967 35.5444 8.99967 33.8444C8.99967 33.8444 9.19967 33.5444 9.29967 33.2444C9.79967 31.9444 10.3997 30.7444 11.4997 29.6444Z" } }), _c("path", { staticClass: "fill-silver-dark", attrs: { "d": "M9.89953 44.2445C9.89953 44.0445 9.89953 43.8445 9.89953 43.7445C9.69953 41.5445 9.99953 39.4445 10.7995 37.4445C11.4995 35.5445 12.5995 33.9445 13.9995 32.5445C14.8995 31.6445 15.9995 31.4445 17.1995 31.6445C19.7995 32.2445 21.7995 33.6445 22.8995 36.1445C23.0995 36.6445 23.1995 37.2445 23.4995 37.7445C23.5995 38.0445 23.8995 38.3445 24.0995 38.6445C24.7995 39.6445 25.4995 40.7445 25.8995 41.9445C25.8995 41.9445 25.8995 42.0445 25.9995 42.1445C26.2995 41.4445 26.6995 40.7445 26.9995 40.1445C27.4995 38.9445 27.5995 37.6445 27.4995 36.3445C27.2995 34.1445 26.4995 32.1445 24.8995 30.5445C23.7995 29.3445 22.3995 28.5445 20.7995 28.1445C19.0995 27.6445 17.2995 27.6445 15.5995 28.2445C13.9995 28.7445 12.5995 29.5445 11.4995 30.9445C11.0995 31.4445 10.6995 32.0445 10.3995 32.7445C9.79953 34.0445 9.29953 35.4445 8.89953 36.7445C8.39953 38.5445 7.99953 40.4445 7.59953 42.2445C7.49953 42.8445 7.89953 43.2445 8.29953 43.6445C8.59953 43.9445 9.19953 44.1445 9.89953 44.2445Z" } }), _c("path", { staticClass: "fill-secondary", attrs: { "d": "M37.3997 7.04441C38.3386 7.04441 39.0997 6.28329 39.0997 5.34441C39.0997 4.40553 38.3386 3.64441 37.3997 3.64441C36.4608 3.64441 35.6997 4.40553 35.6997 5.34441C35.6997 6.28329 36.4608 7.04441 37.3997 7.04441Z" } })]);
|
|
2019
2016
|
};
|
|
2020
|
-
var staticRenderFns$
|
|
2021
|
-
const __vue2_script$
|
|
2022
|
-
const __cssModules$
|
|
2023
|
-
var __component__$
|
|
2024
|
-
function __vue2_injectStyles$
|
|
2025
|
-
for (let o2 in __cssModules$
|
|
2026
|
-
this[o2] = __cssModules$
|
|
2017
|
+
var staticRenderFns$d = [];
|
|
2018
|
+
const __vue2_script$d = {};
|
|
2019
|
+
const __cssModules$d = {};
|
|
2020
|
+
var __component__$d = /* @__PURE__ */ normalizeComponent(__vue2_script$d, render$d, staticRenderFns$d, false, __vue2_injectStyles$d, null, null, null);
|
|
2021
|
+
function __vue2_injectStyles$d(context) {
|
|
2022
|
+
for (let o2 in __cssModules$d) {
|
|
2023
|
+
this[o2] = __cssModules$d[o2];
|
|
2027
2024
|
}
|
|
2028
2025
|
}
|
|
2029
2026
|
var BcfTopicCreationCardImage = /* @__PURE__ */ function() {
|
|
2030
|
-
return __component__$
|
|
2027
|
+
return __component__$d.exports;
|
|
2031
2028
|
}();
|
|
2032
|
-
var render$
|
|
2029
|
+
var render$c = function() {
|
|
2033
2030
|
var _vm = this;
|
|
2034
2031
|
var _h = _vm.$createElement;
|
|
2035
2032
|
var _c = _vm._self._c || _h;
|
|
@@ -2037,9 +2034,9 @@ var render$b = function() {
|
|
|
2037
2034
|
return _vm.$emit("create-bcf-topic");
|
|
2038
2035
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "m", "fill": "", "color": "default" } })], 1)], 1);
|
|
2039
2036
|
};
|
|
2040
|
-
var staticRenderFns$
|
|
2041
|
-
var
|
|
2042
|
-
const __vue2_script$
|
|
2037
|
+
var staticRenderFns$c = [];
|
|
2038
|
+
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 = "";
|
|
2039
|
+
const __vue2_script$c = {
|
|
2043
2040
|
components: {
|
|
2044
2041
|
BcfTopicCreationCardImage,
|
|
2045
2042
|
BIMDataButton: c$5,
|
|
@@ -2047,17 +2044,17 @@ const __vue2_script$b = {
|
|
|
2047
2044
|
},
|
|
2048
2045
|
emits: ["create-bcf-topic"]
|
|
2049
2046
|
};
|
|
2050
|
-
const __cssModules$
|
|
2051
|
-
var __component__$
|
|
2052
|
-
function __vue2_injectStyles$
|
|
2053
|
-
for (let o2 in __cssModules$
|
|
2054
|
-
this[o2] = __cssModules$
|
|
2047
|
+
const __cssModules$c = {};
|
|
2048
|
+
var __component__$c = /* @__PURE__ */ normalizeComponent(__vue2_script$c, render$c, staticRenderFns$c, false, __vue2_injectStyles$c, "b5e56a58", null, null);
|
|
2049
|
+
function __vue2_injectStyles$c(context) {
|
|
2050
|
+
for (let o2 in __cssModules$c) {
|
|
2051
|
+
this[o2] = __cssModules$c[o2];
|
|
2055
2052
|
}
|
|
2056
2053
|
}
|
|
2057
2054
|
var BcfTopicCreationCard = /* @__PURE__ */ function() {
|
|
2058
|
-
return __component__$
|
|
2055
|
+
return __component__$c.exports;
|
|
2059
2056
|
}();
|
|
2060
|
-
function t$
|
|
2057
|
+
function t$5(t2, e2, o2, i2, r2, n2, a2, s2, l2, c2) {
|
|
2061
2058
|
typeof a2 != "boolean" && (l2 = s2, s2 = a2, a2 = false);
|
|
2062
2059
|
const d2 = typeof o2 == "function" ? o2.options : o2;
|
|
2063
2060
|
let h2;
|
|
@@ -2079,7 +2076,7 @@ function t$4(t2, e2, o2, i2, r2, n2, a2, s2, l2, c2) {
|
|
|
2079
2076
|
}
|
|
2080
2077
|
return o2;
|
|
2081
2078
|
}
|
|
2082
|
-
var e$
|
|
2079
|
+
var e$5 = { components: { BIMDataText: t$5({ render: function() {
|
|
2083
2080
|
var t2 = this.$createElement;
|
|
2084
2081
|
return (this._self._c || t2)(this.component, { tag: "component", class: this.classes, style: this.style }, [this._t("default")], 2);
|
|
2085
2082
|
}, staticRenderFns: [] }, void 0, { props: { component: { type: String, default: "p" }, display: { type: String, default: "inline-block" }, fontSize: { type: String }, fontWeight: { type: String }, lineHeight: { type: String }, margin: { type: String, default: "0px" }, padding: { type: String, default: "0px" }, color: { type: String, default: "color-granite-light", validator: (t2) => ["color-primary", "color-secondary", "color-silver", "color-silver-light", "color-silver-dark", "color-granite-light", "color-granite", "color-white", "color-black", "color-high", "color-warning", "color-success"].includes(t2) } }, computed: { classes() {
|
|
@@ -2093,14 +2090,14 @@ var e$4 = { components: { BIMDataText: t$4({ render: function() {
|
|
|
2093
2090
|
}, calcLineHeight() {
|
|
2094
2091
|
return this.lineHeight ? this.lineHeight : this.component === "h1" ? "36px" : this.component === "h2" ? "30px" : this.component === "h3" ? "26px" : this.component === "h4" ? "24px" : this.component === "h5" ? "20px" : "18px";
|
|
2095
2092
|
} } }, void 0, false, void 0, false, void 0, void 0, void 0) }, props: { message: { type: String, default: "loading..." }, subMessage: { type: String, default: "" } } };
|
|
2096
|
-
const o$
|
|
2097
|
-
function i$
|
|
2093
|
+
const o$5 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
2094
|
+
function i$5(t2) {
|
|
2098
2095
|
return (t3, e2) => function(t4, e3) {
|
|
2099
|
-
const i2 = o$
|
|
2096
|
+
const i2 = o$5 ? e3.media || "default" : t4, a2 = n$3[i2] || (n$3[i2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
2100
2097
|
if (!a2.ids.has(t4)) {
|
|
2101
2098
|
a2.ids.add(t4);
|
|
2102
2099
|
let o2 = e3.source;
|
|
2103
|
-
if (e3.map && (o2 += "\n/*# sourceURL=" + e3.map.sources[0] + " */", o2 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(e3.map)))) + " */"), a2.element || (a2.element = document.createElement("style"), a2.element.type = "text/css", e3.media && a2.element.setAttribute("media", e3.media), r$
|
|
2100
|
+
if (e3.map && (o2 += "\n/*# sourceURL=" + e3.map.sources[0] + " */", o2 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(e3.map)))) + " */"), a2.element || (a2.element = document.createElement("style"), a2.element.type = "text/css", e3.media && a2.element.setAttribute("media", e3.media), r$5 === void 0 && (r$5 = document.head || document.getElementsByTagName("head")[0]), r$5.appendChild(a2.element)), "styleSheet" in a2.element)
|
|
2104
2101
|
a2.styles.push(o2), a2.element.styleSheet.cssText = a2.styles.filter(Boolean).join("\n");
|
|
2105
2102
|
else {
|
|
2106
2103
|
const t5 = a2.ids.size - 1, e4 = document.createTextNode(o2), i3 = a2.element.childNodes;
|
|
@@ -2109,15 +2106,15 @@ function i$4(t2) {
|
|
|
2109
2106
|
}
|
|
2110
2107
|
}(t3, e2);
|
|
2111
2108
|
}
|
|
2112
|
-
let r$
|
|
2109
|
+
let r$5;
|
|
2113
2110
|
const n$3 = {};
|
|
2114
|
-
const a$
|
|
2111
|
+
const a$4 = t$5({ render: function() {
|
|
2115
2112
|
var t2 = this, e2 = t2.$createElement, o2 = t2._self._c || e2;
|
|
2116
2113
|
return o2("div", { staticClass: "bimdata-loading" }, [o2("span", { staticClass: "bimdata-loading--square" }), t2._v(" "), o2("BIMDataText", { attrs: { color: "color-white", margin: "12px 0 0" } }, [o2("p", [t2._v(t2._s(t2.message))]), t2._v(" "), o2("p", [t2._v(t2._s(t2.subMessage))])])], 1);
|
|
2117
2114
|
}, staticRenderFns: [] }, function(t2) {
|
|
2118
2115
|
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 }));
|
|
2119
|
-
}, e$
|
|
2120
|
-
function e$
|
|
2116
|
+
}, e$5, "data-v-ddc1f86c", false, void 0, false, i$5, void 0, void 0);
|
|
2117
|
+
function e$4(e2, t2, i2, d2, r2, o2, n2, v2, s2, C2) {
|
|
2121
2118
|
typeof n2 != "boolean" && (s2 = v2, v2 = n2, n2 = false);
|
|
2122
2119
|
const a2 = typeof i2 == "function" ? i2.options : i2;
|
|
2123
2120
|
let l2;
|
|
@@ -2139,404 +2136,404 @@ function e$3(e2, t2, i2, d2, r2, o2, n2, v2, s2, C2) {
|
|
|
2139
2136
|
}
|
|
2140
2137
|
return i2;
|
|
2141
2138
|
}
|
|
2142
|
-
var t$
|
|
2139
|
+
var t$4 = { addFile: e$4({ render: function() {
|
|
2143
2140
|
var e2 = this.$createElement;
|
|
2144
2141
|
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" } });
|
|
2145
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addFolder: e$
|
|
2142
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addFolder: e$4({ render: function() {
|
|
2146
2143
|
var e2 = this.$createElement;
|
|
2147
2144
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.55 15.0531H16.0997V18.503H13.7999V15.0531H10.35V12.7529H13.7999V9.303H16.0997V12.7529H19.55V15.0531ZM20.7001 5.85364H11.4997L9.19989 3.55383H2.29968C1.02325 3.55383 0.0113988 4.5772 0.0113988 5.85364L-0.00012207 19.6537C-0.00012207 20.9301 1.02325 21.9539 2.29968 21.9539H20.7001C21.9761 21.9539 22.9999 20.9301 22.9999 19.6537V8.15384C22.9999 6.87701 21.9761 5.85364 20.7001 5.85364Z" } });
|
|
2148
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addUser: e$
|
|
2145
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), addUser: e$4({ render: function() {
|
|
2149
2146
|
var e2 = this.$createElement;
|
|
2150
2147
|
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$
|
|
2148
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalAscending: e$4({ render: function() {
|
|
2152
2149
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2153
2150
|
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$
|
|
2151
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalDescending: e$4({ render: function() {
|
|
2155
2152
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2156
2153
|
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" } })]);
|
|
2157
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalSort: e$
|
|
2154
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alphabeticalSort: e$4({ render: function() {
|
|
2158
2155
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2159
2156
|
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" } })]);
|
|
2160
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alt: e$
|
|
2157
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), alt: e$4({ render: function() {
|
|
2161
2158
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2162
2159
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.7015 3.57515L5.95106 8.45858L0.201477 13.342H5.54916V19.4455H17.8546V13.342H23.2015L17.4519 8.45858L11.7015 3.57515Z" } })]);
|
|
2163
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), angle: e$
|
|
2160
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), angle: e$4({ render: function() {
|
|
2164
2161
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2165
2162
|
return t2("g", [t2("path", { attrs: { d: "M1.97143 0.989715L3.94286 3.61829L0 3.61829L1.97143 0.989715Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.62856 2.30405L2.62856 22.6755L1.31427 22.6755L1.31427 2.30405L2.62856 2.30405Z" } }), this._v(" "), t2("path", { attrs: { d: "M22.9999 22.0183L20.3713 23.9897L20.3713 20.0469L22.9999 22.0183Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6856 22.6754H1.31421V21.3611H21.6856V22.6754Z" } }), this._v(" "), t2("path", { attrs: { d: "M17.7429 22.0183C17.7429 19.8609 17.3349 17.7246 16.5423 15.7314C15.7497 13.7381 14.588 11.9271 13.1235 10.4015C11.659 8.876 9.92038 7.66588 8.0069 6.84027C6.09342 6.01466 4.04257 5.58972 1.97144 5.58972L1.97144 22.0183H17.7429Z" } })]);
|
|
2166
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), api: e$
|
|
2163
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), api: e$4({ render: function() {
|
|
2167
2164
|
var e2 = this.$createElement;
|
|
2168
2165
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.58497 3.93973L10.6402 3.62V2.00037H13.7601V3.59997L14.8315 3.91204C16.1242 4.28859 17.2929 4.94218 18.2616 5.80229L19.0793 6.52835L20.5167 5.73415L22.0766 8.32L20.636 9.11602L20.8775 10.1526C21.0158 10.7465 21.0891 11.3652 21.0891 12.002C21.0891 12.6666 21.0093 13.3115 20.859 13.9292L20.6047 14.9738L22.0774 15.7876L20.5175 18.3734L19.0168 17.5442L18.2001 18.2559C17.2436 19.0893 16.0969 19.7234 14.8315 20.092L13.7601 20.4041V22.1073H10.6402V20.384L9.58497 20.0643C8.34041 19.6872 7.21348 19.0525 6.27315 18.224L5.45582 17.5038L3.88196 18.3735L2.32201 15.7876L3.88637 14.9232L3.63966 13.8834C3.49644 13.2797 3.4205 12.6502 3.4205 12.002C3.4205 11.3816 3.49006 10.7784 3.62158 10.1986L3.8556 9.16688L2.32281 8.31994L3.88275 5.73409L5.39381 6.56903L6.21204 5.83441C7.16447 4.9793 8.31333 4.32502 9.58497 3.93973ZM12.1698 18.9829C16.1967 18.9829 19.4611 15.8587 19.4611 12.0048C19.4611 8.15092 16.1967 5.02673 12.1698 5.02673C8.14298 5.02673 4.87858 8.15092 4.87858 12.0048C4.87858 15.8587 8.14298 18.9829 12.1698 18.9829ZM10.3379 0.553833C9.67013 0.553833 9.12877 1.07194 9.12877 1.71106V2.56066C7.63716 3.0126 6.29183 3.77936 5.17793 4.77943L4.37669 4.33671C3.79836 4.01715 3.05884 4.20679 2.72494 4.76028L0.862703 7.84722C0.528802 8.40071 0.726954 9.10846 1.30529 9.42802L2.14453 9.89174C1.99029 10.5717 1.90904 11.2778 1.90904 12.002C1.90904 12.7587 1.99774 13.4956 2.16573 14.2037L1.30449 14.6795C0.726157 14.9991 0.528005 15.7069 0.861906 16.2603L2.72414 19.3473C3.05804 19.9008 3.79756 20.0904 4.37589 19.7709L5.24943 19.2882C6.34921 20.2572 7.66893 21.0011 9.12877 21.4434V22.3966C9.12877 23.0357 9.67014 23.5538 10.3379 23.5538H14.0624C14.7302 23.5538 15.2716 23.0357 15.2716 22.3966V21.4758C16.756 21.0434 18.0989 20.3003 19.2176 19.3255L20.0235 19.7708C20.6019 20.0904 21.3414 19.9007 21.6753 19.3472L23.5375 16.2603C23.8714 15.7068 23.6733 14.999 23.0949 14.6795L22.331 14.2574C22.5073 13.5329 22.6006 12.7779 22.6006 12.002C22.6006 11.2586 22.515 10.5344 22.3527 9.83776L23.0941 9.42808C23.6725 9.10852 23.8706 8.40077 23.5367 7.84728L21.6745 4.76034C21.3406 4.20685 20.6011 4.01721 20.0227 4.33677L19.2896 4.74185C18.1567 3.73592 16.788 2.9699 15.2716 2.52819V1.71106C15.2716 1.07194 14.7302 0.553833 14.0624 0.553833H10.3379ZM12.1698 17.5363C15.3619 17.5363 17.9496 15.0598 17.9496 12.0048C17.9496 8.94982 15.3619 6.47326 12.1698 6.47326C8.97774 6.47326 6.39003 8.94982 6.39003 12.0048C6.39003 15.0598 8.97774 17.5363 12.1698 17.5363ZM10.3429 13.3399H8.78295L8.48637 14.2046H7.54029L9.14773 10.0078H9.97221L11.5885 14.2046H10.6425L10.3429 13.3399ZM9.02317 12.6394H10.1027L9.55997 11.0685L9.02317 12.6394ZM12.8816 12.7259V14.2046H11.9919V10.0078H13.6764C14.0007 10.0078 14.2854 10.0655 14.5306 10.1808C14.7777 10.2961 14.9675 10.4603 15.1 10.6736C15.2325 10.885 15.2987 11.1262 15.2987 11.3971C15.2987 11.8084 15.1534 12.1331 14.8627 12.3714C14.5741 12.6077 14.1737 12.7259 13.6616 12.7259H12.8816ZM12.8816 12.0255H13.6764C13.9117 12.0255 14.0907 11.9717 14.2132 11.8641C14.3378 11.7565 14.4001 11.6027 14.4001 11.4029C14.4001 11.1973 14.3378 11.0311 14.2132 10.9042C14.0887 10.7774 13.9167 10.7121 13.6972 10.7082H12.8816V12.0255ZM15.969 14.2046H16.8587V10.0078H15.969V14.2046Z" } });
|
|
2169
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), archive: e$
|
|
2166
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), archive: e$4({ render: function() {
|
|
2170
2167
|
var e2 = this.$createElement;
|
|
2171
2168
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.99856 2.98975H14.0663V6.55599H16.6753L11.4995 11.3798L6.32372 6.55599H8.99856V2.98975ZM8.47943 4.54312H4.53947L1.91832 12.2755H1.26615C0.566874 12.2755 0 12.8424 0 13.5417V20.7158C0 21.4151 0.566876 21.982 1.26615 21.982H21.7339C22.4331 21.982 23 21.4151 23 20.7158V13.5417C23 12.8424 22.4331 12.2755 21.7339 12.2755H21.0649L18.3821 4.54312H14.5607V5.38716H17.7816L20.1716 12.2755H2.80954L5.14457 5.38716H8.47943V4.54312ZM15.1789 16.378H7.82121V17.8795H15.1789V16.378Z" } });
|
|
2172
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), arrow: e$
|
|
2169
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), arrow: e$4({ render: function() {
|
|
2173
2170
|
var e2 = this.$createElement;
|
|
2174
2171
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5005 0L2.30076 9.19978L0 11.4995L2.30076 13.8002L11.5005 23L13.8002 20.7003L6.2268 13.1269H22.9995V11.5V9.8731H6.2268L13.8002 2.29967L11.5005 0Z" } });
|
|
2175
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), attach: e$
|
|
2172
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), attach: e$4({ render: function() {
|
|
2176
2173
|
var e2 = this.$createElement;
|
|
2177
2174
|
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$
|
|
2175
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), backInTime: e$4({ render: function() {
|
|
2179
2176
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2180
2177
|
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" } })]);
|
|
2181
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcf: e$
|
|
2178
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), bcf: e$4({ render: function() {
|
|
2182
2179
|
var e2 = this.$createElement;
|
|
2183
2180
|
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" } });
|
|
2184
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), building: e$
|
|
2181
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), building: e$4({ render: function() {
|
|
2185
2182
|
var e2 = this.$createElement;
|
|
2186
2183
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.3333 3.63158V10.8947H23V23H0V6.05263H7.66667V3.63158L11.5 0L15.3333 3.63158ZM2.55551 20.5793H5.11106V18.1582H2.55551V20.5793ZM5.11106 15.7373H2.55551V13.3162H5.11106V15.7373ZM2.55551 10.8943H5.11106V8.47325H2.55551V10.8943ZM12.7778 20.5793H10.2223V18.1582H12.7778V20.5793ZM10.2223 15.7373H12.7778V13.3162H10.2223V15.7373ZM12.7778 10.8943H10.2223V8.47325H12.7778V10.8943ZM10.2223 6.05231H12.7778V3.63126H10.2223V6.05231ZM20.4444 20.5793H17.8889V18.1582H20.4444V20.5793ZM17.8889 15.7373H20.4444V13.3162H17.8889V15.7373Z" } });
|
|
2187
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), burgerMenu: e$
|
|
2184
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), burgerMenu: e$4({ render: function() {
|
|
2188
2185
|
var e2 = this.$createElement;
|
|
2189
2186
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 6.55556H23V4H0V6.55556ZM0 12.9446H23V10.389H0V12.9446ZM0 19.3332H23V16.7777H0V19.3332Z" } });
|
|
2190
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), calendar: e$
|
|
2187
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), calendar: e$4({ render: function() {
|
|
2191
2188
|
var e2 = this.$createElement;
|
|
2192
2189
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.9401 2.0909H18.9856C20.1356 2.0909 21.0765 3.03181 21.0765 4.1818V20.909C21.0765 22.059 20.1356 22.9999 18.9856 22.9999H2.25838C1.10839 22.9999 0.16748 22.059 0.16748 20.909V4.1818C0.16748 3.03181 1.10839 2.0909 2.25838 2.0909H3.30383V0H5.39473V2.0909H15.8492V0H17.9401V2.0909ZM2.25838 20.909H18.9856V7.31815H2.25838V20.909ZM8.77371 8.57203H3.50813V13.8376H8.77371V8.57203Z" } });
|
|
2193
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), caliper: e$
|
|
2190
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), caliper: e$4({ render: function() {
|
|
2194
2191
|
var e2 = this.$createElement;
|
|
2195
|
-
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.4094 6.03868C15.7162\
|
|
2196
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), camera: e$
|
|
2192
|
+
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.4094 6.03868C15.7162\n 5.46323 15.8901 4.80619 15.8901 4.10853C15.8901 1.83945 14.0507 0 11.7816\n 0C9.51251 0 7.67306 1.83945 7.67306 4.10853C7.67306 4.80469 7.84621 5.46041\n 8.15178 6.03497L4.91762 12.3967C4.36198 11.8537 3.87187 11.2459 3.4583\n 10.5855C3.13751 10.0733 2.4887 9.83995 1.944 10.1018C1.39931 10.3636 1.16579\n 11.0206 1.47611 11.5392C2.12429 12.6225 2.93847 13.5955 3.88741\n 14.4232L1.00004 20.1028L1.62696 23L4.33716 21.7993L7.07177 16.4202C8.55075\n 17.0507 10.1475 17.3804 11.7682 17.3822C14.028 17.3848 16.2426 16.7497 18.1576\n 15.5499C19.7626 14.5444 21.1025 13.1765 22.0733 11.5622C22.3848 11.0443\n 22.1527 10.3868 21.6086 10.1237C21.0645 9.86066 20.4152 10.0926 20.0933\n 10.6041C19.6815 11.2583 19.1944 11.8607 18.643 12.3992L15.4094\n 6.03868ZM12.3008 8.18457C12.1307 8.20601 11.9574 8.21706 11.7816\n 8.21706C11.6045 8.21706 11.43 8.20585 11.2588 8.18411L8.06635 14.4638C9.23735\n 14.9423 10.4949 15.1922 11.7706 15.1936C13.0526 15.1951 14.3167 14.9456\n 15.4936 14.4651L12.3008 8.18457ZM11.7816 5.92554C10.7781 5.92554 9.96458\n 5.11204 9.96458 4.10853C9.96458 3.10502 10.7781 2.29152 11.7816\n 2.29152C12.7851 2.29152 13.5986 3.10502 13.5986 4.10853C13.5986 5.11204\n 12.7851 5.92554 11.7816 5.92554ZM19.2221 21.7991L17.2609 17.9415C18.0623\n 17.6222 18.8367 17.2302 19.574 16.7683C19.9026 16.5625 20.2218 16.344 20.5312\n 16.1135L22.5592 20.1026L21.9323 22.9998L19.2221 21.7991Z" } });
|
|
2193
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), camera: e$4({ render: function() {
|
|
2197
2194
|
var e2 = this.$createElement;
|
|
2198
2195
|
return (this._self._c || e2)("path", { attrs: { d: "M3.91781 5.21572V2.51572H5.71781V5.21572H8.41781V7.01572H5.71781V9.71572H3.91781V7.01572H1.31781V5.21572H3.91781ZM6.61781 10.6157V7.91572H9.31781V5.21572H15.5178L17.1178 7.01572H20.0178C21.0178 7.01572 21.8178 7.81572 21.8178 8.81572V19.5157C21.8178 20.5157 21.0178 21.3157 20.0178 21.3157H5.71781C4.71781 21.3157 3.91781 20.5157 3.91781 19.5157V10.6157H6.61781ZM12.8178 18.6157C15.3178 18.6157 17.3178 16.6157 17.3178 14.1157C17.3178 11.6157 15.3178 9.61572 12.8178 9.61572C10.3178 9.61572 8.31781 11.6157 8.31781 14.1157C8.31781 16.6157 10.4178 18.6157 12.8178 18.6157ZM10.0178 14.1157C10.0178 15.7157 11.3178 17.0157 12.9178 17.0157C14.5178 17.0157 15.8178 15.7157 15.8178 14.1157C15.8178 12.5157 14.5178 11.2157 12.9178 11.2157C11.3178 11.2157 10.0178 12.6157 10.0178 14.1157Z" } });
|
|
2199
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cancelCamera: e$
|
|
2196
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cancelCamera: e$4({ render: function() {
|
|
2200
2197
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2201
2198
|
return t2("g", [t2("path", { attrs: { d: "M1.30957 3.00321L3.1304 4.82404C2.8429 5.20738 2.65124 5.68654 2.65124 6.16571V8.08238V17.6657C2.65124 18.7199 3.51374 19.5824 4.5679 19.5824H17.8887L20.0929 21.7865L21.0512 20.8282L2.2679 2.04488L1.30957 3.00321ZM12.2346 16.7074C9.55124 16.7074 7.4429 14.599 7.4429 11.9157C7.4429 11.149 7.63457 10.3824 8.0179 9.71154L9.35957 11.0532C9.26374 11.3407 9.26374 11.6282 9.26374 11.9157C9.26374 13.6407 10.6054 14.9824 12.3304 14.9824C12.6179 14.9824 12.9054 14.8865 13.1929 14.8865L14.5346 16.2282C13.7679 16.5157 13.0012 16.7074 12.2346 16.7074Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.9012 4.24905H16.8346L15.1096 2.33238H13.9596H9.93457H9.35957L7.63457 4.24905H6.29291L9.83874 7.79488C10.5096 7.41155 11.3721 7.12405 12.2346 7.12405C14.9179 7.12405 17.0262 9.23238 17.0262 11.9157C17.0262 12.7782 16.7387 13.6407 16.3554 14.3115L21.1471 19.1032C21.5304 18.7199 21.8179 18.2407 21.8179 17.6657V8.08238V6.16572C21.8179 5.11155 20.9554 4.24905 19.9012 4.24905Z" } }), this._v(" "), t2("path", { attrs: { d: "M12.2346 8.84904C11.8513 8.84904 11.4679 8.94488 11.0846 9.04071L15.1096 13.0657C15.2054 12.6824 15.3013 12.299 15.3013 11.9157C15.3013 10.1907 13.9596 8.84904 12.2346 8.84904Z" } })]);
|
|
2202
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), check: e$
|
|
2199
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), check: e$4({ render: function() {
|
|
2203
2200
|
var e2 = this.$createElement;
|
|
2204
2201
|
return (this._self._c || e2)("path", { attrs: { d: "M13.7426 8.83955H0.599731V10.9824H13.7426V8.83955ZM13.7426 4.55383H0.599731V6.69669H13.7426V4.55383ZM0.599731 15.2681H9.36164V13.1253H0.599731V15.2681ZM21.9569 10.4467L23.5997 12.0538L15.944 19.5538L11.0045 14.7324L12.6474 13.1253L15.944 16.3395L21.9569 10.4467Z" } });
|
|
2205
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), chevron: e$
|
|
2202
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), chevron: e$4({ render: function() {
|
|
2206
2203
|
var e2 = this.$createElement;
|
|
2207
2204
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.0522 2.19676C5.9826 2.27217 5.9826 2.39544 6.0522 2.47105L14.4046 11.5192L6.08804 20.529C6.01825 20.6044 6.01825 20.7279 6.08804 20.8033L8.06344 22.9433C8.13304 23.0189 8.24702 23.0189 8.31662 22.9433L18.7257 11.667C18.7942 11.5928 18.795 11.4724 18.729 11.3968C18.7202 11.3736 18.7071 11.3518 18.6899 11.3331L8.28077 0.0565512C8.21117 -0.0188504 8.09719 -0.0188504 8.02759 0.0565512L6.0522 2.19676Z" } });
|
|
2208
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), classificationCategorie: e$
|
|
2205
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), classificationCategorie: e$4({ render: function() {
|
|
2209
2206
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2210
2207
|
return t2("g", [t2("path", { attrs: { d: "M22.4015 1.01572H9.1015V4.91572H22.4015V1.01572Z" } }), this._v(" "), t2("path", { attrs: { d: "M19.5015 6.81572H9.1015V10.7157H19.5015V6.81572Z" } }), this._v(" "), t2("path", { attrs: { d: "M16.5015 12.6157H9.1015V16.5157H16.5015V12.6157Z" } }), this._v(" "), t2("path", { attrs: { d: "M7.30149 1.01572H3.40149V18.4157H0.901489L3.10149 20.7157L5.30149 23.0157L7.50149 20.7157L9.70149 18.4157H7.30149V1.01572Z" } })]);
|
|
2211
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), classificationElement: e$
|
|
2208
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), classificationElement: e$4({ render: function() {
|
|
2212
2209
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2213
2210
|
return t2("g", [t2("path", { attrs: { d: "M18.0475 5.01572H5.34753V7.61572H18.0475V5.01572Z" } }), this._v(" "), t2("path", { attrs: { d: "M18.0475 10.2157H5.34753V12.8157H18.0475V10.2157Z" } }), this._v(" "), t2("path", { attrs: { d: "M18.0475 15.3157H5.34753V17.9157H18.0475V15.3157Z" } }), this._v(" "), t2("path", { attrs: { d: "M9.14756 0.515717H3.34756H0.747559V3.11572V8.81572H3.34756V3.11572H9.14756V0.515717Z" } }), this._v(" "), t2("path", { attrs: { d: "M20.1475 14.2157V19.9157H14.3475V22.5157H20.1475H22.7475V19.9157V14.2157H20.1475Z" } })]);
|
|
2214
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), click: e$
|
|
2211
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), click: e$4({ render: function() {
|
|
2215
2212
|
var e2 = this.$createElement;
|
|
2216
2213
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.94492 4.49546C10.154 4.49546 10.2586 4.28637 10.2586 4.18182V0.313636C10.2586 0.104545 10.0495 0 9.94492 0C9.84037 0 9.52674 0.104545 9.52674 0.313636V4.07727C9.52674 4.39091 9.73583 4.49546 9.94492 4.49546ZM21.4449 17.3545L15.4858 12.5454L9.52674 7.63181L9.63128 15.2636V23L14.1267 17.1455L21.4449 17.3545ZM15.5904 2.3C15.6949 2.40455 15.6949 2.71818 15.5904 2.82273L12.8722 5.54091C12.7676 5.64546 12.454 5.64546 12.3495 5.54091C12.2449 5.43637 12.2449 5.12273 12.3495 5.01818L15.0676 2.3C15.1722 2.19546 15.4858 2.19546 15.5904 2.3ZM7.0177 10.35L4.29951 13.0682C4.19497 13.1727 4.19497 13.4864 4.29951 13.5909C4.40406 13.6955 4.71769 13.6955 4.82224 13.5909L7.54042 10.8727C7.64497 10.7682 7.64497 10.4546 7.54042 10.35C7.33133 10.2455 7.12224 10.2455 7.0177 10.35ZM13.7085 8.2591C13.604 8.2591 13.3949 8.15456 13.3949 7.94546C13.3949 7.73637 13.4994 7.52728 13.7085 7.63183H17.4721C17.5767 7.63183 17.7858 7.73637 17.7858 7.94546C17.7858 8.05001 17.6812 8.2591 17.4721 8.2591H13.7085ZM6.49497 7.94546C6.49497 7.73637 6.28588 7.63183 6.18133 7.63183H2.31315C2.10406 7.52728 1.99951 7.73637 1.99951 7.94546C1.99951 8.15456 2.2086 8.2591 2.31315 8.2591H6.07679C6.28588 8.2591 6.49497 8.15456 6.49497 7.94546ZM4.29951 2.3C4.40406 2.19546 4.71769 2.19546 4.82224 2.3L7.54042 5.01818C7.64497 5.12273 7.64497 5.43637 7.54042 5.54091C7.33133 5.64546 7.12224 5.64546 7.0177 5.54091L4.29951 2.82273C4.19497 2.71818 4.19497 2.50909 4.29951 2.3Z" } });
|
|
2217
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), close: e$
|
|
2214
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), close: e$4({ render: function() {
|
|
2218
2215
|
var e2 = this.$createElement;
|
|
2219
2216
|
return (this._self._c || e2)("path", { attrs: { d: "M23 2.31643L20.6836 0L11.5 9.18357L2.31643 0L0 2.31643L9.18357 11.5L0 20.6836L2.31643 23L11.5 13.8164L20.6836 23L23 20.6836L13.8164 11.5L23 2.31643Z" } });
|
|
2220
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cloud: e$
|
|
2217
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cloud: e$4({ render: function() {
|
|
2221
2218
|
var e2 = this.$createElement;
|
|
2222
2219
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M22.9995 13.7162C22.9995 10.6768 20.5357 8.21286 17.4963 8.21286C17.095 8.21286 16.7041 8.25698 16.3273 8.33851C15.6281 5.83623 13.333 4 10.6077 4C7.32729 4 4.66778 6.65933 4.66778 9.93979C4.66778 10.2037 4.68688 10.463 4.72022 10.7178H4.25039C1.91241 10.7178 -0.000488281 12.6307 -0.000488281 14.9687C-0.000488281 17.3067 1.91241 19.2195 4.25039 19.2195H8.87188H13.9108H18.7488C21.0866 19.2195 22.9995 17.3067 22.9995 14.9687C22.9995 14.7743 22.9817 14.5844 22.9562 14.3968C22.9837 14.1736 22.9995 13.9468 22.9995 13.7162Z" } });
|
|
2223
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), color: e$
|
|
2220
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), color: e$4({ render: function() {
|
|
2224
2221
|
var e2 = this.$createElement;
|
|
2225
2222
|
return (this._self._c || e2)("path", { attrs: { d: "M11.405 0.00179965C5.89928 0.116844 1.7993 3.45312 0.393597 8.51505C-1.01211 13.577 1.7993 17.6035 1.7993 17.6035C1.7993 17.6035 4.025 21.4 8.35926 22.5504C10.9364 23.2407 13.5135 23.3557 16.2078 21.2849C16.2078 21.2849 16.6763 20.9398 16.5592 20.5947C16.4421 20.2495 15.6221 20.3646 15.6221 20.3646H14.2164C13.1621 20.3646 12.2249 19.4442 12.2249 18.4088C12.2249 17.3734 13.1621 16.4531 14.2164 16.4531H18.3163C18.6678 16.4531 20.3078 16.4531 21.1277 15.1876C21.2449 14.9575 21.4792 14.6124 21.5963 14.3823C26.6334 5.29382 16.9106 -0.113244 11.405 0.00179965ZM4.49357 11.5062C3.43929 11.5062 2.50215 10.5858 2.50215 9.55044C2.50215 8.51505 3.43929 7.5947 4.49357 7.5947C5.54785 7.5947 6.48499 8.51505 6.48499 9.55044C6.48499 10.5858 5.54785 11.5062 4.49357 11.5062ZM8.35926 6.44426C7.30498 6.44426 6.36784 5.52391 6.36784 4.48851C6.36784 3.45312 7.30498 2.53276 8.35926 2.53276C9.41354 2.53276 10.3507 3.45312 10.3507 4.48851C10.3507 5.52391 9.53068 6.44426 8.35926 6.44426ZM14.8021 6.32921C13.7478 6.32921 12.8107 5.40886 12.8107 4.37347C12.8107 3.33807 13.7478 2.41772 14.8021 2.41772C15.8564 2.41772 16.7935 3.33807 16.7935 4.37347C16.7935 5.40886 15.8564 6.32921 14.8021 6.32921ZM18.7849 11.5062C17.7306 11.5062 16.7935 10.5858 16.7935 9.55044C16.7935 8.51505 17.7306 7.5947 18.7849 7.5947C19.8392 7.5947 20.7763 8.51505 20.7763 9.55044C20.6592 10.5858 19.8392 11.5062 18.7849 11.5062Z" } });
|
|
2226
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), comment: e$
|
|
2223
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), comment: e$4({ render: function() {
|
|
2227
2224
|
var e2 = this.$createElement;
|
|
2228
2225
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2 0C0.895431 0 0 0.895431 0 2V14C0 15.1046 0.895431 16 2 16H6.01207L6.01207 22.4845C6.01207 22.9512 6.59476 23.1635 6.89492 22.8061L12.612 16H21C22.1046 16 23 15.1046 23 14V2C23 0.895431 22.1046 0 21 0H2ZM3.6767 5.08725C3.6767 4.53497 4.12442 4.08725 4.6767 4.08725H18.0124C18.5647 4.08725 19.0124 4.53497 19.0124 5.08725V5.6432C19.0124 6.19548 18.5647 6.6432 18.0124 6.6432H4.6767C4.12442 6.6432 3.6767 6.19548 3.6767 5.6432V5.08725ZM4.6767 9.19914C4.12442 9.19914 3.6767 9.64685 3.6767 10.1991V10.7551C3.6767 11.3074 4.12442 11.7551 4.6767 11.7551H14.1785C14.7307 11.7551 15.1785 11.3074 15.1785 10.7551V10.1991C15.1785 9.64685 14.7307 9.19914 14.1785 9.19914H4.6767Z" } });
|
|
2229
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cursor: e$
|
|
2226
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), cursor: e$4({ render: function() {
|
|
2230
2227
|
var e2 = this.$createElement;
|
|
2231
2228
|
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$
|
|
2229
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateAscending: e$4({ render: function() {
|
|
2233
2230
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2234
2231
|
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$
|
|
2232
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), dateDescending: e$4({ render: function() {
|
|
2236
2233
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2237
2234
|
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" } })]);
|
|
2238
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), default: e$
|
|
2235
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), default: e$4({ render: function() {
|
|
2239
2236
|
var e2 = this.$createElement;
|
|
2240
2237
|
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" } });
|
|
2241
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), delete: e$
|
|
2238
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), delete: e$4({ render: function() {
|
|
2242
2239
|
var e2 = this.$createElement;
|
|
2243
2240
|
return (this._self._c || e2)("path", { attrs: { d: "M4.1508 20.7945C4.1508 22.1993 5.33296 23.3486 6.77783 23.3486H17.286C18.7308 23.3486 19.913 22.1993 19.913 20.7945V5.47018H4.1508V20.7945ZM7.38204 11.7021L9.2341 9.90147L12.0319 12.6088L14.8165 9.90147L16.6686 11.7021L13.8839 14.4094L16.6686 17.1167L14.8165 18.9173L12.0319 16.21L9.24724 18.9173L7.39518 17.1167L10.1798 14.4094L7.38204 11.7021ZM16.6292 1.63909L15.3157 0.362061H8.7481L7.43459 1.63909H2.83728V4.19315H21.2265V1.63909H16.6292Z" } });
|
|
2244
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), deniedFile: e$
|
|
2241
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), deniedFile: e$4({ render: function() {
|
|
2245
2242
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2246
2243
|
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("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" } }), this._v(" "), t2("path", { attrs: { d: "M10.7275 13.0429C11.4757 11.6116 13.5243 11.6116 14.2725 13.0429L18.4702 21.0735C19.1663 22.4051 18.2003 24 16.6978 24H8.30222C6.79967 24 5.8337 22.4051 6.52977 21.0735L10.7275 13.0429Z", fill: "#FF3D1E" } }), this._v(" "), t2("path", { attrs: { d: "M13.2031 16L13.0581 20.4429H12.0034L11.854 16H13.2031ZM11.8188 21.8184C11.8188 21.6309 11.8833 21.4756 12.0122 21.3525C12.144 21.2266 12.3169 21.1636 12.5308 21.1636C12.7476 21.1636 12.9204 21.2266 13.0493 21.3525C13.1782 21.4756 13.2427 21.6309 13.2427 21.8184C13.2427 22 13.1782 22.1538 13.0493 22.2798C12.9204 22.4058 12.7476 22.4688 12.5308 22.4688C12.3169 22.4688 12.144 22.4058 12.0122 22.2798C11.8833 22.1538 11.8188 22 11.8188 21.8184Z", fill: "white" } })]);
|
|
2247
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), deploy: e$
|
|
2244
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), deploy: e$4({ render: function() {
|
|
2248
2245
|
var e2 = this.$createElement;
|
|
2249
2246
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.7691 6.1512C21.6937 6.0816 21.5704 6.0816 21.4948 6.1512L12.4466 14.5036L3.43681 6.18704C3.36141 6.11725 3.23794 6.11725 3.16253 6.18704L1.02253 8.16243C0.946918 8.23204 0.946918 8.34601 1.02253 8.41562L12.2989 18.8247C12.373 18.8932 12.4934 18.894 12.569 18.828C12.5923 18.8192 12.614 18.8061 12.6327 18.7889L23.9093 8.37977C23.9847 8.31017 23.9847 8.19619 23.9093 8.12659L21.7691 6.1512Z" } });
|
|
2250
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), detach: e$
|
|
2247
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), detach: e$4({ render: function() {
|
|
2251
2248
|
var e2 = this.$createElement;
|
|
2252
2249
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M12.0537 2.3513C13.0902 0.62498 15.3654 0.0220922 17.1354 1.00471C18.9054 1.98733 19.5 4.18337 18.4634 5.90969L16.1842 9.70566C15.4582 10.9147 14.1248 11.5727 12.7828 11.5209L12.4773 12.0501L9.7249 10.461L9.95854 10.0563C9.13259 8.94749 9.01038 7.41978 9.77444 6.14727L12.0537 2.3513ZM14.1171 8.70055C14.0903 8.18061 13.8088 7.68435 13.3244 7.40465C12.8068 7.1058 12.1909 7.13127 11.7121 7.418C11.7404 7.25105 11.8 7.08589 11.8931 6.93041L13.8155 3.71728C14.2238 3.03482 15.121 2.79704 15.8195 3.1862C16.518 3.57535 16.7532 4.44406 16.3449 5.12652L14.4225 8.33965C14.3391 8.47901 14.2354 8.59983 14.1171 8.70055ZM5.6974 13.3607C6.42334 12.1517 7.7568 11.4937 9.09878 11.5455L9.3791 11.0599L12.1315 12.649L11.923 13.01C12.749 14.1189 12.8712 15.6466 12.1071 16.9191L9.8279 20.7151C8.79136 22.4414 6.5162 23.0443 4.7462 22.0617C2.9762 21.0791 2.38162 18.883 3.41816 17.1567L5.6974 13.3607ZM7.45903 14.7267C7.54241 14.5874 7.64618 14.4665 7.76448 14.3658C7.79126 14.8858 8.07272 15.382 8.55717 15.6617C9.07479 15.9606 9.69066 15.9351 10.1695 15.6484C10.1411 15.8153 10.0815 15.9805 9.98848 16.136L8.06607 19.3491C7.65775 20.0316 6.76051 20.2693 6.06202 19.8802C5.36354 19.491 5.1283 18.6223 5.53662 17.9398L7.45903 14.7267ZM17.7429 16.2934L18.5331 14.9246L14.7161 13.6334L17.7429 16.2934ZM15.9264 17.7095L14.3998 18.1185L14.1404 14.0974L15.9264 17.7095ZM18.5467 12.5879L18.1376 11.0613L14.5255 12.8473L18.5467 12.5879ZM3.85241 8.07499L4.70693 6.7454L7.60365 9.54648L3.85241 8.07499ZM8.13313 5.08147L6.58873 5.4174L8.20076 9.11043L8.13313 5.08147ZM4.0636 11.9528L3.72767 10.4084L7.75663 10.3408L4.0636 11.9528Z" } });
|
|
2253
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), distance: e$
|
|
2250
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), distance: e$4({ render: function() {
|
|
2254
2251
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2255
|
-
return t2("g", [t2("rect", { attrs: { y: "6.24689", width: "23", height: "17.7429" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.28571 0.989746L0 2.96117L3.28571 4.9326L3.28571 0.989746ZM20.3714 4.9326L23 2.96117L20.3714 0.989746V4.9326Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.3715\n
|
|
2256
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), doubleChevron: e$
|
|
2252
|
+
return t2("g", [t2("rect", { attrs: { y: "6.24689", width: "23", height: "17.7429" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.28571 0.989746L0 2.96117L3.28571 4.9326L3.28571 0.989746ZM20.3714 4.9326L23 2.96117L20.3714 0.989746V4.9326Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.3715\n 3.6183H2.6286V2.30402H20.3715V3.6183Z" } })]);
|
|
2253
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), doubleChevron: e$4({ render: function() {
|
|
2257
2254
|
var e2 = this.$createElement;
|
|
2258
2255
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M1.05119 2.47105C0.982285 2.39544 0.982285 2.27217 1.05119 2.19676L3.00683 0.0565512C3.07573 -0.0188504 3.18857 -0.0188504 3.25748 0.0565512L13.5625 11.3331C13.5796 11.3518 13.5925 11.3736 13.6012 11.3968C13.6665 11.4724 13.6658 11.5928 13.598 11.667L3.29296 22.9433C3.22406 23.0189 3.11122 23.0189 3.04231 22.9433L1.08668 20.8033C1.01758 20.7279 1.01758 20.6044 1.08668 20.529L9.32003 11.5192L1.05119 2.47105ZM10.2512 2.47105C10.1823 2.39544 10.1823 2.27217 10.2512 2.19676L12.2068 0.0565512C12.2757 -0.0188504 12.3886 -0.0188504 12.4575 0.0565512L22.7625 11.3331C22.7796 11.3518 22.7925 11.3736 22.8012 11.3968C22.8665 11.4724 22.8658 11.5928 22.798 11.667L12.493 22.9433C12.4241 23.0189 12.3112 23.0189 12.2423 22.9433L10.2867 20.8033C10.2176 20.7279 10.2176 20.6044 10.2867 20.529L18.52 11.5192L10.2512 2.47105Z" } });
|
|
2259
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), down: e$
|
|
2256
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), down: e$4({ render: function() {
|
|
2260
2257
|
var e2 = this.$createElement;
|
|
2261
2258
|
return (this._self._c || e2)("path", { attrs: { d: "M11.8209 21.5107L0.320924 0.0440684L23.3209 0.0440705L11.8209 21.5107Z" } });
|
|
2262
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), download: e$
|
|
2259
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), download: e$4({ render: function() {
|
|
2263
2260
|
var e2 = this.$createElement;
|
|
2264
2261
|
return (this._self._c || e2)("path", { attrs: { d: "M18.5438 9.77808C17.8921 6.47183 14.9883 3.98975 11.5 3.98975C8.73042 3.98975 6.325 5.56141 5.12708 7.86141C2.2425 8.16808 0 10.6118 0 13.5731C0 16.7452 2.57792 19.3231 5.75 19.3231H18.2083C20.8533 19.3231 23 17.1764 23 14.5314C23 12.0014 21.0354 9.95058 18.5438 9.77808ZM16.2917 12.6147L11.5 17.4064L6.70833 12.6147H9.58333V8.78141H13.4167V12.6147H16.2917Z" } });
|
|
2265
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), drag: e$
|
|
2262
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), drag: e$4({ render: function() {
|
|
2266
2263
|
var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
|
|
2267
2264
|
return i2("g", [i2("rect", { attrs: { x: "7.0011", y: "8.99884", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "7.0011", y: "12.3734", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "10.3756", y: "8.99884", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "10.3756", y: "12.3734", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "13.7502", y: "8.99884", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "13.7502", y: "12.3734", width: "2.24971", height: "2.24971" } }), e2._v(" "), i2("rect", { attrs: { x: "11.5002", width: "1.27286", height: "6.36432", transform: "rotate(45 11.5002 0)" } }), e2._v(" "), i2("rect", { attrs: { x: "15.9996", y: "4.50104", width: "1.27287", height: "6.36432", transform: "rotate(135 15.9996 4.50104)" } }), e2._v(" "), i2("rect", { attrs: { width: "1.22648", height: "6.13242", transform: "matrix(-0.733847 -0.679315 0.733847 -0.679315 11.4996 22.9999)" } }), e2._v(" "), i2("rect", { attrs: { width: "1.22648", height: "6.13242", transform: "matrix(0.733847 -0.679315 0.733847 0.679315 7 18.8331)" } })]);
|
|
2268
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), edit: e$
|
|
2265
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), edit: e$4({ render: function() {
|
|
2269
2266
|
var e2 = this.$createElement;
|
|
2270
2267
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M22.6263 3.36328C23.1245 3.86155 23.1245 4.66643 22.6263 5.1647L20.2883 7.50271L15.4973 2.71171L17.8353 0.373698C18.3335 -0.124566 19.1384 -0.124566 19.6367 0.373698L22.6263 3.36328ZM0 23.0001V18.2091L14.1303 4.07886L18.9213 8.86987L4.791 23.0001H0Z" } });
|
|
2271
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ellipsis: e$
|
|
2268
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ellipsis: e$4({ render: function() {
|
|
2272
2269
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2273
2270
|
return t2("g", [t2("path", { attrs: { d: "M11.5 8.69377C12.3284 8.69377 13 8.01961 13 7.18798C13 6.35636 12.3284 5.68219 11.5 5.68219C10.6716 5.68219 10 6.35636 10 7.18798C10 8.01961 10.6716 8.69377 11.5 8.69377Z" } }), this._v(" "), t2("path", { attrs: { d: "M11.5 13.0058C12.3284 13.0058 13 12.3316 13 11.5C13 10.6684 12.3284 9.9942 11.5 9.9942C10.6716 9.9942 10 10.6684 10 11.5C10 12.3316 10.6716 13.0058 11.5 13.0058Z" } }), this._v(" "), t2("path", { attrs: { d: "M11.5 17.3179C12.3284 17.3179 13 16.6437 13 15.8121C13 14.9804 12.3284 14.3063 11.5 14.3063C10.6716 14.3063 10 14.9804 10 15.8121C10 16.6437 10.6716 17.3179 11.5 17.3179Z" } })]);
|
|
2274
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), expanded: e$
|
|
2271
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), expanded: e$4({ render: function() {
|
|
2275
2272
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2276
2273
|
return t2("g", [t2("path", { attrs: { d: "M12.3356 0.500488H0.447998V12.256L12.3356 0.500488Z" } }), this._v(" "), t2("rect", { attrs: { width: "3.30881", height: "8.73784", transform: "matrix(0.711046 -0.703145 0.711046 0.703145 3.54883 5.89368)" } }), this._v(" "), t2("path", { attrs: { d: "M11.5604 23.5005L23.448 23.5005L23.448 11.7449L11.5604 23.5005Z" } }), this._v(" "), t2("rect", { attrs: { width: "3.30881", height: "8.73784", transform: "matrix(-0.711046 0.703145 -0.711046 -0.703146 20.3464 18.1073)" } })]);
|
|
2277
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), explosion: e$
|
|
2274
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), explosion: e$4({ render: function() {
|
|
2278
2275
|
var e2 = this.$createElement;
|
|
2279
2276
|
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" } });
|
|
2280
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), export: e$
|
|
2277
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), export: e$4({ render: function() {
|
|
2281
2278
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2282
2279
|
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" } })]);
|
|
2283
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), exportIfc: e$
|
|
2280
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), exportIfc: e$4({ render: function() {
|
|
2284
2281
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2285
2282
|
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" } })]);
|
|
2286
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), failed: e$
|
|
2283
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), failed: e$4({ render: function() {
|
|
2287
2284
|
var e2 = this.$createElement;
|
|
2288
2285
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5 23.0664C17.8513 23.0664 23 17.9177 23 11.5664C23 5.21513 17.8513 0.0664062 11.5 0.0664062C5.14873 0.0664062 0 5.21513 0 11.5664C0 17.9177 5.14873 23.0664 11.5 23.0664ZM16.0918 5.81641L17.25 6.97462L12.6582 11.5664L17.25 16.1582L16.0918 17.3164L11.5 12.7246L6.90821 17.3164L5.75 16.1582L10.3418 11.5664L5.75 6.97462L6.90821 5.81641L11.5 10.4082L16.0918 5.81641Z" } });
|
|
2289
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filter: e$
|
|
2286
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), filter: e$4({ render: function() {
|
|
2290
2287
|
var e2 = this.$createElement;
|
|
2291
2288
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 6.55556H23V4H0V6.55556ZM3.83333 12.9442H19.1679V10.3887H3.83333V12.9442ZM8.94442 19.3336H14.0555V16.778H8.94442V19.3336Z" } });
|
|
2292
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fitView: e$
|
|
2289
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fitView: e$4({ render: function() {
|
|
2293
2290
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2294
2291
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.07563 14.7426C5.80119 14.7426 3.15796 12.0993 3.15796 8.8249C3.15796 5.55045 5.80119 2.90723 9.07563 2.90723C12.3501 2.90723 14.9933 5.55045 14.9933 8.8249C14.9933 12.0993 12.3501 14.7426 9.07563 14.7426V14.7426ZM16.966 14.7428H15.9272L15.559 14.3878C16.8477 12.8886 17.6236 10.9424 17.6236 8.82515C17.6236 4.10416 13.7968 0.277405 9.07582 0.277405C4.35484 0.277405 0.528076 4.10416 0.528076 8.82515C0.528076 13.5461 4.35484 17.3729 9.07582 17.3729C11.193 17.3729 13.1393 16.597 14.6384 15.3083L14.9935 15.6765V16.7154L21.5687 23.2774L23.5281 21.318L16.966 14.7428Z" } }), this._v(" "), t2("path", { attrs: { d: "M4.309 11.6279L9.12309 13.831L13.9372 11.6279C14.0188 11.6279 14.1004 11.4648 14.1004 11.3832V6.1611C14.1004 6.0795 14.0188 5.99791 13.9372 5.91632L9.12309 3.71326C9.0415 3.71326 8.9599 3.71326 8.87831 3.71326L5.53292 5.42675C5.45133 5.50834 5.36973 5.58994 5.45133 5.75313C5.53292 5.83472 5.69611 5.91632 5.77771 5.83472L9.20469 4.20283L13.366 6.0795L9.12309 7.87459L4.47219 5.99791C4.3906 5.99791 4.309 5.99791 4.22741 5.99791C4.22741 6.0795 4.14581 6.1611 4.14581 6.24269V11.4648C4.14581 11.5464 4.22741 11.6279 4.309 11.6279ZM4.63538 6.56907L9.0415 8.44575C9.12309 8.44575 9.20469 8.44575 9.20469 8.44575L13.6924 6.56907V11.3016L9.36788 13.2598V9.42489C9.36788 9.2617 9.28628 9.18011 9.12309 9.18011C8.9599 9.18011 8.87831 9.2617 8.87831 9.42489V13.2598L4.63538 11.3016V6.56907Z" } })]);
|
|
2295
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folder: e$
|
|
2292
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folder: e$4({ render: function() {
|
|
2296
2293
|
var e2 = this.$createElement;
|
|
2297
2294
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.19976 3H2.29984C1.03451 3 0.0111238 4.03491 0.0111238 5.30024L0 19.1001C0 20.3654 1.03451 21.4003 2.29984 21.4003H20.6998C21.9651 21.4003 23 20.3654 23 19.1001V7.60008C23 6.33515 21.9651 5.30024 20.6998 5.30024H11.5L9.19976 3Z" } });
|
|
2298
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderMove: e$
|
|
2295
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderMove: e$4({ render: function() {
|
|
2299
2296
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2300
2297
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.29985 18.1002H20.6999V6.60037H2.29985V18.1002ZM20.6998 4.3002H11.4998L9.2 2H2.2998C1.03489 2 0.0115209 3.03529 0.0115209 4.3002L0 18.1002C0 19.3651 1.03489 20.4 2.2998 20.4H20.6998C21.9647 20.4 23 19.3651 23 18.1002V6.6C23 5.33509 21.9647 4.3002 20.6998 4.3002Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.653 16.72L15.0877 13.2854L15.9467 12.4268L15.0877 11.5679L11.653 8.1333L10.7945 8.99185L13.6219 11.8193L7.35999 11.8193L7.35999 12.4266L7.35999 13.034L13.6219 13.034L10.7945 15.8614L11.653 16.72Z" } })]);
|
|
2301
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderOpen: e$
|
|
2298
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), folderOpen: e$4({ render: function() {
|
|
2302
2299
|
var e2 = this.$createElement;
|
|
2303
2300
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.29979 19.1002H20.6998V7.60039H2.29979V19.1002ZM20.6998 5.3002H11.4998L9.2 3H2.2998C1.03489 3 0.0115209 4.03529 0.0115209 5.3002L0 19.1002C0 20.3651 1.03489 21.4 2.2998 21.4H20.6998C21.9647 21.4 23 20.3651 23 19.1002V7.6C23 6.33509 21.9647 5.3002 20.6998 5.3002Z" } });
|
|
2304
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fullscreen: e$
|
|
2301
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), fullscreen: e$4({ render: function() {
|
|
2305
2302
|
var e2 = this.$createElement;
|
|
2306
2303
|
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$
|
|
2304
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), grid: e$4({ render: function() {
|
|
2308
2305
|
var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
|
|
2309
2306
|
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" } })]);
|
|
2310
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), group: e$
|
|
2307
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), group: e$4({ render: function() {
|
|
2311
2308
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2312
2309
|
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" } })]);
|
|
2313
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), hide: e$
|
|
2310
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), hide: e$4({ render: function() {
|
|
2314
2311
|
var e2 = this.$createElement;
|
|
2315
2312
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.99087 6.78082L0.945206 3.73516L1.68037 3L19.4292 20.6438L18.6941 21.379L16.1735 18.8584C14.7032 19.4886 13.1279 19.8037 11.4475 19.8037C6.30137 19.8037 1.78539 16.653 0 12.032C0.840183 9.93151 2.20548 8.14612 3.99087 6.78082ZM6.19635 12.032C6.19635 14.9726 8.61187 17.2831 11.4475 17.2831C12.2877 17.2831 13.1279 17.0731 13.863 16.653L12.2877 15.0776C11.9726 15.1826 11.7626 15.1826 11.4475 15.1826C9.6621 15.1826 8.2968 13.7123 8.2968 12.032C8.2968 11.7169 8.2968 11.4018 8.40183 11.1918L6.82648 9.61644C6.40639 10.3516 6.19635 11.1918 6.19635 12.032ZM11.4476 4.26048C9.34714 4.26048 7.45673 4.7856 5.77637 5.62578L8.19189 8.0413C9.1371 7.30614 10.1873 6.88605 11.4476 6.88605C14.2832 6.88605 16.6987 9.19656 16.6987 12.1372C16.6987 13.3975 16.2786 14.5527 15.5435 15.3929L18.1691 18.0185C20.3745 16.6532 22.0549 14.5527 23.0001 12.1372C21.1097 7.41117 16.6987 4.26048 11.4476 4.26048ZM11.4475 8.88086C10.8174 8.88086 10.1872 9.0909 9.66211 9.511L14.0731 13.922C14.3881 13.3968 14.7032 12.7667 14.7032 12.1366C14.5982 10.3512 13.1279 8.88086 11.4475 8.88086Z" } });
|
|
2316
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ifc: e$
|
|
2313
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ifc: e$4({ render: function() {
|
|
2317
2314
|
var e2 = this.$createElement;
|
|
2318
2315
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.4279 1.14627C14.9692 0.177724 17.0281 0.401832 18.3218 1.77945L21.9637 5.65738C23.253 7.03033 23.3545 9.09327 22.3069 10.5743L22.3051 10.5723C22.157 10.782 21.9859 10.98 21.7919 11.1628L18.8817 13.905C18.6464 14.1267 18.3908 14.3134 18.1213 14.4652L18.1224 14.4663C17.8104 14.6415 17.4799 14.7701 17.1408 14.8522C16.1239 15.1002 15.0293 14.9307 14.1257 14.3521L14.1289 14.3492L14.1044 14.3334L16.1763 12.3987L16.1869 12.41L20.3454 8.49157L15.3586 3.1964L13.809 4.67919L11.8711 2.6468L13.4333 1.15203L13.4279 1.14627ZM13.7555 9.82669L11.6102 11.8298L9.76531 9.85607C8.52837 8.53274 8.39124 6.57409 9.31689 5.11091L13.7555 9.82669ZM0.690849 10.2425C-0.275375 8.69857 -0.0512554 6.63632 1.32401 5.34024L5.19394 1.69313C6.56454 0.401454 8.62364 0.299392 10.1021 1.34822L10.1006 1.34962C10.3096 1.49781 10.507 1.66901 10.6893 1.86309L13.4278 4.77961C13.6492 5.01543 13.8356 5.27159 13.9871 5.54167L13.9885 5.54034C14.2325 5.97628 14.3857 6.44824 14.4491 6.92921C14.5688 7.82737 14.3751 8.75745 13.8735 9.54335L13.8713 9.54092L13.856 9.56456L11.925 7.48933L11.9356 7.47939L8.02331 3.3128L2.73747 8.30833L4.21831 9.8614L2.18633 11.8057L0.693501 10.24L0.690849 10.2425ZM9.35752 9.91441L11.3569 12.0631L9.38551 13.9122C8.06488 15.151 6.11012 15.2882 4.6496 14.3611L9.35752 9.91441ZM9.77347 22.9615C8.23216 23.93 6.17324 23.7059 4.87947 22.3283L1.23761 18.4504C-0.0517673 17.0774 -0.15322 15.0144 0.894438 13.5334L0.896188 13.5353C1.04427 13.3256 1.21537 13.1276 1.40936 12.9448L4.31957 10.2026C4.5547 9.98105 4.81009 9.7945 5.07933 9.64277L5.07808 9.64144C5.39912 9.46112 5.73974 9.33026 6.08911 9.24851C7.0979 9.01064 8.18039 9.18229 9.07548 9.75545L9.07196 9.75876L9.09521 9.77379L7.02345 11.7083L7.01381 11.6981L2.85576 15.616L7.84304 20.9117L9.39298 19.4286L11.3413 21.472L9.78006 22.9659L9.58559 22.7619L9.77347 22.9615ZM9.44428 14.2803L11.5896 12.2772L13.4352 14.2517C14.6721 15.575 14.8092 17.5337 13.8836 18.9969L9.44428 14.2803ZM21.8757 18.8078C23.251 17.5117 23.4751 15.4495 22.5088 13.9055L22.5063 13.9079L21.0138 12.3426L18.9822 14.2865L20.4627 15.8393L15.1772 20.8345L11.265 16.668L11.2756 16.658L9.34443 14.5826L9.32915 14.6063L9.32712 14.6041C8.94205 15.2075 8.73846 15.8958 8.71879 16.5894C8.69813 17.2832 8.86144 17.9825 9.21132 18.6077L9.21348 18.6057C9.36503 18.8758 9.55143 19.132 9.77289 19.3678L12.5114 22.2844C12.6936 22.4784 12.8909 22.6495 13.0999 22.7977L13.0976 22.7998C14.576 23.8487 16.6352 23.7466 18.0058 22.4549L21.8757 18.8078ZM11.8438 12.0842L13.8431 14.2329L18.5502 9.78693C17.0897 8.85986 15.1349 8.9971 13.8143 10.2358L11.8438 12.0842Z" } });
|
|
2319
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ifcFile: e$
|
|
2316
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), ifcFile: e$4({ render: function() {
|
|
2320
2317
|
var e2 = this.$createElement;
|
|
2321
2318
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3 0.479167V22.5208C3 22.7844 3.21563 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.21563 0 3 0.215625 3 0.479167ZM4.4375 9.82251H18.8125V21.5621H4.4375V9.82251ZM5.06037 4.88621V1.48413H4.2937V4.88621H5.06037ZM5.75516 1.48413H7.81558V2.10705H6.52183V2.87371H7.7437V3.49663H6.52183V4.86226H5.75516V1.48413ZM10.0197 4.93444C10.427 4.93444 10.7385 4.86257 10.8822 4.79069L10.7625 4.16777C10.5947 4.23965 10.3552 4.28757 10.1156 4.28757C9.44474 4.28757 9.03745 3.85632 9.03745 3.18548C9.03745 2.41882 9.51662 2.05944 10.1156 2.05944C10.3791 2.05944 10.5947 2.10736 10.7625 2.17923L10.9302 1.58027C10.7864 1.5084 10.4989 1.43652 10.0916 1.43652C9.08537 1.43652 8.24683 2.0834 8.24683 3.2334C8.24683 4.19173 8.84578 4.93444 10.0197 4.93444ZM20.226 5.75034C20.202 5.65451 20.178 5.58263 20.1301 5.51076L15.4583 0.287842V5.75034H20.226ZM13.1105 11.1157C13.374 11.1157 13.5896 11.2116 13.7573 11.3793C14.012 11.6339 14.2693 11.8886 14.5276 12.1442L14.5276 12.1442L14.5277 12.1443L14.5278 12.1444C15.0468 12.6581 15.5694 13.1753 16.0813 13.7032C16.4646 14.0866 16.4646 14.6376 16.0813 15.0209C15.6669 15.4512 15.242 15.8709 14.8135 16.2941L14.8133 16.2943L14.8133 16.2943L14.8133 16.2943L14.8132 16.2944C14.5976 16.5073 14.3811 16.7211 14.1646 16.9376C13.7573 17.3209 13.2063 17.3209 12.799 16.9376C12.7032 16.8418 12.6792 16.7938 12.799 16.6741C13.2951 16.194 13.7804 15.7033 14.2622 15.2161L14.2624 15.216L14.2625 15.2159C14.502 14.9737 14.7406 14.7325 14.9792 14.4938C15.099 14.3741 15.099 14.3022 14.9792 14.1824C14.7867 13.9899 14.5942 13.8 14.4025 13.6111L14.4024 13.611C14.0218 13.2356 13.6447 12.8638 13.2782 12.4813C13.1584 12.3616 13.0865 12.3376 12.9667 12.4813C12.8876 12.5763 12.7981 12.6607 12.705 12.7485C12.6571 12.7937 12.6083 12.8398 12.5594 12.8886C12.4876 12.9605 12.4396 12.9845 12.3438 12.8886C12.2152 12.7439 12.0757 12.61 11.94 12.4796L11.9399 12.4796C11.8735 12.4157 11.8079 12.3527 11.7448 12.2897C11.649 12.2178 11.673 12.1459 11.7448 12.0741L12.4636 11.3553C12.6553 11.2116 12.8709 11.1157 13.1105 11.1157ZM7.16882 13.8711C7.00111 14.0388 6.90527 14.2544 6.90527 14.494C6.90527 14.7336 6.97715 14.9732 7.21673 15.1888L7.71986 15.6919C7.87778 15.8377 7.95562 15.9095 8.03148 15.9075C8.10522 15.9055 8.17708 15.8336 8.31881 15.6919L8.31882 15.6919C8.36673 15.644 8.42246 15.5961 8.47819 15.5482L8.47821 15.5482C8.61756 15.4284 8.75691 15.3086 8.77402 15.1888C8.77402 15.0549 8.63367 14.9443 8.49189 14.8327L8.49188 14.8327C8.43074 14.7845 8.36934 14.7362 8.31882 14.6857L8.29486 14.6617C8.17507 14.5659 8.19902 14.494 8.29486 14.3982L10.0199 12.6732C10.1396 12.5534 10.1876 12.5294 10.3313 12.6732L12.4876 14.8294C12.5834 14.9492 12.6553 14.9492 12.7511 14.8294C13.1105 14.4221 13.1344 13.8711 12.7511 13.4877L10.8105 11.5471C10.4511 11.1877 9.87611 11.1877 9.51673 11.5471C8.72611 12.3138 7.93548 13.0805 7.16882 13.8711ZM10.3073 20.6987C10.0198 20.6987 9.80422 20.6029 9.61255 20.4352L9.61246 20.4351C8.84582 19.6684 8.07919 18.9018 7.31255 18.1591C6.90526 17.7518 6.90526 17.2008 7.31255 16.7935C7.7287 16.3614 8.15554 15.9399 8.57878 15.522L8.57881 15.522L8.57886 15.5219L8.57903 15.5217L8.57919 15.5216L8.57942 15.5214L8.57958 15.5212C8.78961 15.3138 8.99875 15.1073 9.20526 14.9008C9.61255 14.4935 10.1636 14.5175 10.5709 14.9008C10.6907 15.0206 10.6667 15.0685 10.5709 15.1643C9.85213 15.8831 9.13338 16.6018 8.39067 17.3206C8.27088 17.4404 8.27088 17.5123 8.39067 17.632L10.1157 19.3571C10.2115 19.4529 10.2834 19.4768 10.3792 19.3571L10.8105 18.9258C10.8823 18.8539 10.9303 18.8539 10.9782 18.9258L11.6011 19.5487C11.673 19.6206 11.673 19.6685 11.6011 19.7404C11.3615 19.98 11.1219 20.2196 10.8584 20.4591C10.7386 20.6268 10.523 20.6987 10.3073 20.6987ZM16.4886 17.3207C16.4886 17.5842 16.4167 17.7998 16.2251 17.9676C15.4584 18.7582 14.6678 19.5248 13.8772 20.2915C13.5178 20.6509 12.9667 20.6509 12.6074 20.3155C11.9365 19.6686 11.2657 18.9978 10.6188 18.3269C10.2355 17.9436 10.3074 17.3207 10.7147 16.9613C10.8045 16.8894 10.8404 16.9254 10.8831 16.968L10.8831 16.9681C10.8974 16.9823 10.9123 16.9972 10.9303 17.0092C11.1689 17.2478 11.4102 17.4865 11.6523 17.726L11.6524 17.726L11.6526 17.7262L11.6526 17.7263C12.1397 18.208 12.6305 18.6934 13.1105 19.1894C13.2303 19.3092 13.2782 19.3092 13.398 19.1894C13.973 18.5905 14.548 18.0155 15.147 17.4405C15.2667 17.3207 15.2667 17.2728 15.147 17.1769C15.0521 17.0978 14.9676 17.0083 14.8798 16.9152L14.8798 16.9152C14.8346 16.8673 14.7885 16.8185 14.7397 16.7696C14.6438 16.6978 14.6199 16.6259 14.7397 16.554C14.9553 16.3623 15.147 16.1707 15.3386 15.9551C15.4105 15.8832 15.4584 15.8592 15.5542 15.9551L15.5543 15.9551L15.5543 15.9551C15.7939 16.1947 16.0334 16.4342 16.273 16.6978C16.4167 16.8655 16.4886 17.0811 16.4886 17.3207ZM14.3564 14.7815C14.1647 14.5898 13.9251 14.47 13.5418 14.446C13.398 14.446 13.1584 14.5419 12.9907 14.7096C12.6074 15.069 12.248 15.4283 11.8886 15.7877C11.7928 15.8835 11.8168 15.9315 11.8886 16.0033C12.0333 16.132 12.1673 16.2714 12.2976 16.4071L12.2977 16.4071L12.2977 16.4071C12.3616 16.4737 12.4246 16.5393 12.4876 16.6023C12.5595 16.6742 12.6074 16.6981 12.7032 16.6023L14.3564 14.9492C14.4043 14.9013 14.4282 14.8533 14.3564 14.7815ZM13.1584 17.848C13.1584 18.1355 13.0386 18.3751 12.823 18.5667C12.7511 18.6386 12.7032 18.6386 12.6553 18.5667L12.6553 18.5667C12.1042 18.0157 11.5532 17.4647 10.9782 16.9136C10.9063 16.8417 10.9063 16.7938 10.9782 16.7459C11.1938 16.5542 11.4095 16.3386 11.6011 16.123C11.673 16.0511 11.7209 16.0511 11.7928 16.123C12.0315 16.3777 12.2809 16.6217 12.5337 16.8693L12.5337 16.8693L12.534 16.8696C12.6617 16.9946 12.7903 17.1205 12.9188 17.249C13.0866 17.3928 13.1584 17.6084 13.1584 17.848ZM10.7402 13.269C10.7219 13.2452 10.7002 13.2169 10.6668 13.2002C10.6189 13.2242 10.5949 13.2481 10.5709 13.296C10.1636 13.6554 10.1157 14.2304 10.4991 14.6377C10.6787 14.8294 10.8644 15.009 11.0501 15.1887C11.2358 15.3684 11.4215 15.5481 11.6011 15.7398C11.673 15.8117 11.7209 15.8117 11.7928 15.7398C11.8558 15.6768 11.9189 15.6111 11.9827 15.5446L11.9827 15.5446C12.1131 15.4089 12.2471 15.2695 12.3918 15.1408C12.4636 15.045 12.4636 14.9971 12.3918 14.9252L10.7626 13.296C10.7553 13.2888 10.7481 13.2793 10.7402 13.269ZM9.78022 17.3688C9.49272 17.3688 9.25314 17.2491 9.06147 17.0334C8.9896 16.9616 8.9896 16.9136 9.06147 16.8657L10.7146 15.2126C10.7865 15.1407 10.8344 15.1407 10.9063 15.2126C11.0332 15.3554 11.1707 15.4878 11.3117 15.6235C11.3836 15.6927 11.4564 15.7627 11.5292 15.8355C11.6011 15.9074 11.6011 15.9313 11.5292 16.0032L10.3792 17.1532C10.2115 17.297 9.99585 17.3688 9.78022 17.3688Z" } });
|
|
2322
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), import: e$
|
|
2319
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), import: e$4({ render: function() {
|
|
2323
2320
|
var e2 = this.$createElement;
|
|
2324
2321
|
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$
|
|
2322
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexAscending: e$4({ render: function() {
|
|
2326
2323
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2327
2324
|
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$
|
|
2325
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), indexDescending: e$4({ render: function() {
|
|
2329
2326
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2330
2327
|
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" } })])]);
|
|
2331
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), information: e$
|
|
2328
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), information: e$4({ render: function() {
|
|
2332
2329
|
var e2 = this.$createElement;
|
|
2333
2330
|
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" } });
|
|
2334
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), inProgressFile: e$
|
|
2331
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), inProgressFile: e$4({ render: function() {
|
|
2335
2332
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2336
2333
|
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$
|
|
2334
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), invitation: e$4({ render: function() {
|
|
2338
2335
|
var e2 = this.$createElement;
|
|
2339
2336
|
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" } });
|
|
2340
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), isolate: e$
|
|
2337
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), isolate: e$4({ render: function() {
|
|
2341
2338
|
var e2 = this.$createElement;
|
|
2342
2339
|
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" } });
|
|
2343
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), key: e$
|
|
2340
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), key: e$4({ render: function() {
|
|
2344
2341
|
var e2 = this.$createElement;
|
|
2345
2342
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.0178 10.0262C19.0178 12.9638 16.6364 15.3452 13.6988 15.3452C13.0611 15.3452 12.4495 15.233 11.8829 15.0272L10.9023 16.0078H9.00661V17.8483H7.12931V19.7072H3.98207L3.98206 16.5967L8.7106 11.8769C8.49667 11.3005 8.37977 10.677 8.37977 10.0262C8.37977 7.08856 10.7612 4.70715 13.6988 4.70715C16.6364 4.70715 19.0178 7.08856 19.0178 10.0262ZM16.6431 8.77465C16.6431 9.67924 15.9098 10.4125 15.0052 10.4125C14.1006 10.4125 13.3673 9.67924 13.3673 8.77465C13.3673 7.87007 14.1006 7.13675 15.0052 7.13675C15.9098 7.13675 16.6431 7.87007 16.6431 8.77465Z" } });
|
|
2346
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), left: e$
|
|
2343
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), left: e$4({ render: function() {
|
|
2347
2344
|
var e2 = this.$createElement;
|
|
2348
2345
|
return (this._self._c || e2)("path", { attrs: { d: "M0.481203 11.7773L21.9479 0.277346L21.9479 23.2773L0.481203 11.7773Z" } });
|
|
2349
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), linkedDocument: e$
|
|
2346
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), linkedDocument: e$4({ render: function() {
|
|
2350
2347
|
var e2 = this.$createElement;
|
|
2351
2348
|
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$
|
|
2349
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), list: e$4({ render: function() {
|
|
2353
2350
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2354
2351
|
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" } })]);
|
|
2355
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), listManage: e$
|
|
2352
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), listManage: e$4({ render: function() {
|
|
2356
2353
|
var e2 = this.$createElement;
|
|
2357
2354
|
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" } });
|
|
2358
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), location: e$
|
|
2355
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), location: e$4({ render: function() {
|
|
2359
2356
|
var e2 = this.$createElement;
|
|
2360
2357
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4 8.05C4 3.5995 7.5995 0 12.05 0C16.5005 0 20.1 3.5995 20.1 8.05C20.1 14.0875 12.05 23 12.05 23C12.05 23 4 14.0875 4 8.05ZM9.17501 8.05011C9.17501 9.63711 10.463 10.9251 12.05 10.9251C13.637 10.9251 14.925 9.63711 14.925 8.05011C14.925 6.46311 13.637 5.17511 12.05 5.17511C10.463 5.17511 9.17501 6.46311 9.17501 8.05011Z" } });
|
|
2361
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), lock: e$
|
|
2358
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), lock: e$4({ render: function() {
|
|
2362
2359
|
var e2 = this.$createElement;
|
|
2363
2360
|
return (this._self._c || e2)("path", { attrs: { d: "M18.3333 7.66667H17.2381V5.47619C17.2381 2.45333 14.7848 0 11.7619 0C8.73905 0 6.28571 2.45333 6.28571 5.47619V7.66667H5.19048C3.98571 7.66667 3 8.65238 3 9.85714V20.8095C3 22.0143 3.98571 23 5.19048 23H18.3333C19.5381 23 20.5238 22.0143 20.5238 20.8095V9.85714C20.5238 8.65238 19.5381 7.66667 18.3333 7.66667ZM11.7619 17.5238C10.5571 17.5238 9.57143 16.5381 9.57143 15.3333C9.57143 14.1286 10.5571 13.1429 11.7619 13.1429C12.9667 13.1429 13.9524 14.1286 13.9524 15.3333C13.9524 16.5381 12.9667 17.5238 11.7619 17.5238ZM15.1571 7.66667H8.36667V5.47619C8.36667 3.60333 9.88905 2.08095 11.7619 2.08095C13.6348 2.08095 15.1571 3.60333 15.1571 5.47619V7.66667Z" } });
|
|
2364
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), logout: e$
|
|
2361
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), logout: e$4({ render: function() {
|
|
2365
2362
|
var e2 = this.$createElement;
|
|
2366
2363
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M18.6434 4.08305L16.9078 5.8186C18.8389 7.37083 20.0734 9.75416 20.0734 12.4308C20.0734 17.1608 16.2478 20.9864 11.5178 20.9864C6.78782 20.9864 2.96227 17.1608 2.96227 12.4308C2.96227 9.75416 4.19671 7.37083 6.1156 5.80638L4.39227 4.08305C2.02116 6.09972 0.517822 9.08194 0.517822 12.4308C0.517822 18.5053 5.44338 23.4308 11.5178 23.4308C17.5923 23.4308 22.5178 18.5053 22.5178 12.4308C22.5178 9.08194 21.0133 6.09972 18.6434 4.08305ZM10.2956 13.6531H12.74V1.43085H10.2956V13.6531Z" } });
|
|
2367
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), measure: e$
|
|
2364
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), measure: e$4({ render: function() {
|
|
2368
2365
|
var e2 = this.$createElement;
|
|
2369
2366
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.7717 0.241397L16.4534 1.55968L17.4627 2.56896C17.5803 2.68652 17.5803 2.87926 17.4627 2.99714L16.7515 3.708C16.634 3.82589 16.4412 3.82589 16.3234 3.708L15.3144 2.69873L14.4963 3.51656L16.4711 5.49142C16.589 5.60931 16.589 5.80204 16.4711 5.9196L15.7603 6.63046C15.6427 6.74835 15.4496 6.74835 15.3321 6.63046L13.3572 4.65592L12.5693 5.44388L13.5786 6.45283C13.6961 6.57072 13.6961 6.76345 13.5786 6.88102L12.8677 7.59188C12.7498 7.70976 12.5571 7.70976 12.4395 7.59188L11.4303 6.58292L10.5588 7.45439L12.5336 9.42926C12.6515 9.54682 12.6515 9.73955 12.5336 9.85712L11.8225 10.568C11.7049 10.6859 11.5122 10.6859 11.3946 10.568L9.41976 8.59312L8.59969 9.41352L9.60896 10.4225C9.72684 10.5404 9.72684 10.7331 9.60896 10.8507L8.8981 11.5618C8.78022 11.6794 8.58749 11.6794 8.46992 11.5618L7.46066 10.5526L6.65344 11.3598L8.62828 13.3346C8.74585 13.4522 8.74585 13.6449 8.62828 13.7625L7.91711 14.4737C7.79954 14.5913 7.60681 14.5913 7.48925 14.4737L5.51441 12.4988L4.71554 13.2977L5.7248 14.3067C5.84269 14.4245 5.84269 14.617 5.7248 14.7348L5.01395 15.4457C4.89607 15.5636 4.70334 15.5636 4.58577 15.4457L3.57651 14.4364L2.72496 15.288L4.6998 17.2628C4.81737 17.3807 4.81737 17.5735 4.6998 17.691L3.98895 18.4022C3.87106 18.5198 3.67833 18.5198 3.56077 18.4022L1.58593 16.4274L0.241635 17.7717C-0.0805451 18.0935 -0.0805451 18.6203 0.241635 18.9422L4.05769 22.7586C4.37987 23.0805 4.90634 23.0805 5.22852 22.7586L22.7586 5.22834C23.0805 4.90615 23.0805 4.37968 22.7586 4.05749L18.9422 0.241397C18.6204 -0.0804656 18.0936 -0.0804656 17.7717 0.241397Z" } });
|
|
2370
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), minus: e$
|
|
2367
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), minus: e$4({ render: function() {
|
|
2371
2368
|
var e2 = this.$createElement;
|
|
2372
2369
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0.0178223 13.2484H23.0178V9.9584H0.0178223V13.2484Z" } });
|
|
2373
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), model3d: e$
|
|
2370
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), model3d: e$4({ render: function() {
|
|
2374
2371
|
var e2 = this.$createElement;
|
|
2375
2372
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M22.6758 5.03818L11.7623 0.0529037C11.607 -0.0183966 11.4265 -0.0172466 11.2712 0.0540537L3.22117 3.79272C2.93826 3.92497 2.81981 4.25157 2.95666 4.52413C3.09236 4.79668 3.43277 4.91168 3.71452 4.77943L11.5208 1.15461L21.0739 5.51773L11.4633 9.6175L0.795804 5.14398C0.619853 5.07038 0.417452 5.08648 0.257601 5.18768C0.0966005 5.28888 0 5.46138 0 5.64653V17.5042C0 17.717 0.127651 17.9102 0.327752 18.001L11.277 22.9484C11.2793 22.9495 11.2827 22.9495 11.285 22.9507C11.2977 22.9564 11.3115 22.9622 11.3241 22.9668C11.3299 22.9679 11.3356 22.9702 11.3402 22.9725C11.3552 22.9771 11.369 22.9806 11.3851 22.984C11.3897 22.9852 11.3931 22.9863 11.3989 22.9875C11.415 22.9909 11.4299 22.9932 11.446 22.9955L11.4587 22.9967C11.4782 22.999 11.4978 23.0001 11.5185 23.0001C11.5392 23.0001 11.5587 22.999 11.5794 22.9967C11.5829 22.9967 11.5863 22.9955 11.5909 22.9955C11.607 22.9932 11.6231 22.9909 11.6392 22.9875C11.6438 22.9863 11.6484 22.9852 11.653 22.984C11.668 22.9806 11.6829 22.9771 11.6967 22.9725C11.7025 22.9702 11.7071 22.9679 11.7128 22.9668C11.7266 22.961 11.7404 22.9564 11.7531 22.9507C11.7554 22.9495 11.7577 22.9495 11.76 22.9484L22.6747 17.9999C22.8736 17.9102 23.0001 17.717 23.0001 17.5042V5.53268C23.0001 5.32108 22.8736 5.12903 22.6758 5.03818ZM21.8637 17.1569L12.0863 21.5902V12.9444C12.0863 12.642 11.8322 12.397 11.5182 12.397C11.2043 12.397 10.9501 12.642 10.9501 12.9444V21.5913L1.13713 17.1569V6.48138L11.2388 10.718C11.3848 10.779 11.5504 10.779 11.6953 10.7169L21.8637 6.37903V17.1569Z" } });
|
|
2376
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), organization: e$
|
|
2373
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), organization: e$4({ render: function() {
|
|
2377
2374
|
var e2 = this.$createElement;
|
|
2378
2375
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.0002 5.24957C14.0002 6.6303 12.8809 7.7496 11.5001 7.7496C10.1194 7.7496 9.00009 6.6303 9.00009 5.24957C9.00009 3.86884 10.1194 2.74954 11.5001 2.74954C12.8809 2.74954 14.0002 3.86884 14.0002 5.24957ZM15.4247 7.45313C14.6534 8.82378 13.1849 9.74962 11.5001 9.74962C9.01481 9.74962 7.00007 7.73488 7.00007 5.24957C7.00007 2.76426 9.01481 0.749512 11.5001 0.749512C13.9854 0.749512 16.0002 2.76426 16.0002 5.24957C16.0002 5.31734 15.9987 5.38477 15.9957 5.45181C18.3978 6.83951 20.099 9.30513 20.4381 12.1875C21.9533 12.9117 23 14.4586 23 16.25C23 18.7353 20.9852 20.75 18.4999 20.75C16.0146 20.75 13.9999 18.7353 13.9999 16.25C13.9999 13.8183 15.9285 11.8371 18.3396 11.7527C17.9513 9.97155 16.885 8.44368 15.4247 7.45313ZM7.00009 16.25C7.00009 17.6307 5.88079 18.75 4.50006 18.75C3.11933 18.75 2.00003 17.6307 2.00003 16.25C2.00003 14.8692 3.11933 13.7499 4.50006 13.7499C5.88079 13.7499 7.00009 14.8692 7.00009 16.25ZM9.00011 16.25C9.00011 18.7353 6.98537 20.75 4.50006 20.75C2.01474 20.75 0 18.7353 0 16.25C0 14.4585 1.0468 12.9116 2.56208 12.1874C2.90121 9.30518 4.60227 6.83967 7.00417 5.45195C7.03624 6.17683 7.2398 6.85713 7.57526 7.45328C6.11501 8.44384 5.04879 9.97164 4.66057 11.7527C7.07154 11.8372 9.00011 13.8184 9.00011 16.25ZM18.4999 18.75C19.8807 18.75 21 17.6307 21 16.25C21 14.8692 19.8807 13.7499 18.4999 13.7499C17.1192 13.7499 15.9999 14.8692 15.9999 16.25C15.9999 17.6307 17.1192 18.75 18.4999 18.75ZM15.1323 19.2356C15.6087 19.7726 16.2116 20.1948 16.8942 20.4556C15.391 21.5828 13.5235 22.2505 11.5001 22.2505C9.47656 22.2505 7.60903 21.5827 6.10581 20.4555C6.78842 20.1947 7.39124 19.7724 7.86758 19.2354C8.92655 19.8795 10.17 20.2505 11.5001 20.2505C12.8301 20.2505 14.0734 19.8796 15.1323 19.2356Z" } });
|
|
2379
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), parameters: e$
|
|
2376
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), parameters: e$4({ render: function() {
|
|
2380
2377
|
var e2 = this.$createElement;
|
|
2381
2378
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 17.8889V20.4444H7.66667V17.8889H0ZM0 2.55556V5.11111H12.7778V2.55556H0ZM12.7778 23V20.4444H23V17.8889H12.7778V15.3333H10.2222V23H12.7778ZM5.11111 7.66667V10.2222H0V12.7778H5.11111V15.3333H7.66667V7.66667H5.11111ZM23 12.7778V10.2222H10.2222V12.7778H23ZM15.3333 7.66667H17.8889V5.11111H23V2.55556H17.8889V0H15.3333V7.66667Z" } });
|
|
2382
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), path: e$
|
|
2379
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), path: e$4({ render: function() {
|
|
2383
2380
|
var e2 = this.$createElement;
|
|
2384
2381
|
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$
|
|
2382
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), pieGraph: e$4({ render: function() {
|
|
2386
2383
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2387
2384
|
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" } })]);
|
|
2388
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), plus: e$
|
|
2385
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), plus: e$4({ render: function() {
|
|
2389
2386
|
var e2 = this.$createElement;
|
|
2390
2387
|
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" } });
|
|
2391
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), project: e$
|
|
2388
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), project: e$4({ render: function() {
|
|
2392
2389
|
var e2 = this.$createElement;
|
|
2393
2390
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M7.3081 2.94247L12.5649 0V1.89286C18.2707 2.22812 22.7916 6.81993 22.7916 12.4362C22.7916 18.2704 17.9134 23 11.8958 23C5.87827 23 1 18.2704 1 12.4362C1 9.69438 2.07754 7.19679 3.84419 5.31913L5.54766 6.67278C4.09078 8.18052 3.19828 10.2072 3.19828 12.4362C3.19828 17.0934 7.09229 20.8687 11.8958 20.8687C16.6993 20.8687 20.5933 17.0934 20.5933 12.4362C20.5933 7.99732 17.0557 4.35959 12.5649 4.02832V5.88494L7.3081 2.94247ZM7.70508 12.5722C7.70508 10.2578 9.58134 8.38155 11.8958 8.38155C14.2102 8.38155 16.0865 10.2578 16.0865 12.5722C16.0865 14.8867 14.2102 16.7629 11.8958 16.7629C9.58134 16.7629 7.70508 14.8867 7.70508 12.5722Z" } });
|
|
2394
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), quickSelect: e$
|
|
2391
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), quickSelect: e$4({ render: function() {
|
|
2395
2392
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2396
2393
|
return t2("g", [t2("path", { attrs: { d: "M18.3998 4.89012H7.57623C6.08799 4.89012 4.87035 6.10777 4.87035 7.59601V18.4195H3.51741C2.02917 18.4195 0.811523 17.2019 0.811523 15.7137V3.53718C0.811523 2.04895 2.02917 0.831299 3.51741 0.831299H15.6939C17.1821 0.831299 18.3998 2.04895 18.3998 3.53718V4.89012Z" } }), this._v(" "), t2("path", { attrs: { d: "M8.92915 6.24307H21.1056C22.5939 6.24307 23.8115 7.46072 23.8115 8.94896V21.1254C23.8115 22.6137 22.5939 23.8313 21.1056 23.8313H8.92915C7.44091 23.8313 6.22327 22.6137 6.22327 21.1254V8.94896C6.22327 7.46072 7.44091 6.24307 8.92915 6.24307ZM20.4291 10.3019L12.988 17.7431L10.0115 14.7666L8.92915 15.849L12.8527 19.7725L21.3762 11.249L20.4291 10.3019Z" } })]);
|
|
2397
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), readonlyFolder: e$
|
|
2394
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), readonlyFolder: e$4({ render: function() {
|
|
2398
2395
|
var e2 = this.$createElement;
|
|
2399
2396
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M2.29984 2H9.19976L11.5 4.30024H20.6998C21.9651 4.30024 23 5.33515 23 6.60008V18.1001C23 19.3654 21.9651 20.4003 20.6998 20.4003H2.29984C1.03451 20.4003 0 19.3654 0 18.1001L0.0111238 4.30024C0.0111238 3.03491 1.03451 2 2.29984 2ZM10 12.5C10 11.7253 10.67 11.1 11.5 11.1C12.33 11.1 13 11.7253 13 12.5C13 13.2747 12.33 13.9 11.5 13.9C10.67 13.9 10 13.2747 10 12.5ZM9 12.5C9 13.788 10.12 14.8333 11.5 14.8333C12.88 14.8333 14 13.788 14 12.5C14 11.212 12.88 10.1667 11.5 10.1667C10.12 10.1667 9 11.212 9 12.5ZM6 12.5C6.865 10.4513 9 9 11.5 9C14 9 16.135 10.4513 17 12.5C16.135 14.5487 14 16 11.5 16C9 16 6.865 14.5487 6 12.5Z" } });
|
|
2400
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), redo: e$
|
|
2397
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), redo: e$4({ render: function() {
|
|
2401
2398
|
var e2 = this.$createElement;
|
|
2402
2399
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.1921 0.277443L22.6409 5.41187L17.1921 10.5463V7.24548H10.0143C6.59996 7.24548 3.83206 10.0134 3.83206 13.4278C3.83206 16.8421 6.59996 19.61 10.0143 19.61H17.4016V23.2775H10.0143C4.57448 23.2775 0.164612 18.8676 0.164612 13.4278C0.164612 7.9879 4.57448 3.57803 10.0143 3.57803H17.1921V0.277443Z" } });
|
|
2403
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reduced: e$
|
|
2400
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reduced: e$4({ render: function() {
|
|
2404
2401
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2405
2402
|
return t2("g", [t2("path", { attrs: { d: "M0.000108719 12.2561L11.8879 12.2561L11.8879 0.50036L0.000108719 12.2561Z" } }), this._v(" "), t2("rect", { attrs: { width: "3.30887", height: "8.73798", transform: "matrix(-0.711046 0.703145 -0.711046 -0.703146 8.78711 6.86267)" } }), this._v(" "), t2("path", { attrs: { d: "M23.0004 11.7451L11.1125 11.7451L11.1125 23.5009L23.0004 11.7451Z" } }), this._v(" "), t2("rect", { attrs: { width: "3.30887", height: "8.73798", transform: "matrix(0.711046 -0.703145 0.711046 0.703145 14.2141 17.1385)" } })]);
|
|
2406
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), refresh: e$
|
|
2403
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), refresh: e$4({ render: function() {
|
|
2407
2404
|
var e2 = this.$createElement;
|
|
2408
2405
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M12.3636 8.36364V5.22727C8.90318 5.22727 6.09091 8.03954 6.09091 11.5C6.09091 12.5559 6.35227 13.5595 6.82273 14.4273L5.29636 15.9536C4.48091 14.6677 4 13.1414 4 11.5C4 6.87909 7.74273 3.13636 12.3636 3.13636V0L16.5455 4.18182L12.3636 8.36364ZM17.9045 8.57278L19.4309 7.04642C20.2464 8.33233 20.7273 9.85869 20.7273 11.5001C20.7273 16.121 16.9845 19.8637 12.3636 19.8637V23.0001L8.18181 18.8182L12.3636 14.6364V17.7728C15.8241 17.7728 18.6364 14.9605 18.6364 11.5001C18.6364 10.4441 18.3645 9.45096 17.9045 8.57278Z" } });
|
|
2409
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reprocessIfc: e$
|
|
2406
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reprocessIfc: e$4({ render: function() {
|
|
2410
2407
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2411
2408
|
return t2("g", [t2("path", { attrs: { d: "M11.8203 4.50582V5.99229L15.4758 3.25508L11.8203 0.553833V2.00433C6.00773 2.00433 1.2998 6.482 1.2998 12.0103C1.2998 13.974 1.90473 15.8 2.93048 17.3385L4.85047 15.5124C4.25869 14.4743 3.92993 13.2735 3.92993 12.0103C3.92993 7.87032 7.46745 4.50582 11.8203 4.50582Z" } }), this._v(" "), t2("path", { attrs: { d: "M11.7793 19.6018L11.7793 18.1154L8.12386 20.8526L11.7793 23.5538L11.7793 22.1033C17.5919 22.1033 22.2998 17.6257 22.2998 12.0974C22.2998 10.1337 21.6949 8.30762 20.6691 6.76921L18.7491 8.59529C19.3409 9.63341 19.6697 10.8341 19.6697 12.0974C19.6697 16.2373 16.1322 19.6018 11.7793 19.6018Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.1641 7.92453C11.1641 7.40334 11.5866 6.98083 12.1078 6.98083C12.629 6.98083 13.0515 7.40334 13.0515 7.92453V8.65954C13.4326 8.74917 13.7916 8.89186 14.1195 9.07888L14.6993 8.52748C15.0678 8.17697 15.6653 8.17697 16.0339 8.52748C16.4024 8.87799 16.4024 9.44627 16.0339 9.79678L15.4579 10.3446C15.6576 10.6571 15.8103 10.9999 15.9066 11.3639H16.7626C17.2583 11.3639 17.6601 11.7657 17.6601 12.2614C17.6601 12.7571 17.2583 13.159 16.7626 13.159H15.9143C15.8203 13.5268 15.6689 13.8733 15.4696 14.1894L16.0339 14.7261C16.4024 15.0766 16.4024 15.6449 16.0339 15.9954C15.6654 16.3459 15.0678 16.3459 14.6993 15.9954L14.1388 15.4623C13.8057 15.6548 13.44 15.8014 13.0515 15.8928V16.5984C13.0515 17.1196 12.629 17.5421 12.1078 17.5421C11.5866 17.5421 11.1641 17.1196 11.1641 16.5984V15.8927C10.7756 15.8013 10.41 15.6548 10.077 15.4623L9.51643 15.9955C9.1479 16.346 8.55039 16.346 8.18185 15.9955C7.81332 15.6449 7.81332 15.0767 8.18185 14.7261L8.7462 14.1894C8.54691 13.8733 8.39551 13.5268 8.30152 13.159H7.4532C6.9575 13.159 6.55566 12.7571 6.55566 12.2614C6.55566 11.7657 6.95751 11.3639 7.4532 11.3639H8.30917C8.40551 10.9999 8.55817 10.6572 8.75782 10.3446L8.18182 9.79677C7.81329 9.44626 7.81329 8.87797 8.18182 8.52746C8.55035 8.17695 9.14787 8.17695 9.5164 8.52746L10.0962 9.07891C10.4241 8.89189 10.7831 8.74921 11.1641 8.65957V7.92453ZM12.1079 14.4477C13.3689 14.4477 14.3911 13.4755 14.3911 12.2761C14.3911 11.0768 13.3689 10.1046 12.1079 10.1046C10.8469 10.1046 9.82463 11.0768 9.82463 12.2761C9.82463 13.4755 10.8469 14.4477 12.1079 14.4477Z" } })]);
|
|
2412
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reset: e$
|
|
2409
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), reset: e$4({ render: function() {
|
|
2413
2410
|
var e2 = this.$createElement;
|
|
2414
2411
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.89662 7.99349L16.5789 4.13546L9.89662 0.277418V7.99349ZM0.221069 13.1147C0.221069 7.66542 4.50998 3.21786 9.89633 2.96351V5.05472C5.66388 5.30673 2.30929 8.81897 2.30929 13.1147C2.30929 17.5741 5.92436 21.1892 10.3838 21.1892C14.8432 21.1892 18.4582 17.5741 18.4582 13.1147L18.4579 13.0467H20.5462L20.5465 13.1147C20.5465 18.7274 15.9965 23.2774 10.3838 23.2774C4.77106 23.2774 0.221069 18.7274 0.221069 13.1147Z" } });
|
|
2415
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), right: e$
|
|
2412
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), right: e$4({ render: function() {
|
|
2416
2413
|
var e2 = this.$createElement;
|
|
2417
2414
|
return (this._self._c || e2)("path", { attrs: { d: "M21.7407 11.7774L0.274057 23.2774L0.274058 0.277404L21.7407 11.7774Z" } });
|
|
2418
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), rules: e$
|
|
2415
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), rules: e$4({ render: function() {
|
|
2419
2416
|
var e2 = this.$createElement;
|
|
2420
2417
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 4H13.1428V6.19047H0V4ZM0 8.38093H13.1428V10.5714H0V8.38093ZM0 14.9524H8.76189V12.7619H0V14.9524ZM23 11.6666L21.3571 10.0238L15.3443 16.0476L12.0476 12.7619L10.4048 14.4047L15.3443 19.3333L23 11.6666Z" } });
|
|
2421
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), sandglass: e$
|
|
2418
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), sandglass: e$4({ render: function() {
|
|
2422
2419
|
var e2 = this.$createElement;
|
|
2423
2420
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5 0V6.9H5.0115L5 6.9115L9.6 11.5L5 16.1L5.0115 16.1115H5V23H18.8V16.1115H18.7885L18.8 16.1L14.2 11.5L18.8 6.9115L18.7885 6.9H18.8V0H5ZM16.5 16.675V20.7H7.3V16.675L11.9 12.075L16.5 16.675ZM11.9 10.925L7.3 6.325V2.3H16.5V6.325L11.9 10.925ZM11.9 16.1L8.45 19.55H15.35L11.9 16.1ZM15.35 6.325L11.9 9.775L8.45 6.325L15.35 6.325Z" } });
|
|
2424
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), save: e$
|
|
2421
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), save: e$4({ render: function() {
|
|
2425
2422
|
var e2 = this.$createElement;
|
|
2426
2423
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M 18.486083,0 H 1.4831979 C 0.66405087,0 0,0.66939113 0,1.4951152 V 20.504964 C 0,21.330672 0.66405183,22 1.4831998,22 H 20.516712 C 21.335835,22 22,21.330672 22,20.504964 V 3.5420143 Z M 3.0019947,11.000759 H 18.997863 V 21.469905 H 3.0019947 Z M 4.0318778,0.55220191 H 13.015922 V 5.4153029 c 0,0.058989 0.0474,0.1067975 0.10593,0.1067975 h 2.811993 c 0.05851,0 0.105944,-0.047817 0.105944,-0.1067975 V 0.55220191 h 1.928324 V 6.085047 c 0,0.5308217 -0.426912,0.9611484 -0.953468,0.9611484 H 4.9853636 c -0.5265892,0 -0.9534858,-0.4303267 -0.9534858,-0.9611484 z M 4.5687237,12.888559 H 17.431253 v 0.541178 H 4.5687237 Z M 17.431253,14.563595 H 4.5687237 v 0.54116 H 17.431253 Z M 4.5687237,16.238579 H 17.431253 v 0.541178 H 4.5687237 Z m 12.8625293,1.67514 H 4.5687237 v 0.541004 H 17.431253 Z" } });
|
|
2427
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), screenConfig: e$
|
|
2424
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), screenConfig: e$4({ render: function() {
|
|
2428
2425
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2429
2426
|
return t2("g", [t2("path", { attrs: { d: "M16.4286 3H1.64286C0.731071 3 0 3.7565 0 4.7V14.9C0 15.835 0.731071 16.6 1.64286 16.6H7.39286V18.3H5.75V20H12.3214V18.3H10.6786V16.6H12.3214V14.9H1.64286V4.7H16.4286V8.95H18.0714V4.7C18.0714 3.7565 17.3321 3 16.4286 3Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.7143 10.65H17.25V11.7176C17.1264 11.7628 17.0058 11.8147 16.8886 11.8727L16.1589 11.1176L14.4164 12.9207L15.146 13.6757C15.0899 13.797 15.0399 13.9217 14.9962 14.0496H13.9643V16.5996H14.9959C15.0396 16.7277 15.0898 16.8527 15.1459 16.9741L14.4162 17.7292L16.1587 19.5323L16.8884 18.7772C17.0057 18.8353 17.1263 18.8871 17.2501 18.9324V20H19.7143V18.9323C19.838 18.8871 19.9587 18.8352 20.0759 18.7772L20.8055 19.5321L22.548 17.729L21.8184 16.974C21.8744 16.8527 21.9245 16.728 21.9682 16.6001H23V14.0501H21.9682C21.9246 13.9222 21.8745 13.7974 21.8184 13.6761L22.5482 12.921L20.8057 11.1178L20.076 11.8729C19.9588 11.8148 19.8381 11.7629 19.7143 11.7177V10.65ZM18.4822 17.45C19.6163 17.45 20.5357 16.4986 20.5357 15.325C20.5357 14.1514 19.6163 13.2 18.4822 13.2C17.348 13.2 16.4286 14.1514 16.4286 15.325C16.4286 16.4986 17.348 17.45 18.4822 17.45Z" } })]);
|
|
2430
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), screenshot: e$
|
|
2427
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), screenshot: e$4({ render: function() {
|
|
2431
2428
|
var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
|
|
2432
2429
|
return i2("g", [i2("path", { attrs: { d: "M17.284 16.9705C17.284 19.1126 15.5475 20.8492 13.4053 20.8492C11.2632 20.8492 9.52663 19.1126 9.52663 16.9705C9.52663 14.8283 11.2632 13.0918 13.4053 13.0918C15.5475 13.0918 17.284 14.8283 17.284 16.9705ZM11.393 16.9705C11.393 18.0818 12.294 18.9828 13.4053 18.9828C14.5167 18.9828 15.4176 18.0818 15.4176 16.9705C15.4176 15.8591 14.5167 14.9582 13.4053 14.9582C12.294 14.9582 11.393 15.8591 11.393 16.9705Z" } }), e2._v(" "), i2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.81065 11.2545V23.7072H23V11.2545H18.1602L16.7396 9.41721H10.1391L8.73535 11.2545H3.81065ZM9.66272 13.0918H5.71598V21.8018H21.0947V13.0918H17.216L15.787 11.2545H11.0237L9.66272 13.0918Z" } }), e2._v(" "), i2("path", { attrs: { d: "M19.0533 8.32845H21.0947V10.3699H19.0533V8.32845Z" } }), e2._v(" "), i2("path", { attrs: { d: "M19.0533 4.5178H21.0947V6.55922H19.0533V4.5178Z" } }), e2._v(" "), i2("path", { attrs: { d: "M19.0533 0.707153H21.0947V2.74857H19.0533V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M15.2426 0.707153H17.284V2.74857H15.2426V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M11.432 0.707153H13.4734V2.74857H11.432V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M7.6213 0.707153H9.66272V2.74857H7.6213V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M3.81065 0.707153H5.85207V2.74857H3.81065V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 0.707153H2.04142V2.74857H0V0.707153Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 4.5178H2.04142V6.55922H0V4.5178Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 8.32845H2.04142V10.3699H0V8.32845Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 12.1391H2.04142V14.1805H0V12.1391Z" } }), e2._v(" "), i2("path", { attrs: { d: "M0 15.9498H2.04142V17.9912H0V15.9498Z" } })]);
|
|
2433
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), search: e$
|
|
2430
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), search: e$4({ render: function() {
|
|
2434
2431
|
var e2 = this.$createElement;
|
|
2435
2432
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.54777 14.4652C5.27332 14.4652 2.6301 11.822 2.6301 8.54753C2.6301 5.27309 5.27332 2.62986 8.54777 2.62986C11.8222 2.62986 14.4654 5.27309 14.4654 8.54753C14.4654 11.822 11.8222 14.4652 8.54777 14.4652ZM16.438 14.4654H15.3991L15.0309 14.1103C16.3196 12.6112 17.0955 10.665 17.0955 8.54774C17.0955 3.82676 13.2687 0 8.54774 0C3.82676 0 0 3.82676 0 8.54774C0 13.2687 3.82676 17.0955 8.54774 17.0955C10.665 17.0955 12.6112 16.3196 14.1103 15.0309L14.4654 15.3991V16.438L21.0406 23L23 21.0406L16.438 14.4654Z" } });
|
|
2436
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), section: e$
|
|
2433
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), section: e$4({ render: function() {
|
|
2437
2434
|
var e2 = this.$createElement;
|
|
2438
2435
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 7.73164V23L11.953 16.5753C11.953 16.5753 6.49999 14.0121 6.28069 13.8522C6.26505 13.8408 6.24156 13.8259 6.21198 13.8071C5.82653 13.5623 4.40617 12.66 5.8354 10.3329C7.11214 8.25209 9.34904 9.49862 9.34904 9.49862L13.7885 11.4995V0L0 7.73164ZM19.8067 10.2348L18.2687 11.0038L20.3082 16.2667L8.58975 10.69C8.58975 10.69 7.57905 10.1296 7.03365 11.1403C6.3805 12.3517 7.13376 12.6275 7.13376 12.6275L19.2556 18.215L13.8883 20.6252L14.8085 22.0092L23 18.6253L19.8067 10.2348Z" } });
|
|
2439
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), settings: e$
|
|
2436
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), settings: e$4({ render: function() {
|
|
2440
2437
|
var e2 = this.$createElement;
|
|
2441
2438
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.4907 15.5796C9.27638 15.5782 7.45187 13.7521 7.45375 11.5394C7.4554 9.32548 9.28085 7.50261 11.4952 7.50402C13.7103 7.50519 15.5319 9.32923 15.5294 11.5438C15.527 13.7615 13.7058 15.5813 11.4907 15.5796ZM19.8834 9.58064C19.6779 9.5487 19.5797 9.46792 19.5046 9.25984C19.2902 8.66804 19.0518 8.08304 18.7827 7.51448C18.6767 7.29138 18.6918 7.15235 18.8289 6.96142C19.4376 6.11292 20.0311 5.25363 20.606 4.43284C19.92 3.7471 19.2556 3.08296 18.5692 2.39674C18.4945 2.44911 18.3926 2.5198 18.2918 2.59237C17.5359 3.1358 16.7764 3.67476 16.027 4.22712C15.8635 4.3476 15.744 4.34149 15.5625 4.25929C14.9683 3.99063 14.364 3.74217 13.7556 3.50779C13.5729 3.43757 13.4803 3.35772 13.4479 3.15599C13.295 2.2037 13.1187 1.25516 12.9634 0.303332C12.9275 0.0821085 12.8451 -0.00407955 12.6102 0.000147662C11.8399 0.0142384 11.0692 0.00460971 10.2989 0.00695816C10.2118 0.00719301 10.1246 0.0266851 10.0333 0.0379577C9.86301 1.08231 9.68899 2.10083 9.53658 3.12264C9.50417 3.3387 9.41235 3.42653 9.21602 3.50004C8.61575 3.72455 8.0169 3.95752 7.43636 4.22806C7.22336 4.32716 7.0949 4.31331 6.91618 4.1832C6.08084 3.57472 5.2361 2.97915 4.42048 2.39721C3.73098 3.08413 3.06026 3.7532 2.37804 4.43331C2.96327 5.27194 3.56635 6.12584 4.153 6.99077C4.2204 7.08988 4.24952 7.27071 4.20748 7.37944C3.9562 8.0309 3.68425 8.67461 3.40455 9.31456C3.36251 9.41085 3.25401 9.52874 3.16031 9.54495C2.10891 9.72672 1.05422 9.89017 0 10.0588V12.9572C1.02886 13.139 2.05677 13.3281 3.08798 13.4967C3.29534 13.5307 3.36321 13.6327 3.43249 13.8107C3.67368 14.4292 3.92778 15.0434 4.20137 15.6481C4.28005 15.8216 4.27018 15.9313 4.16145 16.0795C3.69223 16.7188 3.23475 17.3667 2.77375 18.012C2.62204 18.2243 2.47268 18.4378 2.34422 18.6194C3.03936 19.3117 3.70444 19.9739 4.38596 20.6526C5.21473 20.0737 6.07497 19.481 6.92487 18.8735C7.1003 18.748 7.22688 18.7539 7.41875 18.8427C7.98003 19.102 8.54859 19.3502 9.131 19.5554C9.38205 19.6437 9.49713 19.7454 9.53705 20.0134C9.68547 21.0105 9.86137 22.0035 10.0279 23.0034H12.912C13.0938 21.9805 13.2809 20.9763 13.4453 19.9685C13.4848 19.7276 13.5912 19.6367 13.8162 19.5557C14.3866 19.35 14.9521 19.1207 15.4944 18.85C15.7416 18.7264 15.8945 18.7426 16.1071 18.8965C16.9441 19.5012 17.7942 20.0876 18.5995 20.6531C19.2885 19.9641 19.9531 19.2995 20.637 18.6158C20.5827 18.5386 20.5118 18.4357 20.4393 18.3342C19.8954 17.5785 19.3536 16.8211 18.8052 16.0687C18.7033 15.9287 18.6636 15.8235 18.747 15.6392C19.0252 15.0241 19.2608 14.3898 19.5332 13.7719C19.5821 13.6611 19.7169 13.5413 19.8326 13.5148C20.2457 13.4194 20.6682 13.3642 21.0867 13.2905C21.7278 13.1775 22.3683 13.0615 23 12.9486V10.0827C21.9463 9.91177 20.916 9.7401 19.8834 9.58064Z" } });
|
|
2442
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), share: e$
|
|
2439
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), share: e$4({ render: function() {
|
|
2443
2440
|
var e2 = this.$createElement;
|
|
2444
2441
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.564 18.428L22.9999 10.714L14.564 3V7.94155C8.95509 7.51864 -0.50778 9.48476 0.0212735 20.6282C1.12724 17.8112 5.54844 12.6311 14.564 13.4746V18.428Z" } });
|
|
2445
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), show: e$
|
|
2442
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), show: e$4({ render: function() {
|
|
2446
2443
|
var e2 = this.$createElement;
|
|
2447
2444
|
return (this._self._c || e2)("path", { attrs: { d: "M11.4995 8.20455C9.76406 8.20455 8.36315 9.60545 8.36315 11.3409C8.36315 13.0764 9.76406 14.4773 11.4995 14.4773C13.235 14.4773 14.6359 13.0764 14.6359 11.3409C14.6359 9.60545 13.235 8.20455 11.4995 8.20455ZM11.4995 16.5682C8.61406 16.5682 6.27224 14.2264 6.27224 11.3409C6.27224 8.45545 8.61406 6.11364 11.4995 6.11364C14.385 6.11364 16.7268 8.45545 16.7268 11.3409C16.7268 14.2264 14.385 16.5682 11.4995 16.5682ZM11.4995 3.5C6.27224 3.5 1.80815 6.75136 -0.000488281 11.3409C1.80815 15.9305 6.27224 19.1818 11.4995 19.1818C16.7268 19.1818 21.1909 15.9305 22.9995 11.3409C21.1909 6.75136 16.7268 3.5 11.4995 3.5Z" } });
|
|
2448
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), showSelected: e$
|
|
2445
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), showSelected: e$4({ render: function() {
|
|
2449
2446
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2450
2447
|
return t2("g", [t2("path", { attrs: { d: "M15.6069 2.9494L17.3118 4.61536L9.36673 12.3898L4.24048 7.39196L5.94544 5.726L9.36673 9.05792L15.6069 2.9494Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.42978 9.10136C3.42978 12.3758 6.07301 15.019 9.34745 15.019C12.6219 15.019 15.2651 12.3758 15.2651 9.10136C15.2651 8.63047 15.2105 8.17263 15.1071 7.73382L17.185 5.68489C17.6418 6.73127 17.8952 7.88682 17.8952 9.10157C17.8952 11.2188 17.1193 13.165 15.8306 14.6642L16.1988 15.0192H17.2376L23.7997 21.5944L21.8403 23.5538L15.2651 16.9918V15.9529L14.91 15.5847C13.4109 16.8734 11.4646 17.6493 9.34742 17.6493C4.62644 17.6493 0.799683 13.8226 0.799683 9.10157C0.799683 4.38059 4.62644 0.553833 9.34742 0.553833C11.4683 0.553833 13.4087 1.32617 14.9028 2.60494C14.87 2.63635 14.8357 2.66923 14.8 2.70347C14.3495 3.13521 13.6725 3.78411 12.9949 4.43717C11.9907 3.65145 10.7249 3.1837 9.34745 3.1837C6.07301 3.1837 3.42978 5.82692 3.42978 9.10136Z" } })]);
|
|
2451
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), socotec: e$
|
|
2448
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), socotec: e$4({ render: function() {
|
|
2452
2449
|
var e2 = this.$createElement;
|
|
2453
2450
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.27974 16.9196C6.71704 16.9196 4.63987 14.8424 4.63987 12.2797C4.63987 9.71704 6.71704 7.63987 9.27974 7.63987C10.8157 7.63987 12.1732 8.38943 13.0177 9.53891L9.42965 12.4295L12.8781 15.2074C13.5286 14.4088 13.9198 13.3901 13.9198 12.2798C13.9198 11.2531 13.5825 10.3074 13.0179 9.53871L16.6353 6.62479C14.9386 4.4213 12.2759 3 9.27974 3C4.15463 3 0 7.15463 0 12.2797C0 17.4049 4.15463 21.5595 9.27974 21.5595C12.1921 21.5595 14.7898 20.2169 16.491 18.1182L12.8779 15.2074C12.0271 16.2518 10.7319 16.9196 9.27974 16.9196ZM16.6355 6.62479L20.2061 3.74837C20.2061 3.74837 26.4924 12.1301 20.2061 21.1105L16.4912 18.1182C17.7841 16.5233 18.5597 14.4925 18.5597 12.2797C18.5597 10.1508 17.841 8.19067 16.6355 6.62479Z" } });
|
|
2454
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), space: e$
|
|
2451
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), space: e$4({ render: function() {
|
|
2455
2452
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2456
2453
|
return t2("g", [t2("path", { attrs: { d: "M12.0115 0.751587L2.51154 6.15159V17.0516L12.0115 11.5516V0.751587ZM8.81154 9.15159L6.41154 10.5516V7.85159L8.81154 6.55159V9.15159Z" } }), this._v(" "), t2("path", { attrs: { d: "M12.6115 0.751587V11.6516L15.5115 13.2516V5.95159L18.6115 7.75159V15.0516L22.1115 17.0516V6.15159L12.6115 0.751587Z" } }), this._v(" "), t2("path", { attrs: { d: "M12.3115 23.3516L2.51154 17.5516L12.3115 11.8516L22.1115 17.5516L12.3115 23.3516ZM3.11154 17.6516L12.3115 23.0516L21.5115 17.6516L12.3115 12.3516L3.11154 17.6516Z" } })]);
|
|
2457
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), split: e$
|
|
2454
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), split: e$4({ render: function() {
|
|
2458
2455
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2459
2456
|
return t2("g", [t2("rect", { attrs: { x: "12.8649", y: "20.541", width: "1.72499", height: "18.0819", transform: "rotate(-180 12.8649 20.541)" } }), this._v(" "), t2("rect", { attrs: { width: "1.76375", height: "6.39361", transform: "matrix(0.704882 0.709324 -0.704882 0.709324 5.00671 6.9657)" } }), this._v(" "), t2("rect", { attrs: { x: "9.55774", y: "10.7045", width: "1.73586", height: "7.76247", transform: "rotate(90 9.55774 10.7045)" } }), this._v(" "), t2("rect", { attrs: { width: "1.76375", height: "6.39361", transform: "matrix(-0.704882 0.709324 -0.704882 -0.709324 6.25037 14.7845)" } }), this._v(" "), t2("rect", { attrs: { width: "1.76375", height: "6.39361", transform: "matrix(-0.704882 -0.709324 0.704882 -0.709324 18.9933 16.0353)" } }), this._v(" "), t2("rect", { attrs: { x: "14.4423", y: "12.2964", width: "1.73586", height: "7.76247", transform: "rotate(-90 14.4423 12.2964)" } }), this._v(" "), t2("rect", { attrs: { width: "1.76375", height: "6.39361", transform: "matrix(0.704882 -0.709324 0.704882 0.709324 17.7496 8.21649)" } })]);
|
|
2460
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), storey: e$
|
|
2457
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), storey: e$4({ render: function() {
|
|
2461
2458
|
var e2 = this.$createElement;
|
|
2462
2459
|
return (this._self._c || e2)("path", { attrs: { d: "M11.7015 19.5944L2.29239 12.886L0.201477 14.4194L11.7015 22.661L23.2015 14.4194L21.1106 12.886L11.7015 19.5944ZM11.7015 16.7194L21.1106 10.011L23.2015 8.47769L11.7015 0.236023L0.201477 8.47769L2.29239 10.011L11.7015 16.7194Z" } });
|
|
2463
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), success: e$
|
|
2460
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), success: e$4({ render: function() {
|
|
2464
2461
|
var e2 = this.$createElement;
|
|
2465
2462
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 11.5664C23 17.9177 17.8513 23.0664 11.5 23.0664C5.14873 23.0664 0 17.9177 0 11.5664C0 5.21513 5.14873 0.0664062 11.5 0.0664062C17.8513 0.0664062 23 5.21513 23 11.5664ZM17.7727 10.1843L16.2727 8.71857L10.7827 14.0927L7.77271 11.1614L6.27271 12.6271L10.7827 17.0241L17.7727 10.1843Z" } });
|
|
2466
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), surface: e$
|
|
2463
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), surface: e$4({ render: function() {
|
|
2467
2464
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2468
2465
|
return t2("g", [t2("path", { attrs: { d: "M0 2.96117L3.28571 0.989746V4.9326L0 2.96117Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.6857 3.6183H1.97144V2.30402H21.6857V3.6183Z" } }), this._v(" "), t2("path", { attrs: { d: "M21.0286 23.9898L19.0571 21.3612L23 21.3612L21.0286 23.9898Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.3714 22.0183L20.3714 2.30402L21.6857 2.30402L21.6857 22.0183L20.3714 22.0183Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.9266 6.24689H12.6502L17.7429 15.0677V11.1248L14.9266 6.24689ZM17.7429 8.4962L16.4442 6.24689H17.7429V8.4962ZM17.7429 17.6963L11.1326 6.24689H8.85611L17.7429 21.6392V17.6963ZM17.2029 23.3326L7.3385 6.24689H5.06212L14.9266 23.3326H17.2029ZM13.409 23.3326L3.54452 6.24689H1.26814L11.1326 23.3326H13.409ZM9.61498 23.3326L0.657166 7.81722V11.76L7.3386 23.3326H9.61498ZM5.82099 23.3326L0.657166 14.3886V18.3315L3.54454 23.3326H5.82099ZM2.02693 23.3326L0.657166 20.9601V23.3326H2.02693Z" } })]);
|
|
2469
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), swap: e$
|
|
2466
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), swap: e$4({ render: function() {
|
|
2470
2467
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2471
2468
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M7.80716 0L1 6.07732L7.80716 12.1546V8.29974H21.7947V4.00115H7.80716V0Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.9876 23L21.7948 16.9227L14.9876 10.8454L14.9876 14.7001L1.0001 14.7001L1.0001 18.9987L14.9876 18.9987L14.9876 23Z" } })]);
|
|
2472
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), synchro2d: e$
|
|
2469
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), synchro2d: e$4({ render: function() {
|
|
2473
2470
|
var e2 = this, t2 = e2.$createElement, i2 = e2._self._c || t2;
|
|
2474
2471
|
return i2("g", [i2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M4.43855 9.62606L11.5053 13.8805L18.6466 9.54576L21.5979 11.2011L11.5158 17.311L1.48096 11.2794L4.43855 9.62606Z" } }), e2._v(" "), i2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5054 17.9337L4.43909 13.6795L1.48108 15.3331L11.5159 21.3647L21.598 15.2547L18.6462 13.5992L11.5054 17.9337ZM18.6651 14.689L11.5074 19.0337L4.42144 14.7677L3.35737 15.3625L11.5139 20.2651L19.7298 15.2861L18.6651 14.689Z" } }), e2._v(" "), i2("rect", { attrs: { x: "17.8959", width: "5.10406", height: "1.00266" } }), e2._v(" "), i2("rect", { attrs: { x: "23", y: "0.000183105", width: "5.07595", height: "1.00821", transform: "rotate(90 23 0.000183105)" } }), e2._v(" "), i2("rect", { attrs: { x: "22.9996", y: "17.9227", width: "5.07595", height: "1.00821", transform: "rotate(90 22.9996 17.9227)" } }), e2._v(" "), i2("rect", { attrs: { x: "22.9996", y: "23", width: "5.10406", height: "1.00266", transform: "rotate(-180 22.9996 23)" } }), e2._v(" "), i2("rect", { attrs: { width: "5.10406", height: "1.00266", transform: "matrix(-1 0 0 1 5.10413 0)" } }), e2._v(" "), i2("rect", { attrs: { width: "5.07595", height: "1.00821", transform: "matrix(4.18898e-08 1 1 -4.56122e-08 0.00012207 0.000183105)" } }), e2._v(" "), i2("rect", { attrs: { width: "5.07595", height: "1.00821", transform: "matrix(4.58647e-08 1 1 -4.16591e-08 0 17.9227)" } }), e2._v(" "), i2("rect", { attrs: { width: "5.10406", height: "1.00266", transform: "matrix(1 -8.33183e-08 -9.17295e-08 -1 0 23)" } }), e2._v(" "), i2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.45079 2.7201L11.6262 1.50403L13.6668 2.64858L11.5004 3.89277L9.45079 2.7201ZM8.67663 3.15287L6.74597 4.23215L8.83247 5.42499L10.7366 4.33145L8.67663 3.15287ZM5.9718 4.66492L4.12574 5.6969L6.24637 6.9102L8.06863 5.86367L5.9718 4.66492ZM3.35157 6.12967L1.48108 7.17531L3.58393 8.43926L5.48254 7.34888L3.35157 6.12967ZM4.30028 8.86984L6.13779 9.97431L8.0998 8.84633L6.21696 7.76907L4.30028 8.86984ZM6.85413 10.4049L8.74577 11.5419L10.7726 10.3755L8.8342 9.2665L6.85413 10.4049ZM9.46209 11.9724L11.5159 13.2069L13.5582 11.9693L11.507 10.7957L9.46209 11.9724ZM14.3014 11.5188L16.0777 10.4424L14.0929 9.30768L12.2701 10.3566L14.3014 11.5188ZM16.8209 9.99195L18.6708 8.87093L16.7558 7.77529L14.8559 8.86857L16.8209 9.99195ZM19.414 8.42049L21.598 7.09697L19.7428 6.05644L17.5189 7.33618L19.414 8.42049ZM19.0011 5.64046L17.0474 4.54465L14.8489 5.80858L16.7845 6.91602L19.0011 5.64046ZM16.3057 4.12866L14.4085 3.06458L12.2348 4.31296L14.1145 5.3884L16.3057 4.12866ZM14.0855 6.24749L16.0214 7.35513L14.1213 8.44856L12.1837 7.34085L14.0855 6.24749ZM11.4202 7.77976L13.3582 8.88768L11.5357 9.93643L9.59764 8.8276L11.4202 7.77976ZM8.86324 8.40742L10.6856 7.35975L8.80334 6.28369L6.98079 7.33039L8.86324 8.40742ZM11.449 6.92084L13.3511 5.82731L11.471 4.75164L9.56717 5.84501L11.449 6.92084Z" } })]);
|
|
2475
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), system: e$
|
|
2472
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), system: e$4({ render: function() {
|
|
2476
2473
|
var e2 = this.$createElement;
|
|
2477
2474
|
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$
|
|
2475
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tag: e$4({ render: function() {
|
|
2479
2476
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2480
2477
|
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" } })]);
|
|
2481
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tree: e$
|
|
2478
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), tree: e$4({ render: function() {
|
|
2482
2479
|
var e2 = this.$createElement;
|
|
2483
2480
|
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" } });
|
|
2484
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), unarchive: e$
|
|
2481
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), unarchive: e$4({ render: function() {
|
|
2485
2482
|
var e2 = this.$createElement;
|
|
2486
2483
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.0005 11.3952L8.93282 11.3952L8.93282 4.82378L6.32345 4.82378L11.4992 0L16.675 4.82378L14.0005 4.82378L14.0005 11.3952ZM8.47948 5.35129H4.53964L1.91846 13.0838H1C0.447715 13.0838 0 13.5315 0 14.0838V21.7902C0 22.3425 0.447715 22.7902 1 22.7902H22C22.5523 22.7902 23 22.3425 23 21.7902V14.0838C23 13.5315 22.5523 13.0838 22 13.0838H21.0651L18.3823 5.35129H14.5608V6.19532H17.7817L20.1717 13.0838H2.80967L5.14474 6.19532L8.47948 6.19532V5.35129ZM15.1788 17.1862H7.82114V18.6878H15.1788V17.1862Z" } });
|
|
2487
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), undo: e$
|
|
2484
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), undo: e$4({ render: function() {
|
|
2488
2485
|
var e2 = this.$createElement;
|
|
2489
2486
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M5.55706 0.277443L0.108276 5.41187L5.55706 10.5463V7.24548H12.7348C16.1491 7.24548 18.917 10.0134 18.917 13.4278C18.917 16.8421 16.1491 19.61 12.7348 19.61H5.34754V23.2775H12.7348C18.1746 23.2775 22.5845 18.8676 22.5845 13.4278C22.5845 7.9879 18.1746 3.57803 12.7348 3.57803H5.55706V0.277443Z" } });
|
|
2490
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), union: e$
|
|
2487
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), union: e$4({ render: function() {
|
|
2491
2488
|
var e2 = this.$createElement;
|
|
2492
2489
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M9.3398 7.91262C7.80826 6.62614 5.71323 6.63395 4.26441 6.65983L4.25505 6.65999H0.499756V4.56227H4.23629L4.30929 4.56094C5.69026 4.53548 8.51871 4.48332 10.689 6.30639C11.1904 6.7275 11.6426 7.22319 12.1087 7.73408L12.1087 7.73409L12.1634 7.79412C13.2698 9.00732 14.4941 10.3498 16.6072 10.8996V8.00851L23.4998 12.0541L16.6072 16.0997V13.5387C14.4592 14.1121 13.2296 15.4452 12.1087 16.6738C11.6426 17.1847 11.1904 17.6804 10.689 18.1015C8.51871 19.9246 5.69026 19.8724 4.30929 19.847L4.23629 19.8456H0.499756V17.7479H4.25505L4.26441 17.7481C5.71323 17.774 7.80826 17.7818 9.3398 16.4953C9.60506 16.2725 9.90529 15.9373 10.26 15.5413C11.1568 14.5401 12.4019 13.15 14.3107 12.204C12.4019 11.2579 11.1568 9.86786 10.26 8.86664C9.90529 8.47063 9.60506 8.13544 9.3398 7.91262Z" } });
|
|
2493
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), up: e$
|
|
2490
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), up: e$4({ render: function() {
|
|
2494
2491
|
var e2 = this.$createElement;
|
|
2495
2492
|
return (this._self._c || e2)("path", { attrs: { d: "M12.4011 0.0440674L23.9011 21.5107H0.901062L12.4011 0.0440674Z" } });
|
|
2496
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), user: e$
|
|
2493
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), user: e$4({ render: function() {
|
|
2497
2494
|
var e2 = this.$createElement;
|
|
2498
2495
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5 14.375C7.66179 14.375 0 16.3014 0 20.125V23H23V20.125C23 16.3014 15.3382 14.375 11.5 14.375ZM11.5 11.5C14.6775 11.5 17.25 8.92679 17.25 5.75C17.25 2.57321 14.6775 0 11.5 0C8.32252 0 5.75 2.57321 5.75 5.75C5.75 8.92679 8.32252 11.5 11.5 11.5Z" } });
|
|
2499
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validate: e$
|
|
2496
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validate: e$4({ render: function() {
|
|
2500
2497
|
var e2 = this.$createElement;
|
|
2501
2498
|
return (this._self._c || e2)("path", { attrs: { d: "M20 4L23 6.93137L9.02 20.6111L0 11.817L3 8.88562L9.02 14.7484L20 4Z" } });
|
|
2502
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validatedFile: e$
|
|
2499
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), validatedFile: e$4({ render: function() {
|
|
2503
2500
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2504
2501
|
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$
|
|
2502
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), versioning: e$4({ render: function() {
|
|
2506
2503
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2507
2504
|
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" } })]);
|
|
2508
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), video: e$
|
|
2505
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), video: e$4({ render: function() {
|
|
2509
2506
|
var e2 = this.$createElement;
|
|
2510
2507
|
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" } });
|
|
2511
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), visa: e$
|
|
2508
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), visa: e$4({ render: function() {
|
|
2512
2509
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2513
2510
|
return t2("g", [t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21ZM11.5 23C17.8513 23 23 17.8513 23 11.5C23 5.14873 17.8513 0 11.5 0C5.14873 0 0 5.14873 0 11.5C0 17.8513 5.14873 23 11.5 23Z" } }), this._v(" "), t2("path", { attrs: { d: "M17 7.1875L18.6875 8.70956L10.8238 15.8125L5.75 11.2463L7.4375 9.72426L10.8238 12.7684L17 7.1875Z" } })]);
|
|
2514
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), warning: e$
|
|
2511
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), warning: e$4({ render: function() {
|
|
2515
2512
|
var e2 = this.$createElement;
|
|
2516
2513
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.3606 0.552786C12.9921 -0.184262 11.9403 -0.184262 11.5718 0.552787L1.07366 21.549C0.741209 22.2139 1.22471 22.9962 1.96809 22.9962H22.9643C23.7077 22.9962 24.1912 22.2139 23.8588 21.549L13.3606 0.552786ZM11.518 15.71H13.353L13.5637 7.24522H11.316L11.518 15.71ZM11.5794 17.5233C11.3629 17.7267 11.2546 17.9849 11.2546 18.2981C11.2546 18.6003 11.3599 18.8531 11.5706 19.0564C11.7814 19.2597 12.0799 19.3614 12.4662 19.3614C12.8525 19.3614 13.151 19.2597 13.3617 19.0564C13.5724 18.8531 13.6778 18.6003 13.6778 18.2981C13.6778 17.9849 13.5695 17.7267 13.353 17.5233C13.1364 17.3145 12.8408 17.2101 12.4662 17.2101C12.0916 17.2101 11.796 17.3145 11.5794 17.5233Z" } });
|
|
2517
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowBottom: e$
|
|
2514
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowBottom: e$4({ render: function() {
|
|
2518
2515
|
var e2 = this.$createElement;
|
|
2519
2516
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M0 22L23 22L23 2.28572L1.72348e-06 2.28571L0 22ZM3.28508 10.5001L3.28508 18.7144L19.7137 18.7144L19.7137 10.5001L3.28508 10.5001Z" } });
|
|
2520
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowed: e$
|
|
2517
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowed: e$4({ render: function() {
|
|
2521
2518
|
var e2 = this.$createElement;
|
|
2522
2519
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M8.05009 7.90625H8.05004H5.85464L4.3869e-05 7.90625L4.40575e-05 5.75L5.85464 5.75L5.85464 0H8.05009L8.05009 7.90625ZM17.1454 5.75003L23 5.75003V7.90628L14.95 7.90628V5.75003L14.95 2.79065e-05L17.1454 2.80984e-05V5.75003ZM8.05 15.0938H8.05005L8.05005 23H5.85459L5.85459 17.25H0V15.0937L5.85459 15.0938H8.05ZM23 15.0938L14.95 15.0938V17.25V23H17.1454V17.25L23 17.25L23 15.0938Z" } });
|
|
2523
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowLeft: e$
|
|
2520
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowLeft: e$4({ render: function() {
|
|
2524
2521
|
var e2 = this.$createElement;
|
|
2525
2522
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 2H0V21.7143H23V2ZM13.143 5.28546H3.28582V18.4283H13.143V5.28546Z" } });
|
|
2526
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowRight: e$
|
|
2523
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowRight: e$4({ render: function() {
|
|
2527
2524
|
var e2 = this.$createElement;
|
|
2528
2525
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 2H0V21.7143H23V2ZM19.7165 5.28546H9.85937V18.4283H19.7165V5.28546Z" } });
|
|
2529
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowTop: e$
|
|
2526
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), windowTop: e$4({ render: function() {
|
|
2530
2527
|
var e2 = this.$createElement;
|
|
2531
2528
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M23 2H0V21.7143H23V2ZM19.7137 13.4997V5.28546L3.28515 5.28546L3.28515 13.4997L19.7137 13.4997Z" } });
|
|
2532
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), zone: e$
|
|
2529
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), zone: e$4({ render: function() {
|
|
2533
2530
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2534
2531
|
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" } })]);
|
|
2535
|
-
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, i$
|
|
2532
|
+
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0) }, i$4 = Object.freeze(["black", "default", "granite", "granite-light", "high", "primary", "secondary", "success", "silver", "silver-light", "silver-dark", "warning", "white"]);
|
|
2536
2533
|
const d$2 = { xxxs: 10, xxs: 13, xs: 16, s: 18, m: 22, l: 28, xl: 36, xxl: 45, xxxl: 60 };
|
|
2537
|
-
var r$
|
|
2534
|
+
var r$4 = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
|
|
2538
2535
|
return Object.entries(e2).reduce((e3, [t2, i2]) => __spreadProps(__spreadValues({}, e3), { ["bimdata-icon-" + t2]: i2 }), {});
|
|
2539
|
-
}(t$
|
|
2536
|
+
}(t$4)), props: { name: { type: String, required: true, validator: (e2) => Object.keys(t$4).includes(e2) }, color: { type: String, default: "default", validator: (e2) => i$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$2).includes(e2) }, customSize: { type: [Number, String], default: null }, rotate: { type: Number, default: 0 }, margin: { type: String, default: "0px" } }, computed: { classes() {
|
|
2540
2537
|
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 };
|
|
2541
2538
|
}, style() {
|
|
2542
2539
|
const e2 = this.getPixelSize(this.size);
|
|
@@ -2544,10 +2541,10 @@ var r$3 = { name: "BIMDataIcon", components: __spreadValues({}, function(e2) {
|
|
|
2544
2541
|
} }, methods: { getPixelSize() {
|
|
2545
2542
|
return this.customSize ? this.customSize : d$2[this.size];
|
|
2546
2543
|
} } };
|
|
2547
|
-
const o$
|
|
2544
|
+
const o$4 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
2548
2545
|
function n$2(e2) {
|
|
2549
2546
|
return (e3, t2) => function(e4, t3) {
|
|
2550
|
-
const i2 = o$
|
|
2547
|
+
const i2 = o$4 ? t3.media || "default" : e4, d2 = s$3[i2] || (s$3[i2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
2551
2548
|
if (!d2.ids.has(e4)) {
|
|
2552
2549
|
d2.ids.add(e4);
|
|
2553
2550
|
let i3 = t3.source;
|
|
@@ -2562,18 +2559,18 @@ function n$2(e2) {
|
|
|
2562
2559
|
}
|
|
2563
2560
|
let v$1;
|
|
2564
2561
|
const s$3 = {};
|
|
2565
|
-
const C = e$
|
|
2562
|
+
const C = e$4({ render: function() {
|
|
2566
2563
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2567
2564
|
return t2("div", { staticClass: "overlay flex items-center justify-center" }, [t2("div", { staticClass: "safe-zone", style: { width: this.width } }, [t2("div", { staticClass: "safe-zone__content flex flex-col items-center justify-center p-18" }, [t2("BIMDataIcon", { attrs: { name: this.iconName, size: "l", fill: "", color: "high" } }), this._v(" "), t2("p", [this._t("text")], 2)], 1), this._v(" "), t2("div", { staticClass: "safe-zone__actions flex items-center p-x-18" }, [this._t("actions")], 2)])]);
|
|
2568
2565
|
}, staticRenderFns: [] }, function(e2) {
|
|
2569
2566
|
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 });
|
|
2570
|
-
}, { components: { BIMDataIcon: e$
|
|
2567
|
+
}, { components: { BIMDataIcon: e$4({ render: function() {
|
|
2571
2568
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
2572
2569
|
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);
|
|
2573
2570
|
}, staticRenderFns: [] }, function(e2) {
|
|
2574
2571
|
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$
|
|
2576
|
-
var e$
|
|
2572
|
+
}, r$4, "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);
|
|
2573
|
+
var e$3 = { 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() {
|
|
2577
2574
|
this.$watch(() => this.success && this.error, (e2) => {
|
|
2578
2575
|
if (e2)
|
|
2579
2576
|
throw new Error("Textarea state cannot be both success and error.");
|
|
@@ -2589,7 +2586,7 @@ var e$2 = { model: { prop: "modelValue", event: "update:modelValue" }, props: {
|
|
|
2589
2586
|
}, onInput(e2) {
|
|
2590
2587
|
this.$emit("update:modelValue", e2.currentTarget.value), this.fitContent && this.handleFitContent();
|
|
2591
2588
|
} } };
|
|
2592
|
-
function r$
|
|
2589
|
+
function r$3(e2, r2, t2, a2, o2, i2, s2, l2, n2, c2) {
|
|
2593
2590
|
typeof s2 != "boolean" && (n2 = l2, l2 = s2, s2 = false);
|
|
2594
2591
|
const d2 = typeof t2 == "function" ? t2.options : t2;
|
|
2595
2592
|
let b2;
|
|
@@ -2611,14 +2608,14 @@ function r$2(e2, r2, t2, a2, o2, i2, s2, l2, n2, c2) {
|
|
|
2611
2608
|
}
|
|
2612
2609
|
return t2;
|
|
2613
2610
|
}
|
|
2614
|
-
const t$
|
|
2615
|
-
function a$
|
|
2611
|
+
const t$3 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
2612
|
+
function a$3(e2) {
|
|
2616
2613
|
return (e3, r2) => function(e4, r3) {
|
|
2617
|
-
const a2 = t$
|
|
2614
|
+
const a2 = t$3 ? r3.media || "default" : e4, s2 = i$3[a2] || (i$3[a2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
2618
2615
|
if (!s2.ids.has(e4)) {
|
|
2619
2616
|
s2.ids.add(e4);
|
|
2620
2617
|
let t2 = r3.source;
|
|
2621
|
-
if (r3.map && (t2 += "\n/*# sourceURL=" + r3.map.sources[0] + " */", t2 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(r3.map)))) + " */"), s2.element || (s2.element = document.createElement("style"), s2.element.type = "text/css", r3.media && s2.element.setAttribute("media", r3.media), o$
|
|
2618
|
+
if (r3.map && (t2 += "\n/*# sourceURL=" + r3.map.sources[0] + " */", t2 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(r3.map)))) + " */"), s2.element || (s2.element = document.createElement("style"), s2.element.type = "text/css", r3.media && s2.element.setAttribute("media", r3.media), o$3 === void 0 && (o$3 = document.head || document.getElementsByTagName("head")[0]), o$3.appendChild(s2.element)), "styleSheet" in s2.element)
|
|
2622
2619
|
s2.styles.push(t2), s2.element.styleSheet.cssText = s2.styles.filter(Boolean).join("\n");
|
|
2623
2620
|
else {
|
|
2624
2621
|
const e5 = s2.ids.size - 1, r4 = document.createTextNode(t2), a3 = s2.element.childNodes;
|
|
@@ -2627,15 +2624,72 @@ function a$2(e2) {
|
|
|
2627
2624
|
}
|
|
2628
2625
|
}(e3, r2);
|
|
2629
2626
|
}
|
|
2630
|
-
let o$
|
|
2631
|
-
const i$
|
|
2632
|
-
const s$2 = r$
|
|
2627
|
+
let o$3;
|
|
2628
|
+
const i$3 = {};
|
|
2629
|
+
const s$2 = r$3({ render: function() {
|
|
2633
2630
|
var e2 = this, r2 = e2.$createElement, t2 = e2._self._c || r2;
|
|
2634
2631
|
return t2("div", { staticClass: "bimdata-textarea", class: { "not-empty": e2.modelValue !== null && e2.modelValue !== "" || e2.placeholder !== null, error: e2.error, success: e2.success }, style: { "min-width": e2.width, "min-height": e2.height } }, [t2("textarea", e2._b({ ref: "textarea", style: e2.resizable ? "" : "resize: none;", attrs: { name: e2.name, id: e2.name, placeholder: e2.placeholder }, domProps: { value: e2.modelValue }, on: { input: e2.onInput } }, "textarea", e2.$attrs, false)), e2._v(" "), t2("label", { attrs: { for: e2.name } }, [e2._v(e2._s(e2.label))]), e2._v(" "), t2("span", { staticClass: "bar" }), e2._v(" "), e2.error ? t2("span", { staticClass: "error" }, [e2._v(e2._s(e2.errorMessage))]) : e2._e(), e2._v(" "), e2.success ? t2("span", { staticClass: "success" }, [e2._v(e2._s(e2.successMessage))]) : e2._e()]);
|
|
2635
2632
|
}, staticRenderFns: [] }, function(e2) {
|
|
2636
2633
|
e2 && (e2("data-v-83b6e0d8_0", { source: 'html[data-v-83b6e0d8]{--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-83b6e0d8]{--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-83b6e0d8]{text-align:left}.text-center[data-v-83b6e0d8]{text-align:center}.text-right[data-v-83b6e0d8]{text-align:right}.bimdata-link[data-v-83b6e0d8]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-83b6e0d8]{font-family:roboto,sans-serif}', map: void 0, media: void 0 }), e2("data-v-83b6e0d8_1", { source: 'textarea:-webkit-autofill{box-shadow:0 0 0 1000px var(--color-white) inset}.bimdata-textarea{margin:var(--spacing-unit) 0;position:relative;inline-size:min-content;font-family:var(--primary-font);font-size:1em}.bimdata-textarea textarea{padding:0;width:100%;min-width:inherit;max-width:100%;min-height:inherit;display:flex;margin:0;border:none}.bimdata-textarea textarea:disabled{background-color:transparent}.bimdata-textarea textarea:disabled~label{color:var(--color-silver-dark);cursor:default}.bimdata-textarea textarea:focus{outline:0}.bimdata-textarea textarea:focus~label{top:-26px;font-size:.7142857143em}.bimdata-textarea textarea:focus~.bar:after{width:100%;transition:transform .2s cubic-bezier(.55,0,.55,.2);transform:scaleX(1)}.bimdata-textarea.not-empty label{top:-26px;color:var(--color-primary);font-size:.7142857143em}.bimdata-textarea 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-textarea .bar{width:100%;height:1px;display:block;background:var(--color-silver)}.bimdata-textarea .bar::after{width:0;height:2px;content:"";display:block;position:absolute;background-color:var(--color-primary);transform:scaleX(0)}.bimdata-textarea .error{color:var(--color-high);font-size:.7857142857em}.bimdata-textarea .success{color:var(--color-success);font-size:.7857142857em}.bimdata-textarea.error label{color:var(--color-high)}.bimdata-textarea.error .bar{background-color:var(--color-high)}.bimdata-textarea.error .bar::after,.bimdata-textarea.error .bar::before{background-color:var(--color-high)}.bimdata-textarea.success label{color:var(--color-success)}.bimdata-textarea.success .bar{background-color:var(--color-success)}.bimdata-textarea.success .bar::after,.bimdata-textarea.success .bar::before{background-color:var(--color-success)}', map: void 0, media: void 0 }));
|
|
2637
|
-
}, e$
|
|
2638
|
-
var
|
|
2634
|
+
}, e$3, "data-v-83b6e0d8", false, void 0, false, a$3, void 0, void 0);
|
|
2635
|
+
var t$2 = { props: { text: { type: String, default: "" }, maxWidth: { type: String, default: "240px" }, position: { type: String, default: "bottom", validator: (t2) => ["top", "right", "bottom", "left"].includes(t2) }, color: { type: String, default: "primary", validator: (t2) => ["white", "primary", "secondary", "granite-light", "silver-light", "success", "warning", "high"].includes(t2) }, disabled: { type: Boolean, default: false }, message: { type: String }, className: { type: [String, Array] } }, data: () => ({ width: null, height: null, parentHeight: null, hover: false }), computed: { isDisplayed() {
|
|
2636
|
+
return !this.disabled && this._text && this.hover;
|
|
2637
|
+
}, _text() {
|
|
2638
|
+
return this.text || this.message;
|
|
2639
|
+
}, _className() {
|
|
2640
|
+
return [this.className].flat();
|
|
2641
|
+
} } };
|
|
2642
|
+
function o$2(t2, o2, a2, r2, e2, i2, l2, d2, n2, b2) {
|
|
2643
|
+
typeof l2 != "boolean" && (n2 = d2, d2 = l2, l2 = false);
|
|
2644
|
+
const c2 = typeof a2 == "function" ? a2.options : a2;
|
|
2645
|
+
let s2;
|
|
2646
|
+
if (t2 && t2.render && (c2.render = t2.render, c2.staticRenderFns = t2.staticRenderFns, c2._compiled = true, e2 && (c2.functional = true)), r2 && (c2._scopeId = r2), i2 ? (s2 = function(t3) {
|
|
2647
|
+
(t3 = t3 || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) || typeof __VUE_SSR_CONTEXT__ == "undefined" || (t3 = __VUE_SSR_CONTEXT__), o2 && o2.call(this, n2(t3)), t3 && t3._registeredComponents && t3._registeredComponents.add(i2);
|
|
2648
|
+
}, c2._ssrRegister = s2) : o2 && (s2 = l2 ? function(t3) {
|
|
2649
|
+
o2.call(this, b2(t3, this.$root.$options.shadowRoot));
|
|
2650
|
+
} : function(t3) {
|
|
2651
|
+
o2.call(this, d2(t3));
|
|
2652
|
+
}), s2)
|
|
2653
|
+
if (c2.functional) {
|
|
2654
|
+
const t3 = c2.render;
|
|
2655
|
+
c2.render = function(o3, a3) {
|
|
2656
|
+
return s2.call(a3), t3(o3, a3);
|
|
2657
|
+
};
|
|
2658
|
+
} else {
|
|
2659
|
+
const t3 = c2.beforeCreate;
|
|
2660
|
+
c2.beforeCreate = t3 ? [].concat(t3, s2) : [s2];
|
|
2661
|
+
}
|
|
2662
|
+
return a2;
|
|
2663
|
+
}
|
|
2664
|
+
const a$2 = typeof navigator != "undefined" && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());
|
|
2665
|
+
function r$2(t2) {
|
|
2666
|
+
return (t3, o2) => function(t4, o3) {
|
|
2667
|
+
const r2 = a$2 ? o3.media || "default" : t4, l2 = i$2[r2] || (i$2[r2] = { ids: /* @__PURE__ */ new Set(), styles: [] });
|
|
2668
|
+
if (!l2.ids.has(t4)) {
|
|
2669
|
+
l2.ids.add(t4);
|
|
2670
|
+
let a2 = o3.source;
|
|
2671
|
+
if (o3.map && (a2 += "\n/*# sourceURL=" + o3.map.sources[0] + " */", a2 += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(unescape(encodeURIComponent(JSON.stringify(o3.map)))) + " */"), l2.element || (l2.element = document.createElement("style"), l2.element.type = "text/css", o3.media && l2.element.setAttribute("media", o3.media), e$2 === void 0 && (e$2 = document.head || document.getElementsByTagName("head")[0]), e$2.appendChild(l2.element)), "styleSheet" in l2.element)
|
|
2672
|
+
l2.styles.push(a2), l2.element.styleSheet.cssText = l2.styles.filter(Boolean).join("\n");
|
|
2673
|
+
else {
|
|
2674
|
+
const t5 = l2.ids.size - 1, o4 = document.createTextNode(a2), r3 = l2.element.childNodes;
|
|
2675
|
+
r3[t5] && l2.element.removeChild(r3[t5]), r3.length ? l2.element.insertBefore(o4, r3[t5]) : l2.element.appendChild(o4);
|
|
2676
|
+
}
|
|
2677
|
+
}
|
|
2678
|
+
}(t3, o2);
|
|
2679
|
+
}
|
|
2680
|
+
let e$2;
|
|
2681
|
+
const i$2 = {};
|
|
2682
|
+
const l$2 = o$2({ render: function() {
|
|
2683
|
+
var t2 = this, o2 = t2.$createElement, a2 = t2._self._c || o2;
|
|
2684
|
+
return a2("div", { staticClass: "bimdata-tooltip" }, [a2("div", { staticClass: "bimdata-tooltip__content", on: { mouseover: function(o3) {
|
|
2685
|
+
t2.hover = true;
|
|
2686
|
+
}, mouseleave: function(o3) {
|
|
2687
|
+
t2.hover = false;
|
|
2688
|
+
} } }, [t2._t("content"), t2._v(" "), t2._t("default")], 2), t2._v(" "), a2("Transition", { attrs: { name: "fade" } }, [a2("div", { directives: [{ name: "show", rawName: "v-show", value: t2.isDisplayed, expression: "isDisplayed" }], ref: "tooltipText", staticClass: "bimdata-tooltip__tooltip", class: ["bimdata-tooltip__tooltip--" + t2.position, "bimdata-tooltip__tooltip--" + t2.color].concat(t2._className), style: { maxWidth: t2.maxWidth } }, [t2._v("\n " + t2._s(t2._text) + "\n ")])])], 1);
|
|
2689
|
+
}, staticRenderFns: [] }, function(t2) {
|
|
2690
|
+
t2 && t2("data-v-4b5d635b_0", { source: 'html[data-v-4b5d635b]{--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-4b5d635b]{--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-4b5d635b]{text-align:left}.text-center[data-v-4b5d635b]{text-align:center}.text-right[data-v-4b5d635b]{text-align:right}.bimdata-link[data-v-4b5d635b]{color:var(--color-primary);border-bottom:1px solid var(--color-primary);font-weight:700}.primary-font[data-v-4b5d635b]{font-family:roboto,sans-serif}.bimdata-tooltip[data-v-4b5d635b]{position:relative}.bimdata-tooltip__tooltip[data-v-4b5d635b]{position:absolute;z-index:2;min-width:60px;width:max-content;padding:calc(var(--spacing-unit)/ 3) calc(var(--spacing-unit)/ 2);border-radius:3px;text-align:center;white-space:normal;word-wrap:break-word}.bimdata-tooltip__tooltip[data-v-4b5d635b]::before{content:"";position:absolute;border-style:solid;border-width:8px 0 0 8px}.bimdata-tooltip__tooltip--top[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--up[data-v-4b5d635b]{top:-8px;left:50%;transform:translateX(-50%) translateY(-100%)}.bimdata-tooltip__tooltip--top[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--up[data-v-4b5d635b]::before{top:calc(100% - 4px);left:calc(50% - 4px);transform:rotate(135deg)}.bimdata-tooltip__tooltip--right[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--left[data-v-4b5d635b]{top:50%;left:calc(100% + 8px);transform:translateY(-50%)}.bimdata-tooltip__tooltip--right[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--left[data-v-4b5d635b]::before{top:calc(50% - 4px);left:-4px;transform:rotate(-135deg)}.bimdata-tooltip__tooltip--bottom[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--bottom[data-v-4b5d635b]{top:calc(100% + 8px);left:50%;transform:translateX(-50%)}.bimdata-tooltip__tooltip--bottom[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--bottom[data-v-4b5d635b]::before{top:-4px;left:calc(50% - 4px);transform:rotate(-45deg)}.bimdata-tooltip__tooltip--left[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--right[data-v-4b5d635b]{top:50%;left:-8px;transform:translateX(-100%) translateY(-50%)}.bimdata-tooltip__tooltip--left[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--right[data-v-4b5d635b]::before{top:calc(50% - 4px);left:calc(100% - 4px);transform:rotate(45deg)}.bimdata-tooltip__tooltip--white[data-v-4b5d635b]{background-color:var(--color-white);color:var(--color-primary)}.bimdata-tooltip__tooltip--white[data-v-4b5d635b]::before{border-color:var(--color-white) transparent transparent}.bimdata-tooltip__tooltip--primary[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--primary[data-v-4b5d635b]{background-color:var(--color-primary);color:var(--color-white)}.bimdata-tooltip__tooltip--primary[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--primary[data-v-4b5d635b]::before{border-color:var(--color-primary) transparent transparent}.bimdata-tooltip__tooltip--secondary[data-v-4b5d635b]{background-color:#f9c72c;color:#2f374a}.bimdata-tooltip__tooltip--secondary[data-v-4b5d635b]::before{border-color:var(--color-secondary) transparent transparent}.bimdata-tooltip__tooltip--granite-light[data-v-4b5d635b],.bimdata-tooltip__tooltip.bimdata-tooltip--grey[data-v-4b5d635b]{background-color:var(--color-granite-light);color:var(--color-white)}.bimdata-tooltip__tooltip--granite-light[data-v-4b5d635b]::before,.bimdata-tooltip__tooltip.bimdata-tooltip--grey[data-v-4b5d635b]::before{border-color:var(--color-granite-light) transparent transparent}.bimdata-tooltip__tooltip--silver-light[data-v-4b5d635b]{background-color:var(--color-silver-light);color:var(--color-primary)}.bimdata-tooltip__tooltip--silver-light[data-v-4b5d635b]::before{border-color:var(--color-silver-light) transparent transparent}.bimdata-tooltip__tooltip--success[data-v-4b5d635b]{background-color:var(--color-success);color:var(--color-white)}.bimdata-tooltip__tooltip--success[data-v-4b5d635b]::before{border-color:var(--color-success) transparent transparent}.bimdata-tooltip__tooltip--warning[data-v-4b5d635b]{background-color:var(--color-warning);color:var(--color-white)}.bimdata-tooltip__tooltip--warning[data-v-4b5d635b]::before{border-color:var(--color-warning) transparent transparent}.bimdata-tooltip__tooltip--high[data-v-4b5d635b]{background-color:var(--color-high);color:var(--color-white)}.bimdata-tooltip__tooltip--high[data-v-4b5d635b]::before{border-color:var(--color-high) transparent transparent}', map: void 0, media: void 0 });
|
|
2691
|
+
}, t$2, "data-v-4b5d635b", false, void 0, false, r$2, void 0, void 0);
|
|
2692
|
+
var render$b = function() {
|
|
2639
2693
|
var _vm = this;
|
|
2640
2694
|
var _h = _vm.$createElement;
|
|
2641
2695
|
var _c = _vm._self._c || _h;
|
|
@@ -2645,27 +2699,24 @@ var render$a = function() {
|
|
|
2645
2699
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xs", "fill": "", "color": "high" } })], 1)], 1);
|
|
2646
2700
|
}), 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);
|
|
2647
2701
|
};
|
|
2648
|
-
var staticRenderFns$
|
|
2649
|
-
var
|
|
2650
|
-
const __vue2_script$
|
|
2702
|
+
var staticRenderFns$b = [];
|
|
2703
|
+
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 = "";
|
|
2704
|
+
const __vue2_script$b = {
|
|
2651
2705
|
components: {
|
|
2652
2706
|
BIMDataButton: c$5,
|
|
2653
2707
|
BIMDataIcon: s$9
|
|
2654
2708
|
},
|
|
2655
2709
|
props: {
|
|
2656
|
-
|
|
2657
|
-
type:
|
|
2710
|
+
viewpoints: {
|
|
2711
|
+
type: Array,
|
|
2712
|
+
default: () => []
|
|
2658
2713
|
}
|
|
2659
2714
|
},
|
|
2660
2715
|
emits: [
|
|
2661
|
-
"add-
|
|
2716
|
+
"add-viewpoint",
|
|
2662
2717
|
"delete-viewpoint"
|
|
2663
2718
|
],
|
|
2664
|
-
setup(
|
|
2665
|
-
const viewpoints = ref([]);
|
|
2666
|
-
watch(() => props.bcfTopic, (topic) => {
|
|
2667
|
-
viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
|
|
2668
|
-
}, { immediate: true });
|
|
2719
|
+
setup(_, { emit }) {
|
|
2669
2720
|
const addImage = (event) => {
|
|
2670
2721
|
[...event.target.files].forEach((file) => {
|
|
2671
2722
|
const reader = new FileReader();
|
|
@@ -2676,35 +2727,31 @@ const __vue2_script$a = {
|
|
|
2676
2727
|
snapshot_data: reader.result
|
|
2677
2728
|
}
|
|
2678
2729
|
};
|
|
2679
|
-
|
|
2680
|
-
emit("add-image", viewpoint);
|
|
2730
|
+
emit("add-viewpoint", viewpoint);
|
|
2681
2731
|
});
|
|
2682
2732
|
reader.readAsDataURL(file);
|
|
2683
2733
|
});
|
|
2684
2734
|
};
|
|
2685
2735
|
const deleteViewpoint2 = (viewpoint) => {
|
|
2686
|
-
let index = viewpoints.value.indexOf(viewpoint);
|
|
2687
|
-
viewpoints.value.splice(index, 1);
|
|
2688
2736
|
emit("delete-viewpoint", viewpoint);
|
|
2689
2737
|
};
|
|
2690
2738
|
return {
|
|
2691
|
-
viewpoints,
|
|
2692
2739
|
addImage,
|
|
2693
2740
|
deleteViewpoint: deleteViewpoint2
|
|
2694
2741
|
};
|
|
2695
2742
|
}
|
|
2696
2743
|
};
|
|
2697
|
-
const __cssModules$
|
|
2698
|
-
var __component__$
|
|
2699
|
-
function __vue2_injectStyles$
|
|
2700
|
-
for (let o2 in __cssModules$
|
|
2701
|
-
this[o2] = __cssModules$
|
|
2744
|
+
const __cssModules$b = {};
|
|
2745
|
+
var __component__$b = /* @__PURE__ */ normalizeComponent(__vue2_script$b, render$b, staticRenderFns$b, false, __vue2_injectStyles$b, "46dea43b", null, null);
|
|
2746
|
+
function __vue2_injectStyles$b(context) {
|
|
2747
|
+
for (let o2 in __cssModules$b) {
|
|
2748
|
+
this[o2] = __cssModules$b[o2];
|
|
2702
2749
|
}
|
|
2703
2750
|
}
|
|
2704
2751
|
var BcfTopicImages = /* @__PURE__ */ function() {
|
|
2705
|
-
return __component__$
|
|
2752
|
+
return __component__$b.exports;
|
|
2706
2753
|
}();
|
|
2707
|
-
var render$
|
|
2754
|
+
var render$a = function() {
|
|
2708
2755
|
var _vm = this;
|
|
2709
2756
|
var _h = _vm.$createElement;
|
|
2710
2757
|
var _c = _vm._self._c || _h;
|
|
@@ -2714,36 +2761,30 @@ var render$9 = function() {
|
|
|
2714
2761
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xs", "fill": "", "color": "high" } })], 1)], 1);
|
|
2715
2762
|
}), 0)] : [_c("div", { staticClass: "bcf-topic-snapshots__create", on: { "click": _vm.takeSnapshots } }, [_c("BIMDataIcon", { attrs: { "name": "camera", "size": "xl" } })], 1)]], 2);
|
|
2716
2763
|
};
|
|
2717
|
-
var staticRenderFns$
|
|
2718
|
-
var
|
|
2719
|
-
const __vue2_script$
|
|
2764
|
+
var staticRenderFns$a = [];
|
|
2765
|
+
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 = "";
|
|
2766
|
+
const __vue2_script$a = {
|
|
2720
2767
|
components: {
|
|
2721
2768
|
BIMDataButton: c$5,
|
|
2722
2769
|
BIMDataIcon: s$9
|
|
2723
2770
|
},
|
|
2724
2771
|
props: {
|
|
2725
|
-
|
|
2726
|
-
type:
|
|
2772
|
+
viewpoints: {
|
|
2773
|
+
type: Array,
|
|
2774
|
+
default: () => []
|
|
2727
2775
|
}
|
|
2728
2776
|
},
|
|
2729
2777
|
emits: [
|
|
2730
2778
|
"add-viewpoint",
|
|
2731
2779
|
"delete-viewpoint"
|
|
2732
2780
|
],
|
|
2733
|
-
setup(
|
|
2781
|
+
setup(_, { emit }) {
|
|
2734
2782
|
const getViewers = inject("getViewers", () => {
|
|
2735
2783
|
});
|
|
2736
|
-
const viewpoints = ref([]);
|
|
2737
|
-
watch(() => props.bcfTopic, (topic) => {
|
|
2738
|
-
viewpoints.value = ((topic == null ? void 0 : topic.viewpoints) || []).filter((v2) => v2.snapshot);
|
|
2739
|
-
}, { immediate: true });
|
|
2740
2784
|
const addViewpoint = (viewpoint) => {
|
|
2741
|
-
viewpoints.value.push(viewpoint);
|
|
2742
2785
|
emit("add-viewpoint", viewpoint);
|
|
2743
2786
|
};
|
|
2744
2787
|
const deleteViewpoint2 = (viewpoint) => {
|
|
2745
|
-
let index = viewpoints.value.indexOf(viewpoint);
|
|
2746
|
-
viewpoints.value.splice(index, 1);
|
|
2747
2788
|
emit("delete-viewpoint", viewpoint);
|
|
2748
2789
|
};
|
|
2749
2790
|
const takeSnapshots = async () => {
|
|
@@ -2754,31 +2795,30 @@ const __vue2_script$9 = {
|
|
|
2754
2795
|
});
|
|
2755
2796
|
};
|
|
2756
2797
|
return {
|
|
2757
|
-
viewpoints,
|
|
2758
2798
|
deleteViewpoint: deleteViewpoint2,
|
|
2759
2799
|
takeSnapshots
|
|
2760
2800
|
};
|
|
2761
2801
|
}
|
|
2762
2802
|
};
|
|
2763
|
-
const __cssModules$
|
|
2764
|
-
var __component__$
|
|
2765
|
-
function __vue2_injectStyles$
|
|
2766
|
-
for (let o2 in __cssModules$
|
|
2767
|
-
this[o2] = __cssModules$
|
|
2803
|
+
const __cssModules$a = {};
|
|
2804
|
+
var __component__$a = /* @__PURE__ */ normalizeComponent(__vue2_script$a, render$a, staticRenderFns$a, false, __vue2_injectStyles$a, "c37bec74", null, null);
|
|
2805
|
+
function __vue2_injectStyles$a(context) {
|
|
2806
|
+
for (let o2 in __cssModules$a) {
|
|
2807
|
+
this[o2] = __cssModules$a[o2];
|
|
2768
2808
|
}
|
|
2769
2809
|
}
|
|
2770
2810
|
var BcfTopicSnapshots = /* @__PURE__ */ function() {
|
|
2771
|
-
return __component__$
|
|
2811
|
+
return __component__$a.exports;
|
|
2772
2812
|
}();
|
|
2773
|
-
var render$
|
|
2813
|
+
var render$9 = function() {
|
|
2774
2814
|
var _vm = this;
|
|
2775
2815
|
var _h = _vm.$createElement;
|
|
2776
2816
|
var _c = _vm._self._c || _h;
|
|
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: { "
|
|
2778
|
-
return _vm.$emit("add-
|
|
2779
|
-
} } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }),
|
|
2780
|
-
return _vm.$emit("add-
|
|
2781
|
-
} } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }),
|
|
2817
|
+
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: { "viewpoints": _vm.viewpointsToDisplay }, 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) {
|
|
2818
|
+
return _vm.$emit("add-components", _vm.bcfTopic);
|
|
2819
|
+
} } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }), _c("span", [_vm._v(_vm._s(_vm.$t("BcfComponents.BcfTopicForm.addObjectButton")))])], 1), _c("BIMDataTooltip", { attrs: { "disabled": _vm.viewpointsToDisplay.length > 0, "text": _vm.$t("BcfComponents.BcfTopicForm.annotationButtonTooltip"), "color": "granite-light" } }, [_c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "", "disabled": _vm.viewpointsToDisplay.length === 0 }, on: { "click": function($event) {
|
|
2820
|
+
return _vm.$emit("add-pins", _vm.bcfTopic);
|
|
2821
|
+
} } }, [_c("BIMDataIcon", { attrs: { "name": "plus", "size": "xxxs", "margin": "0 6px 0 0" } }), _c("span", [_vm._v(_vm._s(_vm.$t("BcfComponents.BcfTopicForm.addAnnotationButton")))])], 1)], 1)], 1)] : [_c("BcfTopicImages", { attrs: { "viewpoints": _vm.viewpointsToDisplay }, on: { "add-viewpoint": _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) {
|
|
2782
2822
|
if (!$event.type.indexOf("key") && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
|
|
2783
2823
|
return null;
|
|
2784
2824
|
}
|
|
@@ -2812,20 +2852,21 @@ var render$8 = function() {
|
|
|
2812
2852
|
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicForm.continueButton")) + " ")])];
|
|
2813
2853
|
}, proxy: true }], null, false, 3660211068) }) : _vm._e()], 1);
|
|
2814
2854
|
};
|
|
2815
|
-
var staticRenderFns$
|
|
2816
|
-
var
|
|
2817
|
-
const __vue2_script$
|
|
2855
|
+
var staticRenderFns$9 = [];
|
|
2856
|
+
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 = "";
|
|
2857
|
+
const __vue2_script$9 = {
|
|
2818
2858
|
components: {
|
|
2819
2859
|
BcfTopicImages,
|
|
2820
2860
|
BcfTopicSnapshots,
|
|
2821
2861
|
BIMDataButton: c$5,
|
|
2822
2862
|
BIMDataIcon: s$9,
|
|
2823
2863
|
BIMDataInput: s$8,
|
|
2824
|
-
BIMDataLoading: a$
|
|
2864
|
+
BIMDataLoading: a$4,
|
|
2825
2865
|
BIMDataSafeZoneModal: C,
|
|
2826
2866
|
BIMDataSelect: g$3,
|
|
2827
2867
|
BIMDataTextarea: s$2,
|
|
2828
|
-
BIMDataTextbox: l$
|
|
2868
|
+
BIMDataTextbox: l$3,
|
|
2869
|
+
BIMDataTooltip: l$2
|
|
2829
2870
|
},
|
|
2830
2871
|
props: {
|
|
2831
2872
|
viewerMode: {
|
|
@@ -2836,6 +2877,10 @@ const __vue2_script$8 = {
|
|
|
2836
2877
|
type: Object,
|
|
2837
2878
|
required: true
|
|
2838
2879
|
},
|
|
2880
|
+
extensions: {
|
|
2881
|
+
type: Object,
|
|
2882
|
+
reuiqred: true
|
|
2883
|
+
},
|
|
2839
2884
|
bcfTopics: {
|
|
2840
2885
|
type: Array,
|
|
2841
2886
|
required: true
|
|
@@ -2852,15 +2897,11 @@ const __vue2_script$8 = {
|
|
|
2852
2897
|
},
|
|
2853
2898
|
providedPins: {
|
|
2854
2899
|
type: Array
|
|
2855
|
-
},
|
|
2856
|
-
extensions: {
|
|
2857
|
-
type: Object,
|
|
2858
|
-
reuiqred: true
|
|
2859
2900
|
}
|
|
2860
2901
|
},
|
|
2861
2902
|
emits: [
|
|
2862
|
-
"add-
|
|
2863
|
-
"add-
|
|
2903
|
+
"add-components",
|
|
2904
|
+
"add-pins",
|
|
2864
2905
|
"bcf-topic-created",
|
|
2865
2906
|
"bcf-topic-updated",
|
|
2866
2907
|
"close"
|
|
@@ -2887,6 +2928,7 @@ const __vue2_script$8 = {
|
|
|
2887
2928
|
const viewpointsToCreate = ref([]);
|
|
2888
2929
|
const viewpointsToUpdate = ref([]);
|
|
2889
2930
|
const viewpointsToDelete = ref([]);
|
|
2931
|
+
const viewpointsToDisplay = computed(() => viewpoints.value.concat(viewpointsToCreate.value).filter((v2) => !viewpointsToDelete.value.some((x) => x.guid === v2.guid)).filter((v2) => v2.snapshot));
|
|
2890
2932
|
const loading = ref(false);
|
|
2891
2933
|
const isOpenModal = ref(false);
|
|
2892
2934
|
const hasErrorTitle = ref(false);
|
|
@@ -2916,6 +2958,9 @@ const __vue2_script$8 = {
|
|
|
2916
2958
|
topicDescription.value = "";
|
|
2917
2959
|
topicLabels.value = [];
|
|
2918
2960
|
viewpoints.value = [];
|
|
2961
|
+
viewpointsToCreate.value = [];
|
|
2962
|
+
viewpointsToUpdate.value = [];
|
|
2963
|
+
viewpointsToDelete.value = [];
|
|
2919
2964
|
loading.value = false;
|
|
2920
2965
|
isOpenModal.value = false;
|
|
2921
2966
|
hasErrorTitle.value = false;
|
|
@@ -2946,8 +2991,14 @@ const __vue2_script$8 = {
|
|
|
2946
2991
|
loading.value = true;
|
|
2947
2992
|
viewpointsToUpdate.value = viewpoints.value.map((viewpoint) => __spreadProps(__spreadValues({}, viewpoint), { snapshot: void 0 }));
|
|
2948
2993
|
if (props.providedComponents) {
|
|
2949
|
-
viewpointsToUpdate.value.
|
|
2950
|
-
|
|
2994
|
+
if (viewpointsToUpdate.value.length > 0 || viewpointsToCreate.value.length > 0) {
|
|
2995
|
+
viewpointsToUpdate.value.forEach((viewpoint) => viewpoint.components = props.providedComponents);
|
|
2996
|
+
viewpointsToCreate.value.forEach((viewpoint) => viewpoint.components = props.providedComponents);
|
|
2997
|
+
} else {
|
|
2998
|
+
viewpointsToCreate.value.push({
|
|
2999
|
+
components: props.providedComponents
|
|
3000
|
+
});
|
|
3001
|
+
}
|
|
2951
3002
|
}
|
|
2952
3003
|
if (props.providedPins) {
|
|
2953
3004
|
viewpointsToUpdate.value.forEach((viewpoint) => viewpoint.pins = props.providedPins);
|
|
@@ -3001,23 +3052,22 @@ const __vue2_script$8 = {
|
|
|
3001
3052
|
topicLabels,
|
|
3002
3053
|
topicTitle,
|
|
3003
3054
|
topicType,
|
|
3004
|
-
|
|
3005
|
-
viewpointsToCreate,
|
|
3055
|
+
viewpointsToDisplay,
|
|
3006
3056
|
addViewpoint,
|
|
3007
3057
|
delViewpoint,
|
|
3008
3058
|
submit
|
|
3009
3059
|
};
|
|
3010
3060
|
}
|
|
3011
3061
|
};
|
|
3012
|
-
const __cssModules$
|
|
3013
|
-
var __component__$
|
|
3014
|
-
function __vue2_injectStyles$
|
|
3015
|
-
for (let o2 in __cssModules$
|
|
3016
|
-
this[o2] = __cssModules$
|
|
3062
|
+
const __cssModules$9 = {};
|
|
3063
|
+
var __component__$9 = /* @__PURE__ */ normalizeComponent(__vue2_script$9, render$9, staticRenderFns$9, false, __vue2_injectStyles$9, "0eb06ab0", null, null);
|
|
3064
|
+
function __vue2_injectStyles$9(context) {
|
|
3065
|
+
for (let o2 in __cssModules$9) {
|
|
3066
|
+
this[o2] = __cssModules$9[o2];
|
|
3017
3067
|
}
|
|
3018
3068
|
}
|
|
3019
3069
|
var BcfTopicForm = /* @__PURE__ */ function() {
|
|
3020
|
-
return __component__$
|
|
3070
|
+
return __component__$9.exports;
|
|
3021
3071
|
}();
|
|
3022
3072
|
var e$1 = Object.freeze(["default", "primary", "secondary", "high", "success", "granite"]), t$1 = { 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: (t2) => e$1.includes(t2) } }, emits: ["click"], computed: { classes() {
|
|
3023
3073
|
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 };
|
|
@@ -3125,7 +3175,7 @@ var s$1 = { addFile: r$1({ render: function() {
|
|
|
3125
3175
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M17.9401 2.0909H18.9856C20.1356 2.0909 21.0765 3.03181 21.0765 4.1818V20.909C21.0765 22.059 20.1356 22.9999 18.9856 22.9999H2.25838C1.10839 22.9999 0.16748 22.059 0.16748 20.909V4.1818C0.16748 3.03181 1.10839 2.0909 2.25838 2.0909H3.30383V0H5.39473V2.0909H15.8492V0H17.9401V2.0909ZM2.25838 20.909H18.9856V7.31815H2.25838V20.909ZM8.77371 8.57203H3.50813V13.8376H8.77371V8.57203Z" } });
|
|
3126
3176
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), caliper: r$1({ render: function() {
|
|
3127
3177
|
var e2 = this.$createElement;
|
|
3128
|
-
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.4094 6.03868C15.7162\
|
|
3178
|
+
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.4094 6.03868C15.7162\n 5.46323 15.8901 4.80619 15.8901 4.10853C15.8901 1.83945 14.0507 0 11.7816\n 0C9.51251 0 7.67306 1.83945 7.67306 4.10853C7.67306 4.80469 7.84621 5.46041\n 8.15178 6.03497L4.91762 12.3967C4.36198 11.8537 3.87187 11.2459 3.4583\n 10.5855C3.13751 10.0733 2.4887 9.83995 1.944 10.1018C1.39931 10.3636 1.16579\n 11.0206 1.47611 11.5392C2.12429 12.6225 2.93847 13.5955 3.88741\n 14.4232L1.00004 20.1028L1.62696 23L4.33716 21.7993L7.07177 16.4202C8.55075\n 17.0507 10.1475 17.3804 11.7682 17.3822C14.028 17.3848 16.2426 16.7497 18.1576\n 15.5499C19.7626 14.5444 21.1025 13.1765 22.0733 11.5622C22.3848 11.0443\n 22.1527 10.3868 21.6086 10.1237C21.0645 9.86066 20.4152 10.0926 20.0933\n 10.6041C19.6815 11.2583 19.1944 11.8607 18.643 12.3992L15.4094\n 6.03868ZM12.3008 8.18457C12.1307 8.20601 11.9574 8.21706 11.7816\n 8.21706C11.6045 8.21706 11.43 8.20585 11.2588 8.18411L8.06635 14.4638C9.23735\n 14.9423 10.4949 15.1922 11.7706 15.1936C13.0526 15.1951 14.3167 14.9456\n 15.4936 14.4651L12.3008 8.18457ZM11.7816 5.92554C10.7781 5.92554 9.96458\n 5.11204 9.96458 4.10853C9.96458 3.10502 10.7781 2.29152 11.7816\n 2.29152C12.7851 2.29152 13.5986 3.10502 13.5986 4.10853C13.5986 5.11204\n 12.7851 5.92554 11.7816 5.92554ZM19.2221 21.7991L17.2609 17.9415C18.0623\n 17.6222 18.8367 17.2302 19.574 16.7683C19.9026 16.5625 20.2218 16.344 20.5312\n 16.1135L22.5592 20.1026L21.9323 22.9998L19.2221 21.7991Z" } });
|
|
3129
3179
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), camera: r$1({ render: function() {
|
|
3130
3180
|
var e2 = this.$createElement;
|
|
3131
3181
|
return (this._self._c || e2)("path", { attrs: { d: "M3.91781 5.21572V2.51572H5.71781V5.21572H8.41781V7.01572H5.71781V9.71572H3.91781V7.01572H1.31781V5.21572H3.91781ZM6.61781 10.6157V7.91572H9.31781V5.21572H15.5178L17.1178 7.01572H20.0178C21.0178 7.01572 21.8178 7.81572 21.8178 8.81572V19.5157C21.8178 20.5157 21.0178 21.3157 20.0178 21.3157H5.71781C4.71781 21.3157 3.91781 20.5157 3.91781 19.5157V10.6157H6.61781ZM12.8178 18.6157C15.3178 18.6157 17.3178 16.6157 17.3178 14.1157C17.3178 11.6157 15.3178 9.61572 12.8178 9.61572C10.3178 9.61572 8.31781 11.6157 8.31781 14.1157C8.31781 16.6157 10.4178 18.6157 12.8178 18.6157ZM10.0178 14.1157C10.0178 15.7157 11.3178 17.0157 12.9178 17.0157C14.5178 17.0157 15.8178 15.7157 15.8178 14.1157C15.8178 12.5157 14.5178 11.2157 12.9178 11.2157C11.3178 11.2157 10.0178 12.6157 10.0178 14.1157Z" } });
|
|
@@ -3185,7 +3235,7 @@ var s$1 = { addFile: r$1({ render: function() {
|
|
|
3185
3235
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M12.0537 2.3513C13.0902 0.62498 15.3654 0.0220922 17.1354 1.00471C18.9054 1.98733 19.5 4.18337 18.4634 5.90969L16.1842 9.70566C15.4582 10.9147 14.1248 11.5727 12.7828 11.5209L12.4773 12.0501L9.7249 10.461L9.95854 10.0563C9.13259 8.94749 9.01038 7.41978 9.77444 6.14727L12.0537 2.3513ZM14.1171 8.70055C14.0903 8.18061 13.8088 7.68435 13.3244 7.40465C12.8068 7.1058 12.1909 7.13127 11.7121 7.418C11.7404 7.25105 11.8 7.08589 11.8931 6.93041L13.8155 3.71728C14.2238 3.03482 15.121 2.79704 15.8195 3.1862C16.518 3.57535 16.7532 4.44406 16.3449 5.12652L14.4225 8.33965C14.3391 8.47901 14.2354 8.59983 14.1171 8.70055ZM5.6974 13.3607C6.42334 12.1517 7.7568 11.4937 9.09878 11.5455L9.3791 11.0599L12.1315 12.649L11.923 13.01C12.749 14.1189 12.8712 15.6466 12.1071 16.9191L9.8279 20.7151C8.79136 22.4414 6.5162 23.0443 4.7462 22.0617C2.9762 21.0791 2.38162 18.883 3.41816 17.1567L5.6974 13.3607ZM7.45903 14.7267C7.54241 14.5874 7.64618 14.4665 7.76448 14.3658C7.79126 14.8858 8.07272 15.382 8.55717 15.6617C9.07479 15.9606 9.69066 15.9351 10.1695 15.6484C10.1411 15.8153 10.0815 15.9805 9.98848 16.136L8.06607 19.3491C7.65775 20.0316 6.76051 20.2693 6.06202 19.8802C5.36354 19.491 5.1283 18.6223 5.53662 17.9398L7.45903 14.7267ZM17.7429 16.2934L18.5331 14.9246L14.7161 13.6334L17.7429 16.2934ZM15.9264 17.7095L14.3998 18.1185L14.1404 14.0974L15.9264 17.7095ZM18.5467 12.5879L18.1376 11.0613L14.5255 12.8473L18.5467 12.5879ZM3.85241 8.07499L4.70693 6.7454L7.60365 9.54648L3.85241 8.07499ZM8.13313 5.08147L6.58873 5.4174L8.20076 9.11043L8.13313 5.08147ZM4.0636 11.9528L3.72767 10.4084L7.75663 10.3408L4.0636 11.9528Z" } });
|
|
3186
3236
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), distance: r$1({ render: function() {
|
|
3187
3237
|
var e2 = this.$createElement, t2 = this._self._c || e2;
|
|
3188
|
-
return t2("g", [t2("rect", { attrs: { y: "6.24689", width: "23", height: "17.7429" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.28571 0.989746L0 2.96117L3.28571 4.9326L3.28571 0.989746ZM20.3714 4.9326L23 2.96117L20.3714 0.989746V4.9326Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.3715\n
|
|
3238
|
+
return t2("g", [t2("rect", { attrs: { y: "6.24689", width: "23", height: "17.7429" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.28571 0.989746L0 2.96117L3.28571 4.9326L3.28571 0.989746ZM20.3714 4.9326L23 2.96117L20.3714 0.989746V4.9326Z" } }), this._v(" "), t2("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20.3715\n 3.6183H2.6286V2.30402H20.3715V3.6183Z" } })]);
|
|
3189
3239
|
}, staticRenderFns: [] }, void 0, {}, void 0, false, void 0, false, void 0, void 0, void 0), doubleChevron: r$1({ render: function() {
|
|
3190
3240
|
var e2 = this.$createElement;
|
|
3191
3241
|
return (this._self._c || e2)("path", { attrs: { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M1.05119 2.47105C0.982285 2.39544 0.982285 2.27217 1.05119 2.19676L3.00683 0.0565512C3.07573 -0.0188504 3.18857 -0.0188504 3.25748 0.0565512L13.5625 11.3331C13.5796 11.3518 13.5925 11.3736 13.6012 11.3968C13.6665 11.4724 13.6658 11.5928 13.598 11.667L3.29296 22.9433C3.22406 23.0189 3.11122 23.0189 3.04231 22.9433L1.08668 20.8033C1.01758 20.7279 1.01758 20.6044 1.08668 20.529L9.32003 11.5192L1.05119 2.47105ZM10.2512 2.47105C10.1823 2.39544 10.1823 2.27217 10.2512 2.19676L12.2068 0.0565512C12.2757 -0.0188504 12.3886 -0.0188504 12.4575 0.0565512L22.7625 11.3331C22.7796 11.3518 22.7925 11.3736 22.8012 11.3968C22.8665 11.4724 22.8658 11.5928 22.798 11.667L12.493 22.9433C12.4241 23.0189 12.3112 23.0189 12.2423 22.9433L10.2867 20.8033C10.2176 20.7279 10.2176 20.6044 10.2867 20.529L18.52 11.5192L10.2512 2.47105Z" } });
|
|
@@ -3511,7 +3561,7 @@ const c$1 = r$1({ render: function() {
|
|
|
3511
3561
|
this.maxIndex = t2.length - d2, this.translations = s2;
|
|
3512
3562
|
}
|
|
3513
3563
|
} } }, "data-v-55e9fb46", false, void 0, false, o$1, void 0, void 0);
|
|
3514
|
-
var render$
|
|
3564
|
+
var render$8 = function() {
|
|
3515
3565
|
var _vm = this;
|
|
3516
3566
|
var _h = _vm.$createElement;
|
|
3517
3567
|
var _c = _vm._self._c || _h;
|
|
@@ -3519,11 +3569,11 @@ var render$7 = function() {
|
|
|
3519
3569
|
width: _vm.size + "px",
|
|
3520
3570
|
height: _vm.size + "px",
|
|
3521
3571
|
fontSize: (_vm.initialsSize ? _vm.initialsSize : +_vm.size * 0.382) + "px"
|
|
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": "
|
|
3572
|
+
} }, [_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": "xs" } })]], 2);
|
|
3523
3573
|
};
|
|
3524
|
-
var staticRenderFns$
|
|
3525
|
-
var
|
|
3526
|
-
const __vue2_script$
|
|
3574
|
+
var staticRenderFns$8 = [];
|
|
3575
|
+
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 = "";
|
|
3576
|
+
const __vue2_script$8 = {
|
|
3527
3577
|
props: {
|
|
3528
3578
|
user: {
|
|
3529
3579
|
type: Object,
|
|
@@ -3550,37 +3600,35 @@ const __vue2_script$7 = {
|
|
|
3550
3600
|
};
|
|
3551
3601
|
}
|
|
3552
3602
|
};
|
|
3553
|
-
const __cssModules$
|
|
3554
|
-
var __component__$
|
|
3555
|
-
function __vue2_injectStyles$
|
|
3556
|
-
for (let o2 in __cssModules$
|
|
3557
|
-
this[o2] = __cssModules$
|
|
3603
|
+
const __cssModules$8 = {};
|
|
3604
|
+
var __component__$8 = /* @__PURE__ */ normalizeComponent(__vue2_script$8, render$8, staticRenderFns$8, false, __vue2_injectStyles$8, "e5e255f0", null, null);
|
|
3605
|
+
function __vue2_injectStyles$8(context) {
|
|
3606
|
+
for (let o2 in __cssModules$8) {
|
|
3607
|
+
this[o2] = __cssModules$8[o2];
|
|
3558
3608
|
}
|
|
3559
3609
|
}
|
|
3560
3610
|
var UserAvatar = /* @__PURE__ */ function() {
|
|
3561
|
-
return __component__$
|
|
3611
|
+
return __component__$8.exports;
|
|
3562
3612
|
}();
|
|
3563
|
-
var render$
|
|
3613
|
+
var render$7 = function() {
|
|
3564
3614
|
var _vm = this;
|
|
3565
3615
|
var _h = _vm.$createElement;
|
|
3566
3616
|
var _c = _vm._self._c || _h;
|
|
3567
|
-
return _c("div", { staticClass: "topic-comment" }, [_c("div", { staticClass: "topic-comment__header flex items-center justify-between" }, [_c("div", { staticClass: "topic-comment__header__left flex items-center" }, [_vm.comment.user ? _c("UserAvatar", { staticClass: "m-r-12", staticStyle: { "box-shadow": "var(--box-shadow)" }, attrs: { "user": _vm.comment.user, "size": "27", "initialsSize": "14", "color": "silver-light" } }) : _c("span", { staticClass: "topic-comment__header__left__user flex items-center justify-center m-r-12" }, [_c("BIMDataIcon", { attrs: { "name": "user", "size": "xxs", "fill": "", "color": "granite" } })], 1), _c("BIMDataTextbox", { attrs: { "width": "auto", "maxWidth": "150px", "cutPosition": "end", "text": _vm.comment.author } }), _c("span", { staticClass: "color-granite m-x-6" }, [_vm._v(" \u2022 ")]), _c("span", { staticClass: "color-granite" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.comment.date, "long")) + " ")])], 1), _c("div", { staticClass: "topic-comment__header__right" }, [_c("div", { staticClass: "topic-comment__header__right__actions flex" }, [_vm.showMenu ? [_c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.onOpenEdit } }, [_c("BIMDataIcon", { attrs: { "name": "edit", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.onOpenDelete } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.toggleMenu } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e(), _vm.isEditing ? [_c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
|
|
3568
|
-
_vm.isEditing = false;
|
|
3569
|
-
} } }, [_c("BIMDataIcon", { attrs: { "name": "undo", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.submitUpdate } }, [_c("BIMDataIcon", { attrs: { "name": "validate", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e()], 2), _vm.isDeleting ? _c("div", { staticClass: "topic-comment__header__right__delete p-x-12" }, [_c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.deleteCommentText")) + " ")]), _c("div", { staticClass: "flex items-center" }, [_c("BIMDataButton", { staticClass: "m-r-6", attrs: { "color": "high", "fill": "", "radius": "" }, on: { "click": _vm.submitDelete } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.deleteButton")) + " ")]), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
|
|
3617
|
+
return _c("div", { staticClass: "topic-comment" }, [_c("div", { staticClass: "topic-comment__header flex items-center justify-between" }, [_c("div", { staticClass: "topic-comment__header__left flex items-center" }, [_vm.comment.user ? _c("UserAvatar", { staticClass: "m-r-12", staticStyle: { "box-shadow": "var(--box-shadow)" }, attrs: { "user": _vm.comment.user, "size": "27", "initialsSize": "14", "color": "silver-light" } }) : _c("span", { staticClass: "topic-comment__header__left__user flex items-center justify-center m-r-12" }, [_c("BIMDataIcon", { attrs: { "name": "user", "size": "xxs", "fill": "", "color": "granite" } })], 1), _c("BIMDataTextbox", { attrs: { "width": "auto", "maxWidth": "150px", "cutPosition": "end", "text": _vm.comment.author } }), _c("span", { staticClass: "color-granite m-x-6" }, [_vm._v(" \u2022 ")]), _c("span", { staticClass: "color-granite" }, [_vm._v(" " + _vm._s(_vm.$d(_vm.comment.date, "long")) + " ")])], 1), _c("div", { staticClass: "topic-comment__header__right" }, [_c("div", { staticClass: "topic-comment__header__right__actions flex" }, [_vm.showMenu ? [_c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.onOpenEdit } }, [_c("BIMDataIcon", { attrs: { "name": "edit", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.onOpenDelete } }, [_c("BIMDataIcon", { attrs: { "name": "delete", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.toggleMenu } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e(), _vm.isEditing ? [_c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.cancelUpdate } }, [_c("BIMDataIcon", { attrs: { "name": "undo", "size": "xxs", "fill": "", "color": "granite-light" } })], 1), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": _vm.submitUpdate } }, [_c("BIMDataIcon", { attrs: { "name": "validate", "size": "xxs", "fill": "", "color": "granite-light" } })], 1)] : _vm._e()], 2), _vm.isDeleting ? _c("div", { staticClass: "topic-comment__header__right__delete p-x-12" }, [_c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.deleteCommentText")) + " ")]), _c("div", { staticClass: "flex items-center" }, [_c("BIMDataButton", { staticClass: "m-r-6", attrs: { "color": "high", "fill": "", "radius": "" }, on: { "click": _vm.submitDelete } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicComments.deleteButton")) + " ")]), _c("BIMDataButton", { attrs: { "ghost": "", "rounded": "", "icon": "" }, on: { "click": function($event) {
|
|
3570
3618
|
_vm.isDeleting = false;
|
|
3571
3619
|
} } }, [_c("BIMDataIcon", { attrs: { "name": "close", "size": "xxs", "fill": "", "color": "primary" } })], 1)], 1)]) : _vm._e(), !_vm.showMenu && !_vm.isDeleting && !_vm.isEditing ? _c("BIMDataButton", { staticClass: "topic-comment__header__right__btn", attrs: { "rounded": "", "icon": "" }, on: { "click": _vm.toggleMenu } }, [_c("BIMDataIcon", { attrs: { "name": "ellipsis", "size": "l", "fill": "", "color": "granite-light" } })], 1) : _vm._e()], 1)]), _c("div", { staticClass: "topic-comment__content" }, [_c("BIMDataTextarea", { class: { editing: _vm.isEditing }, attrs: { "width": "100%", "rows": "1", "fitContent": "", "autofocus": "", "resizable": false, "readonly": !_vm.isEditing }, model: { value: _vm.text, callback: function($$v) {
|
|
3572
3620
|
_vm.text = $$v;
|
|
3573
3621
|
}, expression: "text" } })], 1), _vm.loading ? [_c("BIMDataLoading")] : _vm._e()], 2);
|
|
3574
3622
|
};
|
|
3575
|
-
var staticRenderFns$
|
|
3576
|
-
var
|
|
3577
|
-
const __vue2_script$
|
|
3623
|
+
var staticRenderFns$7 = [];
|
|
3624
|
+
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 = "";
|
|
3625
|
+
const __vue2_script$7 = {
|
|
3578
3626
|
components: {
|
|
3579
3627
|
BIMDataButton: c$5,
|
|
3580
3628
|
BIMDataIcon: s$9,
|
|
3581
|
-
BIMDataLoading: a$
|
|
3629
|
+
BIMDataLoading: a$4,
|
|
3582
3630
|
BIMDataTextarea: s$2,
|
|
3583
|
-
BIMDataTextbox: l$
|
|
3631
|
+
BIMDataTextbox: l$3,
|
|
3584
3632
|
UserAvatar
|
|
3585
3633
|
},
|
|
3586
3634
|
props: {
|
|
@@ -3613,6 +3661,10 @@ const __vue2_script$6 = {
|
|
|
3613
3661
|
isEditing.value = true;
|
|
3614
3662
|
closeMenu();
|
|
3615
3663
|
};
|
|
3664
|
+
const cancelUpdate = () => {
|
|
3665
|
+
isEditing.value = false;
|
|
3666
|
+
text.value = props.comment.comment;
|
|
3667
|
+
};
|
|
3616
3668
|
const submitUpdate = async () => {
|
|
3617
3669
|
if (props.comment.comment !== text.value) {
|
|
3618
3670
|
try {
|
|
@@ -3646,6 +3698,7 @@ const __vue2_script$6 = {
|
|
|
3646
3698
|
isEditing,
|
|
3647
3699
|
loading,
|
|
3648
3700
|
showMenu,
|
|
3701
|
+
cancelUpdate,
|
|
3649
3702
|
closeMenu,
|
|
3650
3703
|
onOpenDelete,
|
|
3651
3704
|
onOpenEdit,
|
|
@@ -3655,17 +3708,17 @@ const __vue2_script$6 = {
|
|
|
3655
3708
|
};
|
|
3656
3709
|
}
|
|
3657
3710
|
};
|
|
3658
|
-
const __cssModules$
|
|
3659
|
-
var __component__$
|
|
3660
|
-
function __vue2_injectStyles$
|
|
3661
|
-
for (let o2 in __cssModules$
|
|
3662
|
-
this[o2] = __cssModules$
|
|
3711
|
+
const __cssModules$7 = {};
|
|
3712
|
+
var __component__$7 = /* @__PURE__ */ normalizeComponent(__vue2_script$7, render$7, staticRenderFns$7, false, __vue2_injectStyles$7, "47f184d0", null, null);
|
|
3713
|
+
function __vue2_injectStyles$7(context) {
|
|
3714
|
+
for (let o2 in __cssModules$7) {
|
|
3715
|
+
this[o2] = __cssModules$7[o2];
|
|
3663
3716
|
}
|
|
3664
3717
|
}
|
|
3665
3718
|
var TopicComment = /* @__PURE__ */ function() {
|
|
3666
|
-
return __component__$
|
|
3719
|
+
return __component__$7.exports;
|
|
3667
3720
|
}();
|
|
3668
|
-
var render$
|
|
3721
|
+
var render$6 = function() {
|
|
3669
3722
|
var _vm = this;
|
|
3670
3723
|
var _h = _vm.$createElement;
|
|
3671
3724
|
var _c = _vm._self._c || _h;
|
|
@@ -3683,12 +3736,12 @@ var render$5 = function() {
|
|
|
3683
3736
|
} } });
|
|
3684
3737
|
}), 1) : _vm._e()]), _vm.loading ? [_c("BIMDataLoading")] : _vm._e()], 2);
|
|
3685
3738
|
};
|
|
3686
|
-
var staticRenderFns$
|
|
3687
|
-
var
|
|
3688
|
-
const __vue2_script$
|
|
3739
|
+
var staticRenderFns$6 = [];
|
|
3740
|
+
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 = "";
|
|
3741
|
+
const __vue2_script$6 = {
|
|
3689
3742
|
components: {
|
|
3690
3743
|
BIMDataButton: c$5,
|
|
3691
|
-
BIMDataLoading: a$
|
|
3744
|
+
BIMDataLoading: a$4,
|
|
3692
3745
|
BIMDataTextarea: s$2,
|
|
3693
3746
|
TopicComment
|
|
3694
3747
|
},
|
|
@@ -3734,17 +3787,17 @@ const __vue2_script$5 = {
|
|
|
3734
3787
|
};
|
|
3735
3788
|
}
|
|
3736
3789
|
};
|
|
3737
|
-
const __cssModules$
|
|
3738
|
-
var __component__$
|
|
3739
|
-
function __vue2_injectStyles$
|
|
3740
|
-
for (let o2 in __cssModules$
|
|
3741
|
-
this[o2] = __cssModules$
|
|
3790
|
+
const __cssModules$6 = {};
|
|
3791
|
+
var __component__$6 = /* @__PURE__ */ normalizeComponent(__vue2_script$6, render$6, staticRenderFns$6, false, __vue2_injectStyles$6, "561aa0f8", null, null);
|
|
3792
|
+
function __vue2_injectStyles$6(context) {
|
|
3793
|
+
for (let o2 in __cssModules$6) {
|
|
3794
|
+
this[o2] = __cssModules$6[o2];
|
|
3742
3795
|
}
|
|
3743
3796
|
}
|
|
3744
3797
|
var BcfTopicComments = /* @__PURE__ */ function() {
|
|
3745
|
-
return __component__$
|
|
3798
|
+
return __component__$6.exports;
|
|
3746
3799
|
}();
|
|
3747
|
-
var render$
|
|
3800
|
+
var render$5 = function() {
|
|
3748
3801
|
var _vm = this;
|
|
3749
3802
|
var _h = _vm.$createElement;
|
|
3750
3803
|
var _c = _vm._self._c || _h;
|
|
@@ -3766,9 +3819,11 @@ var render$4 = function() {
|
|
|
3766
3819
|
color: _vm.adjustTextColor("#" + _vm.statusColor, "#ffffff", "#2f374a")
|
|
3767
3820
|
} }, [_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
3821
|
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),
|
|
3822
|
+
}), 0)] : [_c("BcfTopicDefaultImage", { staticClass: "default-image" })]], 2), _vm.viewerMode ? _c("BIMDataButton", { attrs: { "width": "100%", "fill": "", "radius": "", "disabled": _vm.topicComponents.length === 0 }, on: { "click": function($event) {
|
|
3823
|
+
return _vm.$emit("view-components", _vm.bcfTopic);
|
|
3824
|
+
} } }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs", "margin": "0 6px 0 0" } }), _vm.topicComponents.length > 0 ? [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.elements", { count: _vm.topicComponents.length })) + " ")] : [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.noElements")) + " ")]], 2) : _c("BIMDataButton", { attrs: { "width": "100%", "color": "primary", "fill": "", "radius": "" }, on: { "click": function($event) {
|
|
3770
3825
|
return _vm.$emit("view-bcf-topic", _vm.bcfTopic);
|
|
3771
|
-
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")])
|
|
3826
|
+
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.openViewer")) + " ")]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [!_vm.viewerMode ? _c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "model3d", "size": "xs" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.elements", { count: _vm.topicComponents.length })) + " ")])], 1) : _vm._e(), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.type")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_type ? _vm.bcfTopic.topic_type : _vm.$t("BcfComponents.BcfTopicOverview.noTypeSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.description")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.description ? _vm.bcfTopic.description : _vm.$t("BcfComponents.BcfTopicOverview.noDescriptionProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.assignedTo")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.assigned_to ? _vm.bcfTopic.assigned_to : _vm.$t("BcfComponents.BcfTopicOverview.notAssigned")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.dueDate")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.due_date ? _vm.$d(_vm.bcfTopic.due_date, "short") : _vm.$t("BcfComponents.BcfTopicOverview.noDueDate")) + " ")])])]), _c("div", { staticClass: "bcf-topic-overview__content__card" }, [_c("div", { staticClass: "title" }, [_c("BIMDataIcon", { attrs: { "name": "bcf" } }), _c("span", [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.informations")) + " ")])], 1), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.status")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_status || _vm.$t("BcfComponents.BcfTopicOverview.noStatusSpecified")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.stage")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.stage || _vm.$t("BcfComponents.BcfTopicOverview.noStageProvided")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.priority")) + " ")]), _c("span", { staticClass: "value", style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicOverview.priorityNotDefined")) + " ")])]), _c("div", { staticClass: "line" }, [_c("span", { staticClass: "label" }, [_vm._v(" Auteur : ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.creation_author) + " ")])]), _c("div", { staticClass: "line m-t-12" }, [_c("span", { staticClass: "label" }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.tags")) + " ")]), _c("span", { staticClass: "value" }, [_vm._v(" " + _vm._s(_vm.topicLabels.length ? _vm.topicLabels.join(", ") : _vm.$t("BcfComponents.BcfTopicOverview.noTags")) + " ")])])]), _c("BcfTopicComments", { attrs: { "project": _vm.project, "bcfTopic": _vm.bcfTopic }, on: { "comment-created": function($event) {
|
|
3772
3827
|
return _vm.$emit("comment-created", $event);
|
|
3773
3828
|
}, "comment-updated": function($event) {
|
|
3774
3829
|
return _vm.$emit("comment-updated", $event);
|
|
@@ -3782,18 +3837,18 @@ var render$4 = function() {
|
|
|
3782
3837
|
} } }, [_vm._v(" " + _vm._s(_vm.$t("BcfComponents.BcfTopicOverview.keepBcfButton")) + " ")])];
|
|
3783
3838
|
}, proxy: true }], null, false, 2806232332) }) : _vm._e(), _vm.loading ? _c("div", [_c("BIMDataLoading")], 1) : _vm._e()], 1);
|
|
3784
3839
|
};
|
|
3785
|
-
var staticRenderFns$
|
|
3786
|
-
var
|
|
3787
|
-
const __vue2_script$
|
|
3840
|
+
var staticRenderFns$5 = [];
|
|
3841
|
+
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 = "";
|
|
3842
|
+
const __vue2_script$5 = {
|
|
3788
3843
|
components: {
|
|
3789
3844
|
BcfTopicComments,
|
|
3790
3845
|
BcfTopicDefaultImage,
|
|
3791
3846
|
BIMDataButton: c$5,
|
|
3792
3847
|
BIMDataCarousel: c$1,
|
|
3793
3848
|
BIMDataIcon: s$9,
|
|
3794
|
-
BIMDataLoading: a$
|
|
3849
|
+
BIMDataLoading: a$4,
|
|
3795
3850
|
BIMDataSafeZoneModal: C,
|
|
3796
|
-
BIMDataTextbox: l$
|
|
3851
|
+
BIMDataTextbox: l$3
|
|
3797
3852
|
},
|
|
3798
3853
|
props: {
|
|
3799
3854
|
viewerMode: {
|
|
@@ -3818,14 +3873,15 @@ const __vue2_script$4 = {
|
|
|
3818
3873
|
}
|
|
3819
3874
|
},
|
|
3820
3875
|
emits: [
|
|
3821
|
-
"
|
|
3822
|
-
"view-bcf-topic",
|
|
3876
|
+
"back",
|
|
3823
3877
|
"bcf-topic-deleted",
|
|
3878
|
+
"close",
|
|
3824
3879
|
"comment-created",
|
|
3825
|
-
"comment-updated",
|
|
3826
3880
|
"comment-deleted",
|
|
3827
|
-
"
|
|
3828
|
-
"
|
|
3881
|
+
"comment-updated",
|
|
3882
|
+
"edit-bcf-topic",
|
|
3883
|
+
"view-bcf-topic",
|
|
3884
|
+
"view-components"
|
|
3829
3885
|
],
|
|
3830
3886
|
setup(props, { emit }) {
|
|
3831
3887
|
const { deleteTopic: deleteTopic2 } = useService();
|
|
@@ -3834,24 +3890,8 @@ const __vue2_script$4 = {
|
|
|
3834
3890
|
const viewpointsWithSnapshot = computed(() => {
|
|
3835
3891
|
return props.bcfTopic.viewpoints.filter((viewpoint) => Boolean(viewpoint.snapshot));
|
|
3836
3892
|
});
|
|
3837
|
-
const priorityColor = computed(() =>
|
|
3838
|
-
|
|
3839
|
-
const priorityDetail = props.detailedExtensions.priorities.find((p2) => p2.priority === props.bcfTopic.priority);
|
|
3840
|
-
if (priorityDetail && priorityDetail.color) {
|
|
3841
|
-
return priorityDetail.color;
|
|
3842
|
-
}
|
|
3843
|
-
}
|
|
3844
|
-
return DEFAULT_PRIORITY_COLOR;
|
|
3845
|
-
});
|
|
3846
|
-
const statusColor = computed(() => {
|
|
3847
|
-
if (props.bcfTopic.topic_status) {
|
|
3848
|
-
const statusDetail = props.detailedExtensions.topic_statuses.find((s2) => s2.topic_status === props.bcfTopic.topic_status);
|
|
3849
|
-
if (statusDetail && statusDetail.color) {
|
|
3850
|
-
return statusDetail.color;
|
|
3851
|
-
}
|
|
3852
|
-
}
|
|
3853
|
-
return DEFAULT_STATUS_COLOR;
|
|
3854
|
-
});
|
|
3893
|
+
const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
|
|
3894
|
+
const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
|
|
3855
3895
|
const topicComponents = computed(() => {
|
|
3856
3896
|
var _a, _b;
|
|
3857
3897
|
const components2 = (_b = (_a = props.bcfTopic.viewpoints) == null ? void 0 : _a[0]) == null ? void 0 : _b.components;
|
|
@@ -3889,15 +3929,15 @@ const __vue2_script$4 = {
|
|
|
3889
3929
|
};
|
|
3890
3930
|
}
|
|
3891
3931
|
};
|
|
3892
|
-
const __cssModules$
|
|
3893
|
-
var __component__$
|
|
3894
|
-
function __vue2_injectStyles$
|
|
3895
|
-
for (let o2 in __cssModules$
|
|
3896
|
-
this[o2] = __cssModules$
|
|
3932
|
+
const __cssModules$5 = {};
|
|
3933
|
+
var __component__$5 = /* @__PURE__ */ normalizeComponent(__vue2_script$5, render$5, staticRenderFns$5, false, __vue2_injectStyles$5, "696373ad", null, null);
|
|
3934
|
+
function __vue2_injectStyles$5(context) {
|
|
3935
|
+
for (let o2 in __cssModules$5) {
|
|
3936
|
+
this[o2] = __cssModules$5[o2];
|
|
3897
3937
|
}
|
|
3898
3938
|
}
|
|
3899
3939
|
var BcfTopicOverview = /* @__PURE__ */ function() {
|
|
3900
|
-
return __component__$
|
|
3940
|
+
return __component__$5.exports;
|
|
3901
3941
|
}();
|
|
3902
3942
|
var columnsDef = [
|
|
3903
3943
|
{
|
|
@@ -3908,36 +3948,32 @@ var columnsDef = [
|
|
|
3908
3948
|
},
|
|
3909
3949
|
{
|
|
3910
3950
|
id: "priority",
|
|
3911
|
-
label: "Priorit\xE9",
|
|
3912
3951
|
width: "96px",
|
|
3913
3952
|
align: "center"
|
|
3914
3953
|
},
|
|
3915
3954
|
{
|
|
3916
3955
|
id: "status",
|
|
3917
|
-
label: "Statut",
|
|
3918
3956
|
width: "72px",
|
|
3919
3957
|
align: "center"
|
|
3920
3958
|
},
|
|
3921
3959
|
{
|
|
3922
3960
|
id: "title",
|
|
3923
|
-
label: "Titre",
|
|
3924
3961
|
align: "left"
|
|
3925
3962
|
},
|
|
3926
3963
|
{
|
|
3927
3964
|
id: "creator",
|
|
3928
|
-
|
|
3929
|
-
width: "120px",
|
|
3965
|
+
width: "60px",
|
|
3930
3966
|
align: "center"
|
|
3931
3967
|
},
|
|
3932
3968
|
{
|
|
3933
3969
|
id: "date",
|
|
3934
|
-
|
|
3935
|
-
|
|
3970
|
+
width: "90px",
|
|
3971
|
+
align: "center"
|
|
3936
3972
|
},
|
|
3937
3973
|
{
|
|
3938
3974
|
id: "actions",
|
|
3939
3975
|
label: " ",
|
|
3940
|
-
width: "
|
|
3976
|
+
width: "60px",
|
|
3941
3977
|
align: "center"
|
|
3942
3978
|
}
|
|
3943
3979
|
];
|
|
@@ -4020,18 +4056,18 @@ var g;
|
|
|
4020
4056
|
const h = a({ render: function() {
|
|
4021
4057
|
var r2 = this, o2 = r2.$createElement, a2 = r2._self._c || o2;
|
|
4022
4058
|
return a2("div", { staticClass: "bimdata-table" }, [a2("div", { staticClass: "bimdata-table__container", style: { height: r2.paginated ? (r2.perPage + 1) * r2.rowHeight + "px" : void 0 } }, [a2("table", { style: { width: r2.tableWidth } }, [a2("thead", [a2("tr", { key: "head-row-0", style: { height: r2.rowHeight + "px" } }, [r2.selectable ? a2("th", { staticClass: "cell-checkbox" }, [a2("BIMDataCheckbox", { attrs: { disabled: r2.rows.length === 0, modelValue: r2.rows.length > 0 && r2.selection.size === r2.rows.length }, on: { "update:modelValue": r2.toggleFullSelection } })], 1) : r2._e(), r2._v(" "), r2._l(r2.columns, function(o3, e2) {
|
|
4023
|
-
return a2("th", { key: "head-row-0-col-" + e2, style: { width: o3.width || "auto", textAlign: o3.align || "left" } }, [r2._v("\n
|
|
4059
|
+
return a2("th", { key: "head-row-0-col-" + e2, style: { width: o3.width || "auto", textAlign: o3.align || "left" } }, [r2._v("\n " + r2._s(o3.id ? o3.label || o3.id : o3) + "\n ")]);
|
|
4024
4060
|
})], 2)]), r2._v(" "), a2("tbody", r2._l(r2.rows, function(o3, e2) {
|
|
4025
4061
|
return a2("tr", { directives: [{ name: "show", rawName: "v-show", value: r2.displayedRows.includes(e2), expression: "displayedRows.includes(i)" }], key: "body-row-" + e2, style: { height: r2.rowHeight + "px" } }, [r2.selectable ? a2("td", { staticClass: "cell-checkbox" }, [a2("BIMDataCheckbox", { attrs: { modelValue: r2.selection.has(e2) }, on: { "update:modelValue": function(o4) {
|
|
4026
4062
|
return r2.toggleSelection(e2);
|
|
4027
4063
|
} } })], 1) : r2._e(), r2._v(" "), r2._l(r2.columns, function(t2, i2) {
|
|
4028
4064
|
return a2("td", { key: "body-row-" + e2 + "-col-" + i2, style: { width: t2.width || "auto", textAlign: t2.align || "left" } }, [r2._t("cell-" + t2.id, function() {
|
|
4029
|
-
return [r2._v("\n
|
|
4065
|
+
return [r2._v("\n " + r2._s(o3[t2.id] || o3[i2] || "") + "\n ")];
|
|
4030
4066
|
}, { row: o3 })], 2);
|
|
4031
4067
|
})], 2);
|
|
4032
|
-
}), 0)]), r2._v(" "), r2.rows.length === 0 && r2.placeholder ? a2("div", { staticClass: "bimdata-table__container__placeholder", style: { height: "calc(100% - " + r2.rowHeight + "px)" } }, [r2._v("\n
|
|
4068
|
+
}), 0)]), r2._v(" "), r2.rows.length === 0 && r2.placeholder ? a2("div", { staticClass: "bimdata-table__container__placeholder", style: { height: "calc(100% - " + r2.rowHeight + "px)" } }, [r2._v("\n " + r2._s(r2.placeholder) + "\n ")]) : r2._e()]), r2._v(" "), r2.paginated ? a2("div", { staticClass: "bimdata-table__page-nav", style: { visibility: r2.rows.length > r2.perPage ? "visible" : "hidden" } }, [a2("BIMDataButton", { attrs: { ghost: "", rounded: "", icon: "", disabled: r2.pageStartIndex === 1 }, on: { click: function(o3) {
|
|
4033
4069
|
r2.pageIndex--;
|
|
4034
|
-
} } }, [a2("BIMDataIconChevron", { attrs: { size: "s", rotate: 180 } })], 1), r2._v(" "), a2("span", { staticClass: "bimdata-table__page-nav__text" }, [r2._v("\n
|
|
4070
|
+
} } }, [a2("BIMDataIconChevron", { attrs: { size: "s", rotate: 180 } })], 1), r2._v(" "), a2("span", { staticClass: "bimdata-table__page-nav__text" }, [r2._v("\n " + r2._s(r2.pageStartIndex + " - " + r2.pageEndIndex + " of " + r2.rows.length) + "\n ")]), r2._v(" "), a2("BIMDataButton", { attrs: { ghost: "", rounded: "", icon: "", disabled: r2.pageEndIndex === r2.rows.length }, on: { click: function(o3) {
|
|
4035
4071
|
r2.pageIndex++;
|
|
4036
4072
|
} } }, [a2("BIMDataIconChevron", { attrs: { size: "s" } })], 1)], 1) : r2._e()]);
|
|
4037
4073
|
}, staticRenderFns: [] }, function(r2) {
|
|
@@ -4084,17 +4120,17 @@ const h = a({ render: function() {
|
|
|
4084
4120
|
} else
|
|
4085
4121
|
this.displayedRows = r2;
|
|
4086
4122
|
} } }, "data-v-d08de924", false, void 0, false, t, void 0, void 0);
|
|
4087
|
-
var render$
|
|
4123
|
+
var render$4 = function() {
|
|
4088
4124
|
var _vm = this;
|
|
4089
4125
|
var _h = _vm.$createElement;
|
|
4090
4126
|
var _c = _vm._self._c || _h;
|
|
4091
|
-
return _c("div", { staticClass: "bcf-topic-actions-cell" }, [_c("BIMDataButton", { attrs: { "color": "primary", "outline": "", "radius": "" }, on: { "click": function($event) {
|
|
4127
|
+
return _c("div", { staticClass: "bcf-topic-actions-cell" }, [_c("BIMDataButton", { attrs: { "color": "primary", "outline": "", "radius": "", "icon": "" }, on: { "click": function($event) {
|
|
4092
4128
|
return _vm.$emit("open-bcf-topic", _vm.bcfTopic);
|
|
4093
|
-
} } }, [
|
|
4129
|
+
} } }, [_c("BIMDataIcon", { attrs: { "name": "show", "size": "xs" } })], 1)], 1);
|
|
4094
4130
|
};
|
|
4095
|
-
var staticRenderFns$
|
|
4096
|
-
var
|
|
4097
|
-
const __vue2_script$
|
|
4131
|
+
var staticRenderFns$4 = [];
|
|
4132
|
+
var BcfTopicActionsCell_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
4133
|
+
const __vue2_script$4 = {
|
|
4098
4134
|
components: {
|
|
4099
4135
|
BIMDataButton: c$5
|
|
4100
4136
|
},
|
|
@@ -4108,24 +4144,60 @@ const __vue2_script$3 = {
|
|
|
4108
4144
|
"open-bcf-topic"
|
|
4109
4145
|
]
|
|
4110
4146
|
};
|
|
4147
|
+
const __cssModules$4 = {};
|
|
4148
|
+
var __component__$4 = /* @__PURE__ */ normalizeComponent(__vue2_script$4, render$4, staticRenderFns$4, false, __vue2_injectStyles$4, "490491b3", null, null);
|
|
4149
|
+
function __vue2_injectStyles$4(context) {
|
|
4150
|
+
for (let o2 in __cssModules$4) {
|
|
4151
|
+
this[o2] = __cssModules$4[o2];
|
|
4152
|
+
}
|
|
4153
|
+
}
|
|
4154
|
+
var BcfTopicActionsCell = /* @__PURE__ */ function() {
|
|
4155
|
+
return __component__$4.exports;
|
|
4156
|
+
}();
|
|
4157
|
+
var render$3 = function() {
|
|
4158
|
+
var _vm = this;
|
|
4159
|
+
var _h = _vm.$createElement;
|
|
4160
|
+
var _c = _vm._self._c || _h;
|
|
4161
|
+
return _c("div", { staticClass: "bcf-topic-index-cell" }, [_c("span", { staticClass: "left-stripe", style: { backgroundColor: "#" + _vm.priorityColor } }), _c("span", { staticClass: "index" }, [_vm._v(" " + _vm._s(_vm.bcfTopic.index) + " ")])]);
|
|
4162
|
+
};
|
|
4163
|
+
var staticRenderFns$3 = [];
|
|
4164
|
+
var BcfTopicIndexCell_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
4165
|
+
const __vue2_script$3 = {
|
|
4166
|
+
props: {
|
|
4167
|
+
bcfTopic: {
|
|
4168
|
+
type: Object,
|
|
4169
|
+
required: true
|
|
4170
|
+
},
|
|
4171
|
+
detailedExtensions: {
|
|
4172
|
+
type: Object,
|
|
4173
|
+
required: true
|
|
4174
|
+
}
|
|
4175
|
+
},
|
|
4176
|
+
setup(props) {
|
|
4177
|
+
const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
|
|
4178
|
+
return {
|
|
4179
|
+
priorityColor
|
|
4180
|
+
};
|
|
4181
|
+
}
|
|
4182
|
+
};
|
|
4111
4183
|
const __cssModules$3 = {};
|
|
4112
|
-
var __component__$3 = /* @__PURE__ */ normalizeComponent(__vue2_script$3, render$3, staticRenderFns$3, false, __vue2_injectStyles$3, "
|
|
4184
|
+
var __component__$3 = /* @__PURE__ */ normalizeComponent(__vue2_script$3, render$3, staticRenderFns$3, false, __vue2_injectStyles$3, "73373bfa", null, null);
|
|
4113
4185
|
function __vue2_injectStyles$3(context) {
|
|
4114
4186
|
for (let o2 in __cssModules$3) {
|
|
4115
4187
|
this[o2] = __cssModules$3[o2];
|
|
4116
4188
|
}
|
|
4117
4189
|
}
|
|
4118
|
-
var
|
|
4190
|
+
var BcfTopicIndexCell = /* @__PURE__ */ function() {
|
|
4119
4191
|
return __component__$3.exports;
|
|
4120
4192
|
}();
|
|
4121
4193
|
var render$2 = function() {
|
|
4122
4194
|
var _vm = this;
|
|
4123
4195
|
var _h = _vm.$createElement;
|
|
4124
4196
|
var _c = _vm._self._c || _h;
|
|
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")) + " ")]);
|
|
4197
|
+
return _c("span", { staticClass: "bcf-topic-priority-cell", style: { color: "#" + _vm.priorityColor } }, [_vm._v(" " + _vm._s(_vm.bcfTopic.priority || _vm.$t("BcfComponents.BcfTopicPriorityCell.noPriority")) + " ")]);
|
|
4126
4198
|
};
|
|
4127
4199
|
var staticRenderFns$2 = [];
|
|
4128
|
-
var
|
|
4200
|
+
var BcfTopicPriorityCell_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
4129
4201
|
const __vue2_script$2 = {
|
|
4130
4202
|
props: {
|
|
4131
4203
|
bcfTopic: {
|
|
@@ -4138,22 +4210,14 @@ const __vue2_script$2 = {
|
|
|
4138
4210
|
}
|
|
4139
4211
|
},
|
|
4140
4212
|
setup(props) {
|
|
4141
|
-
const priorityColor = computed(() =>
|
|
4142
|
-
if (props.bcfTopic.priority) {
|
|
4143
|
-
const priorityDetail = props.detailedExtensions.priorities.find((priority) => priority.priority === props.bcfTopic.priority);
|
|
4144
|
-
if (priorityDetail == null ? void 0 : priorityDetail.color) {
|
|
4145
|
-
return `#${priorityDetail.color}`;
|
|
4146
|
-
}
|
|
4147
|
-
}
|
|
4148
|
-
return `#${DEFAULT_PRIORITY_COLOR}`;
|
|
4149
|
-
});
|
|
4213
|
+
const priorityColor = computed(() => getPriorityColor(props.bcfTopic, props.detailedExtensions));
|
|
4150
4214
|
return {
|
|
4151
4215
|
priorityColor
|
|
4152
4216
|
};
|
|
4153
4217
|
}
|
|
4154
4218
|
};
|
|
4155
4219
|
const __cssModules$2 = {};
|
|
4156
|
-
var __component__$2 = /* @__PURE__ */ normalizeComponent(__vue2_script$2, render$2, staticRenderFns$2, false, __vue2_injectStyles$2, "
|
|
4220
|
+
var __component__$2 = /* @__PURE__ */ normalizeComponent(__vue2_script$2, render$2, staticRenderFns$2, false, __vue2_injectStyles$2, "7be782b8", null, null);
|
|
4157
4221
|
function __vue2_injectStyles$2(context) {
|
|
4158
4222
|
for (let o2 in __cssModules$2) {
|
|
4159
4223
|
this[o2] = __cssModules$2[o2];
|
|
@@ -4167,12 +4231,12 @@ var render$1 = function() {
|
|
|
4167
4231
|
var _h = _vm.$createElement;
|
|
4168
4232
|
var _c = _vm._self._c || _h;
|
|
4169
4233
|
return _c("span", { staticClass: "bcf-topic-status-cell", style: {
|
|
4170
|
-
backgroundColor: _vm.statusColor,
|
|
4234
|
+
backgroundColor: "#" + _vm.statusColor,
|
|
4171
4235
|
color: _vm.adjustTextColor(_vm.statusColor, "#ffffff", "var(--color-text)")
|
|
4172
|
-
} }, [_vm._v(" " + _vm._s(_vm.bcfTopic.
|
|
4236
|
+
} }, [_vm._v(" " + _vm._s(_vm.bcfTopic.topic_status) + " ")]);
|
|
4173
4237
|
};
|
|
4174
4238
|
var staticRenderFns$1 = [];
|
|
4175
|
-
var
|
|
4239
|
+
var BcfTopicStatusCell_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
4176
4240
|
const __vue2_script$1 = {
|
|
4177
4241
|
props: {
|
|
4178
4242
|
bcfTopic: {
|
|
@@ -4185,15 +4249,7 @@ const __vue2_script$1 = {
|
|
|
4185
4249
|
}
|
|
4186
4250
|
},
|
|
4187
4251
|
setup(props) {
|
|
4188
|
-
const statusColor = computed(() =>
|
|
4189
|
-
if (props.bcfTopic.topic_status) {
|
|
4190
|
-
const statusDetail = props.detailedExtensions.topic_statuses.find((status) => status.topic_status === props.bcfTopic.topic_status);
|
|
4191
|
-
if (statusDetail == null ? void 0 : statusDetail.color) {
|
|
4192
|
-
return `#${statusDetail.color}`;
|
|
4193
|
-
}
|
|
4194
|
-
}
|
|
4195
|
-
return `#${DEFAULT_STATUS_COLOR}`;
|
|
4196
|
-
});
|
|
4252
|
+
const statusColor = computed(() => getStatusColor(props.bcfTopic, props.detailedExtensions));
|
|
4197
4253
|
return {
|
|
4198
4254
|
statusColor,
|
|
4199
4255
|
adjustTextColor
|
|
@@ -4201,7 +4257,7 @@ const __vue2_script$1 = {
|
|
|
4201
4257
|
}
|
|
4202
4258
|
};
|
|
4203
4259
|
const __cssModules$1 = {};
|
|
4204
|
-
var __component__$1 = /* @__PURE__ */ normalizeComponent(__vue2_script$1, render$1, staticRenderFns$1, false, __vue2_injectStyles$1, "
|
|
4260
|
+
var __component__$1 = /* @__PURE__ */ normalizeComponent(__vue2_script$1, render$1, staticRenderFns$1, false, __vue2_injectStyles$1, "a51b4af6", null, null);
|
|
4205
4261
|
function __vue2_injectStyles$1(context) {
|
|
4206
4262
|
for (let o2 in __cssModules$1) {
|
|
4207
4263
|
this[o2] = __cssModules$1[o2];
|
|
@@ -4214,9 +4270,11 @@ var render = function() {
|
|
|
4214
4270
|
var _vm = this;
|
|
4215
4271
|
var _h = _vm.$createElement;
|
|
4216
4272
|
var _c = _vm._self._c || _h;
|
|
4217
|
-
return _c("BIMDataTable", { staticClass: "bcf-topics-table", attrs: { "columns": _vm.displayedColumns
|
|
4273
|
+
return _c("BIMDataTable", { staticClass: "bcf-topics-table", attrs: { "columns": _vm.displayedColumns.map(function(col) {
|
|
4274
|
+
return Object.assign({}, col, { label: col.label || _vm.$t("BcfComponents.BcfTopicsTable.headers." + col.id) });
|
|
4275
|
+
}), "rows": _vm.bcfTopics, "rowKey": "guid", "paginated": _vm.paginated, "perPage": _vm.perPage, "rowHeight": 42 }, scopedSlots: _vm._u([{ key: "cell-index", fn: function(ref2) {
|
|
4218
4276
|
var bcfTopic = ref2.row;
|
|
4219
|
-
return [
|
|
4277
|
+
return [_c("BcfTopicIndexCell", { attrs: { "bcfTopic": bcfTopic, "detailedExtensions": _vm.detailedExtensions } })];
|
|
4220
4278
|
} }, { key: "cell-priority", fn: function(ref2) {
|
|
4221
4279
|
var bcfTopic = ref2.row;
|
|
4222
4280
|
return [_c("BcfTopicPriorityCell", { attrs: { "bcfTopic": bcfTopic, "detailedExtensions": _vm.detailedExtensions } })];
|
|
@@ -4227,13 +4285,11 @@ var render = function() {
|
|
|
4227
4285
|
var bcfTopic = ref2.row;
|
|
4228
4286
|
return [_c("BIMDataTextbox", { attrs: { "maxWidth": "100%", "text": bcfTopic.title } })];
|
|
4229
4287
|
} }, { key: "cell-creator", fn: function(ref2) {
|
|
4230
|
-
var
|
|
4231
|
-
|
|
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 } })]];
|
|
4288
|
+
var creator = ref2.row.creator;
|
|
4289
|
+
return [_c("UserAvatar", { staticStyle: { "margin": "auto" }, attrs: { "user": creator || {}, "size": 30, "color": "silver-light" } })];
|
|
4234
4290
|
} }, { key: "cell-date", fn: function(ref2) {
|
|
4235
4291
|
var bcfTopic = ref2.row;
|
|
4236
|
-
return [_vm._v(" " + _vm._s(_vm
|
|
4292
|
+
return [_vm._v(" " + _vm._s(_vm.deserializeShort(bcfTopic.creationDate)) + " ")];
|
|
4237
4293
|
} }, { key: "cell-actions", fn: function(ref2) {
|
|
4238
4294
|
var bcfTopic = ref2.row;
|
|
4239
4295
|
return [_c("BcfTopicActionsCell", { attrs: { "bcfTopic": bcfTopic }, on: { "open-bcf-topic": function($event) {
|
|
@@ -4245,10 +4301,11 @@ var staticRenderFns = [];
|
|
|
4245
4301
|
const __vue2_script = {
|
|
4246
4302
|
components: {
|
|
4247
4303
|
BcfTopicActionsCell,
|
|
4304
|
+
BcfTopicIndexCell,
|
|
4248
4305
|
BcfTopicPriorityCell,
|
|
4249
4306
|
BcfTopicStatusCell,
|
|
4250
4307
|
BIMDataTable: h,
|
|
4251
|
-
BIMDataTextbox: l$
|
|
4308
|
+
BIMDataTextbox: l$3,
|
|
4252
4309
|
UserAvatar
|
|
4253
4310
|
},
|
|
4254
4311
|
props: {
|
|
@@ -4278,7 +4335,8 @@ const __vue2_script = {
|
|
|
4278
4335
|
setup(props) {
|
|
4279
4336
|
const displayedColumns = computed(() => props.columns && props.columns.length > 0 ? columnsDef.filter((c2) => props.columns.includes(c2.id)) : columnsDef);
|
|
4280
4337
|
return {
|
|
4281
|
-
displayedColumns
|
|
4338
|
+
displayedColumns,
|
|
4339
|
+
deserializeShort
|
|
4282
4340
|
};
|
|
4283
4341
|
}
|
|
4284
4342
|
};
|
|
@@ -4302,4 +4360,4 @@ const components = {
|
|
|
4302
4360
|
BcfTopicOverview,
|
|
4303
4361
|
BcfTopicsTable
|
|
4304
4362
|
};
|
|
4305
|
-
export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
|
|
4363
|
+
export { BcfFilters, BcfSettings, BcfStatistics, BcfTopicCard, BcfTopicCreationCard, BcfTopicForm, BcfTopicOverview, BcfTopicsTable, components, getPriorityColor, getStatusColor, setApiClient, useBcfFilter, useBcfSearch, useBcfSort };
|