@everchron/ec-shards 0.6.101 → 0.6.105

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.6.101",
3
+ "version": "0.6.105",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <transition name="dialog-fade">
3
- <div v-if="isShown" class="ecs-modal">
3
+ <div v-if="isShown" class="ecs-modal ecs-modal-default">
4
4
 
5
5
  <div :class="['ecs-modal-promt', large ? 'ecs-modal-promt-large' : '']" class="ecs-modal-dialog">
6
6
  <div class="ecs-modal-promt-body">
@@ -1,13 +1,13 @@
1
1
  <template>
2
2
  <li>
3
3
  <div v-if="type === 'checkbox'" class="ecs-popover-list-item control no-hover">
4
- <ecs-checkbox @input="$emit('input', $event)" :disabled="disabled" :value="value" :value-false="valueFalse" :value-true="valueTrue">
4
+ <ecs-checkbox @input="$emit('input', $event)" :disabled="disabled" :value="value" :value-false="valueFalse" :value-true="valueTrue" :indeterminate="indeterminate">
5
5
  <slot></slot>
6
6
  </ecs-checkbox>
7
7
  </div>
8
8
 
9
9
  <div v-else-if="type === 'radiobutton'" class="ecs-popover-list-item control no-hover">
10
- <ecs-radiobutton @input="$emit('input', $event)" :disabled="disabled" :checked="value">
10
+ <ecs-radiobutton @change="$emit('change', $event)" :disabled="disabled" :checked="value">
11
11
  <slot></slot>
12
12
  </ecs-radiobutton>
13
13
  </div>
@@ -155,6 +155,10 @@
155
155
  required: false,
156
156
  type: [Date, Number, String, Boolean]
157
157
  },
158
+ indeterminate: {
159
+ default: false,
160
+ type: Boolean
161
+ },
158
162
  sort: {
159
163
  type: String,
160
164
  validator: v => ['ascending', 'descending', null].includes(v),
@@ -128,7 +128,11 @@ export default {
128
128
  }
129
129
 
130
130
  .ecs-tab-bar-standard{
131
- margin: 0 0 -4px 10px;
131
+ margin: 0 0 -5px 10px;
132
+
133
+ &.ecs-tab-bar-row{
134
+ border: none;
135
+ }
132
136
  }
133
137
  }
134
138
  </style>