@everchron/ec-shards 7.3.0 → 7.3.2
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/ec-shards.common.js +1838 -807
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +1838 -807
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +2 -2
- package/dist/ec-shards.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/action-toolbar/action-toolbar.vue +1 -16
- package/src/components/emoji-picker/emoji-picker.vue +1 -1
- package/src/components/emoji-picker/list.vue +1 -0
- package/src/components/index.js +2 -0
- package/src/components/modal-header/modal-header.vue +0 -14
- package/src/components/sidebar-header/sidebar-header.vue +0 -9
package/package.json
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
align-items: center;
|
|
23
23
|
width: 100%;
|
|
24
24
|
padding: 0 $spacing-20;
|
|
25
|
+
gap: $spacing-10;
|
|
25
26
|
height: $layout-actionbar-height;
|
|
26
27
|
background: #FFF;
|
|
27
28
|
border-bottom: 1px solid $color-gray-3;
|
|
@@ -42,19 +43,3 @@
|
|
|
42
43
|
margin-top: -$layout-actionbar-height;
|
|
43
44
|
}
|
|
44
45
|
</style>
|
|
45
|
-
|
|
46
|
-
<style lang="scss">
|
|
47
|
-
.ecs-action-toolbar{
|
|
48
|
-
.divider{
|
|
49
|
-
height: 26px;
|
|
50
|
-
width: 1px;
|
|
51
|
-
min-width: 1px;
|
|
52
|
-
margin: 0 8px;
|
|
53
|
-
background: #E2E3E4;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.ecs-button{
|
|
57
|
-
margin: 0 4px;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
</style>
|
package/src/components/index.js
CHANGED
|
@@ -46,6 +46,7 @@ import EcsDocumentState from "./document-state/document-state.vue"
|
|
|
46
46
|
import EcsDropdown from "./dropdown/dropdown.vue"
|
|
47
47
|
import EcsDropzone from "./dropzone/dropzone.vue"
|
|
48
48
|
import EcsEmptyState from "./empty-state/empty-state.vue"
|
|
49
|
+
import EcsEmojiPicker from "./emoji-picker/emoji-picker.vue"
|
|
49
50
|
import EcsEntryLink from "./entry-link/entry-link.vue"
|
|
50
51
|
import EcsExcerptSnippet from "./excerpt-snippet/excerpt-snippet.vue"
|
|
51
52
|
import EcsFavicon from "./favicon/favicon.vue"
|
|
@@ -183,6 +184,7 @@ const Components = {
|
|
|
183
184
|
EcsDropdown,
|
|
184
185
|
EcsDropzone,
|
|
185
186
|
EcsEmptyState,
|
|
187
|
+
EcsEmojiPicker,
|
|
186
188
|
EcsEntryLink,
|
|
187
189
|
EcsExcerptSnippet,
|
|
188
190
|
EcsFavicon,
|
|
@@ -119,17 +119,3 @@ import EcsButton from '../button/button'
|
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
121
|
</style>
|
|
122
|
-
|
|
123
|
-
<style lang="scss">
|
|
124
|
-
@import "../../tokens/build/scss/tokens.scss";
|
|
125
|
-
|
|
126
|
-
.ecs-modal-header{
|
|
127
|
-
.divider{
|
|
128
|
-
background: $color-gray-4;
|
|
129
|
-
height: 24px;
|
|
130
|
-
width: 1px;
|
|
131
|
-
border-radius: 1px;
|
|
132
|
-
margin: 0 10px;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
</style>
|
|
@@ -101,15 +101,6 @@ export default {
|
|
|
101
101
|
<style lang="scss">
|
|
102
102
|
@import "../../tokens/build/scss/tokens.scss";
|
|
103
103
|
|
|
104
|
-
.ecs-sidebar-header{
|
|
105
|
-
.divider{
|
|
106
|
-
background: $color-gray-4;
|
|
107
|
-
height: 20px;
|
|
108
|
-
width: 1px;
|
|
109
|
-
border-radius: 1px;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
104
|
.ecs-sidebar-header-row{
|
|
114
105
|
> *{
|
|
115
106
|
opacity: 1;
|