@everchron/ec-shards 1.3.1 → 1.3.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": "@everchron/ec-shards",
3
- "version": "1.3.1",
3
+ "version": "1.3.4",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -33,6 +33,7 @@
33
33
  > .ecs-tab-pane{
34
34
  display: none;
35
35
  height: 100%;
36
+ width: 100%;
36
37
 
37
38
  &.show{
38
39
  display: flex;
@@ -220,7 +220,7 @@
220
220
  }
221
221
 
222
222
  .sticker{
223
- top: 23px;
223
+ top: 20px;
224
224
  left: 29px;
225
225
  }
226
226
 
@@ -1,5 +1,10 @@
1
1
  <template>
2
- <div class="ecs-tab-content" :class="[flex ? 'ecs-tab-content-flex' : '', fill ? 'ecs-tab-content-fill' : '']">
2
+ <div class="ecs-tab-content"
3
+ :class="[
4
+ flex ? 'ecs-tab-content-flex' : '',
5
+ fill ? 'ecs-tab-content-fill' : '',
6
+ directionClass
7
+ ]">
3
8
  <slot></slot>
4
9
  </div>
5
10
  </template>
@@ -26,6 +31,7 @@
26
31
  @import "../mixins/svg-uri";
27
32
 
28
33
  .ecs-tab-content-flex{
34
+ display: flex;
29
35
  height: 100%;
30
36
  min-height: 0;
31
37
  }
@@ -6,7 +6,13 @@ import { Meta } from '@storybook/addon-docs/blocks';
6
6
  Changelog
7
7
  </h1>
8
8
 
9
- ## Version 1.3.1 (27 August 2022)
9
+ ## Version 1.3.3 (27 August 2022)
10
+
11
+ ### Changes
12
+
13
+ - Added flexDirection prop to EcsTabs component.
14
+
15
+ ## Version 1.3.2 (27 August 2022)
10
16
 
11
17
  ### Fixes
12
18