@iamproperty/components 5.6.1-beta9 → 5.7.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/assets/css/components/address-lookup.css +1 -1
- package/assets/css/components/address-lookup.css.map +1 -1
- package/assets/css/components/carousel.css +1 -1
- package/assets/css/components/carousel.css.map +1 -1
- package/assets/css/components/fileupload.css +1 -1
- package/assets/css/components/fileupload.css.map +1 -1
- package/assets/css/components/pagination.css +1 -1
- package/assets/css/components/pagination.css.map +1 -1
- package/assets/css/components/tabs.css +1 -1
- package/assets/css/components/tabs.css.map +1 -1
- package/assets/css/core.min.css +1 -1
- package/assets/css/core.min.css.map +1 -1
- package/assets/css/style.min.css +1 -1
- package/assets/css/style.min.css.map +1 -1
- package/assets/js/components/accordion/accordion.component.min.js +1 -1
- package/assets/js/components/actionbar/actionbar.component.min.js +3 -3
- package/assets/js/components/actionbar/actionbar.component.min.js.map +1 -1
- package/assets/js/components/address-lookup/address-lookup.component.js +21 -10
- package/assets/js/components/address-lookup/address-lookup.component.min.js +6 -5
- package/assets/js/components/address-lookup/address-lookup.component.min.js.map +1 -1
- package/assets/js/components/applied-filters/applied-filters.component.min.js +1 -1
- package/assets/js/components/card/card.component.js +39 -20
- package/assets/js/components/card/card.component.min.js +19 -19
- package/assets/js/components/card/card.component.min.js.map +1 -1
- package/assets/js/components/carousel/carousel.component.js +14 -1
- package/assets/js/components/carousel/carousel.component.min.js +5 -5
- package/assets/js/components/carousel/carousel.component.min.js.map +1 -1
- package/assets/js/components/collapsible-side/collapsible-side.component.min.js +1 -1
- package/assets/js/components/fileupload/fileupload.component.js +16 -0
- package/assets/js/components/fileupload/fileupload.component.min.js +7 -5
- package/assets/js/components/fileupload/fileupload.component.min.js.map +1 -1
- package/assets/js/components/filterlist/filterlist.component.min.js +1 -1
- package/assets/js/components/header/header.component.min.js +1 -1
- package/assets/js/components/inline-edit/inline-edit.component.js +2 -2
- package/assets/js/components/inline-edit/inline-edit.component.min.js +3 -3
- package/assets/js/components/inline-edit/inline-edit.component.min.js.map +1 -1
- package/assets/js/components/marketing/marketing.component.min.js +1 -1
- package/assets/js/components/multiselect/multiselect.component.min.js +1 -1
- package/assets/js/components/nav/nav.component.min.js +1 -1
- package/assets/js/components/notification/notification.component.min.js +1 -1
- package/assets/js/components/pagination/pagination.component.min.js +3 -3
- package/assets/js/components/search/search.component.min.js +1 -1
- package/assets/js/components/search/search.component.min.js.map +1 -1
- package/assets/js/components/slider/slider.component.min.js +1 -1
- package/assets/js/components/table/table.component.js +16 -1
- package/assets/js/components/table/table.component.min.js +4 -4
- package/assets/js/components/table/table.component.min.js.map +1 -1
- package/assets/js/components/tabs/tabs.component.js +3 -1
- package/assets/js/components/tabs/tabs.component.min.js +8 -6
- package/assets/js/components/tabs/tabs.component.min.js.map +1 -1
- package/assets/js/dynamic.min.js +4 -4
- package/assets/js/dynamic.min.js.map +1 -1
- package/assets/js/modules/carousel.js +30 -8
- package/assets/js/modules/dialogs.js +6 -0
- package/assets/js/modules/fileupload.js +44 -12
- package/assets/js/modules/helpers.js +30 -0
- package/assets/js/modules/inputs.js +1 -1
- package/assets/js/modules/table.js +6 -1
- package/assets/js/modules/tabs.js +84 -1
- package/assets/js/scripts.bundle.js +34 -32
- package/assets/js/scripts.bundle.js.map +1 -1
- package/assets/js/scripts.bundle.min.js +2 -2
- package/assets/js/scripts.bundle.min.js.map +1 -1
- package/assets/sass/_components.scss +14 -0
- package/assets/sass/components/address-lookup.scss +4 -0
- package/assets/sass/components/carousel.scss +31 -7
- package/assets/sass/components/fileupload.scss +0 -10
- package/assets/sass/components/pagination.scss +11 -16
- package/assets/sass/components/tabs.scss +38 -3
- package/assets/sass/elements/admin-panel.scss +44 -6
- package/assets/sass/elements/dialog.scss +1 -1
- package/assets/sass/elements/forms.scss +3 -2
- package/assets/ts/components/address-lookup/address-lookup.component.ts +25 -11
- package/assets/ts/components/card/card.component.ts +49 -23
- package/assets/ts/components/carousel/carousel.component.ts +17 -1
- package/assets/ts/components/fileupload/fileupload.component.ts +26 -0
- package/assets/ts/components/inline-edit/inline-edit.component.ts +2 -2
- package/assets/ts/components/table/table.component.ts +24 -1
- package/assets/ts/components/tabs/tabs.component.ts +3 -1
- package/assets/ts/modules/carousel.ts +40 -9
- package/assets/ts/modules/dialogs.ts +8 -0
- package/assets/ts/modules/fileupload.ts +64 -20
- package/assets/ts/modules/helpers.ts +29 -0
- package/assets/ts/modules/inputs.ts +1 -1
- package/assets/ts/modules/table.ts +8 -2
- package/assets/ts/modules/tabs.ts +116 -1
- package/dist/components.es.js +199 -193
- package/dist/components.umd.js +78 -68
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Card/Card.vue +1 -1
- package/src/components/Carousel/Carousel.vue +5 -1
package/dist/components.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { openBlock as o, createElementBlock as l, normalizeClass as b, createElementVNode as d, toDisplayString as y, createCommentVNode as p, renderSlot as u, Fragment as $, renderList as k, withDirectives as
|
|
1
|
+
import { openBlock as o, createElementBlock as l, normalizeClass as b, createElementVNode as d, toDisplayString as y, createCommentVNode as p, renderSlot as u, Fragment as $, renderList as k, withDirectives as L, mergeProps as w, vModelDynamic as x, vModelText as D, vModelSelect as V, ref as F, onMounted as z, createTextVNode as B, resolveComponent as q, createVNode as v, withModifiers as O } from "vue";
|
|
2
2
|
const m = (t, a) => {
|
|
3
3
|
const e = t.__vccOpts || t;
|
|
4
4
|
for (const [i, r] of a)
|
|
@@ -46,8 +46,8 @@ function G(t, a, e, i, r, s) {
|
|
|
46
46
|
}, null, 8, K)) : p("", !0)
|
|
47
47
|
], 2);
|
|
48
48
|
}
|
|
49
|
-
const
|
|
50
|
-
return t = t.toLowerCase(), t =
|
|
49
|
+
const Ra = /* @__PURE__ */ m(U, [["render", G]]), J = (t) => t.charAt(0).toUpperCase() + t.slice(1), Q = (t) => t.replace(/_/g, " "), Y = (t) => t.replace(/ /g, "_"), X = function(t) {
|
|
50
|
+
return t = t.toLowerCase(), t = Y(t), t = t.replace(/\W/g, ""), t;
|
|
51
51
|
}, Z = {
|
|
52
52
|
name: "Table",
|
|
53
53
|
props: {
|
|
@@ -62,16 +62,16 @@ const Pa = /* @__PURE__ */ m(U, [["render", G]]), Q = (t) => t.charAt(0).toUpper
|
|
|
62
62
|
},
|
|
63
63
|
computed: {
|
|
64
64
|
cellHeading() {
|
|
65
|
-
return (t) => `${Q(
|
|
65
|
+
return (t) => `${J(Q(t))}`;
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
created() {
|
|
69
69
|
this.$nextTick(function() {
|
|
70
|
-
import("./table.component-
|
|
70
|
+
import("./table.component-f20ca683.mjs").then((t) => {
|
|
71
71
|
window.customElements.get("iam-table") || window.customElements.define("iam-table", t.default);
|
|
72
72
|
}).catch((t) => {
|
|
73
73
|
console.log(t.message);
|
|
74
|
-
}), Promise.resolve().then(() =>
|
|
74
|
+
}), Promise.resolve().then(() => xa).then((t) => {
|
|
75
75
|
window.customElements.get("iam-pagination") || window.customElements.define("iam-pagination", t.default);
|
|
76
76
|
}).catch((t) => {
|
|
77
77
|
console.log(t.message);
|
|
@@ -300,8 +300,8 @@ const C = /* @__PURE__ */ m(Z, [["render", ie]]), ne = {
|
|
|
300
300
|
}, me = ["type", "name", "id", "pattern", "list"], pe = { class: "input-group-text border-0 col-2 col-sm-1 px-0" }, he = {
|
|
301
301
|
key: 6,
|
|
302
302
|
class: "input-group"
|
|
303
|
-
}, fe = ["type", "name", "id", "pattern", "list"], be = { class: "input-group-text flex-fill" }, ye = ["type", "name", "id", "pattern"], _e = ["value"], ge = ["type", "name", "id"], ve = ["for", "innerHTML"], we = ["type", "name", "id"], $e = ["for", "innerHTML"], ke = ["innerHTML"], Ae = ["id"],
|
|
304
|
-
function
|
|
303
|
+
}, fe = ["type", "name", "id", "pattern", "list"], be = { class: "input-group-text flex-fill" }, ye = ["type", "name", "id", "pattern"], _e = ["value"], ge = ["type", "name", "id"], ve = ["for", "innerHTML"], we = ["type", "name", "id"], $e = ["for", "innerHTML"], ke = ["innerHTML"], Ae = ["id"], Le = ["value"];
|
|
304
|
+
function Se(t, a, e, i, r, s) {
|
|
305
305
|
return o(), l("div", {
|
|
306
306
|
class: b(s.wrapperClass()),
|
|
307
307
|
ref: "wrapper"
|
|
@@ -325,7 +325,7 @@ function Le(t, a, e, i, r, s) {
|
|
|
325
325
|
innerHTML: e.suffix,
|
|
326
326
|
role: "presentation"
|
|
327
327
|
}, null, 10, re)) : p("", !0),
|
|
328
|
-
s.isInput() ?
|
|
328
|
+
s.isInput() ? L((o(), l("input", w({
|
|
329
329
|
key: 3,
|
|
330
330
|
"onUpdate:modelValue": a[0] || (a[0] = (n) => s.inputVal = n),
|
|
331
331
|
class: `form-control${e.size ? ` form-control-${e.size}` : ""}${e.inputclass ? ` ${e.inputclass}` : ""}`,
|
|
@@ -337,9 +337,9 @@ function Le(t, a, e, i, r, s) {
|
|
|
337
337
|
}, t.$attrs, {
|
|
338
338
|
onKeyup: a[1] || (a[1] = (...n) => s.inputKeyup && s.inputKeyup(...n))
|
|
339
339
|
}), null, 16, de)), [
|
|
340
|
-
[
|
|
340
|
+
[x, s.inputVal]
|
|
341
341
|
]) : p("", !0),
|
|
342
|
-
e.type == "textarea" ?
|
|
342
|
+
e.type == "textarea" ? L((o(), l("textarea", w({
|
|
343
343
|
key: 4,
|
|
344
344
|
"onUpdate:modelValue": a[2] || (a[2] = (n) => s.inputVal = n),
|
|
345
345
|
class: `form-control${e.size ? ` form-control-${e.size}` : ""}${e.inputclass ? ` ${e.inputclass}` : ""}`,
|
|
@@ -351,7 +351,7 @@ function Le(t, a, e, i, r, s) {
|
|
|
351
351
|
[D, s.inputVal]
|
|
352
352
|
]) : p("", !0),
|
|
353
353
|
e.type == "range" ? (o(), l("div", ue, [
|
|
354
|
-
|
|
354
|
+
L(d("input", w({
|
|
355
355
|
"onUpdate:modelValue": a[3] || (a[3] = (n) => s.inputVal = n),
|
|
356
356
|
class: `form-range${e.inputclass ? ` ${e.inputclass}` : ""}`,
|
|
357
357
|
type: e.type,
|
|
@@ -360,12 +360,12 @@ function Le(t, a, e, i, r, s) {
|
|
|
360
360
|
pattern: s.needPattern(),
|
|
361
361
|
list: s.hasOptions()
|
|
362
362
|
}, t.$attrs, { oninput: "this.nextElementSibling.value=this.value;" }), null, 16, me), [
|
|
363
|
-
[
|
|
363
|
+
[x, s.inputVal]
|
|
364
364
|
]),
|
|
365
365
|
d("output", pe, y(e.value), 1)
|
|
366
366
|
])) : p("", !0),
|
|
367
367
|
e.type == "color" ? (o(), l("div", he, [
|
|
368
|
-
|
|
368
|
+
L(d("input", w({
|
|
369
369
|
"onUpdate:modelValue": a[4] || (a[4] = (n) => s.inputVal = n),
|
|
370
370
|
class: `form-control form-control-color${e.inputclass ? ` ${e.inputclass}` : ""}`,
|
|
371
371
|
type: e.type,
|
|
@@ -374,11 +374,11 @@ function Le(t, a, e, i, r, s) {
|
|
|
374
374
|
pattern: s.needPattern(),
|
|
375
375
|
list: s.hasOptions()
|
|
376
376
|
}, t.$attrs, { oninput: "this.nextElementSibling.value=this.value;" }), null, 16, fe), [
|
|
377
|
-
[
|
|
377
|
+
[x, s.inputVal]
|
|
378
378
|
]),
|
|
379
379
|
d("output", be, y(e.value ? t.vale : "#000000"), 1)
|
|
380
380
|
])) : p("", !0),
|
|
381
|
-
e.type == "select" ?
|
|
381
|
+
e.type == "select" ? L((o(), l("select", w({
|
|
382
382
|
key: 7,
|
|
383
383
|
"onUpdate:modelValue": a[5] || (a[5] = (n) => s.inputVal = n),
|
|
384
384
|
class: `form-select${e.size ? ` form-select-${e.size}` : ""}${e.inputclass ? ` ${e.inputclass}` : ""}`,
|
|
@@ -435,11 +435,11 @@ function Le(t, a, e, i, r, s) {
|
|
|
435
435
|
(o(!0), l($, null, k(e.options, (n, c) => (o(), l("option", {
|
|
436
436
|
key: c,
|
|
437
437
|
value: n.value
|
|
438
|
-
}, y(n.value), 9,
|
|
438
|
+
}, y(n.value), 9, Le))), 128))
|
|
439
439
|
], 8, Ae)) : p("", !0)
|
|
440
440
|
], 2);
|
|
441
441
|
}
|
|
442
|
-
const N = /* @__PURE__ */ m(ne, [["render",
|
|
442
|
+
const N = /* @__PURE__ */ m(ne, [["render", Se]]), xe = {
|
|
443
443
|
name: "FileUpload",
|
|
444
444
|
props: {
|
|
445
445
|
maxfilesize: {
|
|
@@ -453,14 +453,14 @@ const N = /* @__PURE__ */ m(ne, [["render", Le]]), Se = {
|
|
|
453
453
|
},
|
|
454
454
|
created() {
|
|
455
455
|
this.$nextTick(function() {
|
|
456
|
-
import("./fileupload.component.min-
|
|
456
|
+
import("./fileupload.component.min-1a354d40.mjs").then((t) => {
|
|
457
457
|
window.customElements.get("iam-fileupload") || window.customElements.define("iam-fileupload", t.default);
|
|
458
458
|
}).catch((t) => {
|
|
459
459
|
console.log(t.message);
|
|
460
460
|
});
|
|
461
461
|
});
|
|
462
462
|
}
|
|
463
|
-
},
|
|
463
|
+
}, ja = /* @__PURE__ */ Object.assign(xe, {
|
|
464
464
|
emits: ["elementChange", "empty"],
|
|
465
465
|
setup(t, { emit: a }) {
|
|
466
466
|
const e = F(null);
|
|
@@ -483,7 +483,7 @@ const qe = {
|
|
|
483
483
|
props: {},
|
|
484
484
|
mounted() {
|
|
485
485
|
this.$nextTick(function() {
|
|
486
|
-
import("./accordion.component.min-
|
|
486
|
+
import("./accordion.component.min-bc926aff.mjs").then((t) => {
|
|
487
487
|
window.customElements.get("iam-accordion") || window.customElements.define("iam-accordion", t.default);
|
|
488
488
|
}).catch((t) => {
|
|
489
489
|
console.log(t.message);
|
|
@@ -496,7 +496,7 @@ function Ee(t, a, e, i, r, s) {
|
|
|
496
496
|
u(t.$slots, "default")
|
|
497
497
|
], 512);
|
|
498
498
|
}
|
|
499
|
-
const
|
|
499
|
+
const Ia = /* @__PURE__ */ m(qe, [["render", Ee]]), He = {
|
|
500
500
|
name: "AccordionItem",
|
|
501
501
|
props: {
|
|
502
502
|
title: {
|
|
@@ -546,7 +546,7 @@ function Ce(t, a, e, i, r, s) {
|
|
|
546
546
|
u(t.$slots, "default")
|
|
547
547
|
], 8, Me);
|
|
548
548
|
}
|
|
549
|
-
const
|
|
549
|
+
const Da = /* @__PURE__ */ m(He, [["render", Ce]]), Ne = {
|
|
550
550
|
name: "Header",
|
|
551
551
|
props: {
|
|
552
552
|
title: {
|
|
@@ -588,11 +588,11 @@ function Fe(t, a, e, i, r, s) {
|
|
|
588
588
|
], 2)
|
|
589
589
|
]);
|
|
590
590
|
}
|
|
591
|
-
const
|
|
591
|
+
const Va = /* @__PURE__ */ m(Ne, [["render", Fe]]), ze = {
|
|
592
592
|
name: "Card",
|
|
593
593
|
created() {
|
|
594
594
|
this.$nextTick(function() {
|
|
595
|
-
import("./card.component-
|
|
595
|
+
import("./card.component.min-17254718.mjs").then((t) => {
|
|
596
596
|
window.customElements.get("iam-card") || window.customElements.define("iam-card", t.default);
|
|
597
597
|
}).catch((t) => {
|
|
598
598
|
console.log(t.message);
|
|
@@ -605,7 +605,7 @@ function Be(t, a, e, i, r, s) {
|
|
|
605
605
|
u(t.$slots, "default")
|
|
606
606
|
]);
|
|
607
607
|
}
|
|
608
|
-
const
|
|
608
|
+
const Fa = /* @__PURE__ */ m(ze, [["render", Be]]), Oe = {
|
|
609
609
|
name: "Header",
|
|
610
610
|
props: {
|
|
611
611
|
title: {
|
|
@@ -615,24 +615,30 @@ const Va = /* @__PURE__ */ m(ze, [["render", Be]]), Oe = {
|
|
|
615
615
|
image: {
|
|
616
616
|
type: String,
|
|
617
617
|
required: !1
|
|
618
|
+
},
|
|
619
|
+
thumbnails: {
|
|
620
|
+
type: Array,
|
|
621
|
+
default: () => []
|
|
618
622
|
}
|
|
619
623
|
},
|
|
620
624
|
mounted() {
|
|
621
625
|
this.$nextTick(function() {
|
|
622
|
-
import("./carousel.component.min-
|
|
626
|
+
import("./carousel.component.min-f7d19dee.mjs").then((t) => {
|
|
623
627
|
window.customElements.get("iam-carousel") || window.customElements.define("iam-carousel", t.default);
|
|
624
628
|
}).catch((t) => {
|
|
625
629
|
console.log(t.message);
|
|
626
630
|
});
|
|
627
631
|
});
|
|
628
632
|
}
|
|
629
|
-
};
|
|
630
|
-
function
|
|
631
|
-
return o(), l("iam-carousel",
|
|
633
|
+
}, Ue = ["data-thumbnails"];
|
|
634
|
+
function We(t, a, e, i, r, s) {
|
|
635
|
+
return o(), l("iam-carousel", {
|
|
636
|
+
"data-thumbnails": JSON.stringify(e.thumbnails)
|
|
637
|
+
}, [
|
|
632
638
|
u(t.$slots, "default")
|
|
633
|
-
]);
|
|
639
|
+
], 8, Ue);
|
|
634
640
|
}
|
|
635
|
-
const
|
|
641
|
+
const za = /* @__PURE__ */ m(Oe, [["render", We]]), Ke = {
|
|
636
642
|
name: "Header",
|
|
637
643
|
props: {
|
|
638
644
|
title: {
|
|
@@ -646,25 +652,25 @@ const Fa = /* @__PURE__ */ m(Oe, [["render", Ue]]), We = {
|
|
|
646
652
|
},
|
|
647
653
|
mounted() {
|
|
648
654
|
this.$nextTick(function() {
|
|
649
|
-
import("./header.component.min-
|
|
655
|
+
import("./header.component.min-0e0efd0c.mjs").then((t) => {
|
|
650
656
|
window.customElements.get("iam-header") || window.customElements.define("iam-header", t.default);
|
|
651
657
|
}).catch((t) => {
|
|
652
658
|
console.log(t.message);
|
|
653
659
|
});
|
|
654
660
|
});
|
|
655
661
|
}
|
|
656
|
-
},
|
|
662
|
+
}, Ge = ["image"], Je = ["innerHTML"];
|
|
657
663
|
function Qe(t, a, e, i, r, s) {
|
|
658
664
|
return o(), l("iam-header", { image: e.image }, [
|
|
659
665
|
u(t.$slots, "breadcrumb"),
|
|
660
666
|
e.title ? (o(), l("h1", {
|
|
661
667
|
key: 0,
|
|
662
668
|
innerHTML: e.title
|
|
663
|
-
}, null, 8,
|
|
669
|
+
}, null, 8, Je)) : p("", !0),
|
|
664
670
|
u(t.$slots, "default")
|
|
665
|
-
], 8,
|
|
671
|
+
], 8, Ge);
|
|
666
672
|
}
|
|
667
|
-
const
|
|
673
|
+
const Ba = /* @__PURE__ */ m(Ke, [["render", Qe]]);
|
|
668
674
|
function Ye(t) {
|
|
669
675
|
var a;
|
|
670
676
|
const e = t.querySelector(".testimonial__images"), i = e.querySelectorAll("img").length;
|
|
@@ -693,7 +699,7 @@ function Ye(t) {
|
|
|
693
699
|
}
|
|
694
700
|
}, !1);
|
|
695
701
|
}
|
|
696
|
-
const
|
|
702
|
+
const Xe = {
|
|
697
703
|
name: "Testimonial",
|
|
698
704
|
props: {
|
|
699
705
|
items: {
|
|
@@ -709,11 +715,11 @@ const Je = {
|
|
|
709
715
|
mounted() {
|
|
710
716
|
Ye(this.$refs.wrapper);
|
|
711
717
|
}
|
|
712
|
-
},
|
|
718
|
+
}, Ze = {
|
|
713
719
|
class: "container testimonial mb-5",
|
|
714
720
|
"data-show": "1",
|
|
715
721
|
ref: "wrapper"
|
|
716
|
-
},
|
|
722
|
+
}, et = { class: "row" }, tt = { class: "col-md-5 position-relative" }, at = { class: "testimonial__images" }, st = ["src"], it = /* @__PURE__ */ d("div", { class: "testimonial__controls" }, [
|
|
717
723
|
/* @__PURE__ */ d("button", {
|
|
718
724
|
"data-go": "0",
|
|
719
725
|
disabled: "",
|
|
@@ -723,50 +729,50 @@ const Je = {
|
|
|
723
729
|
"data-go": "2",
|
|
724
730
|
class: "btn-next"
|
|
725
731
|
}, "Next")
|
|
726
|
-
], -1),
|
|
727
|
-
function
|
|
728
|
-
return o(), l("div",
|
|
732
|
+
], -1), nt = { class: "col-md-7" }, ot = /* @__PURE__ */ d("h2", null, "What our customers think…", -1), lt = { class: "testimonial__content" }, rt = ["innerHTML"], dt = ["innerHTML"], ct = { class: "testimonial__after" }, ut = /* @__PURE__ */ d("span", { class: "circle circle--dots d-none d-md-block" }, null, -1);
|
|
733
|
+
function mt(t, a, e, i, r, s) {
|
|
734
|
+
return o(), l("div", Ze, [
|
|
729
735
|
d("div", {
|
|
730
736
|
class: b("bg-" + e.background)
|
|
731
737
|
}, [
|
|
732
|
-
d("div",
|
|
733
|
-
d("div",
|
|
734
|
-
d("div",
|
|
738
|
+
d("div", et, [
|
|
739
|
+
d("div", tt, [
|
|
740
|
+
d("div", at, [
|
|
735
741
|
(o(!0), l($, null, k(e.items, (n, c) => (o(), l("img", {
|
|
736
742
|
key: c,
|
|
737
743
|
src: n.image ? n.image : "data:image/gif;base64,R0lGODlhAQABAIAAAHd3dwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==",
|
|
738
744
|
alt: "",
|
|
739
745
|
class: b("h-100 w-100 object-cover" + (n.image ? "" : " opacity-0"))
|
|
740
|
-
}, null, 10,
|
|
746
|
+
}, null, 10, st))), 128))
|
|
741
747
|
]),
|
|
742
|
-
|
|
748
|
+
it
|
|
743
749
|
]),
|
|
744
|
-
d("div",
|
|
745
|
-
|
|
746
|
-
d("div",
|
|
750
|
+
d("div", nt, [
|
|
751
|
+
ot,
|
|
752
|
+
d("div", lt, [
|
|
747
753
|
(o(!0), l($, null, k(e.items, (n, c) => (o(), l("blockquote", {
|
|
748
754
|
key: c,
|
|
749
755
|
class: b(n.class)
|
|
750
756
|
}, [
|
|
751
757
|
d("div", {
|
|
752
758
|
innerHTML: n.quote
|
|
753
|
-
}, null, 8,
|
|
759
|
+
}, null, 8, rt),
|
|
754
760
|
d("cite", {
|
|
755
761
|
innerHTML: n.cite
|
|
756
|
-
}, null, 8,
|
|
762
|
+
}, null, 8, dt)
|
|
757
763
|
], 2))), 128))
|
|
758
764
|
]),
|
|
759
|
-
d("div",
|
|
765
|
+
d("div", ct, [
|
|
760
766
|
u(t.$slots, "default")
|
|
761
767
|
])
|
|
762
768
|
])
|
|
763
769
|
]),
|
|
764
|
-
|
|
770
|
+
ut
|
|
765
771
|
], 2)
|
|
766
772
|
], 512);
|
|
767
773
|
}
|
|
768
|
-
const
|
|
769
|
-
const
|
|
774
|
+
const Oa = /* @__PURE__ */ m(Xe, [["render", mt]]);
|
|
775
|
+
const pt = {
|
|
770
776
|
name: "Timeline",
|
|
771
777
|
props: {
|
|
772
778
|
image: {
|
|
@@ -774,21 +780,21 @@ const mt = {
|
|
|
774
780
|
required: !1
|
|
775
781
|
}
|
|
776
782
|
}
|
|
777
|
-
},
|
|
778
|
-
function
|
|
779
|
-
return o(), l("div",
|
|
780
|
-
d("div",
|
|
783
|
+
}, ht = { class: "timeline" }, ft = { class: "timeline__content" }, bt = ["src"];
|
|
784
|
+
function yt(t, a, e, i, r, s) {
|
|
785
|
+
return o(), l("div", ht, [
|
|
786
|
+
d("div", ft, [
|
|
781
787
|
u(t.$slots, "default")
|
|
782
788
|
]),
|
|
783
789
|
e.image ? (o(), l("img", {
|
|
784
790
|
key: 0,
|
|
785
791
|
src: e.image,
|
|
786
792
|
alt: ""
|
|
787
|
-
}, null, 8,
|
|
793
|
+
}, null, 8, bt)) : p("", !0)
|
|
788
794
|
]);
|
|
789
795
|
}
|
|
790
|
-
const
|
|
791
|
-
const
|
|
796
|
+
const Ua = /* @__PURE__ */ m(pt, [["render", yt]]);
|
|
797
|
+
const _t = {
|
|
792
798
|
components: {
|
|
793
799
|
Input: N
|
|
794
800
|
},
|
|
@@ -934,33 +940,33 @@ const yt = {
|
|
|
934
940
|
];
|
|
935
941
|
}
|
|
936
942
|
}
|
|
937
|
-
},
|
|
943
|
+
}, gt = {
|
|
938
944
|
class: "container",
|
|
939
945
|
ref: "wrapper"
|
|
940
|
-
},
|
|
946
|
+
}, vt = { class: "property-searchbar" }, wt = ["action", "method"], $t = { class: "col-12 col-md-3" }, kt = { class: "col-12 col-md" }, At = /* @__PURE__ */ d("span", { class: "form-label d-none d-md-block" }, "Price range", -1), Lt = {
|
|
941
947
|
class: "row",
|
|
942
948
|
"data-input-range": ""
|
|
943
|
-
},
|
|
949
|
+
}, St = { class: "col-12 col-md" }, xt = /* @__PURE__ */ d("span", { class: "form-label d-none d-md-block" }, "Number of beds", -1), qt = {
|
|
944
950
|
class: "row",
|
|
945
951
|
"data-input-range": ""
|
|
946
|
-
},
|
|
952
|
+
}, Tt = { class: "col-12 col-md-2" }, Et = /* @__PURE__ */ d("div", { class: "col-12 col-md mw-md-fit-content d-flex property-searchbar__btn" }, [
|
|
947
953
|
/* @__PURE__ */ d("button", {
|
|
948
954
|
class: "btn w-100 me-0",
|
|
949
955
|
type: "submit",
|
|
950
956
|
value: "submit"
|
|
951
957
|
}, "Search")
|
|
952
958
|
], -1);
|
|
953
|
-
function
|
|
959
|
+
function Ht(t, a, e, i, r, s) {
|
|
954
960
|
const n = q("Input");
|
|
955
|
-
return o(), l("div",
|
|
961
|
+
return o(), l("div", gt, [
|
|
956
962
|
u(t.$slots, "default"),
|
|
957
|
-
d("div",
|
|
963
|
+
d("div", vt, [
|
|
958
964
|
d("form", {
|
|
959
965
|
class: "row",
|
|
960
966
|
action: e.formaction,
|
|
961
967
|
method: e.formmethod
|
|
962
968
|
}, [
|
|
963
|
-
d("fieldset",
|
|
969
|
+
d("fieldset", $t, [
|
|
964
970
|
v(n, {
|
|
965
971
|
inputClass: "input--locations",
|
|
966
972
|
modelValue: s.locationSet,
|
|
@@ -981,9 +987,9 @@ function Et(t, a, e, i, r, s) {
|
|
|
981
987
|
options: e.distances
|
|
982
988
|
}, null, 8, ["options"])
|
|
983
989
|
]),
|
|
984
|
-
d("fieldset",
|
|
985
|
-
|
|
986
|
-
d("div",
|
|
990
|
+
d("fieldset", kt, [
|
|
991
|
+
At,
|
|
992
|
+
d("div", Lt, [
|
|
987
993
|
v(n, {
|
|
988
994
|
class: "col-6",
|
|
989
995
|
label: "Minimum price",
|
|
@@ -1002,9 +1008,9 @@ function Et(t, a, e, i, r, s) {
|
|
|
1002
1008
|
}, null, 8, ["options"])
|
|
1003
1009
|
])
|
|
1004
1010
|
]),
|
|
1005
|
-
d("fieldset",
|
|
1006
|
-
|
|
1007
|
-
d("div",
|
|
1011
|
+
d("fieldset", St, [
|
|
1012
|
+
xt,
|
|
1013
|
+
d("div", qt, [
|
|
1008
1014
|
v(n, {
|
|
1009
1015
|
class: "col-6",
|
|
1010
1016
|
label: "Minimum beds",
|
|
@@ -1023,7 +1029,7 @@ function Et(t, a, e, i, r, s) {
|
|
|
1023
1029
|
}, null, 8, ["options"])
|
|
1024
1030
|
])
|
|
1025
1031
|
]),
|
|
1026
|
-
d("fieldset",
|
|
1032
|
+
d("fieldset", Tt, [
|
|
1027
1033
|
v(n, {
|
|
1028
1034
|
label: "Property type",
|
|
1029
1035
|
id: "property-type",
|
|
@@ -1031,18 +1037,18 @@ function Et(t, a, e, i, r, s) {
|
|
|
1031
1037
|
options: e.propertytypes
|
|
1032
1038
|
}, null, 8, ["options"])
|
|
1033
1039
|
]),
|
|
1034
|
-
|
|
1035
|
-
], 8,
|
|
1040
|
+
Et
|
|
1041
|
+
], 8, wt)
|
|
1036
1042
|
]),
|
|
1037
1043
|
u(t.$slots, "after")
|
|
1038
1044
|
], 512);
|
|
1039
1045
|
}
|
|
1040
|
-
const
|
|
1046
|
+
const Wa = /* @__PURE__ */ m(_t, [["render", Ht]]), Mt = {
|
|
1041
1047
|
components: {},
|
|
1042
1048
|
name: "Nav",
|
|
1043
1049
|
mounted() {
|
|
1044
1050
|
this.$nextTick(function() {
|
|
1045
|
-
import("./nav.component.min-
|
|
1051
|
+
import("./nav.component.min-731cbbe7.mjs").then((t) => {
|
|
1046
1052
|
window.customElements.get("iam-nav") || window.customElements.define("iam-nav", t.default);
|
|
1047
1053
|
}).catch((t) => {
|
|
1048
1054
|
console.log(t.message);
|
|
@@ -1050,14 +1056,14 @@ const Ua = /* @__PURE__ */ m(yt, [["render", Et]]), Ht = {
|
|
|
1050
1056
|
});
|
|
1051
1057
|
},
|
|
1052
1058
|
methods: {}
|
|
1053
|
-
},
|
|
1054
|
-
function
|
|
1055
|
-
return o(), l("iam-nav",
|
|
1059
|
+
}, Ct = { ref: "wrapper" };
|
|
1060
|
+
function Nt(t, a, e, i, r, s) {
|
|
1061
|
+
return o(), l("iam-nav", Ct, [
|
|
1056
1062
|
u(t.$slots, "default")
|
|
1057
1063
|
], 512);
|
|
1058
1064
|
}
|
|
1059
|
-
const
|
|
1060
|
-
const
|
|
1065
|
+
const Ka = /* @__PURE__ */ m(Mt, [["render", Nt]]);
|
|
1066
|
+
const Pt = {
|
|
1061
1067
|
name: "Stepper",
|
|
1062
1068
|
props: {
|
|
1063
1069
|
label: {
|
|
@@ -1070,26 +1076,26 @@ const Nt = {
|
|
|
1070
1076
|
default: "Complete"
|
|
1071
1077
|
}
|
|
1072
1078
|
}
|
|
1073
|
-
},
|
|
1079
|
+
}, Rt = { class: "container" }, jt = ["aria-label"], It = {
|
|
1074
1080
|
key: 0,
|
|
1075
1081
|
class: "h6 stepper__start"
|
|
1076
|
-
},
|
|
1077
|
-
function
|
|
1078
|
-
return o(), l("div",
|
|
1082
|
+
}, Dt = { class: "list-unstyled" }, Vt = { class: "h6 stepper__end" };
|
|
1083
|
+
function Ft(t, a, e, i, r, s) {
|
|
1084
|
+
return o(), l("div", Rt, [
|
|
1079
1085
|
d("nav", {
|
|
1080
1086
|
class: "stepper",
|
|
1081
1087
|
"aria-label": e.label ? e.label : "Progress"
|
|
1082
1088
|
}, [
|
|
1083
|
-
e.label ? (o(), l("span",
|
|
1084
|
-
d("ol",
|
|
1089
|
+
e.label ? (o(), l("span", It, y(e.label), 1)) : p("", !0),
|
|
1090
|
+
d("ol", Dt, [
|
|
1085
1091
|
u(t.$slots, "default")
|
|
1086
1092
|
]),
|
|
1087
|
-
d("span",
|
|
1088
|
-
], 8,
|
|
1093
|
+
d("span", Vt, y(e.endlabel), 1)
|
|
1094
|
+
], 8, jt)
|
|
1089
1095
|
]);
|
|
1090
1096
|
}
|
|
1091
|
-
const
|
|
1092
|
-
const
|
|
1097
|
+
const Ga = /* @__PURE__ */ m(Pt, [["render", Ft]]);
|
|
1098
|
+
const zt = {
|
|
1093
1099
|
name: "Snapshot",
|
|
1094
1100
|
props: {
|
|
1095
1101
|
items: {
|
|
@@ -1097,14 +1103,14 @@ const Ft = {
|
|
|
1097
1103
|
required: !0
|
|
1098
1104
|
}
|
|
1099
1105
|
}
|
|
1100
|
-
},
|
|
1106
|
+
}, Bt = {
|
|
1101
1107
|
class: "container snapshot",
|
|
1102
1108
|
ref: "wrapper"
|
|
1103
|
-
},
|
|
1104
|
-
function
|
|
1105
|
-
return o(), l("div",
|
|
1109
|
+
}, Ot = { class: "row" }, Ut = ["href"], Wt = { class: "lead snapshot__title" }, Kt = { class: "stat" };
|
|
1110
|
+
function Gt(t, a, e, i, r, s) {
|
|
1111
|
+
return o(), l("div", Bt, [
|
|
1106
1112
|
u(t.$slots, "default"),
|
|
1107
|
-
d("div",
|
|
1113
|
+
d("div", Ot, [
|
|
1108
1114
|
(o(!0), l($, null, k(e.items, (n, c) => (o(), l("div", {
|
|
1109
1115
|
class: "col",
|
|
1110
1116
|
key: c
|
|
@@ -1112,18 +1118,18 @@ function Kt(t, a, e, i, r, s) {
|
|
|
1112
1118
|
n.link ? (o(), l("a", {
|
|
1113
1119
|
key: 0,
|
|
1114
1120
|
href: n.link
|
|
1115
|
-
}, "View " + y(n.title), 9,
|
|
1121
|
+
}, "View " + y(n.title), 9, Ut)) : p("", !0),
|
|
1116
1122
|
d("div", {
|
|
1117
1123
|
class: b(`snapshot__item ${n.bg ? "bg-" + n.bg : ""}`)
|
|
1118
1124
|
}, [
|
|
1119
|
-
d("span",
|
|
1120
|
-
d("span",
|
|
1125
|
+
d("span", Wt, y(n.title), 1),
|
|
1126
|
+
d("span", Kt, y(n.number), 1)
|
|
1121
1127
|
], 2)
|
|
1122
1128
|
]))), 128))
|
|
1123
1129
|
])
|
|
1124
1130
|
], 512);
|
|
1125
1131
|
}
|
|
1126
|
-
const
|
|
1132
|
+
const Ja = /* @__PURE__ */ m(zt, [["render", Gt]]), Jt = {
|
|
1127
1133
|
name: "Stepper",
|
|
1128
1134
|
props: {
|
|
1129
1135
|
url: {
|
|
@@ -1143,7 +1149,7 @@ const Ga = /* @__PURE__ */ m(Ft, [["render", Kt]]), Gt = {
|
|
|
1143
1149
|
key: 0,
|
|
1144
1150
|
class: "visually-hidden"
|
|
1145
1151
|
};
|
|
1146
|
-
function
|
|
1152
|
+
function Xt(t, a, e, i, r, s) {
|
|
1147
1153
|
return o(), l("li", null, [
|
|
1148
1154
|
d("a", {
|
|
1149
1155
|
href: e.url,
|
|
@@ -1157,25 +1163,25 @@ function Jt(t, a, e, i, r, s) {
|
|
|
1157
1163
|
], 10, Qt)
|
|
1158
1164
|
]);
|
|
1159
1165
|
}
|
|
1160
|
-
const Qa = /* @__PURE__ */ m(
|
|
1161
|
-
const
|
|
1166
|
+
const Qa = /* @__PURE__ */ m(Jt, [["render", Xt]]);
|
|
1167
|
+
const Zt = {
|
|
1162
1168
|
name: "Tabs",
|
|
1163
1169
|
created() {
|
|
1164
1170
|
this.$nextTick(function() {
|
|
1165
|
-
import("./tabs.component.min-
|
|
1171
|
+
import("./tabs.component.min-f6ff4ad9.mjs").then((t) => {
|
|
1166
1172
|
window.customElements.get("iam-tabs") || window.customElements.define("iam-tabs", t.default);
|
|
1167
1173
|
}).catch((t) => {
|
|
1168
1174
|
console.log(t.message);
|
|
1169
1175
|
});
|
|
1170
1176
|
});
|
|
1171
1177
|
}
|
|
1172
|
-
},
|
|
1173
|
-
function
|
|
1174
|
-
return o(), l("iam-tabs",
|
|
1178
|
+
}, ea = { ref: "wrapper" };
|
|
1179
|
+
function ta(t, a, e, i, r, s) {
|
|
1180
|
+
return o(), l("iam-tabs", ea, [
|
|
1175
1181
|
u(t.$slots, "default")
|
|
1176
1182
|
], 512);
|
|
1177
1183
|
}
|
|
1178
|
-
const Ya = /* @__PURE__ */ m(
|
|
1184
|
+
const Ya = /* @__PURE__ */ m(Zt, [["render", ta]]), aa = {
|
|
1179
1185
|
name: "Tab",
|
|
1180
1186
|
props: {
|
|
1181
1187
|
title: {
|
|
@@ -1197,20 +1203,20 @@ const Ya = /* @__PURE__ */ m(Xt, [["render", ea]]), ta = {
|
|
|
1197
1203
|
isDisabled: !!this.disabled
|
|
1198
1204
|
};
|
|
1199
1205
|
}
|
|
1200
|
-
},
|
|
1201
|
-
function
|
|
1202
|
-
return o(), l("details",
|
|
1206
|
+
}, sa = { class: "tab" }, ia = ["innerHTML"];
|
|
1207
|
+
function na(t, a, e, i, r, s) {
|
|
1208
|
+
return o(), l("details", sa, [
|
|
1203
1209
|
d("summary", {
|
|
1204
1210
|
innerHTML: e.title,
|
|
1205
1211
|
class: b({ disabled: r.isDisabled })
|
|
1206
|
-
}, null, 10,
|
|
1212
|
+
}, null, 10, ia),
|
|
1207
1213
|
u(t.$slots, "default")
|
|
1208
1214
|
]);
|
|
1209
1215
|
}
|
|
1210
|
-
const
|
|
1216
|
+
const Xa = /* @__PURE__ */ m(aa, [["render", na]]);
|
|
1211
1217
|
let P = C.props;
|
|
1212
1218
|
P.fields.required = !1;
|
|
1213
|
-
const
|
|
1219
|
+
const oa = {
|
|
1214
1220
|
components: {
|
|
1215
1221
|
Table: C,
|
|
1216
1222
|
Input: N
|
|
@@ -1256,15 +1262,15 @@ const na = {
|
|
|
1256
1262
|
required: !1
|
|
1257
1263
|
}
|
|
1258
1264
|
}
|
|
1259
|
-
},
|
|
1260
|
-
function
|
|
1265
|
+
}, la = { class: "container note-feed mb-2" }, ra = ["innerHTML"], da = ["action", "method"], ca = ["value"], ua = /* @__PURE__ */ d("button", { class: "btn btn-tertiary" }, "Submit note", -1);
|
|
1266
|
+
function ma(t, a, e, i, r, s) {
|
|
1261
1267
|
const n = q("Table"), c = q("Input");
|
|
1262
|
-
return o(), l("div",
|
|
1268
|
+
return o(), l("div", la, [
|
|
1263
1269
|
e.title ? (o(), l("span", {
|
|
1264
1270
|
key: 0,
|
|
1265
1271
|
class: "h3",
|
|
1266
1272
|
innerHTML: e.title
|
|
1267
|
-
}, null, 8,
|
|
1273
|
+
}, null, 8, ra)) : p("", !0),
|
|
1268
1274
|
v(n, w({
|
|
1269
1275
|
fields: [{ key: "date_added" }, { key: "user" }, { key: "note" }],
|
|
1270
1276
|
items: r.itemsData
|
|
@@ -1278,7 +1284,7 @@ function ua(t, a, e, i, r, s) {
|
|
|
1278
1284
|
type: "hidden",
|
|
1279
1285
|
value: e.user,
|
|
1280
1286
|
name: "user"
|
|
1281
|
-
}, null, 8,
|
|
1287
|
+
}, null, 8, ca),
|
|
1282
1288
|
v(c, {
|
|
1283
1289
|
id: "addNote",
|
|
1284
1290
|
type: "textarea",
|
|
@@ -1286,11 +1292,11 @@ function ua(t, a, e, i, r, s) {
|
|
|
1286
1292
|
required: "",
|
|
1287
1293
|
class: "mw-100"
|
|
1288
1294
|
}),
|
|
1289
|
-
|
|
1290
|
-
], 40,
|
|
1295
|
+
ua
|
|
1296
|
+
], 40, da)
|
|
1291
1297
|
]);
|
|
1292
1298
|
}
|
|
1293
|
-
const
|
|
1299
|
+
const Za = /* @__PURE__ */ m(oa, [["render", ma]]), pa = {
|
|
1294
1300
|
name: "Applied Filter",
|
|
1295
1301
|
mounted() {
|
|
1296
1302
|
this.$nextTick(function() {
|
|
@@ -1302,20 +1308,20 @@ const Xa = /* @__PURE__ */ m(na, [["render", ua]]), ma = {
|
|
|
1302
1308
|
});
|
|
1303
1309
|
}
|
|
1304
1310
|
};
|
|
1305
|
-
function
|
|
1311
|
+
function ha(t, a, e, i, r, s) {
|
|
1306
1312
|
return o(), l("iam-applied-filters", null, [
|
|
1307
1313
|
u(t.$slots, "default")
|
|
1308
1314
|
]);
|
|
1309
1315
|
}
|
|
1310
|
-
const
|
|
1316
|
+
const es = /* @__PURE__ */ m(pa, [["render", ha]]);
|
|
1311
1317
|
/*!
|
|
1312
|
-
* iamKey v5.
|
|
1318
|
+
* iamKey v5.7.0
|
|
1313
1319
|
* Copyright 2022-2024 iamproperty
|
|
1314
1320
|
*/
|
|
1315
|
-
function ha(t, a) {
|
|
1316
|
-
fa(t, a);
|
|
1317
|
-
}
|
|
1318
1321
|
function fa(t, a) {
|
|
1322
|
+
ba(t, a);
|
|
1323
|
+
}
|
|
1324
|
+
function ba(t, a) {
|
|
1319
1325
|
var e;
|
|
1320
1326
|
a.addEventListener("keyup", (i) => {
|
|
1321
1327
|
clearTimeout(e), e = setTimeout(function() {
|
|
@@ -1332,7 +1338,7 @@ const M = function(t, a) {
|
|
|
1332
1338
|
}), window.dataLayer = window.dataLayer || [], window.dataLayer.push({ event: "Filtered list", value: a });
|
|
1333
1339
|
};
|
|
1334
1340
|
window.dataLayer = window.dataLayer || [], window.dataLayer.push({ event: "customElementRegistered", element: "filterlist" });
|
|
1335
|
-
class
|
|
1341
|
+
class ya extends HTMLElement {
|
|
1336
1342
|
constructor() {
|
|
1337
1343
|
super(), this.attachShadow({ mode: "open" });
|
|
1338
1344
|
const a = document.body.hasAttribute("data-assets-location") ? document.body.getAttribute("data-assets-location") : "/assets", e = document.body.hasAttribute("data-core-css") ? document.body.getAttribute("data-core-css") : `${a}/css/core.min.css`, i = document.createElement("template");
|
|
@@ -1367,20 +1373,20 @@ class ba extends HTMLElement {
|
|
|
1367
1373
|
}
|
|
1368
1374
|
connectedCallback() {
|
|
1369
1375
|
let a = this.classList.toString();
|
|
1370
|
-
this.shadowRoot.querySelector(".list__wrapper").setAttribute("class", `list__wrapper ${a}`), this.querySelector("i.fa-search") || (this.innerHTML += '<i class="fa fa-light fa-search" aria-hidden="true" slot="icon"></i>'),
|
|
1376
|
+
this.shadowRoot.querySelector(".list__wrapper").setAttribute("class", `list__wrapper ${a}`), this.querySelector("i.fa-search") || (this.innerHTML += '<i class="fa fa-light fa-search" aria-hidden="true" slot="icon"></i>'), fa(this.querySelector("ul"), this.shadowRoot.querySelector("#search"));
|
|
1371
1377
|
}
|
|
1372
1378
|
}
|
|
1373
|
-
window.customElements.get("iam-filterlist") || window.customElements.define("iam-filterlist",
|
|
1374
|
-
const
|
|
1379
|
+
window.customElements.get("iam-filterlist") || window.customElements.define("iam-filterlist", ya);
|
|
1380
|
+
const _a = {
|
|
1375
1381
|
name: "Filter list"
|
|
1376
1382
|
};
|
|
1377
|
-
function
|
|
1383
|
+
function ga(t, a, e, i, r, s) {
|
|
1378
1384
|
return o(), l("iam-filterlist", null, [
|
|
1379
1385
|
u(t.$slots, "default")
|
|
1380
1386
|
]);
|
|
1381
1387
|
}
|
|
1382
|
-
const
|
|
1383
|
-
function
|
|
1388
|
+
const ts = /* @__PURE__ */ m(_a, [["render", ga]]);
|
|
1389
|
+
function va(t) {
|
|
1384
1390
|
if (t.hasAttribute("data-type") && t.getAttribute("data-type") == "toast") {
|
|
1385
1391
|
let e = document.querySelector(".notification__holder");
|
|
1386
1392
|
e || (e = document.createElement("div"), e.classList.add("notification__holder"), e.classList.add("container"), document.querySelector("body").appendChild(e)), t.closest(".notification__holder") || e.appendChild(t);
|
|
@@ -1389,7 +1395,7 @@ function ga(t) {
|
|
|
1389
1395
|
event && event.target instanceof HTMLElement && event.target.closest("[data-dismiss-button]") && (e.preventDefault(), T(t));
|
|
1390
1396
|
}, !1), t.hasAttribute("data-timeout")) {
|
|
1391
1397
|
let e = t.getAttribute("data-timeout");
|
|
1392
|
-
var a = new
|
|
1398
|
+
var a = new wa(function() {
|
|
1393
1399
|
T(t);
|
|
1394
1400
|
}, e);
|
|
1395
1401
|
t.addEventListener("mouseenter", (i) => {
|
|
@@ -1399,7 +1405,7 @@ function ga(t) {
|
|
|
1399
1405
|
});
|
|
1400
1406
|
}
|
|
1401
1407
|
}
|
|
1402
|
-
function
|
|
1408
|
+
function wa(t, a) {
|
|
1403
1409
|
var e, i, r = a;
|
|
1404
1410
|
this.pause = function() {
|
|
1405
1411
|
window.clearTimeout(e), r -= /* @__PURE__ */ new Date() - i;
|
|
@@ -1415,7 +1421,7 @@ window.dataLayer.push({
|
|
|
1415
1421
|
event: "customElementRegistered",
|
|
1416
1422
|
element: "Notification"
|
|
1417
1423
|
});
|
|
1418
|
-
class
|
|
1424
|
+
class $a extends HTMLElement {
|
|
1419
1425
|
constructor() {
|
|
1420
1426
|
super(), this.attachShadow({ mode: "open" });
|
|
1421
1427
|
const a = document.body.hasAttribute("data-assets-location") ? document.body.getAttribute("data-assets-location") : "/assets", e = document.body.hasAttribute("data-core-css") ? document.body.getAttribute("data-core-css") : `${a}/css/core.min.css`, i = `@import "${a}/css/components/notification.css";`, r = `@import "${a}/css/components/notification.global.css";`, s = this.querySelectorAll("a,button");
|
|
@@ -1455,31 +1461,31 @@ class wa extends HTMLElement {
|
|
|
1455
1461
|
default:
|
|
1456
1462
|
this.innerHTML += '<i class="fa-solid fa-circle-info" aria-hidden="true" slot="icon"></i>';
|
|
1457
1463
|
}
|
|
1458
|
-
|
|
1464
|
+
va(i), a && a.addEventListener("click", function(r) {
|
|
1459
1465
|
T(i);
|
|
1460
1466
|
}, !1);
|
|
1461
1467
|
}
|
|
1462
1468
|
}
|
|
1463
|
-
const
|
|
1469
|
+
const ka = {
|
|
1464
1470
|
name: "Notification",
|
|
1465
1471
|
props: {},
|
|
1466
1472
|
created() {
|
|
1467
1473
|
this.$nextTick(function() {
|
|
1468
|
-
window.customElements.get("iam-notification") || window.customElements.define("iam-notification",
|
|
1474
|
+
window.customElements.get("iam-notification") || window.customElements.define("iam-notification", $a);
|
|
1469
1475
|
});
|
|
1470
1476
|
}
|
|
1471
1477
|
};
|
|
1472
|
-
function
|
|
1478
|
+
function Aa(t, a, e, i, r, s) {
|
|
1473
1479
|
return o(), l("iam-notification", null, [
|
|
1474
1480
|
u(t.$slots, "default")
|
|
1475
1481
|
]);
|
|
1476
1482
|
}
|
|
1477
|
-
const
|
|
1483
|
+
const as = /* @__PURE__ */ m(ka, [["render", Aa]]), La = {
|
|
1478
1484
|
name: "Actionbar",
|
|
1479
1485
|
props: {},
|
|
1480
1486
|
mounted() {
|
|
1481
1487
|
this.$nextTick(function() {
|
|
1482
|
-
import("./actionbar.component.min-
|
|
1488
|
+
import("./actionbar.component.min-2f3c4fc5.mjs").then((t) => {
|
|
1483
1489
|
window.customElements.get("iam-actionbar") || window.customElements.define("iam-actionbar", t.default);
|
|
1484
1490
|
}).catch((t) => {
|
|
1485
1491
|
console.log(t.message);
|
|
@@ -1487,14 +1493,14 @@ const ts = /* @__PURE__ */ m($a, [["render", ka]]), Aa = {
|
|
|
1487
1493
|
});
|
|
1488
1494
|
}
|
|
1489
1495
|
};
|
|
1490
|
-
function
|
|
1496
|
+
function Sa(t, a, e, i, r, s) {
|
|
1491
1497
|
return o(), l("iam-actionbar", null, [
|
|
1492
1498
|
u(t.$slots, "default")
|
|
1493
1499
|
]);
|
|
1494
1500
|
}
|
|
1495
|
-
const
|
|
1501
|
+
const ss = /* @__PURE__ */ m(La, [["render", Sa]]);
|
|
1496
1502
|
/*!
|
|
1497
|
-
* iamKey v5.
|
|
1503
|
+
* iamKey v5.7.0
|
|
1498
1504
|
* Copyright 2022-2024 iamproperty
|
|
1499
1505
|
*/
|
|
1500
1506
|
class R extends HTMLElement {
|
|
@@ -1504,7 +1510,7 @@ class R extends HTMLElement {
|
|
|
1504
1510
|
i.innerHTML = `
|
|
1505
1511
|
<style>
|
|
1506
1512
|
@import "${e}";
|
|
1507
|
-
:host{container-type:inline-size;display:block}.pagination{display:block}@container (width > 23.4375em){.pagination{display:flex;align-items:center;justify-content:space-between !important;padding-top:2rem}}.pagination>div{display:flex;align-items:center}.pagination div:is(.page-jump,.per-page){border:1px solid var(--colour-light);height:3.25rem;display:none;align-items:center;padding-inline:1rem}.pagination div:is(.page-jump,.per-page) .select--minimal{
|
|
1513
|
+
:host{container-type:inline-size;display:block}.pagination{display:block}@container (width > 23.4375em){.pagination{display:flex;align-items:center;justify-content:space-between !important;padding-top:2rem}}.pagination>div{display:flex;align-items:center}.pagination div:is(.page-jump,.per-page){border:1px solid var(--colour-light);height:3.25rem;display:none;align-items:center;padding-inline:1rem}.pagination div:is(.page-jump,.per-page) .select--minimal{height:calc(3.25rem - 1em);line-height:calc(3.25rem - 1em);margin-left:-1rem;font-weight:bold}.pagination div:is(.page-jump,.per-page) div:has(>select){margin-bottom:0}.pagination div:is(.page-jump,.per-page) div:has(>select):after{top:50%}.page-jump{border-right:none !important}.total-pages{white-space:nowrap}:host([data-page-jump][data-minimal]) .page-jump{display:flex !important}@container (width > 23.4375em){:host([data-page-jump]) .page-jump{display:flex !important}}@container (width > 23.4375em){:host([data-per-page]:not([data-page-jump][data-item-count])) .per-page{display:flex !important}}@container (width > 48em){:host([data-per-page][data-page-jump][data-item-count]) .per-page{display:flex !important}}.pagination>.item-count{display:block;text-align:center;margin-bottom:1rem;margin-inline:auto}@container (width > 23.4375em){.pagination>.item-count{display:none}:host([data-item-count]) .pagination>.item-count{display:flex !important;margin:0}}*:where(.prev,.next){border:1px solid var(--colour-light);line-height:3.25rem;height:3.25rem;margin:0;display:none;background:none;padding-inline:1rem;color:var(--colour-body)}@container (width > 23.4375em){*:where(.prev,.next){display:inline-block}}*:where(.prev,.next):after{margin-left:.5em;font-size:.8rem;content:"";font-family:"Font Awesome 6 Pro";color:var(--colour-info)}*:where(.prev,.next):is(:hover,:focus):not(:disabled){background-color:var(--pagination-link-color);color:var(--colour-hover)}*:where(.prev,.next):is(:active):not(:disabled){background-color:var(--pagination-link-color);color:var(--colour-active)}*:where(.prev,.next):disabled:after,*:where(.prev,.next):disabled:before{color:inherit !important}:host([data-minimal]) .pagination{justify-content:flex-end}@container (width > 23.4375em){:host([data-minimal]) .pagination{justify-content:space-between}}:host([data-minimal]) *:where(.prev,.next){display:inline-block !important}.prev{border-right:none}.prev:after{display:none}.prev:before{margin-right:.5em;font-size:.8rem;content:"";font-family:"Font Awesome 6 Pro";color:var(--colour-info)}.mobile-controls{display:block}:host([data-minimal]) .pagination{padding-top:1.5rem;display:flex;align-items:center;justify-content:flex-end}:host([data-minimal]) *:is(.mobile-controls,.item-count){display:none}@container (width > 23.4375em){.mobile-controls{display:none !important}:host([data-item-count]) .item-count{display:flex !important}}.fa-spin{display:none !important;font-size:3rem;color:var(--colour-info)}:host([data-loading]) .mobile-controls{padding-top:2rem}:host([data-loading]) .item-count,:host([data-loading]) .mobile-controls>*:not(.fa-spin){display:none !important}:host([data-loading]) .fa-spin{display:block !important;margin:auto}/*# sourceMappingURL=assets/css/components/pagination.css.map */
|
|
1508
1514
|
|
|
1509
1515
|
|
|
1510
1516
|
${this.hasAttribute("css") ? `@import "${this.getAttribute("css")}";` : ""}
|
|
@@ -1559,12 +1565,12 @@ class R extends HTMLElement {
|
|
|
1559
1565
|
});
|
|
1560
1566
|
}
|
|
1561
1567
|
setup() {
|
|
1562
|
-
const a = this.shadowRoot.querySelector(".pagination"), e = this.shadowRoot.querySelector(".page-jump select"), i = this.shadowRoot.querySelector(".prev"), r = this.shadowRoot.querySelector(".next"), s = this.shadowRoot.querySelector(".item-count"), n = this.shadowRoot.querySelector(".per-page select"), c = this.shadowRoot.querySelector(".total-pages"), h = parseInt(this.getAttribute("data-page")), _ = parseInt(this.getAttribute("data-total")), g = parseInt(this.getAttribute("data-show")), f = parseInt(this.getAttribute("data-increment")),
|
|
1568
|
+
const a = this.shadowRoot.querySelector(".pagination"), e = this.shadowRoot.querySelector(".page-jump select"), i = this.shadowRoot.querySelector(".prev"), r = this.shadowRoot.querySelector(".next"), s = this.shadowRoot.querySelector(".item-count"), n = this.shadowRoot.querySelector(".per-page select"), c = this.shadowRoot.querySelector(".total-pages"), h = parseInt(this.getAttribute("data-page")), _ = parseInt(this.getAttribute("data-total")), g = parseInt(this.getAttribute("data-show")), f = parseInt(this.getAttribute("data-increment")), S = Math.ceil(_ / f);
|
|
1563
1569
|
_ > g && a.classList.remove("d-none");
|
|
1564
1570
|
let E = "";
|
|
1565
|
-
for (let A = 1; A <=
|
|
1571
|
+
for (let A = 1; A <= S; A++)
|
|
1566
1572
|
E += `<option value="${A}" ${A == h ? "selected" : ""}>${A}</option>`;
|
|
1567
|
-
e.innerHTML = E, c.innerHTML = `of ${
|
|
1573
|
+
e.innerHTML = E, c.innerHTML = `of ${S}`, h == S ? r.setAttribute("disabled", "disabled") : r.removeAttribute("disabled"), h == 1 ? i.setAttribute("disabled", "disabled") : i.removeAttribute("disabled");
|
|
1568
1574
|
let j = h == 1 ? 1 : (h - 1) * g + 1, H = h == 1 ? g : h * g;
|
|
1569
1575
|
s.innerHTML = `${j} - ${H > _ ? _ : H} of ${_} items`;
|
|
1570
1576
|
const I = [15, 25, 40, 50];
|
|
@@ -1597,10 +1603,10 @@ class R extends HTMLElement {
|
|
|
1597
1603
|
}
|
|
1598
1604
|
}
|
|
1599
1605
|
}
|
|
1600
|
-
const
|
|
1606
|
+
const xa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1601
1607
|
__proto__: null,
|
|
1602
1608
|
default: R
|
|
1603
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
1609
|
+
}, Symbol.toStringTag, { value: "Module" })), qa = {
|
|
1604
1610
|
name: "Pagination",
|
|
1605
1611
|
props: {},
|
|
1606
1612
|
computed: {},
|
|
@@ -1612,14 +1618,14 @@ const La = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1612
1618
|
updated() {
|
|
1613
1619
|
}
|
|
1614
1620
|
};
|
|
1615
|
-
function
|
|
1621
|
+
function Ta(t, a, e, i, r, s) {
|
|
1616
1622
|
return o(), l("iam-pagination");
|
|
1617
1623
|
}
|
|
1618
|
-
const
|
|
1624
|
+
const is = /* @__PURE__ */ m(qa, [["render", Ta]]), Ea = {
|
|
1619
1625
|
name: "Address Lookup",
|
|
1620
1626
|
mounted() {
|
|
1621
1627
|
this.$nextTick(function() {
|
|
1622
|
-
import("./address-lookup.component.min-
|
|
1628
|
+
import("./address-lookup.component.min-16beabdf.mjs").then((t) => {
|
|
1623
1629
|
window.customElements.get("iam-address-lookup") || window.customElements.define("iam-address-lookup", t.default);
|
|
1624
1630
|
}).catch((t) => {
|
|
1625
1631
|
console.log(t.message);
|
|
@@ -1627,18 +1633,18 @@ const ss = /* @__PURE__ */ m(Sa, [["render", qa]]), Ta = {
|
|
|
1627
1633
|
});
|
|
1628
1634
|
}
|
|
1629
1635
|
};
|
|
1630
|
-
function
|
|
1636
|
+
function Ha(t, a, e, i, r, s) {
|
|
1631
1637
|
return o(), l("iam-address-lookup", null, [
|
|
1632
1638
|
u(t.$slots, "default")
|
|
1633
1639
|
]);
|
|
1634
1640
|
}
|
|
1635
|
-
const
|
|
1641
|
+
const ns = /* @__PURE__ */ m(Ea, [["render", Ha]]);
|
|
1636
1642
|
window.dataLayer = window.dataLayer || [];
|
|
1637
1643
|
window.dataLayer.push({
|
|
1638
1644
|
event: "customElementRegistered",
|
|
1639
1645
|
element: "collapsible side menu"
|
|
1640
1646
|
});
|
|
1641
|
-
class
|
|
1647
|
+
class Ma extends HTMLElement {
|
|
1642
1648
|
constructor() {
|
|
1643
1649
|
super(), this.attachShadow({ mode: "open" });
|
|
1644
1650
|
const a = document.body.hasAttribute("data-assets-location") ? document.body.getAttribute("data-assets-location") : "/assets", e = document.body.hasAttribute("data-core-css") ? document.body.getAttribute("data-core-css") : `${a}/css/core.min.css`, i = `@import "${a}/css/components/collapsible-side.css";`, r = document.createElement("template");
|
|
@@ -1686,45 +1692,45 @@ class Ha extends HTMLElement {
|
|
|
1686
1692
|
});
|
|
1687
1693
|
}
|
|
1688
1694
|
}
|
|
1689
|
-
window.customElements.get("iam-collapsible-side") || window.customElements.define("iam-collapsible-side",
|
|
1690
|
-
const
|
|
1695
|
+
window.customElements.get("iam-collapsible-side") || window.customElements.define("iam-collapsible-side", Ma);
|
|
1696
|
+
const Ca = {
|
|
1691
1697
|
name: "CollapsibleSideMenu",
|
|
1692
1698
|
props: {},
|
|
1693
1699
|
mounted() {
|
|
1694
1700
|
}
|
|
1695
1701
|
};
|
|
1696
|
-
function
|
|
1702
|
+
function Na(t, a, e, i, r, s) {
|
|
1697
1703
|
return o(), l("iam-collapsible-side", null, [
|
|
1698
1704
|
u(t.$slots, "default")
|
|
1699
1705
|
]);
|
|
1700
1706
|
}
|
|
1701
|
-
const
|
|
1707
|
+
const os = /* @__PURE__ */ m(Ca, [["render", Na]]);
|
|
1702
1708
|
export {
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1709
|
+
Ia as Accordion,
|
|
1710
|
+
Da as AccordionItem,
|
|
1711
|
+
ss as Actionbar,
|
|
1712
|
+
ns as AddressLookup,
|
|
1713
|
+
es as AppliedFilters,
|
|
1714
|
+
Va as Banner,
|
|
1715
|
+
Fa as Card,
|
|
1716
|
+
za as Carousel,
|
|
1717
|
+
os as CollapsibleSideMenu,
|
|
1718
|
+
ja as FileUpload,
|
|
1719
|
+
ts as Filterlist,
|
|
1720
|
+
Ba as Header,
|
|
1715
1721
|
N as Input,
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1722
|
+
Ra as Logo,
|
|
1723
|
+
Ka as Nav,
|
|
1724
|
+
Za as NoteFeed,
|
|
1725
|
+
as as Notification,
|
|
1726
|
+
is as Pagination,
|
|
1727
|
+
Wa as PropertySearchbar,
|
|
1728
|
+
Ja as Snapshot,
|
|
1723
1729
|
Qa as Step,
|
|
1724
|
-
|
|
1725
|
-
|
|
1730
|
+
Ga as Stepper,
|
|
1731
|
+
Xa as Tab,
|
|
1726
1732
|
C as Table,
|
|
1727
1733
|
Ya as Tabs,
|
|
1728
|
-
|
|
1729
|
-
|
|
1734
|
+
Oa as Testimonial,
|
|
1735
|
+
Ua as Timeline
|
|
1730
1736
|
};
|