@iamproperty/components 2.5.1 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/sass/_corefiles.scss +0 -1
- package/assets/sass/{foundations/fonts.scss → _fonts.scss} +0 -0
- package/assets/sass/_functions/mixins.scss +10 -0
- package/assets/sass/_print.scss +60 -0
- package/assets/sass/components/nav.scss +1 -1
- package/assets/sass/components/stepper.scss +5 -4
- package/assets/sass/core.scss +3 -1
- package/assets/sass/elements/tables.scss +16 -6
- package/assets/sass/elements/type.scss +1 -1
- package/assets/sass/foundations/icons.scss +1 -1
- package/assets/sass/foundations/reboot.scss +4 -0
- package/assets/sass/foundations/root.scss +26 -24
- package/assets/sass/main.scss +2 -0
- package/dist/components.common.js +30 -26
- package/dist/components.common.js.map +1 -1
- package/dist/components.css +1 -1
- package/dist/components.css.map +1 -1
- package/dist/components.umd.js +30 -26
- package/dist/components.umd.js.map +1 -1
- package/dist/components.umd.min.js +1 -1
- package/dist/components.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/Table/README.md +1 -0
- package/src/elements/Table/Table.vue +5 -1
|
File without changes
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {
|
|
2
|
+
$min: breakpoint-min($name, $breakpoints);
|
|
3
|
+
@if $min {
|
|
4
|
+
@media screen and (min-width: $min) {
|
|
5
|
+
@content;
|
|
6
|
+
}
|
|
7
|
+
} @else {
|
|
8
|
+
@content;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
1
11
|
|
|
2
12
|
// Example: @include prefix(transition, transform 1.5s, webkit ms o);
|
|
3
13
|
@mixin prefix($property, $value, $prefixes: (webkit ms o))
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
$printMedia: print!default;
|
|
2
|
+
@media #{$printMedia} {
|
|
3
|
+
:root {
|
|
4
|
+
--content-max-width: 100%;
|
|
5
|
+
}
|
|
6
|
+
html {
|
|
7
|
+
font-size: 11pt;
|
|
8
|
+
padding-left: 10px;
|
|
9
|
+
padding-right: 10px;
|
|
10
|
+
|
|
11
|
+
body {
|
|
12
|
+
background: white;
|
|
13
|
+
height: auto;
|
|
14
|
+
min-height: 100%;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
.container {
|
|
18
|
+
padding-left: 0;
|
|
19
|
+
padding-right: 0;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
}
|
|
22
|
+
.print-header {
|
|
23
|
+
background-image: linear-gradient(45deg, var(--colour-secondary) 0%, transparent 80%) !important;
|
|
24
|
+
}
|
|
25
|
+
p a[href^=http]:after,
|
|
26
|
+
p a[href^=mailto]:after,
|
|
27
|
+
a.youtube-embed:after {
|
|
28
|
+
content: " (" attr(href) ")";
|
|
29
|
+
display: inline!important;
|
|
30
|
+
color: inherit;
|
|
31
|
+
mask: none;
|
|
32
|
+
-webkit-mask: none;
|
|
33
|
+
background: none;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// Nav fixes
|
|
37
|
+
.nav {
|
|
38
|
+
position: relative;
|
|
39
|
+
box-shadow: none!important;
|
|
40
|
+
}
|
|
41
|
+
.nav [class*="col"]:not(.nav__logo){
|
|
42
|
+
display: none;
|
|
43
|
+
}
|
|
44
|
+
nav + main > *:first-child {
|
|
45
|
+
padding-top: 0;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
@media print {
|
|
49
|
+
|
|
50
|
+
html {
|
|
51
|
+
padding: 0;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
tr, img, svg, li {
|
|
55
|
+
break-inside: avoid;
|
|
56
|
+
}
|
|
57
|
+
[class*="bg-"]:not(.print-header) {
|
|
58
|
+
background: none!important;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
display: flex;
|
|
8
8
|
flex-direction: column;
|
|
9
9
|
flex-wrap: nowrap;
|
|
10
|
-
overflow: auto;
|
|
11
10
|
|
|
12
11
|
> .container {
|
|
13
12
|
|
|
@@ -258,6 +257,7 @@ nav + main > *:first-child {
|
|
|
258
257
|
#showMenu:checked ~ .nav__inner {
|
|
259
258
|
|
|
260
259
|
height: 100vh;
|
|
260
|
+
overflow: auto;
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
#showMenu:checked ~ div .nav__menu,
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
background: var(--colour-muted);
|
|
63
63
|
line-height: 1;
|
|
64
64
|
position: relative;
|
|
65
|
+
color: var(--colour-primary);
|
|
65
66
|
|
|
66
67
|
@include media-breakpoint-up(sm) {
|
|
67
68
|
|
|
@@ -121,13 +122,13 @@
|
|
|
121
122
|
}
|
|
122
123
|
|
|
123
124
|
&[href]:hover {
|
|
124
|
-
|
|
125
|
-
color: white;
|
|
125
|
+
opacity: 0.6;
|
|
126
126
|
}
|
|
127
127
|
&[href]:active {
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
|
|
129
|
+
opacity: 0.8;
|
|
130
130
|
}
|
|
131
|
+
|
|
131
132
|
}
|
|
132
133
|
}
|
|
133
134
|
}
|
package/assets/sass/core.scss
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
// #region Default table
|
|
2
2
|
table {
|
|
3
|
+
--border-width: 2px;
|
|
4
|
+
--inner-border-width: 1px;
|
|
3
5
|
width: 100%;
|
|
4
6
|
font-size: rem(16);
|
|
5
7
|
border: none;
|
|
@@ -27,18 +29,18 @@ th {
|
|
|
27
29
|
}
|
|
28
30
|
|
|
29
31
|
tr {
|
|
30
|
-
border-bottom:
|
|
32
|
+
border-bottom: var(--inner-border-width) solid currentColor;
|
|
31
33
|
@include var(border-color,--colour-border);
|
|
32
34
|
|
|
33
35
|
&:last-child {
|
|
34
|
-
border-bottom:
|
|
36
|
+
border-bottom: var(--border-width) solid currentColor;
|
|
35
37
|
@include var(border-color,--colour-border);
|
|
36
38
|
}
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
thead {
|
|
40
42
|
tr:first-child {
|
|
41
|
-
border-top:
|
|
43
|
+
border-top: var(--border-width) solid currentColor;
|
|
42
44
|
@include var(border-color,--colour-border);
|
|
43
45
|
}
|
|
44
46
|
|
|
@@ -50,20 +52,28 @@ thead {
|
|
|
50
52
|
@include media-breakpoint-up(sm) {
|
|
51
53
|
|
|
52
54
|
font-size: rem(18);
|
|
55
|
+
white-space: nowrap;
|
|
53
56
|
}
|
|
54
57
|
|
|
55
58
|
font-weight: bold;
|
|
56
59
|
vertical-align: bottom;
|
|
57
|
-
white-space: nowrap;
|
|
58
60
|
}
|
|
59
61
|
}
|
|
60
62
|
|
|
61
63
|
tbody:first-child{
|
|
62
64
|
tr:first-child {
|
|
63
|
-
border-top:
|
|
65
|
+
border-top: var(--border-width) solid currentColor;
|
|
64
66
|
@include var(border-color,--colour-border);
|
|
65
67
|
}
|
|
66
68
|
}
|
|
69
|
+
|
|
70
|
+
.table__wrapper.border-0 table,
|
|
71
|
+
table.border-0 {
|
|
72
|
+
|
|
73
|
+
--border-width: 0px;
|
|
74
|
+
--inner-border-width: 0px;
|
|
75
|
+
}
|
|
76
|
+
|
|
67
77
|
// #endregion
|
|
68
78
|
|
|
69
79
|
// #region Table wrapper - Add via JS if needed, provides a safe space to scroll
|
|
@@ -85,7 +95,7 @@ tbody:first-child{
|
|
|
85
95
|
// #endregion
|
|
86
96
|
|
|
87
97
|
// #region Tables are only stacked on mobile
|
|
88
|
-
@media (max-width: 36em) {
|
|
98
|
+
@media screen and (max-width: 36em) {
|
|
89
99
|
.table__wrapper:not(.table-fullwidth) {
|
|
90
100
|
thead {
|
|
91
101
|
display: none;
|
|
@@ -14,32 +14,34 @@
|
|
|
14
14
|
--colour-heading: var(--colour-primary);
|
|
15
15
|
--alpha: var(--bs-bg-opacity);
|
|
16
16
|
--#{$variable-prefix}gradient: #{$gradient};
|
|
17
|
+
--content-max-width: #{$content-max-width};
|
|
17
18
|
}
|
|
18
19
|
|
|
20
|
+
@media screen {
|
|
21
|
+
/* Override the colours when on a drark background */
|
|
22
|
+
.bg-primary:not(.prevent-invert),
|
|
23
|
+
.bg-dark:not(.prevent-invert),
|
|
24
|
+
.bg-danger:not(.prevent-invert),
|
|
25
|
+
.invert-colours {
|
|
26
|
+
> * {
|
|
19
27
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
--colour-
|
|
28
|
-
--colour-
|
|
29
|
-
--colour-
|
|
30
|
-
--colour-
|
|
28
|
+
--colour-secondary-rgb: 255,255,255;
|
|
29
|
+
--colour-primary-rgb: 255,255,255;
|
|
30
|
+
--colour-secondary: white;
|
|
31
|
+
--colour-primary: white;
|
|
32
|
+
}
|
|
33
|
+
--colour-body: white;
|
|
34
|
+
--colour-link: white;
|
|
35
|
+
--colour-hover: white;
|
|
36
|
+
--colour-active: white;
|
|
37
|
+
--colour-heading: white;
|
|
38
|
+
--colour-underline: white;
|
|
39
|
+
--colour-border: white;
|
|
40
|
+
color: white;
|
|
31
41
|
}
|
|
32
|
-
--colour-body: white;
|
|
33
|
-
--colour-link: white;
|
|
34
|
-
--colour-hover: white;
|
|
35
|
-
--colour-active: white;
|
|
36
|
-
--colour-heading: white;
|
|
37
|
-
--colour-underline: white;
|
|
38
|
-
--colour-border: white;
|
|
39
|
-
color: white;
|
|
40
|
-
}
|
|
41
42
|
|
|
42
|
-
.bg-light:not(.prevent-invert) {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
43
|
+
.bg-light:not(.prevent-invert) {
|
|
44
|
+
--colour-heading: var(--colour-dark);
|
|
45
|
+
color: var(--colour-dark);
|
|
46
|
+
}
|
|
47
|
+
}
|
package/assets/sass/main.scss
CHANGED
|
@@ -482,7 +482,7 @@ if (typeof window !== 'undefined') {
|
|
|
482
482
|
// Indicate to webpack that this file can be concatenated
|
|
483
483
|
/* harmony default export */ var setPublicPath = (null);
|
|
484
484
|
|
|
485
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
485
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/foundations/Icon/Icon.vue?vue&type=template&id=07b8ef30&
|
|
486
486
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"icon"},[_c('title',[_vm._v(_vm._s(_vm.id))]),_c('use',{attrs:{"xlink:href":'#icon-'+_vm.id}})])}
|
|
487
487
|
var staticRenderFns = []
|
|
488
488
|
|
|
@@ -629,7 +629,7 @@ var component = normalizeComponent(
|
|
|
629
629
|
)
|
|
630
630
|
|
|
631
631
|
/* harmony default export */ var Icon = (component.exports);
|
|
632
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
632
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/foundations/Logo/Logo.vue?vue&type=template&id=098e33a5&
|
|
633
633
|
var Logovue_type_template_id_098e33a5_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:_vm.className},[_c('svg',[_c('title',[_vm._v("iam "+_vm._s(_vm.id))]),_c('use',{attrs:{"xlink:href":_vm.path+_vm.src}})]),(_vm.desc)?_c('span',{domProps:{"innerHTML":_vm._s(_vm.desc)}}):_vm._e()])}
|
|
634
634
|
var Logovue_type_template_id_098e33a5_staticRenderFns = []
|
|
635
635
|
|
|
@@ -696,16 +696,16 @@ var Logo_component = normalizeComponent(
|
|
|
696
696
|
)
|
|
697
697
|
|
|
698
698
|
/* harmony default export */ var Logo = (Logo_component.exports);
|
|
699
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
700
|
-
var
|
|
699
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/elements/Table/Table.vue?vue&type=template&id=4b6328a7&
|
|
700
|
+
var Tablevue_type_template_id_4b6328a7_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrapper",staticClass:"table__wrapper",attrs:{"data-sortby":_vm.sortby,"data-sort":_vm.sort,"data-show":_vm.show,"data-page":_vm.page,"data-reorder":_vm.reorder}},[_c('table',[(_vm.fields)?_c('thead',[_c('tr',{class:_vm.headingclass},_vm._l((_vm.fields),function(field){return _c('th',{key:field.key,attrs:{"data-sortable":field.sortable,"data-filterable":field.filterable}},[_vm._v(_vm._s(_vm.cellHeading(field.key)))])}),0)]):_vm._e(),(_vm.items)?_c('tbody',_vm._l((_vm.items),function(value,index){return _c('tr',{key:index,attrs:{"data-row-id":value['rowid']}},_vm._l((Object.fromEntries(Object.entries(value).filter(function (ref) {
|
|
701
701
|
var key = ref[0];
|
|
702
702
|
|
|
703
703
|
return key !== 'rowid';
|
|
704
704
|
}))),function(cellValue,cellIndex){return _c('td',{key:cellIndex,attrs:{"data-label":_vm.cellHeading(cellIndex),"data-numeric":_vm.numericValue(cellValue)},domProps:{"innerHTML":_vm._s(cellValue)}})}),0)}),0):_vm._e()]),_vm._t("default")],2)}
|
|
705
|
-
var
|
|
705
|
+
var Tablevue_type_template_id_4b6328a7_staticRenderFns = []
|
|
706
706
|
|
|
707
707
|
|
|
708
|
-
// CONCATENATED MODULE: ./src/elements/Table/Table.vue?vue&type=template&id=
|
|
708
|
+
// CONCATENATED MODULE: ./src/elements/Table/Table.vue?vue&type=template&id=4b6328a7&
|
|
709
709
|
|
|
710
710
|
// CONCATENATED MODULE: ./src/helpers/strings.js
|
|
711
711
|
var ucfirst = str => str.charAt(0).toUpperCase() + str.slice(1);
|
|
@@ -1263,6 +1263,10 @@ function table(tableElement) {
|
|
|
1263
1263
|
type: String,
|
|
1264
1264
|
required: false
|
|
1265
1265
|
},
|
|
1266
|
+
headingclass: {
|
|
1267
|
+
type: String,
|
|
1268
|
+
required: false
|
|
1269
|
+
},
|
|
1266
1270
|
items: {
|
|
1267
1271
|
type: Array,
|
|
1268
1272
|
required: true
|
|
@@ -1335,8 +1339,8 @@ function table(tableElement) {
|
|
|
1335
1339
|
|
|
1336
1340
|
var Table_component = normalizeComponent(
|
|
1337
1341
|
Table_Tablevue_type_script_lang_js_,
|
|
1338
|
-
|
|
1339
|
-
|
|
1342
|
+
Tablevue_type_template_id_4b6328a7_render,
|
|
1343
|
+
Tablevue_type_template_id_4b6328a7_staticRenderFns,
|
|
1340
1344
|
false,
|
|
1341
1345
|
null,
|
|
1342
1346
|
null,
|
|
@@ -1345,7 +1349,7 @@ var Table_component = normalizeComponent(
|
|
|
1345
1349
|
)
|
|
1346
1350
|
|
|
1347
1351
|
/* harmony default export */ var Table = (Table_component.exports);
|
|
1348
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1352
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/elements/Input/Input.vue?vue&type=template&id=fcd5c080&
|
|
1349
1353
|
var Inputvue_type_template_id_fcd5c080_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrapper",class:_vm.wrapperClass()},[(_vm.needsLabel())?_c('label',{class:("form-label" + (_vm.labelclass?(" " + _vm.labelclass):'')),attrs:{"for":_vm.id},domProps:{"innerHTML":_vm._s(_vm.displayLabel())}}):_vm._e(),((_vm.type)==='checkbox'&&(_vm.isInput()))?_c('input',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-control" + (_vm.size?(" form-control-" + _vm.size):"") + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern(),"list":_vm.hasOptions(),"type":"checkbox"},domProps:{"checked":Array.isArray(_vm.inputVal)?_vm._i(_vm.inputVal,null)>-1:(_vm.inputVal)},on:{"keyup":_vm.inputKeyup,"change":function($event){var $$a=_vm.inputVal,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.inputVal=$$a.concat([$$v]))}else{$$i>-1&&(_vm.inputVal=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.inputVal=$$c}}}},'input',_vm.$attrs,false)):((_vm.type)==='radio'&&(_vm.isInput()))?_c('input',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-control" + (_vm.size?(" form-control-" + _vm.size):"") + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern(),"list":_vm.hasOptions(),"type":"radio"},domProps:{"checked":_vm._q(_vm.inputVal,null)},on:{"keyup":_vm.inputKeyup,"change":function($event){_vm.inputVal=null}}},'input',_vm.$attrs,false)):(_vm.isInput())?_c('input',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-control" + (_vm.size?(" form-control-" + _vm.size):"") + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern(),"list":_vm.hasOptions(),"type":_vm.type},domProps:{"value":(_vm.inputVal)},on:{"keyup":_vm.inputKeyup,"input":function($event){if($event.target.composing){ return; }_vm.inputVal=$event.target.value}}},'input',_vm.$attrs,false)):_vm._e(),(_vm.type=='textarea')?_c('textarea',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-control" + (_vm.size?(" form-control-" + _vm.size):"") + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"type":_vm.type,"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern()},domProps:{"value":(_vm.inputVal)},on:{"input":function($event){if($event.target.composing){ return; }_vm.inputVal=$event.target.value}}},'textarea',_vm.$attrs,false)):_vm._e(),(_vm.type=='range')?_c('div',{staticClass:"input-group"},[((_vm.type)==='checkbox')?_c('input',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-range" + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern(),"list":_vm.hasOptions(),"oninput":"this.nextElementSibling.value=this.value;","type":"checkbox"},domProps:{"checked":Array.isArray(_vm.inputVal)?_vm._i(_vm.inputVal,null)>-1:(_vm.inputVal)},on:{"change":function($event){var $$a=_vm.inputVal,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.inputVal=$$a.concat([$$v]))}else{$$i>-1&&(_vm.inputVal=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.inputVal=$$c}}}},'input',_vm.$attrs,false)):((_vm.type)==='radio')?_c('input',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-range" + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern(),"list":_vm.hasOptions(),"oninput":"this.nextElementSibling.value=this.value;","type":"radio"},domProps:{"checked":_vm._q(_vm.inputVal,null)},on:{"change":function($event){_vm.inputVal=null}}},'input',_vm.$attrs,false)):_c('input',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-range" + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern(),"list":_vm.hasOptions(),"oninput":"this.nextElementSibling.value=this.value;","type":_vm.type},domProps:{"value":(_vm.inputVal)},on:{"input":function($event){if($event.target.composing){ return; }_vm.inputVal=$event.target.value}}},'input',_vm.$attrs,false)),_c('output',{staticClass:"input-group-text border-0 col-2 col-sm-1 px-0"},[_vm._v(_vm._s(_vm.value))])]):_vm._e(),(_vm.type=='color')?_c('div',{staticClass:"input-group"},[((_vm.type)==='checkbox')?_c('input',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-control form-control-color" + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern(),"list":_vm.hasOptions(),"oninput":"this.nextElementSibling.value=this.value;","type":"checkbox"},domProps:{"checked":Array.isArray(_vm.inputVal)?_vm._i(_vm.inputVal,null)>-1:(_vm.inputVal)},on:{"change":function($event){var $$a=_vm.inputVal,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=null,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.inputVal=$$a.concat([$$v]))}else{$$i>-1&&(_vm.inputVal=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.inputVal=$$c}}}},'input',_vm.$attrs,false)):((_vm.type)==='radio')?_c('input',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-control form-control-color" + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern(),"list":_vm.hasOptions(),"oninput":"this.nextElementSibling.value=this.value;","type":"radio"},domProps:{"checked":_vm._q(_vm.inputVal,null)},on:{"change":function($event){_vm.inputVal=null}}},'input',_vm.$attrs,false)):_c('input',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-control form-control-color" + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"name":_vm.name?_vm.name:_vm.id,"id":_vm.id,"pattern":_vm.needPattern(),"list":_vm.hasOptions(),"oninput":"this.nextElementSibling.value=this.value;","type":_vm.type},domProps:{"value":(_vm.inputVal)},on:{"input":function($event){if($event.target.composing){ return; }_vm.inputVal=$event.target.value}}},'input',_vm.$attrs,false)),_c('output',{staticClass:"input-group-text flex-fill"},[_vm._v(_vm._s(_vm.value?_vm.vale:'#000000'))])]):_vm._e(),(_vm.type=='select')?_c('select',_vm._b({directives:[{name:"model",rawName:"v-model",value:(_vm.inputVal),expression:"inputVal"}],class:("form-select" + (_vm.size?(" form-select-" + _vm.size):"") + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"type":_vm.type,"name":_vm.id,"id":_vm.id,"pattern":_vm.needPattern()},on:{"change":function($event){var $$selectedVal = Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return val}); _vm.inputVal=$event.target.multiple ? $$selectedVal : $$selectedVal[0]}}},'select',_vm.$attrs,false),_vm._l((_vm.options),function(value,index){return _c('option',{key:index,domProps:{"value":value.value}},[_vm._v(_vm._s(value.display ? value.display : value.value))])}),0):_vm._e(),(_vm.allowDatalist())?_c('datalist',{attrs:{"id":_vm.id+'-list'}},_vm._l((_vm.options),function(value,index){return _c('option',{key:index,domProps:{"value":value.value}},[_vm._v(_vm._s(value.value))])}),0):_vm._e(),(_vm.type=='checkbox'||_vm.type=='radio')?_c('input',_vm._b({staticClass:"form-check-input",attrs:{"type":_vm.type,"name":_vm.name?_vm.name:_vm.id,"id":_vm.id}},'input',_vm.$attrs,false)):_vm._e(),(_vm.type=='checkbox'||_vm.type=='radio')?_c('label',{class:("form-label form-check-label" + (_vm.labelclass?(" " + _vm.labelclass):'')),attrs:{"for":_vm.id},domProps:{"innerHTML":_vm._s(_vm.label)}}):_vm._e(),(_vm.type=='checkbox-btn'||_vm.type=='radio-btn')?_c('input',_vm._b({class:("btn-check" + (_vm.inputclass?(" " + _vm.inputclass):"")),attrs:{"type":_vm.type.replace('-btn',''),"autocomplete":"off","name":_vm.name?_vm.name:_vm.id,"id":_vm.id}},'input',_vm.$attrs,false)):_vm._e(),(_vm.type=='checkbox-btn'||_vm.type=='radio-btn')?_c('label',{class:("btn" + (_vm.labelclass?(" " + _vm.labelclass):'')),attrs:{"for":_vm.id},domProps:{"innerHTML":_vm._s(_vm.label)},on:{"click":_vm.clickEvent}}):_vm._e(),(_vm.errormsg)?_c('p',{staticClass:"invalid-feedback mb-0",domProps:{"innerHTML":_vm._s(_vm.errormsg)}}):_vm._e(),_vm._t("default")],2)}
|
|
1350
1354
|
var Inputvue_type_template_id_fcd5c080_staticRenderFns = []
|
|
1351
1355
|
|
|
@@ -1616,7 +1620,7 @@ var Input_component = normalizeComponent(
|
|
|
1616
1620
|
)
|
|
1617
1621
|
|
|
1618
1622
|
/* harmony default export */ var Input = (Input_component.exports);
|
|
1619
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1623
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Accordion/Accordion.vue?vue&type=template&id=5b142733&
|
|
1620
1624
|
var Accordionvue_type_template_id_5b142733_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrapper",staticClass:"container accordion"},[_vm._t("default")],2)}
|
|
1621
1625
|
var Accordionvue_type_template_id_5b142733_staticRenderFns = []
|
|
1622
1626
|
|
|
@@ -1705,7 +1709,7 @@ var Accordion_component = normalizeComponent(
|
|
|
1705
1709
|
)
|
|
1706
1710
|
|
|
1707
1711
|
/* harmony default export */ var Accordion = (Accordion_component.exports);
|
|
1708
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1712
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Accordion/AccordionItem.vue?vue&type=template&id=b754197e&
|
|
1709
1713
|
var AccordionItemvue_type_template_id_b754197e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('details',{staticClass:"accordion-item",attrs:{"id":_vm.createID(_vm.title)}},[_c('summary',{class:("" + (_vm.titlecolour?("bg-" + _vm.titlecolour):'')),on:{"click":function($event){_vm.show = true}}},[_c('span',{staticClass:"accordion-header accordion-button h4"},[_vm._v(_vm._s(_vm.title)),(_vm.badge)?_c('span',{class:("badge bg-" + _vm.badgecolour)},[_vm._v(_vm._s(_vm.badge))]):_vm._e()])]),(_vm.show)?_c('div',{staticClass:"accordion-body"},[_vm._t("default")],2):_vm._e()])}
|
|
1710
1714
|
var AccordionItemvue_type_template_id_b754197e_staticRenderFns = []
|
|
1711
1715
|
|
|
@@ -1787,7 +1791,7 @@ var AccordionItem_component = normalizeComponent(
|
|
|
1787
1791
|
)
|
|
1788
1792
|
|
|
1789
1793
|
/* harmony default export */ var AccordionItem = (AccordionItem_component.exports);
|
|
1790
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1794
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Banner/Banner.vue?vue&type=template&id=1acf827a&
|
|
1791
1795
|
var Bannervue_type_template_id_1acf827a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"container"},[_c('div',{class:'bg-'+_vm.background+' mb-4'},[_c('div',{staticClass:"row"},[_c('div',{staticClass:"col-sm-6"},[_c('div',{staticClass:"pt-5 pb-3 px-4"},[_c('h2',[_vm._v(_vm._s(_vm.title))]),_vm._t("default")],2)]),_c('div',{staticClass:"col-sm-6 col-md-5 ms-auto"},[(_vm.image)?_c('img',{staticClass:"h-100 w-100 object-cover",attrs:{"src":_vm.image,"alt":""}}):_vm._e()])])])])}
|
|
1792
1796
|
var Bannervue_type_template_id_1acf827a_staticRenderFns = []
|
|
1793
1797
|
|
|
@@ -1853,7 +1857,7 @@ var Banner_component = normalizeComponent(
|
|
|
1853
1857
|
)
|
|
1854
1858
|
|
|
1855
1859
|
/* harmony default export */ var Banner = (Banner_component.exports);
|
|
1856
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1860
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Card/Card.vue?vue&type=template&id=49ed1e80&
|
|
1857
1861
|
var Cardvue_type_template_id_49ed1e80_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',{class:'card'+(_vm.type?' card--'+_vm.type:''),attrs:{"href":_vm.link,"title":'Find out more: '+_vm.title+(_vm.subtitle ? ' - '+_vm.subtitle:'')}},[(_vm.image)?_c('div',{staticClass:"card-header__wrapper"},[_c('img',{staticClass:"card-image",attrs:{"src":_vm.image,"alt":"","loading":"lazy"}}),_c('div',{staticClass:"card-header"},[(this.details && this.details.status)?_c('span',{staticClass:"badge bg-primary p-2 me-2",domProps:{"innerHTML":_vm._s(_vm.cardStatus())}}):_vm._e(),(this.details && (this.details.images || this.details.videos))?_c('span',{staticClass:"badge bg-black bg-opacity-50 p-2 align-self-end",domProps:{"innerHTML":_vm._s(_vm.cardMedia())}}):_vm._e()]),(_vm.details && _vm.details.logo)?_c('img',{staticClass:"card-logo",attrs:{"src":_vm.details.logo,"alt":"","loading":"lazy"}}):_vm._e()]):_vm._e(),_c('div',{staticClass:"card-body",domProps:{"innerHTML":_vm._s(_vm.cardContent())}}),(_vm.hidectatext == false)?_c('div',{staticClass:"card-footer"},[_c('span',{class:((_vm.btntype == 'link' ? "link" : ("btn btn-" + _vm.btntype)) + " mb-0")},[_vm._v(_vm._s(_vm.ctatext)),_c('span',{staticClass:"visually-hidden"},[_vm._v(" about "+_vm._s(_vm.title))])])]):_vm._e()])}
|
|
1858
1862
|
var Cardvue_type_template_id_49ed1e80_staticRenderFns = []
|
|
1859
1863
|
|
|
@@ -1999,7 +2003,7 @@ var Card_component = normalizeComponent(
|
|
|
1999
2003
|
)
|
|
2000
2004
|
|
|
2001
2005
|
/* harmony default export */ var Card = (Card_component.exports);
|
|
2002
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2006
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/CardDeck/CardDeck.vue?vue&type=template&id=029dbbea&
|
|
2003
2007
|
var CardDeckvue_type_template_id_029dbbea_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"container card-deck prevent-invert",attrs:{"data-card-type":_vm.cardtype}},[_vm._t("default"),_c('div',{class:("row row-cols-" + _vm.cols + " row-cols-sm-" + _vm.smcols + " row-cols-md-" + _vm.mdcols + " " + (_vm.gap ? ("g-" + _vm.gap): ""))},_vm._l((_vm.items),function(value,index){return _c('div',{key:index,staticClass:"col"},[_c('Card',_vm._b({class:_vm.cardclass,attrs:{"type":_vm.cardtype,"btntype":_vm.btntype,"titleclass":_vm.titleclass,"ctatext":_vm.ctatext,"hidectatext":_vm.hidectatext}},'Card',value,false))],1)}),0),_vm._t("after")],2)}
|
|
2004
2008
|
var CardDeckvue_type_template_id_029dbbea_staticRenderFns = []
|
|
2005
2009
|
|
|
@@ -2108,7 +2112,7 @@ var CardDeck_component = normalizeComponent(
|
|
|
2108
2112
|
)
|
|
2109
2113
|
|
|
2110
2114
|
/* harmony default export */ var CardDeck = (CardDeck_component.exports);
|
|
2111
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2115
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Carousel/Carousel.vue?vue&type=template&id=00e67f83&
|
|
2112
2116
|
var Carouselvue_type_template_id_00e67f83_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrapper",staticClass:"container carousel",attrs:{"id":'carousel'+_vm.id,"data-cols":_vm.cols,"data-sm-cols":_vm.smcols,"data-md-cols":_vm.mdcols}},[_vm._t("default"),_c('div',{staticClass:"carousel__wrapper"},[_c('div',{staticClass:"carousel__inner"},[(_vm.type == 'card')?_c('div',{class:("row row-cols-" + _vm.cols + " row-cols-sm-" + _vm.smcols + " row-cols-md-" + _vm.mdcols + " " + (_vm.gap ? ("g-" + _vm.gap): ""))},_vm._l((_vm.items),function(value,index){return _c('div',{key:index,class:("col carousel__item" + (_vm.colclass?(" " + _vm.colclass):'')),attrs:{"id":'carousel'+_vm.id+'slide'+(index+1)}},[_c('Card',_vm._b({class:_vm.cardclass,attrs:{"type":_vm.cardtype,"btnyype":_vm.btntype,"titleclass":_vm.titleclass,"ctatext":_vm.ctatext,"hidectatext":_vm.hidectatext}},'Card',value,false))],1)}),0):_vm._e(),(_vm.type != 'card')?_c('div',{class:("row row-cols-" + _vm.cols + " row-cols-sm-" + _vm.smcols + " row-cols-md-" + _vm.mdcols + " " + (_vm.gap ? ("g-" + _vm.gap): ""))},_vm._l((_vm.items),function(value,index){return _c('div',{key:index,class:("col carousel__item" + (_vm.colclass?(" " + _vm.colclass):'')),attrs:{"id":'carousel'+_vm.id+'slide'+(index+1)},domProps:{"innerHTML":_vm._s(_vm.content(value))}})}),0):_vm._e()]),_c('div',{class:("carousel__controls cols-" + _vm.cols + " cols-sm-" + _vm.smcols + " cols-md-" + _vm.mdcols)},_vm._l((_vm.items),function(value,index){return _c('a',{key:index,class:("control-" + (index+1)),attrs:{"href":'\#carousel'+_vm.id+'slide'+(index+1)}},[_vm._v("Slide "+_vm._s(index+1))])}),0),_c('button',{staticClass:"btn btn-prev",attrs:{"data-go":"0","disabled":""}},[_vm._v("Prev")]),_c('button',{staticClass:"btn btn-next",attrs:{"data-go":"2"}},[_vm._v("Next")])])],2)}
|
|
2113
2117
|
var Carouselvue_type_template_id_00e67f83_staticRenderFns = []
|
|
2114
2118
|
|
|
@@ -2302,7 +2306,7 @@ var Carousel_component = normalizeComponent(
|
|
|
2302
2306
|
)
|
|
2303
2307
|
|
|
2304
2308
|
/* harmony default export */ var Carousel = (Carousel_component.exports);
|
|
2305
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2309
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Header/Header.vue?vue&type=template&id=f4b601fa&
|
|
2306
2310
|
var Headervue_type_template_id_f4b601fa_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('header',{staticClass:"header-banner"},[_c('div',{staticClass:"container"},[_vm._t("breadcrumb"),_c('div',{staticClass:"header-banner__inner"},[_c('h1',{domProps:{"innerHTML":_vm._s(_vm.title)}}),_vm._t("default")],2)],2),(_vm.image)?_c('picture',[_c('source',{attrs:{"srcset":_vm.image,"media":"(min-width: 62em)"}}),_c('img',{attrs:{"src":"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7","alt":""}})]):_vm._e()])}
|
|
2307
2311
|
var Headervue_type_template_id_f4b601fa_staticRenderFns = []
|
|
2308
2312
|
|
|
@@ -2373,7 +2377,7 @@ var Header_component = normalizeComponent(
|
|
|
2373
2377
|
)
|
|
2374
2378
|
|
|
2375
2379
|
/* harmony default export */ var Header = (Header_component.exports);
|
|
2376
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2380
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Testimonial/Testimonial.vue?vue&type=template&id=4e1deff8&
|
|
2377
2381
|
var Testimonialvue_type_template_id_4e1deff8_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrapper",staticClass:"container testimonial mb-5",attrs:{"data-show":"1"}},[_c('div',{class:'bg-'+_vm.background},[_c('div',{staticClass:"row"},[_c('div',{staticClass:"col-md-5 position-relative"},[_c('div',{staticClass:"testimonial__images"},_vm._l((_vm.items),function(value,index){return _c('img',{key:index,class:'h-100 w-100 object-cover' + (value.image ? '' : ' opacity-0'),attrs:{"src":value.image ? value.image : 'data:image/gif;base64,R0lGODlhAQABAIAAAHd3dwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==',"alt":""}})}),0),_vm._m(0)]),_c('div',{staticClass:"col-md-7"},[_c('h2',[_vm._v("What our customers think…")]),_c('div',{staticClass:"testimonial__content"},_vm._l((_vm.items),function(value,index){return _c('blockquote',{key:index,class:value.class},[_c('div',{domProps:{"innerHTML":_vm._s(value.quote)}}),_c('cite',{domProps:{"innerHTML":_vm._s(value.cite)}})])}),0),_c('div',{staticClass:"testimonial__after"},[_vm._t("default")],2)])]),_c('span',{staticClass:"circle circle--dots d-none d-md-block"})])])}
|
|
2378
2382
|
var Testimonialvue_type_template_id_4e1deff8_staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"testimonial__controls"},[_c('button',{staticClass:"btn-prev",attrs:{"data-go":"0","disabled":""}},[_vm._v("Previous")]),_c('button',{staticClass:"btn-next",attrs:{"data-go":"2"}},[_vm._v("Next")])])}]
|
|
2379
2383
|
|
|
@@ -2524,7 +2528,7 @@ var Testimonial_component = normalizeComponent(
|
|
|
2524
2528
|
)
|
|
2525
2529
|
|
|
2526
2530
|
/* harmony default export */ var Testimonial = (Testimonial_component.exports);
|
|
2527
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2531
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/PropertySearchbar/PropertySearchbar.vue?vue&type=template&id=57288694&
|
|
2528
2532
|
var PropertySearchbarvue_type_template_id_57288694_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrapper",staticClass:"container"},[_vm._t("default"),_c('div',{staticClass:"property-searchbar"},[_c('form',{staticClass:"row",attrs:{"action":_vm.formaction,"method":_vm.formmethod}},[_c('fieldset',{staticClass:"col-12 col-md-3"},[_c('Input',{ref:"search",attrs:{"inputClass":"input--locations","label":"Location","id":"location","options":_vm.locationsList(),"required":"","placeholder":"i.e. Newcastle or NE1"},on:{"keyupEvent":function($event){return _vm.locationKeyup.apply(void 0, arguments)}},model:{value:(_vm.locationSet),callback:function ($$v) {_vm.locationSet=$$v},expression:"locationSet"}}),_c('Input',{staticClass:"select--miles",attrs:{"label":"Miles","id":"miles","type":"select","options":_vm.distances}})],1),_c('fieldset',{staticClass:"col-12 col-md"},[_c('span',{staticClass:"form-label d-none d-md-block"},[_vm._v("Price range")]),_c('div',{staticClass:"row",attrs:{"data-input-range":""}},[_c('Input',{staticClass:"col-6",attrs:{"label":"Minimum price","id":"price-min","data-min":"true","type":"select","options":_vm.pricemin}}),_c('Input',{staticClass:"col-6",attrs:{"label":"Maximum price","id":"price-max","data-max":"true","type":"select","options":_vm.pricemax}})],1)]),_c('fieldset',{staticClass:"col-12 col-md"},[_c('span',{staticClass:"form-label d-none d-md-block"},[_vm._v("Number of beds")]),_c('div',{staticClass:"row",attrs:{"data-input-range":""}},[_c('Input',{staticClass:"col-6",attrs:{"label":"Minimum beds","id":"beds-min","data-min":"true","type":"select","options":_vm.bedsmin}}),_c('Input',{staticClass:"col-6",attrs:{"label":"Maximum beds","id":"beds-max","data-max":"true","type":"select","options":_vm.bedsmax}})],1)]),_c('fieldset',{staticClass:"col-12 col-md-2"},[_c('Input',{attrs:{"label":"Property type","id":"property-type","type":"select","options":_vm.propertytypes}})],1),_vm._m(0)])]),_vm._t("after")],2)}
|
|
2529
2533
|
var PropertySearchbarvue_type_template_id_57288694_staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"col-12 col-md mw-md-fit-content d-flex property-searchbar__btn"},[_c('button',{staticClass:"btn w-100 me-0",attrs:{"type":"submit","value":"submit"}},[_vm._v("Search")])])}]
|
|
2530
2534
|
|
|
@@ -2867,7 +2871,7 @@ var PropertySearchbar_component = normalizeComponent(
|
|
|
2867
2871
|
)
|
|
2868
2872
|
|
|
2869
2873
|
/* harmony default export */ var PropertySearchbar = (PropertySearchbar_component.exports);
|
|
2870
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2874
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Nav/Nav.vue?vue&type=template&id=098b2178&
|
|
2871
2875
|
var Navvue_type_template_id_098b2178_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{ref:"wrapper",class:("nav" + (_vm.hasSecondarySlot?" has-secondary":''))},[_c('input',{staticClass:"d-none",attrs:{"type":"checkbox","name":"showMenu","id":"showMenu"}}),_c('input',{staticClass:"d-none",attrs:{"type":"checkbox","name":"showSearch","id":"showSearch"}}),_c('div',{staticClass:"nav__inner"},[_c('div',{staticClass:"container"},[_c('div',{staticClass:"row"},[_c('div',{staticClass:"col mw-md-fit-content nav__logo"},[_c('a',{staticClass:"text-decoration-none mb-0",attrs:{"href":"/"}},[_c('Logo',{staticClass:"pb-0",attrs:{"id":_vm.logo,"path":_vm.logopath,"desc":_vm.logotext}})],1)]),(_vm.hasSearchSlot)?_c('div',{staticClass:"col mw-fit-content nav__search-btn flex-row align-items-center"},[_c('label',{attrs:{"for":"showSearch"}},[_c('svg',{staticClass:"icon",attrs:{"viewBox":"0 0 32 32"}},[_c('title',[_vm._v("Search")]),_c('ellipse',{staticClass:"icon__outline",attrs:{"cx":"14.92","cy":"13.81","rx":"11.92","ry":"11.81"}}),_c('line',{staticClass:"icon__outline",attrs:{"x1":"22.68","y1":"22.75","x2":"30","y2":"30"}})])])]):_vm._e(),_vm._m(0),_c('div',{staticClass:"col-12 col-md nav__menu ms-auto flex-row align-items-center"},[_vm._t("default")],2),(_vm.btnlink)?_c('div',{staticClass:"col-12 col-md nav__btn mw-md-fit-content flex-row align-items-center"},[_c('a',{staticClass:"btn me-0",attrs:{"href":_vm.btnlink},domProps:{"innerHTML":_vm._s(_vm.btntext)}})]):_vm._e()])]),(_vm.hasSecondarySlot)?_c('div',{staticClass:"nav__menu--secondary bg-primary"},[_c('div',{staticClass:"container"},[_vm._t("secondary")],2)]):_vm._e(),(_vm.hasSearchSlot)?_c('div',{staticClass:"nav__menu--search"},[_c('div',{staticClass:"bg-gradient pt-4"},[_c('div',{staticClass:"container"},[_vm._t("search")],2)])]):_vm._e()])])}
|
|
2872
2876
|
var Navvue_type_template_id_098b2178_staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"col mw-fit-content d-md-none flex-row align-items-center nav__menu-btn"},[_c('label',{attrs:{"for":"showMenu"}},[_vm._v("Menu")])])}]
|
|
2873
2877
|
|
|
@@ -3052,7 +3056,7 @@ var Nav_component = normalizeComponent(
|
|
|
3052
3056
|
)
|
|
3053
3057
|
|
|
3054
3058
|
/* harmony default export */ var Nav = (Nav_component.exports);
|
|
3055
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3059
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Drawer/Drawer.vue?vue&type=template&id=a910a282&
|
|
3056
3060
|
var Drawervue_type_template_id_a910a282_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrapper"},[_c('input',{staticClass:"d-none",attrs:{"type":"checkbox","name":"showDrawer","id":"showDrawer"}}),_c('div',{staticClass:"drawer__btn pb-0"},[_c('div',{staticClass:"container text-end pb-0"},[_c('label',{staticClass:"btn btn-secondary me-0",attrs:{"for":"showDrawer"}},[_vm._v(_vm._s(_vm.label))])])]),_c('div',{ref:"drawer",staticClass:"drawer",attrs:{"id":"drawer"}},[_vm._m(0),_vm._t("default")],2),_c('hr',{attrs:{"id":"drawer-end"}})])}
|
|
3057
3061
|
var Drawervue_type_template_id_a910a282_staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"container text-end pb-0"},[_c('label',{staticClass:"btn btn-tertiary mb-0 me-0 py-1 px-2",attrs:{"for":"showDrawer"}},[_c('span',{staticClass:"visually-hidden"},[_vm._v("Close")]),_vm._v("✕")])])}]
|
|
3058
3062
|
|
|
@@ -3148,7 +3152,7 @@ var Drawer_component = normalizeComponent(
|
|
|
3148
3152
|
)
|
|
3149
3153
|
|
|
3150
3154
|
/* harmony default export */ var Drawer = (Drawer_component.exports);
|
|
3151
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3155
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Modal/Modal.vue?vue&type=template&id=2443604a&
|
|
3152
3156
|
var Modalvue_type_template_id_2443604a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"modal",staticClass:"modal",attrs:{"id":_vm.id,"role":"dialog","modal":"true"}},[_c('a',{attrs:{"href":("#" + (_vm.returnid?_vm.returnid:'')),"tabindex":"-1"}},[_c('span',{staticClass:"visually-hidden"},[_vm._v("Close")])]),_c('div',{staticClass:"modal__outer"},[_c('a',{staticClass:"btn btn-tertiary py-1 px-2",attrs:{"href":("#" + (_vm.returnid?_vm.returnid:''))}},[_c('span',{staticClass:"visually-hidden"},[_vm._v("Close")]),_vm._v("✕")]),_c('div',{staticClass:"modal__inner"},[_vm._t("default")],2)]),_c('button',{staticClass:"modal__dock--left btn btn-prev",attrs:{"tabindex":"-1"}},[_vm._v("Left")]),_c('button',{staticClass:"modal__dock--right btn btn-next",attrs:{"tabindex":"-1"}},[_vm._v("Right")])])}
|
|
3153
3157
|
var Modalvue_type_template_id_2443604a_staticRenderFns = []
|
|
3154
3158
|
|
|
@@ -3291,7 +3295,7 @@ var Modal_component = normalizeComponent(
|
|
|
3291
3295
|
)
|
|
3292
3296
|
|
|
3293
3297
|
/* harmony default export */ var Modal = (Modal_component.exports);
|
|
3294
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3298
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Stepper/Stepper.vue?vue&type=template&id=56ba7bd8&
|
|
3295
3299
|
var Steppervue_type_template_id_56ba7bd8_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"container"},[_c('nav',{staticClass:"stepper",attrs:{"aria-label":_vm.label?_vm.label:'Progress'}},[(_vm.label)?_c('span',{staticClass:"h6 stepper__start"},[_vm._v(_vm._s(_vm.label))]):_vm._e(),_c('ol',{staticClass:"list-unstyled"},[_vm._t("default")],2),_c('span',{staticClass:"h6 stepper__end"},[_vm._v(_vm._s(_vm.endlabel))])])])}
|
|
3296
3300
|
var Steppervue_type_template_id_56ba7bd8_staticRenderFns = []
|
|
3297
3301
|
|
|
@@ -3357,7 +3361,7 @@ var Stepper_component = normalizeComponent(
|
|
|
3357
3361
|
)
|
|
3358
3362
|
|
|
3359
3363
|
/* harmony default export */ var Stepper = (Stepper_component.exports);
|
|
3360
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3364
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Stepper/Step.vue?vue&type=template&id=d80b9c98&
|
|
3361
3365
|
var Stepvue_type_template_id_d80b9c98_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('li',[_c('a',{class:("" + (_vm.status?'bg-'+_vm.status:'') + (typeof _vm.current != 'undefined'?'current':'')),attrs:{"href":_vm.url,"aria-current":typeof _vm.current != 'undefined'?true:false}},[_c('span',[_vm._t("default")],2),(_vm.status)?_c('em',{staticClass:"visually-hidden"},[_vm._v(" - status: "+_vm._s(_vm.status))]):_vm._e()])])}
|
|
3362
3366
|
var Stepvue_type_template_id_d80b9c98_staticRenderFns = []
|
|
3363
3367
|
|
|
@@ -3413,7 +3417,7 @@ var Step_component = normalizeComponent(
|
|
|
3413
3417
|
)
|
|
3414
3418
|
|
|
3415
3419
|
/* harmony default export */ var Step = (Step_component.exports);
|
|
3416
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3420
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Tabs/Tabs.vue?vue&type=template&id=7efbe64c&
|
|
3417
3421
|
var Tabsvue_type_template_id_7efbe64c_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrapper",staticClass:"container tabs__container"},[_vm._l((_vm.tabLinks()),function(value,index){return _c('input',{key:index,staticClass:"d-none",attrs:{"type":"radio","name":value.name,"id":value.id},domProps:{"checked":index == 0? 'checked':''}})}),_c('div',{staticClass:"tabs__links"},_vm._l((_vm.tabLinks()),function(value,index){return _c('label',{key:index,staticClass:"link",attrs:{"for":value.id},on:{"click":function($event){return _vm.openTab(index)}}},[_vm._v(" "+_vm._s(value.tabTitle)+" ")])}),0),_c('div',{staticClass:"tabs"},[_vm._t("default")],2)],2)}
|
|
3418
3422
|
var Tabsvue_type_template_id_7efbe64c_staticRenderFns = []
|
|
3419
3423
|
|
|
@@ -3517,7 +3521,7 @@ var Tabs_component = normalizeComponent(
|
|
|
3517
3521
|
)
|
|
3518
3522
|
|
|
3519
3523
|
/* harmony default export */ var Tabs = (Tabs_component.exports);
|
|
3520
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3524
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Tabs/Tab.vue?vue&type=template&id=2fb8b28a&
|
|
3521
3525
|
var Tabvue_type_template_id_2fb8b28a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.show)?_c('div',{staticClass:"tab"},[_vm._t("default")],2):_vm._e()}
|
|
3522
3526
|
var Tabvue_type_template_id_2fb8b28a_staticRenderFns = []
|
|
3523
3527
|
|
|
@@ -3573,7 +3577,7 @@ var Tab_component = normalizeComponent(
|
|
|
3573
3577
|
)
|
|
3574
3578
|
|
|
3575
3579
|
/* harmony default export */ var Tab = (Tab_component.exports);
|
|
3576
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3580
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7dee3bac-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Alert/Alert.vue?vue&type=template&id=1b0f8c16&
|
|
3577
3581
|
var Alertvue_type_template_id_1b0f8c16_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"wrapper",class:("container alert pb-0 " + (_vm.dismissible?'alert--dismissible fade show':'')),style:(_vm.timeout?("--animation-length: " + _vm.timeout + "ms"):''),attrs:{"data-timeout":_vm.timeout}},[_c('div',{class:("alert__inner bg-" + _vm.colour),attrs:{"role":"alert"}},[(_vm.dismissible)?_c('button',{staticClass:"btn-close",attrs:{"type":"button","data-bs-dismiss":"alert","aria-label":"Close"}}):_vm._e(),_vm._t("default")],2)])}
|
|
3578
3582
|
var Alertvue_type_template_id_1b0f8c16_staticRenderFns = []
|
|
3579
3583
|
|