@sheinx/shineout-style 3.5.0-beta.5 → 3.5.0-beta.6
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/cjs/select/select.js +1 -1
- package/cjs/table/table.d.ts.map +1 -1
- package/cjs/table/table.js +37 -8
- package/cjs/version.d.ts +1 -1
- package/cjs/version.js +1 -1
- package/esm/select/select.js +1 -1
- package/esm/table/table.d.ts.map +1 -1
- package/esm/table/table.js +37 -8
- package/esm/version.d.ts +1 -1
- package/esm/version.js +1 -1
- package/package.json +3 -3
package/cjs/select/select.js
CHANGED
package/cjs/table/table.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAUxC,MAAM,MAAM,cAAc,GAAG,MAAM,YAAY,CAAC;AAUhD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,cAAc,
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAUxC,MAAM,MAAM,cAAc,GAAG,MAAM,YAAY,CAAC;AAUhD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,cAAc,CAuexC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/cjs/table/table.js
CHANGED
|
@@ -151,7 +151,7 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
151
151
|
borderTop: 'none',
|
|
152
152
|
'&::before': {
|
|
153
153
|
position: 'absolute',
|
|
154
|
-
zIndex:
|
|
154
|
+
zIndex: fixedFixedIndex + 3,
|
|
155
155
|
content: '""',
|
|
156
156
|
display: 'block',
|
|
157
157
|
top: 0,
|
|
@@ -185,7 +185,25 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
185
185
|
overflow: 'auto',
|
|
186
186
|
boxSizing: 'border-box',
|
|
187
187
|
flexGrow: 1,
|
|
188
|
-
minHeight: '0'
|
|
188
|
+
minHeight: '0',
|
|
189
|
+
'$wrapper & table': {
|
|
190
|
+
'& th, & td': {
|
|
191
|
+
position: 'sticky',
|
|
192
|
+
top: 0
|
|
193
|
+
},
|
|
194
|
+
'& th': {
|
|
195
|
+
zIndex: fixedFixedIndex + 1,
|
|
196
|
+
'&$cellFixedLeft': {
|
|
197
|
+
zIndex: fixedFixedIndex + 2
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
'& td': {
|
|
201
|
+
zIndex: fixedIndex,
|
|
202
|
+
'&$cellFixedLeft': {
|
|
203
|
+
zIndex: fixedIndex + 1
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
189
207
|
},
|
|
190
208
|
footWrapper: {
|
|
191
209
|
flex: '0 0 auto',
|
|
@@ -273,7 +291,12 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
273
291
|
}
|
|
274
292
|
},
|
|
275
293
|
'& table': {
|
|
276
|
-
'& th
|
|
294
|
+
'& th': {
|
|
295
|
+
'&$cellFixedLeft': {
|
|
296
|
+
zIndex: fixedFixedIndex + 2
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
'& td': {
|
|
277
300
|
'&$cellFixedLeft': {
|
|
278
301
|
zIndex: fixedFixedIndex
|
|
279
302
|
}
|
|
@@ -299,7 +322,12 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
299
322
|
}
|
|
300
323
|
},
|
|
301
324
|
'& table': {
|
|
302
|
-
'& th
|
|
325
|
+
'& th': {
|
|
326
|
+
'&$cellFixedRight': {
|
|
327
|
+
zIndex: fixedFixedIndex + 2
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
'& td': {
|
|
303
331
|
'&$cellFixedRight': {
|
|
304
332
|
zIndex: fixedFixedIndex
|
|
305
333
|
}
|
|
@@ -419,7 +447,8 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
419
447
|
color: _theme.default.tableExpandIconColor,
|
|
420
448
|
zIndex: 1,
|
|
421
449
|
'&>svg': {
|
|
422
|
-
cursor: 'pointer'
|
|
450
|
+
cursor: 'pointer',
|
|
451
|
+
display: 'block'
|
|
423
452
|
}
|
|
424
453
|
},
|
|
425
454
|
expandIconWrapper: {
|
|
@@ -454,10 +483,10 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
454
483
|
}
|
|
455
484
|
},
|
|
456
485
|
iconWrapper: {
|
|
457
|
-
display: 'inline-
|
|
486
|
+
display: 'inline-flex',
|
|
458
487
|
verticalAlign: 'top',
|
|
459
|
-
|
|
460
|
-
|
|
488
|
+
height: _theme.default.lineHeightDynamic,
|
|
489
|
+
alignItems: 'center'
|
|
461
490
|
},
|
|
462
491
|
rowStriped: {
|
|
463
492
|
'&& td': {
|
package/cjs/version.d.ts
CHANGED
package/cjs/version.js
CHANGED
package/esm/select/select.js
CHANGED
package/esm/table/table.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAUxC,MAAM,MAAM,cAAc,GAAG,MAAM,YAAY,CAAC;AAUhD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,cAAc,
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAUxC,MAAM,MAAM,cAAc,GAAG,MAAM,YAAY,CAAC;AAUhD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,cAAc,CAuexC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/esm/table/table.js
CHANGED
|
@@ -144,7 +144,7 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
144
144
|
borderTop: 'none',
|
|
145
145
|
'&::before': {
|
|
146
146
|
position: 'absolute',
|
|
147
|
-
zIndex:
|
|
147
|
+
zIndex: fixedFixedIndex + 3,
|
|
148
148
|
content: '""',
|
|
149
149
|
display: 'block',
|
|
150
150
|
top: 0,
|
|
@@ -178,7 +178,25 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
178
178
|
overflow: 'auto',
|
|
179
179
|
boxSizing: 'border-box',
|
|
180
180
|
flexGrow: 1,
|
|
181
|
-
minHeight: '0'
|
|
181
|
+
minHeight: '0',
|
|
182
|
+
'$wrapper & table': {
|
|
183
|
+
'& th, & td': {
|
|
184
|
+
position: 'sticky',
|
|
185
|
+
top: 0
|
|
186
|
+
},
|
|
187
|
+
'& th': {
|
|
188
|
+
zIndex: fixedFixedIndex + 1,
|
|
189
|
+
'&$cellFixedLeft': {
|
|
190
|
+
zIndex: fixedFixedIndex + 2
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
'& td': {
|
|
194
|
+
zIndex: fixedIndex,
|
|
195
|
+
'&$cellFixedLeft': {
|
|
196
|
+
zIndex: fixedIndex + 1
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
182
200
|
},
|
|
183
201
|
footWrapper: {
|
|
184
202
|
flex: '0 0 auto',
|
|
@@ -266,7 +284,12 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
266
284
|
}
|
|
267
285
|
},
|
|
268
286
|
'& table': {
|
|
269
|
-
'& th
|
|
287
|
+
'& th': {
|
|
288
|
+
'&$cellFixedLeft': {
|
|
289
|
+
zIndex: fixedFixedIndex + 2
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
'& td': {
|
|
270
293
|
'&$cellFixedLeft': {
|
|
271
294
|
zIndex: fixedFixedIndex
|
|
272
295
|
}
|
|
@@ -292,7 +315,12 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
292
315
|
}
|
|
293
316
|
},
|
|
294
317
|
'& table': {
|
|
295
|
-
'& th
|
|
318
|
+
'& th': {
|
|
319
|
+
'&$cellFixedRight': {
|
|
320
|
+
zIndex: fixedFixedIndex + 2
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
'& td': {
|
|
296
324
|
'&$cellFixedRight': {
|
|
297
325
|
zIndex: fixedFixedIndex
|
|
298
326
|
}
|
|
@@ -412,7 +440,8 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
412
440
|
color: token.tableExpandIconColor,
|
|
413
441
|
zIndex: 1,
|
|
414
442
|
'&>svg': {
|
|
415
|
-
cursor: 'pointer'
|
|
443
|
+
cursor: 'pointer',
|
|
444
|
+
display: 'block'
|
|
416
445
|
}
|
|
417
446
|
},
|
|
418
447
|
expandIconWrapper: {
|
|
@@ -447,10 +476,10 @@ var tableStyle = _objectSpread(_objectSpread({}, globalStyle), {}, {
|
|
|
447
476
|
}
|
|
448
477
|
},
|
|
449
478
|
iconWrapper: {
|
|
450
|
-
display: 'inline-
|
|
479
|
+
display: 'inline-flex',
|
|
451
480
|
verticalAlign: 'top',
|
|
452
|
-
|
|
453
|
-
|
|
481
|
+
height: token.lineHeightDynamic,
|
|
482
|
+
alignItems: 'center'
|
|
454
483
|
},
|
|
455
484
|
rowStriped: {
|
|
456
485
|
'&& td': {
|
package/esm/version.d.ts
CHANGED
package/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '3.5.0-beta.
|
|
1
|
+
export default '3.5.0-beta.6';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sheinx/shineout-style",
|
|
3
|
-
"version": "3.5.0-beta.
|
|
3
|
+
"version": "3.5.0-beta.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"jss": "10.9.2",
|
|
19
19
|
"react-jss": "10.9.2",
|
|
20
|
-
"@sheinx/theme": "3.5.0-beta.
|
|
21
|
-
"@sheinx/base": "3.5.0-beta.
|
|
20
|
+
"@sheinx/theme": "3.5.0-beta.6",
|
|
21
|
+
"@sheinx/base": "3.5.0-beta.6"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"core-js": ">=3"
|