comand-component-library 3.1.58 → 3.1.59

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "3.1.58",
3
+ "version": "3.1.59",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -21,7 +21,7 @@ export default {
21
21
  if(this.address) {
22
22
  const url = new URL("https://maps.google.de/maps?ie=UTF8&t=&z=17&iwloc=B&output=embed")
23
23
  url.searchParams.set("hl", "de")
24
- url.searchParams.set("q", [this.address.streetNo, this.address.zip, this.address.city, this.address.latitude, this.address.longitude, this.location].join(" ").trim())
24
+ url.searchParams.set("q", [this.address.streetNo, this.address.zip, this.address.city, this.address.latitude, this.address.longitude, this.address.location].join(" ").trim())
25
25
  return url.href
26
26
  }
27
27
  return "https://maps.google.de/maps?ie=UTF8&t=&z=17&iwloc=B&output=embed"
@@ -15,7 +15,7 @@
15
15
  type="text"
16
16
  :name="cmdFormElementUsername.name"
17
17
  :id="cmdFormElementUsername.id"
18
- v-model:value="username"
18
+ v-model="username"
19
19
  :inner-icon-class="cmdFormElementUsername.innerIconClass"
20
20
  :labelText="cmdFormElementUsername.labelText"
21
21
  :placeholder="cmdFormElementUsername.placeholder"
@@ -29,7 +29,7 @@
29
29
  :name="cmdFormElementPassword.name"
30
30
  :id="cmdFormElementPassword.id"
31
31
  :inner-icon-class="cmdFormElementPassword.innerIconClass"
32
- v-model:value="password"
32
+ v-model="password"
33
33
  :labelText="cmdFormElementPassword.labelText"
34
34
  :placeholder="cmdFormElementPassword.placeholder"
35
35
  />
@@ -277,8 +277,8 @@ export default {
277
277
  default() {
278
278
  return {
279
279
  show: true,
280
- text: "Login",
281
- level: 2
280
+ headlineText: "Login",
281
+ headlineLevel: 2
282
282
  }
283
283
  }
284
284
  },
@@ -290,8 +290,8 @@ export default {
290
290
  default() {
291
291
  return {
292
292
  show: true,
293
- text: "Send Login",
294
- level: 2
293
+ headlineText: "Send Login",
294
+ headlineLevel: 2
295
295
  }
296
296
  }
297
297
  },
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="cmd-opening-hours">
3
3
  <!-- begin cmd-custom-headline -->
4
- <CmdCustomHeadline v-if="cmdCustomHeadline" :headline="cmdCustomHeadline" />
4
+ <CmdCustomHeadline v-if="cmdCustomHeadline" v-bind="cmdCustomHeadline" />
5
5
  <!-- end cmd-custom-headline -->
6
6
 
7
7
  <!-- begin opening-status with link to detail-page -->
@@ -3,7 +3,7 @@
3
3
  <div
4
4
  v-if="showSystemMessage"
5
5
  :class="['cmd-system-message', 'system-message', 'flex-container', 'vertical', { 'full-width': fullWidth }, validationStatus]"
6
- :role="status === 'error' ? 'alert' : 'dialog'"
6
+ :role="validationStatus === 'error' ? 'alert' : 'dialog'"
7
7
  >
8
8
  <a
9
9
  v-if="iconClose.show && iconClose.iconClass"
@@ -19,7 +19,8 @@
19
19
  <!-- begin CmdCustomHeadline -->
20
20
  <CmdCustomHeadline
21
21
  v-bind="cmdCustomHeadline"
22
- :headlineText="tabs[showTab].headline"
22
+ :headlineText="tabs[showTab].headlineText"
23
+ :headlineLevel="tabs[showTab].headlineLevel"
23
24
  />
24
25
  <!-- end CmdCustomHeadline -->
25
26