Skip to content

Commit 5a93b29

Browse files
committed
DataTables v1.10.11
1 parent 17c504b commit 5a93b29

26 files changed

+1627
-261
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "drmonty-datatables",
33
"description": "DataTables enhances HTML tables with the ability to sort, filter and page the data in the table very easily. It provides a comprehensive API and set of configuration options, allowing you to consume data from virtually any data source.",
44
"homepage": "http://datatables.net",
5-
"version": "1.10.10",
5+
"version": "1.10.11",
66
"keywords": [
77
"select",
88
"multiselect",

component.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "drmonty-datatables",
33
"repo": "drmonty/datatables",
44
"description": "DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table.",
5-
"version": "1.10.10",
5+
"version": "1.10.11",
66
"homepage": "http://www.datatables.net/",
77
"licenses": [
88
{
@@ -37,25 +37,41 @@
3737
],
3838
"files": [
3939
"css/dataTables.jqueryui.css",
40+
"css/dataTables.material.css",
41+
"css/dataTables.uikit.min.css",
4042
"css/dataTables.bootstrap.css",
4143
"css/dataTables.bootstrap.min.css",
44+
"css/dataTables.semanticui.min.css",
4245
"css/jquery.dataTables_themeroller.css",
46+
"css/dataTables.bootstrap4.css",
4347
"css/dataTables.foundation.css",
48+
"css/dataTables.bootstrap4.min.css",
49+
"css/dataTables.uikit.css",
50+
"css/dataTables.material.min.css",
4451
"css/jquery.dataTables.css",
4552
"css/dataTables.foundation.min.css",
4653
"css/jquery.dataTables.min.css",
4754
"css/dataTables.jqueryui.min.css",
55+
"css/dataTables.semanticui.css",
4856
"images/sort_both.png",
4957
"images/sort_asc_disabled.png",
5058
"images/sort_desc_disabled.png",
5159
"images/sort_desc.png",
5260
"images/sort_asc.png",
5361
"js/dataTables.foundation.min.js",
62+
"js/dataTables.bootstrap4.js",
5463
"js/jquery.dataTables.js",
64+
"js/dataTables.uikit.min.js",
5565
"js/dataTables.jqueryui.min.js",
66+
"js/dataTables.material.min.js",
67+
"js/dataTables.material.js",
5668
"js/jquery.dataTables.min.js",
5769
"js/dataTables.foundation.js",
5870
"js/dataTables.bootstrap.min.js",
71+
"js/dataTables.semanticui.js",
72+
"js/dataTables.semanticui.min.js",
73+
"js/dataTables.bootstrap4.min.js",
74+
"js/dataTables.uikit.js",
5975
"js/dataTables.bootstrap.js",
6076
"js/dataTables.jqueryui.js"
6177
]

composer.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,25 +38,41 @@
3838
],
3939
"files": [
4040
"css/dataTables.jqueryui.css",
41+
"css/dataTables.material.css",
42+
"css/dataTables.uikit.min.css",
4143
"css/dataTables.bootstrap.css",
4244
"css/dataTables.bootstrap.min.css",
45+
"css/dataTables.semanticui.min.css",
4346
"css/jquery.dataTables_themeroller.css",
47+
"css/dataTables.bootstrap4.css",
4448
"css/dataTables.foundation.css",
49+
"css/dataTables.bootstrap4.min.css",
50+
"css/dataTables.uikit.css",
51+
"css/dataTables.material.min.css",
4552
"css/jquery.dataTables.css",
4653
"css/dataTables.foundation.min.css",
4754
"css/jquery.dataTables.min.css",
4855
"css/dataTables.jqueryui.min.css",
56+
"css/dataTables.semanticui.css",
4957
"images/sort_both.png",
5058
"images/sort_asc_disabled.png",
5159
"images/sort_desc_disabled.png",
5260
"images/sort_desc.png",
5361
"images/sort_asc.png",
5462
"js/dataTables.foundation.min.js",
63+
"js/dataTables.bootstrap4.js",
5564
"js/jquery.dataTables.js",
65+
"js/dataTables.uikit.min.js",
5666
"js/dataTables.jqueryui.min.js",
67+
"js/dataTables.material.min.js",
68+
"js/dataTables.material.js",
5769
"js/jquery.dataTables.min.js",
5870
"js/dataTables.foundation.js",
5971
"js/dataTables.bootstrap.min.js",
72+
"js/dataTables.semanticui.js",
73+
"js/dataTables.semanticui.min.js",
74+
"js/dataTables.bootstrap4.min.js",
75+
"js/dataTables.uikit.js",
6076
"js/dataTables.bootstrap.js",
6177
"js/dataTables.jqueryui.js"
6278
],

css/dataTables.bootstrap4.css

Lines changed: 196 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,196 @@
1+
table.dataTable {
2+
clear: both;
3+
margin-top: 6px !important;
4+
margin-bottom: 6px !important;
5+
max-width: none !important;
6+
}
7+
table.dataTable td,
8+
table.dataTable th {
9+
-webkit-box-sizing: content-box;
10+
-moz-box-sizing: content-box;
11+
box-sizing: content-box;
12+
}
13+
table.dataTable td.dataTables_empty,
14+
table.dataTable th.dataTables_empty {
15+
text-align: center;
16+
}
17+
table.dataTable.nowrap th,
18+
table.dataTable.nowrap td {
19+
white-space: nowrap;
20+
}
21+
22+
div.dataTables_wrapper div.dataTables_length label {
23+
font-weight: normal;
24+
text-align: left;
25+
white-space: nowrap;
26+
}
27+
div.dataTables_wrapper div.dataTables_length select {
28+
width: 75px;
29+
display: inline-block;
30+
}
31+
div.dataTables_wrapper div.dataTables_filter {
32+
text-align: right;
33+
}
34+
div.dataTables_wrapper div.dataTables_filter label {
35+
font-weight: normal;
36+
white-space: nowrap;
37+
text-align: left;
38+
}
39+
div.dataTables_wrapper div.dataTables_filter input {
40+
margin-left: 0.5em;
41+
display: inline-block;
42+
width: auto;
43+
}
44+
div.dataTables_wrapper div.dataTables_info {
45+
padding-top: 0.85em;
46+
white-space: nowrap;
47+
}
48+
div.dataTables_wrapper div.dataTables_paginate {
49+
margin: 0;
50+
white-space: nowrap;
51+
text-align: right;
52+
}
53+
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
54+
margin: 2px 0;
55+
white-space: nowrap;
56+
}
57+
div.dataTables_wrapper div.dataTables_processing {
58+
position: absolute;
59+
top: 50%;
60+
left: 50%;
61+
width: 200px;
62+
margin-left: -100px;
63+
margin-top: -26px;
64+
text-align: center;
65+
padding: 1em 0;
66+
}
67+
68+
table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
69+
table.dataTable thead > tr > td.sorting_asc,
70+
table.dataTable thead > tr > td.sorting_desc,
71+
table.dataTable thead > tr > td.sorting {
72+
padding-right: 30px;
73+
}
74+
table.dataTable thead > tr > th:active,
75+
table.dataTable thead > tr > td:active {
76+
outline: none;
77+
}
78+
table.dataTable thead .sorting,
79+
table.dataTable thead .sorting_asc,
80+
table.dataTable thead .sorting_desc,
81+
table.dataTable thead .sorting_asc_disabled,
82+
table.dataTable thead .sorting_desc_disabled {
83+
cursor: pointer;
84+
position: relative;
85+
}
86+
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
87+
table.dataTable thead .sorting_asc:before,
88+
table.dataTable thead .sorting_asc:after,
89+
table.dataTable thead .sorting_desc:before,
90+
table.dataTable thead .sorting_desc:after,
91+
table.dataTable thead .sorting_asc_disabled:before,
92+
table.dataTable thead .sorting_asc_disabled:after,
93+
table.dataTable thead .sorting_desc_disabled:before,
94+
table.dataTable thead .sorting_desc_disabled:after {
95+
position: absolute;
96+
bottom: 0.9em;
97+
display: block;
98+
opacity: 0.3;
99+
}
100+
table.dataTable thead .sorting:before,
101+
table.dataTable thead .sorting_asc:before,
102+
table.dataTable thead .sorting_desc:before,
103+
table.dataTable thead .sorting_asc_disabled:before,
104+
table.dataTable thead .sorting_desc_disabled:before {
105+
right: 1em;
106+
content: "\2191";
107+
}
108+
table.dataTable thead .sorting:after,
109+
table.dataTable thead .sorting_asc:after,
110+
table.dataTable thead .sorting_desc:after,
111+
table.dataTable thead .sorting_asc_disabled:after,
112+
table.dataTable thead .sorting_desc_disabled:after {
113+
right: 0.5em;
114+
content: "\2193";
115+
}
116+
table.dataTable thead .sorting_asc:before,
117+
table.dataTable thead .sorting_desc:after {
118+
opacity: 1;
119+
}
120+
table.dataTable thead .sorting_asc_disabled:before,
121+
table.dataTable thead .sorting_desc_disabled:after {
122+
opacity: 0;
123+
}
124+
125+
div.dataTables_scrollHead table.dataTable {
126+
margin-bottom: 0 !important;
127+
}
128+
129+
div.dataTables_scrollBody table {
130+
border-top: none;
131+
margin-top: 0 !important;
132+
margin-bottom: 0 !important;
133+
}
134+
div.dataTables_scrollBody table thead .sorting:after,
135+
div.dataTables_scrollBody table thead .sorting_asc:after,
136+
div.dataTables_scrollBody table thead .sorting_desc:after {
137+
display: none;
138+
}
139+
div.dataTables_scrollBody table tbody tr:first-child th,
140+
div.dataTables_scrollBody table tbody tr:first-child td {
141+
border-top: none;
142+
}
143+
144+
div.dataTables_scrollFoot table {
145+
margin-top: 0 !important;
146+
border-top: none;
147+
}
148+
149+
@media screen and (max-width: 767px) {
150+
div.dataTables_wrapper div.dataTables_length,
151+
div.dataTables_wrapper div.dataTables_filter,
152+
div.dataTables_wrapper div.dataTables_info,
153+
div.dataTables_wrapper div.dataTables_paginate {
154+
text-align: center;
155+
}
156+
}
157+
table.dataTable.table-condensed > thead > tr > th {
158+
padding-right: 20px;
159+
}
160+
table.dataTable.table-condensed .sorting:after,
161+
table.dataTable.table-condensed .sorting_asc:after,
162+
table.dataTable.table-condensed .sorting_desc:after {
163+
top: 6px;
164+
right: 6px;
165+
}
166+
167+
table.table-bordered.dataTable {
168+
border-collapse: separate !important;
169+
}
170+
table.table-bordered.dataTable th,
171+
table.table-bordered.dataTable td {
172+
border-left-width: 0;
173+
}
174+
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
175+
table.table-bordered.dataTable td:last-child,
176+
table.table-bordered.dataTable td:last-child {
177+
border-right-width: 0;
178+
}
179+
table.table-bordered.dataTable tbody th,
180+
table.table-bordered.dataTable tbody td {
181+
border-bottom-width: 0;
182+
}
183+
184+
div.dataTables_scrollHead table.table-bordered {
185+
border-bottom-width: 0;
186+
}
187+
188+
div.table-responsive > div.dataTables_wrapper > div.row {
189+
margin: 0;
190+
}
191+
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
192+
padding-left: 0;
193+
}
194+
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
195+
padding-right: 0;
196+
}

css/dataTables.bootstrap4.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/dataTables.material.css

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
div.dataTables_wrapper div.dataTables_filter {
2+
text-align: right;
3+
}
4+
div.dataTables_wrapper div.dataTables_filter input {
5+
margin-left: 0.5em;
6+
}
7+
div.dataTables_wrapper div.dataTables_info {
8+
padding-top: 10px;
9+
white-space: nowrap;
10+
}
11+
div.dataTables_wrapper div.dataTables_processing {
12+
position: absolute;
13+
top: 50%;
14+
left: 50%;
15+
width: 200px;
16+
margin-left: -100px;
17+
text-align: center;
18+
}
19+
div.dataTables_wrapper div.dataTables_paginate {
20+
text-align: right;
21+
}
22+
div.dataTables_wrapper div.mdl-grid.dt-table {
23+
padding-top: 0;
24+
padding-bottom: 0;
25+
}
26+
div.dataTables_wrapper div.mdl-grid.dt-table > div.mdl-cell {
27+
margin-top: 0;
28+
margin-bottom: 0;
29+
}
30+
31+
table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
32+
table.dataTable thead > tr > td.sorting_asc,
33+
table.dataTable thead > tr > td.sorting_desc,
34+
table.dataTable thead > tr > td.sorting {
35+
padding-right: 30px;
36+
}
37+
table.dataTable thead > tr > th:active,
38+
table.dataTable thead > tr > td:active {
39+
outline: none;
40+
}
41+
table.dataTable thead .sorting,
42+
table.dataTable thead .sorting_asc,
43+
table.dataTable thead .sorting_desc,
44+
table.dataTable thead .sorting_asc_disabled,
45+
table.dataTable thead .sorting_desc_disabled {
46+
cursor: pointer;
47+
position: relative;
48+
}
49+
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
50+
table.dataTable thead .sorting_asc:before,
51+
table.dataTable thead .sorting_asc:after,
52+
table.dataTable thead .sorting_desc:before,
53+
table.dataTable thead .sorting_desc:after,
54+
table.dataTable thead .sorting_asc_disabled:before,
55+
table.dataTable thead .sorting_asc_disabled:after,
56+
table.dataTable thead .sorting_desc_disabled:before,
57+
table.dataTable thead .sorting_desc_disabled:after {
58+
position: absolute;
59+
bottom: 11px;
60+
display: block;
61+
opacity: 0.3;
62+
font-size: 1.3em;
63+
}
64+
table.dataTable thead .sorting:before,
65+
table.dataTable thead .sorting_asc:before,
66+
table.dataTable thead .sorting_desc:before,
67+
table.dataTable thead .sorting_asc_disabled:before,
68+
table.dataTable thead .sorting_desc_disabled:before {
69+
right: 1em;
70+
content: "\2191";
71+
}
72+
table.dataTable thead .sorting:after,
73+
table.dataTable thead .sorting_asc:after,
74+
table.dataTable thead .sorting_desc:after,
75+
table.dataTable thead .sorting_asc_disabled:after,
76+
table.dataTable thead .sorting_desc_disabled:after {
77+
right: 0.5em;
78+
content: "\2193";
79+
}
80+
table.dataTable thead .sorting_asc:before,
81+
table.dataTable thead .sorting_desc:after {
82+
opacity: 1;
83+
}
84+
table.dataTable thead .sorting_asc_disabled:before,
85+
table.dataTable thead .sorting_desc_disabled:after {
86+
opacity: 0;
87+
}

css/dataTables.material.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)