gridjs-spreadsheet 25.11.0 → 25.12.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/example/pom.xml CHANGED
@@ -17,7 +17,7 @@
17
17
  </repositories>
18
18
  <groupId>com.aspose.gridjs</groupId>
19
19
  <artifactId>gridjsdemo</artifactId>
20
- <version>25.11</version>
20
+ <version>25.12</version>
21
21
  <name>gridjsdemo</name>
22
22
  <description>GridJs Demo project for Spring Boot</description>
23
23
  <properties>
@@ -51,12 +51,12 @@
51
51
  <dependency>
52
52
  <groupId>com.aspose</groupId>
53
53
  <artifactId>aspose-cells</artifactId>
54
- <version>25.11</version>
54
+ <version>25.12</version>
55
55
  </dependency>
56
56
  <dependency>
57
57
  <groupId>com.aspose</groupId>
58
58
  <artifactId>aspose-cells</artifactId>
59
- <version>25.11</version>
59
+ <version>25.12</version>
60
60
  <classifier>gridjs</classifier>
61
61
  </dependency>
62
62
  <!-- <dependency>
@@ -7,9 +7,9 @@
7
7
  x="0px"
8
8
  y="0px"
9
9
  width="262"
10
- height="130"
11
- viewBox="0 0 262 130"
12
- enable-background="new 0 0 262 72"
10
+ height="148"
11
+ viewBox="0 0 262 148"
12
+ enable-background="new 0 0 262 148"
13
13
  xml:space="preserve"
14
14
  sodipodi:docname="method-draw-image-new.svg"
15
15
  inkscape:version="1.3 (0e150ed, 2023-07-21)"
@@ -1004,4 +1004,24 @@
1004
1004
  id="g49"> &#10; <text
1005
1005
  text-anchor="middle"
1006
1006
  font-size="11px"
1007
- id="text48">fx</text> &#10; </g> &#10; </g>&#10; </svg>
1007
+ id="text48">fx</text> &#10; </g> &#10; </g>&#10;
1008
+
1009
+ <g id="translate" transform="matrix(1,0,0,1,0,126)" aria-label="Translate">
1010
+ <title>Translate</title>
1011
+ <!-- Globe base -->
1012
+ <circle cx="9" cy="9" r="8" fill="#1976D2"/>
1013
+ <!-- Latitude line -->
1014
+ <path d="M1 9 a8 4 0 0 0 16 0" fill="none" stroke="#FFFFFF" stroke-width="1"/>
1015
+ <!-- Longitude line -->
1016
+ <path d="M9 1 a4 8 0 0 1 0 16 a4 8 0 0 1 0 -16" fill="none" stroke="#FFFFFF" stroke-width="1"/>
1017
+ <!-- Clockwise arrow -->
1018
+ <path d="M5 13 a4 4 0 0 0 8 0" fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-linecap="round"/>
1019
+ <path d="M13 13 L13 11 L11 13" fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-linecap="round"/>
1020
+ <!-- Counter?clockwise arrow -->
1021
+ <path d="M13 5 a4 4 0 0 0 -8 0" fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-linecap="round"/>
1022
+ <path d="M5 5 L5 7 L7 5" fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-linecap="round"/>
1023
+ <!-- Small "A?Ω" glyph -->
1024
+ <text x="9" y="11.5" text-anchor="middle" font-family="sans-serif" font-size="5px" fill="#FFFFFF">A?Ω</text>
1025
+ </g>
1026
+ &#10;
1027
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gridjs-spreadsheet",
3
- "version": "25.11.0",
3
+ "version": "25.12.0",
4
4
  "description": "this is the client side script for GridJs which is a lightweight, scalable, and customizable toolkit that provides cross-platform web applications, enables convenient development for editing or viewing Excel/Spreadsheet files, offers simple deployment, and provides easy-to-use APIs based on JSON format.",
5
5
  "types": "index.d.ts",
6
6
  "main": "xspreadsheet.js",
package/readme.md CHANGED
@@ -363,7 +363,12 @@ v25.10:
363
363
  v25.11:
364
364
 
365
365
  - Support fill color settings for charts
366
- - Support 'Fill Color ' 'Font Color' button dropdown selection and click to fill.
366
+ - Support 'Fill Color ' and 'Font Color' button dropdown selection and click to fill
367
+
368
+ v25.12:
369
+
370
+ - Support sort by cell color/font color
371
+ - Support add multiple selection validation list
367
372
 
368
373
  ## License
369
374
 
package/xspreadsheet.css CHANGED
@@ -222,6 +222,7 @@ body {
222
222
  .x-spreadsheet-dropdown .x-spreadsheet-dropdown-content {
223
223
  position: absolute;
224
224
  z-index: 200;
225
+ width: max-content;
225
226
  background: white;
226
227
  border: 1px solid #ccc;
227
228
  border-radius: 2px;
@@ -426,6 +427,15 @@ body {
426
427
  width: 100%;
427
428
  height: 100%;
428
429
  }
430
+ .x-spreadsheet-batch-insert-row {
431
+ position: absolute;
432
+ display: flex;
433
+ align-items: center;
434
+ padding: 8px 6px;
435
+ background: #f5f6f7;
436
+ border-top: 1px solid #e0e2e4;
437
+ z-index: 15;
438
+ }
429
439
  .x-spreadsheet-editor,
430
440
  .x-spreadsheet-selector {
431
441
  box-sizing: content-box;
@@ -555,7 +565,7 @@ body {
555
565
  cursor: default;
556
566
  text-align: left;
557
567
  overflow: hidden;
558
- width: max-content;
568
+ width: 100%;
559
569
  display: flex;
560
570
  align-items: center;
561
571
  gap: 8px;
@@ -653,6 +663,10 @@ body {
653
663
  .x-spreadsheet-suggest {
654
664
  width: 200px;
655
665
  }
666
+ .x-spreadsheet-validation-list-item-selected {
667
+ background: rgba(33, 133, 208, 0.1) !important;
668
+ border-left: 3px solid #2185D0;
669
+ }
656
670
  .x-spreadsheet-filter {
657
671
  border: 1px solid #e9e9e9;
658
672
  font-size: 12px;
@@ -1604,7 +1618,7 @@ form fieldset select {
1604
1618
  display: inline-block;
1605
1619
  }
1606
1620
  .x-spreadsheet-icon .x-spreadsheet-icon-img {
1607
- background-image: url(d8a61c22046be134a6e067e41bcf53b5.svg);
1621
+ background-image: url(fa58a9189afab326b8fd7fe6b4751ae5.svg);
1608
1622
  position: absolute;
1609
1623
  width: 262px;
1610
1624
  height: 444px;
@@ -1690,6 +1704,10 @@ form fieldset select {
1690
1704
  left: -18px;
1691
1705
  top: -108px;
1692
1706
  }
1707
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.translate {
1708
+ left: 0;
1709
+ top: -126px;
1710
+ }
1693
1711
  .x-spreadsheet-icon .x-spreadsheet-icon-img.showformulas {
1694
1712
  left: -36px;
1695
1713
  top: -108px;