jspreadsheet 12.6.1 → 12.8.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.
@@ -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
@@ -44,10 +44,10 @@
44
44
  "datasheet"
45
45
  ],
46
46
  "dependencies": {
47
- "jsuites": "^6.3.6",
48
- "@jspreadsheet/formula-pro": "^6.0.7"
47
+ "jsuites": "^6.4.0",
48
+ "@jspreadsheet/formula-pro": "^6.0.8"
49
49
  },
50
50
  "main": "dist/index.js",
51
51
  "types": "dist/index.d.ts",
52
- "version": "12.6.1"
52
+ "version": "12.8.0"
53
53
  }