ire-preview 2.0.8 → 2.1.0
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/lib.es.js +158 -158
- package/dist/styles.css +1 -1
- package/package.json +2 -1
package/dist/lib.es.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { defineComponent, openBlock, createElementBlock, createVNode, Transition, withCtx, createElementVNode, toDisplayString, createCommentVNode, Fragment, createTextVNode, renderSlot, ref, watch, createBlock,
|
|
1
|
+
import { defineComponent, openBlock, createElementBlock, createVNode, Transition, withCtx, createElementVNode, toDisplayString, createCommentVNode, Fragment, createTextVNode, renderSlot, ref, watch, createBlock, unref, normalizeClass, mergeModels, useModel, withDirectives, renderList, vModelSelect, computed as computed$1, onMounted, createStaticVNode, reactive, normalizeStyle, Teleport } from "vue";
|
|
2
2
|
/**
|
|
3
3
|
* @vue/shared v3.5.12
|
|
4
4
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
5
5
|
* @license MIT
|
|
6
6
|
**/
|
|
7
|
-
const extend = Object.assign, isFunction = (
|
|
7
|
+
const extend = Object.assign, isFunction = (r) => typeof r == "function", isSymbol = (r) => typeof r == "symbol", hasChanged = (r, e) => !Object.is(r, e);
|
|
8
8
|
/**
|
|
9
9
|
* @vue/reactivity v3.5.12
|
|
10
10
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
11
11
|
* @license MIT
|
|
12
12
|
**/
|
|
13
13
|
let activeSub, batchDepth = 0, batchedSub, batchedComputed;
|
|
14
|
-
function batch(
|
|
15
|
-
if (
|
|
16
|
-
|
|
14
|
+
function batch(r, e = !1) {
|
|
15
|
+
if (r.flags |= 8, e) {
|
|
16
|
+
r.next = batchedComputed, batchedComputed = r;
|
|
17
17
|
return;
|
|
18
18
|
}
|
|
19
|
-
|
|
19
|
+
r.next = batchedSub, batchedSub = r;
|
|
20
20
|
}
|
|
21
21
|
function startBatch() {
|
|
22
22
|
batchDepth++;
|
|
@@ -31,7 +31,7 @@ function endBatch() {
|
|
|
31
31
|
e.next = void 0, e.flags &= -9, e = t;
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
|
-
let
|
|
34
|
+
let r;
|
|
35
35
|
for (; batchedSub; ) {
|
|
36
36
|
let e = batchedSub;
|
|
37
37
|
for (batchedSub = void 0; e; ) {
|
|
@@ -39,65 +39,65 @@ function endBatch() {
|
|
|
39
39
|
if (e.next = void 0, e.flags &= -9, e.flags & 1)
|
|
40
40
|
try {
|
|
41
41
|
e.trigger();
|
|
42
|
-
} catch (
|
|
43
|
-
|
|
42
|
+
} catch (o) {
|
|
43
|
+
r || (r = o);
|
|
44
44
|
}
|
|
45
45
|
e = t;
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
if (
|
|
48
|
+
if (r) throw r;
|
|
49
49
|
}
|
|
50
|
-
function prepareDeps(
|
|
51
|
-
for (let e =
|
|
50
|
+
function prepareDeps(r) {
|
|
51
|
+
for (let e = r.deps; e; e = e.nextDep)
|
|
52
52
|
e.version = -1, e.prevActiveLink = e.dep.activeLink, e.dep.activeLink = e;
|
|
53
53
|
}
|
|
54
|
-
function cleanupDeps(
|
|
55
|
-
let e, t =
|
|
56
|
-
for (;
|
|
57
|
-
const c =
|
|
58
|
-
|
|
54
|
+
function cleanupDeps(r) {
|
|
55
|
+
let e, t = r.depsTail, o = t;
|
|
56
|
+
for (; o; ) {
|
|
57
|
+
const c = o.prevDep;
|
|
58
|
+
o.version === -1 ? (o === t && (t = c), removeSub(o), removeDep(o)) : e = o, o.dep.activeLink = o.prevActiveLink, o.prevActiveLink = void 0, o = c;
|
|
59
59
|
}
|
|
60
|
-
|
|
60
|
+
r.deps = e, r.depsTail = t;
|
|
61
61
|
}
|
|
62
|
-
function isDirty(
|
|
63
|
-
for (let e =
|
|
62
|
+
function isDirty(r) {
|
|
63
|
+
for (let e = r.deps; e; e = e.nextDep)
|
|
64
64
|
if (e.dep.version !== e.version || e.dep.computed && (refreshComputed(e.dep.computed) || e.dep.version !== e.version))
|
|
65
65
|
return !0;
|
|
66
|
-
return !!
|
|
66
|
+
return !!r._dirty;
|
|
67
67
|
}
|
|
68
|
-
function refreshComputed(
|
|
69
|
-
if (
|
|
68
|
+
function refreshComputed(r) {
|
|
69
|
+
if (r.flags & 4 && !(r.flags & 16) || (r.flags &= -17, r.globalVersion === globalVersion))
|
|
70
70
|
return;
|
|
71
|
-
|
|
72
|
-
const e =
|
|
73
|
-
if (
|
|
74
|
-
|
|
71
|
+
r.globalVersion = globalVersion;
|
|
72
|
+
const e = r.dep;
|
|
73
|
+
if (r.flags |= 2, e.version > 0 && !r.isSSR && r.deps && !isDirty(r)) {
|
|
74
|
+
r.flags &= -3;
|
|
75
75
|
return;
|
|
76
76
|
}
|
|
77
|
-
const t = activeSub,
|
|
78
|
-
activeSub =
|
|
77
|
+
const t = activeSub, o = shouldTrack;
|
|
78
|
+
activeSub = r, shouldTrack = !0;
|
|
79
79
|
try {
|
|
80
|
-
prepareDeps(
|
|
81
|
-
const c =
|
|
82
|
-
(e.version === 0 || hasChanged(c,
|
|
80
|
+
prepareDeps(r);
|
|
81
|
+
const c = r.fn(r._value);
|
|
82
|
+
(e.version === 0 || hasChanged(c, r._value)) && (r._value = c, e.version++);
|
|
83
83
|
} catch (c) {
|
|
84
84
|
throw e.version++, c;
|
|
85
85
|
} finally {
|
|
86
|
-
activeSub = t, shouldTrack =
|
|
86
|
+
activeSub = t, shouldTrack = o, cleanupDeps(r), r.flags &= -3;
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
|
-
function removeSub(
|
|
90
|
-
const { dep: t, prevSub:
|
|
91
|
-
if (
|
|
89
|
+
function removeSub(r, e = !1) {
|
|
90
|
+
const { dep: t, prevSub: o, nextSub: c } = r;
|
|
91
|
+
if (o && (o.nextSub = c, r.prevSub = void 0), c && (c.prevSub = o, r.nextSub = void 0), t.subs === r && (t.subs = o, !o && t.computed)) {
|
|
92
92
|
t.computed.flags &= -5;
|
|
93
93
|
for (let v = t.computed.deps; v; v = v.nextDep)
|
|
94
94
|
removeSub(v, !0);
|
|
95
95
|
}
|
|
96
96
|
!e && !--t.sc && t.map && t.map.delete(t.key);
|
|
97
97
|
}
|
|
98
|
-
function removeDep(
|
|
99
|
-
const { prevDep: e, nextDep: t } =
|
|
100
|
-
e && (e.nextDep = t,
|
|
98
|
+
function removeDep(r) {
|
|
99
|
+
const { prevDep: e, nextDep: t } = r;
|
|
100
|
+
e && (e.nextDep = t, r.prevDep = void 0), t && (t.prevDep = e, r.nextDep = void 0);
|
|
101
101
|
}
|
|
102
102
|
let shouldTrack = !0, globalVersion = 0;
|
|
103
103
|
class Link {
|
|
@@ -116,8 +116,8 @@ class Dep {
|
|
|
116
116
|
if (t === void 0 || t.sub !== activeSub)
|
|
117
117
|
t = this.activeLink = new Link(activeSub, this), activeSub.deps ? (t.prevDep = activeSub.depsTail, activeSub.depsTail.nextDep = t, activeSub.depsTail = t) : activeSub.deps = activeSub.depsTail = t, addSub(t);
|
|
118
118
|
else if (t.version === -1 && (t.version = this.version, t.nextDep)) {
|
|
119
|
-
const
|
|
120
|
-
|
|
119
|
+
const o = t.nextDep;
|
|
120
|
+
o.prevDep = t.prevDep, t.prevDep && (t.prevDep.nextDep = o), t.prevDep = activeSub.depsTail, t.nextDep = void 0, activeSub.depsTail.nextDep = t, activeSub.depsTail = t, activeSub.deps === t && (activeSub.deps = o);
|
|
121
121
|
}
|
|
122
122
|
return t;
|
|
123
123
|
}
|
|
@@ -134,24 +134,24 @@ class Dep {
|
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
|
-
function addSub(
|
|
138
|
-
if (
|
|
139
|
-
const e =
|
|
140
|
-
if (e && !
|
|
137
|
+
function addSub(r) {
|
|
138
|
+
if (r.dep.sc++, r.sub.flags & 4) {
|
|
139
|
+
const e = r.dep.computed;
|
|
140
|
+
if (e && !r.dep.subs) {
|
|
141
141
|
e.flags |= 20;
|
|
142
|
-
for (let
|
|
143
|
-
addSub(
|
|
142
|
+
for (let o = e.deps; o; o = o.nextDep)
|
|
143
|
+
addSub(o);
|
|
144
144
|
}
|
|
145
|
-
const t =
|
|
146
|
-
t !==
|
|
145
|
+
const t = r.dep.subs;
|
|
146
|
+
t !== r && (r.prevSub = t, t && (t.nextSub = r)), r.dep.subs = r;
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
new Set(
|
|
150
|
-
/* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((
|
|
150
|
+
/* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((r) => r !== "arguments" && r !== "caller").map((r) => Symbol[r]).filter(isSymbol)
|
|
151
151
|
);
|
|
152
152
|
class ComputedRefImpl {
|
|
153
|
-
constructor(e, t,
|
|
154
|
-
this.fn = e, this.setter = t, this._value = void 0, this.dep = new Dep(this), this.__v_isRef = !0, this.deps = void 0, this.depsTail = void 0, this.flags = 16, this.globalVersion = globalVersion - 1, this.next = void 0, this.effect = this, this.__v_isReadonly = !t, this.isSSR =
|
|
153
|
+
constructor(e, t, o) {
|
|
154
|
+
this.fn = e, this.setter = t, this._value = void 0, this.dep = new Dep(this), this.__v_isRef = !0, this.deps = void 0, this.depsTail = void 0, this.flags = 16, this.globalVersion = globalVersion - 1, this.next = void 0, this.effect = this, this.__v_isReadonly = !t, this.isSSR = o;
|
|
155
155
|
}
|
|
156
156
|
/**
|
|
157
157
|
* @internal
|
|
@@ -169,9 +169,9 @@ class ComputedRefImpl {
|
|
|
169
169
|
this.setter && this.setter(e);
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
|
-
function computed(
|
|
173
|
-
let
|
|
174
|
-
return isFunction(
|
|
172
|
+
function computed(r, e, t = !1) {
|
|
173
|
+
let o, c;
|
|
174
|
+
return isFunction(r) ? o = r : (o = r.get, c = r.set), new ComputedRefImpl(o, c, t);
|
|
175
175
|
}
|
|
176
176
|
const _hoisted_1$f = {
|
|
177
177
|
key: 0,
|
|
@@ -197,34 +197,34 @@ const _hoisted_1$f = {
|
|
|
197
197
|
}, _hoisted_13$1 = { class: "ire-min-w-3 !ire-text-2xl" }, _hoisted_14$1 = {
|
|
198
198
|
key: 1,
|
|
199
199
|
class: "ire-flex ire-items-center ire-gap-3"
|
|
200
|
-
}, _hoisted_15$1 = { class: "ire-flex ire-flex-col ire-items-center" }, _hoisted_16$1 = { class: "!text-2xl" },
|
|
200
|
+
}, _hoisted_15$1 = { class: "ire-flex ire-flex-col ire-items-center" }, _hoisted_16$1 = { class: "text-sm ire-text-gray-700" }, _hoisted_17$1 = { class: "!text-2xl" }, _hoisted_18$1 = {
|
|
201
201
|
key: 2,
|
|
202
202
|
class: "ire-flex ire-w-full ire-flex-col ire-items-center ire-gap-3"
|
|
203
|
-
},
|
|
203
|
+
}, _hoisted_19$1 = { class: "ire-flex ire-flex-col ire-items-center" }, _hoisted_20$1 = { class: "!ire-text-2xl ire-capitalize" }, _hoisted_21$1 = { class: "ire-flex ire-min-w-36 ire-flex-col ire-items-center ire-rounded-lg ire-bg-gray-100 ire-px-7 ire-py-3" }, _hoisted_22$1 = {
|
|
204
204
|
key: 0,
|
|
205
205
|
class: "!ire-text-2xl ire-uppercase"
|
|
206
|
-
},
|
|
206
|
+
}, _hoisted_23$1 = {
|
|
207
207
|
key: 0,
|
|
208
208
|
class: "ire-flex ire-w-fit ire-flex-col ire-items-center ire-py-2"
|
|
209
|
-
},
|
|
209
|
+
}, _hoisted_24$1 = {
|
|
210
210
|
key: 0,
|
|
211
211
|
class: "!ire-text-2xl"
|
|
212
|
-
},
|
|
212
|
+
}, _hoisted_25$1 = { key: 1 }, _hoisted_26$1 = { class: "!ire-text-xs ire-line-through" }, _hoisted_27 = { class: "!ire-text-2xl" }, _hoisted_28 = { class: "ire-border ire-border-gray-800 ire-p-2" }, _hoisted_29 = { class: "ire-translate-x-3 ire-bg-white" }, _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
213
213
|
__name: "Tooltip_1",
|
|
214
214
|
props: {
|
|
215
215
|
hoveredData: {},
|
|
216
216
|
type: {}
|
|
217
217
|
},
|
|
218
|
-
setup(
|
|
218
|
+
setup(r) {
|
|
219
219
|
return (e, t) => (openBlock(), createElementBlock("div", null, [
|
|
220
220
|
createVNode(Transition, { name: "ire-fade-in-out" }, {
|
|
221
221
|
default: withCtx(() => {
|
|
222
|
-
var
|
|
222
|
+
var o, c, v, m, y, _, f, g, d, s, n, i, u, l, a, h, p, k, b, w, x, C, $, V, E, D, N, S;
|
|
223
223
|
return [
|
|
224
224
|
e.type && e.hoveredData && e.type !== "tooltip" ? (openBlock(), createElementBlock("div", _hoisted_1$f, [
|
|
225
225
|
e.type === "floor" ? (openBlock(), createElementBlock("div", _hoisted_2$8, [
|
|
226
226
|
createElementVNode("div", _hoisted_3$6, [
|
|
227
|
-
createElementVNode("p", _hoisted_4$5, toDisplayString((
|
|
227
|
+
createElementVNode("p", _hoisted_4$5, toDisplayString((o = e.hoveredData) == null ? void 0 : o.floor_number), 1),
|
|
228
228
|
t[0] || (t[0] = createElementVNode("p", { class: "!ire-text-sm ire-uppercase" }, "Floor", -1))
|
|
229
229
|
]),
|
|
230
230
|
(c = e.hoveredData) != null && c.conf || (m = (v = e.hoveredData) == null ? void 0 : v.flats) != null && m.length ? (openBlock(), createElementBlock("div", _hoisted_5$1, [
|
|
@@ -245,26 +245,26 @@ const _hoisted_1$f = {
|
|
|
245
245
|
])) : createCommentVNode("", !0)
|
|
246
246
|
])) : e.type === "block" ? (openBlock(), createElementBlock("div", _hoisted_14$1, [
|
|
247
247
|
createElementVNode("div", _hoisted_15$1, [
|
|
248
|
-
createElementVNode("span",
|
|
249
|
-
createElementVNode("p",
|
|
248
|
+
createElementVNode("span", _hoisted_16$1, toDisplayString((b = e.hoveredData) == null ? void 0 : b.conf), 1),
|
|
249
|
+
createElementVNode("p", _hoisted_17$1, toDisplayString((w = e.hoveredData) == null ? void 0 : w.title), 1)
|
|
250
250
|
])
|
|
251
|
-
])) : e.type === "flat" ? (openBlock(), createElementBlock("div",
|
|
252
|
-
createElementVNode("div",
|
|
253
|
-
createElementVNode("p",
|
|
251
|
+
])) : e.type === "flat" ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
|
|
252
|
+
createElementVNode("div", _hoisted_19$1, [
|
|
253
|
+
createElementVNode("p", _hoisted_20$1, toDisplayString((x = e.hoveredData) == null ? void 0 : x.flat_number), 1),
|
|
254
254
|
t[4] || (t[4] = createElementVNode("p", { class: "!ire-mt-2 !ire-text-xs ire-uppercase" }, "Apartment", -1))
|
|
255
255
|
]),
|
|
256
|
-
createElementVNode("div",
|
|
257
|
-
(C = e.hoveredData) != null && C.conf ? (openBlock(), createElementBlock("p",
|
|
256
|
+
createElementVNode("div", _hoisted_21$1, [
|
|
257
|
+
(C = e.hoveredData) != null && C.conf ? (openBlock(), createElementBlock("p", _hoisted_22$1, toDisplayString(e.hoveredData.conf), 1)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
258
258
|
t[7] || (t[7] = createElementVNode("p", { class: "!ire-text-xs ire-uppercase ire-text-gray-500" }, "Price", -1)),
|
|
259
|
-
($ = e.hoveredData) != null && $.price ? (openBlock(), createElementBlock("div",
|
|
259
|
+
($ = e.hoveredData) != null && $.price ? (openBlock(), createElementBlock("div", _hoisted_23$1, [
|
|
260
260
|
createElementVNode("div", null, [
|
|
261
|
-
(V = e.hoveredData) != null && V.offer_price ? (openBlock(), createElementBlock("div",
|
|
262
|
-
createElementVNode("p",
|
|
263
|
-
createElementVNode("p",
|
|
261
|
+
(V = e.hoveredData) != null && V.offer_price ? (openBlock(), createElementBlock("div", _hoisted_25$1, [
|
|
262
|
+
createElementVNode("p", _hoisted_26$1, toDisplayString(Number((E = e.hoveredData) == null ? void 0 : E.price).toLocaleString()), 1),
|
|
263
|
+
createElementVNode("p", _hoisted_27, [
|
|
264
264
|
createTextVNode(toDisplayString(Number((D = e.hoveredData) == null ? void 0 : D.offer_price).toLocaleString()), 1),
|
|
265
265
|
t[6] || (t[6] = createElementVNode("sup", { class: "!ire-text-sm" }, "$", -1))
|
|
266
266
|
])
|
|
267
|
-
])) : (openBlock(), createElementBlock("p",
|
|
267
|
+
])) : (openBlock(), createElementBlock("p", _hoisted_24$1, [
|
|
268
268
|
createTextVNode(toDisplayString(Number(e.hoveredData.price).toLocaleString()), 1),
|
|
269
269
|
t[5] || (t[5] = createElementVNode("sup", { class: "!ire-text-sm" }, "$", -1))
|
|
270
270
|
]))
|
|
@@ -272,8 +272,8 @@ const _hoisted_1$f = {
|
|
|
272
272
|
])) : createCommentVNode("", !0)
|
|
273
273
|
], 64))
|
|
274
274
|
]),
|
|
275
|
-
createElementVNode("div",
|
|
276
|
-
createElementVNode("p",
|
|
275
|
+
createElementVNode("div", _hoisted_28, [
|
|
276
|
+
createElementVNode("p", _hoisted_29, [
|
|
277
277
|
createTextVNode(toDisplayString((S = (N = e.hoveredData) == null ? void 0 : N.type) == null ? void 0 : S.area_m2) + " M", 1),
|
|
278
278
|
t[8] || (t[8] = createElementVNode("sup", { class: "ire-bg-white !ire-text-xs" }, " 2 ", -1))
|
|
279
279
|
])
|
|
@@ -295,7 +295,7 @@ const _hoisted_1$f = {
|
|
|
295
295
|
hoverdData: {},
|
|
296
296
|
type: {}
|
|
297
297
|
},
|
|
298
|
-
setup(
|
|
298
|
+
setup(r) {
|
|
299
299
|
return (e, t) => (openBlock(), createElementBlock("div", _hoisted_1$e, [
|
|
300
300
|
e.$slots.header ? (openBlock(), createElementBlock("div", _hoisted_2$7, [
|
|
301
301
|
renderSlot(e.$slots, "header")
|
|
@@ -319,14 +319,14 @@ const _hoisted_1$f = {
|
|
|
319
319
|
projectMeta: {}
|
|
320
320
|
},
|
|
321
321
|
emits: ["changeComponent"],
|
|
322
|
-
setup(
|
|
323
|
-
const t = e,
|
|
324
|
-
if (
|
|
325
|
-
return
|
|
322
|
+
setup(r, { emit: e }) {
|
|
323
|
+
const t = e, o = r, c = ref(), v = ref(), m = ref(null), y = computed(() => {
|
|
324
|
+
if (o.project)
|
|
325
|
+
return o.project.svg;
|
|
326
326
|
});
|
|
327
327
|
computed(() => {
|
|
328
328
|
var d, s;
|
|
329
|
-
const g = (s = (d =
|
|
329
|
+
const g = (s = (d = o.projectMeta) == null ? void 0 : d.find(
|
|
330
330
|
(n) => (n == null ? void 0 : n.meta_key) === "project_img_contain"
|
|
331
331
|
)) == null ? void 0 : s.meta_value;
|
|
332
332
|
return JSON.parse((g == null ? void 0 : g.toString()) || "false");
|
|
@@ -347,29 +347,29 @@ const _hoisted_1$f = {
|
|
|
347
347
|
const d = g.parentElement;
|
|
348
348
|
if (d && (d == null ? void 0 : d.nodeName) === "g") {
|
|
349
349
|
const p = d == null ? void 0 : d.getAttribute("id");
|
|
350
|
-
if (!p || (m.value = ((s =
|
|
350
|
+
if (!p || (m.value = ((s = o.project) == null ? void 0 : s.polygon_data.find((b) => (b == null ? void 0 : b.key) === p)) || null, !m.value)) return;
|
|
351
351
|
const k = (n = m.value) == null ? void 0 : n.id;
|
|
352
352
|
switch ((i = m.value) == null ? void 0 : i.type) {
|
|
353
353
|
case "floor":
|
|
354
|
-
const b = (u =
|
|
354
|
+
const b = (u = o.floors) == null ? void 0 : u.find(
|
|
355
355
|
($) => $.id === k
|
|
356
356
|
);
|
|
357
357
|
v.value = b;
|
|
358
358
|
break;
|
|
359
359
|
case "block":
|
|
360
|
-
const w = (l =
|
|
360
|
+
const w = (l = o.blocks) == null ? void 0 : l.find(
|
|
361
361
|
($) => ($ == null ? void 0 : $.id) === k
|
|
362
362
|
);
|
|
363
363
|
v.value = w;
|
|
364
364
|
break;
|
|
365
365
|
case "flat":
|
|
366
|
-
const x = (a =
|
|
366
|
+
const x = (a = o.flats) == null ? void 0 : a.find(
|
|
367
367
|
($) => ($ == null ? void 0 : $.id) === k
|
|
368
368
|
);
|
|
369
369
|
v.value = x;
|
|
370
370
|
break;
|
|
371
371
|
case "tooltip":
|
|
372
|
-
const C = (h =
|
|
372
|
+
const C = (h = o.actions) == null ? void 0 : h.find(
|
|
373
373
|
($) => ($ == null ? void 0 : $.id) === k
|
|
374
374
|
);
|
|
375
375
|
v.value = C;
|
|
@@ -397,15 +397,15 @@ const _hoisted_1$f = {
|
|
|
397
397
|
class: "ire-left-0 ire-top-0 ire-h-full ire-w-full"
|
|
398
398
|
}, null, 8, _hoisted_2$6),
|
|
399
399
|
(openBlock(), createElementBlock("div", {
|
|
400
|
-
|
|
400
|
+
innerHTML: unref(y),
|
|
401
|
+
key: unref(y),
|
|
402
|
+
class: normalizeClass(["canvas ire-absolute ire-left-0 ire-top-0 ire-h-full ire-w-full [&_path]:ire-cursor-pointer [&_path]:ire-fill-[var(--path-color)] [&_path]:ire-transition-all [&_svg]:ire-h-full [&_svg]:ire-w-full", [
|
|
401
403
|
{
|
|
402
404
|
"hover:[&_path]:ire-fill-[var(--reserved-color)]": v.value && ((l = v.value) == null ? void 0 : l.conf) === "reserved",
|
|
403
405
|
"hover:[&_path]:ire-fill-[var(--sold-color)]": v.value && ((a = v.value) == null ? void 0 : a.conf) === "sold",
|
|
404
406
|
"hover:[&_path]:ire-fill-[var(--path-hover-color)]": !((h = v.value) != null && h.conf)
|
|
405
407
|
}
|
|
406
408
|
]]),
|
|
407
|
-
innerHTML: unref(y),
|
|
408
|
-
key: unref(y),
|
|
409
409
|
onMouseover: _,
|
|
410
410
|
onClick: f
|
|
411
411
|
}, null, 42, _hoisted_3$5))
|
|
@@ -432,13 +432,13 @@ const _hoisted_1$f = {
|
|
|
432
432
|
modelModifiers: {}
|
|
433
433
|
}),
|
|
434
434
|
emits: ["update:modelValue"],
|
|
435
|
-
setup(
|
|
436
|
-
const e = useModel(
|
|
437
|
-
return (t,
|
|
435
|
+
setup(r) {
|
|
436
|
+
const e = useModel(r, "modelValue");
|
|
437
|
+
return (t, o) => (openBlock(), createElementBlock("div", _hoisted_1$c, [
|
|
438
438
|
t.label ? (openBlock(), createElementBlock("p", _hoisted_2$5, toDisplayString(t.label), 1)) : createCommentVNode("", !0),
|
|
439
439
|
createElementVNode("div", _hoisted_3$4, [
|
|
440
440
|
withDirectives(createElementVNode("select", {
|
|
441
|
-
"onUpdate:modelValue":
|
|
441
|
+
"onUpdate:modelValue": o[0] || (o[0] = (c) => e.value = c),
|
|
442
442
|
class: "ire-w-full ire-cursor-pointer ire-appearance-none ire-rounded-none ire-bg-transparent ire-py-2 ire-pl-3 ire-pr-8 ire-text-sm ire-text-slate-700 ire-shadow-sm ire-transition ire-duration-300 ire-ease-linear placeholder:ire-text-slate-400 hover:ire-border-slate-400 focus:ire-border-slate-400 focus:ire-shadow-md focus:ire-outline-none"
|
|
443
443
|
}, [
|
|
444
444
|
(openBlock(!0), createElementBlock(Fragment, null, renderList(t.data, (c) => {
|
|
@@ -451,7 +451,7 @@ const _hoisted_1$f = {
|
|
|
451
451
|
], 512), [
|
|
452
452
|
[vModelSelect, e.value]
|
|
453
453
|
]),
|
|
454
|
-
|
|
454
|
+
o[1] || (o[1] = createElementVNode("svg", {
|
|
455
455
|
xmlns: "http://www.w3.org/2000/svg",
|
|
456
456
|
fill: "none",
|
|
457
457
|
viewBox: "0 0 24 24",
|
|
@@ -468,10 +468,10 @@ const _hoisted_1$f = {
|
|
|
468
468
|
])
|
|
469
469
|
]));
|
|
470
470
|
}
|
|
471
|
-
}), _export_sfc = (
|
|
472
|
-
const t =
|
|
473
|
-
for (const [
|
|
474
|
-
t[
|
|
471
|
+
}), _export_sfc = (r, e) => {
|
|
472
|
+
const t = r.__vccOpts || r;
|
|
473
|
+
for (const [o, c] of e)
|
|
474
|
+
t[o] = c;
|
|
475
475
|
return t;
|
|
476
476
|
}, _sfc_main$c = {}, _hoisted_1$b = {
|
|
477
477
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -480,7 +480,7 @@ const _hoisted_1$f = {
|
|
|
480
480
|
viewBox: "0 0 32 32",
|
|
481
481
|
fill: "none"
|
|
482
482
|
};
|
|
483
|
-
function _sfc_render$3(
|
|
483
|
+
function _sfc_render$3(r, e) {
|
|
484
484
|
return openBlock(), createElementBlock("svg", _hoisted_1$b, e[0] || (e[0] = [
|
|
485
485
|
createElementVNode("path", {
|
|
486
486
|
d: "M22.7074 16.7076L12.7074 26.7076C12.6145 26.8005 12.5042 26.8742 12.3828 26.9245C12.2614 26.9747 12.1313 27.0006 11.9999 27.0006C11.8686 27.0006 11.7384 26.9747 11.617 26.9245C11.4957 26.8742 11.3854 26.8005 11.2924 26.7076C11.1995 26.6147 11.1258 26.5044 11.0756 26.383C11.0253 26.2616 10.9994 26.1315 10.9994 26.0001C10.9994 25.8687 11.0253 25.7386 11.0756 25.6172C11.1258 25.4958 11.1995 25.3855 11.2924 25.2926L20.5862 16.0001L11.2924 6.70757C11.1048 6.51993 10.9994 6.26543 10.9994 6.00007C10.9994 5.7347 11.1048 5.48021 11.2924 5.29257C11.4801 5.10493 11.7346 4.99951 11.9999 4.99951C12.2653 4.99951 12.5198 5.10493 12.7074 5.29257L22.7074 15.2926C22.8004 15.3854 22.8742 15.4957 22.9245 15.6171C22.9748 15.7385 23.0007 15.8687 23.0007 16.0001C23.0007 16.1315 22.9748 16.2616 22.9245 16.383C22.8742 16.5044 22.8004 16.6147 22.7074 16.7076Z",
|
|
@@ -490,7 +490,7 @@ function _sfc_render$3(o, e) {
|
|
|
490
490
|
}
|
|
491
491
|
const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$3]]), _hoisted_1$a = { class: "ire-group ire-flex ire-w-fit ire-cursor-pointer ire-items-center ire-gap-1 ire-rounded-lg ire-border ire-bg-gray-50 ire-px-4 ire-py-2 ire-shadow-sm ire-transition-all hover:ire-bg-black lg:ire-px-5 lg:ire-py-2" }, _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
492
492
|
__name: "BackButton",
|
|
493
|
-
setup(
|
|
493
|
+
setup(r) {
|
|
494
494
|
return (e, t) => (openBlock(), createElementBlock("div", _hoisted_1$a, [
|
|
495
495
|
createVNode(ArrowRight, { class: "ire-w-6 ire-rotate-180 group-hover:[&_path]:ire-fill-white" }),
|
|
496
496
|
t[0] || (t[0] = createElementVNode("p", { class: "!ire-text-sm group-hover:!ire-text-white lg:!ire-text-balance" }, " Back ", -1))
|
|
@@ -506,23 +506,23 @@ const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_ren
|
|
|
506
506
|
actions: {}
|
|
507
507
|
},
|
|
508
508
|
emits: ["changeComponent"],
|
|
509
|
-
setup(
|
|
510
|
-
const t = e,
|
|
509
|
+
setup(r, { emit: e }) {
|
|
510
|
+
const t = e, o = r, c = ref(), v = ref(), m = ref(), y = ref(null), _ = ref(), f = ref(), g = computed$1(() => {
|
|
511
511
|
var l;
|
|
512
|
-
if ((l =
|
|
513
|
-
return
|
|
514
|
-
}), d = computed$1(() =>
|
|
512
|
+
if ((l = o.floor) != null && l.svg)
|
|
513
|
+
return o.floor.svg;
|
|
514
|
+
}), d = computed$1(() => o.floors.filter(
|
|
515
515
|
(l) => {
|
|
516
516
|
var a, h;
|
|
517
517
|
return (
|
|
518
518
|
// floorItem.conf !== "reserved" &&
|
|
519
519
|
// floorItem.conf !== "sold" &&
|
|
520
|
-
(a =
|
|
520
|
+
(a = o.floor) != null && a.block_id ? (l == null ? void 0 : l.block_id) === ((h = o.floor) == null ? void 0 : h.block_id) : !(l != null && l.block_id)
|
|
521
521
|
);
|
|
522
522
|
}
|
|
523
523
|
).map((l) => {
|
|
524
524
|
var h, p;
|
|
525
|
-
const a = (h =
|
|
525
|
+
const a = (h = o.blocks) == null ? void 0 : h.find(
|
|
526
526
|
(k) => {
|
|
527
527
|
var b;
|
|
528
528
|
return (k == null ? void 0 : k.id) === ((b = l == null ? void 0 : l.block_id) == null ? void 0 : b.toString());
|
|
@@ -543,14 +543,14 @@ const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_ren
|
|
|
543
543
|
var l;
|
|
544
544
|
c.value && ((l = c.value) == null ? void 0 : l.querySelectorAll("g")).forEach((h) => {
|
|
545
545
|
var b, w, x, C, $, V;
|
|
546
|
-
const p = h == null ? void 0 : h.getAttribute("id"), k = (w = (b =
|
|
546
|
+
const p = h == null ? void 0 : h.getAttribute("id"), k = (w = (b = o.floor) == null ? void 0 : b.polygon_data) == null ? void 0 : w.find(
|
|
547
547
|
(E) => (E == null ? void 0 : E.key) === p
|
|
548
548
|
);
|
|
549
|
-
if (
|
|
550
|
-
if ((x =
|
|
551
|
-
h.setAttribute("conf", ((C =
|
|
549
|
+
if (o.flats)
|
|
550
|
+
if ((x = o.floor) != null && x.conf)
|
|
551
|
+
h.setAttribute("conf", ((C = o.floor) == null ? void 0 : C.conf) || "");
|
|
552
552
|
else {
|
|
553
|
-
const E = ($ =
|
|
553
|
+
const E = ($ = o.flats) == null ? void 0 : $.find(
|
|
554
554
|
(D) => (D == null ? void 0 : D.id) === (k == null ? void 0 : k.id)
|
|
555
555
|
);
|
|
556
556
|
h == null || h.setAttribute("conf", ((V = E == null ? void 0 : E.conf) == null ? void 0 : V.toString()) || "");
|
|
@@ -558,7 +558,7 @@ const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_ren
|
|
|
558
558
|
});
|
|
559
559
|
}, u = () => {
|
|
560
560
|
var l;
|
|
561
|
-
(l =
|
|
561
|
+
(l = o.floor) != null && l.block_id ? t("changeComponent", "block", f.value) : t("changeComponent", "project", null);
|
|
562
562
|
};
|
|
563
563
|
return watch(
|
|
564
564
|
() => v.value,
|
|
@@ -568,9 +568,9 @@ const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_ren
|
|
|
568
568
|
const a = l == null ? void 0 : l.parentElement;
|
|
569
569
|
if (a && (a == null ? void 0 : a.nodeName) === "g") {
|
|
570
570
|
const C = a.getAttribute("id");
|
|
571
|
-
if (!C || (m.value = ((p = (h =
|
|
571
|
+
if (!C || (m.value = ((p = (h = o.floor) == null ? void 0 : h.polygon_data) == null ? void 0 : p.find(($) => ($ == null ? void 0 : $.key) === C)) || null, !m.value)) return;
|
|
572
572
|
if (((k = m.value) == null ? void 0 : k.type) === "flat") {
|
|
573
|
-
const $ = (b =
|
|
573
|
+
const $ = (b = o.flats) == null ? void 0 : b.find(
|
|
574
574
|
(V) => {
|
|
575
575
|
var E;
|
|
576
576
|
return (V == null ? void 0 : V.id) === ((E = m.value) == null ? void 0 : E.id);
|
|
@@ -578,7 +578,7 @@ const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_ren
|
|
|
578
578
|
);
|
|
579
579
|
y.value = $ ?? null;
|
|
580
580
|
} else if (((w = m.value) == null ? void 0 : w.type) === "tooltip") {
|
|
581
|
-
const $ = (x =
|
|
581
|
+
const $ = (x = o.actions) == null ? void 0 : x.find(
|
|
582
582
|
(V) => {
|
|
583
583
|
var E;
|
|
584
584
|
return (V == null ? void 0 : V.id) === ((E = m.value) == null ? void 0 : E.id);
|
|
@@ -594,7 +594,7 @@ const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_ren
|
|
|
594
594
|
() => _.value,
|
|
595
595
|
() => {
|
|
596
596
|
var a;
|
|
597
|
-
const l = (a =
|
|
597
|
+
const l = (a = o.floors) == null ? void 0 : a.find(
|
|
598
598
|
(h) => (h == null ? void 0 : h.id) === (_ == null ? void 0 : _.value)
|
|
599
599
|
);
|
|
600
600
|
l != null && l.conf || (l && t("changeComponent", "floor", l), setTimeout(() => {
|
|
@@ -603,15 +603,15 @@ const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_ren
|
|
|
603
603
|
}
|
|
604
604
|
), onMounted(() => {
|
|
605
605
|
var l, a, h;
|
|
606
|
-
f.value = (l =
|
|
606
|
+
f.value = (l = o.blocks) == null ? void 0 : l.find(
|
|
607
607
|
(p) => {
|
|
608
608
|
var k, b;
|
|
609
|
-
return (p == null ? void 0 : p.id) === ((b = (k =
|
|
609
|
+
return (p == null ? void 0 : p.id) === ((b = (k = o.floor) == null ? void 0 : k.block_id) == null ? void 0 : b.toString());
|
|
610
610
|
}
|
|
611
611
|
), _.value = (h = (a = d.value) == null ? void 0 : a.find(
|
|
612
612
|
(p) => {
|
|
613
613
|
var k;
|
|
614
|
-
return (p == null ? void 0 : p.value) == ((k =
|
|
614
|
+
return (p == null ? void 0 : p.value) == ((k = o.floor) == null ? void 0 : k.id);
|
|
615
615
|
}
|
|
616
616
|
)) == null ? void 0 : h.value, i();
|
|
617
617
|
}), (l, a) => {
|
|
@@ -642,9 +642,9 @@ const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_ren
|
|
|
642
642
|
(openBlock(), createElementBlock("div", {
|
|
643
643
|
ref_key: "svgRef",
|
|
644
644
|
ref: c,
|
|
645
|
-
class: "canvas ire-absolute ire-left-0 ire-top-0 ire-h-full ire-w-full [&_g[conf=reserved]_path]:ire-fill-[var(--reserved-color)] [&_g[conf=sold]_path]:ire-fill-[var(--sold-color)] [&_path]:ire-cursor-pointer [&_path]:ire-fill-[var(--path-color)] [&_path]:!ire-transition-all hover:[&_path]:ire-fill-[var(--path-hover-color)]",
|
|
646
645
|
innerHTML: g.value,
|
|
647
646
|
key: g.value,
|
|
647
|
+
class: "canvas ire-absolute ire-left-0 ire-top-0 ire-h-full ire-w-full [&_g[conf=reserved]_path]:ire-fill-[var(--reserved-color)] [&_g[conf=sold]_path]:ire-fill-[var(--sold-color)] [&_path]:ire-cursor-pointer [&_path]:ire-fill-[var(--path-color)] [&_path]:!ire-transition-all hover:[&_path]:ire-fill-[var(--path-hover-color)] [&_svg]:ire-h-full [&_svg]:ire-w-full",
|
|
648
648
|
onMouseover: s,
|
|
649
649
|
onClick: n
|
|
650
650
|
}, null, 40, _hoisted_4$3))
|
|
@@ -662,7 +662,7 @@ const ArrowRight = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_ren
|
|
|
662
662
|
fill: "none",
|
|
663
663
|
xmlns: "http://www.w3.org/2000/svg"
|
|
664
664
|
};
|
|
665
|
-
function _sfc_render$2(
|
|
665
|
+
function _sfc_render$2(r, e) {
|
|
666
666
|
return openBlock(), createElementBlock("svg", _hoisted_1$8, e[0] || (e[0] = [
|
|
667
667
|
createStaticVNode('<path d="M5.25 20.25H4.5C4.30109 20.25 4.11032 20.171 3.96967 20.0303C3.82902 19.8897 3.75 19.6989 3.75 19.5V18.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10.5 8.25H8.25" stroke="white" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10.5 20.25H9" stroke="white" stroke-linecap="round" stroke-linejoin="round"></path><path d="M15.75 15.75V13.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3.75 15V13.5" stroke="white" stroke-linecap="round" stroke-linejoin="round"></path><path d="M14.25 20.25H15C15.1989 20.25 15.3897 20.171 15.5303 20.0303C15.671 19.8897 15.75 19.6989 15.75 19.5V18.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"></path><path d="M14.25 8.25H15C15.1989 8.25 15.3897 8.32902 15.5303 8.46967C15.671 8.61032 15.75 8.80109 15.75 9V9.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.25 8.25H4.5C4.30109 8.25 4.11032 8.32902 3.96967 8.46967C3.82902 8.61032 3.75 8.80109 3.75 9V9.75" stroke="white" stroke-linecap="round" stroke-linejoin="round"></path><path d="M15.75 15.75H19.5C19.6989 15.75 19.8897 15.671 20.0303 15.5303C20.171 15.3897 20.25 15.1989 20.25 15V4.5C20.25 4.30109 20.171 4.11032 20.0303 3.96967C19.8897 3.82902 19.6989 3.75 19.5 3.75H9C8.80109 3.75 8.61032 3.82902 8.46967 3.96967C8.32902 4.11032 8.25 4.30109 8.25 4.5V8.25" stroke="white" stroke-linecap="round" stroke-linejoin="round"></path>', 9)
|
|
668
668
|
]));
|
|
@@ -674,7 +674,7 @@ const FlatIcon = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_rende
|
|
|
674
674
|
fill: "none",
|
|
675
675
|
xmlns: "http://www.w3.org/2000/svg"
|
|
676
676
|
};
|
|
677
|
-
function _sfc_render$1(
|
|
677
|
+
function _sfc_render$1(r, e) {
|
|
678
678
|
return openBlock(), createElementBlock("svg", _hoisted_1$7, e[0] || (e[0] = [
|
|
679
679
|
createElementVNode("path", {
|
|
680
680
|
d: "M21 16.622V7.37824C20.9993 7.24472 20.9634 7.11375 20.8959 6.99853C20.8284 6.88331 20.7317 6.78793 20.6156 6.72199L12.3656 2.08137C12.2545 2.01719 12.1284 1.9834 12 1.9834C11.8716 1.9834 11.7455 2.01719 11.6344 2.08137L3.38437 6.72199C3.26827 6.78793 3.1716 6.88331 3.10411 6.99853C3.03663 7.11375 3.00072 7.24472 3 7.37824V16.622C3.00072 16.7555 3.03663 16.8865 3.10411 17.0017C3.1716 17.1169 3.26827 17.2123 3.38437 17.2782L11.6344 21.9189C11.7455 21.983 11.8716 22.0168 12 22.0168C12.1284 22.0168 12.2545 21.983 12.3656 21.9189L20.6156 17.2782C20.7317 17.2123 20.8284 17.1169 20.8959 17.0017C20.9634 16.8865 20.9993 16.7555 21 16.622V16.622Z",
|
|
@@ -721,17 +721,17 @@ const Cube = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$1]
|
|
|
721
721
|
floors: {}
|
|
722
722
|
},
|
|
723
723
|
emits: ["changeComponent"],
|
|
724
|
-
setup(
|
|
725
|
-
const t = e,
|
|
724
|
+
setup(r, { emit: e }) {
|
|
725
|
+
const t = e, o = r, c = ref(!0), v = ref(0), m = computed$1(() => {
|
|
726
726
|
var f, g, d, s, n, i;
|
|
727
|
-
const _ = c.value ? (d = (g = (f =
|
|
727
|
+
const _ = c.value ? (d = (g = (f = o.flat) == null ? void 0 : f.type) == null ? void 0 : g.image_2d) == null ? void 0 : d.length : (i = (n = (s = o.flat) == null ? void 0 : s.type) == null ? void 0 : n.image_3d) == null ? void 0 : i.length;
|
|
728
728
|
return ["I", "II", "III"].slice(0, _);
|
|
729
729
|
}), y = () => {
|
|
730
730
|
var f;
|
|
731
|
-
const _ = (f =
|
|
731
|
+
const _ = (f = o.floors) == null ? void 0 : f.find(
|
|
732
732
|
(g) => {
|
|
733
733
|
var d, s, n, i, u, l;
|
|
734
|
-
return ((d = g.floor_number) == null ? void 0 : d.toString()) === ((n = (s =
|
|
734
|
+
return ((d = g.floor_number) == null ? void 0 : d.toString()) === ((n = (s = o.flat) == null ? void 0 : s.floor_number) == null ? void 0 : n.toString()) && ((i = o.flat) != null && i.block_id ? ((u = g == null ? void 0 : g.block_id) == null ? void 0 : u.toString()) === ((l = o.flat) == null ? void 0 : l.block_id) : !(g != null && g.block_id));
|
|
735
735
|
}
|
|
736
736
|
);
|
|
737
737
|
_ ? t("changeComponent", "floor", _) : t("changeComponent", "project", null);
|
|
@@ -743,7 +743,7 @@ const Cube = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$1]
|
|
|
743
743
|
}
|
|
744
744
|
), onMounted(() => {
|
|
745
745
|
var _, f;
|
|
746
|
-
(f = (_ =
|
|
746
|
+
(f = (_ = o.flat) == null ? void 0 : _.type) != null && f.image_2d || (c.value = !1);
|
|
747
747
|
}), (_, f) => (openBlock(), createElementBlock("div", null, [
|
|
748
748
|
createVNode(_sfc_main$f, { "hoverd-data": null }, {
|
|
749
749
|
header: withCtx(() => [
|
|
@@ -759,15 +759,15 @@ const Cube = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$1]
|
|
|
759
759
|
mode: "out-in"
|
|
760
760
|
}, {
|
|
761
761
|
default: withCtx(() => {
|
|
762
|
-
var B, M, L, I, A, H, z, W, K, Z, q, U, J, Q, X, Y, G, ee, te,
|
|
762
|
+
var B, M, L, I, A, H, z, W, K, Z, q, U, J, Q, X, Y, G, ee, te, re, oe, ie, le, se;
|
|
763
763
|
return [
|
|
764
764
|
c.value && ((I = (L = (M = (B = _.flat) == null ? void 0 : B.type) == null ? void 0 : M.image_2d) == null ? void 0 : L[v.value]) != null && I.url) ? (openBlock(), createElementBlock("img", {
|
|
765
765
|
key: (W = (z = (H = (A = _.flat) == null ? void 0 : A.type) == null ? void 0 : H.image_2d) == null ? void 0 : z[v.value]) == null ? void 0 : W.url,
|
|
766
766
|
src: (U = (q = (Z = (K = _.flat) == null ? void 0 : K.type) == null ? void 0 : Z.image_2d) == null ? void 0 : q[v.value]) == null ? void 0 : U.url,
|
|
767
767
|
class: "ire-h-full ire-w-full ire-object-contain ire-object-top lg:ire-h-96 lg:ire-w-96"
|
|
768
768
|
}, null, 8, _hoisted_3$2)) : (Y = (X = (Q = (J = _.flat) == null ? void 0 : J.type) == null ? void 0 : Q.image_3d) == null ? void 0 : X[v.value]) != null && Y.url ? (openBlock(), createElementBlock("img", {
|
|
769
|
-
src: (
|
|
770
|
-
key: (se = (le = (ie = (
|
|
769
|
+
src: (re = (te = (ee = (G = _.flat) == null ? void 0 : G.type) == null ? void 0 : ee.image_3d) == null ? void 0 : te[v.value]) == null ? void 0 : re.url,
|
|
770
|
+
key: (se = (le = (ie = (oe = _.flat) == null ? void 0 : oe.type) == null ? void 0 : ie.image_3d) == null ? void 0 : le[v.value]) == null ? void 0 : se.url,
|
|
771
771
|
class: "ire-h-full ire-w-full ire-object-contain ire-object-top lg:ire-h-96 lg:ire-w-96"
|
|
772
772
|
}, null, 8, _hoisted_4$2)) : createCommentVNode("", !0)
|
|
773
773
|
];
|
|
@@ -880,7 +880,7 @@ const Cube = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$1]
|
|
|
880
880
|
height: "20",
|
|
881
881
|
viewBox: "0 0 50 50"
|
|
882
882
|
};
|
|
883
|
-
function _sfc_render(
|
|
883
|
+
function _sfc_render(r, e) {
|
|
884
884
|
return openBlock(), createElementBlock("svg", _hoisted_1$5, e[0] || (e[0] = [
|
|
885
885
|
createElementVNode("path", { d: "M 9.15625 6.3125 L 6.3125 9.15625 L 22.15625 25 L 6.21875 40.96875 L 9.03125 43.78125 L 25 27.84375 L 40.9375 43.78125 L 43.78125 40.9375 L 27.84375 25 L 43.6875 9.15625 L 40.84375 6.3125 L 25 22.15625 Z" }, null, -1)
|
|
886
886
|
]));
|
|
@@ -888,17 +888,17 @@ function _sfc_render(o, e) {
|
|
|
888
888
|
const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]), _hoisted_1$4 = { class: "ire-fixed ire-left-0 ire-top-0 ire-z-[99999] ire-flex ire-h-full ire-w-full ire-cursor-pointer ire-items-center ire-justify-center ire-p-4 lg:ire-p-32" }, _hoisted_2$2 = { class: "ire-relative ire-h-fit ire-max-h-[80%] ire-min-w-full ire-cursor-default ire-overflow-y-auto ire-rounded-l-sm ire-bg-white lg:ire-min-w-[500px]" }, _hoisted_3$1 = { class: "ire-sticky ire-right-full ire-top-0 ire-flex ire-w-full ire-flex-row-reverse" }, _hoisted_4$1 = { class: "ire-h-full ire-w-full ire-cursor-auto ire-p-5 ire-pt-1" }, _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
889
889
|
__name: "PreviewModal",
|
|
890
890
|
emits: ["close"],
|
|
891
|
-
setup(
|
|
891
|
+
setup(r) {
|
|
892
892
|
return (e, t) => (openBlock(), createElementBlock("div", _hoisted_1$4, [
|
|
893
893
|
createElementVNode("div", {
|
|
894
894
|
class: "ire-absolute ire-left-0 ire-top-0 ire-h-full ire-w-full ire-bg-black/40 ire-transition-all",
|
|
895
|
-
onClick: t[0] || (t[0] = (
|
|
895
|
+
onClick: t[0] || (t[0] = (o) => e.$emit("close"))
|
|
896
896
|
}),
|
|
897
897
|
createElementVNode("div", _hoisted_2$2, [
|
|
898
898
|
createElementVNode("div", _hoisted_3$1, [
|
|
899
899
|
createElementVNode("div", {
|
|
900
900
|
class: "ire-z-[999] ire-mx-3 ire-my-2 ire-w-fit ire-cursor-pointer ire-rounded-full ire-p-1 ire-transition-all hover:ire-bg-gray-600 [&_path]:ire-fill-gray-400 [&_path]:hover:ire-fill-white [&_svg]:ire-h-3 [&_svg]:ire-w-3",
|
|
901
|
-
onClick: t[1] || (t[1] = (
|
|
901
|
+
onClick: t[1] || (t[1] = (o) => e.$emit("close"))
|
|
902
902
|
}, [
|
|
903
903
|
createVNode(Close)
|
|
904
904
|
])
|
|
@@ -914,7 +914,7 @@ const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]
|
|
|
914
914
|
props: {
|
|
915
915
|
editor: {}
|
|
916
916
|
},
|
|
917
|
-
setup(
|
|
917
|
+
setup(r) {
|
|
918
918
|
return (e, t) => (openBlock(), createElementBlock("div", {
|
|
919
919
|
class: "[&_ul]:ire-columns-1 [&_a]:ire-cursor-pointer [&_a]:ire-text-[#2980b9] [&_a]:ire-underline [&_ul]:ire-flex [&_ul]:ire-flex-col [&_ul]:ire-gap-2 [&_ul_li]:ire-relative [&_ul_li]:ire-pl-[20px] [&_ul_li]:after:ire-absolute [&_ul_li]:after:ire-left-2 [&_ul_li]:after:ire-top-[10px] [&_ul_li]:after:ire-h-[4px] [&_ul_li]:after:ire-w-[4px] [&_ul_li]:after:ire-rounded-[50%] [&_ul_li]:after:ire-bg-black",
|
|
920
920
|
innerHTML: e.editor
|
|
@@ -925,11 +925,11 @@ const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]
|
|
|
925
925
|
props: {
|
|
926
926
|
modalData: {}
|
|
927
927
|
},
|
|
928
|
-
setup(
|
|
928
|
+
setup(r) {
|
|
929
929
|
return (e, t) => {
|
|
930
|
-
var
|
|
930
|
+
var o, c, v, m, y, _, f, g, d, s, n, i;
|
|
931
931
|
return openBlock(), createElementBlock("div", null, [
|
|
932
|
-
createElementVNode("p", _hoisted_1$2, toDisplayString((c = (
|
|
932
|
+
createElementVNode("p", _hoisted_1$2, toDisplayString((c = (o = e.modalData) == null ? void 0 : o.modalObject) == null ? void 0 : c.title), 1),
|
|
933
933
|
createVNode(_sfc_main$4, {
|
|
934
934
|
editor: (m = (v = e.modalData) == null ? void 0 : v.modalObject) == null ? void 0 : m.description
|
|
935
935
|
}, null, 8, ["editor"]),
|
|
@@ -951,11 +951,11 @@ const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]
|
|
|
951
951
|
actions: {}
|
|
952
952
|
},
|
|
953
953
|
emits: ["changeComponent"],
|
|
954
|
-
setup(
|
|
955
|
-
const t = e,
|
|
954
|
+
setup(r, { emit: e }) {
|
|
955
|
+
const t = e, o = r, c = ref(), v = ref(), m = ref(), y = ref(), _ = computed$1(() => {
|
|
956
956
|
var d, s;
|
|
957
|
-
if ((d =
|
|
958
|
-
return (s =
|
|
957
|
+
if ((d = o.block) != null && d.svg)
|
|
958
|
+
return (s = o.block) == null ? void 0 : s.svg;
|
|
959
959
|
}), f = (d) => {
|
|
960
960
|
const s = d.target;
|
|
961
961
|
s && (v.value = s);
|
|
@@ -976,9 +976,9 @@ const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]
|
|
|
976
976
|
const s = d == null ? void 0 : d.parentElement;
|
|
977
977
|
if (s && (s == null ? void 0 : s.nodeName) === "g") {
|
|
978
978
|
const b = s == null ? void 0 : s.getAttribute("id");
|
|
979
|
-
if (!b || (m.value = ((i = (n =
|
|
979
|
+
if (!b || (m.value = ((i = (n = o.block) == null ? void 0 : n.polygon_data) == null ? void 0 : i.find((w) => (w == null ? void 0 : w.key) === b)) || null, !m.value)) return;
|
|
980
980
|
if (((u = m.value) == null ? void 0 : u.type) === "floor") {
|
|
981
|
-
const w = (l =
|
|
981
|
+
const w = (l = o.floors) == null ? void 0 : l.find(
|
|
982
982
|
(x) => {
|
|
983
983
|
var C;
|
|
984
984
|
return (x == null ? void 0 : x.id) === ((C = m.value) == null ? void 0 : C.id);
|
|
@@ -986,7 +986,7 @@ const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]
|
|
|
986
986
|
);
|
|
987
987
|
y.value = w;
|
|
988
988
|
} else if (((a = m.value) == null ? void 0 : a.type) === "flat") {
|
|
989
|
-
const w = (h =
|
|
989
|
+
const w = (h = o.flats) == null ? void 0 : h.find(
|
|
990
990
|
(x) => {
|
|
991
991
|
var C;
|
|
992
992
|
return (x == null ? void 0 : x.id) === ((C = m.value) == null ? void 0 : C.id);
|
|
@@ -994,7 +994,7 @@ const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]
|
|
|
994
994
|
);
|
|
995
995
|
y.value = w;
|
|
996
996
|
} else if (((p = m.value) == null ? void 0 : p.type) === "tooltip") {
|
|
997
|
-
const w = (k =
|
|
997
|
+
const w = (k = o.actions) == null ? void 0 : k.find(
|
|
998
998
|
(x) => {
|
|
999
999
|
var C;
|
|
1000
1000
|
return (x == null ? void 0 : x.id) === ((C = m.value) == null ? void 0 : C.id);
|
|
@@ -1033,15 +1033,15 @@ const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]
|
|
|
1033
1033
|
(openBlock(), createElementBlock("div", {
|
|
1034
1034
|
ref_key: "svgRef",
|
|
1035
1035
|
ref: c,
|
|
1036
|
-
|
|
1036
|
+
innerHTML: _.value,
|
|
1037
|
+
key: _.value,
|
|
1038
|
+
class: normalizeClass(["canvas ire-absolute ire-left-0 ire-top-0 ire-h-full ire-w-full [&_path]:ire-cursor-pointer [&_path]:ire-fill-[var(--path-color)] [&_path]:ire-transition-all [&_svg]:ire-h-full [&_svg]:ire-w-full", [
|
|
1037
1039
|
{
|
|
1038
1040
|
"hover:[&_path]:ire-fill-[var(--reserved-color)]": ((a = y.value) == null ? void 0 : a.conf) === "reserved",
|
|
1039
1041
|
"hover:[&_path]:ire-fill-[var(--sold-color)]": ((h = y.value) == null ? void 0 : h.conf) === "sold",
|
|
1040
1042
|
"hover:[&_path]:ire-fill-[var(--path-hover-color)]": !((p = y.value) != null && p.conf)
|
|
1041
1043
|
}
|
|
1042
1044
|
]]),
|
|
1043
|
-
innerHTML: _.value,
|
|
1044
|
-
key: _.value,
|
|
1045
1045
|
onMouseover: f,
|
|
1046
1046
|
onClick: g
|
|
1047
1047
|
}, null, 42, _hoisted_4))
|
|
@@ -1058,16 +1058,16 @@ const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]
|
|
|
1058
1058
|
shortcodeDataProps: {}
|
|
1059
1059
|
},
|
|
1060
1060
|
setup(__props) {
|
|
1061
|
-
var
|
|
1061
|
+
var r, e, t, o, c, v, m, y, _, f, g, d;
|
|
1062
1062
|
const props = __props, getMeta = (s) => props.shortcodeDataProps.meta.find(
|
|
1063
1063
|
(n) => n.meta_key === s
|
|
1064
1064
|
), constants = ref({
|
|
1065
|
-
PREVIEW_PATH_COLOR: ((
|
|
1065
|
+
PREVIEW_PATH_COLOR: ((r = getMeta("path_color")) == null ? void 0 : r.meta_value) || "rgba(255, 255, 255, 0.3)",
|
|
1066
1066
|
PREVIEW_PATH_HOVER_COLOR: ((e = getMeta("path_hover_color")) == null ? void 0 : e.meta_value) || "rgba(250, 250, 250, 0.54)",
|
|
1067
1067
|
PREVIEW_RESERVED_COLOR: ((t = getMeta("reserved_color")) == null ? void 0 : t.meta_value) || "rgba(255, 247, 89, 0.53)",
|
|
1068
|
-
PREVIEW_SOLD_COLOR: ((
|
|
1068
|
+
PREVIEW_SOLD_COLOR: ((o = getMeta("sold_color")) == null ? void 0 : o.meta_value) || "rgba(219, 64, 64, 0.45)",
|
|
1069
1069
|
PREVIEW_STROKE_COLOR: ((c = getMeta("stroke_color")) == null ? void 0 : c.meta_value) || "rgba(0, 0, 0, 1)",
|
|
1070
|
-
PREVIEW_STROKE_WIDTH: +((v = getMeta("stroke_width")) == null ? void 0 : v.meta_value) ||
|
|
1070
|
+
PREVIEW_STROKE_WIDTH: +((v = getMeta("stroke_width")) == null ? void 0 : v.meta_value) || 1
|
|
1071
1071
|
}), colors = reactive({
|
|
1072
1072
|
path: (m = constants.value) == null ? void 0 : m.PREVIEW_PATH_COLOR,
|
|
1073
1073
|
path_hover: (y = constants.value) == null ? void 0 : y.PREVIEW_PATH_HOVER_COLOR,
|
|
@@ -1243,7 +1243,7 @@ const Close = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render]]
|
|
|
1243
1243
|
props: {
|
|
1244
1244
|
data: {}
|
|
1245
1245
|
},
|
|
1246
|
-
setup(
|
|
1246
|
+
setup(r) {
|
|
1247
1247
|
return (e, t) => (openBlock(), createElementBlock("div", null, [
|
|
1248
1248
|
createVNode(_sfc_main$1, { "shortcode-data-props": e.data }, null, 8, ["shortcode-data-props"])
|
|
1249
1249
|
]));
|
package/dist/styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.ire-pointer-events-none{pointer-events:none}.ire-fixed{position:fixed}.ire-absolute{position:absolute}.ire-relative{position:relative}.ire-sticky{position:sticky}.\!ire-bottom-10{bottom:2.5rem!important}.\!ire-right-10{right:2.5rem!important}.ire-left-0{left:0}.ire-right-2\.5{right:.625rem}.ire-right-full{right:100%}.ire-top-0{top:0}.ire-top-2\.5{top:.625rem}.ire-z-\[99999\]{z-index:99999}.ire-z-\[999\]{z-index:999}.ire-mx-3{margin-left:.75rem;margin-right:.75rem}.ire-my-2{margin-top:.5rem;margin-bottom:.5rem}.\!ire-mt-2{margin-top:.5rem!important}.ire-mb-3{margin-bottom:.75rem}.ire-ml-1{margin-left:.25rem}.ire-ml-4{margin-left:1rem}.ire-mt-1{margin-top:.25rem}.ire-mt-5{margin-top:1.25rem}.ire-inline-block{display:inline-block}.ire-flex{display:flex}.ire-hidden{display:none}.ire-h-10{height:2.5rem}.ire-h-5{height:1.25rem}.ire-h-\[400px\]{height:400px}.ire-h-\[48px\]{height:48px}.ire-h-fit{height:-moz-fit-content;height:fit-content}.ire-h-full{height:100%}.ire-max-h-\[80\%\]{max-height:80%}.ire-w-10{width:2.5rem}.ire-w-5{width:1.25rem}.ire-w-6{width:1.5rem}.ire-w-fit{width:-moz-fit-content;width:fit-content}.ire-w-full{width:100%}.ire-min-w-3{min-width:.75rem}.ire-min-w-36{min-width:9rem}.ire-min-w-\[150px\]{min-width:150px}.ire-min-w-full{min-width:100%}.ire-max-w-\[200px\]{max-width:200px}.-ire-translate-x-1{--tw-translate-x: -.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ire-translate-x-3{--tw-translate-x: .75rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ire-rotate-180{--tw-rotate: 180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ire-cursor-auto{cursor:auto}.ire-cursor-default{cursor:default}.ire-cursor-pointer{cursor:pointer}.ire-select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.ire-appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.ire-flex-row-reverse{flex-direction:row-reverse}.ire-flex-col{flex-direction:column}.ire-items-start{align-items:flex-start}.ire-items-center{align-items:center}.ire-justify-center{justify-content:center}.ire-justify-between{justify-content:space-between}.ire-gap-1{gap:.25rem}.ire-gap-2{gap:.5rem}.ire-gap-3{gap:.75rem}.ire-gap-5{gap:1.25rem}.ire-overflow-hidden{overflow:hidden}.ire-overflow-y-auto{overflow-y:auto}.ire-rounded-full{border-radius:9999px}.ire-rounded-lg{border-radius:.5rem}.ire-rounded-none{border-radius:0}.ire-rounded-l-sm{border-top-left-radius:.125rem;border-bottom-left-radius:.125rem}.ire-border{border-width:1px}.ire-border-b{border-bottom-width:1px}.ire-border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.ire-border-gray-800{--tw-border-opacity: 1;border-color:rgb(31 41 55 / var(--tw-border-opacity))}.ire-border-slate-200{--tw-border-opacity: 1;border-color:rgb(226 232 240 / var(--tw-border-opacity))}.ire-border-b-gray-200{--tw-border-opacity: 1;border-bottom-color:rgb(229 231 235 / var(--tw-border-opacity))}.\!ire-bg-primary{--tw-bg-opacity: 1 !important;background-color:rgb(30 41 59 / var(--tw-bg-opacity))!important}.ire-bg-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity))}.ire-bg-black\/40{background-color:#0006}.ire-bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.ire-bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.ire-bg-transparent{background-color:transparent}.ire-bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.\!ire-stroke-white{stroke:#fff!important}.ire-object-contain{-o-object-fit:contain;object-fit:contain}.ire-object-cover{-o-object-fit:cover;object-fit:cover}.ire-object-top{-o-object-position:top;object-position:top}.ire-p-1{padding:.25rem}.ire-p-2{padding:.5rem}.ire-p-3{padding:.75rem}.ire-p-4{padding:1rem}.ire-p-5{padding:1.25rem}.ire-p-6{padding:1.5rem}.ire-px-4{padding-left:1rem;padding-right:1rem}.ire-px-7{padding-left:1.75rem;padding-right:1.75rem}.ire-py-2{padding-top:.5rem;padding-bottom:.5rem}.ire-py-3{padding-top:.75rem;padding-bottom:.75rem}.ire-py-4{padding-top:1rem;padding-bottom:1rem}.ire-pl-3{padding-left:.75rem}.ire-pr-8{padding-right:2rem}.ire-pt-1{padding-top:.25rem}.ire-pt-\[50\%\]{padding-top:50%}.ire-text-center{text-align:center}.\!ire-text-2xl{font-size:1.5rem!important;line-height:2rem!important}.\!ire-text-3xl{font-size:1.875rem!important;line-height:2.25rem!important}.\!ire-text-lg{font-size:1.125rem!important;line-height:1.75rem!important}.\!ire-text-sm{font-size:.875rem!important;line-height:1.25rem!important}.\!ire-text-xs{font-size:.75rem!important;line-height:1rem!important}.ire-text-sm{font-size:.875rem;line-height:1.25rem}.ire-font-bold{font-weight:700}.ire-font-light{font-weight:300}.ire-font-semibold{font-weight:600}.ire-uppercase{text-transform:uppercase}.ire-capitalize{text-transform:capitalize}.\!ire-text-black{--tw-text-opacity: 1 !important;color:rgb(0 0 0 / var(--tw-text-opacity))!important}.\!ire-text-white{--tw-text-opacity: 1 !important;color:rgb(255 255 255 / var(--tw-text-opacity))!important}.ire-text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.ire-text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.ire-text-slate-700{--tw-text-opacity: 1;color:rgb(51 65 85 / var(--tw-text-opacity))}.ire-text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.ire-line-through{text-decoration-line:line-through}.ire-shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.ire-transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ire-transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ire-duration-300{transition-duration:.3s}.ire-ease-linear{transition-timing-function:linear}.label{margin-bottom:.25rem!important;font-size:.75rem;line-height:1rem;text-transform:capitalize;--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.canvas path{stroke:var(--stroke-color);stroke-width:var(--stroke-width)}.ire-fade-in-out-enter-from,.ire-fade-in-out-leave-to{opacity:0}.ire-fade-in-out-enter-active,.ire-fade-in-out-leave-active{transition:.3s ease-in-out}.ire-fade-in-out-enter-to,.ire-fade-in-out-leave-from{opacity:1}.placeholder\:ire-text-slate-400::-moz-placeholder{--tw-text-opacity: 1;color:rgb(148 163 184 / var(--tw-text-opacity))}.placeholder\:ire-text-slate-400::placeholder{--tw-text-opacity: 1;color:rgb(148 163 184 / var(--tw-text-opacity))}.hover\:ire-border-slate-400:hover{--tw-border-opacity: 1;border-color:rgb(148 163 184 / var(--tw-border-opacity))}.hover\:ire-bg-black:hover{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity))}.hover\:ire-bg-gray-600:hover{--tw-bg-opacity: 1;background-color:rgb(75 85 99 / var(--tw-bg-opacity))}.hover\:ire-bg-primary:hover{--tw-bg-opacity: 1;background-color:rgb(30 41 59 / var(--tw-bg-opacity))}.hover\:ire-text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.focus\:ire-border-slate-400:focus{--tw-border-opacity: 1;border-color:rgb(148 163 184 / var(--tw-border-opacity))}.focus\:ire-shadow-md:focus{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.focus\:ire-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.ire-group:hover .group-hover\:\!ire-text-white{--tw-text-opacity: 1 !important;color:rgb(255 255 255 / var(--tw-text-opacity))!important}@media (min-width: 1024px){.lg\:ire-block{display:block}.lg\:ire-h-96{height:24rem}.lg\:ire-w-96{width:24rem}.lg\:ire-w-auto{width:auto}.lg\:ire-min-w-\[250px\]{min-width:250px}.lg\:ire-min-w-\[500px\]{min-width:500px}.lg\:ire-flex-row{flex-direction:row}.lg\:ire-gap-20{gap:5rem}.lg\:\!ire-text-balance{text-wrap:balance!important}.lg\:ire-p-32{padding:8rem}.lg\:ire-px-0{padding-left:0;padding-right:0}.lg\:ire-px-5{padding-left:1.25rem;padding-right:1.25rem}.lg\:ire-py-2{padding-top:.5rem;padding-bottom:.5rem}.lg\:\!ire-text-xl{font-size:1.25rem!important;line-height:1.75rem!important}}.\[\&_a\]\:ire-cursor-pointer a{cursor:pointer}.\[\&_a\]\:ire-text-\[\#2980b9\] a{--tw-text-opacity: 1;color:rgb(41 128 185 / var(--tw-text-opacity))}.\[\&_a\]\:ire-underline a{text-decoration-line:underline}.\[\&_g\[conf\=reserved\]_path\]\:ire-fill-\[var\(--reserved-color\)\] g[conf=reserved] path{fill:var(--reserved-color)}.\[\&_g\[conf\=sold\]_path\]\:ire-fill-\[var\(--sold-color\)\] g[conf=sold] path{fill:var(--sold-color)}.\[\&_path\]\:ire-cursor-pointer path{cursor:pointer}.\[\&_path\]\:ire-fill-\[var\(--path-color\)\] path{fill:var(--path-color)}.\[\&_path\]\:ire-fill-gray-400 path{fill:#9ca3af}.\[\&_path\]\:\!ire-stroke-white path{stroke:#fff!important}.\[\&_path\]\:ire-stroke-black path{stroke:#000}.\[\&_path\]\:\!ire-transition-all path{transition-property:all!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.\[\&_path\]\:ire-transition-all path{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.\[\&_path\]\:hover\:ire-fill-white:hover path{fill:#fff}.hover\:\[\&_path\]\:ire-fill-\[var\(--path-hover-color\)\] path:hover{fill:var(--path-hover-color)}.hover\:\[\&_path\]\:ire-fill-\[var\(--reserved-color\)\] path:hover{fill:var(--reserved-color)}.hover\:\[\&_path\]\:ire-fill-\[var\(--sold-color\)\] path:hover{fill:var(--sold-color)}.ire-group:hover .group-hover\:\[\&_path\]\:ire-fill-white path{fill:#fff}.ire-group:hover .group-hover\:\[\&_path\]\:ire-stroke-white path{stroke:#fff}.\[\&_svg\]\:ire-h-3 svg{height:.75rem}.\[\&_svg\]\:ire-w-3 svg{width:.75rem}.\[\&_ul\]\:ire-flex ul{display:flex}.\[\&_ul\]\:ire-columns-1 ul{-moz-columns:1;columns:1}.\[\&_ul\]\:ire-flex-col ul{flex-direction:column}.\[\&_ul\]\:ire-gap-2 ul{gap:.5rem}.\[\&_ul_li\]\:ire-relative ul li{position:relative}.\[\&_ul_li\]\:ire-pl-\[20px\] ul li{padding-left:20px}.\[\&_ul_li\]\:after\:ire-absolute ul li:after{content:var(--tw-content);position:absolute}.\[\&_ul_li\]\:after\:ire-left-2 ul li:after{content:var(--tw-content);left:.5rem}.\[\&_ul_li\]\:after\:ire-top-\[10px\] ul li:after{content:var(--tw-content);top:10px}.\[\&_ul_li\]\:after\:ire-h-\[4px\] ul li:after{content:var(--tw-content);height:4px}.\[\&_ul_li\]\:after\:ire-w-\[4px\] ul li:after{content:var(--tw-content);width:4px}.\[\&_ul_li\]\:after\:ire-rounded-\[50\%\] ul li:after{content:var(--tw-content);border-radius:50%}.\[\&_ul_li\]\:after\:ire-bg-black ul li:after{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity))}
|
|
1
|
+
*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.ire-pointer-events-none{pointer-events:none}.ire-fixed{position:fixed}.ire-absolute{position:absolute}.ire-relative{position:relative}.ire-sticky{position:sticky}.\!ire-bottom-10{bottom:2.5rem!important}.\!ire-right-10{right:2.5rem!important}.ire-left-0{left:0}.ire-right-2\.5{right:.625rem}.ire-right-full{right:100%}.ire-top-0{top:0}.ire-top-2\.5{top:.625rem}.ire-z-\[99999\]{z-index:99999}.ire-z-\[999\]{z-index:999}.ire-mx-3{margin-left:.75rem;margin-right:.75rem}.ire-my-2{margin-top:.5rem;margin-bottom:.5rem}.\!ire-mt-2{margin-top:.5rem!important}.ire-mb-3{margin-bottom:.75rem}.ire-ml-1{margin-left:.25rem}.ire-ml-4{margin-left:1rem}.ire-mt-1{margin-top:.25rem}.ire-mt-5{margin-top:1.25rem}.ire-inline-block{display:inline-block}.ire-flex{display:flex}.ire-hidden{display:none}.ire-h-10{height:2.5rem}.ire-h-5{height:1.25rem}.ire-h-\[400px\]{height:400px}.ire-h-\[48px\]{height:48px}.ire-h-fit{height:-moz-fit-content;height:fit-content}.ire-h-full{height:100%}.ire-max-h-\[80\%\]{max-height:80%}.ire-w-10{width:2.5rem}.ire-w-5{width:1.25rem}.ire-w-6{width:1.5rem}.ire-w-fit{width:-moz-fit-content;width:fit-content}.ire-w-full{width:100%}.ire-min-w-3{min-width:.75rem}.ire-min-w-36{min-width:9rem}.ire-min-w-\[150px\]{min-width:150px}.ire-min-w-full{min-width:100%}.ire-max-w-\[200px\]{max-width:200px}.-ire-translate-x-1{--tw-translate-x: -.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ire-translate-x-3{--tw-translate-x: .75rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ire-rotate-180{--tw-rotate: 180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ire-cursor-auto{cursor:auto}.ire-cursor-default{cursor:default}.ire-cursor-pointer{cursor:pointer}.ire-select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.ire-appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.ire-flex-row-reverse{flex-direction:row-reverse}.ire-flex-col{flex-direction:column}.ire-items-start{align-items:flex-start}.ire-items-center{align-items:center}.ire-justify-center{justify-content:center}.ire-justify-between{justify-content:space-between}.ire-gap-1{gap:.25rem}.ire-gap-2{gap:.5rem}.ire-gap-3{gap:.75rem}.ire-gap-5{gap:1.25rem}.ire-overflow-hidden{overflow:hidden}.ire-overflow-y-auto{overflow-y:auto}.ire-rounded-full{border-radius:9999px}.ire-rounded-lg{border-radius:.5rem}.ire-rounded-none{border-radius:0}.ire-rounded-l-sm{border-top-left-radius:.125rem;border-bottom-left-radius:.125rem}.ire-border{border-width:1px}.ire-border-b{border-bottom-width:1px}.ire-border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.ire-border-gray-800{--tw-border-opacity: 1;border-color:rgb(31 41 55 / var(--tw-border-opacity))}.ire-border-slate-200{--tw-border-opacity: 1;border-color:rgb(226 232 240 / var(--tw-border-opacity))}.ire-border-b-gray-200{--tw-border-opacity: 1;border-bottom-color:rgb(229 231 235 / var(--tw-border-opacity))}.\!ire-bg-primary{--tw-bg-opacity: 1 !important;background-color:rgb(30 41 59 / var(--tw-bg-opacity))!important}.ire-bg-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity))}.ire-bg-black\/40{background-color:#0006}.ire-bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.ire-bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.ire-bg-transparent{background-color:transparent}.ire-bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.\!ire-stroke-white{stroke:#fff!important}.ire-object-contain{-o-object-fit:contain;object-fit:contain}.ire-object-top{-o-object-position:top;object-position:top}.ire-p-1{padding:.25rem}.ire-p-2{padding:.5rem}.ire-p-3{padding:.75rem}.ire-p-4{padding:1rem}.ire-p-5{padding:1.25rem}.ire-p-6{padding:1.5rem}.ire-px-4{padding-left:1rem;padding-right:1rem}.ire-px-7{padding-left:1.75rem;padding-right:1.75rem}.ire-py-2{padding-top:.5rem;padding-bottom:.5rem}.ire-py-3{padding-top:.75rem;padding-bottom:.75rem}.ire-py-4{padding-top:1rem;padding-bottom:1rem}.ire-pl-3{padding-left:.75rem}.ire-pr-8{padding-right:2rem}.ire-pt-1{padding-top:.25rem}.ire-text-center{text-align:center}.\!ire-text-2xl{font-size:1.5rem!important;line-height:2rem!important}.\!ire-text-3xl{font-size:1.875rem!important;line-height:2.25rem!important}.\!ire-text-lg{font-size:1.125rem!important;line-height:1.75rem!important}.\!ire-text-sm{font-size:.875rem!important;line-height:1.25rem!important}.\!ire-text-xs{font-size:.75rem!important;line-height:1rem!important}.ire-text-sm{font-size:.875rem;line-height:1.25rem}.ire-font-bold{font-weight:700}.ire-font-light{font-weight:300}.ire-font-semibold{font-weight:600}.ire-uppercase{text-transform:uppercase}.ire-capitalize{text-transform:capitalize}.\!ire-text-black{--tw-text-opacity: 1 !important;color:rgb(0 0 0 / var(--tw-text-opacity))!important}.\!ire-text-white{--tw-text-opacity: 1 !important;color:rgb(255 255 255 / var(--tw-text-opacity))!important}.ire-text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.ire-text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.ire-text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.ire-text-slate-700{--tw-text-opacity: 1;color:rgb(51 65 85 / var(--tw-text-opacity))}.ire-text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.ire-line-through{text-decoration-line:line-through}.ire-shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.ire-transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ire-transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ire-duration-300{transition-duration:.3s}.ire-ease-linear{transition-timing-function:linear}.label{margin-bottom:.25rem!important;font-size:.75rem;line-height:1rem;text-transform:capitalize;--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.canvas path{stroke:var(--stroke-color);stroke-width:var(--stroke-width)}.ire-fade-in-out-enter-from,.ire-fade-in-out-leave-to{opacity:0}.ire-fade-in-out-enter-active,.ire-fade-in-out-leave-active{transition:.3s ease-in-out}.ire-fade-in-out-enter-to,.ire-fade-in-out-leave-from{opacity:1}.placeholder\:ire-text-slate-400::-moz-placeholder{--tw-text-opacity: 1;color:rgb(148 163 184 / var(--tw-text-opacity))}.placeholder\:ire-text-slate-400::placeholder{--tw-text-opacity: 1;color:rgb(148 163 184 / var(--tw-text-opacity))}.hover\:ire-border-slate-400:hover{--tw-border-opacity: 1;border-color:rgb(148 163 184 / var(--tw-border-opacity))}.hover\:ire-bg-black:hover{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity))}.hover\:ire-bg-gray-600:hover{--tw-bg-opacity: 1;background-color:rgb(75 85 99 / var(--tw-bg-opacity))}.hover\:ire-bg-primary:hover{--tw-bg-opacity: 1;background-color:rgb(30 41 59 / var(--tw-bg-opacity))}.hover\:ire-text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.focus\:ire-border-slate-400:focus{--tw-border-opacity: 1;border-color:rgb(148 163 184 / var(--tw-border-opacity))}.focus\:ire-shadow-md:focus{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.focus\:ire-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.ire-group:hover .group-hover\:\!ire-text-white{--tw-text-opacity: 1 !important;color:rgb(255 255 255 / var(--tw-text-opacity))!important}@media (min-width: 1024px){.lg\:ire-block{display:block}.lg\:ire-h-96{height:24rem}.lg\:ire-w-96{width:24rem}.lg\:ire-w-auto{width:auto}.lg\:ire-min-w-\[250px\]{min-width:250px}.lg\:ire-min-w-\[500px\]{min-width:500px}.lg\:ire-flex-row{flex-direction:row}.lg\:ire-gap-20{gap:5rem}.lg\:\!ire-text-balance{text-wrap:balance!important}.lg\:ire-p-32{padding:8rem}.lg\:ire-px-0{padding-left:0;padding-right:0}.lg\:ire-px-5{padding-left:1.25rem;padding-right:1.25rem}.lg\:ire-py-2{padding-top:.5rem;padding-bottom:.5rem}.lg\:\!ire-text-xl{font-size:1.25rem!important;line-height:1.75rem!important}}.\[\&_a\]\:ire-cursor-pointer a{cursor:pointer}.\[\&_a\]\:ire-text-\[\#2980b9\] a{--tw-text-opacity: 1;color:rgb(41 128 185 / var(--tw-text-opacity))}.\[\&_a\]\:ire-underline a{text-decoration-line:underline}.\[\&_g\[conf\=reserved\]_path\]\:ire-fill-\[var\(--reserved-color\)\] g[conf=reserved] path{fill:var(--reserved-color)}.\[\&_g\[conf\=sold\]_path\]\:ire-fill-\[var\(--sold-color\)\] g[conf=sold] path{fill:var(--sold-color)}.\[\&_path\]\:ire-cursor-pointer path{cursor:pointer}.\[\&_path\]\:ire-fill-\[var\(--path-color\)\] path{fill:var(--path-color)}.\[\&_path\]\:ire-fill-gray-400 path{fill:#9ca3af}.\[\&_path\]\:\!ire-stroke-white path{stroke:#fff!important}.\[\&_path\]\:ire-stroke-black path{stroke:#000}.\[\&_path\]\:\!ire-transition-all path{transition-property:all!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.\[\&_path\]\:ire-transition-all path{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.\[\&_path\]\:hover\:ire-fill-white:hover path{fill:#fff}.hover\:\[\&_path\]\:ire-fill-\[var\(--path-hover-color\)\] path:hover{fill:var(--path-hover-color)}.hover\:\[\&_path\]\:ire-fill-\[var\(--reserved-color\)\] path:hover{fill:var(--reserved-color)}.hover\:\[\&_path\]\:ire-fill-\[var\(--sold-color\)\] path:hover{fill:var(--sold-color)}.ire-group:hover .group-hover\:\[\&_path\]\:ire-fill-white path{fill:#fff}.ire-group:hover .group-hover\:\[\&_path\]\:ire-stroke-white path{stroke:#fff}.\[\&_svg\]\:ire-h-3 svg{height:.75rem}.\[\&_svg\]\:ire-h-full svg{height:100%}.\[\&_svg\]\:ire-w-3 svg{width:.75rem}.\[\&_svg\]\:ire-w-full svg{width:100%}.\[\&_ul\]\:ire-flex ul{display:flex}.\[\&_ul\]\:ire-columns-1 ul{-moz-columns:1;columns:1}.\[\&_ul\]\:ire-flex-col ul{flex-direction:column}.\[\&_ul\]\:ire-gap-2 ul{gap:.5rem}.\[\&_ul_li\]\:ire-relative ul li{position:relative}.\[\&_ul_li\]\:ire-pl-\[20px\] ul li{padding-left:20px}.\[\&_ul_li\]\:after\:ire-absolute ul li:after{content:var(--tw-content);position:absolute}.\[\&_ul_li\]\:after\:ire-left-2 ul li:after{content:var(--tw-content);left:.5rem}.\[\&_ul_li\]\:after\:ire-top-\[10px\] ul li:after{content:var(--tw-content);top:10px}.\[\&_ul_li\]\:after\:ire-h-\[4px\] ul li:after{content:var(--tw-content);height:4px}.\[\&_ul_li\]\:after\:ire-w-\[4px\] ul li:after{content:var(--tw-content);width:4px}.\[\&_ul_li\]\:after\:ire-rounded-\[50\%\] ul li:after{content:var(--tw-content);border-radius:50%}.\[\&_ul_li\]\:after\:ire-bg-black ul li:after{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity))}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ire-preview",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"emitDeclarationOnly": true,
|
|
6
6
|
"declaration": true,
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"type-check": "vue-tsc --build --force"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
+
"ire-preview": "^2.0.9",
|
|
32
33
|
"vite-plugin-dts": "^4.3.0",
|
|
33
34
|
"vue": "^3.5.12"
|
|
34
35
|
},
|