@iamproperty/components 2.7.3 → 2.7.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iamproperty/components",
3
- "version": "2.7.3",
3
+ "version": "2.7.4",
4
4
  "private": false,
5
5
  "description": "Component library for iamproperty",
6
6
  "author": {
@@ -59,15 +59,15 @@
59
59
  <div class="container">
60
60
  <div class="row">
61
61
  <div class="col nav__logo">
62
- <a href="/standalone/marketplace" :class="`text-decoration-none mb-0 ${logo=='property'?'current':''}`">
62
+ <a :href="propertylink" :class="`text-decoration-none mb-0 ${logo=='property'?'current':''}`">
63
63
  <Logo id="property" :path="logopath" class="pb-0 pe-0"></Logo>
64
64
  </a>
65
65
 
66
- <a href="/standalone/movebutler" :class="`text-decoration-none mb-0 ${logo=='movebutler'?'current':''}`">
66
+ <a :href="movebutlerlink" :class="`text-decoration-none mb-0 ${logo=='movebutler'?'current':''}`">
67
67
  <Logo id="movebutler" :path="logopath" class="pb-0 pe-0"></Logo>
68
68
  </a>
69
69
 
70
- <a href="/standalone/agent" :class="`text-decoration-none mb-0 ${logo=='sold'?'current':''}`">
70
+ <a :href="iamsoldlink" :class="`text-decoration-none mb-0 ${logo=='sold'?'current':''}`">
71
71
  <Logo id="sold" :path="logopath" class="pb-0 pe-0"></Logo>
72
72
  </a>
73
73
  </div>
@@ -137,6 +137,18 @@ export default {
137
137
  btntext: {
138
138
  type: String,
139
139
  required: false
140
+ },
141
+ propertylink: {
142
+ type: String,
143
+ required: false
144
+ },
145
+ movebutlerlink: {
146
+ type: String,
147
+ required: false
148
+ },
149
+ iamsoldlink: {
150
+ type: String,
151
+ required: false
140
152
  }
141
153
  },
142
154
  data () {