@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/dist/css/app.99f04c26.css +1 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.html +1 -0
- package/dist/js/app.e6219346.js +2 -0
- package/dist/js/app.e6219346.js.map +1 -0
- package/dist/js/chunk-vendors.786a1bc3.js +12 -0
- package/dist/js/chunk-vendors.786a1bc3.js.map +1 -0
- package/package.json +1 -1
- package/src/components/action-toolbar/action-toolbar.vue +2 -2
- package/src/components/index.js +2 -0
- package/src/stories/context-menu/context-menu.stories.js +1 -1
- package/dist/demo.html +0 -10
- package/dist/ec-shards.common.js +0 -27254
- package/dist/ec-shards.common.js.map +0 -1
- package/dist/ec-shards.css +0 -1
- package/dist/ec-shards.umd.js +0 -27264
- package/dist/ec-shards.umd.js.map +0 -1
- package/dist/ec-shards.umd.min.js +0 -6
- package/dist/ec-shards.umd.min.js.map +0 -1
package/package.json
CHANGED
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
display: flex;
|
|
22
22
|
align-items: center;
|
|
23
23
|
width: 100%;
|
|
24
|
-
padding: 0
|
|
24
|
+
padding: 0 $spacing-20;
|
|
25
25
|
z-index: 2;
|
|
26
26
|
height: $layout-actionbar-height;
|
|
27
27
|
background: #FFF;
|
|
28
|
-
|
|
28
|
+
border-bottom: 1px solid $color-gray-3;
|
|
29
29
|
position: relative;
|
|
30
30
|
}
|
|
31
31
|
|
package/src/components/index.js
CHANGED
|
@@ -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: '
|
|
9
|
+
title: 'Action/Context Menu',
|
|
10
10
|
component: EcsContextMenu
|
|
11
11
|
}
|
|
12
12
|
|