jspreadsheet 12.7.0 → 12.8.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/formulas.json +1 -0
- package/dist/index.d.ts +75 -0
- package/dist/index.js +637 -635
- package/dist/jspreadsheet.css +48 -0
- package/package.json +2 -2
package/dist/jspreadsheet.css
CHANGED
|
@@ -1386,6 +1386,12 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1386
1386
|
margin: 2px 4px;
|
|
1387
1387
|
}
|
|
1388
1388
|
|
|
1389
|
+
.jss_input > .jeditor-container {
|
|
1390
|
+
width: 100%;
|
|
1391
|
+
border: 0;
|
|
1392
|
+
padding-right: 24px;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1389
1395
|
/** Visibility */
|
|
1390
1396
|
|
|
1391
1397
|
.jss_collapsed_col, .jss_collapsed_row {
|
|
@@ -1655,3 +1661,45 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1655
1661
|
background: initial;
|
|
1656
1662
|
border: initial;
|
|
1657
1663
|
}
|
|
1664
|
+
|
|
1665
|
+
.jss_suggestions {
|
|
1666
|
+
position: absolute;
|
|
1667
|
+
top: 100%;
|
|
1668
|
+
left: 0;
|
|
1669
|
+
min-width: 280px;
|
|
1670
|
+
max-width: 420px;
|
|
1671
|
+
max-height: 280px;
|
|
1672
|
+
overflow-y: auto;
|
|
1673
|
+
scrollbar-width: thin;
|
|
1674
|
+
z-index: 10;
|
|
1675
|
+
background-color: var(--jss-background-color, #fff);
|
|
1676
|
+
box-shadow: 1px 1px 7px 1px #bbb;
|
|
1677
|
+
user-select: none;
|
|
1678
|
+
font-size: 0.9em;
|
|
1679
|
+
pointer-events: initial;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.jss_suggestions_row {
|
|
1683
|
+
padding: 8px 12px;
|
|
1684
|
+
cursor: pointer;
|
|
1685
|
+
border-bottom: 1px solid #eee;
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
.jss_suggestions_row:last-child {
|
|
1689
|
+
border-bottom: 0;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
.jss_suggestions_row:hover,
|
|
1693
|
+
.jss_suggestions_row[data-selected="true"] {
|
|
1694
|
+
background-color: #eee;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
.jss_suggestions_title {
|
|
1698
|
+
font-family: monospace;
|
|
1699
|
+
margin-bottom: 4px;
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
.jss_suggestions_desc {
|
|
1703
|
+
color: #777;
|
|
1704
|
+
font-size: 0.95em;
|
|
1705
|
+
}
|
package/package.json
CHANGED