@avakhula/ui 0.0.239 → 0.0.241

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": "@avakhula/ui",
3
- "version": "0.0.239",
3
+ "version": "0.0.241",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
@@ -4,6 +4,7 @@
4
4
  <div
5
5
  class="progress"
6
6
  role="meter"
7
+ :aria-label="ariaName"
7
8
  aria-valuemin="0"
8
9
  aria-valuemax="100"
9
10
  :aria-valuenow="progress"
@@ -31,6 +32,10 @@ export default {
31
32
  type: [String, Number],
32
33
  default: 0,
33
34
  },
35
+ ariaLabel: {
36
+ type: String,
37
+ required: true
38
+ }
34
39
  },
35
40
  computed: {
36
41
  classes() {
@@ -658,6 +658,7 @@ export default {
658
658
  this.allOptionsIsChecked = false;
659
659
  this.selected = [];
660
660
  this.$emit("update:modelValue", null);
661
+ this.$emit("clear-value");
661
662
  this.$emit("input", null);
662
663
  },
663
664
  clearValue() {