@progress/kendo-charts 1.33.0-dev.202401041201 → 2.0.0-dev.202401051337
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/LICENSE.md +1 -1
- package/dist/cdn/js/kendo-charts.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/map/layers/tile.js +1 -0
- package/dist/es/map/zoom.js +1 -0
- package/dist/es2015/map/layers/tile.js +1 -0
- package/dist/es2015/map/zoom.js +1 -0
- package/dist/npm/main.js +3 -1
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +1 -1
|
@@ -332,6 +332,7 @@ export var ImageTile = (function (Class) {
|
|
|
332
332
|
ImageTile.prototype.createElement = function createElement () {
|
|
333
333
|
var el = document.createElement("img");
|
|
334
334
|
var size = this.options.size + "px";
|
|
335
|
+
el.setAttribute("alt", "");
|
|
335
336
|
el.style.position = "absolute";
|
|
336
337
|
el.style.display = "block";
|
|
337
338
|
el.style.width = el.style.maxWidth = size;
|
package/dist/es/map/zoom.js
CHANGED
|
@@ -46,6 +46,7 @@ export var ZoomControl = (function (Observable) {
|
|
|
46
46
|
|
|
47
47
|
this.element.appendChild(zoomInButton);
|
|
48
48
|
this.element.appendChild(zoomOutButton);
|
|
49
|
+
this.element.setAttribute("role", "group");
|
|
49
50
|
|
|
50
51
|
addClass(this.element, 'k-widget k-zoom-control k-button-group k-group-horizontal');
|
|
51
52
|
|
|
@@ -314,6 +314,7 @@ export class ImageTile extends Class {
|
|
|
314
314
|
createElement() {
|
|
315
315
|
let el = document.createElement("img");
|
|
316
316
|
const size = this.options.size + "px";
|
|
317
|
+
el.setAttribute("alt", "");
|
|
317
318
|
el.style.position = "absolute";
|
|
318
319
|
el.style.display = "block";
|
|
319
320
|
el.style.width = el.style.maxWidth = size;
|
package/dist/es2015/map/zoom.js
CHANGED
|
@@ -46,6 +46,7 @@ export class ZoomControl extends Observable {
|
|
|
46
46
|
|
|
47
47
|
this.element.appendChild(zoomInButton);
|
|
48
48
|
this.element.appendChild(zoomOutButton);
|
|
49
|
+
this.element.setAttribute("role", "group");
|
|
49
50
|
|
|
50
51
|
addClass(this.element, 'k-widget k-zoom-control k-button-group k-group-horizontal');
|
|
51
52
|
|