@everchron/ec-shards 0.6.102 → 0.6.103

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.102",
3
+ "version": "0.6.103",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -1,7 +1,7 @@
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>
@@ -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),