@everchron/ec-shards 0.7.14 → 0.7.15

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": "0.7.14",
3
+ "version": "0.7.15",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -12,7 +12,17 @@
12
12
  <div v-if="$slots.headercontrols" class="ecs-overlay-header-controls">
13
13
  <slot name="headercontrols"></slot>
14
14
  </div>
15
- <ecs-button-toolbar v-if="$slots.sidebar && width <= 1500" @click="sidebarToggle" :icon="sidebarIcon" :title="showSidebar ? 'Hide ' + sidebarTitle : 'Show ' + sidebarTitle" :active="showSidebar" :badge="sidebarIconBadge" :badge-color="sidebarIconBadgeColor" class="sidebar-button" />
15
+ <ecs-button-toolbar
16
+ v-if="$slots.sidebar && width <= 1500"
17
+ @click="sidebarToggle"
18
+ :icon="sidebarIcon"
19
+ :title="showSidebar ? 'Hide ' + sidebarTitle : 'Show ' + sidebarTitle"
20
+ :active="showSidebar"
21
+ :badge="sidebarIconBadge"
22
+ :badge-color="sidebarIconBadgeColor"
23
+ :loading="sidebarIconLoading"
24
+ class="sidebar-button"
25
+ />
16
26
  <ecs-button-toolbar @click="$emit('close')" :disabled="closeDisabled" icon="close">{{ closeText }}</ecs-button-toolbar>
17
27
  </div>
18
28
  <div ref="content" class="ecs-overlay-content scrollbar">
@@ -103,6 +113,10 @@
103
113
  sidebarIconBadgeColor: {
104
114
  type: String,
105
115
  default: '#FF4B62'
116
+ },
117
+ sidebarIconLoading: {
118
+ type: Boolean,
119
+ default: false
106
120
  }
107
121
  },
108
122