jspreadsheet 11.5.6 → 11.6.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.
- package/dist/index.d.ts +6 -6
- package/dist/index.js +561 -553
- package/dist/jspreadsheet.css +56 -7
- package/package.json +1 -1
package/dist/jspreadsheet.css
CHANGED
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='lightgray'/%3E%3C/svg%3E");
|
|
298
298
|
text-overflow: ellipsis;
|
|
299
299
|
overflow-x: hidden;
|
|
300
|
-
padding-right:
|
|
300
|
+
padding-right: 24px;
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
.jss > tbody > tr > td.jss_dropdown:hover {
|
|
@@ -1066,6 +1066,7 @@
|
|
|
1066
1066
|
|
|
1067
1067
|
.jss_filters_options {
|
|
1068
1068
|
border: 1px solid #d9d9d9;
|
|
1069
|
+
margin-bottom: 4px;
|
|
1069
1070
|
}
|
|
1070
1071
|
|
|
1071
1072
|
.jss_filters_options label {
|
|
@@ -1103,11 +1104,13 @@
|
|
|
1103
1104
|
margin: 5px;
|
|
1104
1105
|
}
|
|
1105
1106
|
|
|
1106
|
-
.
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1107
|
+
.jss_filters_actions {
|
|
1108
|
+
text-align: right;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.jss_filters_actions input {
|
|
1112
|
+
padding: 2px 10px;
|
|
1113
|
+
margin: 2px;
|
|
1111
1114
|
}
|
|
1112
1115
|
|
|
1113
1116
|
.jss_helper {
|
|
@@ -1286,6 +1289,7 @@
|
|
|
1286
1289
|
font-family: "Material Icons";
|
|
1287
1290
|
color: #000;
|
|
1288
1291
|
position: absolute;
|
|
1292
|
+
top: calc(50% - 9px);
|
|
1289
1293
|
right: 5px;
|
|
1290
1294
|
cursor: pointer;
|
|
1291
1295
|
}
|
|
@@ -1583,7 +1587,7 @@
|
|
|
1583
1587
|
padding-bottom: 4px;
|
|
1584
1588
|
}
|
|
1585
1589
|
|
|
1586
|
-
.jss_style_form_group input[type="text"], .jss_style_form_group input[type="number"], .jss_style_form_group select {
|
|
1590
|
+
.jss_style_form_group input[type="text"], .jss_style_form_group input[type="number"], .jss_style_form_group select, .jss_style_form_group textarea {
|
|
1587
1591
|
width: 100%;
|
|
1588
1592
|
padding: 5px 8px 5px 8px;
|
|
1589
1593
|
border: 1px solid #ccc;
|
|
@@ -1628,3 +1632,48 @@
|
|
|
1628
1632
|
.jss input[disabled] {
|
|
1629
1633
|
opacity: 0.6;
|
|
1630
1634
|
}
|
|
1635
|
+
|
|
1636
|
+
.jss_actions {
|
|
1637
|
+
float: right;
|
|
1638
|
+
display: block;
|
|
1639
|
+
height: 16px;
|
|
1640
|
+
margin-left: 4px;
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
div.jss_filters_icon {
|
|
1644
|
+
font-size: 15px;
|
|
1645
|
+
width: 15px;
|
|
1646
|
+
padding: 1px;
|
|
1647
|
+
border-radius: 2px;
|
|
1648
|
+
color: grey;
|
|
1649
|
+
cursor: pointer;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
div.jss_filters_icon:hover {
|
|
1653
|
+
color: white;
|
|
1654
|
+
background-color: #d92b04;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
div.jss_filters_icon::before {
|
|
1658
|
+
font-family: "Material Icons";
|
|
1659
|
+
content: 'filter_list';
|
|
1660
|
+
font-size: 15px;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
div.jss_filters_icon.jss_filters_active {
|
|
1664
|
+
color: white;
|
|
1665
|
+
background-color: #d92b04;
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
div.jss_filters_icon.jss_filters_active:hover {
|
|
1669
|
+
color: grey;
|
|
1670
|
+
background-color: inherit;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
div.jss_filters_icon.jss_filters_active::before {
|
|
1674
|
+
content: 'filter_alt';
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.jss_result > td:first-child {
|
|
1678
|
+
color: #d92b04;
|
|
1679
|
+
}
|
package/package.json
CHANGED