@oliasoft-open-source/react-ui-library 3.6.5 → 3.8.0
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/global.css +56 -37
- package/dist/index.js +3278 -7808
- package/package.json +14 -11
package/dist/global.css
CHANGED
|
@@ -21496,9 +21496,9 @@ html[data-theme='dark'] {
|
|
|
21496
21496
|
*/
|
|
21497
21497
|
.rc-slider {
|
|
21498
21498
|
position: relative;
|
|
21499
|
+
width: 100%;
|
|
21499
21500
|
height: 14px;
|
|
21500
21501
|
padding: 5px 0;
|
|
21501
|
-
width: 100%;
|
|
21502
21502
|
border-radius: 6px;
|
|
21503
21503
|
touch-action: none;
|
|
21504
21504
|
box-sizing: border-box;
|
|
@@ -21511,28 +21511,37 @@ html[data-theme='dark'] {
|
|
|
21511
21511
|
.rc-slider-rail {
|
|
21512
21512
|
position: absolute;
|
|
21513
21513
|
width: 100%;
|
|
21514
|
-
background-color: #e9e9e9;
|
|
21515
21514
|
height: 4px;
|
|
21515
|
+
background-color: #e9e9e9;
|
|
21516
21516
|
border-radius: 6px;
|
|
21517
21517
|
}
|
|
21518
21518
|
.rc-slider-track {
|
|
21519
21519
|
position: absolute;
|
|
21520
|
-
left: 0;
|
|
21521
21520
|
height: 4px;
|
|
21522
|
-
border-radius: 6px;
|
|
21523
21521
|
background-color: #abe2fb;
|
|
21522
|
+
border-radius: 6px;
|
|
21523
|
+
}
|
|
21524
|
+
.rc-slider-track-draggable {
|
|
21525
|
+
z-index: 1;
|
|
21526
|
+
box-sizing: content-box;
|
|
21527
|
+
background-clip: content-box;
|
|
21528
|
+
border-top: 5px solid rgba(0, 0, 0, 0);
|
|
21529
|
+
border-bottom: 5px solid rgba(0, 0, 0, 0);
|
|
21530
|
+
transform: translateY(-5px);
|
|
21524
21531
|
}
|
|
21525
21532
|
.rc-slider-handle {
|
|
21526
21533
|
position: absolute;
|
|
21534
|
+
z-index: 1;
|
|
21527
21535
|
width: 14px;
|
|
21528
21536
|
height: 14px;
|
|
21537
|
+
margin-top: -5px;
|
|
21538
|
+
background-color: #fff;
|
|
21539
|
+
border: solid 2px #96dbfa;
|
|
21540
|
+
border-radius: 50%;
|
|
21529
21541
|
cursor: pointer;
|
|
21530
21542
|
cursor: -webkit-grab;
|
|
21531
|
-
margin-top: -5px;
|
|
21532
21543
|
cursor: grab;
|
|
21533
|
-
|
|
21534
|
-
border: solid 2px #96dbfa;
|
|
21535
|
-
background-color: #fff;
|
|
21544
|
+
opacity: 0.8;
|
|
21536
21545
|
touch-action: pan-x;
|
|
21537
21546
|
}
|
|
21538
21547
|
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
|
|
@@ -21541,6 +21550,11 @@ html[data-theme='dark'] {
|
|
|
21541
21550
|
}
|
|
21542
21551
|
.rc-slider-handle:focus {
|
|
21543
21552
|
outline: none;
|
|
21553
|
+
box-shadow: none;
|
|
21554
|
+
}
|
|
21555
|
+
.rc-slider-handle:focus-visible {
|
|
21556
|
+
border-color: #2db7f5;
|
|
21557
|
+
box-shadow: 0 0 0 3px #96dbfa;
|
|
21544
21558
|
}
|
|
21545
21559
|
.rc-slider-handle-click-focused:focus {
|
|
21546
21560
|
border-color: #96dbfa;
|
|
@@ -21565,10 +21579,10 @@ html[data-theme='dark'] {
|
|
|
21565
21579
|
.rc-slider-mark-text {
|
|
21566
21580
|
position: absolute;
|
|
21567
21581
|
display: inline-block;
|
|
21568
|
-
|
|
21582
|
+
color: #999;
|
|
21569
21583
|
text-align: center;
|
|
21584
|
+
vertical-align: middle;
|
|
21570
21585
|
cursor: pointer;
|
|
21571
|
-
color: #999;
|
|
21572
21586
|
}
|
|
21573
21587
|
.rc-slider-mark-text-active {
|
|
21574
21588
|
color: #666;
|
|
@@ -21582,14 +21596,13 @@ html[data-theme='dark'] {
|
|
|
21582
21596
|
.rc-slider-dot {
|
|
21583
21597
|
position: absolute;
|
|
21584
21598
|
bottom: -2px;
|
|
21585
|
-
margin-left: -4px;
|
|
21586
21599
|
width: 8px;
|
|
21587
21600
|
height: 8px;
|
|
21588
|
-
|
|
21601
|
+
vertical-align: middle;
|
|
21589
21602
|
background-color: #fff;
|
|
21590
|
-
|
|
21603
|
+
border: 2px solid #e9e9e9;
|
|
21591
21604
|
border-radius: 50%;
|
|
21592
|
-
|
|
21605
|
+
cursor: pointer;
|
|
21593
21606
|
}
|
|
21594
21607
|
.rc-slider-dot-active {
|
|
21595
21608
|
border-color: #96dbfa;
|
|
@@ -21605,9 +21618,9 @@ html[data-theme='dark'] {
|
|
|
21605
21618
|
}
|
|
21606
21619
|
.rc-slider-disabled .rc-slider-handle,
|
|
21607
21620
|
.rc-slider-disabled .rc-slider-dot {
|
|
21621
|
+
background-color: #fff;
|
|
21608
21622
|
border-color: #ccc;
|
|
21609
21623
|
box-shadow: none;
|
|
21610
|
-
background-color: #fff;
|
|
21611
21624
|
cursor: not-allowed;
|
|
21612
21625
|
}
|
|
21613
21626
|
.rc-slider-disabled .rc-slider-mark-text,
|
|
@@ -21620,15 +21633,25 @@ html[data-theme='dark'] {
|
|
|
21620
21633
|
padding: 0 5px;
|
|
21621
21634
|
}
|
|
21622
21635
|
.rc-slider-vertical .rc-slider-rail {
|
|
21623
|
-
height: 100%;
|
|
21624
21636
|
width: 4px;
|
|
21637
|
+
height: 100%;
|
|
21625
21638
|
}
|
|
21626
21639
|
.rc-slider-vertical .rc-slider-track {
|
|
21627
|
-
left: 5px;
|
|
21628
21640
|
bottom: 0;
|
|
21641
|
+
left: 5px;
|
|
21629
21642
|
width: 4px;
|
|
21630
21643
|
}
|
|
21644
|
+
.rc-slider-vertical .rc-slider-track-draggable {
|
|
21645
|
+
border-top: 0;
|
|
21646
|
+
border-bottom: 0;
|
|
21647
|
+
border-right: 5px solid rgba(0, 0, 0, 0);
|
|
21648
|
+
border-left: 5px solid rgba(0, 0, 0, 0);
|
|
21649
|
+
transform: translateX(-5px);
|
|
21650
|
+
}
|
|
21631
21651
|
.rc-slider-vertical .rc-slider-handle {
|
|
21652
|
+
position: absolute;
|
|
21653
|
+
z-index: 1;
|
|
21654
|
+
margin-top: 0;
|
|
21632
21655
|
margin-left: -5px;
|
|
21633
21656
|
touch-action: pan-y;
|
|
21634
21657
|
}
|
|
@@ -21638,30 +21661,23 @@ html[data-theme='dark'] {
|
|
|
21638
21661
|
height: 100%;
|
|
21639
21662
|
}
|
|
21640
21663
|
.rc-slider-vertical .rc-slider-step {
|
|
21641
|
-
height: 100%;
|
|
21642
21664
|
width: 4px;
|
|
21665
|
+
height: 100%;
|
|
21643
21666
|
}
|
|
21644
21667
|
.rc-slider-vertical .rc-slider-dot {
|
|
21645
|
-
left: 2px;
|
|
21646
|
-
margin-bottom: -4px;
|
|
21647
|
-
}
|
|
21648
|
-
.rc-slider-vertical .rc-slider-dot:first-child {
|
|
21649
|
-
margin-bottom: -4px;
|
|
21650
|
-
}
|
|
21651
|
-
.rc-slider-vertical .rc-slider-dot:last-child {
|
|
21652
|
-
margin-bottom: -4px;
|
|
21668
|
+
margin-left: -2px;
|
|
21653
21669
|
}
|
|
21654
21670
|
.rc-slider-tooltip-zoom-down-enter,
|
|
21655
21671
|
.rc-slider-tooltip-zoom-down-appear {
|
|
21672
|
+
display: block !important;
|
|
21656
21673
|
animation-duration: 0.3s;
|
|
21657
21674
|
animation-fill-mode: both;
|
|
21658
|
-
display: block !important;
|
|
21659
21675
|
animation-play-state: paused;
|
|
21660
21676
|
}
|
|
21661
21677
|
.rc-slider-tooltip-zoom-down-leave {
|
|
21678
|
+
display: block !important;
|
|
21662
21679
|
animation-duration: 0.3s;
|
|
21663
21680
|
animation-fill-mode: both;
|
|
21664
|
-
display: block !important;
|
|
21665
21681
|
animation-play-state: paused;
|
|
21666
21682
|
}
|
|
21667
21683
|
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
|
|
@@ -21683,30 +21699,30 @@ html[data-theme='dark'] {
|
|
|
21683
21699
|
}
|
|
21684
21700
|
@keyframes rcSliderTooltipZoomDownIn {
|
|
21685
21701
|
0% {
|
|
21686
|
-
opacity: 0;
|
|
21687
|
-
transform-origin: 50% 100%;
|
|
21688
21702
|
transform: scale(0, 0);
|
|
21703
|
+
transform-origin: 50% 100%;
|
|
21704
|
+
opacity: 0;
|
|
21689
21705
|
}
|
|
21690
21706
|
100% {
|
|
21691
|
-
transform-origin: 50% 100%;
|
|
21692
21707
|
transform: scale(1, 1);
|
|
21708
|
+
transform-origin: 50% 100%;
|
|
21693
21709
|
}
|
|
21694
21710
|
}
|
|
21695
21711
|
@keyframes rcSliderTooltipZoomDownOut {
|
|
21696
21712
|
0% {
|
|
21697
|
-
transform-origin: 50% 100%;
|
|
21698
21713
|
transform: scale(1, 1);
|
|
21714
|
+
transform-origin: 50% 100%;
|
|
21699
21715
|
}
|
|
21700
21716
|
100% {
|
|
21701
|
-
opacity: 0;
|
|
21702
|
-
transform-origin: 50% 100%;
|
|
21703
21717
|
transform: scale(0, 0);
|
|
21718
|
+
transform-origin: 50% 100%;
|
|
21719
|
+
opacity: 0;
|
|
21704
21720
|
}
|
|
21705
21721
|
}
|
|
21706
21722
|
.rc-slider-tooltip {
|
|
21707
21723
|
position: absolute;
|
|
21708
|
-
left: -9999px;
|
|
21709
21724
|
top: -9999px;
|
|
21725
|
+
left: -9999px;
|
|
21710
21726
|
visibility: visible;
|
|
21711
21727
|
box-sizing: border-box;
|
|
21712
21728
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
@@ -21722,12 +21738,12 @@ html[data-theme='dark'] {
|
|
|
21722
21738
|
padding: 4px 0 8px 0;
|
|
21723
21739
|
}
|
|
21724
21740
|
.rc-slider-tooltip-inner {
|
|
21725
|
-
padding: 6px 2px;
|
|
21726
21741
|
min-width: 24px;
|
|
21727
21742
|
height: 24px;
|
|
21743
|
+
padding: 6px 2px;
|
|
21744
|
+
color: #fff;
|
|
21728
21745
|
font-size: 12px;
|
|
21729
21746
|
line-height: 1;
|
|
21730
|
-
color: #fff;
|
|
21731
21747
|
text-align: center;
|
|
21732
21748
|
text-decoration: none;
|
|
21733
21749
|
background-color: #6c6c6c;
|
|
@@ -22095,6 +22111,9 @@ html[data-theme='dark'] {
|
|
|
22095
22111
|
border-color: var(--color-background-primary);
|
|
22096
22112
|
box-shadow: 0 0 0 3px var(--color-background-primary);
|
|
22097
22113
|
}
|
|
22114
|
+
.rc-slider .rc-slider-handle {
|
|
22115
|
+
opacity: 1;
|
|
22116
|
+
}
|
|
22098
22117
|
.rc-slider .rc-slider-mark-text {
|
|
22099
22118
|
color: var(--color-text-faint);
|
|
22100
22119
|
}
|