@everchron/ec-shards 4.3.0 → 4.4.0

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": "4.3.0",
3
+ "version": "4.4.0",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -21,11 +21,11 @@
21
21
  display: flex;
22
22
  align-items: center;
23
23
  width: 100%;
24
- padding: 0 15px;
24
+ padding: 0 $spacing-20;
25
25
  z-index: 2;
26
26
  height: $layout-actionbar-height;
27
27
  background: #FFF;
28
- box-shadow: 0 1px 0 rgba($color-gray-10, .2);
28
+ border-bottom: 1px solid $color-gray-3;
29
29
  position: relative;
30
30
  }
31
31
 
@@ -23,6 +23,7 @@ import EcsButtonToolbarIcon from "./button-toolbar-icon/button-toolbar-icon.vue"
23
23
  import EcsCard from "./card/card.vue"
24
24
  import EcsCitationLine from "./citation-line/citation-line.vue"
25
25
  import EcsCheckbox from "./checkbox/checkbox.vue"
26
+ import EcsContextMenu from "./context-menu/context-menu.vue"
26
27
  import EcsCollapse from "./collapse/collapse.vue"
27
28
  import EcsCollectionControl from "./collection-control/collection-control.vue"
28
29
  import EcsComment from "./comment/comment.vue"
@@ -152,6 +153,7 @@ const Components = {
152
153
  EcsButtonToolbarGroup,
153
154
  EcsButtonToolbarIcon,
154
155
  EcsCheckbox,
156
+ EcsContextMenu,
155
157
  EcsCard,
156
158
  EcsCitationLine,
157
159
  EcsCollapse,
@@ -6,7 +6,7 @@ import EcsDataGridHeadCell from '@components/data-grid/data-grid-head-cell';
6
6
  import EcsDataGridCell from '@components/data-grid/data-grid-cell';
7
7
 
8
8
  export default {
9
- title: 'Data/Context Menu',
9
+ title: 'Action/Context Menu',
10
10
  component: EcsContextMenu
11
11
  }
12
12
 
package/dist/demo.html DELETED
@@ -1,10 +0,0 @@
1
- <meta charset="utf-8">
2
- <title>ec-shards demo</title>
3
- <script src="./ec-shards.umd.js"></script>
4
-
5
- <link rel="stylesheet" href="./ec-shards.css">
6
-
7
-
8
- <script>
9
- console.log(ec-shards)
10
- </script>