tabulator-rails 1.0.5 → 1.1.0
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.
- checksums.yaml +4 -4
- data/VERSIONS.md +1 -0
- data/lib/tabulator-rails/version.rb +1 -1
- data/vendor/assets/javascripts/tabulator.js +2694 -654
- data/vendor/assets/stylesheets/tabulator.css +139 -1
- metadata +2 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
/* Tabulator v4.0
|
1
|
+
/* Tabulator v4.1.0 (c) Oliver Folkerd */
|
2
2
|
.tabulator {
|
3
3
|
position: relative;
|
4
4
|
border: 1px solid #999;
|
@@ -157,6 +157,38 @@
|
|
157
157
|
border-bottom: none;
|
158
158
|
}
|
159
159
|
|
160
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical .tabulator-col-content .tabulator-col-title {
|
161
|
+
-webkit-writing-mode: vertical-rl;
|
162
|
+
-ms-writing-mode: tb-rl;
|
163
|
+
writing-mode: vertical-rl;
|
164
|
+
text-orientation: mixed;
|
165
|
+
display: -ms-flexbox;
|
166
|
+
display: flex;
|
167
|
+
-ms-flex-align: center;
|
168
|
+
align-items: center;
|
169
|
+
-ms-flex-pack: center;
|
170
|
+
justify-content: center;
|
171
|
+
}
|
172
|
+
|
173
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip .tabulator-col-title {
|
174
|
+
-ms-transform: rotate(180deg);
|
175
|
+
transform: rotate(180deg);
|
176
|
+
}
|
177
|
+
|
178
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-title {
|
179
|
+
padding-right: 0;
|
180
|
+
padding-top: 20px;
|
181
|
+
}
|
182
|
+
|
183
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip .tabulator-col-title {
|
184
|
+
padding-right: 0;
|
185
|
+
padding-bottom: 20px;
|
186
|
+
}
|
187
|
+
|
188
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-arrow {
|
189
|
+
right: calc(50% - 6px);
|
190
|
+
}
|
191
|
+
|
160
192
|
.tabulator .tabulator-header .tabulator-frozen {
|
161
193
|
display: inline-block;
|
162
194
|
position: absolute;
|
@@ -531,6 +563,76 @@
|
|
531
563
|
background: #666;
|
532
564
|
}
|
533
565
|
|
566
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-branch {
|
567
|
+
display: inline-block;
|
568
|
+
vertical-align: middle;
|
569
|
+
height: 9px;
|
570
|
+
width: 7px;
|
571
|
+
margin-top: -9px;
|
572
|
+
margin-right: 5px;
|
573
|
+
border-bottom-left-radius: 1px;
|
574
|
+
border-left: 2px solid #aaa;
|
575
|
+
border-bottom: 2px solid #aaa;
|
576
|
+
}
|
577
|
+
|
578
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-control {
|
579
|
+
display: -ms-inline-flexbox;
|
580
|
+
display: inline-flex;
|
581
|
+
-ms-flex-pack: center;
|
582
|
+
justify-content: center;
|
583
|
+
-ms-flex-align: center;
|
584
|
+
align-items: center;
|
585
|
+
vertical-align: middle;
|
586
|
+
height: 11px;
|
587
|
+
width: 11px;
|
588
|
+
margin-right: 5px;
|
589
|
+
border: 1px solid #333;
|
590
|
+
border-radius: 2px;
|
591
|
+
background: rgba(0, 0, 0, 0.1);
|
592
|
+
overflow: hidden;
|
593
|
+
}
|
594
|
+
|
595
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {
|
596
|
+
cursor: pointer;
|
597
|
+
background: rgba(0, 0, 0, 0.2);
|
598
|
+
}
|
599
|
+
|
600
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
|
601
|
+
display: inline-block;
|
602
|
+
position: relative;
|
603
|
+
height: 7px;
|
604
|
+
width: 1px;
|
605
|
+
background: transparent;
|
606
|
+
}
|
607
|
+
|
608
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
|
609
|
+
position: absolute;
|
610
|
+
content: "";
|
611
|
+
left: -3px;
|
612
|
+
top: 3px;
|
613
|
+
height: 1px;
|
614
|
+
width: 7px;
|
615
|
+
background: #333;
|
616
|
+
}
|
617
|
+
|
618
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {
|
619
|
+
display: inline-block;
|
620
|
+
position: relative;
|
621
|
+
height: 7px;
|
622
|
+
width: 1px;
|
623
|
+
background: #333;
|
624
|
+
}
|
625
|
+
|
626
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
|
627
|
+
position: absolute;
|
628
|
+
content: "";
|
629
|
+
left: -3px;
|
630
|
+
top: 3px;
|
631
|
+
height: 1px;
|
632
|
+
width: 7px;
|
633
|
+
background: #333;
|
634
|
+
}
|
635
|
+
|
534
636
|
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {
|
535
637
|
display: -ms-inline-flexbox;
|
536
638
|
display: inline-flex;
|
@@ -628,3 +730,39 @@
|
|
628
730
|
margin-left: 10px;
|
629
731
|
color: #d00;
|
630
732
|
}
|
733
|
+
|
734
|
+
.tabulator-edit-select-list {
|
735
|
+
position: absolute;
|
736
|
+
display: inline-block;
|
737
|
+
box-sizing: border-box;
|
738
|
+
max-height: 200px;
|
739
|
+
background: #fff;
|
740
|
+
border: 1px solid #aaa;
|
741
|
+
font-size: 14px;
|
742
|
+
overflow-y: auto;
|
743
|
+
-webkit-overflow-scrolling: touch;
|
744
|
+
}
|
745
|
+
|
746
|
+
.tabulator-edit-select-list .tabulator-edit-select-list-item {
|
747
|
+
padding: 4px;
|
748
|
+
color: #333;
|
749
|
+
}
|
750
|
+
|
751
|
+
.tabulator-edit-select-list .tabulator-edit-select-list-item.active {
|
752
|
+
color: #fff;
|
753
|
+
background: #1D68CD;
|
754
|
+
}
|
755
|
+
|
756
|
+
.tabulator-edit-select-list .tabulator-edit-select-list-item:hover {
|
757
|
+
cursor: pointer;
|
758
|
+
color: #fff;
|
759
|
+
background: #1D68CD;
|
760
|
+
}
|
761
|
+
|
762
|
+
.tabulator-edit-select-list .tabulator-edit-select-list-group {
|
763
|
+
border-bottom: 1px solid #aaa;
|
764
|
+
padding: 4px;
|
765
|
+
padding-top: 6px;
|
766
|
+
color: #333;
|
767
|
+
font-weight: bold;
|
768
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tabulator-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- tanvir hasan
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-11-
|
11
|
+
date: 2018-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|