@lancom/shared 0.0.345 → 0.0.346

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.
@@ -443,6 +443,6 @@ export default {
443
443
  };
444
444
  </script>
445
445
 
446
- <style lang="scss">
446
+ <style lang="scss" scoped>
447
447
  @import 'editor-workspace-side.scss';
448
448
  </style>
@@ -18,7 +18,7 @@
18
18
  height: 78px;
19
19
  z-index: 999999;
20
20
  display: grid;
21
- grid-template-columns: repeat(3, 1fr);
21
+ grid-template-columns: repeat(4, 1fr);
22
22
  background-color: $white_high_emphasis;
23
23
  box-shadow: 5px 0px 30px rgba(124, 124, 124, 0.1);
24
24
 
@@ -34,6 +34,9 @@
34
34
  flex-direction: column;
35
35
  font-size: 14px;
36
36
  }
37
+ &-label {
38
+ margin-top: 6px;
39
+ }
37
40
 
38
41
  &.active {
39
42
  color: $black;
@@ -10,7 +10,7 @@
10
10
  :has-pricing="false"
11
11
  @choose-products="chooseProducts()" />
12
12
  <div
13
- v-if="!!currentTab"
13
+ :class="{ active: !currentTab }"
14
14
  class="MobileEditorProductDetails__menu-action"
15
15
  @click="hide()">
16
16
  <i class="icon-blank MobileEditorProductDetails__menu-action-icon"></i>
@@ -19,7 +19,7 @@
19
19
  </span>
20
20
  </div>
21
21
  <div
22
- v-if="currentTab !== 'details'"
22
+ :class="{ active: currentTab === 'details' }"
23
23
  class="MobileEditorProductDetails__menu-action"
24
24
  @click="show('details')">
25
25
  <i class="icon-product MobileEditorProductDetails__menu-action-icon"></i>
@@ -28,7 +28,7 @@
28
28
  </span>
29
29
  </div>
30
30
  <div
31
- v-if="currentTab !== 'layers'"
31
+ :class="{ active: currentTab === 'layers' }"
32
32
  class="MobileEditorProductDetails__menu-action"
33
33
  @click="showLayers">
34
34
  <i class="icon-edit MobileEditorProductDetails__menu-action-icon"></i>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.345",
3
+ "version": "0.0.346",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {