@cloudtower/eagle 0.25.5 → 0.25.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/dist/components.css +447 -418
- package/dist/esm/index.js +748 -717
- package/dist/esm/stats1.html +1 -1
- package/dist/style.css +202 -173
- package/dist/umd/index.js +750 -720
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
package/dist/style.css
CHANGED
|
@@ -1941,70 +1941,68 @@ body {
|
|
|
1941
1941
|
margin-right: 4px;
|
|
1942
1942
|
}
|
|
1943
1943
|
|
|
1944
|
-
.
|
|
1945
|
-
|
|
1944
|
+
.s34f1qb.ant-switch {
|
|
1945
|
+
min-width: 40px;
|
|
1946
|
+
height: 24px;
|
|
1947
|
+
background: rgba(172, 186, 211, 0.6);
|
|
1948
|
+
overflow: hidden;
|
|
1946
1949
|
}
|
|
1947
|
-
|
|
1948
|
-
.
|
|
1949
|
-
visibility: hidden;
|
|
1950
|
-
position: absolute;
|
|
1950
|
+
.s34f1qb.ant-switch:focus {
|
|
1951
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
1951
1952
|
}
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
justify-content: space-between;
|
|
1956
|
-
align-items: center;
|
|
1957
|
-
padding: 10px 0;
|
|
1958
|
-
color: rgba(44, 56, 82, 0.6);
|
|
1959
|
-
font-size: 12px;
|
|
1960
|
-
line-height: 24px;
|
|
1953
|
+
.s34f1qb.ant-switch-small {
|
|
1954
|
+
min-width: 26px;
|
|
1955
|
+
height: 16px;
|
|
1961
1956
|
}
|
|
1962
|
-
.
|
|
1963
|
-
|
|
1957
|
+
.s34f1qb.ant-switch-large {
|
|
1958
|
+
min-width: 52px;
|
|
1959
|
+
height: 32px;
|
|
1964
1960
|
}
|
|
1965
|
-
.
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
border-radius: 6px;
|
|
1969
|
-
cursor: pointer;
|
|
1970
|
-
transition: all 0.3s ease;
|
|
1961
|
+
.s34f1qb.ant-switch .ant-switch-handle {
|
|
1962
|
+
height: 20px;
|
|
1963
|
+
width: 20px;
|
|
1971
1964
|
}
|
|
1972
|
-
.
|
|
1973
|
-
|
|
1974
|
-
|
|
1965
|
+
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
1966
|
+
border-radius: 10px;
|
|
1967
|
+
transition-delay: 120ms;
|
|
1975
1968
|
}
|
|
1976
|
-
.
|
|
1977
|
-
|
|
1969
|
+
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
1970
|
+
height: 14px;
|
|
1971
|
+
width: 14px;
|
|
1972
|
+
top: 1px;
|
|
1973
|
+
left: 1px;
|
|
1978
1974
|
}
|
|
1979
|
-
.
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
color: #0080ff;
|
|
1983
|
-
font-weight: bold;
|
|
1975
|
+
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
1976
|
+
height: 28px;
|
|
1977
|
+
width: 28px;
|
|
1984
1978
|
}
|
|
1985
|
-
.
|
|
1986
|
-
|
|
1979
|
+
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
1980
|
+
border-radius: 14px;
|
|
1987
1981
|
}
|
|
1988
|
-
.
|
|
1989
|
-
|
|
1990
|
-
padding: 0 8px;
|
|
1982
|
+
.s34f1qb.ant-switch-checked {
|
|
1983
|
+
background-color: #00ba5d;
|
|
1991
1984
|
}
|
|
1992
|
-
.
|
|
1993
|
-
|
|
1994
|
-
color: #0080ff;
|
|
1985
|
+
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
1986
|
+
left: calc(100% - 20px - 2px);
|
|
1995
1987
|
}
|
|
1996
|
-
.
|
|
1997
|
-
|
|
1988
|
+
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
1989
|
+
left: calc(100% - 14px - 1px);
|
|
1990
|
+
}
|
|
1991
|
+
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
1992
|
+
left: calc(100% - 28px - 2px);
|
|
1998
1993
|
}
|
|
1999
1994
|
|
|
2000
|
-
.
|
|
2001
|
-
|
|
2002
|
-
overflow-y: auto;
|
|
1995
|
+
.c1to9vb9 {
|
|
1996
|
+
margin-left: 5px;
|
|
2003
1997
|
}
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
1998
|
+
|
|
1999
|
+
.obf05yr {
|
|
2000
|
+
display: inline-block;
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
.hsms1n6 {
|
|
2004
|
+
visibility: hidden;
|
|
2005
|
+
position: absolute;
|
|
2008
2006
|
}
|
|
2009
2007
|
|
|
2010
2008
|
.rxbeqvl.ant-radio-wrapper {
|
|
@@ -2897,59 +2895,61 @@ input.rrg1fkn.ant-input {
|
|
|
2897
2895
|
padding: 0;
|
|
2898
2896
|
}
|
|
2899
2897
|
|
|
2900
|
-
.
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
}
|
|
2909
|
-
.s34f1qb.ant-switch-small {
|
|
2910
|
-
min-width: 26px;
|
|
2911
|
-
height: 16px;
|
|
2912
|
-
}
|
|
2913
|
-
.s34f1qb.ant-switch-large {
|
|
2914
|
-
min-width: 52px;
|
|
2915
|
-
height: 32px;
|
|
2898
|
+
.p12gwtiw {
|
|
2899
|
+
display: flex;
|
|
2900
|
+
justify-content: space-between;
|
|
2901
|
+
align-items: center;
|
|
2902
|
+
padding: 10px 0;
|
|
2903
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2904
|
+
font-size: 12px;
|
|
2905
|
+
line-height: 24px;
|
|
2916
2906
|
}
|
|
2917
|
-
.
|
|
2918
|
-
|
|
2919
|
-
width: 20px;
|
|
2907
|
+
.p12gwtiw .pagination-left {
|
|
2908
|
+
padding: 2px 8px;
|
|
2920
2909
|
}
|
|
2921
|
-
.
|
|
2922
|
-
|
|
2923
|
-
|
|
2910
|
+
.p12gwtiw .dropdown-trigger {
|
|
2911
|
+
display: flex;
|
|
2912
|
+
align-items: center;
|
|
2913
|
+
border-radius: 6px;
|
|
2914
|
+
cursor: pointer;
|
|
2915
|
+
transition: all 0.3s ease;
|
|
2924
2916
|
}
|
|
2925
|
-
.
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
top: 1px;
|
|
2929
|
-
left: 1px;
|
|
2917
|
+
.p12gwtiw .dropdown-trigger:hover {
|
|
2918
|
+
background: rgba(211, 218, 235, 0.6);
|
|
2919
|
+
color: #0080ff;
|
|
2930
2920
|
}
|
|
2931
|
-
.
|
|
2932
|
-
|
|
2933
|
-
width: 28px;
|
|
2921
|
+
.p12gwtiw .dropdown-trigger .icon-inner {
|
|
2922
|
+
margin-left: 4px;
|
|
2934
2923
|
}
|
|
2935
|
-
.
|
|
2936
|
-
|
|
2924
|
+
.p12gwtiw .pagination-right {
|
|
2925
|
+
display: flex;
|
|
2926
|
+
align-items: center;
|
|
2927
|
+
color: #0080ff;
|
|
2928
|
+
font-weight: bold;
|
|
2937
2929
|
}
|
|
2938
|
-
.
|
|
2939
|
-
|
|
2930
|
+
.p12gwtiw .pagination-right .icon-inner {
|
|
2931
|
+
margin-left: 4px;
|
|
2940
2932
|
}
|
|
2941
|
-
.
|
|
2942
|
-
|
|
2933
|
+
.p12gwtiw .pagination-right .prev-btn,
|
|
2934
|
+
.p12gwtiw .pagination-right .next-btn {
|
|
2935
|
+
padding: 0 8px;
|
|
2943
2936
|
}
|
|
2944
|
-
.
|
|
2945
|
-
|
|
2937
|
+
.p12gwtiw .pagination-right .prev-btn > span,
|
|
2938
|
+
.p12gwtiw .pagination-right .next-btn > span {
|
|
2939
|
+
color: #0080ff;
|
|
2946
2940
|
}
|
|
2947
|
-
.
|
|
2948
|
-
|
|
2941
|
+
.p12gwtiw .pagination-right .next-btn .icon-inner {
|
|
2942
|
+
transform: rotate(180deg);
|
|
2949
2943
|
}
|
|
2950
2944
|
|
|
2951
|
-
.
|
|
2952
|
-
|
|
2945
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu {
|
|
2946
|
+
max-height: calc(100vh - 128px);
|
|
2947
|
+
overflow-y: auto;
|
|
2948
|
+
}
|
|
2949
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
2950
|
+
padding: 4px 20px;
|
|
2951
|
+
font-size: 12px;
|
|
2952
|
+
line-height: 18px;
|
|
2953
2953
|
}
|
|
2954
2954
|
|
|
2955
2955
|
.t1upn1sz {
|
|
@@ -3315,6 +3315,87 @@ input.rrg1fkn.ant-input {
|
|
|
3315
3315
|
background: #fff;
|
|
3316
3316
|
}
|
|
3317
3317
|
|
|
3318
|
+
.s1fc623g {
|
|
3319
|
+
width: 430px !important;
|
|
3320
|
+
}
|
|
3321
|
+
|
|
3322
|
+
.da3mx0o .ant-select-item-group {
|
|
3323
|
+
padding: 8px 16px;
|
|
3324
|
+
line-height: 18px;
|
|
3325
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
3326
|
+
height: 34px;
|
|
3327
|
+
min-height: 34px;
|
|
3328
|
+
box-sizing: border-box;
|
|
3329
|
+
margin-top: 8px;
|
|
3330
|
+
}
|
|
3331
|
+
.da3mx0o .rc-virtual-list-holder-inner {
|
|
3332
|
+
top: -20px !important;
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
.onr9gzt {
|
|
3336
|
+
display: flex;
|
|
3337
|
+
flex-direction: column;
|
|
3338
|
+
margin: 1px 8px;
|
|
3339
|
+
padding: 8px;
|
|
3340
|
+
border-radius: 4px;
|
|
3341
|
+
}
|
|
3342
|
+
.onr9gzt .selected-icon {
|
|
3343
|
+
display: none;
|
|
3344
|
+
}
|
|
3345
|
+
.onr9gzt.ant-select-item-option-grouped {
|
|
3346
|
+
padding-left: 8px;
|
|
3347
|
+
}
|
|
3348
|
+
.onr9gzt.ant-select-item-option-selected {
|
|
3349
|
+
background-color: white;
|
|
3350
|
+
}
|
|
3351
|
+
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
3352
|
+
color: #0080ff;
|
|
3353
|
+
}
|
|
3354
|
+
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
3355
|
+
display: block;
|
|
3356
|
+
}
|
|
3357
|
+
.onr9gzt.ant-select-item-option-active {
|
|
3358
|
+
background: rgba(0, 136, 255, 0.16);
|
|
3359
|
+
}
|
|
3360
|
+
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
3361
|
+
color: #0080ff;
|
|
3362
|
+
}
|
|
3363
|
+
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
3364
|
+
background: rgba(0, 136, 255, 0.1);
|
|
3365
|
+
color: #0080ff;
|
|
3366
|
+
}
|
|
3367
|
+
|
|
3368
|
+
.oiy0apc {
|
|
3369
|
+
display: flex;
|
|
3370
|
+
justify-content: space-between;
|
|
3371
|
+
height: 20px;
|
|
3372
|
+
line-height: 20px;
|
|
3373
|
+
}
|
|
3374
|
+
.oiy0apc .timezone-title {
|
|
3375
|
+
color: #2d3a56;
|
|
3376
|
+
overflow: hidden;
|
|
3377
|
+
text-overflow: ellipsis;
|
|
3378
|
+
}
|
|
3379
|
+
|
|
3380
|
+
.of4y382 {
|
|
3381
|
+
display: flex;
|
|
3382
|
+
justify-content: space-between;
|
|
3383
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3384
|
+
height: 18px;
|
|
3385
|
+
line-height: 18px;
|
|
3386
|
+
margin-top: 2px;
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3389
|
+
.t19903l9 {
|
|
3390
|
+
border: none;
|
|
3391
|
+
margin-right: 0;
|
|
3392
|
+
background: rgba(225, 230, 241, 0.6);
|
|
3393
|
+
}
|
|
3394
|
+
|
|
3395
|
+
.i1e4sgug {
|
|
3396
|
+
display: inline-block;
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3318
3399
|
.d6j0lbj {
|
|
3319
3400
|
font-family: Inter;
|
|
3320
3401
|
font-style: normal;
|
|
@@ -3790,87 +3871,6 @@ input.rrg1fkn.ant-input {
|
|
|
3790
3871
|
line-height: 12px;
|
|
3791
3872
|
}
|
|
3792
3873
|
|
|
3793
|
-
.s1fc623g {
|
|
3794
|
-
width: 430px !important;
|
|
3795
|
-
}
|
|
3796
|
-
|
|
3797
|
-
.da3mx0o .ant-select-item-group {
|
|
3798
|
-
padding: 8px 16px;
|
|
3799
|
-
line-height: 18px;
|
|
3800
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
3801
|
-
height: 34px;
|
|
3802
|
-
min-height: 34px;
|
|
3803
|
-
box-sizing: border-box;
|
|
3804
|
-
margin-top: 8px;
|
|
3805
|
-
}
|
|
3806
|
-
.da3mx0o .rc-virtual-list-holder-inner {
|
|
3807
|
-
top: -20px !important;
|
|
3808
|
-
}
|
|
3809
|
-
|
|
3810
|
-
.onr9gzt {
|
|
3811
|
-
display: flex;
|
|
3812
|
-
flex-direction: column;
|
|
3813
|
-
margin: 1px 8px;
|
|
3814
|
-
padding: 8px;
|
|
3815
|
-
border-radius: 4px;
|
|
3816
|
-
}
|
|
3817
|
-
.onr9gzt .selected-icon {
|
|
3818
|
-
display: none;
|
|
3819
|
-
}
|
|
3820
|
-
.onr9gzt.ant-select-item-option-grouped {
|
|
3821
|
-
padding-left: 8px;
|
|
3822
|
-
}
|
|
3823
|
-
.onr9gzt.ant-select-item-option-selected {
|
|
3824
|
-
background-color: white;
|
|
3825
|
-
}
|
|
3826
|
-
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
3827
|
-
color: #0080ff;
|
|
3828
|
-
}
|
|
3829
|
-
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
3830
|
-
display: block;
|
|
3831
|
-
}
|
|
3832
|
-
.onr9gzt.ant-select-item-option-active {
|
|
3833
|
-
background: rgba(0, 136, 255, 0.16);
|
|
3834
|
-
}
|
|
3835
|
-
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
3836
|
-
color: #0080ff;
|
|
3837
|
-
}
|
|
3838
|
-
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
3839
|
-
background: rgba(0, 136, 255, 0.1);
|
|
3840
|
-
color: #0080ff;
|
|
3841
|
-
}
|
|
3842
|
-
|
|
3843
|
-
.oiy0apc {
|
|
3844
|
-
display: flex;
|
|
3845
|
-
justify-content: space-between;
|
|
3846
|
-
height: 20px;
|
|
3847
|
-
line-height: 20px;
|
|
3848
|
-
}
|
|
3849
|
-
.oiy0apc .timezone-title {
|
|
3850
|
-
color: #2d3a56;
|
|
3851
|
-
overflow: hidden;
|
|
3852
|
-
text-overflow: ellipsis;
|
|
3853
|
-
}
|
|
3854
|
-
|
|
3855
|
-
.of4y382 {
|
|
3856
|
-
display: flex;
|
|
3857
|
-
justify-content: space-between;
|
|
3858
|
-
color: rgba(44, 56, 82, 0.6);
|
|
3859
|
-
height: 18px;
|
|
3860
|
-
line-height: 18px;
|
|
3861
|
-
margin-top: 2px;
|
|
3862
|
-
}
|
|
3863
|
-
|
|
3864
|
-
.t19903l9 {
|
|
3865
|
-
border: none;
|
|
3866
|
-
margin-right: 0;
|
|
3867
|
-
background: rgba(225, 230, 241, 0.6);
|
|
3868
|
-
}
|
|
3869
|
-
|
|
3870
|
-
.i1e4sgug {
|
|
3871
|
-
display: inline-block;
|
|
3872
|
-
}
|
|
3873
|
-
|
|
3874
3874
|
.c198s9j3 {
|
|
3875
3875
|
color: #2d3a56;
|
|
3876
3876
|
line-height: 22px;
|
|
@@ -4444,6 +4444,35 @@ input.rrg1fkn.ant-input {
|
|
|
4444
4444
|
margin-right: 8px;
|
|
4445
4445
|
}
|
|
4446
4446
|
|
|
4447
|
+
.f1p9ti6d {
|
|
4448
|
+
width: 100%;
|
|
4449
|
+
margin-bottom: 0 !important;
|
|
4450
|
+
flex-flow: nowrap !important;
|
|
4451
|
+
line-break: auto;
|
|
4452
|
+
}
|
|
4453
|
+
.f1p9ti6d > .ant-form-item-label {
|
|
4454
|
+
text-align: left !important;
|
|
4455
|
+
padding-bottom: 0 !important;
|
|
4456
|
+
}
|
|
4457
|
+
.f1p9ti6d > .ant-form-item-label > label {
|
|
4458
|
+
min-height: 32px;
|
|
4459
|
+
height: auto;
|
|
4460
|
+
font-size: 13px;
|
|
4461
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4462
|
+
white-space: normal;
|
|
4463
|
+
}
|
|
4464
|
+
.f1p9ti6d.ant-form-item-has-error .ant-input {
|
|
4465
|
+
border-color: #ff4d4f !important;
|
|
4466
|
+
}
|
|
4467
|
+
.f1p9ti6d .ant-form-item-explain {
|
|
4468
|
+
margin-top: 4px;
|
|
4469
|
+
font-size: 12px;
|
|
4470
|
+
}
|
|
4471
|
+
.f1p9ti6d .ant-form-item-extra {
|
|
4472
|
+
font-size: 12px;
|
|
4473
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4474
|
+
}
|
|
4475
|
+
|
|
4447
4476
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
4448
4477
|
display: var(--a6dbbkm-0);
|
|
4449
4478
|
}
|