wargerm 0.4.8 → 0.4.9
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.css +24 -25
- package/dist/index.esm.css +24 -25
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -6,15 +6,18 @@
|
|
6
6
|
::-webkit-scrollbar {
|
7
7
|
width: 6px;
|
8
8
|
height: 6px;
|
9
|
+
cursor: pointer;
|
9
10
|
}
|
10
11
|
::-webkit-scrollbar-track {
|
11
|
-
|
12
|
-
|
12
|
+
cursor: pointer;
|
13
|
+
background: rgba(0, 0, 0, 0.2);
|
14
|
+
-webkit-box-shadow: inset 0 0 5px rgba(36, 36, 36, 0.1);
|
13
15
|
}
|
14
16
|
::-webkit-scrollbar-thumb {
|
15
|
-
|
17
|
+
cursor: pointer;
|
18
|
+
background: hsla(0, 0%, 100%, 0.1);
|
16
19
|
border-radius: 4px;
|
17
|
-
-webkit-box-shadow:
|
20
|
+
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
18
21
|
}
|
19
22
|
::-webkit-scrollbar-thumb:window-inactive {
|
20
23
|
background: rgba(0, 0, 0, 0.2);
|
@@ -233,7 +236,6 @@
|
|
233
236
|
background-color: transparent;
|
234
237
|
}
|
235
238
|
[data-prefers-color='dark'] .w-frame-box-table.container .theader .th {
|
236
|
-
background-color: #192335;
|
237
239
|
border-top: 1px solid rgba(118, 214, 255, 0.4);
|
238
240
|
border-bottom: 1px solid rgba(118, 214, 255, 0.4);
|
239
241
|
border-radius: 0px;
|
@@ -266,26 +268,10 @@
|
|
266
268
|
}
|
267
269
|
[data-prefers-color='dark'] .th .fixedLeft.td,
|
268
270
|
[data-prefers-color='dark'] .th .fixedRight.td {
|
269
|
-
background: #
|
270
|
-
transition: all 0.3s;
|
271
|
-
}
|
272
|
-
[data-prefers-color='dark'] .tr .fixedLeft,
|
273
|
-
[data-prefers-color='dark'] .tr .fixedRight {
|
274
|
-
position: -webkit-sticky !important;
|
275
|
-
position: sticky !important;
|
276
|
-
z-index: 3 !important;
|
277
|
-
}
|
278
|
-
[data-prefers-color='dark'] .tr .fixedLeft.td,
|
279
|
-
[data-prefers-color='dark'] .tr .fixedRight.td {
|
280
|
-
background: #233b62;
|
271
|
+
background-color: #192547;
|
281
272
|
transition: all 0.3s;
|
282
273
|
}
|
283
|
-
[data-prefers-color='dark'] .fixedRight {
|
284
|
-
position: -webkit-sticky !important;
|
285
|
-
position: sticky !important;
|
286
|
-
z-index: 3 !important;
|
287
|
-
}
|
288
|
-
[data-prefers-color='dark'] .fixedRight.td:after {
|
274
|
+
[data-prefers-color='dark'] .th .fixedRight:first-child:after {
|
289
275
|
box-shadow: inset -10px 0 8px -8px #00000026;
|
290
276
|
position: absolute;
|
291
277
|
top: 0;
|
@@ -297,8 +283,7 @@
|
|
297
283
|
content: '';
|
298
284
|
pointer-events: none;
|
299
285
|
}
|
300
|
-
[data-prefers-color='dark'] .
|
301
|
-
[data-prefers-color='dark'] .fixedLeft .tr.td:after {
|
286
|
+
[data-prefers-color='dark'] .th .fixedLeft:last-child:after {
|
302
287
|
box-shadow: inset -10px 0 8px -8px #00000026;
|
303
288
|
position: absolute;
|
304
289
|
top: 0;
|
@@ -310,6 +295,20 @@
|
|
310
295
|
content: '';
|
311
296
|
pointer-events: none;
|
312
297
|
}
|
298
|
+
[data-prefers-color='dark'] .tr .fixedLeft,
|
299
|
+
[data-prefers-color='dark'] .tr .fixedRight {
|
300
|
+
position: -webkit-sticky !important;
|
301
|
+
position: sticky !important;
|
302
|
+
z-index: 3 !important;
|
303
|
+
}
|
304
|
+
[data-prefers-color='dark'] .tr .fixedLeft.td,
|
305
|
+
[data-prefers-color='dark'] .tr .fixedRight.td {
|
306
|
+
background: #233b62;
|
307
|
+
transition: all 0.3s;
|
308
|
+
}
|
309
|
+
[data-prefers-color='dark'] .th .fixedRight:nth-of-type(1) {
|
310
|
+
background: red !important;
|
311
|
+
}
|
313
312
|
[data-prefers-color='dark'] .ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
314
313
|
background-color: transparent;
|
315
314
|
color: #4383a4;
|
package/dist/index.esm.css
CHANGED
@@ -6,15 +6,18 @@
|
|
6
6
|
::-webkit-scrollbar {
|
7
7
|
width: 6px;
|
8
8
|
height: 6px;
|
9
|
+
cursor: pointer;
|
9
10
|
}
|
10
11
|
::-webkit-scrollbar-track {
|
11
|
-
|
12
|
-
|
12
|
+
cursor: pointer;
|
13
|
+
background: rgba(0, 0, 0, 0.2);
|
14
|
+
-webkit-box-shadow: inset 0 0 5px rgba(36, 36, 36, 0.1);
|
13
15
|
}
|
14
16
|
::-webkit-scrollbar-thumb {
|
15
|
-
|
17
|
+
cursor: pointer;
|
18
|
+
background: hsla(0, 0%, 100%, 0.1);
|
16
19
|
border-radius: 4px;
|
17
|
-
-webkit-box-shadow:
|
20
|
+
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
18
21
|
}
|
19
22
|
::-webkit-scrollbar-thumb:window-inactive {
|
20
23
|
background: rgba(0, 0, 0, 0.2);
|
@@ -233,7 +236,6 @@
|
|
233
236
|
background-color: transparent;
|
234
237
|
}
|
235
238
|
[data-prefers-color='dark'] .w-frame-box-table.container .theader .th {
|
236
|
-
background-color: #192335;
|
237
239
|
border-top: 1px solid rgba(118, 214, 255, 0.4);
|
238
240
|
border-bottom: 1px solid rgba(118, 214, 255, 0.4);
|
239
241
|
border-radius: 0px;
|
@@ -266,26 +268,10 @@
|
|
266
268
|
}
|
267
269
|
[data-prefers-color='dark'] .th .fixedLeft.td,
|
268
270
|
[data-prefers-color='dark'] .th .fixedRight.td {
|
269
|
-
background: #
|
270
|
-
transition: all 0.3s;
|
271
|
-
}
|
272
|
-
[data-prefers-color='dark'] .tr .fixedLeft,
|
273
|
-
[data-prefers-color='dark'] .tr .fixedRight {
|
274
|
-
position: -webkit-sticky !important;
|
275
|
-
position: sticky !important;
|
276
|
-
z-index: 3 !important;
|
277
|
-
}
|
278
|
-
[data-prefers-color='dark'] .tr .fixedLeft.td,
|
279
|
-
[data-prefers-color='dark'] .tr .fixedRight.td {
|
280
|
-
background: #233b62;
|
271
|
+
background-color: #192547;
|
281
272
|
transition: all 0.3s;
|
282
273
|
}
|
283
|
-
[data-prefers-color='dark'] .fixedRight {
|
284
|
-
position: -webkit-sticky !important;
|
285
|
-
position: sticky !important;
|
286
|
-
z-index: 3 !important;
|
287
|
-
}
|
288
|
-
[data-prefers-color='dark'] .fixedRight.td:after {
|
274
|
+
[data-prefers-color='dark'] .th .fixedRight:first-child:after {
|
289
275
|
box-shadow: inset -10px 0 8px -8px #00000026;
|
290
276
|
position: absolute;
|
291
277
|
top: 0;
|
@@ -297,8 +283,7 @@
|
|
297
283
|
content: '';
|
298
284
|
pointer-events: none;
|
299
285
|
}
|
300
|
-
[data-prefers-color='dark'] .
|
301
|
-
[data-prefers-color='dark'] .fixedLeft .tr.td:after {
|
286
|
+
[data-prefers-color='dark'] .th .fixedLeft:last-child:after {
|
302
287
|
box-shadow: inset -10px 0 8px -8px #00000026;
|
303
288
|
position: absolute;
|
304
289
|
top: 0;
|
@@ -310,6 +295,20 @@
|
|
310
295
|
content: '';
|
311
296
|
pointer-events: none;
|
312
297
|
}
|
298
|
+
[data-prefers-color='dark'] .tr .fixedLeft,
|
299
|
+
[data-prefers-color='dark'] .tr .fixedRight {
|
300
|
+
position: -webkit-sticky !important;
|
301
|
+
position: sticky !important;
|
302
|
+
z-index: 3 !important;
|
303
|
+
}
|
304
|
+
[data-prefers-color='dark'] .tr .fixedLeft.td,
|
305
|
+
[data-prefers-color='dark'] .tr .fixedRight.td {
|
306
|
+
background: #233b62;
|
307
|
+
transition: all 0.3s;
|
308
|
+
}
|
309
|
+
[data-prefers-color='dark'] .th .fixedRight:nth-of-type(1) {
|
310
|
+
background: red !important;
|
311
|
+
}
|
313
312
|
[data-prefers-color='dark'] .ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
314
313
|
background-color: transparent;
|
315
314
|
color: #4383a4;
|
package/dist/index.esm.js
CHANGED
@@ -10770,7 +10770,7 @@ var TabelCard = function TabelCard(props, ref) {
|
|
10770
10770
|
return obj;
|
10771
10771
|
}),
|
10772
10772
|
search: false,
|
10773
|
-
pagination: pagination
|
10773
|
+
pagination: pagination != undefined ? pagination : {
|
10774
10774
|
pageSize: 20
|
10775
10775
|
}
|
10776
10776
|
}, extraProps)));
|
package/dist/index.js
CHANGED
@@ -10805,7 +10805,7 @@ var TabelCard = function TabelCard(props, ref) {
|
|
10805
10805
|
return obj;
|
10806
10806
|
}),
|
10807
10807
|
search: false,
|
10808
|
-
pagination: pagination
|
10808
|
+
pagination: pagination != undefined ? pagination : {
|
10809
10809
|
pageSize: 20
|
10810
10810
|
}
|
10811
10811
|
}, extraProps)));
|