@cloudtower/eagle 0.25.14 → 0.26.0-alpha.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/components/Button/index.d.ts +1 -1
- package/dist/components/Modal/ImmersiveModal.d.ts +2 -3
- package/dist/components/TableForm/Columns/index.d.ts +3 -3
- package/dist/components.css +188 -188
- package/dist/esm/index.js +435 -432
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +4 -2
- package/dist/store/modal.d.ts +2 -0
- package/dist/style.css +987 -987
- package/dist/umd/index.js +436 -433
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
|
@@ -4,7 +4,7 @@ declare const Button: React.ForwardRefExoticComponent<{
|
|
|
4
4
|
hoverPrefixIcon?: JSX.Element | undefined;
|
|
5
5
|
suffixIcon?: JSX.Element | undefined;
|
|
6
6
|
hoverSuffixIcon?: JSX.Element | undefined;
|
|
7
|
-
type?: "
|
|
7
|
+
type?: "link" | "text" | "default" | "dashed" | "primary" | "ghost" | "secondary" | "tertiary" | "ordinary" | "ordinary-onTint" | "quiet" | undefined;
|
|
8
8
|
} & Omit<Partial<{
|
|
9
9
|
href: string;
|
|
10
10
|
target?: string | undefined;
|
|
@@ -19,15 +19,15 @@ export declare const ColumnHeaderImpls: {
|
|
|
19
19
|
};
|
|
20
20
|
export declare const ColumnBodyImpls: {
|
|
21
21
|
text: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "data" | "column" | "index">>;
|
|
22
|
-
input: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "
|
|
22
|
+
input: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "data" | "disabled" | "visible" | "column" | "latestData" | "index"> & {
|
|
23
23
|
onChange: (value: any) => void;
|
|
24
24
|
onBlur: () => void;
|
|
25
25
|
}>;
|
|
26
|
-
password: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "
|
|
26
|
+
password: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "data" | "disabled" | "visible" | "column" | "latestData" | "index"> & {
|
|
27
27
|
onChange: (value: any) => void;
|
|
28
28
|
onBlur: () => void;
|
|
29
29
|
}>;
|
|
30
|
-
affix: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "
|
|
30
|
+
affix: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "data" | "disabled" | "visible" | "column" | "latestData" | "index"> & {
|
|
31
31
|
onChange: (value: any) => void;
|
|
32
32
|
onBlur: () => void;
|
|
33
33
|
}>;
|
package/dist/components.css
CHANGED
|
@@ -2079,144 +2079,6 @@ html body {
|
|
|
2079
2079
|
width: 36px;
|
|
2080
2080
|
}
|
|
2081
2081
|
|
|
2082
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
2083
|
-
flex-direction: row;
|
|
2084
|
-
justify-content: stretch;
|
|
2085
|
-
}
|
|
2086
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
2087
|
-
padding: 0;
|
|
2088
|
-
margin-right: 4px;
|
|
2089
|
-
flex: 1;
|
|
2090
|
-
overflow: visible;
|
|
2091
|
-
}
|
|
2092
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
2093
|
-
display: none;
|
|
2094
|
-
}
|
|
2095
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
2096
|
-
width: 100%;
|
|
2097
|
-
min-height: unset;
|
|
2098
|
-
}
|
|
2099
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
2100
|
-
height: 26px;
|
|
2101
|
-
line-height: 26px;
|
|
2102
|
-
width: 100%;
|
|
2103
|
-
text-align: center;
|
|
2104
|
-
padding: 0;
|
|
2105
|
-
font-size: 12px;
|
|
2106
|
-
font-weight: normal;
|
|
2107
|
-
}
|
|
2108
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
2109
|
-
margin-right: 10px;
|
|
2110
|
-
}
|
|
2111
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
2112
|
-
display: none;
|
|
2113
|
-
}
|
|
2114
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
2115
|
-
border-radius: 4px 0 0 4px;
|
|
2116
|
-
}
|
|
2117
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
2118
|
-
margin-right: 0;
|
|
2119
|
-
}
|
|
2120
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
2121
|
-
border-radius: 0 4px 4px 0;
|
|
2122
|
-
}
|
|
2123
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
2124
|
-
content: "";
|
|
2125
|
-
width: 0;
|
|
2126
|
-
height: 0;
|
|
2127
|
-
border: 13px solid transparent;
|
|
2128
|
-
position: absolute;
|
|
2129
|
-
top: 0;
|
|
2130
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2131
|
-
right: -21px;
|
|
2132
|
-
z-index: 2;
|
|
2133
|
-
}
|
|
2134
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
2135
|
-
content: "";
|
|
2136
|
-
width: 0;
|
|
2137
|
-
height: 0;
|
|
2138
|
-
border: 13px solid transparent;
|
|
2139
|
-
position: absolute;
|
|
2140
|
-
top: 0;
|
|
2141
|
-
border-left: 8px solid #fff;
|
|
2142
|
-
left: 0;
|
|
2143
|
-
}
|
|
2144
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2145
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
2146
|
-
}
|
|
2147
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2148
|
-
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2149
|
-
}
|
|
2150
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2151
|
-
color: #005ed1;
|
|
2152
|
-
}
|
|
2153
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2154
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2155
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
2156
|
-
}
|
|
2157
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
2158
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
2159
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2160
|
-
}
|
|
2161
|
-
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
2162
|
-
padding: 0;
|
|
2163
|
-
}
|
|
2164
|
-
|
|
2165
|
-
.s34f1qb.ant-switch {
|
|
2166
|
-
min-width: 40px;
|
|
2167
|
-
height: 24px;
|
|
2168
|
-
background: rgba(172, 186, 211, 0.6);
|
|
2169
|
-
overflow: hidden;
|
|
2170
|
-
}
|
|
2171
|
-
.s34f1qb.ant-switch:focus {
|
|
2172
|
-
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
2173
|
-
}
|
|
2174
|
-
.s34f1qb.ant-switch-small {
|
|
2175
|
-
min-width: 26px;
|
|
2176
|
-
height: 16px;
|
|
2177
|
-
}
|
|
2178
|
-
.s34f1qb.ant-switch-large {
|
|
2179
|
-
min-width: 52px;
|
|
2180
|
-
height: 32px;
|
|
2181
|
-
}
|
|
2182
|
-
.s34f1qb.ant-switch .ant-switch-handle {
|
|
2183
|
-
height: 20px;
|
|
2184
|
-
width: 20px;
|
|
2185
|
-
}
|
|
2186
|
-
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
2187
|
-
border-radius: 10px;
|
|
2188
|
-
transition-delay: 120ms;
|
|
2189
|
-
}
|
|
2190
|
-
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
2191
|
-
height: 14px;
|
|
2192
|
-
width: 14px;
|
|
2193
|
-
top: 1px;
|
|
2194
|
-
left: 1px;
|
|
2195
|
-
}
|
|
2196
|
-
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
2197
|
-
height: 28px;
|
|
2198
|
-
width: 28px;
|
|
2199
|
-
}
|
|
2200
|
-
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
2201
|
-
border-radius: 14px;
|
|
2202
|
-
}
|
|
2203
|
-
.s34f1qb.ant-switch-checked {
|
|
2204
|
-
background-color: #00ba5d;
|
|
2205
|
-
}
|
|
2206
|
-
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
2207
|
-
left: calc(100% - 20px - 2px);
|
|
2208
|
-
}
|
|
2209
|
-
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
2210
|
-
left: calc(100% - 14px - 1px);
|
|
2211
|
-
}
|
|
2212
|
-
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
2213
|
-
left: calc(100% - 28px - 2px);
|
|
2214
|
-
}
|
|
2215
|
-
|
|
2216
|
-
.c1to9vb9 {
|
|
2217
|
-
margin-left: 5px;
|
|
2218
|
-
}
|
|
2219
|
-
|
|
2220
2082
|
.cz04yix {
|
|
2221
2083
|
display: flex;
|
|
2222
2084
|
flex-direction: column;
|
|
@@ -2882,6 +2744,144 @@ input.rrg1fkn.ant-input {
|
|
|
2882
2744
|
border-bottom-left-radius: 0;
|
|
2883
2745
|
}
|
|
2884
2746
|
|
|
2747
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
2748
|
+
flex-direction: row;
|
|
2749
|
+
justify-content: stretch;
|
|
2750
|
+
}
|
|
2751
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
2752
|
+
padding: 0;
|
|
2753
|
+
margin-right: 4px;
|
|
2754
|
+
flex: 1;
|
|
2755
|
+
overflow: visible;
|
|
2756
|
+
}
|
|
2757
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
2758
|
+
display: none;
|
|
2759
|
+
}
|
|
2760
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
2761
|
+
width: 100%;
|
|
2762
|
+
min-height: unset;
|
|
2763
|
+
}
|
|
2764
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
2765
|
+
height: 26px;
|
|
2766
|
+
line-height: 26px;
|
|
2767
|
+
width: 100%;
|
|
2768
|
+
text-align: center;
|
|
2769
|
+
padding: 0;
|
|
2770
|
+
font-size: 12px;
|
|
2771
|
+
font-weight: normal;
|
|
2772
|
+
}
|
|
2773
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
2774
|
+
margin-right: 10px;
|
|
2775
|
+
}
|
|
2776
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
2777
|
+
display: none;
|
|
2778
|
+
}
|
|
2779
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
2780
|
+
border-radius: 4px 0 0 4px;
|
|
2781
|
+
}
|
|
2782
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
2783
|
+
margin-right: 0;
|
|
2784
|
+
}
|
|
2785
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
2786
|
+
border-radius: 0 4px 4px 0;
|
|
2787
|
+
}
|
|
2788
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
2789
|
+
content: "";
|
|
2790
|
+
width: 0;
|
|
2791
|
+
height: 0;
|
|
2792
|
+
border: 13px solid transparent;
|
|
2793
|
+
position: absolute;
|
|
2794
|
+
top: 0;
|
|
2795
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2796
|
+
right: -21px;
|
|
2797
|
+
z-index: 2;
|
|
2798
|
+
}
|
|
2799
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
2800
|
+
content: "";
|
|
2801
|
+
width: 0;
|
|
2802
|
+
height: 0;
|
|
2803
|
+
border: 13px solid transparent;
|
|
2804
|
+
position: absolute;
|
|
2805
|
+
top: 0;
|
|
2806
|
+
border-left: 8px solid #fff;
|
|
2807
|
+
left: 0;
|
|
2808
|
+
}
|
|
2809
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2810
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2811
|
+
}
|
|
2812
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2813
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2814
|
+
}
|
|
2815
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2816
|
+
color: #005ed1;
|
|
2817
|
+
}
|
|
2818
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2819
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2820
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
2821
|
+
}
|
|
2822
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
2823
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
2824
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2825
|
+
}
|
|
2826
|
+
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
2827
|
+
padding: 0;
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
.s34f1qb.ant-switch {
|
|
2831
|
+
min-width: 40px;
|
|
2832
|
+
height: 24px;
|
|
2833
|
+
background: rgba(172, 186, 211, 0.6);
|
|
2834
|
+
overflow: hidden;
|
|
2835
|
+
}
|
|
2836
|
+
.s34f1qb.ant-switch:focus {
|
|
2837
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
2838
|
+
}
|
|
2839
|
+
.s34f1qb.ant-switch-small {
|
|
2840
|
+
min-width: 26px;
|
|
2841
|
+
height: 16px;
|
|
2842
|
+
}
|
|
2843
|
+
.s34f1qb.ant-switch-large {
|
|
2844
|
+
min-width: 52px;
|
|
2845
|
+
height: 32px;
|
|
2846
|
+
}
|
|
2847
|
+
.s34f1qb.ant-switch .ant-switch-handle {
|
|
2848
|
+
height: 20px;
|
|
2849
|
+
width: 20px;
|
|
2850
|
+
}
|
|
2851
|
+
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
2852
|
+
border-radius: 10px;
|
|
2853
|
+
transition-delay: 120ms;
|
|
2854
|
+
}
|
|
2855
|
+
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
2856
|
+
height: 14px;
|
|
2857
|
+
width: 14px;
|
|
2858
|
+
top: 1px;
|
|
2859
|
+
left: 1px;
|
|
2860
|
+
}
|
|
2861
|
+
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
2862
|
+
height: 28px;
|
|
2863
|
+
width: 28px;
|
|
2864
|
+
}
|
|
2865
|
+
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
2866
|
+
border-radius: 14px;
|
|
2867
|
+
}
|
|
2868
|
+
.s34f1qb.ant-switch-checked {
|
|
2869
|
+
background-color: #00ba5d;
|
|
2870
|
+
}
|
|
2871
|
+
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
2872
|
+
left: calc(100% - 20px - 2px);
|
|
2873
|
+
}
|
|
2874
|
+
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
2875
|
+
left: calc(100% - 14px - 1px);
|
|
2876
|
+
}
|
|
2877
|
+
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
2878
|
+
left: calc(100% - 28px - 2px);
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
.c1to9vb9 {
|
|
2882
|
+
margin-left: 5px;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
2885
|
.t1upn1sz {
|
|
2886
2886
|
height: 100%;
|
|
2887
2887
|
}
|
|
@@ -3326,6 +3326,10 @@ input.rrg1fkn.ant-input {
|
|
|
3326
3326
|
opacity: 0;
|
|
3327
3327
|
}
|
|
3328
3328
|
|
|
3329
|
+
.i1e4sgug {
|
|
3330
|
+
display: inline-block;
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3329
3333
|
.d6j0lbj {
|
|
3330
3334
|
font-family: Inter;
|
|
3331
3335
|
font-style: normal;
|
|
@@ -3801,10 +3805,6 @@ input.rrg1fkn.ant-input {
|
|
|
3801
3805
|
line-height: 12px;
|
|
3802
3806
|
}
|
|
3803
3807
|
|
|
3804
|
-
.i1e4sgug {
|
|
3805
|
-
display: inline-block;
|
|
3806
|
-
}
|
|
3807
|
-
|
|
3808
3808
|
.c198s9j3 {
|
|
3809
3809
|
color: #2d3a56;
|
|
3810
3810
|
line-height: 22px;
|
|
@@ -4167,6 +4167,52 @@ input.rrg1fkn.ant-input {
|
|
|
4167
4167
|
min-height: 0px;
|
|
4168
4168
|
}
|
|
4169
4169
|
|
|
4170
|
+
.at4ovwe .ant-input-number-handler-wrap {
|
|
4171
|
+
display: var(--at4ovwe-0);
|
|
4172
|
+
}
|
|
4173
|
+
.at4ovwe .ant-input-number-input-wrap {
|
|
4174
|
+
padding: 5px 12px;
|
|
4175
|
+
display: inline-flex;
|
|
4176
|
+
line-height: 1.5715;
|
|
4177
|
+
height: 100%;
|
|
4178
|
+
width: 100%;
|
|
4179
|
+
}
|
|
4180
|
+
.at4ovwe .ant-input-number-input-wrap::after {
|
|
4181
|
+
content: var(--at4ovwe-1);
|
|
4182
|
+
display: var(--at4ovwe-2);
|
|
4183
|
+
flex: none;
|
|
4184
|
+
align-items: center;
|
|
4185
|
+
margin-left: 4px;
|
|
4186
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4187
|
+
}
|
|
4188
|
+
.at4ovwe .ant-input-number-input-wrap::before {
|
|
4189
|
+
content: var(--at4ovwe-3);
|
|
4190
|
+
display: var(--at4ovwe-4);
|
|
4191
|
+
flex: none;
|
|
4192
|
+
align-items: center;
|
|
4193
|
+
margin-right: 4px;
|
|
4194
|
+
cursor: auto;
|
|
4195
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4196
|
+
}
|
|
4197
|
+
.at4ovwe.ant-input-number {
|
|
4198
|
+
width: 100%;
|
|
4199
|
+
border-radius: 6px;
|
|
4200
|
+
}
|
|
4201
|
+
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
4202
|
+
border-color: #0096ff;
|
|
4203
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
4204
|
+
}
|
|
4205
|
+
.at4ovwe.ant-input-number.error:not([disabled]):hover, .at4ovwe.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
4206
|
+
border-color: #e75a3a;
|
|
4207
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
4208
|
+
}
|
|
4209
|
+
.at4ovwe .ant-input-number-input {
|
|
4210
|
+
padding: 0;
|
|
4211
|
+
margin: 0;
|
|
4212
|
+
height: auto;
|
|
4213
|
+
font-size: inherit;
|
|
4214
|
+
}
|
|
4215
|
+
|
|
4170
4216
|
.tc40oxa {
|
|
4171
4217
|
margin-bottom: 4px;
|
|
4172
4218
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -4363,52 +4409,6 @@ input.rrg1fkn.ant-input {
|
|
|
4363
4409
|
margin-right: 8px;
|
|
4364
4410
|
}
|
|
4365
4411
|
|
|
4366
|
-
.at4ovwe .ant-input-number-handler-wrap {
|
|
4367
|
-
display: var(--at4ovwe-0);
|
|
4368
|
-
}
|
|
4369
|
-
.at4ovwe .ant-input-number-input-wrap {
|
|
4370
|
-
padding: 5px 12px;
|
|
4371
|
-
display: inline-flex;
|
|
4372
|
-
line-height: 1.5715;
|
|
4373
|
-
height: 100%;
|
|
4374
|
-
width: 100%;
|
|
4375
|
-
}
|
|
4376
|
-
.at4ovwe .ant-input-number-input-wrap::after {
|
|
4377
|
-
content: var(--at4ovwe-1);
|
|
4378
|
-
display: var(--at4ovwe-2);
|
|
4379
|
-
flex: none;
|
|
4380
|
-
align-items: center;
|
|
4381
|
-
margin-left: 4px;
|
|
4382
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4383
|
-
}
|
|
4384
|
-
.at4ovwe .ant-input-number-input-wrap::before {
|
|
4385
|
-
content: var(--at4ovwe-3);
|
|
4386
|
-
display: var(--at4ovwe-4);
|
|
4387
|
-
flex: none;
|
|
4388
|
-
align-items: center;
|
|
4389
|
-
margin-right: 4px;
|
|
4390
|
-
cursor: auto;
|
|
4391
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4392
|
-
}
|
|
4393
|
-
.at4ovwe.ant-input-number {
|
|
4394
|
-
width: 100%;
|
|
4395
|
-
border-radius: 6px;
|
|
4396
|
-
}
|
|
4397
|
-
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
4398
|
-
border-color: #0096ff;
|
|
4399
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
4400
|
-
}
|
|
4401
|
-
.at4ovwe.ant-input-number.error:not([disabled]):hover, .at4ovwe.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
4402
|
-
border-color: #e75a3a;
|
|
4403
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
4404
|
-
}
|
|
4405
|
-
.at4ovwe .ant-input-number-input {
|
|
4406
|
-
padding: 0;
|
|
4407
|
-
margin: 0;
|
|
4408
|
-
height: auto;
|
|
4409
|
-
font-size: inherit;
|
|
4410
|
-
}
|
|
4411
|
-
|
|
4412
4412
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
4413
4413
|
display: var(--a6dbbkm-0);
|
|
4414
4414
|
}
|