@everchron/ec-shards 7.0.2 → 7.0.3

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.0.2",
3
+ "version": "7.0.3",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -148,7 +148,7 @@
148
148
 
149
149
  mounted() {
150
150
  if (this.iconOnly && (!this.ariaLabel || this.ariaLabel.trim() === '')) {
151
- console.warn('Warning: ariaLabel must be provided on buttons with only an icon and no label.');
151
+ //console.warn('Warning: ariaLabel must be provided on buttons with only an icon and no label.');
152
152
  }
153
153
  }
154
154
  }
@@ -72,7 +72,7 @@
72
72
 
73
73
  mounted() {
74
74
  if (this.iconOnly && (!this.ariaLabel || this.ariaLabel.trim() === '')) {
75
- console.warn('Warning: ariaLabel must be provided on buttons with only an icon and no label.');
75
+ //console.warn('Warning: ariaLabel must be provided on buttons with only an icon and no label.');
76
76
  }
77
77
  }
78
78
  }
@@ -55,7 +55,7 @@
55
55
 
56
56
  mounted() {
57
57
  if (this.$slots.default === undefined && (!this.ariaLabel || this.ariaLabel.trim() === '')) {
58
- console.warn('Warning: ariaLabel must be provided on buttons with only an icon and no label.');
58
+ //console.warn('Warning: ariaLabel must be provided on buttons with only an icon and no label.');
59
59
  }
60
60
  }
61
61
  }
@@ -157,7 +157,7 @@
157
157
 
158
158
  mounted() {
159
159
  if (this.$slots.default === undefined && (!this.ariaLabel || this.ariaLabel.trim() === '')) {
160
- console.warn('Warning: ariaLabel must be provided on buttons with only an icon and no label.');
160
+ //console.warn('Warning: ariaLabel must be provided on buttons with only an icon and no label.');
161
161
  }
162
162
  }
163
163
  }
@@ -57,7 +57,7 @@
57
57
  /** Sets the aria-label attribute to improve accessibility. */
58
58
  ariaLabel: {
59
59
  type: String,
60
- required: true
60
+ //required: true
61
61
  }
62
62
  }
63
63
  }
@@ -17,7 +17,7 @@
17
17
  /** Sets the aria-labeled-by attribute. Should match the ID of the tab button which controls this tab panel. */
18
18
  ariaLabeledBy: {
19
19
  type: String,
20
- required: true
20
+ //required: true
21
21
  }
22
22
  }
23
23
  }
@@ -42,7 +42,7 @@
42
42
 
43
43
  mounted() {
44
44
  if (!this.ariaLabeledBy || this.ariaLabeledBy.trim() === '') {
45
- console.warn('Warning: ariaLabeledBy must be provided on tab panels, to improve accessibility.');
45
+ //console.warn('Warning: ariaLabeledBy must be provided on tab panels, to improve accessibility.');
46
46
  }
47
47
  }
48
48
  }