@progress/kendo-charts 2.10.0 → 2.11.0-develop.1
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/cdn/js/kendo-charts.js +1 -1
- package/dist/cdn/main.js +1 -1
- package/dist/es/map/navigator.js +1 -1
- package/dist/es/map/zoom.js +1 -1
- package/dist/es2015/map/navigator.js +1 -1
- package/dist/es2015/map/zoom.js +1 -1
- package/dist/npm/main.js +3 -3
- package/dist/systemjs/kendo-charts.js +1 -1
- package/package.json +1 -1
package/dist/es/map/navigator.js
CHANGED
|
@@ -38,7 +38,7 @@ const directionsMap = {
|
|
|
38
38
|
|
|
39
39
|
function createButton(direction, iconOptions) {
|
|
40
40
|
const html =
|
|
41
|
-
'<button type="button" class="k-button k-button-square k-rounded-full k-button-flat k-
|
|
41
|
+
'<button type="button" class="k-button k-button-square k-rounded-full k-button-flat k-icon-button ' +
|
|
42
42
|
directionsMap[direction].className +
|
|
43
43
|
'" aria-label="move ' + direction + '">' +
|
|
44
44
|
renderIcon({ icon: `caret-alt-${direction}`, iconClass: "k-button-icon", svgIcons: iconOptions.svgIcons, type: iconOptions.type }) +
|
package/dist/es/map/zoom.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
|
|
18
18
|
function createButton(direction, icon, iconOptions) {
|
|
19
19
|
const html =
|
|
20
|
-
'<button type="button" class="k-button k-
|
|
20
|
+
'<button type="button" class="k-button k-icon-button k-zoom-' + direction +
|
|
21
21
|
'" title="zoom-' + direction +
|
|
22
22
|
'" aria-label="zoom-' + direction + '">' +
|
|
23
23
|
renderIcon({ icon: icon, iconClass: "k-button-icon", svgIcons: iconOptions.svgIcons, type: iconOptions.type }) +
|
|
@@ -38,7 +38,7 @@ const directionsMap = {
|
|
|
38
38
|
|
|
39
39
|
function createButton(direction, iconOptions) {
|
|
40
40
|
const html =
|
|
41
|
-
'<button type="button" class="k-button k-button-square k-rounded-full k-button-flat k-
|
|
41
|
+
'<button type="button" class="k-button k-button-square k-rounded-full k-button-flat k-icon-button ' +
|
|
42
42
|
directionsMap[direction].className +
|
|
43
43
|
'" aria-label="move ' + direction + '">' +
|
|
44
44
|
renderIcon({ icon: `caret-alt-${direction}`, iconClass: "k-button-icon", svgIcons: iconOptions.svgIcons, type: iconOptions.type }) +
|
package/dist/es2015/map/zoom.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
|
|
18
18
|
function createButton(direction, icon, iconOptions) {
|
|
19
19
|
const html =
|
|
20
|
-
'<button type="button" class="k-button k-
|
|
20
|
+
'<button type="button" class="k-button k-icon-button k-zoom-' + direction +
|
|
21
21
|
'" title="zoom-' + direction +
|
|
22
22
|
'" aria-label="zoom-' + direction + '">' +
|
|
23
23
|
renderIcon({ icon: icon, iconClass: "k-button-icon", svgIcons: iconOptions.svgIcons, type: iconOptions.type }) +
|