@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/dist/ec-shards.common.js +198 -203
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +198 -203
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +2 -2
- package/dist/ec-shards.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/button/button.vue +1 -1
- package/src/components/button-context/button-context.vue +1 -1
- package/src/components/button-more/button-more.vue +1 -1
- package/src/components/button-toolbar/button-toolbar.vue +1 -1
- package/src/components/button-toolbar-icon/button-toolbar-icon.vue +1 -1
- package/src/components/data-grid/data-grid-group.vue +1 -1
- package/src/components/tab/tab.vue +1 -1
package/package.json
CHANGED
|
@@ -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
|
}
|
|
@@ -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
|
}
|