jspreadsheet 12.0.0-beta.11 → 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 +7 -5
- package/dist/index.js +604 -568
- package/dist/jspreadsheet.css +18 -11
- package/package.json +2 -2
package/dist/jspreadsheet.css
CHANGED
|
@@ -8,13 +8,15 @@
|
|
|
8
8
|
--jss-background-color-header: #f8f8f8;
|
|
9
9
|
--jss-background-color-highlight: #e8e8e8;
|
|
10
10
|
--jss-background-color-active: #777;
|
|
11
|
+
--jss-background-color-input: #fff;
|
|
11
12
|
--jss-icon-color: #555;
|
|
12
13
|
--jss-warning-color: #ff0000;
|
|
14
|
+
--jss-color: transparent;
|
|
13
15
|
}
|
|
14
16
|
|
|
15
17
|
.lm-dark-mode {
|
|
16
18
|
--jss-font-color: #ddd;
|
|
17
|
-
--jss-border-color: #
|
|
19
|
+
--jss-border-color: #444;
|
|
18
20
|
--jss-border-color-light: #191919;
|
|
19
21
|
--jss-border-color-highlight: #555;
|
|
20
22
|
--jss-border-outline: #fff;
|
|
@@ -22,6 +24,7 @@
|
|
|
22
24
|
--jss-background-color-header: #222;
|
|
23
25
|
--jss-background-color-highlight: #333;
|
|
24
26
|
--jss-background-color-active: #888;
|
|
27
|
+
--jss-background-color-input: #181818;
|
|
25
28
|
--jss-icon-color: #ccc;
|
|
26
29
|
}
|
|
27
30
|
|
|
@@ -119,6 +122,10 @@
|
|
|
119
122
|
border:1px solid red;
|
|
120
123
|
}
|
|
121
124
|
|
|
125
|
+
.jss_red {
|
|
126
|
+
color: red;
|
|
127
|
+
}
|
|
128
|
+
|
|
122
129
|
.jss.jss_left > tbody > tr > td, .jss > tbody > tr > td.jss_left {
|
|
123
130
|
text-align: left;
|
|
124
131
|
}
|
|
@@ -604,7 +611,7 @@
|
|
|
604
611
|
}
|
|
605
612
|
|
|
606
613
|
.jss_media_item[data-type="chart"] {
|
|
607
|
-
background-color:
|
|
614
|
+
background-color: var(--jss-background-color-input);
|
|
608
615
|
}
|
|
609
616
|
|
|
610
617
|
.jss_image > img {
|
|
@@ -655,6 +662,8 @@
|
|
|
655
662
|
display: flex;
|
|
656
663
|
justify-content: space-between;
|
|
657
664
|
background-color: var(--jss-background-color-header);
|
|
665
|
+
border: 1px solid var(--jss-border-color);
|
|
666
|
+
margin-bottom: 1px;
|
|
658
667
|
}
|
|
659
668
|
|
|
660
669
|
.jss_search_container > div {
|
|
@@ -691,8 +700,9 @@
|
|
|
691
700
|
line-height: 34px;
|
|
692
701
|
border: 1px solid var(--jss-border-color);
|
|
693
702
|
box-sizing: border-box;
|
|
694
|
-
margin-left:
|
|
703
|
+
margin-left: 3px;
|
|
695
704
|
cursor: pointer;
|
|
705
|
+
border-radius: 18px;
|
|
696
706
|
}
|
|
697
707
|
|
|
698
708
|
.jss_pagination_dropdown {
|
|
@@ -1112,6 +1122,7 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1112
1122
|
position: relative;
|
|
1113
1123
|
padding: 6px 8px;
|
|
1114
1124
|
border: 1px solid var(--jss-border-color);
|
|
1125
|
+
background-color: var(--jss-background-color-input);
|
|
1115
1126
|
}
|
|
1116
1127
|
|
|
1117
1128
|
.jss_picker:after {
|
|
@@ -1247,7 +1258,7 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1247
1258
|
.jss_editor {
|
|
1248
1259
|
pointer-events: none;
|
|
1249
1260
|
position: absolute;
|
|
1250
|
-
z-index:
|
|
1261
|
+
z-index: 7;
|
|
1251
1262
|
opacity: 0;
|
|
1252
1263
|
}
|
|
1253
1264
|
|
|
@@ -1348,19 +1359,14 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1348
1359
|
outline: 2px solid black;
|
|
1349
1360
|
}
|
|
1350
1361
|
|
|
1351
|
-
.jss_color {
|
|
1352
|
-
position: relative;
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
1362
|
.jss_color:before {
|
|
1356
1363
|
content: '';
|
|
1357
|
-
position: absolute;
|
|
1358
|
-
margin-top: 2px;
|
|
1359
|
-
margin-left: -16px;
|
|
1360
1364
|
width: 12px;
|
|
1361
1365
|
height: 12px;
|
|
1362
1366
|
border-radius: 12px;
|
|
1363
1367
|
background-color: var(--jss-color);
|
|
1368
|
+
float: left;
|
|
1369
|
+
margin: 2px 4px;
|
|
1364
1370
|
}
|
|
1365
1371
|
|
|
1366
1372
|
/** Visibility */
|
|
@@ -1508,6 +1514,7 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1508
1514
|
color: inherit;
|
|
1509
1515
|
font-family: inherit;
|
|
1510
1516
|
font-size: inherit;
|
|
1517
|
+
background-color: var(--jss-background-color-input);
|
|
1511
1518
|
}
|
|
1512
1519
|
|
|
1513
1520
|
.jss_style_form_group select {
|
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
|
}
|