jspreadsheet 12.0.0-beta.9 → 12.0.1
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 +14 -12
- package/dist/index.js +571 -601
- package/dist/jspreadsheet.css +35 -31
- package/package.json +3 -3
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
|
}
|
|
@@ -312,6 +319,14 @@
|
|
|
312
319
|
white-space: initial !important;
|
|
313
320
|
}
|
|
314
321
|
|
|
322
|
+
.jss > tbody > tr > td > div.jss_notes {
|
|
323
|
+
overflow: hidden;
|
|
324
|
+
display: -webkit-box;
|
|
325
|
+
-webkit-line-clamp: 1;
|
|
326
|
+
-webkit-box-orient: vertical;
|
|
327
|
+
text-overflow: ellipsis;
|
|
328
|
+
}
|
|
329
|
+
|
|
315
330
|
.jss > tbody > tr > td > .color {
|
|
316
331
|
width:90%;
|
|
317
332
|
height:10px;
|
|
@@ -604,7 +619,7 @@
|
|
|
604
619
|
}
|
|
605
620
|
|
|
606
621
|
.jss_media_item[data-type="chart"] {
|
|
607
|
-
background-color:
|
|
622
|
+
background-color: var(--jss-background-color-input);
|
|
608
623
|
}
|
|
609
624
|
|
|
610
625
|
.jss_image > img {
|
|
@@ -655,6 +670,8 @@
|
|
|
655
670
|
display: flex;
|
|
656
671
|
justify-content: space-between;
|
|
657
672
|
background-color: var(--jss-background-color-header);
|
|
673
|
+
border: 1px solid var(--jss-border-color);
|
|
674
|
+
margin-bottom: 1px;
|
|
658
675
|
}
|
|
659
676
|
|
|
660
677
|
.jss_search_container > div {
|
|
@@ -691,8 +708,9 @@
|
|
|
691
708
|
line-height: 34px;
|
|
692
709
|
border: 1px solid var(--jss-border-color);
|
|
693
710
|
box-sizing: border-box;
|
|
694
|
-
margin-left:
|
|
711
|
+
margin-left: 3px;
|
|
695
712
|
cursor: pointer;
|
|
713
|
+
border-radius: 18px;
|
|
696
714
|
}
|
|
697
715
|
|
|
698
716
|
.jss_pagination_dropdown {
|
|
@@ -1112,6 +1130,7 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1112
1130
|
position: relative;
|
|
1113
1131
|
padding: 6px 8px;
|
|
1114
1132
|
border: 1px solid var(--jss-border-color);
|
|
1133
|
+
background-color: var(--jss-background-color-input);
|
|
1115
1134
|
}
|
|
1116
1135
|
|
|
1117
1136
|
.jss_picker:after {
|
|
@@ -1139,35 +1158,23 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1139
1158
|
|
|
1140
1159
|
/** Tabs */
|
|
1141
1160
|
|
|
1142
|
-
.
|
|
1161
|
+
.jss_container {
|
|
1143
1162
|
max-width: initial;
|
|
1144
1163
|
}
|
|
1145
1164
|
|
|
1146
|
-
.
|
|
1147
|
-
display:none;
|
|
1148
|
-
}
|
|
1149
|
-
|
|
1150
|
-
.jss_tabs > .jss_tab_link {
|
|
1151
|
-
display: inline-block;
|
|
1152
|
-
padding: 10px 20px;
|
|
1153
|
-
margin: 0 5px 5px 0;
|
|
1154
|
-
background-color: var(--jss-background-color-header);
|
|
1155
|
-
cursor: pointer;
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
.jss_tabs > .jss_tab_link.selected {
|
|
1159
|
-
background-color: #ddd;
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
.jtabs .jtabs-headers > div:not(.jtabs-border) {
|
|
1165
|
+
.jss_container .jtabs-headers > div:not(.jtabs-border) {
|
|
1163
1166
|
background-color: var(--jss-background-color-header);
|
|
1164
1167
|
color: var(--jss-font-color);
|
|
1165
1168
|
}
|
|
1166
1169
|
|
|
1167
|
-
.
|
|
1170
|
+
.jss_container .jtabs-headers > div.jtabs-selected {
|
|
1168
1171
|
background-color: var(--jss-background-color-highlight);
|
|
1169
1172
|
}
|
|
1170
1173
|
|
|
1174
|
+
.jss_container .jtabs-content > div.jtabs-selected {
|
|
1175
|
+
display: flex !important;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1171
1178
|
/** Toolbars */
|
|
1172
1179
|
|
|
1173
1180
|
.jss_toolbar {
|
|
@@ -1247,7 +1254,7 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1247
1254
|
.jss_editor {
|
|
1248
1255
|
pointer-events: none;
|
|
1249
1256
|
position: absolute;
|
|
1250
|
-
z-index:
|
|
1257
|
+
z-index: 7;
|
|
1251
1258
|
opacity: 0;
|
|
1252
1259
|
}
|
|
1253
1260
|
|
|
@@ -1346,21 +1353,17 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1346
1353
|
height: 240px;
|
|
1347
1354
|
padding: 10px;
|
|
1348
1355
|
outline: 2px solid black;
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
.jss_color {
|
|
1352
|
-
position: relative;
|
|
1356
|
+
overflow: auto;
|
|
1353
1357
|
}
|
|
1354
1358
|
|
|
1355
1359
|
.jss_color:before {
|
|
1356
1360
|
content: '';
|
|
1357
|
-
position: absolute;
|
|
1358
|
-
margin-top: 2px;
|
|
1359
|
-
margin-left: -16px;
|
|
1360
1361
|
width: 12px;
|
|
1361
1362
|
height: 12px;
|
|
1362
1363
|
border-radius: 12px;
|
|
1363
1364
|
background-color: var(--jss-color);
|
|
1365
|
+
float: left;
|
|
1366
|
+
margin: 2px 4px;
|
|
1364
1367
|
}
|
|
1365
1368
|
|
|
1366
1369
|
/** Visibility */
|
|
@@ -1508,6 +1511,7 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1508
1511
|
color: inherit;
|
|
1509
1512
|
font-family: inherit;
|
|
1510
1513
|
font-size: inherit;
|
|
1514
|
+
background-color: var(--jss-background-color-input);
|
|
1511
1515
|
}
|
|
1512
1516
|
|
|
1513
1517
|
.jss_style_form_group select {
|
|
@@ -1630,4 +1634,4 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1630
1634
|
.jss_modern .jss_search_container {
|
|
1631
1635
|
background: initial;
|
|
1632
1636
|
border: initial;
|
|
1633
|
-
}
|
|
1637
|
+
}
|
package/package.json
CHANGED
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"datasheet"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"jsuites": "^6.0.0
|
|
48
|
-
"@jspreadsheet/formula-pro": "^6.0.
|
|
47
|
+
"jsuites": "^6.0.0",
|
|
48
|
+
"@jspreadsheet/formula-pro": "^6.0.1"
|
|
49
49
|
},
|
|
50
50
|
"main": "dist/index.js",
|
|
51
51
|
"types": "dist/index.d.ts",
|
|
52
|
-
"version": "12.0.
|
|
52
|
+
"version": "12.0.1"
|
|
53
53
|
}
|