jspreadsheet 12.0.0-beta.12 → 12.0.0-beta.13
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 +5 -3
- package/dist/index.js +605 -606
- package/dist/jspreadsheet.css +10 -8
- package/package.json +2 -2
package/dist/jspreadsheet.css
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
--jss-background-color-input: #fff;
|
|
12
12
|
--jss-icon-color: #555;
|
|
13
13
|
--jss-warning-color: #ff0000;
|
|
14
|
+
--jss-color: transparent;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
.lm-dark-mode {
|
|
@@ -121,6 +122,10 @@
|
|
|
121
122
|
border:1px solid red;
|
|
122
123
|
}
|
|
123
124
|
|
|
125
|
+
.jss_red {
|
|
126
|
+
color: red;
|
|
127
|
+
}
|
|
128
|
+
|
|
124
129
|
.jss.jss_left > tbody > tr > td, .jss > tbody > tr > td.jss_left {
|
|
125
130
|
text-align: left;
|
|
126
131
|
}
|
|
@@ -657,6 +662,8 @@
|
|
|
657
662
|
display: flex;
|
|
658
663
|
justify-content: space-between;
|
|
659
664
|
background-color: var(--jss-background-color-header);
|
|
665
|
+
border: 1px solid var(--jss-border-color);
|
|
666
|
+
margin-bottom: 1px;
|
|
660
667
|
}
|
|
661
668
|
|
|
662
669
|
.jss_search_container > div {
|
|
@@ -1251,7 +1258,7 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1251
1258
|
.jss_editor {
|
|
1252
1259
|
pointer-events: none;
|
|
1253
1260
|
position: absolute;
|
|
1254
|
-
z-index:
|
|
1261
|
+
z-index: 7;
|
|
1255
1262
|
opacity: 0;
|
|
1256
1263
|
}
|
|
1257
1264
|
|
|
@@ -1352,19 +1359,14 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1352
1359
|
outline: 2px solid black;
|
|
1353
1360
|
}
|
|
1354
1361
|
|
|
1355
|
-
.jss_color {
|
|
1356
|
-
position: relative;
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
1362
|
.jss_color:before {
|
|
1360
1363
|
content: '';
|
|
1361
|
-
position: absolute;
|
|
1362
|
-
margin-top: 2px;
|
|
1363
|
-
margin-left: -16px;
|
|
1364
1364
|
width: 12px;
|
|
1365
1365
|
height: 12px;
|
|
1366
1366
|
border-radius: 12px;
|
|
1367
1367
|
background-color: var(--jss-color);
|
|
1368
|
+
float: left;
|
|
1369
|
+
margin: 2px 4px;
|
|
1368
1370
|
}
|
|
1369
1371
|
|
|
1370
1372
|
/** Visibility */
|
package/package.json
CHANGED
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"datasheet"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"jsuites": "^6.0.0-beta.
|
|
47
|
+
"jsuites": "^6.0.0-beta.14",
|
|
48
48
|
"@jspreadsheet/formula-pro": "^6.0.0-beta.1"
|
|
49
49
|
},
|
|
50
50
|
"main": "dist/index.js",
|
|
51
51
|
"types": "dist/index.d.ts",
|
|
52
|
-
"version": "12.0.0-beta.
|
|
52
|
+
"version": "12.0.0-beta.13"
|
|
53
53
|
}
|