@everchron/ec-shards 7.3.8 → 7.3.9

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": "7.3.8",
3
+ "version": "7.3.9",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -131,7 +131,7 @@
131
131
  return `ecs-toolbar-button-icon`
132
132
  else
133
133
  return `ecs-toolbar-button-icon-only`
134
- return this.icon
134
+ else return 'ecs-toolbar-button-text-only'
135
135
  },
136
136
 
137
137
  iconType() {
@@ -238,6 +238,10 @@
238
238
  }
239
239
  }
240
240
 
241
+ &-text-only{
242
+ padding: 0 $spacing-10;
243
+ }
244
+
241
245
  &:disabled{
242
246
  color: rgba($color-gray-10, .5);
243
247
  pointer-events: none;
@@ -14,6 +14,7 @@ export const regular = () => ({
14
14
  export const regularText = () => ({
15
15
  components: { EcsButtonToolbar },
16
16
  template: `<main>
17
+ <ecs-button-toolbar>Label Only</ecs-button-toolbar>
17
18
  <ecs-button-toolbar icon="marker">Annotations</ecs-button-toolbar>
18
19
  <ecs-button-toolbar icon="next" icon-position="right">Next</ecs-button-toolbar>
19
20
  </main>`,