@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.
Files changed (92) hide show
  1. package/assets/css/components/address-lookup.css +1 -1
  2. package/assets/css/components/address-lookup.css.map +1 -1
  3. package/assets/css/components/carousel.css +1 -1
  4. package/assets/css/components/carousel.css.map +1 -1
  5. package/assets/css/components/fileupload.css +1 -1
  6. package/assets/css/components/fileupload.css.map +1 -1
  7. package/assets/css/components/pagination.css +1 -1
  8. package/assets/css/components/pagination.css.map +1 -1
  9. package/assets/css/components/tabs.css +1 -1
  10. package/assets/css/components/tabs.css.map +1 -1
  11. package/assets/css/core.min.css +1 -1
  12. package/assets/css/core.min.css.map +1 -1
  13. package/assets/css/style.min.css +1 -1
  14. package/assets/css/style.min.css.map +1 -1
  15. package/assets/js/components/accordion/accordion.component.min.js +1 -1
  16. package/assets/js/components/actionbar/actionbar.component.min.js +3 -3
  17. package/assets/js/components/actionbar/actionbar.component.min.js.map +1 -1
  18. package/assets/js/components/address-lookup/address-lookup.component.js +21 -10
  19. package/assets/js/components/address-lookup/address-lookup.component.min.js +6 -5
  20. package/assets/js/components/address-lookup/address-lookup.component.min.js.map +1 -1
  21. package/assets/js/components/applied-filters/applied-filters.component.min.js +1 -1
  22. package/assets/js/components/card/card.component.js +39 -20
  23. package/assets/js/components/card/card.component.min.js +19 -19
  24. package/assets/js/components/card/card.component.min.js.map +1 -1
  25. package/assets/js/components/carousel/carousel.component.js +14 -1
  26. package/assets/js/components/carousel/carousel.component.min.js +5 -5
  27. package/assets/js/components/carousel/carousel.component.min.js.map +1 -1
  28. package/assets/js/components/collapsible-side/collapsible-side.component.min.js +1 -1
  29. package/assets/js/components/fileupload/fileupload.component.js +16 -0
  30. package/assets/js/components/fileupload/fileupload.component.min.js +7 -5
  31. package/assets/js/components/fileupload/fileupload.component.min.js.map +1 -1
  32. package/assets/js/components/filterlist/filterlist.component.min.js +1 -1
  33. package/assets/js/components/header/header.component.min.js +1 -1
  34. package/assets/js/components/inline-edit/inline-edit.component.js +2 -2
  35. package/assets/js/components/inline-edit/inline-edit.component.min.js +3 -3
  36. package/assets/js/components/inline-edit/inline-edit.component.min.js.map +1 -1
  37. package/assets/js/components/marketing/marketing.component.min.js +1 -1
  38. package/assets/js/components/multiselect/multiselect.component.min.js +1 -1
  39. package/assets/js/components/nav/nav.component.min.js +1 -1
  40. package/assets/js/components/notification/notification.component.min.js +1 -1
  41. package/assets/js/components/pagination/pagination.component.min.js +3 -3
  42. package/assets/js/components/search/search.component.min.js +1 -1
  43. package/assets/js/components/search/search.component.min.js.map +1 -1
  44. package/assets/js/components/slider/slider.component.min.js +1 -1
  45. package/assets/js/components/table/table.component.js +16 -1
  46. package/assets/js/components/table/table.component.min.js +4 -4
  47. package/assets/js/components/table/table.component.min.js.map +1 -1
  48. package/assets/js/components/tabs/tabs.component.js +3 -1
  49. package/assets/js/components/tabs/tabs.component.min.js +8 -6
  50. package/assets/js/components/tabs/tabs.component.min.js.map +1 -1
  51. package/assets/js/dynamic.min.js +4 -4
  52. package/assets/js/dynamic.min.js.map +1 -1
  53. package/assets/js/modules/carousel.js +30 -8
  54. package/assets/js/modules/dialogs.js +6 -0
  55. package/assets/js/modules/fileupload.js +44 -12
  56. package/assets/js/modules/helpers.js +30 -0
  57. package/assets/js/modules/inputs.js +1 -1
  58. package/assets/js/modules/table.js +6 -1
  59. package/assets/js/modules/tabs.js +84 -1
  60. package/assets/js/scripts.bundle.js +34 -32
  61. package/assets/js/scripts.bundle.js.map +1 -1
  62. package/assets/js/scripts.bundle.min.js +2 -2
  63. package/assets/js/scripts.bundle.min.js.map +1 -1
  64. package/assets/sass/_components.scss +14 -0
  65. package/assets/sass/components/address-lookup.scss +4 -0
  66. package/assets/sass/components/carousel.scss +31 -7
  67. package/assets/sass/components/fileupload.scss +0 -10
  68. package/assets/sass/components/pagination.scss +11 -16
  69. package/assets/sass/components/tabs.scss +38 -3
  70. package/assets/sass/elements/admin-panel.scss +44 -6
  71. package/assets/sass/elements/dialog.scss +1 -1
  72. package/assets/sass/elements/forms.scss +3 -2
  73. package/assets/ts/components/address-lookup/address-lookup.component.ts +25 -11
  74. package/assets/ts/components/card/card.component.ts +49 -23
  75. package/assets/ts/components/carousel/carousel.component.ts +17 -1
  76. package/assets/ts/components/fileupload/fileupload.component.ts +26 -0
  77. package/assets/ts/components/inline-edit/inline-edit.component.ts +2 -2
  78. package/assets/ts/components/table/table.component.ts +24 -1
  79. package/assets/ts/components/tabs/tabs.component.ts +3 -1
  80. package/assets/ts/modules/carousel.ts +40 -9
  81. package/assets/ts/modules/dialogs.ts +8 -0
  82. package/assets/ts/modules/fileupload.ts +64 -20
  83. package/assets/ts/modules/helpers.ts +29 -0
  84. package/assets/ts/modules/inputs.ts +1 -1
  85. package/assets/ts/modules/table.ts +8 -2
  86. package/assets/ts/modules/tabs.ts +116 -1
  87. package/dist/components.es.js +199 -193
  88. package/dist/components.umd.js +78 -68
  89. package/dist/style.css +1 -1
  90. package/package.json +1 -1
  91. package/src/components/Card/Card.vue +1 -1
  92. package/src/components/Carousel/Carousel.vue +5 -1
@@ -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 x, mergeProps as w, vModelDynamic as S, 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";
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 Pa = /* @__PURE__ */ m(U, [["render", G]]), Q = (t) => t.charAt(0).toUpperCase() + t.slice(1), Y = (t) => t.replace(/_/g, " "), J = (t) => t.replace(/ /g, "_"), X = function(t) {
50
- return t = t.toLowerCase(), t = J(t), t = t.replace(/\W/g, ""), 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(Y(t))}`;
65
+ return (t) => `${J(Q(t))}`;
66
66
  }
67
67
  },
68
68
  created() {
69
69
  this.$nextTick(function() {
70
- import("./table.component-d5af7c61.mjs").then((t) => {
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(() => La).then((t) => {
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"], xe = ["value"];
304
- function Le(t, a, e, i, r, s) {
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() ? x((o(), l("input", w({
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
- [S, s.inputVal]
340
+ [x, s.inputVal]
341
341
  ]) : p("", !0),
342
- e.type == "textarea" ? x((o(), l("textarea", w({
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
- x(d("input", w({
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
- [S, s.inputVal]
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
- x(d("input", w({
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
- [S, s.inputVal]
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" ? x((o(), l("select", w({
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, xe))), 128))
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", Le]]), Se = {
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-bd7e3daf.mjs").then((t) => {
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
- }, Ra = /* @__PURE__ */ Object.assign(Se, {
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-b6e1e3a4.mjs").then((t) => {
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 ja = /* @__PURE__ */ m(qe, [["render", Ee]]), He = {
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 Ia = /* @__PURE__ */ m(He, [["render", Ce]]), Ne = {
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 Da = /* @__PURE__ */ m(Ne, [["render", Fe]]), ze = {
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-9f366742.mjs").then((t) => {
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 Va = /* @__PURE__ */ m(ze, [["render", Be]]), Oe = {
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-4a93d1d5.mjs").then((t) => {
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 Ue(t, a, e, i, r, s) {
631
- return o(), l("iam-carousel", null, [
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 Fa = /* @__PURE__ */ m(Oe, [["render", Ue]]), We = {
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-31d2603a.mjs").then((t) => {
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
- }, Ke = ["image"], Ge = ["innerHTML"];
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, Ge)) : p("", !0),
669
+ }, null, 8, Je)) : p("", !0),
664
670
  u(t.$slots, "default")
665
- ], 8, Ke);
671
+ ], 8, Ge);
666
672
  }
667
- const za = /* @__PURE__ */ m(We, [["render", Qe]]);
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 Je = {
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
- }, Xe = {
718
+ }, Ze = {
713
719
  class: "container testimonial mb-5",
714
720
  "data-show": "1",
715
721
  ref: "wrapper"
716
- }, Ze = { class: "row" }, et = { class: "col-md-5 position-relative" }, tt = { class: "testimonial__images" }, at = ["src"], st = /* @__PURE__ */ d("div", { class: "testimonial__controls" }, [
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), it = { class: "col-md-7" }, nt = /* @__PURE__ */ d("h2", null, "What our customers think…", -1), ot = { class: "testimonial__content" }, lt = ["innerHTML"], rt = ["innerHTML"], dt = { class: "testimonial__after" }, ct = /* @__PURE__ */ d("span", { class: "circle circle--dots d-none d-md-block" }, null, -1);
727
- function ut(t, a, e, i, r, s) {
728
- return o(), l("div", Xe, [
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", Ze, [
733
- d("div", et, [
734
- d("div", tt, [
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, at))), 128))
746
+ }, null, 10, st))), 128))
741
747
  ]),
742
- st
748
+ it
743
749
  ]),
744
- d("div", it, [
745
- nt,
746
- d("div", ot, [
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, lt),
759
+ }, null, 8, rt),
754
760
  d("cite", {
755
761
  innerHTML: n.cite
756
- }, null, 8, rt)
762
+ }, null, 8, dt)
757
763
  ], 2))), 128))
758
764
  ]),
759
- d("div", dt, [
765
+ d("div", ct, [
760
766
  u(t.$slots, "default")
761
767
  ])
762
768
  ])
763
769
  ]),
764
- ct
770
+ ut
765
771
  ], 2)
766
772
  ], 512);
767
773
  }
768
- const Ba = /* @__PURE__ */ m(Je, [["render", ut]]);
769
- const mt = {
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
- }, pt = { class: "timeline" }, ht = { class: "timeline__content" }, ft = ["src"];
778
- function bt(t, a, e, i, r, s) {
779
- return o(), l("div", pt, [
780
- d("div", ht, [
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, ft)) : p("", !0)
793
+ }, null, 8, bt)) : p("", !0)
788
794
  ]);
789
795
  }
790
- const Oa = /* @__PURE__ */ m(mt, [["render", bt]]);
791
- const yt = {
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
- }, _t = {
943
+ }, gt = {
938
944
  class: "container",
939
945
  ref: "wrapper"
940
- }, gt = { class: "property-searchbar" }, vt = ["action", "method"], wt = { class: "col-12 col-md-3" }, $t = { class: "col-12 col-md" }, kt = /* @__PURE__ */ d("span", { class: "form-label d-none d-md-block" }, "Price range", -1), At = {
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
- }, xt = { class: "col-12 col-md" }, Lt = /* @__PURE__ */ d("span", { class: "form-label d-none d-md-block" }, "Number of beds", -1), St = {
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
- }, qt = { class: "col-12 col-md-2" }, Tt = /* @__PURE__ */ d("div", { class: "col-12 col-md mw-md-fit-content d-flex property-searchbar__btn" }, [
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 Et(t, a, e, i, r, s) {
959
+ function Ht(t, a, e, i, r, s) {
954
960
  const n = q("Input");
955
- return o(), l("div", _t, [
961
+ return o(), l("div", gt, [
956
962
  u(t.$slots, "default"),
957
- d("div", gt, [
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", wt, [
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", $t, [
985
- kt,
986
- d("div", At, [
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", xt, [
1006
- Lt,
1007
- d("div", St, [
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", qt, [
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
- Tt
1035
- ], 8, vt)
1040
+ Et
1041
+ ], 8, wt)
1036
1042
  ]),
1037
1043
  u(t.$slots, "after")
1038
1044
  ], 512);
1039
1045
  }
1040
- const Ua = /* @__PURE__ */ m(yt, [["render", Et]]), Ht = {
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-f2d670e1.mjs").then((t) => {
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
- }, Mt = { ref: "wrapper" };
1054
- function Ct(t, a, e, i, r, s) {
1055
- return o(), l("iam-nav", Mt, [
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 Wa = /* @__PURE__ */ m(Ht, [["render", Ct]]);
1060
- const Nt = {
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
- }, Pt = { class: "container" }, Rt = ["aria-label"], jt = {
1079
+ }, Rt = { class: "container" }, jt = ["aria-label"], It = {
1074
1080
  key: 0,
1075
1081
  class: "h6 stepper__start"
1076
- }, It = { class: "list-unstyled" }, Dt = { class: "h6 stepper__end" };
1077
- function Vt(t, a, e, i, r, s) {
1078
- return o(), l("div", Pt, [
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", jt, y(e.label), 1)) : p("", !0),
1084
- d("ol", It, [
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", Dt, y(e.endlabel), 1)
1088
- ], 8, Rt)
1093
+ d("span", Vt, y(e.endlabel), 1)
1094
+ ], 8, jt)
1089
1095
  ]);
1090
1096
  }
1091
- const Ka = /* @__PURE__ */ m(Nt, [["render", Vt]]);
1092
- const Ft = {
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
- }, zt = {
1106
+ }, Bt = {
1101
1107
  class: "container snapshot",
1102
1108
  ref: "wrapper"
1103
- }, Bt = { class: "row" }, Ot = ["href"], Ut = { class: "lead snapshot__title" }, Wt = { class: "stat" };
1104
- function Kt(t, a, e, i, r, s) {
1105
- return o(), l("div", zt, [
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", Bt, [
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, Ot)) : p("", !0),
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", Ut, y(n.title), 1),
1120
- d("span", Wt, y(n.number), 1)
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 Ga = /* @__PURE__ */ m(Ft, [["render", Kt]]), Gt = {
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 Jt(t, a, e, i, r, s) {
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(Gt, [["render", Jt]]);
1161
- const Xt = {
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-1eb5fd48.mjs").then((t) => {
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
- }, Zt = { ref: "wrapper" };
1173
- function ea(t, a, e, i, r, s) {
1174
- return o(), l("iam-tabs", Zt, [
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(Xt, [["render", ea]]), ta = {
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
- }, aa = { class: "tab" }, sa = ["innerHTML"];
1201
- function ia(t, a, e, i, r, s) {
1202
- return o(), l("details", aa, [
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, sa),
1212
+ }, null, 10, ia),
1207
1213
  u(t.$slots, "default")
1208
1214
  ]);
1209
1215
  }
1210
- const Ja = /* @__PURE__ */ m(ta, [["render", ia]]);
1216
+ const Xa = /* @__PURE__ */ m(aa, [["render", na]]);
1211
1217
  let P = C.props;
1212
1218
  P.fields.required = !1;
1213
- const na = {
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
- }, oa = { class: "container note-feed mb-2" }, la = ["innerHTML"], ra = ["action", "method"], da = ["value"], ca = /* @__PURE__ */ d("button", { class: "btn btn-tertiary" }, "Submit note", -1);
1260
- function ua(t, a, e, i, r, s) {
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", oa, [
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, la)) : p("", !0),
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, da),
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
- ca
1290
- ], 40, ra)
1295
+ ua
1296
+ ], 40, da)
1291
1297
  ]);
1292
1298
  }
1293
- const Xa = /* @__PURE__ */ m(na, [["render", ua]]), ma = {
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 pa(t, a, e, i, r, s) {
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 Za = /* @__PURE__ */ m(ma, [["render", pa]]);
1316
+ const es = /* @__PURE__ */ m(pa, [["render", ha]]);
1311
1317
  /*!
1312
- * iamKey v5.6.1-beta9
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 ba extends HTMLElement {
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>'), ha(this.querySelector("ul"), this.shadowRoot.querySelector("#search"));
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", ba);
1374
- const ya = {
1379
+ window.customElements.get("iam-filterlist") || window.customElements.define("iam-filterlist", ya);
1380
+ const _a = {
1375
1381
  name: "Filter list"
1376
1382
  };
1377
- function _a(t, a, e, i, r, s) {
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 es = /* @__PURE__ */ m(ya, [["render", _a]]);
1383
- function ga(t) {
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 va(function() {
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 va(t, a) {
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 wa extends HTMLElement {
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
- ga(i), a && a.addEventListener("click", function(r) {
1464
+ va(i), a && a.addEventListener("click", function(r) {
1459
1465
  T(i);
1460
1466
  }, !1);
1461
1467
  }
1462
1468
  }
1463
- const $a = {
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", wa);
1474
+ window.customElements.get("iam-notification") || window.customElements.define("iam-notification", $a);
1469
1475
  });
1470
1476
  }
1471
1477
  };
1472
- function ka(t, a, e, i, r, s) {
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 ts = /* @__PURE__ */ m($a, [["render", ka]]), Aa = {
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-184e6300.mjs").then((t) => {
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 xa(t, a, e, i, r, s) {
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 as = /* @__PURE__ */ m(Aa, [["render", xa]]);
1501
+ const ss = /* @__PURE__ */ m(La, [["render", Sa]]);
1496
1502
  /*!
1497
- * iamKey v5.6.1-beta9
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{--select-padding-left: rem(16);height:3.25rem;line-height:3.25rem;margin-left:-1rem;font-weight:bold}.pagination div:is(.page-jump,.per-page) div:has(>select){margin-bottom:0}.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}@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(--colour-light)}*:where(.prev,.next):is(:active):not(:disabled){background-color:#e0e0e0}@media screen and (prefers-color-scheme: dark){*:where(.prev,.next):is(:hover,:focus):not(:disabled){background-color:var(--colour-canvas)}*:where(.prev,.next):is(:active):not(:disabled){background-color:var(--colour-canvas)}}*: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 */
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")), L = Math.ceil(_ / f);
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 <= L; 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 ${L}`, h == L ? r.setAttribute("disabled", "disabled") : r.removeAttribute("disabled"), h == 1 ? i.setAttribute("disabled", "disabled") : i.removeAttribute("disabled");
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 La = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1606
+ const xa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1601
1607
  __proto__: null,
1602
1608
  default: R
1603
- }, Symbol.toStringTag, { value: "Module" })), Sa = {
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 qa(t, a, e, i, r, s) {
1621
+ function Ta(t, a, e, i, r, s) {
1616
1622
  return o(), l("iam-pagination");
1617
1623
  }
1618
- const ss = /* @__PURE__ */ m(Sa, [["render", qa]]), Ta = {
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-c3186305.mjs").then((t) => {
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 Ea(t, a, e, i, r, s) {
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 is = /* @__PURE__ */ m(Ta, [["render", Ea]]);
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 Ha extends HTMLElement {
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", Ha);
1690
- const Ma = {
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 Ca(t, a, e, i, r, s) {
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 ns = /* @__PURE__ */ m(Ma, [["render", Ca]]);
1707
+ const os = /* @__PURE__ */ m(Ca, [["render", Na]]);
1702
1708
  export {
1703
- ja as Accordion,
1704
- Ia as AccordionItem,
1705
- as as Actionbar,
1706
- is as AddressLookup,
1707
- Za as AppliedFilters,
1708
- Da as Banner,
1709
- Va as Card,
1710
- Fa as Carousel,
1711
- ns as CollapsibleSideMenu,
1712
- Ra as FileUpload,
1713
- es as Filterlist,
1714
- za as Header,
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
- Pa as Logo,
1717
- Wa as Nav,
1718
- Xa as NoteFeed,
1719
- ts as Notification,
1720
- ss as Pagination,
1721
- Ua as PropertySearchbar,
1722
- Ga as Snapshot,
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
- Ka as Stepper,
1725
- Ja as Tab,
1730
+ Ga as Stepper,
1731
+ Xa as Tab,
1726
1732
  C as Table,
1727
1733
  Ya as Tabs,
1728
- Ba as Testimonial,
1729
- Oa as Timeline
1734
+ Oa as Testimonial,
1735
+ Ua as Timeline
1730
1736
  };