@everchron/ec-shards 0.8.34 → 0.8.35

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.8.34",
3
+ "version": "0.8.35",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -1,9 +1,10 @@
1
1
  <template>
2
- <div class="ecs-switch-wrapper" :class="disabled ? `disabled` : ''">
2
+ <div class="ecs-switch-wrapper">
3
3
  <label class="ecs-switch"
4
4
  :class="[
5
5
  sizeClass,
6
- hasDefaultSlot ? `ecs-switch-has-label` : ''
6
+ hasDefaultSlot ? `ecs-switch-has-label` : '',
7
+ disabled ? `disabled` : ''
7
8
  ]">
8
9
  <input
9
10
  type="checkbox"
@@ -136,10 +137,10 @@
136
137
  &-wrapper{
137
138
  display: flex;
138
139
  align-items: center;
140
+ }
139
141
 
140
- &.disabled{
141
- opacity: .5;
142
- }
142
+ &.disabled{
143
+ opacity: .5;
143
144
  }
144
145
 
145
146
  input[type=checkbox] {