jspreadsheet 11.10.4 → 11.11.1
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 +517 -474
- package/dist/index.js +565 -569
- package/dist/jspreadsheet.css +36 -2
- package/package.json +2 -2
package/dist/jspreadsheet.css
CHANGED
|
@@ -1022,7 +1022,7 @@
|
|
|
1022
1022
|
user-select: none;
|
|
1023
1023
|
box-shadow: 2px 2px 2px 0 rgba(143, 144, 145, 1);
|
|
1024
1024
|
border: 1px solid #C6C6C6;
|
|
1025
|
-
padding:
|
|
1025
|
+
padding: 15px;
|
|
1026
1026
|
margin: 0;
|
|
1027
1027
|
outline: none;
|
|
1028
1028
|
display: none;
|
|
@@ -1589,7 +1589,7 @@
|
|
|
1589
1589
|
|
|
1590
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 {
|
|
1591
1591
|
width: 100%;
|
|
1592
|
-
padding:
|
|
1592
|
+
padding: 6px 8px;
|
|
1593
1593
|
border: 1px solid #ccc;
|
|
1594
1594
|
box-sizing: border-box;
|
|
1595
1595
|
color: inherit;
|
|
@@ -1597,6 +1597,10 @@
|
|
|
1597
1597
|
font-size: inherit;
|
|
1598
1598
|
}
|
|
1599
1599
|
|
|
1600
|
+
.jss_style_form_group select {
|
|
1601
|
+
padding: 5px 8px;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1600
1604
|
.jss_style_form_group .jdropdown {
|
|
1601
1605
|
width: 100%;
|
|
1602
1606
|
}
|
|
@@ -1675,4 +1679,34 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1675
1679
|
|
|
1676
1680
|
.jss_result > td:first-child {
|
|
1677
1681
|
color: #d92b04;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
.jss_filters_sorting {
|
|
1685
|
+
margin-bottom: 6px;
|
|
1686
|
+
padding-bottom: 4px;
|
|
1687
|
+
border-bottom: 1px solid #d9d9d9;
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
.jss_filters_sorting > div {
|
|
1691
|
+
margin-bottom: 10px;
|
|
1692
|
+
padding: 2px 2px 2px 15px;
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
.jss_filters_sorting > div:hover {
|
|
1696
|
+
text-decoration: underline;
|
|
1697
|
+
cursor: pointer;
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.jss_filters_sorting_up::before {
|
|
1701
|
+
content: '\2191';
|
|
1702
|
+
position: absolute;
|
|
1703
|
+
margin-top: -2px;
|
|
1704
|
+
margin-left: -15px;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
.jss_filters_sorting_down::before {
|
|
1708
|
+
content: '\2193';
|
|
1709
|
+
position: absolute;
|
|
1710
|
+
margin-top: -2px;
|
|
1711
|
+
margin-left: -15px;
|
|
1678
1712
|
}
|
package/package.json
CHANGED