@iamproperty/components 5.5.1-beta-4 → 5.6.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 (83) hide show
  1. package/assets/css/components/actionbar.css +1 -1
  2. package/assets/css/components/actionbar.css.map +1 -1
  3. package/assets/css/components/actionbar.global.css +1 -1
  4. package/assets/css/components/actionbar.global.css.map +1 -1
  5. package/assets/css/components/card.css +1 -1
  6. package/assets/css/components/card.css.map +1 -1
  7. package/assets/css/components/card.global.css +1 -1
  8. package/assets/css/components/card.global.css.map +1 -1
  9. package/assets/css/components/pagination.css +1 -1
  10. package/assets/css/components/pagination.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.js +2 -0
  17. package/assets/js/components/actionbar/actionbar.component.min.js +7 -5
  18. package/assets/js/components/actionbar/actionbar.component.min.js.map +1 -1
  19. package/assets/js/components/address-lookup/address-lookup.component.min.js +1 -1
  20. package/assets/js/components/applied-filters/applied-filters.component.min.js +2 -2
  21. package/assets/js/components/applied-filters/applied-filters.component.min.js.map +1 -1
  22. package/assets/js/components/card/card.component.js +8 -5
  23. package/assets/js/components/card/card.component.min.js +8 -6
  24. package/assets/js/components/card/card.component.min.js.map +1 -1
  25. package/assets/js/components/carousel/carousel.component.min.js +28 -0
  26. package/assets/js/components/carousel/carousel.component.min.js.map +1 -0
  27. package/assets/js/components/collapsible-side/collapsible-side.component.min.js +1 -1
  28. package/assets/js/components/fileupload/fileupload.component.js +4 -3
  29. package/assets/js/components/fileupload/fileupload.component.min.js +5 -5
  30. package/assets/js/components/fileupload/fileupload.component.min.js.map +1 -1
  31. package/assets/js/components/filterlist/filterlist.component.min.js +1 -1
  32. package/assets/js/components/header/header.component.min.js +1 -1
  33. package/assets/js/components/inline-edit/inline-edit.component.js +2 -4
  34. package/assets/js/components/inline-edit/inline-edit.component.min.js +2 -2
  35. package/assets/js/components/inline-edit/inline-edit.component.min.js.map +1 -1
  36. package/assets/js/components/marketing/marketing.component.min.js +17 -0
  37. package/assets/js/components/marketing/marketing.component.min.js.map +1 -0
  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 +2 -2
  42. package/assets/js/components/search/search.component.min.js +1 -1
  43. package/assets/js/components/slider/slider.component.min.js +19 -0
  44. package/assets/js/components/slider/slider.component.min.js.map +1 -0
  45. package/assets/js/components/table/table.component.js +26 -14
  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.min.js +1 -1
  49. package/assets/js/dynamic.min.js +1 -1
  50. package/assets/js/modules/applied-filters.js +5 -1
  51. package/assets/js/modules/fileupload.js +9 -0
  52. package/assets/js/modules/table.js +42 -18
  53. package/assets/js/scripts.bundle.js +11 -9
  54. package/assets/js/scripts.bundle.js.map +1 -1
  55. package/assets/js/scripts.bundle.min.js +2 -2
  56. package/assets/js/scripts.bundle.min.js.map +1 -1
  57. package/assets/sass/components/actionbar.global.scss +10 -0
  58. package/assets/sass/components/actionbar.scss +21 -3
  59. package/assets/sass/components/card.global.scss +30 -1
  60. package/assets/sass/components/card.scss +80 -33
  61. package/assets/sass/components/pagination.scss +1 -1
  62. package/assets/sass/elements/badge-tag.scss +11 -4
  63. package/assets/sass/elements/forms.scss +5 -2
  64. package/assets/ts/components/actionbar/actionbar.component.ts +2 -0
  65. package/assets/ts/components/card/card.component.ts +8 -5
  66. package/assets/ts/components/fileupload/fileupload.component.ts +4 -3
  67. package/assets/ts/components/inline-edit/inline-edit.component.ts +2 -8
  68. package/assets/ts/components/table/table.component.ts +28 -21
  69. package/assets/ts/modules/applied-filters.ts +4 -1
  70. package/assets/ts/modules/fileupload.ts +15 -0
  71. package/assets/ts/modules/table.ts +50 -19
  72. package/dist/components.es.js +497 -591
  73. package/dist/components.umd.js +66 -119
  74. package/package.json +1 -1
  75. package/src/components/AddressLookup/AddressLookup.vue +1 -1
  76. package/src/components/AppliedFilters/AppliedFilters.vue +13 -7
  77. package/src/components/Card/Card.vue +2 -2
  78. package/src/components/Carousel/Carousel.vue +1 -1
  79. package/src/components/Marketing/Marketing.vue +1 -1
  80. package/src/components/Slider/Slider.vue +1 -1
  81. package/src/components/Table/Table.vue +2 -1
  82. package/src/components/Tabs/Tabs.vue +2 -2
  83. package/dist/README.md +0 -21
@@ -1,10 +1,10 @@
1
- import { openBlock as r, createElementBlock as l, normalizeClass as w, createElementVNode as c, toDisplayString as $, createCommentVNode as b, Fragment as E, renderList as q, renderSlot as f, withDirectives as T, mergeProps as S, vModelDynamic as H, vModelText as I, vModelSelect as D, createTextVNode as V, resolveComponent as M, createVNode as x, withModifiers as B } from "vue";
2
- const h = (t, a) => {
1
+ import { openBlock as r, createElementBlock as l, normalizeClass as y, createElementVNode as c, toDisplayString as _, createCommentVNode as h, renderSlot as m, Fragment as x, renderList as A, withDirectives as T, mergeProps as k, vModelDynamic as E, vModelText as I, vModelSelect as D, createTextVNode as F, resolveComponent as H, createVNode as $, withModifiers as V } from "vue";
2
+ const p = (t, i) => {
3
3
  const e = t.__vccOpts || t;
4
- for (const [o, i] of a)
5
- e[o] = i;
4
+ for (const [s, o] of i)
5
+ e[s] = o;
6
6
  return e;
7
- }, O = {
7
+ }, B = {
8
8
  name: "Logo",
9
9
  props: {
10
10
  id: {
@@ -29,26 +29,26 @@ const h = (t, a) => {
29
29
  return "brand brand--" + this.id;
30
30
  }
31
31
  }
32
- }, U = ["xlink:href"], W = ["innerHTML"];
33
- function K(t, a, e, o, i, s) {
32
+ }, U = ["xlink:href"], O = ["innerHTML"];
33
+ function W(t, i, e, s, o, a) {
34
34
  return r(), l("div", {
35
- class: w(s.className)
35
+ class: y(a.className)
36
36
  }, [
37
37
  (r(), l("svg", null, [
38
- c("title", null, "iam " + $(e.id), 1),
38
+ c("title", null, "iam " + _(e.id), 1),
39
39
  c("use", {
40
- "xlink:href": e.path + s.src
40
+ "xlink:href": e.path + a.src
41
41
  }, null, 8, U)
42
42
  ])),
43
43
  e.desc ? (r(), l("span", {
44
44
  key: 0,
45
45
  innerHTML: e.desc
46
- }, null, 8, W)) : b("", !0)
46
+ }, null, 8, O)) : h("", !0)
47
47
  ], 2);
48
48
  }
49
- const za = /* @__PURE__ */ h(O, [["render", K]]), G = (t) => t.charAt(0).toUpperCase() + t.slice(1), Q = (t) => t.replace(/_/g, " "), Y = (t) => t.replace(/ /g, "_"), J = function(t) {
50
- return t = t.toLowerCase(), t = Y(t), t = t.replace(/\W/g, ""), t;
51
- }, X = {
49
+ const Pi = /* @__PURE__ */ p(B, [["render", W]]), K = (t) => t.charAt(0).toUpperCase() + t.slice(1), G = (t) => t.replace(/_/g, " "), Q = (t) => t.replace(/ /g, "_"), Y = function(t) {
50
+ return t = t.toLowerCase(), t = Q(t), t = t.replace(/\W/g, ""), t;
51
+ }, J = {
52
52
  name: "Table",
53
53
  props: {
54
54
  items: {
@@ -62,16 +62,16 @@ const za = /* @__PURE__ */ h(O, [["render", K]]), G = (t) => t.charAt(0).toUpper
62
62
  },
63
63
  computed: {
64
64
  cellHeading() {
65
- return (t) => `${G(Q(t))}`;
65
+ return (t) => `${K(G(t))}`;
66
66
  }
67
67
  },
68
68
  created() {
69
69
  this.$nextTick(function() {
70
- import("./table.component.min-41ebbcdd.mjs").then((t) => {
70
+ import("./table.component-d5af7c61.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(() => Ta).then((t) => {
74
+ }), Promise.resolve().then(() => Si).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);
@@ -80,32 +80,33 @@ const za = /* @__PURE__ */ h(O, [["render", K]]), G = (t) => t.charAt(0).toUpper
80
80
  },
81
81
  updated() {
82
82
  }
83
- }, Z = { key: 0 }, ee = { key: 0 }, te = ["data-row-id"], ae = ["innerHTML"];
84
- function se(t, a, e, o, i, s) {
83
+ }, X = { key: 0 }, Z = { key: 0 }, ee = ["data-row-id"], te = ["innerHTML"];
84
+ function ie(t, i, e, s, o, a) {
85
85
  return r(), l("iam-table", null, [
86
- e.fields ? (r(), l("table", Z, [
86
+ m(t.$slots, "before"),
87
+ e.fields ? (r(), l("table", X, [
87
88
  c("thead", null, [
88
89
  c("tr", null, [
89
- (r(!0), l(E, null, q(e.fields, (n) => (r(), l("th", {
90
+ (r(!0), l(x, null, A(e.fields, (n) => (r(), l("th", {
90
91
  key: n.key
91
- }, $(s.cellHeading(n.key)), 1))), 128))
92
+ }, _(a.cellHeading(n.key)), 1))), 128))
92
93
  ])
93
94
  ]),
94
- e.items ? (r(), l("tbody", ee, [
95
- (r(!0), l(E, null, q(e.items, (n, d) => (r(), l("tr", {
95
+ e.items ? (r(), l("tbody", Z, [
96
+ (r(!0), l(x, null, A(e.items, (n, d) => (r(), l("tr", {
96
97
  key: d,
97
98
  "data-row-id": n.rowid
98
99
  }, [
99
- (r(!0), l(E, null, q(Object.fromEntries(Object.entries(n).filter(([u]) => u !== "rowid")), (u, m) => (r(), l("td", {
100
- key: m,
100
+ (r(!0), l(x, null, A(Object.fromEntries(Object.entries(n).filter(([u]) => u !== "rowid")), (u, b) => (r(), l("td", {
101
+ key: b,
101
102
  innerHTML: u
102
- }, null, 8, ae))), 128))
103
- ], 8, te))), 128))
104
- ])) : b("", !0)
105
- ])) : f(t.$slots, "default", { key: 1 })
103
+ }, null, 8, te))), 128))
104
+ ], 8, ee))), 128))
105
+ ])) : h("", !0)
106
+ ])) : m(t.$slots, "default", { key: 1 })
106
107
  ]);
107
108
  }
108
- const R = /* @__PURE__ */ h(X, [["render", se]]), ie = {
109
+ const N = /* @__PURE__ */ p(J, [["render", ie]]), ae = {
109
110
  name: "Input",
110
111
  props: {
111
112
  value: {
@@ -280,8 +281,8 @@ const R = /* @__PURE__ */ h(X, [["render", se]]), ie = {
280
281
  this.$nextTick(function() {
281
282
  let t = this.$refs.wrapper;
282
283
  if (t.parentNode && t.parentNode.classList.contains("form-check") || t.classList.length == 0) {
283
- const a = document.createDocumentFragment();
284
- Array.from(t.childNodes).forEach((e) => a.appendChild(e)), t.parentNode.insertBefore(a, t), t.parentNode.removeChild(t);
284
+ const i = document.createDocumentFragment();
285
+ Array.from(t.childNodes).forEach((e) => i.appendChild(e)), t.parentNode.insertBefore(i, t), t.parentNode.removeChild(t);
285
286
  }
286
287
  });
287
288
  },
@@ -293,234 +294,237 @@ const R = /* @__PURE__ */ h(X, [["render", se]]), ie = {
293
294
  this.$emit("bus");
294
295
  }
295
296
  }
296
- }, ne = ["for", "innerHTML", "title"], oe = ["innerHTML"], re = ["innerHTML"], le = ["type", "name", "id", "pattern", "list"], de = ["type", "name", "id", "pattern"], ce = {
297
+ }, ne = ["for", "innerHTML", "title"], se = ["innerHTML"], oe = ["innerHTML"], re = ["type", "name", "id", "pattern", "list"], le = ["type", "name", "id", "pattern"], de = {
297
298
  key: 5,
298
299
  class: "input-group"
299
- }, ue = ["type", "name", "id", "pattern", "list"], me = { class: "input-group-text border-0 col-2 col-sm-1 px-0" }, pe = {
300
+ }, ce = ["type", "name", "id", "pattern", "list"], ue = { class: "input-group-text border-0 col-2 col-sm-1 px-0" }, me = {
300
301
  key: 6,
301
302
  class: "input-group"
302
- }, he = ["type", "name", "id", "pattern", "list"], fe = { class: "input-group-text flex-fill" }, be = ["type", "name", "id", "pattern"], ge = ["value"], ye = ["type", "name", "id"], ve = ["for", "innerHTML"], _e = ["type", "name", "id"], we = ["for", "innerHTML"], $e = ["innerHTML"], ke = ["id"], Ae = ["value"];
303
- function xe(t, a, e, o, i, s) {
303
+ }, pe = ["type", "name", "id", "pattern", "list"], he = { class: "input-group-text flex-fill" }, fe = ["type", "name", "id", "pattern"], be = ["value"], ge = ["type", "name", "id"], ye = ["for", "innerHTML"], _e = ["type", "name", "id"], ve = ["for", "innerHTML"], we = ["innerHTML"], $e = ["id"], ke = ["value"];
304
+ function xe(t, i, e, s, o, a) {
304
305
  return r(), l("div", {
305
- class: w(s.wrapperClass()),
306
+ class: y(a.wrapperClass()),
306
307
  ref: "wrapper"
307
308
  }, [
308
- s.needsLabel() ? (r(), l("label", {
309
+ a.needsLabel() ? (r(), l("label", {
309
310
  key: 0,
310
- class: w(`form-label${e.labelclass ? ` ${e.labelclass}` : ""}`),
311
+ class: y(`form-label${e.labelclass ? ` ${e.labelclass}` : ""}`),
311
312
  for: e.id,
312
- innerHTML: s.displayLabel(),
313
+ innerHTML: a.displayLabel(),
313
314
  title: e.title
314
- }, null, 10, ne)) : b("", !0),
315
+ }, null, 10, ne)) : h("", !0),
315
316
  e.prefix ? (r(), l("span", {
316
317
  key: 1,
317
- class: w(`prefix ${this.prefixClass} ${e.size ? `prefix-${e.size}` : ""}`),
318
+ class: y(`prefix ${this.prefixClass} ${e.size ? `prefix-${e.size}` : ""}`),
318
319
  innerHTML: e.prefix,
319
320
  role: "presentation"
320
- }, null, 10, oe)) : b("", !0),
321
+ }, null, 10, se)) : h("", !0),
321
322
  e.suffix ? (r(), l("span", {
322
323
  key: 2,
323
- class: w(`suffix ${this.suffixClass} ${e.size ? `suffix-${e.size}` : ""}`),
324
+ class: y(`suffix ${this.suffixClass} ${e.size ? `suffix-${e.size}` : ""}`),
324
325
  innerHTML: e.suffix,
325
326
  role: "presentation"
326
- }, null, 10, re)) : b("", !0),
327
- s.isInput() ? T((r(), l("input", S({
327
+ }, null, 10, oe)) : h("", !0),
328
+ a.isInput() ? T((r(), l("input", k({
328
329
  key: 3,
329
- "onUpdate:modelValue": a[0] || (a[0] = (n) => s.inputVal = n),
330
+ "onUpdate:modelValue": i[0] || (i[0] = (n) => a.inputVal = n),
330
331
  class: `form-control${e.size ? ` form-control-${e.size}` : ""}${e.inputclass ? ` ${e.inputclass}` : ""}`,
331
332
  type: e.type,
332
333
  name: e.name ? e.name : e.id,
333
334
  id: e.id,
334
- pattern: s.needPattern(),
335
- list: s.hasOptions()
335
+ pattern: a.needPattern(),
336
+ list: a.hasOptions()
336
337
  }, t.$attrs, {
337
- onKeyup: a[1] || (a[1] = (...n) => s.inputKeyup && s.inputKeyup(...n))
338
- }), null, 16, le)), [
339
- [H, s.inputVal]
340
- ]) : b("", !0),
341
- e.type == "textarea" ? T((r(), l("textarea", S({
338
+ onKeyup: i[1] || (i[1] = (...n) => a.inputKeyup && a.inputKeyup(...n))
339
+ }), null, 16, re)), [
340
+ [E, a.inputVal]
341
+ ]) : h("", !0),
342
+ e.type == "textarea" ? T((r(), l("textarea", k({
342
343
  key: 4,
343
- "onUpdate:modelValue": a[2] || (a[2] = (n) => s.inputVal = n),
344
+ "onUpdate:modelValue": i[2] || (i[2] = (n) => a.inputVal = n),
344
345
  class: `form-control${e.size ? ` form-control-${e.size}` : ""}${e.inputclass ? ` ${e.inputclass}` : ""}`,
345
346
  type: e.type,
346
347
  name: e.name ? e.name : e.id,
347
348
  id: e.id,
348
- pattern: s.needPattern()
349
- }, t.$attrs), null, 16, de)), [
350
- [I, s.inputVal]
351
- ]) : b("", !0),
352
- e.type == "range" ? (r(), l("div", ce, [
353
- T(c("input", S({
354
- "onUpdate:modelValue": a[3] || (a[3] = (n) => s.inputVal = n),
349
+ pattern: a.needPattern()
350
+ }, t.$attrs), null, 16, le)), [
351
+ [I, a.inputVal]
352
+ ]) : h("", !0),
353
+ e.type == "range" ? (r(), l("div", de, [
354
+ T(c("input", k({
355
+ "onUpdate:modelValue": i[3] || (i[3] = (n) => a.inputVal = n),
355
356
  class: `form-range${e.inputclass ? ` ${e.inputclass}` : ""}`,
356
357
  type: e.type,
357
358
  name: e.name ? e.name : e.id,
358
359
  id: e.id,
359
- pattern: s.needPattern(),
360
- list: s.hasOptions()
361
- }, t.$attrs, { oninput: "this.nextElementSibling.value=this.value;" }), null, 16, ue), [
362
- [H, s.inputVal]
360
+ pattern: a.needPattern(),
361
+ list: a.hasOptions()
362
+ }, t.$attrs, { oninput: "this.nextElementSibling.value=this.value;" }), null, 16, ce), [
363
+ [E, a.inputVal]
363
364
  ]),
364
- c("output", me, $(e.value), 1)
365
- ])) : b("", !0),
366
- e.type == "color" ? (r(), l("div", pe, [
367
- T(c("input", S({
368
- "onUpdate:modelValue": a[4] || (a[4] = (n) => s.inputVal = n),
365
+ c("output", ue, _(e.value), 1)
366
+ ])) : h("", !0),
367
+ e.type == "color" ? (r(), l("div", me, [
368
+ T(c("input", k({
369
+ "onUpdate:modelValue": i[4] || (i[4] = (n) => a.inputVal = n),
369
370
  class: `form-control form-control-color${e.inputclass ? ` ${e.inputclass}` : ""}`,
370
371
  type: e.type,
371
372
  name: e.name ? e.name : e.id,
372
373
  id: e.id,
373
- pattern: s.needPattern(),
374
- list: s.hasOptions()
375
- }, t.$attrs, { oninput: "this.nextElementSibling.value=this.value;" }), null, 16, he), [
376
- [H, s.inputVal]
374
+ pattern: a.needPattern(),
375
+ list: a.hasOptions()
376
+ }, t.$attrs, { oninput: "this.nextElementSibling.value=this.value;" }), null, 16, pe), [
377
+ [E, a.inputVal]
377
378
  ]),
378
- c("output", fe, $(e.value ? t.vale : "#000000"), 1)
379
- ])) : b("", !0),
380
- e.type == "select" ? T((r(), l("select", S({
379
+ c("output", he, _(e.value ? t.vale : "#000000"), 1)
380
+ ])) : h("", !0),
381
+ e.type == "select" ? T((r(), l("select", k({
381
382
  key: 7,
382
- "onUpdate:modelValue": a[5] || (a[5] = (n) => s.inputVal = n),
383
+ "onUpdate:modelValue": i[5] || (i[5] = (n) => a.inputVal = n),
383
384
  class: `form-select${e.size ? ` form-select-${e.size}` : ""}${e.inputclass ? ` ${e.inputclass}` : ""}`,
384
385
  type: e.type,
385
386
  name: e.id,
386
387
  id: e.id,
387
- pattern: s.needPattern()
388
+ pattern: a.needPattern()
388
389
  }, t.$attrs), [
389
- (r(!0), l(E, null, q(e.options, (n, d) => (r(), l("option", {
390
+ (r(!0), l(x, null, A(e.options, (n, d) => (r(), l("option", {
390
391
  key: d,
391
392
  value: n.value
392
- }, $(n.display ? n.display : n.value), 9, ge))), 128))
393
- ], 16, be)), [
394
- [D, s.inputVal]
395
- ]) : b("", !0),
396
- e.type == "checkbox" || e.type == "radio" ? (r(), l("input", S({
393
+ }, _(n.display ? n.display : n.value), 9, be))), 128))
394
+ ], 16, fe)), [
395
+ [D, a.inputVal]
396
+ ]) : h("", !0),
397
+ e.type == "checkbox" || e.type == "radio" ? (r(), l("input", k({
397
398
  key: 8,
398
399
  class: "form-check-input",
399
400
  type: e.type,
400
401
  name: e.name ? e.name : e.id,
401
402
  id: e.id
402
- }, t.$attrs), null, 16, ye)) : b("", !0),
403
+ }, t.$attrs), null, 16, ge)) : h("", !0),
403
404
  e.type == "checkbox" || e.type == "radio" ? (r(), l("label", {
404
405
  key: 9,
405
- class: w(`form-label form-check-label${e.labelclass ? ` ${e.labelclass}` : ""}`),
406
+ class: y(`form-label form-check-label${e.labelclass ? ` ${e.labelclass}` : ""}`),
406
407
  for: e.id,
407
408
  innerHTML: e.label
408
- }, null, 10, ve)) : b("", !0),
409
- e.type == "checkbox-btn" || e.type == "radio-btn" ? (r(), l("input", S({
409
+ }, null, 10, ye)) : h("", !0),
410
+ e.type == "checkbox-btn" || e.type == "radio-btn" ? (r(), l("input", k({
410
411
  key: 10,
411
412
  class: `btn-check${e.inputclass ? ` ${e.inputclass}` : ""}`,
412
413
  type: e.type.replace("-btn", ""),
413
414
  autocomplete: "off",
414
415
  name: e.name ? e.name : e.id,
415
416
  id: e.id
416
- }, t.$attrs), null, 16, _e)) : b("", !0),
417
+ }, t.$attrs), null, 16, _e)) : h("", !0),
417
418
  e.type == "checkbox-btn" || e.type == "radio-btn" ? (r(), l("label", {
418
419
  key: 11,
419
- class: w(`btn${e.labelclass ? ` ${e.labelclass}` : ""}`),
420
+ class: y(`btn${e.labelclass ? ` ${e.labelclass}` : ""}`),
420
421
  for: e.id,
421
422
  innerHTML: e.label,
422
- onClick: a[6] || (a[6] = (...n) => s.clickEvent && s.clickEvent(...n))
423
- }, null, 10, we)) : b("", !0),
424
- f(t.$slots, "default"),
423
+ onClick: i[6] || (i[6] = (...n) => a.clickEvent && a.clickEvent(...n))
424
+ }, null, 10, ve)) : h("", !0),
425
+ m(t.$slots, "default"),
425
426
  e.errormsg ? (r(), l("span", {
426
427
  key: 12,
427
428
  class: "invalid-feedback mb-0",
428
429
  innerHTML: e.errormsg
429
- }, null, 8, $e)) : b("", !0),
430
- s.allowDatalist() ? (r(), l("datalist", {
430
+ }, null, 8, we)) : h("", !0),
431
+ a.allowDatalist() ? (r(), l("datalist", {
431
432
  key: 13,
432
433
  id: e.id + "-list"
433
434
  }, [
434
- (r(!0), l(E, null, q(e.options, (n, d) => (r(), l("option", {
435
+ (r(!0), l(x, null, A(e.options, (n, d) => (r(), l("option", {
435
436
  key: d,
436
437
  value: n.value
437
- }, $(n.value), 9, Ae))), 128))
438
- ], 8, ke)) : b("", !0)
438
+ }, _(n.value), 9, ke))), 128))
439
+ ], 8, $e)) : h("", !0)
439
440
  ], 2);
440
441
  }
441
- const P = /* @__PURE__ */ h(ie, [["render", xe]]);
442
- function Le(t, a) {
443
- const e = a.querySelector(".files"), o = a.querySelector(".drop-area"), i = t.querySelector("input"), s = t.hasAttribute("data-maxsize") ? t.getAttribute("data-maxsize") : 0, n = i.cloneNode();
444
- if (o.append(n), a.addEventListener("click", (d) => {
445
- d && d.target instanceof HTMLElement && d.target.closest(".btn-primary") && (d.target.closest(".btn-primary"), (i.hasAttribute("multiple") ? n : i).click());
446
- }), a.addEventListener("click", (d) => {
442
+ const R = /* @__PURE__ */ p(ae, [["render", xe]]);
443
+ function Ae(t, i) {
444
+ const e = i.querySelector(".files"), s = i.querySelector(".drop-area"), o = t.querySelector("input"), a = t.hasAttribute("data-maxsize") ? t.getAttribute("data-maxsize") : 0, n = o.cloneNode();
445
+ if (s.append(n), i.addEventListener("click", (d) => {
446
+ d && d.target instanceof HTMLElement && d.target.closest(".btn-primary") && (d.target.closest(".btn-primary"), (o.hasAttribute("multiple") ? n : o).click());
447
+ }), i.addEventListener("click", (d) => {
447
448
  if (d && d.target instanceof HTMLElement && d.target.closest(".files button")) {
448
- const u = new DataTransfer(), { files: m } = i, y = d.target.closest(".files button");
449
- for (let g = 0; g < m.length; g++) {
450
- const v = m[g];
451
- v.name != y.getAttribute("data-file") && u.items.add(v);
449
+ const u = new DataTransfer(), { files: b } = o, g = d.target.closest(".files button");
450
+ for (let v = 0; v < b.length; v++) {
451
+ const w = b[v];
452
+ w.name != g.getAttribute("data-file") && u.items.add(w);
452
453
  }
453
- if (i.files = u.files, i.files.length == 0) {
454
- const g = new Event("empty");
455
- t.dispatchEvent(g);
454
+ if (o.files = u.files, o.files.length == 0) {
455
+ const v = new Event("empty");
456
+ t.dispatchEvent(v);
456
457
  }
457
- const p = new Event("change");
458
- i.dispatchEvent(p);
458
+ const f = new Event("change");
459
+ o.dispatchEvent(f);
459
460
  }
460
461
  }), n.addEventListener("change", (d) => {
461
- if (i.hasAttribute("multiple")) {
462
- const y = [...i.files, ...n.files];
463
- let p = [];
464
- const g = new DataTransfer();
465
- for (let v = 0; v < y.length; v++) {
466
- const _ = y[v], k = _.size / 1e3;
467
- !p.includes(_.name) && (s == 0 || k < s) && g.items.add(_), p.push(_.name);
462
+ if (o.hasAttribute("multiple")) {
463
+ const g = [...o.files, ...n.files];
464
+ let f = [];
465
+ const v = new DataTransfer();
466
+ for (let w = 0; w < g.length; w++) {
467
+ const L = g[w], q = L.size / 1e3;
468
+ !f.includes(L.name) && (a == 0 || q < a) && v.items.add(L), f.push(L.name);
468
469
  }
469
- i.files = g.files;
470
+ o.files = v.files;
470
471
  } else
471
- i.files = n.files;
472
+ o.files = n.files;
472
473
  const u = new Event("change");
473
- i.dispatchEvent(u);
474
- const m = new Event("elementChange");
475
- t.dispatchEvent(m);
474
+ o.dispatchEvent(u);
475
+ const b = new Event("elementChange");
476
+ t.dispatchEvent(b);
476
477
  }), n.addEventListener("dragenter", (d) => {
477
478
  n.classList.add("focus");
478
479
  }), n.addEventListener("dragleave", (d) => {
479
480
  n.classList.remove("focus");
480
481
  }), n.addEventListener("drop", (d) => {
481
482
  n.classList.remove("focus");
482
- }), i.addEventListener("change", (d) => {
483
+ }), o.addEventListener("change", (d) => {
483
484
  e.innerHTML = "";
484
- for (const u of i.files)
485
+ for (const u of o.files)
485
486
  e.innerHTML += `<span class="file">${u.name} <button data-file="${u.name}">Remove</button></span>`;
486
487
  }), t.hasAttribute("data-filename")) {
487
488
  let d = t.getAttribute("data-filename");
488
489
  d && (e.innerHTML += `<span class="file">${d} <button data-file="${d}">Remove</button></span>`);
489
490
  }
491
+ i.addEventListener("click", (d) => {
492
+ d && d.target instanceof HTMLElement && d.target.closest(".btn-primary") && (d.target.closest(".btn-primary"), (o.hasAttribute("multiple") ? n : o).click());
493
+ });
490
494
  }
491
495
  window.dataLayer = window.dataLayer || [];
492
496
  window.dataLayer.push({
493
497
  event: "customElementRegistered",
494
498
  element: "fileupload"
495
499
  });
496
- class Se extends HTMLElement {
500
+ class Le extends HTMLElement {
497
501
  constructor() {
498
502
  super(), this.attachShadow({ mode: "open" });
499
- 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`, o = `@import "${a}/css/components/fileupload.css";`, i = document.createElement("template");
500
- i.innerHTML = `
503
+ const i = 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") : `${i}/css/core.min.css`, s = `@import "${i}/css/components/fileupload.css";`, o = document.createElement("template");
504
+ o.innerHTML = `
501
505
  <style>
502
506
  @import "${e}";
503
- ${o}
507
+ ${s}
504
508
  ${this.hasAttribute("css") ? `@import "${this.getAttribute("css")}";` : ""}
505
509
  </style>
506
510
  <div class="file-upload">
507
511
  <span class="file-upload__title">Upload file</span>
508
- <p class="helper-text"></p>
509
- <button class="btn btn-primary"><slot name="btn"></slot> Upload document</button>
512
+ <p class="helper-text"><slot name="helper"></slot></p>
513
+ <button class="btn btn-primary"><slot name="btn"></slot> Upload ${this.hasAttribute("data-filetype") ? this.getAttribute("data-filetype") : "file"}</button>
510
514
  <div class="drop-area"></div>
511
515
  <hr/>
512
516
  <slot></slot>
513
517
  <div class="files"><slot name="files"></slot></div>
514
518
  </div>
515
- `, this.shadowRoot.appendChild(i.content.cloneNode(!0));
519
+ `, this.shadowRoot.appendChild(o.content.cloneNode(!0));
516
520
  }
517
521
  connectedCallback() {
518
522
  this.innerHTML += '<i class="fa-regular fa-arrow-up-from-bracket me-2" aria-hidden="true" slot="btn"></i>';
519
- const a = this.shadowRoot.querySelector(".file-upload"), e = this.querySelector("input"), o = this.shadowRoot.querySelector(".helper-text");
520
- o.innerHTML = `${this.hasAttribute("data-maxsize") ? `Max file size is ${this.getAttribute("data-maxsize")}kb. ` : ""}${e.hasAttribute("accept") ? `Supported file types are ${e.getAttribute("accept")}` : ""}`, Le(this, a);
523
+ const i = this.shadowRoot.querySelector(".file-upload"), e = this.querySelector("input"), s = this.shadowRoot.querySelector(".helper-text");
524
+ this.querySelector('[slot="helper"]') || (s.innerHTML = `${this.hasAttribute("data-maxsize") ? `Max file size is ${this.getAttribute("data-maxsize")}kb. ` : ""}${e.hasAttribute("accept") ? `Supported file types are ${e.getAttribute("accept")}` : ""}`), Ae(this, i);
521
525
  }
522
526
  }
523
- const Ee = {
527
+ const Se = {
524
528
  name: "FileUpload",
525
529
  props: {
526
530
  maxfilesize: {
@@ -534,35 +538,35 @@ const Ee = {
534
538
  },
535
539
  mounted() {
536
540
  this.$nextTick(function() {
537
- window.customElements.get("iam-fileupload") || window.customElements.define("iam-fileupload", Se);
541
+ window.customElements.get("iam-fileupload") || window.customElements.define("iam-fileupload", Le);
538
542
  });
539
543
  }
540
544
  };
541
- function qe(t, a, e, o, i, s) {
545
+ function Te(t, i, e, s, o, a) {
542
546
  return r(), l("iam-fileupload", null, [
543
- f(t.$slots, "default")
547
+ m(t.$slots, "default")
544
548
  ]);
545
549
  }
546
- const Ia = /* @__PURE__ */ h(Ee, [["render", qe]]);
547
- const Te = {
550
+ const zi = /* @__PURE__ */ p(Se, [["render", Te]]);
551
+ const qe = {
548
552
  name: "Accordion",
549
553
  props: {},
550
554
  mounted() {
551
555
  this.$nextTick(function() {
552
- import("./accordion.component.min-e0bba276.mjs").then((t) => {
556
+ import("./accordion.component.min-add62699.mjs").then((t) => {
553
557
  window.customElements.get("iam-accordion") || window.customElements.define("iam-accordion", t.default);
554
558
  }).catch((t) => {
555
559
  console.log(t.message);
556
560
  });
557
561
  });
558
562
  }
559
- }, He = { ref: "wrapper" };
560
- function Me(t, a, e, o, i, s) {
561
- return r(), l("iam-accordion", He, [
562
- f(t.$slots, "default")
563
+ }, Ee = { ref: "wrapper" };
564
+ function He(t, i, e, s, o, a) {
565
+ return r(), l("iam-accordion", Ee, [
566
+ m(t.$slots, "default")
563
567
  ], 512);
564
568
  }
565
- const Da = /* @__PURE__ */ h(Te, [["render", Me]]), Ce = {
569
+ const ji = /* @__PURE__ */ p(qe, [["render", He]]), Me = {
566
570
  name: "AccordionItem",
567
571
  props: {
568
572
  title: {
@@ -589,7 +593,7 @@ const Da = /* @__PURE__ */ h(Te, [["render", Me]]), Ce = {
589
593
  },
590
594
  computed: {
591
595
  createID() {
592
- return (t) => `${J(t)}`;
596
+ return (t) => `${Y(t)}`;
593
597
  }
594
598
  },
595
599
  data() {
@@ -597,22 +601,22 @@ const Da = /* @__PURE__ */ h(Te, [["render", Me]]), Ce = {
597
601
  show: !this.lazy
598
602
  };
599
603
  }
600
- }, Ne = ["id"];
601
- function je(t, a, e, o, i, s) {
604
+ }, Ce = ["id"];
605
+ function Ne(t, i, e, s, o, a) {
602
606
  return r(), l("details", {
603
- id: s.createID(e.title)
607
+ id: a.createID(e.title)
604
608
  }, [
605
609
  c("summary", null, [
606
- V($(e.title), 1),
610
+ F(_(e.title), 1),
607
611
  e.badge ? (r(), l("span", {
608
612
  key: 0,
609
- class: w(`badge bg-${e.badgecolour}`)
610
- }, $(e.badge), 3)) : b("", !0)
613
+ class: y(`badge bg-${e.badgecolour}`)
614
+ }, _(e.badge), 3)) : h("", !0)
611
615
  ]),
612
- f(t.$slots, "default")
613
- ], 8, Ne);
616
+ m(t.$slots, "default")
617
+ ], 8, Ce);
614
618
  }
615
- const Va = /* @__PURE__ */ h(Ce, [["render", je]]), Re = {
619
+ const Ii = /* @__PURE__ */ p(Me, [["render", Ne]]), Re = {
616
620
  name: "Header",
617
621
  props: {
618
622
  title: {
@@ -629,17 +633,17 @@ const Va = /* @__PURE__ */ h(Ce, [["render", je]]), Re = {
629
633
  required: !1
630
634
  }
631
635
  }
632
- }, Pe = { class: "container" }, Fe = { class: "row" }, ze = { class: "col-sm-6" }, Ie = { class: "pt-5 pb-3 px-4" }, De = { class: "col-sm-6 col-md-5 ms-auto" }, Ve = ["src"];
633
- function Be(t, a, e, o, i, s) {
636
+ }, Pe = { class: "container" }, ze = { class: "row" }, je = { class: "col-sm-6" }, Ie = { class: "pt-5 pb-3 px-4" }, De = { class: "col-sm-6 col-md-5 ms-auto" }, Fe = ["src"];
637
+ function Ve(t, i, e, s, o, a) {
634
638
  return r(), l("div", Pe, [
635
639
  c("div", {
636
- class: w("bg-" + e.background + " mb-4")
640
+ class: y("bg-" + e.background + " mb-4")
637
641
  }, [
638
- c("div", Fe, [
639
- c("div", ze, [
642
+ c("div", ze, [
643
+ c("div", je, [
640
644
  c("div", Ie, [
641
- c("h2", null, $(e.title), 1),
642
- f(t.$slots, "default")
645
+ c("h2", null, _(e.title), 1),
646
+ m(t.$slots, "default")
643
647
  ])
644
648
  ]),
645
649
  c("div", De, [
@@ -648,20 +652,17 @@ function Be(t, a, e, o, i, s) {
648
652
  src: e.image,
649
653
  alt: "",
650
654
  class: "h-100 w-100 object-cover"
651
- }, null, 8, Ve)) : b("", !0)
655
+ }, null, 8, Fe)) : h("", !0)
652
656
  ])
653
657
  ])
654
658
  ], 2)
655
659
  ]);
656
660
  }
657
- const Ba = /* @__PURE__ */ h(Re, [["render", Be]]), Oe = {
661
+ const Di = /* @__PURE__ */ p(Re, [["render", Ve]]), Be = {
658
662
  name: "Card",
659
- mounted() {
663
+ created() {
660
664
  this.$nextTick(function() {
661
- import(
662
- /* @vite-ignore */
663
- "./card.component.min-3c74eafa.mjs"
664
- ).then((t) => {
665
+ import("./card.component-8fb6e63b.mjs").then((t) => {
665
666
  window.customElements.get("iam-card") || window.customElements.define("iam-card", t.default);
666
667
  }).catch((t) => {
667
668
  console.log(t.message);
@@ -669,17 +670,12 @@ const Ba = /* @__PURE__ */ h(Re, [["render", Be]]), Oe = {
669
670
  });
670
671
  }
671
672
  };
672
- function Ue(t, a, e, o, i, s) {
673
+ function Ue(t, i, e, s, o, a) {
673
674
  return r(), l("iam-card", null, [
674
- f(t.$slots, "default")
675
+ m(t.$slots, "default")
675
676
  ]);
676
677
  }
677
- const Oa = /* @__PURE__ */ h(Oe, [["render", Ue]]), N = (t, a) => {
678
- const e = t[a];
679
- return e ? typeof e == "function" ? e() : Promise.resolve(e) : new Promise((o, i) => {
680
- (typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(i.bind(null, new Error("Unknown variable dynamic import: " + a)));
681
- });
682
- }, We = {
678
+ const Fi = /* @__PURE__ */ p(Be, [["render", Ue]]), Oe = {
683
679
  name: "Header",
684
680
  props: {
685
681
  title: {
@@ -693,7 +689,7 @@ const Oa = /* @__PURE__ */ h(Oe, [["render", Ue]]), N = (t, a) => {
693
689
  },
694
690
  mounted() {
695
691
  this.$nextTick(function() {
696
- N(/* @__PURE__ */ Object.assign({ "../../../assets/js/components/carousel/carousel.component.js": () => import("./carousel.component-72a8511a.mjs") }), "../../../assets/js/components/carousel/carousel.component.js").then((t) => {
692
+ import("./carousel.component.min-7a1df789.mjs").then((t) => {
697
693
  window.customElements.get("iam-carousel") || window.customElements.define("iam-carousel", t.default);
698
694
  }).catch((t) => {
699
695
  console.log(t.message);
@@ -701,12 +697,12 @@ const Oa = /* @__PURE__ */ h(Oe, [["render", Ue]]), N = (t, a) => {
701
697
  });
702
698
  }
703
699
  };
704
- function Ke(t, a, e, o, i, s) {
700
+ function We(t, i, e, s, o, a) {
705
701
  return r(), l("iam-carousel", null, [
706
- f(t.$slots, "default")
702
+ m(t.$slots, "default")
707
703
  ]);
708
704
  }
709
- const Ua = /* @__PURE__ */ h(We, [["render", Ke]]), Ge = {
705
+ const Vi = /* @__PURE__ */ p(Oe, [["render", We]]), Ke = {
710
706
  name: "Header",
711
707
  props: {
712
708
  title: {
@@ -720,54 +716,54 @@ const Ua = /* @__PURE__ */ h(We, [["render", Ke]]), Ge = {
720
716
  },
721
717
  mounted() {
722
718
  this.$nextTick(function() {
723
- import("./header.component.min-b5585f02.mjs").then((t) => {
719
+ import("./header.component.min-3cfd860a.mjs").then((t) => {
724
720
  window.customElements.get("iam-header") || window.customElements.define("iam-header", t.default);
725
721
  }).catch((t) => {
726
722
  console.log(t.message);
727
723
  });
728
724
  });
729
725
  }
730
- }, Qe = ["image"], Ye = ["innerHTML"];
731
- function Je(t, a, e, o, i, s) {
726
+ }, Ge = ["image"], Qe = ["innerHTML"];
727
+ function Ye(t, i, e, s, o, a) {
732
728
  return r(), l("iam-header", { image: e.image }, [
733
- f(t.$slots, "breadcrumb"),
729
+ m(t.$slots, "breadcrumb"),
734
730
  e.title ? (r(), l("h1", {
735
731
  key: 0,
736
732
  innerHTML: e.title
737
- }, null, 8, Ye)) : b("", !0),
738
- f(t.$slots, "default")
739
- ], 8, Qe);
733
+ }, null, 8, Qe)) : h("", !0),
734
+ m(t.$slots, "default")
735
+ ], 8, Ge);
740
736
  }
741
- const Wa = /* @__PURE__ */ h(Ge, [["render", Je]]);
742
- function Xe(t) {
743
- var a;
744
- const e = t.querySelector(".testimonial__images"), o = e.querySelectorAll("img").length;
745
- if (o == 1)
737
+ const Bi = /* @__PURE__ */ p(Ke, [["render", Ye]]);
738
+ function Je(t) {
739
+ var i;
740
+ const e = t.querySelector(".testimonial__images"), s = e.querySelectorAll("img").length;
741
+ if (s == 1)
746
742
  return !1;
747
743
  t.classList.add("testimonial--multi");
748
- const i = function(s) {
744
+ const o = function(a) {
749
745
  const n = t.querySelector(".btn-next"), d = t.querySelector(".btn-prev");
750
- n.setAttribute("data-go", s + 1), d.setAttribute("data-go", s - 1), n.removeAttribute("disabled"), d.removeAttribute("disabled"), s == 1 ? d.setAttribute("disabled", !0) : s == o && n.setAttribute("disabled", !0);
746
+ n.setAttribute("data-go", a + 1), d.setAttribute("data-go", a - 1), n.removeAttribute("disabled"), d.removeAttribute("disabled"), a == 1 ? d.setAttribute("disabled", !0) : a == s && n.setAttribute("disabled", !0);
751
747
  };
752
- e.addEventListener("scroll", function(s) {
753
- clearTimeout(a), a = setTimeout(function() {
754
- let n = e.scrollWidth, d = e.scrollHeight, u = e.scrollLeft, m = e.scrollTop, y = Math.round(u / n * o) + 1;
755
- u == 0 && m != 0 && (y = Math.round(m / d * o) + 1), t.setAttribute("data-show", y), i(y);
748
+ e.addEventListener("scroll", function(a) {
749
+ clearTimeout(i), i = setTimeout(function() {
750
+ let n = e.scrollWidth, d = e.scrollHeight, u = e.scrollLeft, b = e.scrollTop, g = Math.round(u / n * s) + 1;
751
+ u == 0 && b != 0 && (g = Math.round(b / d * s) + 1), t.setAttribute("data-show", g), o(g);
756
752
  }, 300);
757
- }, !1), t.addEventListener("click", function(s) {
758
- for (var n = s.target; n && n != this; n = n.parentNode)
753
+ }, !1), t.addEventListener("click", function(a) {
754
+ for (var n = a.target; n && n != this; n = n.parentNode)
759
755
  if (n.matches("[data-go]")) {
760
- let d = parseInt(n.getAttribute("data-go")), u = 0, m = 0, y = e.scrollWidth, p = e.scrollHeight;
761
- y > p ? m = Math.floor(y * ((d - 1) / o)) : u = Math.floor(p * ((d - 1) / o)), e.scroll({
756
+ let d = parseInt(n.getAttribute("data-go")), u = 0, b = 0, g = e.scrollWidth, f = e.scrollHeight;
757
+ g > f ? b = Math.floor(g * ((d - 1) / s)) : u = Math.floor(f * ((d - 1) / s)), e.scroll({
762
758
  top: u,
763
- left: m,
759
+ left: b,
764
760
  behavior: "smooth"
765
761
  });
766
762
  break;
767
763
  }
768
764
  }, !1);
769
765
  }
770
- const Ze = {
766
+ const Xe = {
771
767
  name: "Testimonial",
772
768
  props: {
773
769
  items: {
@@ -781,13 +777,13 @@ const Ze = {
781
777
  }
782
778
  },
783
779
  mounted() {
784
- Xe(this.$refs.wrapper);
780
+ Je(this.$refs.wrapper);
785
781
  }
786
- }, et = {
782
+ }, Ze = {
787
783
  class: "container testimonial mb-5",
788
784
  "data-show": "1",
789
785
  ref: "wrapper"
790
- }, tt = { class: "row" }, at = { class: "col-md-5 position-relative" }, st = { class: "testimonial__images" }, it = ["src"], nt = /* @__PURE__ */ c("div", { class: "testimonial__controls" }, [
786
+ }, et = { class: "row" }, tt = { class: "col-md-5 position-relative" }, it = { class: "testimonial__images" }, at = ["src"], nt = /* @__PURE__ */ c("div", { class: "testimonial__controls" }, [
791
787
  /* @__PURE__ */ c("button", {
792
788
  "data-go": "0",
793
789
  disabled: "",
@@ -797,50 +793,50 @@ const Ze = {
797
793
  "data-go": "2",
798
794
  class: "btn-next"
799
795
  }, "Next")
800
- ], -1), ot = { class: "col-md-7" }, rt = /* @__PURE__ */ c("h2", null, "What our customers think…", -1), lt = { class: "testimonial__content" }, dt = ["innerHTML"], ct = ["innerHTML"], ut = { class: "testimonial__after" }, mt = /* @__PURE__ */ c("span", { class: "circle circle--dots d-none d-md-block" }, null, -1);
801
- function pt(t, a, e, o, i, s) {
802
- return r(), l("div", et, [
796
+ ], -1), st = { class: "col-md-7" }, ot = /* @__PURE__ */ c("h2", null, "What our customers think…", -1), rt = { class: "testimonial__content" }, lt = ["innerHTML"], dt = ["innerHTML"], ct = { class: "testimonial__after" }, ut = /* @__PURE__ */ c("span", { class: "circle circle--dots d-none d-md-block" }, null, -1);
797
+ function mt(t, i, e, s, o, a) {
798
+ return r(), l("div", Ze, [
803
799
  c("div", {
804
- class: w("bg-" + e.background)
800
+ class: y("bg-" + e.background)
805
801
  }, [
806
- c("div", tt, [
807
- c("div", at, [
808
- c("div", st, [
809
- (r(!0), l(E, null, q(e.items, (n, d) => (r(), l("img", {
802
+ c("div", et, [
803
+ c("div", tt, [
804
+ c("div", it, [
805
+ (r(!0), l(x, null, A(e.items, (n, d) => (r(), l("img", {
810
806
  key: d,
811
807
  src: n.image ? n.image : "data:image/gif;base64,R0lGODlhAQABAIAAAHd3dwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==",
812
808
  alt: "",
813
- class: w("h-100 w-100 object-cover" + (n.image ? "" : " opacity-0"))
814
- }, null, 10, it))), 128))
809
+ class: y("h-100 w-100 object-cover" + (n.image ? "" : " opacity-0"))
810
+ }, null, 10, at))), 128))
815
811
  ]),
816
812
  nt
817
813
  ]),
818
- c("div", ot, [
819
- rt,
820
- c("div", lt, [
821
- (r(!0), l(E, null, q(e.items, (n, d) => (r(), l("blockquote", {
814
+ c("div", st, [
815
+ ot,
816
+ c("div", rt, [
817
+ (r(!0), l(x, null, A(e.items, (n, d) => (r(), l("blockquote", {
822
818
  key: d,
823
- class: w(n.class)
819
+ class: y(n.class)
824
820
  }, [
825
821
  c("div", {
826
822
  innerHTML: n.quote
827
- }, null, 8, dt),
823
+ }, null, 8, lt),
828
824
  c("cite", {
829
825
  innerHTML: n.cite
830
- }, null, 8, ct)
826
+ }, null, 8, dt)
831
827
  ], 2))), 128))
832
828
  ]),
833
- c("div", ut, [
834
- f(t.$slots, "default")
829
+ c("div", ct, [
830
+ m(t.$slots, "default")
835
831
  ])
836
832
  ])
837
833
  ]),
838
- mt
834
+ ut
839
835
  ], 2)
840
836
  ], 512);
841
837
  }
842
- const Ka = /* @__PURE__ */ h(Ze, [["render", pt]]);
843
- const ht = {
838
+ const Ui = /* @__PURE__ */ p(Xe, [["render", mt]]);
839
+ const pt = {
844
840
  name: "Timeline",
845
841
  props: {
846
842
  image: {
@@ -848,23 +844,23 @@ const ht = {
848
844
  required: !1
849
845
  }
850
846
  }
851
- }, ft = { class: "timeline" }, bt = { class: "timeline__content" }, gt = ["src"];
852
- function yt(t, a, e, o, i, s) {
853
- return r(), l("div", ft, [
854
- c("div", bt, [
855
- f(t.$slots, "default")
847
+ }, ht = { class: "timeline" }, ft = { class: "timeline__content" }, bt = ["src"];
848
+ function gt(t, i, e, s, o, a) {
849
+ return r(), l("div", ht, [
850
+ c("div", ft, [
851
+ m(t.$slots, "default")
856
852
  ]),
857
853
  e.image ? (r(), l("img", {
858
854
  key: 0,
859
855
  src: e.image,
860
856
  alt: ""
861
- }, null, 8, gt)) : b("", !0)
857
+ }, null, 8, bt)) : h("", !0)
862
858
  ]);
863
859
  }
864
- const Ga = /* @__PURE__ */ h(ht, [["render", yt]]);
865
- const vt = {
860
+ const Oi = /* @__PURE__ */ p(pt, [["render", gt]]);
861
+ const yt = {
866
862
  components: {
867
- Input: P
863
+ Input: R
868
864
  },
869
865
  name: "PropertySearchbar",
870
866
  props: {
@@ -1011,43 +1007,43 @@ const vt = {
1011
1007
  }, _t = {
1012
1008
  class: "container",
1013
1009
  ref: "wrapper"
1014
- }, wt = { class: "property-searchbar" }, $t = ["action", "method"], kt = { class: "col-12 col-md-3" }, At = { class: "col-12 col-md" }, xt = /* @__PURE__ */ c("span", { class: "form-label d-none d-md-block" }, "Price range", -1), Lt = {
1010
+ }, vt = { class: "property-searchbar" }, wt = ["action", "method"], $t = { class: "col-12 col-md-3" }, kt = { class: "col-12 col-md" }, xt = /* @__PURE__ */ c("span", { class: "form-label d-none d-md-block" }, "Price range", -1), At = {
1015
1011
  class: "row",
1016
1012
  "data-input-range": ""
1017
- }, St = { class: "col-12 col-md" }, Et = /* @__PURE__ */ c("span", { class: "form-label d-none d-md-block" }, "Number of beds", -1), qt = {
1013
+ }, Lt = { class: "col-12 col-md" }, St = /* @__PURE__ */ c("span", { class: "form-label d-none d-md-block" }, "Number of beds", -1), Tt = {
1018
1014
  class: "row",
1019
1015
  "data-input-range": ""
1020
- }, Tt = { class: "col-12 col-md-2" }, Ht = /* @__PURE__ */ c("div", { class: "col-12 col-md mw-md-fit-content d-flex property-searchbar__btn" }, [
1016
+ }, qt = { class: "col-12 col-md-2" }, Et = /* @__PURE__ */ c("div", { class: "col-12 col-md mw-md-fit-content d-flex property-searchbar__btn" }, [
1021
1017
  /* @__PURE__ */ c("button", {
1022
1018
  class: "btn w-100 me-0",
1023
1019
  type: "submit",
1024
1020
  value: "submit"
1025
1021
  }, "Search")
1026
1022
  ], -1);
1027
- function Mt(t, a, e, o, i, s) {
1028
- const n = M("Input");
1023
+ function Ht(t, i, e, s, o, a) {
1024
+ const n = H("Input");
1029
1025
  return r(), l("div", _t, [
1030
- f(t.$slots, "default"),
1031
- c("div", wt, [
1026
+ m(t.$slots, "default"),
1027
+ c("div", vt, [
1032
1028
  c("form", {
1033
1029
  class: "row",
1034
1030
  action: e.formaction,
1035
1031
  method: e.formmethod
1036
1032
  }, [
1037
- c("fieldset", kt, [
1038
- x(n, {
1033
+ c("fieldset", $t, [
1034
+ $(n, {
1039
1035
  inputClass: "input--locations",
1040
- modelValue: s.locationSet,
1041
- "onUpdate:modelValue": a[0] || (a[0] = (d) => s.locationSet = d),
1036
+ modelValue: a.locationSet,
1037
+ "onUpdate:modelValue": i[0] || (i[0] = (d) => a.locationSet = d),
1042
1038
  label: "Location",
1043
1039
  id: "location",
1044
- options: s.locationsList(),
1040
+ options: a.locationsList(),
1045
1041
  required: "",
1046
1042
  placeholder: "i.e. Newcastle or NE1",
1047
- onKeyupEvent: a[1] || (a[1] = (d) => s.locationKeyup(...arguments)),
1043
+ onKeyupEvent: i[1] || (i[1] = (d) => a.locationKeyup(...arguments)),
1048
1044
  ref: "search"
1049
1045
  }, null, 8, ["modelValue", "options"]),
1050
- x(n, {
1046
+ $(n, {
1051
1047
  class: "select--miles",
1052
1048
  label: "Miles",
1053
1049
  id: "miles",
@@ -1055,10 +1051,10 @@ function Mt(t, a, e, o, i, s) {
1055
1051
  options: e.distances
1056
1052
  }, null, 8, ["options"])
1057
1053
  ]),
1058
- c("fieldset", At, [
1054
+ c("fieldset", kt, [
1059
1055
  xt,
1060
- c("div", Lt, [
1061
- x(n, {
1056
+ c("div", At, [
1057
+ $(n, {
1062
1058
  class: "col-6",
1063
1059
  label: "Minimum price",
1064
1060
  id: "price-min",
@@ -1066,7 +1062,7 @@ function Mt(t, a, e, o, i, s) {
1066
1062
  type: "select",
1067
1063
  options: e.pricemin
1068
1064
  }, null, 8, ["options"]),
1069
- x(n, {
1065
+ $(n, {
1070
1066
  class: "col-6",
1071
1067
  label: "Maximum price",
1072
1068
  id: "price-max",
@@ -1076,10 +1072,10 @@ function Mt(t, a, e, o, i, s) {
1076
1072
  }, null, 8, ["options"])
1077
1073
  ])
1078
1074
  ]),
1079
- c("fieldset", St, [
1080
- Et,
1081
- c("div", qt, [
1082
- x(n, {
1075
+ c("fieldset", Lt, [
1076
+ St,
1077
+ c("div", Tt, [
1078
+ $(n, {
1083
1079
  class: "col-6",
1084
1080
  label: "Minimum beds",
1085
1081
  id: "beds-min",
@@ -1087,7 +1083,7 @@ function Mt(t, a, e, o, i, s) {
1087
1083
  type: "select",
1088
1084
  options: e.bedsmin
1089
1085
  }, null, 8, ["options"]),
1090
- x(n, {
1086
+ $(n, {
1091
1087
  class: "col-6",
1092
1088
  label: "Maximum beds",
1093
1089
  id: "beds-max",
@@ -1097,26 +1093,26 @@ function Mt(t, a, e, o, i, s) {
1097
1093
  }, null, 8, ["options"])
1098
1094
  ])
1099
1095
  ]),
1100
- c("fieldset", Tt, [
1101
- x(n, {
1096
+ c("fieldset", qt, [
1097
+ $(n, {
1102
1098
  label: "Property type",
1103
1099
  id: "property-type",
1104
1100
  type: "select",
1105
1101
  options: e.propertytypes
1106
1102
  }, null, 8, ["options"])
1107
1103
  ]),
1108
- Ht
1109
- ], 8, $t)
1104
+ Et
1105
+ ], 8, wt)
1110
1106
  ]),
1111
- f(t.$slots, "after")
1107
+ m(t.$slots, "after")
1112
1108
  ], 512);
1113
1109
  }
1114
- const Qa = /* @__PURE__ */ h(vt, [["render", Mt]]), Ct = {
1110
+ const Wi = /* @__PURE__ */ p(yt, [["render", Ht]]), Mt = {
1115
1111
  components: {},
1116
1112
  name: "Nav",
1117
1113
  mounted() {
1118
1114
  this.$nextTick(function() {
1119
- import("./nav.component.min-198b655f.mjs").then((t) => {
1115
+ import("./nav.component.min-e23cd274.mjs").then((t) => {
1120
1116
  window.customElements.get("iam-nav") || window.customElements.define("iam-nav", t.default);
1121
1117
  }).catch((t) => {
1122
1118
  console.log(t.message);
@@ -1124,13 +1120,13 @@ const Qa = /* @__PURE__ */ h(vt, [["render", Mt]]), Ct = {
1124
1120
  });
1125
1121
  },
1126
1122
  methods: {}
1127
- }, Nt = { ref: "wrapper" };
1128
- function jt(t, a, e, o, i, s) {
1129
- return r(), l("iam-nav", Nt, [
1130
- f(t.$slots, "default")
1123
+ }, Ct = { ref: "wrapper" };
1124
+ function Nt(t, i, e, s, o, a) {
1125
+ return r(), l("iam-nav", Ct, [
1126
+ m(t.$slots, "default")
1131
1127
  ], 512);
1132
1128
  }
1133
- const Ya = /* @__PURE__ */ h(Ct, [["render", jt]]);
1129
+ const Ki = /* @__PURE__ */ p(Mt, [["render", Nt]]);
1134
1130
  const Rt = {
1135
1131
  name: "Stepper",
1136
1132
  props: {
@@ -1144,26 +1140,26 @@ const Rt = {
1144
1140
  default: "Complete"
1145
1141
  }
1146
1142
  }
1147
- }, Pt = { class: "container" }, Ft = ["aria-label"], zt = {
1143
+ }, Pt = { class: "container" }, zt = ["aria-label"], jt = {
1148
1144
  key: 0,
1149
1145
  class: "h6 stepper__start"
1150
1146
  }, It = { class: "list-unstyled" }, Dt = { class: "h6 stepper__end" };
1151
- function Vt(t, a, e, o, i, s) {
1147
+ function Ft(t, i, e, s, o, a) {
1152
1148
  return r(), l("div", Pt, [
1153
1149
  c("nav", {
1154
1150
  class: "stepper",
1155
1151
  "aria-label": e.label ? e.label : "Progress"
1156
1152
  }, [
1157
- e.label ? (r(), l("span", zt, $(e.label), 1)) : b("", !0),
1153
+ e.label ? (r(), l("span", jt, _(e.label), 1)) : h("", !0),
1158
1154
  c("ol", It, [
1159
- f(t.$slots, "default")
1155
+ m(t.$slots, "default")
1160
1156
  ]),
1161
- c("span", Dt, $(e.endlabel), 1)
1162
- ], 8, Ft)
1157
+ c("span", Dt, _(e.endlabel), 1)
1158
+ ], 8, zt)
1163
1159
  ]);
1164
1160
  }
1165
- const Ja = /* @__PURE__ */ h(Rt, [["render", Vt]]);
1166
- const Bt = {
1161
+ const Gi = /* @__PURE__ */ p(Rt, [["render", Ft]]);
1162
+ const Vt = {
1167
1163
  name: "Snapshot",
1168
1164
  props: {
1169
1165
  items: {
@@ -1171,33 +1167,33 @@ const Bt = {
1171
1167
  required: !0
1172
1168
  }
1173
1169
  }
1174
- }, Ot = {
1170
+ }, Bt = {
1175
1171
  class: "container snapshot",
1176
1172
  ref: "wrapper"
1177
- }, Ut = { class: "row" }, Wt = ["href"], Kt = { class: "lead snapshot__title" }, Gt = { class: "stat" };
1178
- function Qt(t, a, e, o, i, s) {
1179
- return r(), l("div", Ot, [
1180
- f(t.$slots, "default"),
1173
+ }, Ut = { class: "row" }, Ot = ["href"], Wt = { class: "lead snapshot__title" }, Kt = { class: "stat" };
1174
+ function Gt(t, i, e, s, o, a) {
1175
+ return r(), l("div", Bt, [
1176
+ m(t.$slots, "default"),
1181
1177
  c("div", Ut, [
1182
- (r(!0), l(E, null, q(e.items, (n, d) => (r(), l("div", {
1178
+ (r(!0), l(x, null, A(e.items, (n, d) => (r(), l("div", {
1183
1179
  class: "col",
1184
1180
  key: d
1185
1181
  }, [
1186
1182
  n.link ? (r(), l("a", {
1187
1183
  key: 0,
1188
1184
  href: n.link
1189
- }, "View " + $(n.title), 9, Wt)) : b("", !0),
1185
+ }, "View " + _(n.title), 9, Ot)) : h("", !0),
1190
1186
  c("div", {
1191
- class: w(`snapshot__item ${n.bg ? "bg-" + n.bg : ""}`)
1187
+ class: y(`snapshot__item ${n.bg ? "bg-" + n.bg : ""}`)
1192
1188
  }, [
1193
- c("span", Kt, $(n.title), 1),
1194
- c("span", Gt, $(n.number), 1)
1189
+ c("span", Wt, _(n.title), 1),
1190
+ c("span", Kt, _(n.number), 1)
1195
1191
  ], 2)
1196
1192
  ]))), 128))
1197
1193
  ])
1198
1194
  ], 512);
1199
1195
  }
1200
- const Xa = /* @__PURE__ */ h(Bt, [["render", Qt]]), Yt = {
1196
+ const Qi = /* @__PURE__ */ p(Vt, [["render", Gt]]), Qt = {
1201
1197
  name: "Stepper",
1202
1198
  props: {
1203
1199
  url: {
@@ -1213,43 +1209,43 @@ const Xa = /* @__PURE__ */ h(Bt, [["render", Qt]]), Yt = {
1213
1209
  required: !1
1214
1210
  }
1215
1211
  }
1216
- }, Jt = ["href", "aria-current"], Xt = {
1212
+ }, Yt = ["href", "aria-current"], Jt = {
1217
1213
  key: 0,
1218
1214
  class: "visually-hidden"
1219
1215
  };
1220
- function Zt(t, a, e, o, i, s) {
1216
+ function Xt(t, i, e, s, o, a) {
1221
1217
  return r(), l("li", null, [
1222
1218
  c("a", {
1223
1219
  href: e.url,
1224
- class: w(`${e.status ? "bg-" + e.status : ""}${typeof e.current < "u" ? "current" : ""}`),
1220
+ class: y(`${e.status ? "bg-" + e.status : ""}${typeof e.current < "u" ? "current" : ""}`),
1225
1221
  "aria-current": typeof e.current < "u" ? "step" : !1
1226
1222
  }, [
1227
1223
  c("span", null, [
1228
- f(t.$slots, "default")
1224
+ m(t.$slots, "default")
1229
1225
  ]),
1230
- e.status ? (r(), l("em", Xt, " - status: " + $(e.status), 1)) : b("", !0)
1231
- ], 10, Jt)
1226
+ e.status ? (r(), l("em", Jt, " - status: " + _(e.status), 1)) : h("", !0)
1227
+ ], 10, Yt)
1232
1228
  ]);
1233
1229
  }
1234
- const Za = /* @__PURE__ */ h(Yt, [["render", Zt]]);
1235
- const ea = {
1230
+ const Yi = /* @__PURE__ */ p(Qt, [["render", Xt]]);
1231
+ const Zt = {
1236
1232
  name: "Tabs",
1237
- mounted() {
1233
+ created() {
1238
1234
  this.$nextTick(function() {
1239
- N(/* @__PURE__ */ Object.assign({ "../../../assets/js/components/tabs/tabs.component.js": () => import("./tabs.component-1dfbdb3b.mjs"), "../../../assets/js/components/tabs/tabs.component.min.js": () => import("./tabs.component.min-8a17e957.mjs") }), "../../../assets/js/components/tabs/tabs.component.js").then((t) => {
1235
+ import("./tabs.component.min-212c91ac.mjs").then((t) => {
1240
1236
  window.customElements.get("iam-tabs") || window.customElements.define("iam-tabs", t.default);
1241
1237
  }).catch((t) => {
1242
1238
  console.log(t.message);
1243
1239
  });
1244
1240
  });
1245
1241
  }
1246
- }, ta = { ref: "wrapper" };
1247
- function aa(t, a, e, o, i, s) {
1248
- return r(), l("iam-tabs", ta, [
1249
- f(t.$slots, "default")
1242
+ }, ei = { ref: "wrapper" };
1243
+ function ti(t, i, e, s, o, a) {
1244
+ return r(), l("iam-tabs", ei, [
1245
+ m(t.$slots, "default")
1250
1246
  ], 512);
1251
1247
  }
1252
- const es = /* @__PURE__ */ h(ea, [["render", aa]]), sa = {
1248
+ const Ji = /* @__PURE__ */ p(Zt, [["render", ti]]), ii = {
1253
1249
  name: "Tab",
1254
1250
  props: {
1255
1251
  title: {
@@ -1271,23 +1267,23 @@ const es = /* @__PURE__ */ h(ea, [["render", aa]]), sa = {
1271
1267
  isDisabled: !!this.disabled
1272
1268
  };
1273
1269
  }
1274
- }, ia = { class: "tab" }, na = ["innerHTML"];
1275
- function oa(t, a, e, o, i, s) {
1276
- return r(), l("details", ia, [
1270
+ }, ai = { class: "tab" }, ni = ["innerHTML"];
1271
+ function si(t, i, e, s, o, a) {
1272
+ return r(), l("details", ai, [
1277
1273
  c("summary", {
1278
1274
  innerHTML: e.title,
1279
- class: w({ disabled: i.isDisabled })
1280
- }, null, 10, na),
1281
- f(t.$slots, "default")
1275
+ class: y({ disabled: o.isDisabled })
1276
+ }, null, 10, ni),
1277
+ m(t.$slots, "default")
1282
1278
  ]);
1283
1279
  }
1284
- const ts = /* @__PURE__ */ h(sa, [["render", oa]]);
1285
- let F = R.props;
1286
- F.fields.required = !1;
1287
- const ra = {
1280
+ const Xi = /* @__PURE__ */ p(ii, [["render", si]]);
1281
+ let P = N.props;
1282
+ P.fields.required = !1;
1283
+ const oi = {
1288
1284
  components: {
1289
- Table: R,
1290
- Input: P
1285
+ Table: N,
1286
+ Input: R
1291
1287
  },
1292
1288
  data() {
1293
1289
  return {
@@ -1298,14 +1294,14 @@ const ra = {
1298
1294
  methods: {
1299
1295
  submitForm: function(t) {
1300
1296
  console.log(this);
1301
- const a = new FormData(t.target);
1297
+ const i = new FormData(t.target);
1302
1298
  let e = /* @__PURE__ */ new Date();
1303
- const o = e.getFullYear();
1304
- let i = e.getMonth() + 1, s = e.getDate();
1305
- s < 10 && (s = "0" + s), i < 10 && (i = "0" + i), e = s + "/" + i + "/" + o, this.itemsData.unshift({
1299
+ const s = e.getFullYear();
1300
+ let o = e.getMonth() + 1, a = e.getDate();
1301
+ a < 10 && (a = "0" + a), o < 10 && (o = "0" + o), e = a + "/" + o + "/" + s, this.itemsData.unshift({
1306
1302
  date_added: e,
1307
- user: a.get("user"),
1308
- note: a.get("addNote")
1303
+ user: i.get("user"),
1304
+ note: i.get("addNote")
1309
1305
  }), this.$emit("formSubmitted", t);
1310
1306
  }
1311
1307
  },
@@ -1315,7 +1311,7 @@ const ra = {
1315
1311
  type: String,
1316
1312
  required: !0
1317
1313
  },
1318
- ...F,
1314
+ ...P,
1319
1315
  title: {
1320
1316
  type: String,
1321
1317
  required: !1
@@ -1330,177 +1326,87 @@ const ra = {
1330
1326
  required: !1
1331
1327
  }
1332
1328
  }
1333
- }, la = { class: "container note-feed mb-2" }, da = ["innerHTML"], ca = ["action", "method"], ua = ["value"], ma = /* @__PURE__ */ c("button", { class: "btn btn-tertiary" }, "Submit note", -1);
1334
- function pa(t, a, e, o, i, s) {
1335
- const n = M("Table"), d = M("Input");
1336
- return r(), l("div", la, [
1329
+ }, ri = { class: "container note-feed mb-2" }, li = ["innerHTML"], di = ["action", "method"], ci = ["value"], ui = /* @__PURE__ */ c("button", { class: "btn btn-tertiary" }, "Submit note", -1);
1330
+ function mi(t, i, e, s, o, a) {
1331
+ const n = H("Table"), d = H("Input");
1332
+ return r(), l("div", ri, [
1337
1333
  e.title ? (r(), l("span", {
1338
1334
  key: 0,
1339
1335
  class: "h3",
1340
1336
  innerHTML: e.title
1341
- }, null, 8, da)) : b("", !0),
1342
- x(n, S({
1337
+ }, null, 8, li)) : h("", !0),
1338
+ $(n, k({
1343
1339
  fields: [{ key: "date_added" }, { key: "user" }, { key: "note" }],
1344
- items: i.itemsData
1340
+ items: o.itemsData
1345
1341
  }, t.$props, { class: "mb-0" }), null, 16, ["items"]),
1346
1342
  c("form", {
1347
1343
  action: e.action,
1348
1344
  method: e.method,
1349
- onSubmit: a[0] || (a[0] = B((u) => s.submitForm(...arguments), ["prevent"]))
1345
+ onSubmit: i[0] || (i[0] = V((u) => a.submitForm(...arguments), ["prevent"]))
1350
1346
  }, [
1351
1347
  c("input", {
1352
1348
  type: "hidden",
1353
1349
  value: e.user,
1354
1350
  name: "user"
1355
- }, null, 8, ua),
1356
- x(d, {
1351
+ }, null, 8, ci),
1352
+ $(d, {
1357
1353
  id: "addNote",
1358
1354
  type: "textarea",
1359
1355
  label: "Add note",
1360
1356
  required: "",
1361
1357
  class: "mw-100"
1362
1358
  }),
1363
- ma
1364
- ], 40, ca)
1359
+ ui
1360
+ ], 40, di)
1365
1361
  ]);
1366
1362
  }
1367
- const as = /* @__PURE__ */ h(ra, [["render", pa]]);
1368
- function ha(t, a) {
1369
- function e(i, s, n = !0) {
1370
- let d = !1, u = s.getAttribute("name");
1371
- u.includes("[]") && (u = u.replace("[]", `[${s.value}]`));
1372
- let m = i.querySelector(`[data-name="${u}"]`);
1373
- m && s.getAttribute("type") == "checkbox" && (d = !s.checked);
1374
- let y = s.getAttribute("data-filter-text");
1375
- if (m || (m = document.createElement("button"), i.appendChild(m)), m.setAttribute("type", "button"), m.classList.add("filter"), m.classList.add("tag"), n && m.classList.add("tag--not-set"), m.setAttribute("data-name", u), m.innerHTML = y.replace("$value", s.value), (!s.value || d) && m.remove(), s.parentNode.closest("[data-filter-text]")) {
1376
- let p = s.parentNode.closest("[data-filter-text]"), g = !0;
1377
- if (u = "", p.querySelectorAll("input").forEach((v, _) => {
1378
- let k = v.getAttribute("name");
1379
- if (u += `${_ != 0 ? "," : ""}${k}`, i.querySelector(`[data-name="${k}"]`) && i.querySelector(`[data-name="${k}"]`).remove(), v.value) {
1380
- let A = document.createElement("button");
1381
- A.setAttribute("type", "button"), A.classList.add("filter"), A.classList.add("tag"), n && m.classList.add("tag--not-set"), A.setAttribute("data-name", k), A.innerHTML = y.replace("$value", v.value), i.appendChild(A);
1382
- } else
1383
- g = !1;
1384
- }), i.querySelector(`[data-name="${u}"]`) && i.querySelector(`[data-name="${u}"]`).remove(), g) {
1385
- let v = p.getAttribute("data-filter-text");
1386
- p.querySelectorAll("input").forEach((k, A) => {
1387
- let L = k.getAttribute("name");
1388
- i.querySelector(`[data-name="${L}"]`) && i.querySelector(`[data-name="${L}"]`).remove(), v = v.replace(`$${A + 1}`, k.value);
1389
- });
1390
- let _ = document.createElement("button");
1391
- _.setAttribute("type", "button"), _.classList.add("filter"), _.classList.add("tag"), n && m.classList.add("tag--not-set"), _.setAttribute("data-name", u), _.innerHTML = v, i.appendChild(_);
1392
- }
1393
- }
1394
- }
1395
- Array.from(t.querySelectorAll('input[type="checkbox"]:checked, input:not([type="checkbox"]):not([type="radio"])')).forEach((i, s) => {
1396
- e(a, i, !1);
1397
- });
1398
- let o = t.closest("dialog");
1399
- o && new MutationObserver(function(s) {
1400
- s[0].attributeName == "open" && Array.from(t.querySelectorAll('input[type="checkbox"]:checked, input:not([type="checkbox"]):not([type="radio"])')).forEach((n, d) => {
1401
- e(a, n, !1);
1402
- });
1403
- }).observe(o, { attributes: !0 }), t.addEventListener("tags-set", function(i) {
1404
- a.innerHTML = "", Array.from(t.querySelectorAll('input[type="checkbox"]:checked, input:not([type="checkbox"]):not([type="radio"])')).forEach((s, n) => {
1405
- e(a, s, !1);
1406
- });
1407
- }), Array.from(t.querySelectorAll('input[type="checkbox"]:checked, input:not([type="checkbox"]):not([type="radio"])')).forEach((i, s) => {
1408
- i.addEventListener("change", function(n) {
1409
- t.hasAttribute("data-keep-same") || e(a, i), n.stopPropagation();
1363
+ const Zi = /* @__PURE__ */ p(oi, [["render", mi]]), pi = {
1364
+ name: "Applied Filter",
1365
+ mounted() {
1366
+ this.$nextTick(function() {
1367
+ import("./applied-filters.component-a4f8d7e3.mjs").then((t) => {
1368
+ window.customElements.get("iam-applied-filters") || window.customElements.define("iam-applied-filters", t.default);
1369
+ }).catch((t) => {
1370
+ console.log(t.message);
1371
+ });
1410
1372
  });
1411
- }), t.addEventListener("change", function(i) {
1412
- if (i && i.target instanceof HTMLElement && i.target.closest("input[data-filter-text]")) {
1413
- let s = i.target.closest("input[data-filter-text]");
1414
- t.hasAttribute("data-keep-same") || e(a, s);
1415
- }
1416
- }), a.addEventListener("click", function(i) {
1417
- if (i && i.target instanceof HTMLElement && i.target.closest(".filter")) {
1418
- let d = i.target.closest(".filter"), u = d.getAttribute("data-name").split(",");
1419
- for (var s = 0; s < u.length; s++) {
1420
- let m = u[s], y = `[name="${m}"]`;
1421
- m.match(/\[(.*)\]/) && (m.replace(/\[(.*)\]/, "[]"), y = `[value="${m.replace(/.*\[(.*)\]/, "$1")}"]`);
1422
- let p = t.querySelectorAll(y);
1423
- for (var n = 0; n < p.length; n++) {
1424
- let g = p[n];
1425
- if (g.getAttribute("type") != "radio" && g.getAttribute("type") != "checkbox") {
1426
- g.value = "";
1427
- var i = new Event("force");
1428
- t.hasAttribute("data-nosubmit") || g.closest("form").dispatchEvent(i);
1429
- } else {
1430
- g.checked = !1;
1431
- var i = new Event("force");
1432
- t.hasAttribute("data-nosubmit") || g.closest("form").dispatchEvent(i);
1433
- }
1434
- }
1435
- }
1436
- d.remove();
1437
- }
1438
- }, !1);
1439
- }
1440
- window.dataLayer = window.dataLayer || [];
1441
- window.dataLayer.push({
1442
- event: "customElementRegistered",
1443
- element: "Applied Filters"
1444
- });
1445
- class fa extends HTMLElement {
1446
- constructor() {
1447
- super(), this.attachShadow({ mode: "open" });
1448
- 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`, o = `@import "${a}/css/components/applied-filters.css";`;
1449
- let i = this.classList.toString();
1450
- const s = document.createElement("template");
1451
- s.innerHTML = `
1452
- <style>
1453
- @import "${e}";
1454
- ${o}
1455
- ${this.hasAttribute("css") ? `@import "${this.getAttribute("css")}";` : ""}
1456
- </style>
1457
- <div class="applied-filters ${i}"></div>
1458
- <slot></slot>
1459
- `, this.shadowRoot.appendChild(s.content.cloneNode(!0));
1460
1373
  }
1461
- connectedCallback() {
1462
- ha(this, this.shadowRoot.querySelector(".applied-filters"));
1463
- }
1464
- }
1465
- window.customElements.get("iam-applied-filters") || window.customElements.define("iam-applied-filters", fa);
1466
- const ba = {
1467
- name: "Header"
1468
1374
  };
1469
- function ga(t, a, e, o, i, s) {
1375
+ function hi(t, i, e, s, o, a) {
1470
1376
  return r(), l("iam-applied-filters", null, [
1471
- f(t.$slots, "default")
1377
+ m(t.$slots, "default")
1472
1378
  ]);
1473
1379
  }
1474
- const ss = /* @__PURE__ */ h(ba, [["render", ga]]);
1380
+ const ea = /* @__PURE__ */ p(pi, [["render", hi]]);
1475
1381
  /*!
1476
- * iamKey v5.5.1-beta-4
1382
+ * iamKey v5.6.0
1477
1383
  * Copyright 2022-2024 iamproperty
1478
1384
  */
1479
- function ya(t, a) {
1480
- va(t, a);
1385
+ function fi(t, i) {
1386
+ bi(t, i);
1481
1387
  }
1482
- function va(t, a) {
1388
+ function bi(t, i) {
1483
1389
  var e;
1484
- a.addEventListener("keyup", (o) => {
1390
+ i.addEventListener("keyup", (s) => {
1485
1391
  clearTimeout(e), e = setTimeout(function() {
1486
- j(t, a.value);
1392
+ C(t, i.value);
1487
1393
  }, 500);
1488
- }), a.addEventListener("change", (o) => {
1489
- clearTimeout(e), j(t, a.value);
1394
+ }), i.addEventListener("change", (s) => {
1395
+ clearTimeout(e), C(t, i.value);
1490
1396
  });
1491
1397
  }
1492
- const j = function(t, a) {
1493
- Array.from(t.querySelectorAll(":scope > li")).forEach((e, o) => {
1494
- let i = e.textContent.toLowerCase();
1495
- e.classList.add("d-none"), i.includes(a.toLowerCase()) && e.classList.remove("d-none");
1496
- }), window.dataLayer = window.dataLayer || [], window.dataLayer.push({ event: "Filtered list", value: a });
1398
+ const C = function(t, i) {
1399
+ Array.from(t.querySelectorAll(":scope > li")).forEach((e, s) => {
1400
+ let o = e.textContent.toLowerCase();
1401
+ e.classList.add("d-none"), o.includes(i.toLowerCase()) && e.classList.remove("d-none");
1402
+ }), window.dataLayer = window.dataLayer || [], window.dataLayer.push({ event: "Filtered list", value: i });
1497
1403
  };
1498
1404
  window.dataLayer = window.dataLayer || [], window.dataLayer.push({ event: "customElementRegistered", element: "filterlist" });
1499
- class _a extends HTMLElement {
1405
+ class gi extends HTMLElement {
1500
1406
  constructor() {
1501
1407
  super(), this.attachShadow({ mode: "open" });
1502
- 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`, o = document.createElement("template");
1503
- o.innerHTML = `
1408
+ const i = 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") : `${i}/css/core.min.css`, s = document.createElement("template");
1409
+ s.innerHTML = `
1504
1410
  <style>
1505
1411
  @import "${e}";
1506
1412
  ${this.hasAttribute("css") ? `@import "${this.getAttribute("css")}";` : ""}
@@ -1527,51 +1433,51 @@ class _a extends HTMLElement {
1527
1433
  <div class="list__wrapper">
1528
1434
  <slot></slot>
1529
1435
  </div>
1530
- `, this.shadowRoot.appendChild(o.content.cloneNode(!0));
1436
+ `, this.shadowRoot.appendChild(s.content.cloneNode(!0));
1531
1437
  }
1532
1438
  connectedCallback() {
1533
- let a = this.classList.toString();
1534
- 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>'), ya(this.querySelector("ul"), this.shadowRoot.querySelector("#search"));
1439
+ let i = this.classList.toString();
1440
+ this.shadowRoot.querySelector(".list__wrapper").setAttribute("class", `list__wrapper ${i}`), this.querySelector("i.fa-search") || (this.innerHTML += '<i class="fa fa-light fa-search" aria-hidden="true" slot="icon"></i>'), fi(this.querySelector("ul"), this.shadowRoot.querySelector("#search"));
1535
1441
  }
1536
1442
  }
1537
- window.customElements.get("iam-filterlist") || window.customElements.define("iam-filterlist", _a);
1538
- const wa = {
1443
+ window.customElements.get("iam-filterlist") || window.customElements.define("iam-filterlist", gi);
1444
+ const yi = {
1539
1445
  name: "Filter list"
1540
1446
  };
1541
- function $a(t, a, e, o, i, s) {
1447
+ function _i(t, i, e, s, o, a) {
1542
1448
  return r(), l("iam-filterlist", null, [
1543
- f(t.$slots, "default")
1449
+ m(t.$slots, "default")
1544
1450
  ]);
1545
1451
  }
1546
- const is = /* @__PURE__ */ h(wa, [["render", $a]]);
1547
- function ka(t) {
1452
+ const ta = /* @__PURE__ */ p(yi, [["render", _i]]);
1453
+ function vi(t) {
1548
1454
  if (t.hasAttribute("data-type") && t.getAttribute("data-type") == "toast") {
1549
1455
  let e = document.querySelector(".notification__holder");
1550
1456
  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);
1551
1457
  }
1552
1458
  if (t.setAttribute("role", "alert"), t.addEventListener("click", function(e) {
1553
- event && event.target instanceof HTMLElement && event.target.closest("[data-dismiss-button]") && (e.preventDefault(), C(t));
1459
+ event && event.target instanceof HTMLElement && event.target.closest("[data-dismiss-button]") && (e.preventDefault(), M(t));
1554
1460
  }, !1), t.hasAttribute("data-timeout")) {
1555
1461
  let e = t.getAttribute("data-timeout");
1556
- var a = new Aa(function() {
1557
- C(t);
1462
+ var i = new wi(function() {
1463
+ M(t);
1558
1464
  }, e);
1559
- t.addEventListener("mouseenter", (o) => {
1560
- a.pause();
1561
- }), t.addEventListener("mouseleave", (o) => {
1562
- a.resume();
1465
+ t.addEventListener("mouseenter", (s) => {
1466
+ i.pause();
1467
+ }), t.addEventListener("mouseleave", (s) => {
1468
+ i.resume();
1563
1469
  });
1564
1470
  }
1565
1471
  }
1566
- function Aa(t, a) {
1567
- var e, o, i = a;
1472
+ function wi(t, i) {
1473
+ var e, s, o = i;
1568
1474
  this.pause = function() {
1569
- window.clearTimeout(e), i -= /* @__PURE__ */ new Date() - o;
1475
+ window.clearTimeout(e), o -= /* @__PURE__ */ new Date() - s;
1570
1476
  }, this.resume = function() {
1571
- o = /* @__PURE__ */ new Date(), window.clearTimeout(e), e = window.setTimeout(t, i);
1477
+ s = /* @__PURE__ */ new Date(), window.clearTimeout(e), e = window.setTimeout(t, o);
1572
1478
  }, this.resume();
1573
1479
  }
1574
- const C = function(t) {
1480
+ const M = function(t) {
1575
1481
  t.classList.add("d-none");
1576
1482
  };
1577
1483
  window.dataLayer = window.dataLayer || [];
@@ -1579,32 +1485,32 @@ window.dataLayer.push({
1579
1485
  event: "customElementRegistered",
1580
1486
  element: "Notification"
1581
1487
  });
1582
- class xa extends HTMLElement {
1488
+ class $i extends HTMLElement {
1583
1489
  constructor() {
1584
1490
  super(), this.attachShadow({ mode: "open" });
1585
- 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`, o = `@import "${a}/css/components/notification.css";`, i = `@import "${a}/css/components/notification.global.css";`, s = this.querySelectorAll("a,button");
1586
- Array.from(s).forEach((d, u) => {
1491
+ const i = 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") : `${i}/css/core.min.css`, s = `@import "${i}/css/components/notification.css";`, o = `@import "${i}/css/components/notification.global.css";`, a = this.querySelectorAll("a,button");
1492
+ Array.from(a).forEach((d, u) => {
1587
1493
  d.setAttribute("slot", "btns"), d.classList.add("link");
1588
- }), (s.length || this.hasAttribute("data-dismiss")) && this.classList.add("notification--dismissable");
1494
+ }), (a.length || this.hasAttribute("data-dismiss")) && this.classList.add("notification--dismissable");
1589
1495
  const n = document.createElement("template");
1590
1496
  n.innerHTML = `
1591
1497
  <style>
1592
1498
  @import "${e}";
1593
- ${o}
1499
+ ${s}
1594
1500
  ${this.hasAttribute("data-css") ? `${this.getAttribute("data-css")}` : ""}
1595
1501
  </style>
1596
1502
 
1597
1503
  <div class="notification">
1598
1504
  <div class="notification__icon"><slot name="icon"></slot></div>
1599
- <div class="notification__inner"><div class="notification__text"><slot></slot></div>${s.length ? '<div class="notification__btns"><slot name="btns"></slot></div>' : ""}</div>
1505
+ <div class="notification__inner"><div class="notification__text"><slot></slot></div>${a.length ? '<div class="notification__btns"><slot name="btns"></slot></div>' : ""}</div>
1600
1506
  ${this.hasAttribute("data-dismiss") ? '<div class="notification__dismiss"><button data-dismiss-button>Dismiss</button></div>' : ""}
1601
1507
  </div>
1602
- `, this.shadowRoot.appendChild(n.content.cloneNode(!0)), document.getElementById("notificationHolder") || document.head.insertAdjacentHTML("beforeend", `<style id="notificationHolder">${i}</style>`);
1508
+ `, this.shadowRoot.appendChild(n.content.cloneNode(!0)), document.getElementById("notificationHolder") || document.head.insertAdjacentHTML("beforeend", `<style id="notificationHolder">${o}</style>`);
1603
1509
  }
1604
1510
  connectedCallback() {
1605
- const a = this.shadowRoot.querySelector("[data-dismiss-button]"), e = this.hasAttribute("data-status") ? this.getAttribute("data-status") : "white";
1511
+ const i = this.shadowRoot.querySelector("[data-dismiss-button]"), e = this.hasAttribute("data-status") ? this.getAttribute("data-status") : "white";
1606
1512
  this.hasAttribute("data-type") ? this.classList.add(`bg-${e}`) : this.classList.add(`colour-${e}`);
1607
- const o = this;
1513
+ const s = this;
1608
1514
  if (!this.querySelector("i"))
1609
1515
  switch (e) {
1610
1516
  case "danger":
@@ -1619,31 +1525,31 @@ class xa extends HTMLElement {
1619
1525
  default:
1620
1526
  this.innerHTML += '<i class="fa-solid fa-circle-info" aria-hidden="true" slot="icon"></i>';
1621
1527
  }
1622
- ka(o), a && a.addEventListener("click", function(i) {
1623
- C(o);
1528
+ vi(s), i && i.addEventListener("click", function(o) {
1529
+ M(s);
1624
1530
  }, !1);
1625
1531
  }
1626
1532
  }
1627
- const La = {
1533
+ const ki = {
1628
1534
  name: "Notification",
1629
1535
  props: {},
1630
1536
  created() {
1631
1537
  this.$nextTick(function() {
1632
- window.customElements.get("iam-notification") || window.customElements.define("iam-notification", xa);
1538
+ window.customElements.get("iam-notification") || window.customElements.define("iam-notification", $i);
1633
1539
  });
1634
1540
  }
1635
1541
  };
1636
- function Sa(t, a, e, o, i, s) {
1542
+ function xi(t, i, e, s, o, a) {
1637
1543
  return r(), l("iam-notification", null, [
1638
- f(t.$slots, "default")
1544
+ m(t.$slots, "default")
1639
1545
  ]);
1640
1546
  }
1641
- const ns = /* @__PURE__ */ h(La, [["render", Sa]]), Ea = {
1547
+ const ia = /* @__PURE__ */ p(ki, [["render", xi]]), Ai = {
1642
1548
  name: "Actionbar",
1643
1549
  props: {},
1644
1550
  mounted() {
1645
1551
  this.$nextTick(function() {
1646
- import("./actionbar.component.min-4379e120.mjs").then((t) => {
1552
+ import("./actionbar.component.min-3002be25.mjs").then((t) => {
1647
1553
  window.customElements.get("iam-actionbar") || window.customElements.define("iam-actionbar", t.default);
1648
1554
  }).catch((t) => {
1649
1555
  console.log(t.message);
@@ -1651,24 +1557,24 @@ const ns = /* @__PURE__ */ h(La, [["render", Sa]]), Ea = {
1651
1557
  });
1652
1558
  }
1653
1559
  };
1654
- function qa(t, a, e, o, i, s) {
1560
+ function Li(t, i, e, s, o, a) {
1655
1561
  return r(), l("iam-actionbar", null, [
1656
- f(t.$slots, "default")
1562
+ m(t.$slots, "default")
1657
1563
  ]);
1658
1564
  }
1659
- const os = /* @__PURE__ */ h(Ea, [["render", qa]]);
1565
+ const aa = /* @__PURE__ */ p(Ai, [["render", Li]]);
1660
1566
  /*!
1661
- * iamKey v5.5.1-beta-4
1567
+ * iamKey v5.6.0
1662
1568
  * Copyright 2022-2024 iamproperty
1663
1569
  */
1664
1570
  class z extends HTMLElement {
1665
1571
  constructor() {
1666
1572
  super(), this.attachShadow({ mode: "open" });
1667
- 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`, o = document.createElement("template");
1668
- o.innerHTML = `
1573
+ const i = 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") : `${i}/css/core.min.css`, s = document.createElement("template");
1574
+ s.innerHTML = `
1669
1575
  <style>
1670
1576
  @import "${e}";
1671
- :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:3.25rem;line-height:3.25rem;margin-left:-1rem;padding-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 */
1577
+ :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 */
1672
1578
 
1673
1579
 
1674
1580
  ${this.hasAttribute("css") ? `@import "${this.getAttribute("css")}";` : ""}
@@ -1703,19 +1609,19 @@ class z extends HTMLElement {
1703
1609
  <button class="load-more btn btn-primary m-auto">Load more</a>
1704
1610
  </div>
1705
1611
  </div>
1706
- `, this.shadowRoot.appendChild(o.content.cloneNode(!0));
1612
+ `, this.shadowRoot.appendChild(s.content.cloneNode(!0));
1707
1613
  }
1708
1614
  connectedCallback() {
1709
- const a = new URLSearchParams(window.location.search);
1710
- this.hasAttribute("data-total") || this.setAttribute("data-total", 15), this.hasAttribute("data-page") || this.setAttribute("data-page", a.has("page") ? a.get("page") : 1), this.hasAttribute("data-show") || this.setAttribute("data-show", a.has("show") ? a.get("show") : 15), this.hasAttribute("data-increment") || this.setAttribute("data-increment", this.getAttribute("data-show"));
1711
- const e = this.shadowRoot.querySelector(".page-jump select"), o = this.shadowRoot.querySelector(".prev"), i = this.shadowRoot.querySelector(".next"), s = this.shadowRoot.querySelector(".per-page select"), n = this.shadowRoot.querySelector(".load-more");
1615
+ const i = new URLSearchParams(window.location.search);
1616
+ this.hasAttribute("data-total") || this.setAttribute("data-total", 15), this.hasAttribute("data-page") || this.setAttribute("data-page", i.has("page") ? i.get("page") : 1), this.hasAttribute("data-show") || this.setAttribute("data-show", i.has("show") ? i.get("show") : 15), this.hasAttribute("data-increment") || this.setAttribute("data-increment", this.getAttribute("data-show"));
1617
+ const e = this.shadowRoot.querySelector(".page-jump select"), s = this.shadowRoot.querySelector(".prev"), o = this.shadowRoot.querySelector(".next"), a = this.shadowRoot.querySelector(".per-page select"), n = this.shadowRoot.querySelector(".load-more");
1712
1618
  this.setup(), e.addEventListener("change", (d) => {
1713
1619
  this.setAttribute("data-show", this.getAttribute("data-increment")), this.setAttribute("data-page", d.target.value);
1714
- }), i.addEventListener("click", (d) => {
1715
- e.value = parseInt(e.value) + 1, e.dispatchEvent(new Event("change"));
1716
1620
  }), o.addEventListener("click", (d) => {
1621
+ e.value = parseInt(e.value) + 1, e.dispatchEvent(new Event("change"));
1622
+ }), s.addEventListener("click", (d) => {
1717
1623
  e.value = parseInt(e.value) - 1, e.dispatchEvent(new Event("change"));
1718
- }), s.addEventListener("change", (d) => {
1624
+ }), a.addEventListener("change", (d) => {
1719
1625
  this.setAttribute("data-increment", d.target.value);
1720
1626
  }), n.addEventListener("click", (d) => {
1721
1627
  let u = parseInt(this.getAttribute("data-show")) + parseInt(this.getAttribute("data-increment"));
@@ -1723,48 +1629,48 @@ class z extends HTMLElement {
1723
1629
  });
1724
1630
  }
1725
1631
  setup() {
1726
- const a = this.shadowRoot.querySelector(".pagination"), e = this.shadowRoot.querySelector(".page-jump select"), o = this.shadowRoot.querySelector(".prev"), i = this.shadowRoot.querySelector(".next"), s = this.shadowRoot.querySelector(".item-count"), n = this.shadowRoot.querySelector(".per-page select"), d = this.shadowRoot.querySelector(".total-pages"), u = parseInt(this.getAttribute("data-page")), m = parseInt(this.getAttribute("data-total")), y = parseInt(this.getAttribute("data-show")), p = parseInt(this.getAttribute("data-increment")), g = Math.ceil(m / p);
1727
- m > y && a.classList.remove("d-none");
1728
- let v = "";
1729
- for (let L = 1; L <= g; L++)
1730
- v += `<option value="${L}" ${L == u ? "selected" : ""}>${L}</option>`;
1731
- e.innerHTML = v, d.innerHTML = `of ${g}`, u == g ? i.setAttribute("disabled", "disabled") : i.removeAttribute("disabled"), u == 1 ? o.setAttribute("disabled", "disabled") : o.removeAttribute("disabled");
1732
- let _ = u == 1 ? 1 : (u - 1) * y + 1, k = u == 1 ? y : u * y;
1733
- s.innerHTML = `${_} - ${k > m ? m : k} of ${m} items`;
1734
- const A = [15, 25, 40, 50];
1735
- p && n.value != p && !A.includes(p) && (n.innerHTML = `<option value="${p}">${p}</option>
1736
- <option value="${p * 2}">${p * 2}</option>
1737
- <option value="${p * 3}">${p * 3}</option>
1738
- <option value="${p * 4}">${p * 4}</option>`), n.value = p;
1632
+ const i = this.shadowRoot.querySelector(".pagination"), e = this.shadowRoot.querySelector(".page-jump select"), s = this.shadowRoot.querySelector(".prev"), o = this.shadowRoot.querySelector(".next"), a = this.shadowRoot.querySelector(".item-count"), n = this.shadowRoot.querySelector(".per-page select"), d = this.shadowRoot.querySelector(".total-pages"), u = parseInt(this.getAttribute("data-page")), b = parseInt(this.getAttribute("data-total")), g = parseInt(this.getAttribute("data-show")), f = parseInt(this.getAttribute("data-increment")), v = Math.ceil(b / f);
1633
+ b > g && i.classList.remove("d-none");
1634
+ let w = "";
1635
+ for (let S = 1; S <= v; S++)
1636
+ w += `<option value="${S}" ${S == u ? "selected" : ""}>${S}</option>`;
1637
+ e.innerHTML = w, d.innerHTML = `of ${v}`, u == v ? o.setAttribute("disabled", "disabled") : o.removeAttribute("disabled"), u == 1 ? s.setAttribute("disabled", "disabled") : s.removeAttribute("disabled");
1638
+ let L = u == 1 ? 1 : (u - 1) * g + 1, q = u == 1 ? g : u * g;
1639
+ a.innerHTML = `${L} - ${q > b ? b : q} of ${b} items`;
1640
+ const j = [15, 25, 40, 50];
1641
+ f && n.value != f && !j.includes(f) && (n.innerHTML = `<option value="${f}">${f}</option>
1642
+ <option value="${f * 2}">${f * 2}</option>
1643
+ <option value="${f * 3}">${f * 3}</option>
1644
+ <option value="${f * 4}">${f * 4}</option>`), n.value = f;
1739
1645
  }
1740
1646
  static get observedAttributes() {
1741
1647
  return ["data-total", "data-increment", "data-page", "data-show"];
1742
1648
  }
1743
- attributeChangedCallback(a, e, o) {
1744
- switch (a) {
1649
+ attributeChangedCallback(i, e, s) {
1650
+ switch (i) {
1745
1651
  case "data-total": {
1746
- e != o && (this.setAttribute("data-page", 1), this.setup());
1652
+ e != s && (this.setAttribute("data-page", 1), this.setup());
1747
1653
  break;
1748
1654
  }
1749
1655
  case "data-show": {
1750
- e != o && (this.setAttribute("data-page", 1), this.setup(), this.dispatchEvent(new CustomEvent("update-show", { detail: { show: o } })));
1656
+ e != s && (this.setAttribute("data-page", 1), this.setup(), this.dispatchEvent(new CustomEvent("update-show", { detail: { show: s } })));
1751
1657
  break;
1752
1658
  }
1753
1659
  case "data-increment": {
1754
- e != o && (this.setAttribute("data-show", o), this.setAttribute("data-page", 1), this.setup(), this.dispatchEvent(new CustomEvent("update-show", { detail: { show: o } })));
1660
+ e != s && (this.setAttribute("data-show", s), this.setAttribute("data-page", 1), this.setup(), this.dispatchEvent(new CustomEvent("update-show", { detail: { show: s } })));
1755
1661
  break;
1756
1662
  }
1757
1663
  case "data-page": {
1758
- e && e != o && (this.setup(), this.dispatchEvent(new CustomEvent("update-page", { detail: { page: o } })));
1664
+ e && e != s && (this.setup(), this.dispatchEvent(new CustomEvent("update-page", { detail: { page: s } })));
1759
1665
  break;
1760
1666
  }
1761
1667
  }
1762
1668
  }
1763
1669
  }
1764
- const Ta = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1670
+ const Si = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1765
1671
  __proto__: null,
1766
1672
  default: z
1767
- }, Symbol.toStringTag, { value: "Module" })), Ha = {
1673
+ }, Symbol.toStringTag, { value: "Module" })), Ti = {
1768
1674
  name: "Pagination",
1769
1675
  props: {},
1770
1676
  computed: {},
@@ -1776,14 +1682,14 @@ const Ta = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1776
1682
  updated() {
1777
1683
  }
1778
1684
  };
1779
- function Ma(t, a, e, o, i, s) {
1685
+ function qi(t, i, e, s, o, a) {
1780
1686
  return r(), l("iam-pagination");
1781
1687
  }
1782
- const rs = /* @__PURE__ */ h(Ha, [["render", Ma]]), Ca = {
1688
+ const na = /* @__PURE__ */ p(Ti, [["render", qi]]), Ei = {
1783
1689
  name: "Address Lookup",
1784
1690
  mounted() {
1785
1691
  this.$nextTick(function() {
1786
- N(/* @__PURE__ */ Object.assign({ "../../../assets/js/components/address-lookup/address-lookup.component.js": () => import("./address-lookup.component-5aabf606.mjs"), "../../../assets/js/components/address-lookup/address-lookup.component.min.js": () => import("./address-lookup.component.min-07f51c45.mjs") }), "../../../assets/js/components/address-lookup/address-lookup.component.js").then((t) => {
1692
+ import("./address-lookup.component.min-18df3418.mjs").then((t) => {
1787
1693
  window.customElements.get("iam-address-lookup") || window.customElements.define("iam-address-lookup", t.default);
1788
1694
  }).catch((t) => {
1789
1695
  console.log(t.message);
@@ -1791,22 +1697,22 @@ const rs = /* @__PURE__ */ h(Ha, [["render", Ma]]), Ca = {
1791
1697
  });
1792
1698
  }
1793
1699
  };
1794
- function Na(t, a, e, o, i, s) {
1700
+ function Hi(t, i, e, s, o, a) {
1795
1701
  return r(), l("iam-address-lookup", null, [
1796
- f(t.$slots, "default")
1702
+ m(t.$slots, "default")
1797
1703
  ]);
1798
1704
  }
1799
- const ls = /* @__PURE__ */ h(Ca, [["render", Na]]);
1705
+ const sa = /* @__PURE__ */ p(Ei, [["render", Hi]]);
1800
1706
  /*!
1801
- * iamKey v5.5.1-beta-4
1707
+ * iamKey v5.6.0
1802
1708
  * Copyright 2022-2024 iamproperty
1803
1709
  */
1804
1710
  window.dataLayer = window.dataLayer || [], window.dataLayer.push({ event: "customElementRegistered", element: "collapsible side menu" });
1805
- class ja extends HTMLElement {
1711
+ class Mi extends HTMLElement {
1806
1712
  constructor() {
1807
1713
  super(), this.attachShadow({ mode: "open" });
1808
- 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`, o = document.createElement("template");
1809
- o.innerHTML = `
1714
+ const i = 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") : `${i}/css/core.min.css`, s = document.createElement("template");
1715
+ s.innerHTML = `
1810
1716
  <style class="styles">
1811
1717
  @import "${e}";
1812
1718
  :host{--colour-border: #e9e9e9;--side-link-hover: var(--colour-canvas-2);display:block;min-height:calc(100vh - var(--nav-height));padding-top:0 !important;margin-inline:auto;max-width:80rem;overflow:hidden;position:relative}@media screen and (prefers-color-scheme: light){:host{--side-link-hover: #eeeeee}}.container{position:static;min-height:100%;padding-top:0 !important;padding-bottom:0 !important;padding-left:0 !important}@media screen and (min-width: 62em){.container{padding-left:5.25rem !important;overflow:hidden}}.side-menu{position:absolute;top:0;left:0;height:100%;min-height:calc(100vh - var(--nav-height));width:1.875rem;height:100%;background-color:var(--colour-canvas);transition:width 1s}.side-menu:before{content:"";position:absolute;top:0;right:0;height:100%;border-right:2px solid var(--colour-border)}@media screen and (min-width: 36em){.side-menu{left:0;width:2.5rem}}@media screen and (min-width: 62em){.side-menu{left:calc(50% - 34.75rem);margin-left:-5.25rem}.side-menu:after{content:"";position:absolute;top:0;height:100%;border-right:2px solid var(--colour-border);left:0;opacity:1;transition:all 1s;width:2.5rem;background:var(--colour-canvas)}.side-menu:not(.open).hover{width:21.5rem}.side-menu:not(.open).hover .btn[class*=fa-]:before{content:"" !important}}.side-menu .btn{position:absolute;top:2rem;right:0;margin-bottom:0;margin-right:-1.25rem;background-color:var(--colour-canvas-2);border:2px solid var(--colour-border);z-index:99}.side-menu .btn[aria-expanded][class*=fa-]:before{content:"" !important}@media screen and (min-width: 62em){.side-menu .btn[aria-expanded]{opacity:0;transition:opacity .5s}.side-menu .btn[aria-expanded]:is(:hover,:focus,:active){opacity:1}}.side-menu:is(.open){width:calc(100% - var(--container-padding-x))}@media screen and (min-width: 36em){.side-menu:is(.open){width:23.875rem}}@media screen and (min-width: 62em){.side-menu:is(.open){width:21.5rem}}.side-menu .side-menu-content{position:absolute;top:0;right:0;padding:2rem 2.5rem 0 0;width:21.9375rem;opacity:0;transition:opacity 1s;min-height:100%;overflow:auto;max-height:100%}.side-menu .side-menu-content .h3{padding-left:1.5rem}@media screen and (min-width: 36em){.side-menu .side-menu-content{width:23.875rem}.side-menu .side-menu-content .h3{padding-left:2.5rem}}@media screen and (min-width: 62em){.side-menu .side-menu-content{width:19rem}}.side-menu:not(.hover):not(.open) .side-menu-content.closed{display:none}.side-menu.open .side-menu-content{opacity:1}@media screen and (min-width: 62em){.side-menu.hover .side-menu-content{opacity:1}}::slotted(*[slot=menu]){padding-left:1.5rem}@media screen and (min-width: 36em){::slotted(*[slot=menu]){padding-left:2.5rem !important}}::slotted(hr){border-bottom:2px solid var(--colour-border) !important;margin-right:-2.5rem !important}::slotted(a[slot=menu]){display:block;display:block !important;line-height:1.25rem !important;padding:1rem 2.5rem 1rem 1.5rem !important;margin:0 !important;flex-shrink:0;font-size:1rem !important;font-weight:normal !important;text-decoration:none;border-bottom:2px solid var(--colour-border) !important;margin-right:-2.5rem !important;border-right:2px solid var(--colour-border) !important}@media screen and (min-width: 36em){::slotted(a[slot=menu]){padding-left:2.5rem !important}}::slotted(a[slot=menu]):after{display:none}::slotted(a[slot=menu]:where(:hover,:focus,[aria-expanded])){background-color:var(--side-link-hover) !important}::slotted(a[slot=menu]:active){background-color:var(--side-link-hover) !important;font-weight:bold !important}::slotted(a[slot=menu][aria-expanded]){background-color:var(--side-link-hover) !important;font-weight:bold !important;margin-right:-2.5rem !important;position:relative;border-right:2px solid var(--colour-info) !important}::slotted(a[slot=menu][aria-expanded]):before{content:"";position:absolute;top:0;right:0;height:calc(100% + 4px);margin-top:-2px;width:2px;border-right:2px solid var(--colour-info);margin-right:-2px}@media(forced-colors: active){::slotted(a[slot=menu][aria-expanded]):before{border-right:10px solid var(--colour-info)}}.main-content{padding-top:1.5rem;padding-left:3.75rem}@media screen and (min-width: 36em){.main-content{padding-left:5rem}}@media screen and (min-width: 62em){.main-content{padding-top:2.5rem !important;padding-left:0}}.main-content>span.h3{padding-top:.75rem;border-bottom:2px solid var(--colour-border);margin-bottom:2.5rem !important}@media screen and (min-width: 62em){.main-content>span.h3{display:none}}::slotted(.main-content__title){border-bottom:2px solid var(--colour-border);margin-bottom:2.5rem !important;max-width:100% !important;display:block}@media screen and (min-width: 62em){.side-menu.open+.main-content{padding-left:18.75rem}::slotted(.main-content__title){display:none}}/*# sourceMappingURL=assets/css/components/collapsible-side.css.map */
@@ -1828,68 +1734,68 @@ class ja extends HTMLElement {
1828
1734
  </div>
1829
1735
 
1830
1736
  </div>
1831
- `, this.shadowRoot.appendChild(o.content.cloneNode(!0));
1737
+ `, this.shadowRoot.appendChild(s.content.cloneNode(!0));
1832
1738
  }
1833
1739
  connectedCallback() {
1834
- const a = this.shadowRoot.querySelector(".side-menu"), e = this.shadowRoot.querySelector(".side-menu-content"), o = this.shadowRoot.querySelector(".main-content"), i = this.shadowRoot.querySelector(".side-menu > .btn");
1835
- this.hasAttribute("data-css") && this.shadowRoot.querySelector(".styles").insertAdjacentHTML("beforeend", `@import "${this.getAttribute("data-css")}";`), this.hasAttribute("data-title") || this.setAttribute("data-title", "configuration"), e.insertAdjacentHTML("afterbegin", `<span class="h3">${this.getAttribute("data-title")}</span>`), o.insertAdjacentHTML("afterbegin", `<span class="h3">${this.getAttribute("data-title")}</span>`), this.querySelector(":scope > :is(h1,h2,h3,h4,h5,h6)") && (this.querySelector(":scope > :is(h1,h2,h3,h4,h5,h6)").classList.add("h4"), this.querySelector(":scope > :is(h1,h2,h3,h4,h5,h6)").classList.add("main-content__title")), i.addEventListener("click", (s) => {
1836
- a.classList.contains("open") ? (a.classList.remove("open"), i.removeAttribute("aria-expanded"), setTimeout(function() {
1740
+ const i = this.shadowRoot.querySelector(".side-menu"), e = this.shadowRoot.querySelector(".side-menu-content"), s = this.shadowRoot.querySelector(".main-content"), o = this.shadowRoot.querySelector(".side-menu > .btn");
1741
+ this.hasAttribute("data-css") && this.shadowRoot.querySelector(".styles").insertAdjacentHTML("beforeend", `@import "${this.getAttribute("data-css")}";`), this.hasAttribute("data-title") || this.setAttribute("data-title", "configuration"), e.insertAdjacentHTML("afterbegin", `<span class="h3">${this.getAttribute("data-title")}</span>`), s.insertAdjacentHTML("afterbegin", `<span class="h3">${this.getAttribute("data-title")}</span>`), this.querySelector(":scope > :is(h1,h2,h3,h4,h5,h6)") && (this.querySelector(":scope > :is(h1,h2,h3,h4,h5,h6)").classList.add("h4"), this.querySelector(":scope > :is(h1,h2,h3,h4,h5,h6)").classList.add("main-content__title")), o.addEventListener("click", (a) => {
1742
+ i.classList.contains("open") ? (i.classList.remove("open"), o.removeAttribute("aria-expanded"), setTimeout(function() {
1837
1743
  e.classList.add("closed");
1838
- }, 1e3), a.classList.add("pe-none"), setTimeout(function() {
1839
- a.classList.remove("pe-none");
1744
+ }, 1e3), i.classList.add("pe-none"), setTimeout(function() {
1745
+ i.classList.remove("pe-none");
1840
1746
  }, 1e3)) : (e.classList.remove("closed"), setTimeout(function() {
1841
- a.classList.add("open"), i.setAttribute("aria-expanded", !0);
1747
+ i.classList.add("open"), o.setAttribute("aria-expanded", !0);
1842
1748
  }, 100));
1843
- }), a.addEventListener("mouseenter", (s) => {
1844
- window.innerWidth > 992 && (a.classList.contains("open") || e.classList.remove("closed"), a.classList.add("hover"));
1845
- }), a.addEventListener("mousemove", (s) => {
1846
- window.innerWidth > 992 && (a.classList.contains("open") || e.classList.remove("closed"));
1847
- }), a.addEventListener("mouseleave", (s) => {
1848
- window.innerWidth > 992 && (a.classList.remove("hover"), a.classList.contains("open") || setTimeout(function() {
1749
+ }), i.addEventListener("mouseenter", (a) => {
1750
+ window.innerWidth > 992 && (i.classList.contains("open") || e.classList.remove("closed"), i.classList.add("hover"));
1751
+ }), i.addEventListener("mousemove", (a) => {
1752
+ window.innerWidth > 992 && (i.classList.contains("open") || e.classList.remove("closed"));
1753
+ }), i.addEventListener("mouseleave", (a) => {
1754
+ window.innerWidth > 992 && (i.classList.remove("hover"), i.classList.contains("open") || setTimeout(function() {
1849
1755
  e.classList.add("closed");
1850
1756
  }, 1e3));
1851
1757
  });
1852
1758
  }
1853
1759
  }
1854
- window.customElements.get("iam-collapsible-side") || window.customElements.define("iam-collapsible-side", ja);
1855
- const Ra = {
1760
+ window.customElements.get("iam-collapsible-side") || window.customElements.define("iam-collapsible-side", Mi);
1761
+ const Ci = {
1856
1762
  name: "CollapsibleSideMenu",
1857
1763
  props: {},
1858
1764
  mounted() {
1859
1765
  }
1860
1766
  };
1861
- function Pa(t, a, e, o, i, s) {
1767
+ function Ni(t, i, e, s, o, a) {
1862
1768
  return r(), l("iam-collapsible-side", null, [
1863
- f(t.$slots, "default")
1769
+ m(t.$slots, "default")
1864
1770
  ]);
1865
1771
  }
1866
- const ds = /* @__PURE__ */ h(Ra, [["render", Pa]]);
1772
+ const oa = /* @__PURE__ */ p(Ci, [["render", Ni]]);
1867
1773
  export {
1868
- Da as Accordion,
1869
- Va as AccordionItem,
1870
- os as Actionbar,
1871
- ls as AddressLookup,
1872
- ss as AppliedFilters,
1873
- Ba as Banner,
1874
- Oa as Card,
1875
- Ua as Carousel,
1876
- ds as CollapsibleSideMenu,
1877
- Ia as FileUpload,
1878
- is as Filterlist,
1879
- Wa as Header,
1880
- P as Input,
1881
- za as Logo,
1882
- Ya as Nav,
1883
- as as NoteFeed,
1884
- ns as Notification,
1885
- rs as Pagination,
1886
- Qa as PropertySearchbar,
1887
- Xa as Snapshot,
1888
- Za as Step,
1889
- Ja as Stepper,
1890
- ts as Tab,
1891
- R as Table,
1892
- es as Tabs,
1893
- Ka as Testimonial,
1894
- Ga as Timeline
1774
+ ji as Accordion,
1775
+ Ii as AccordionItem,
1776
+ aa as Actionbar,
1777
+ sa as AddressLookup,
1778
+ ea as AppliedFilters,
1779
+ Di as Banner,
1780
+ Fi as Card,
1781
+ Vi as Carousel,
1782
+ oa as CollapsibleSideMenu,
1783
+ zi as FileUpload,
1784
+ ta as Filterlist,
1785
+ Bi as Header,
1786
+ R as Input,
1787
+ Pi as Logo,
1788
+ Ki as Nav,
1789
+ Zi as NoteFeed,
1790
+ ia as Notification,
1791
+ na as Pagination,
1792
+ Wi as PropertySearchbar,
1793
+ Qi as Snapshot,
1794
+ Yi as Step,
1795
+ Gi as Stepper,
1796
+ Xi as Tab,
1797
+ N as Table,
1798
+ Ji as Tabs,
1799
+ Ui as Testimonial,
1800
+ Oi as Timeline
1895
1801
  };