comand-component-library 3.1.61 → 3.1.64

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.61",
3
+ "version": "3.1.64",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -18,7 +18,7 @@
18
18
  ],
19
19
  "dependencies": {
20
20
  "clickout-event": "^1.1.2",
21
- "comand-frontend-framework": "^3.2.46",
21
+ "comand-frontend-framework": "^3.2.47",
22
22
  "core-js": "^3.20.1",
23
23
  "prismjs": "^1.27.0",
24
24
  "vue": "^3.2.31",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="cmd-google-maps">
2
+ <div class="cmd-google-maps responsive-wrapper">
3
3
  <iframe :src="locateAddress"></iframe>
4
4
  </div>
5
5
  </template>
@@ -34,15 +34,6 @@ export default {
34
34
  /* begin cmd-google-maps ---------------------------------------------------------------------------------------- */
35
35
  .cmd-google-maps {
36
36
  border: var(--default-border);
37
-
38
- aspect-ratio: 16/9;
39
-
40
- iframe {
41
- display: block;
42
- width: 100%;
43
- height: 100%;
44
- }
45
37
  }
46
-
47
38
  /* end cmd-google-maps ------------------------------------------------------------------------------------------ */
48
39
  </style>
@@ -9,9 +9,9 @@
9
9
  </li>
10
10
  </ul>
11
11
  <template v-if="useSlot">
12
- <div v-show="showTab === index" v-for="index in tabs.length" :key="index" aria-live="assertive">
12
+ <div v-show="showTab === index - 1" v-for="index in tabs.length" :key="index" aria-live="assertive">
13
13
  <!-- begin slot-content -->
14
- <slot :name="'tab-content-' + index"></slot>
14
+ <slot :name="'tab-content-' + (index - 1)"></slot>
15
15
  <!-- end slot-content -->
16
16
  </div>
17
17
  </template>