jspreadsheet 12.4.1 → 12.4.4

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.
@@ -10,7 +10,8 @@
10
10
  --jss-background-color-active: #777;
11
11
  --jss-background-color-input: #fff;
12
12
  --jss-icon-color: #555;
13
- --jss-warning-color: #ff0000;
13
+ --jss-warning-color: #ff3c00;
14
+ --jss-reject-color: #c80000;
14
15
  --jss-color: transparent;
15
16
  }
16
17
 
@@ -248,7 +249,7 @@
248
249
  }
249
250
 
250
251
  .jss > tbody > tr > td.readonly {
251
- color: rgba(0,0,0,0.4)
252
+ color: color-mix(in srgb, var(--jss-font-color) 40%, transparent)
252
253
  }
253
254
 
254
255
  .jss > tbody > tr > td > select,
@@ -901,10 +902,14 @@
901
902
 
902
903
  .jss_warning {
903
904
  border-left: 1px solid var(--jss-warning-color);
904
- background-color: color-mix(in srgb, var(--jss-warning-color) 12%, transparent);
905
+ background-color: color-mix(in srgb, var(--jss-warning-color) 6%, transparent);
905
906
  position: relative;
906
907
  }
907
908
 
909
+ .jss > tbody > tr > td.jss_warning {
910
+ border-left: 1px solid var(--jss-warning-color);
911
+ }
912
+
908
913
  .jss_warning:before {
909
914
  content: 'warning';
910
915
  font-family: "Material Symbols Outlined", "Material Icons", "FontAwesome";
@@ -920,6 +925,16 @@
920
925
  padding-left: 16px;
921
926
  }
922
927
 
928
+ .jss_warning.jss_reject {
929
+ border-left: 1px solid var(--jss-reject-color);
930
+ background-color: color-mix(in srgb, var(--jss-reject-color) 6%, transparent);
931
+ }
932
+
933
+ .jss_warning.jss_reject:before {
934
+ content: 'cancel';
935
+ color: var(--jss-reject-color);
936
+ }
937
+
923
938
  /** Filter **/
924
939
 
925
940
  .jss > thead > tr > th.jss_filters_icon::before {
package/package.json CHANGED
@@ -44,10 +44,10 @@
44
44
  "datasheet"
45
45
  ],
46
46
  "dependencies": {
47
- "jsuites": "^6.3.1",
47
+ "jsuites": "^6.3.4",
48
48
  "@jspreadsheet/formula-pro": "^6.0.5"
49
49
  },
50
50
  "main": "dist/index.js",
51
51
  "types": "dist/index.d.ts",
52
- "version": "12.4.1"
52
+ "version": "12.4.4"
53
53
  }