jquery-datatables 1.10.13 → 1.10.15

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.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -3
  3. data/Rakefile +1 -1
  4. data/app/assets/javascripts/datatables/dataTables.bootstrap2.js +162 -0
  5. data/app/assets/javascripts/datatables/dataTables.bootstrap4.js +7 -7
  6. data/app/assets/javascripts/datatables/dataTables.semanticui.js +2 -2
  7. data/app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js +104 -13
  8. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.colVis.js +17 -9
  9. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.flash.js +41 -15
  10. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.html5.js +48 -18
  11. data/app/assets/javascripts/datatables/extensions/Buttons/buttons.print.js +29 -13
  12. data/app/assets/javascripts/datatables/extensions/Buttons/dataTables.buttons.js +46 -5
  13. data/app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js +37 -19
  14. data/app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js +65 -37
  15. data/app/assets/javascripts/datatables/extensions/RowGroup/dataTables.rowGroup.js +386 -0
  16. data/app/assets/javascripts/datatables/extensions/Select/dataTables.select.js +24 -14
  17. data/app/assets/javascripts/datatables/jquery.dataTables.js +48 -10
  18. data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +7 -7
  19. data/app/assets/stylesheets/datatables/dataTables.bootstrap2.css +178 -0
  20. data/app/assets/stylesheets/datatables/dataTables.bootstrap4.css +1 -0
  21. data/app/assets/stylesheets/datatables/dataTables.foundation.css +8 -6
  22. data/app/assets/stylesheets/datatables/dataTables.jqueryui.css +6 -5
  23. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.css +56 -0
  24. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.css +56 -0
  25. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.css +56 -0
  26. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.css +60 -0
  27. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.css +56 -0
  28. data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.css +57 -0
  29. data/app/assets/stylesheets/datatables/extensions/Buttons/mixins.scss +47 -0
  30. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.css +4 -0
  31. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.css +4 -0
  32. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.css +4 -0
  33. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.css +4 -0
  34. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.css +4 -0
  35. data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.css +4 -0
  36. data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.css +7 -7
  37. data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.css +7 -7
  38. data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.css +7 -7
  39. data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.css +7 -7
  40. data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.css +7 -7
  41. data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.css +7 -7
  42. data/app/assets/stylesheets/datatables/jquery.dataTables.css +14 -11
  43. data/lib/generators/jquery/datatables/templates/bootstrap2.css.tt +15 -0
  44. data/lib/generators/jquery/datatables/templates/bootstrap2.js.tt +22 -0
  45. data/lib/jquery-datatables/version.rb +1 -1
  46. metadata +14 -3
@@ -87,3 +87,50 @@
87
87
  column-count: 4;
88
88
  }
89
89
  }
90
+
91
+
92
+ @mixin dtb-processing {
93
+ color: rgba(0, 0, 0, 0.2);
94
+
95
+ &:after {
96
+ position: absolute;
97
+ top: 50%;
98
+ left: 50%;
99
+ width: 16px;
100
+ height: 16px;
101
+ margin: -8px 0 0 -8px;
102
+ box-sizing: border-box;
103
+
104
+ display: block;
105
+ content: ' ';
106
+ border: 2px solid rgb(40,40,40);
107
+ border-radius: 50%;
108
+ border-left-color: transparent;
109
+ border-right-color: transparent;
110
+ animation: dtb-spinner 1500ms infinite linear;
111
+ -o-animation: dtb-spinner 1500ms infinite linear;
112
+ -ms-animation: dtb-spinner 1500ms infinite linear;
113
+ -webkit-animation: dtb-spinner 1500ms infinite linear;
114
+ -moz-animation: dtb-spinner 1500ms infinite linear;
115
+ }
116
+ }
117
+
118
+ @keyframes dtb-spinner {
119
+ 100%{ transform: rotate(360deg); }
120
+ }
121
+
122
+ @-o-keyframes dtb-spinner {
123
+ 100%{ -o-transform: rotate(360deg); transform: rotate(360deg); }
124
+ }
125
+
126
+ @-ms-keyframes dtb-spinner {
127
+ 100%{ -ms-transform: rotate(360deg); transform: rotate(360deg); }
128
+ }
129
+
130
+ @-webkit-keyframes dtb-spinner {
131
+ 100%{ -webkit-transform: rotate(360deg); transform: rotate(360deg); }
132
+ }
133
+
134
+ @-moz-keyframes dtb-spinner {
135
+ 100%{ -moz-transform: rotate(360deg); transform: rotate(360deg); }
136
+ }
@@ -0,0 +1,4 @@
1
+ table.dataTable tr.group td {
2
+ font-weight: bold;
3
+ background-color: #e0e0e0;
4
+ }
@@ -0,0 +1,4 @@
1
+ table.dataTable tr.group td {
2
+ font-weight: bold;
3
+ background-color: #e0e0e0;
4
+ }
@@ -0,0 +1,4 @@
1
+ table.dataTable tr.group td {
2
+ font-weight: bold;
3
+ background-color: #e0e0e0;
4
+ }
@@ -0,0 +1,4 @@
1
+ table.dataTable tr.group td {
2
+ font-weight: bold;
3
+ background-color: #e0e0e0;
4
+ }
@@ -0,0 +1,4 @@
1
+ table.dataTable tr.group td {
2
+ font-weight: bold;
3
+ background-color: #e0e0e0;
4
+ }
@@ -0,0 +1,4 @@
1
+ table.dataTable tr.group td {
2
+ font-weight: bold;
3
+ background-color: #F9FAFB;
4
+ }
@@ -59,13 +59,13 @@ table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-colu
59
59
  table.dataTable.order-column.hover tbody > tr > .selected:hover {
60
60
  background-color: #007dbb;
61
61
  }
62
- table.dataTable td.select-checkbox,
63
- table.dataTable th.select-checkbox {
62
+ table.dataTable tbody td.select-checkbox,
63
+ table.dataTable tbody th.select-checkbox {
64
64
  position: relative;
65
65
  }
66
- table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after,
67
- table.dataTable th.select-checkbox:before,
68
- table.dataTable th.select-checkbox:after {
66
+ table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
67
+ table.dataTable tbody th.select-checkbox:before,
68
+ table.dataTable tbody th.select-checkbox:after {
69
69
  display: block;
70
70
  position: absolute;
71
71
  top: 1.2em;
@@ -74,8 +74,8 @@ table.dataTable th.select-checkbox:after {
74
74
  height: 12px;
75
75
  box-sizing: border-box;
76
76
  }
77
- table.dataTable td.select-checkbox:before,
78
- table.dataTable th.select-checkbox:before {
77
+ table.dataTable tbody td.select-checkbox:before,
78
+ table.dataTable tbody th.select-checkbox:before {
79
79
  content: ' ';
80
80
  margin-top: -6px;
81
81
  margin-left: -6px;
@@ -59,13 +59,13 @@ table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-colu
59
59
  table.dataTable.order-column.hover tbody > tr > .selected:hover {
60
60
  background-color: #026bc6;
61
61
  }
62
- table.dataTable td.select-checkbox,
63
- table.dataTable th.select-checkbox {
62
+ table.dataTable tbody td.select-checkbox,
63
+ table.dataTable tbody th.select-checkbox {
64
64
  position: relative;
65
65
  }
66
- table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after,
67
- table.dataTable th.select-checkbox:before,
68
- table.dataTable th.select-checkbox:after {
66
+ table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
67
+ table.dataTable tbody th.select-checkbox:before,
68
+ table.dataTable tbody th.select-checkbox:after {
69
69
  display: block;
70
70
  position: absolute;
71
71
  top: 1.2em;
@@ -74,8 +74,8 @@ table.dataTable th.select-checkbox:after {
74
74
  height: 12px;
75
75
  box-sizing: border-box;
76
76
  }
77
- table.dataTable td.select-checkbox:before,
78
- table.dataTable th.select-checkbox:before {
77
+ table.dataTable tbody td.select-checkbox:before,
78
+ table.dataTable tbody th.select-checkbox:before {
79
79
  content: ' ';
80
80
  margin-top: -6px;
81
81
  margin-left: -6px;
@@ -59,13 +59,13 @@ table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-colu
59
59
  table.dataTable.order-column.hover tbody > tr > .selected:hover {
60
60
  background-color: #a2aec7;
61
61
  }
62
- table.dataTable td.select-checkbox,
63
- table.dataTable th.select-checkbox {
62
+ table.dataTable tbody td.select-checkbox,
63
+ table.dataTable tbody th.select-checkbox {
64
64
  position: relative;
65
65
  }
66
- table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after,
67
- table.dataTable th.select-checkbox:before,
68
- table.dataTable th.select-checkbox:after {
66
+ table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
67
+ table.dataTable tbody th.select-checkbox:before,
68
+ table.dataTable tbody th.select-checkbox:after {
69
69
  display: block;
70
70
  position: absolute;
71
71
  top: 1.2em;
@@ -74,8 +74,8 @@ table.dataTable th.select-checkbox:after {
74
74
  height: 12px;
75
75
  box-sizing: border-box;
76
76
  }
77
- table.dataTable td.select-checkbox:before,
78
- table.dataTable th.select-checkbox:before {
77
+ table.dataTable tbody td.select-checkbox:before,
78
+ table.dataTable tbody th.select-checkbox:before {
79
79
  content: ' ';
80
80
  margin-top: -6px;
81
81
  margin-left: -6px;
@@ -59,13 +59,13 @@ table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-colu
59
59
  table.dataTable.order-column.hover tbody > tr > .selected:hover {
60
60
  background-color: #0081ab;
61
61
  }
62
- table.dataTable td.select-checkbox,
63
- table.dataTable th.select-checkbox {
62
+ table.dataTable tbody td.select-checkbox,
63
+ table.dataTable tbody th.select-checkbox {
64
64
  position: relative;
65
65
  }
66
- table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after,
67
- table.dataTable th.select-checkbox:before,
68
- table.dataTable th.select-checkbox:after {
66
+ table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
67
+ table.dataTable tbody th.select-checkbox:before,
68
+ table.dataTable tbody th.select-checkbox:after {
69
69
  display: block;
70
70
  position: absolute;
71
71
  top: 1.2em;
@@ -74,8 +74,8 @@ table.dataTable th.select-checkbox:after {
74
74
  height: 12px;
75
75
  box-sizing: border-box;
76
76
  }
77
- table.dataTable td.select-checkbox:before,
78
- table.dataTable th.select-checkbox:before {
77
+ table.dataTable tbody td.select-checkbox:before,
78
+ table.dataTable tbody th.select-checkbox:before {
79
79
  content: ' ';
80
80
  margin-top: -6px;
81
81
  margin-left: -6px;
@@ -59,13 +59,13 @@ table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-colu
59
59
  table.dataTable.order-column.hover tbody > tr > .selected:hover {
60
60
  background-color: #a2aec7;
61
61
  }
62
- table.dataTable td.select-checkbox,
63
- table.dataTable th.select-checkbox {
62
+ table.dataTable tbody td.select-checkbox,
63
+ table.dataTable tbody th.select-checkbox {
64
64
  position: relative;
65
65
  }
66
- table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after,
67
- table.dataTable th.select-checkbox:before,
68
- table.dataTable th.select-checkbox:after {
66
+ table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
67
+ table.dataTable tbody th.select-checkbox:before,
68
+ table.dataTable tbody th.select-checkbox:after {
69
69
  display: block;
70
70
  position: absolute;
71
71
  top: 1.2em;
@@ -74,8 +74,8 @@ table.dataTable th.select-checkbox:after {
74
74
  height: 12px;
75
75
  box-sizing: border-box;
76
76
  }
77
- table.dataTable td.select-checkbox:before,
78
- table.dataTable th.select-checkbox:before {
77
+ table.dataTable tbody td.select-checkbox:before,
78
+ table.dataTable tbody th.select-checkbox:before {
79
79
  content: ' ';
80
80
  margin-top: -6px;
81
81
  margin-left: -6px;
@@ -59,13 +59,13 @@ table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-colu
59
59
  table.dataTable.order-column.hover tbody > tr > .selected:hover {
60
60
  background-color: rgba(0, 0, 0, 0.1279);
61
61
  }
62
- table.dataTable td.select-checkbox,
63
- table.dataTable th.select-checkbox {
62
+ table.dataTable tbody td.select-checkbox,
63
+ table.dataTable tbody th.select-checkbox {
64
64
  position: relative;
65
65
  }
66
- table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after,
67
- table.dataTable th.select-checkbox:before,
68
- table.dataTable th.select-checkbox:after {
66
+ table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
67
+ table.dataTable tbody th.select-checkbox:before,
68
+ table.dataTable tbody th.select-checkbox:after {
69
69
  display: block;
70
70
  position: absolute;
71
71
  top: 1.2em;
@@ -74,8 +74,8 @@ table.dataTable th.select-checkbox:after {
74
74
  height: 12px;
75
75
  box-sizing: border-box;
76
76
  }
77
- table.dataTable td.select-checkbox:before,
78
- table.dataTable th.select-checkbox:before {
77
+ table.dataTable tbody td.select-checkbox:before,
78
+ table.dataTable tbody th.select-checkbox:before {
79
79
  content: ' ';
80
80
  margin-top: -6px;
81
81
  margin-left: -6px;
@@ -34,7 +34,9 @@ table.dataTable tfoot td {
34
34
  }
35
35
  table.dataTable thead .sorting,
36
36
  table.dataTable thead .sorting_asc,
37
- table.dataTable thead .sorting_desc {
37
+ table.dataTable thead .sorting_desc,
38
+ table.dataTable thead .sorting_asc_disabled,
39
+ table.dataTable thead .sorting_desc_disabled {
38
40
  cursor: pointer;
39
41
  *cursor: hand;
40
42
  }
@@ -47,19 +49,19 @@ table.dataTable thead .sorting_desc_disabled {
47
49
  background-position: center right;
48
50
  }
49
51
  table.dataTable thead .sorting {
50
- background-image: url("../images/sort_both.png");
52
+ background-image: image-url("datatables/sort_both.png");
51
53
  }
52
54
  table.dataTable thead .sorting_asc {
53
- background-image: url("../images/sort_asc.png");
55
+ background-image: image-url("datatables/sort_asc.png");
54
56
  }
55
57
  table.dataTable thead .sorting_desc {
56
- background-image: url("../images/sort_desc.png");
58
+ background-image: image-url("datatables/sort_desc.png");
57
59
  }
58
60
  table.dataTable thead .sorting_asc_disabled {
59
- background-image: url("../images/sort_asc_disabled.png");
61
+ background-image: image-url("datatables/sort_asc_disabled.png");
60
62
  }
61
63
  table.dataTable thead .sorting_desc_disabled {
62
- background-image: url("../images/sort_desc_disabled.png");
64
+ background-image: image-url("datatables/sort_desc_disabled.png");
63
65
  }
64
66
  table.dataTable tbody tr {
65
67
  background-color: #ffffff;
@@ -405,11 +407,12 @@ table.dataTable td {
405
407
  *margin-top: -1px;
406
408
  -webkit-overflow-scrolling: touch;
407
409
  }
408
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td {
410
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
409
411
  vertical-align: middle;
410
412
  }
411
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
412
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
413
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
414
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
415
+ .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
413
416
  height: 0;
414
417
  overflow: hidden;
415
418
  margin: 0 !important;
@@ -418,8 +421,8 @@ table.dataTable td {
418
421
  .dataTables_wrapper.no-footer .dataTables_scrollBody {
419
422
  border-bottom: 1px solid #111;
420
423
  }
421
- .dataTables_wrapper.no-footer div.dataTables_scrollHead table,
422
- .dataTables_wrapper.no-footer div.dataTables_scrollBody table {
424
+ .dataTables_wrapper.no-footer div.dataTables_scrollHead > table,
425
+ .dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
423
426
  border-bottom: none;
424
427
  }
425
428
  .dataTables_wrapper:after {
@@ -0,0 +1,15 @@
1
+ /*
2
+ *= require datatables/dataTables.bootstrap2
3
+ *
4
+ *optional add '=' enable
5
+ * require datatables/extensions/AutoFill/autoFill.bootstrap
6
+ * require datatables/extensions/Buttons/buttons.bootstrap
7
+ * require datatables/extensions/ColReorder/colReorder.bootstrap
8
+ * require datatables/extensions/FixedColumns/fixedColumns.bootstrap
9
+ * require datatables/extensions/FixedHeader/fixedHeader.bootstrap
10
+ * require datatables/extensions/KeyTable/keyTable.bootstrap
11
+ * require datatables/extensions/Responsive/responsive.bootstrap
12
+ * require datatables/extensions/RowReorder/rowReorder.bootstrap
13
+ * require datatables/extensions/Scroller/scroller.bootstrap
14
+ * require datatables/extensions/Select/select.bootstrap
15
+ */
@@ -0,0 +1,22 @@
1
+ //= require datatables/jquery.dataTables
2
+
3
+ //optional add '=' enable
4
+ // require datatables/extensions/AutoFill/dataTables.autoFill
5
+ // require datatables/extensions/Buttons/dataTables.buttons
6
+ // require datatables/extensions/Buttons/buttons.html5
7
+ // require datatables/extensions/Buttons/buttons.print
8
+ // require datatables/extensions/Buttons/buttons.colVis
9
+ // require datatables/extensions/Buttons/buttons.flash
10
+ // require datatables/extensions/ColReorder/dataTables.colReorder
11
+ // require datatables/extensions/FixedColumns/dataTables.fixedColumns
12
+ // require datatables/extensions/FixedHeader/dataTables.fixedHeader
13
+ // require datatables/extensions/KeyTable/dataTables.keyTable
14
+ // require datatables/extensions/Responsive/dataTables.responsive
15
+ // require datatables/extensions/RowReorder/dataTables.rowReorder
16
+ // require datatables/extensions/Scroller/dataTables.scroller
17
+ // require datatables/extensions/Select/dataTables.select
18
+
19
+ //= require datatables/dataTables.bootstrap2
20
+ // require datatables/extensions/AutoFill/autoFill.bootstrap
21
+ // require datatables/extensions/Buttons/buttons.bootstrap
22
+ // require datatables/extensions/Responsive/responsive.bootstrap
@@ -1,6 +1,6 @@
1
1
  module Jquery
2
2
  module Datatables
3
- VERSION = "1.10.13"
3
+ VERSION = "1.10.15"
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery-datatables
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.13
4
+ version: 1.10.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - mkhairi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-15 00:00:00.000000000 Z
11
+ date: 2017-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -112,6 +112,7 @@ files:
112
112
  - app/assets/images/datatables/sort_desc.png
113
113
  - app/assets/images/datatables/sort_desc_disabled.png
114
114
  - app/assets/javascripts/datatables/dataTables.bootstrap.js
115
+ - app/assets/javascripts/datatables/dataTables.bootstrap2.js
115
116
  - app/assets/javascripts/datatables/dataTables.bootstrap4.js
116
117
  - app/assets/javascripts/datatables/dataTables.foundation.js
117
118
  - app/assets/javascripts/datatables/dataTables.jqueryui.js
@@ -144,6 +145,7 @@ files:
144
145
  - app/assets/javascripts/datatables/extensions/Responsive/responsive.foundation.js
145
146
  - app/assets/javascripts/datatables/extensions/Responsive/responsive.jqueryui.js
146
147
  - app/assets/javascripts/datatables/extensions/Responsive/responsive.semanticui.js
148
+ - app/assets/javascripts/datatables/extensions/RowGroup/dataTables.rowGroup.js
147
149
  - app/assets/javascripts/datatables/extensions/RowReorder/dataTables.rowReorder.js
148
150
  - app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js
149
151
  - app/assets/javascripts/datatables/extensions/Select/dataTables.select.js
@@ -156,6 +158,7 @@ files:
156
158
  - app/assets/javascripts/datatables/plugins/sorting/ip-address.js
157
159
  - app/assets/media/swf/flashExport.swf
158
160
  - app/assets/stylesheets/datatables/dataTables.bootstrap.css
161
+ - app/assets/stylesheets/datatables/dataTables.bootstrap2.css
159
162
  - app/assets/stylesheets/datatables/dataTables.bootstrap4.css
160
163
  - app/assets/stylesheets/datatables/dataTables.foundation.css
161
164
  - app/assets/stylesheets/datatables/dataTables.jqueryui.css
@@ -206,6 +209,12 @@ files:
206
209
  - app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.css
207
210
  - app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.css
208
211
  - app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.css
212
+ - app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.css
213
+ - app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.css
214
+ - app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.css
215
+ - app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.css
216
+ - app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.css
217
+ - app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.css
209
218
  - app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.css
210
219
  - app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap4.css
211
220
  - app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.css
@@ -232,6 +241,8 @@ files:
232
241
  - lib/generators/jquery/datatables/install_generator.rb
233
242
  - lib/generators/jquery/datatables/templates/bootstrap.css.tt
234
243
  - lib/generators/jquery/datatables/templates/bootstrap.js.tt
244
+ - lib/generators/jquery/datatables/templates/bootstrap2.css.tt
245
+ - lib/generators/jquery/datatables/templates/bootstrap2.js.tt
235
246
  - lib/generators/jquery/datatables/templates/bootstrap4.css.tt
236
247
  - lib/generators/jquery/datatables/templates/bootstrap4.js.tt
237
248
  - lib/generators/jquery/datatables/templates/foundation.css.tt
@@ -269,7 +280,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
269
280
  version: '0'
270
281
  requirements: []
271
282
  rubyforge_project:
272
- rubygems_version: 2.5.1
283
+ rubygems_version: 2.6.11
273
284
  signing_key:
274
285
  specification_version: 4
275
286
  summary: Jquery DataTables web assets for Rails, etc.