Skip to content

Commit 53cd259

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 28bc0b6 commit 53cd259

File tree

13 files changed

+977
-987
lines changed

13 files changed

+977
-987
lines changed

docs/accessibility/section-508-wcag.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
---
2-
title: Section 508 and WCAG 2.0 Compliance
3-
page_title: Section 508 and WCAG 2.0 Compliance | Kendo UI Accessibility Support
4-
description: "Learn more about the Section 508 and WCAG 2.0 Accesibility support provided by Kendo UI controls."
2+
title: Section 508 and WCAG 2.1 Compliance
3+
page_title: Section 508 and WCAG 2.1 Compliance | Kendo UI Accessibility Support
4+
description: "Learn more about the Section 508 and WCAG 2.1 Accesibility support provided by Kendo UI controls."
55
slug: section508_wcag20_accessibility_support
66
position: 3
77
---
88

9-
# Section 508 and WCAG 2.0 Compliance
9+
# Section 508 and WCAG 2.1 Compliance
1010

11-
The Kendo UI widgets follow the [W3C Web Content Accessibility Guidelines 2.0](https://www.w3.org/TR/WCAG/).
11+
The Kendo UI widgets follow the [W3C Web Content Accessibility Guidelines 2.1](https://www.w3.org/TR/WCAG/).
1212

1313
They set the standards for applications for providing accessible content. Depending on the number of guidelines that is followed when building an application, W3C defines three levels of accessibility conformance—A, AA, and AAA levels.
1414

1515
The Kendo UI components also conform to the technical standards set out in Section 508 of the Rehabilitation Act. They represent the law that requires all Federal Agencies to make their electronic and information technology accessible to people with disabilities. For detailed information on the accessibility features according to the Section 508 Web content standards Kendo UI delivers, refer to the article about [Section 508]({% slug section508_accessibility_support %}).
1616

1717
Applications built with components that adhere to these guidelines will not only be accessible to people with disabilities, but also to users of all kinds of devices and interfaces such as desktop browser, voice browser, mobile phone, automobile-based personal computer, and so on.
1818

19-
The following table shows the Section 508 and WCAG 2.0 Compliance level of support for the Kendo UI widgets. The report is based on results from tests performed on our **Basic Usage** demos.
19+
The following table shows the Section 508 and WCAG 2.1 Compliance level of support for the Kendo UI widgets. The report is based on results from tests performed on our **Basic Usage** demos.
2020

21-
**Table 1: 508 and WCAG 2.0 compliance with Kendo UI widgets**
21+
**Table 1: 508 and WCAG 2.1 compliance with Kendo UI widgets**
2222

23-
|Component |508|WCAG 2.0|Demo
23+
|Component |508|WCAG 2.1|Demo
2424
|:--- |:---|:--- |:---
2525
|AutoComplete |Yes |AA |[Browse](http://demos.telerik.com/kendo-ui/autocomplete/index)
2626
|BarCode |Yes |AAA |[Browse](http://demos.telerik.com/kendo-ui/barcode/index)

docs/api/javascript/dataviz/ui/chart.md

Lines changed: 0 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -12409,94 +12409,6 @@ The margin around each donut series (ring). A numeric value will set all margins
1240912409
});
1241012410
</script>
1241112411

12412-
### series.margin.bottom `Number` *(default: 0)*
12413-
12414-
The bottom margin of the labels.
12415-
12416-
#### Example - set the chart donut series bottom margin
12417-
12418-
<div id="chart"></div>
12419-
<script>
12420-
$("#chart").kendoChart({
12421-
series: [ {
12422-
type: "donut",
12423-
margin: {
12424-
bottom: 30
12425-
},
12426-
data: [1, 2, 3]
12427-
},{
12428-
type: "donut",
12429-
data: [1, 2, 3]
12430-
}]
12431-
});
12432-
</script>
12433-
12434-
### series.margin.left `Number` *(default: 0)*
12435-
12436-
The left margin of the labels.
12437-
12438-
#### Example - set the chart donut series left margin
12439-
12440-
<div id="chart"></div>
12441-
<script>
12442-
$("#chart").kendoChart({
12443-
series: [ {
12444-
type: "donut",
12445-
margin: {
12446-
left: 30
12447-
},
12448-
data: [1, 2, 3]
12449-
},{
12450-
type: "donut",
12451-
data: [1, 2, 3]
12452-
}]
12453-
});
12454-
</script>
12455-
12456-
### series.margin.right `Number` *(default: 0)*
12457-
12458-
The right margin of the labels.
12459-
12460-
#### Example - set the chart donut series right margin
12461-
12462-
<div id="chart"></div>
12463-
<script>
12464-
$("#chart").kendoChart({
12465-
series: [ {
12466-
type: "donut",
12467-
margin: {
12468-
right: 30
12469-
},
12470-
data: [1, 2, 3]
12471-
},{
12472-
type: "donut",
12473-
data: [1, 2, 3]
12474-
}]
12475-
});
12476-
</script>
12477-
12478-
### series.margin.top `Number` *(default: 0)*
12479-
12480-
The top margin of the labels.
12481-
12482-
#### Example - set the chart donut series top margin
12483-
12484-
<div id="chart"></div>
12485-
<script>
12486-
$("#chart").kendoChart({
12487-
series: [{
12488-
type: "donut",
12489-
margin: {
12490-
top: 30
12491-
},
12492-
data: [1, 2, 3]
12493-
},{
12494-
type: "donut",
12495-
data: [1, 2, 3]
12496-
}]
12497-
});
12498-
</script>
12499-
1250012412
### series.markers `Object`
1250112413

1250212414
The chart series marker configuration.

src/kendo.multiselect.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ var __meta__ = { // jshint ignore:line
418418

419419
that.input.val("");
420420
that._search();
421-
that.trigger(CHANGE);
421+
that._change();
422422
that.focus();
423423
that._hideClear();
424424

@@ -771,7 +771,7 @@ var __meta__ = { // jshint ignore:line
771771

772772
if(key !== keys.ENTER) {
773773
this._multipleSelection = false;
774-
}
774+
}
775775

776776
if (key === keys.DOWN) {
777777
e.preventDefault();
@@ -850,15 +850,15 @@ var __meta__ = { // jshint ignore:line
850850
}
851851

852852
e.preventDefault();
853-
853+
854854
if (this._multipleSelection) {
855855
this._multipleSelection = false;
856856
if (listView.focus().hasClass(SELECTEDCLASS)) {
857857
that._close();
858858
return;
859859
}
860860
}
861-
861+
862862
that._select(listView.focus()).done(function() {
863863
that._change();
864864
that._close();
@@ -1221,7 +1221,7 @@ var __meta__ = { // jshint ignore:line
12211221

12221222
that._angularTagItems("cleanup");
12231223

1224-
if (that.options.tagMode === "multiple") {
1224+
if (that.options.tagMode === "multiple") {
12251225
for (idx = removed.length - 1; idx > -1; idx--) {
12261226
removedItem = removed[idx];
12271227

src/kendo.numerictextbox.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ var __meta__ = { // jshint ignore:line
5050
var that = this,
5151
isStep = options && options.step !== undefined,
5252
min, max, step, value, disabled;
53-
54-
var inputType = element.type;
53+
var inputType;
5554

5655
Widget.fn.init.call(that, element, options);
5756

@@ -80,6 +79,8 @@ var __meta__ = { // jshint ignore:line
8079

8180
that._initialOptions = extend({}, options);
8281

82+
inputType = element.attr("type");
83+
8384
that._reset();
8485
that._wrapper();
8586
that._arrows();

0 commit comments

Comments
 (0)