@cloudtower/eagle 0.26.17 → 0.26.19
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/Card/index.d.ts +12 -3
- package/dist/components/Steps/style.d.ts +5 -0
- package/dist/components/Token/index.d.ts +10 -2
- package/dist/components/index.d.ts +1 -0
- package/dist/components.css +237 -125
- package/dist/esm/index.js +126 -64
- package/dist/esm/stats1.html +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/spec/base.d.ts +23 -8
- package/dist/style.css +300 -188
- package/dist/umd/index.js +129 -67
- package/dist/umd/stats1.html +1 -1
- package/dist/variables.scss +7 -3
- package/package.json +5 -5
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
export
|
|
2
|
+
export type CardProps = {
|
|
3
3
|
collapsible?: boolean;
|
|
4
4
|
defaultOpen?: boolean;
|
|
5
5
|
title?: React.ReactNode | string;
|
|
6
6
|
subInfo?: React.ReactNode;
|
|
7
7
|
className?: string;
|
|
8
|
+
hoverable?: boolean;
|
|
8
9
|
shadow?: boolean;
|
|
9
|
-
}
|
|
10
|
-
declare const Card: React.ForwardRefExoticComponent<
|
|
10
|
+
} & React.DOMAttributes<HTMLDivElement>;
|
|
11
|
+
declare const Card: React.ForwardRefExoticComponent<{
|
|
12
|
+
collapsible?: boolean | undefined;
|
|
13
|
+
defaultOpen?: boolean | undefined;
|
|
14
|
+
title?: React.ReactNode | string;
|
|
15
|
+
subInfo?: React.ReactNode;
|
|
16
|
+
className?: string | undefined;
|
|
17
|
+
hoverable?: boolean | undefined;
|
|
18
|
+
shadow?: boolean | undefined;
|
|
19
|
+
} & React.DOMAttributes<HTMLDivElement> & {
|
|
11
20
|
children?: React.ReactNode;
|
|
12
21
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
13
22
|
export default Card;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const StepsStyle: import("@linaria/core").LinariaClassName;
|
|
2
|
+
export declare const HorizontalStyle: import("@linaria/core").LinariaClassName;
|
|
3
|
+
export declare const VerticalStyle: import("@linaria/core").LinariaClassName;
|
|
4
|
+
export declare const HorizontalStepContentStyle: import("@linaria/core").LinariaClassName;
|
|
5
|
+
export declare const VerticalStepContentStyle: import("@linaria/core").LinariaClassName;
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { TokenColor } from "../../spec";
|
|
2
3
|
export declare const PresetColors: TokenColor[];
|
|
3
|
-
declare const Token:
|
|
4
|
+
declare const Token: React.ForwardRefExoticComponent<Omit<import("antd/lib/tag").TagProps, "closeIcon"> & {
|
|
5
|
+
color?: TokenColor | undefined;
|
|
6
|
+
size?: "small" | "medium" | "large" | undefined;
|
|
7
|
+
checked?: boolean | undefined;
|
|
8
|
+
tooltipConfig?: {
|
|
9
|
+
title: string;
|
|
10
|
+
} | undefined;
|
|
11
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
4
12
|
export default Token;
|
|
@@ -4,6 +4,7 @@ export * from "./BaseIcon";
|
|
|
4
4
|
export * from "./Button";
|
|
5
5
|
export { default as Button } from "./Button";
|
|
6
6
|
export * from "./ButtonGroup";
|
|
7
|
+
export type * from "./Card";
|
|
7
8
|
export { default as ErrorBoundary } from "./ErrorBoundary";
|
|
8
9
|
export { default as FailedLoad } from "./FailedLoad";
|
|
9
10
|
export type { IconProps } from "./Icon";
|
package/dist/components.css
CHANGED
|
@@ -28370,6 +28370,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
28370
28370
|
align-items: center;
|
|
28371
28371
|
justify-content: center;
|
|
28372
28372
|
position: relative;
|
|
28373
|
+
opacity: 0.2;
|
|
28373
28374
|
}
|
|
28374
28375
|
|
|
28375
28376
|
.loading-indicator__line1 {
|
|
@@ -30164,15 +30165,6 @@ html body {
|
|
|
30164
30165
|
margin-right: 4px;
|
|
30165
30166
|
}
|
|
30166
30167
|
|
|
30167
|
-
.obf05yr {
|
|
30168
|
-
display: inline-block;
|
|
30169
|
-
}
|
|
30170
|
-
|
|
30171
|
-
.hsms1n6 {
|
|
30172
|
-
visibility: hidden;
|
|
30173
|
-
position: absolute;
|
|
30174
|
-
}
|
|
30175
|
-
|
|
30176
30168
|
.p12gwtiw {
|
|
30177
30169
|
display: flex;
|
|
30178
30170
|
justify-content: space-between;
|
|
@@ -30230,6 +30222,15 @@ html body {
|
|
|
30230
30222
|
line-height: 18px;
|
|
30231
30223
|
}
|
|
30232
30224
|
|
|
30225
|
+
.obf05yr {
|
|
30226
|
+
display: inline-block;
|
|
30227
|
+
}
|
|
30228
|
+
|
|
30229
|
+
.hsms1n6 {
|
|
30230
|
+
visibility: hidden;
|
|
30231
|
+
position: absolute;
|
|
30232
|
+
}
|
|
30233
|
+
|
|
30233
30234
|
.rxbeqvl.ant-radio-wrapper {
|
|
30234
30235
|
display: inline-flex;
|
|
30235
30236
|
align-items: baseline;
|
|
@@ -30376,89 +30377,6 @@ html body {
|
|
|
30376
30377
|
width: 36px;
|
|
30377
30378
|
}
|
|
30378
30379
|
|
|
30379
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
30380
|
-
flex-direction: row;
|
|
30381
|
-
justify-content: stretch;
|
|
30382
|
-
}
|
|
30383
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
30384
|
-
padding: 0;
|
|
30385
|
-
margin-right: 4px;
|
|
30386
|
-
flex: 1;
|
|
30387
|
-
overflow: visible;
|
|
30388
|
-
}
|
|
30389
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
30390
|
-
display: none;
|
|
30391
|
-
}
|
|
30392
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
30393
|
-
width: 100%;
|
|
30394
|
-
min-height: unset;
|
|
30395
|
-
}
|
|
30396
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
30397
|
-
height: 26px;
|
|
30398
|
-
line-height: 26px;
|
|
30399
|
-
width: 100%;
|
|
30400
|
-
text-align: center;
|
|
30401
|
-
padding: 0;
|
|
30402
|
-
font-size: 12px;
|
|
30403
|
-
font-weight: normal;
|
|
30404
|
-
}
|
|
30405
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
30406
|
-
margin-right: 10px;
|
|
30407
|
-
}
|
|
30408
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
30409
|
-
display: none;
|
|
30410
|
-
}
|
|
30411
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
30412
|
-
border-radius: 4px 0 0 4px;
|
|
30413
|
-
}
|
|
30414
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
30415
|
-
margin-right: 0;
|
|
30416
|
-
}
|
|
30417
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
30418
|
-
border-radius: 0 4px 4px 0;
|
|
30419
|
-
}
|
|
30420
|
-
.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 {
|
|
30421
|
-
content: "";
|
|
30422
|
-
width: 0;
|
|
30423
|
-
height: 0;
|
|
30424
|
-
border: 13px solid transparent;
|
|
30425
|
-
position: absolute;
|
|
30426
|
-
top: 0;
|
|
30427
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
30428
|
-
right: -21px;
|
|
30429
|
-
z-index: 2;
|
|
30430
|
-
}
|
|
30431
|
-
.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 {
|
|
30432
|
-
content: "";
|
|
30433
|
-
width: 0;
|
|
30434
|
-
height: 0;
|
|
30435
|
-
border: 13px solid transparent;
|
|
30436
|
-
position: absolute;
|
|
30437
|
-
top: 0;
|
|
30438
|
-
border-left: 8px solid #fff;
|
|
30439
|
-
left: 0;
|
|
30440
|
-
}
|
|
30441
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
30442
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
30443
|
-
}
|
|
30444
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
30445
|
-
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
30446
|
-
}
|
|
30447
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
30448
|
-
color: #005ed1;
|
|
30449
|
-
}
|
|
30450
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
30451
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
30452
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
30453
|
-
}
|
|
30454
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
30455
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
30456
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30457
|
-
}
|
|
30458
|
-
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
30459
|
-
padding: 0;
|
|
30460
|
-
}
|
|
30461
|
-
|
|
30462
30380
|
.cz04yix {
|
|
30463
30381
|
display: flex;
|
|
30464
30382
|
flex-direction: column;
|
|
@@ -32216,16 +32134,6 @@ input.rrg1fkn.ant-input {
|
|
|
32216
32134
|
cursor: default;
|
|
32217
32135
|
}
|
|
32218
32136
|
|
|
32219
|
-
.igz4le8 {
|
|
32220
|
-
height: 24px;
|
|
32221
|
-
width: 56px !important;
|
|
32222
|
-
margin-right: 4px;
|
|
32223
|
-
}
|
|
32224
|
-
|
|
32225
|
-
.c1riexje {
|
|
32226
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32227
|
-
}
|
|
32228
|
-
|
|
32229
32137
|
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
32230
32138
|
border-radius: 6px;
|
|
32231
32139
|
}
|
|
@@ -32283,6 +32191,16 @@ input.rrg1fkn.ant-input {
|
|
|
32283
32191
|
transform: rotate(180deg);
|
|
32284
32192
|
}
|
|
32285
32193
|
|
|
32194
|
+
.igz4le8 {
|
|
32195
|
+
height: 24px;
|
|
32196
|
+
width: 56px !important;
|
|
32197
|
+
margin-right: 4px;
|
|
32198
|
+
}
|
|
32199
|
+
|
|
32200
|
+
.c1riexje {
|
|
32201
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32202
|
+
}
|
|
32203
|
+
|
|
32286
32204
|
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32287
32205
|
display: flex;
|
|
32288
32206
|
}
|
|
@@ -32523,6 +32441,192 @@ input.rrg1fkn.ant-input {
|
|
|
32523
32441
|
margin-left: 8px;
|
|
32524
32442
|
}
|
|
32525
32443
|
|
|
32444
|
+
.sq6vos1 {
|
|
32445
|
+
--item-min-width: 60px;
|
|
32446
|
+
}
|
|
32447
|
+
.sq6vos1 .ant-steps-item-tail, .sq6vos1 .ant-steps-item-icon {
|
|
32448
|
+
display: none !important;
|
|
32449
|
+
}
|
|
32450
|
+
.sq6vos1 .ant-steps-item.ant-steps-item-active {
|
|
32451
|
+
flex-shrink: 0 !important;
|
|
32452
|
+
}
|
|
32453
|
+
.sq6vos1 .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
|
|
32454
|
+
color: #0080ff;
|
|
32455
|
+
}
|
|
32456
|
+
.sq6vos1 .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
32457
|
+
color: #0080ff;
|
|
32458
|
+
font-weight: normal;
|
|
32459
|
+
}
|
|
32460
|
+
.sq6vos1 .ant-steps-item.ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title, .sq6vos1 .ant-steps-item.ant-steps-item-finish .ant-steps-item-container:hover .ant-steps-item-content .ant-steps-item-title {
|
|
32461
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32462
|
+
}
|
|
32463
|
+
.sq6vos1 .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
32464
|
+
color: #00122e;
|
|
32465
|
+
}
|
|
32466
|
+
.sq6vos1 .step-item-text {
|
|
32467
|
+
display: inline-block;
|
|
32468
|
+
}
|
|
32469
|
+
.sq6vos1 .step-item-title {
|
|
32470
|
+
overflow: hidden;
|
|
32471
|
+
white-space: nowrap;
|
|
32472
|
+
text-overflow: ellipsis;
|
|
32473
|
+
}
|
|
32474
|
+
|
|
32475
|
+
.hjtnwxg .ant-steps-item-container {
|
|
32476
|
+
min-width: var(--item-min-width);
|
|
32477
|
+
}
|
|
32478
|
+
.hjtnwxg .ant-steps-item-disabled {
|
|
32479
|
+
cursor: not-allowed !important;
|
|
32480
|
+
}
|
|
32481
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
32482
|
+
flex-direction: row;
|
|
32483
|
+
justify-content: stretch;
|
|
32484
|
+
}
|
|
32485
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
32486
|
+
padding: 0;
|
|
32487
|
+
margin-right: 4px;
|
|
32488
|
+
flex: 1;
|
|
32489
|
+
overflow: visible;
|
|
32490
|
+
}
|
|
32491
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
32492
|
+
width: 100%;
|
|
32493
|
+
min-height: unset;
|
|
32494
|
+
}
|
|
32495
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
32496
|
+
height: 26px;
|
|
32497
|
+
line-height: 26px;
|
|
32498
|
+
width: 100%;
|
|
32499
|
+
padding: 0;
|
|
32500
|
+
font-size: 12px;
|
|
32501
|
+
}
|
|
32502
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
32503
|
+
margin-right: 10px;
|
|
32504
|
+
}
|
|
32505
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
32506
|
+
display: none;
|
|
32507
|
+
}
|
|
32508
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
32509
|
+
padding-left: 8px;
|
|
32510
|
+
padding-right: 4px;
|
|
32511
|
+
border-radius: 4px 0 0 4px;
|
|
32512
|
+
}
|
|
32513
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
32514
|
+
margin-right: 0;
|
|
32515
|
+
}
|
|
32516
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
32517
|
+
padding-right: 8px;
|
|
32518
|
+
padding-left: 12px;
|
|
32519
|
+
border-radius: 0 4px 4px 0;
|
|
32520
|
+
}
|
|
32521
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
32522
|
+
content: "";
|
|
32523
|
+
width: 0;
|
|
32524
|
+
height: 0;
|
|
32525
|
+
border: 13px solid transparent;
|
|
32526
|
+
position: absolute;
|
|
32527
|
+
top: 0;
|
|
32528
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
32529
|
+
z-index: 2;
|
|
32530
|
+
position: relative;
|
|
32531
|
+
top: -50%;
|
|
32532
|
+
right: -100%;
|
|
32533
|
+
display: inline-block;
|
|
32534
|
+
}
|
|
32535
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
|
|
32536
|
+
padding: 0 4px 0 12px;
|
|
32537
|
+
}
|
|
32538
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
32539
|
+
content: "";
|
|
32540
|
+
width: 0;
|
|
32541
|
+
height: 0;
|
|
32542
|
+
border: 13px solid transparent;
|
|
32543
|
+
position: absolute;
|
|
32544
|
+
top: 0;
|
|
32545
|
+
border-left: 8px solid #fff;
|
|
32546
|
+
left: 0;
|
|
32547
|
+
}
|
|
32548
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
|
|
32549
|
+
max-width: calc(100% - var(--item-min-width) * 2);
|
|
32550
|
+
}
|
|
32551
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
32552
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
32553
|
+
}
|
|
32554
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
32555
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
32556
|
+
}
|
|
32557
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
32558
|
+
cursor: pointer;
|
|
32559
|
+
min-width: var(--item-min-width);
|
|
32560
|
+
}
|
|
32561
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
|
|
32562
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
32563
|
+
min-width: var(--item-min-width);
|
|
32564
|
+
}
|
|
32565
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
32566
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
32567
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
32568
|
+
}
|
|
32569
|
+
.hjtnwxg .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
32570
|
+
padding: 0;
|
|
32571
|
+
}
|
|
32572
|
+
|
|
32573
|
+
.v1p8siwu .ant-steps.ant-steps-vertical {
|
|
32574
|
+
width: 138px;
|
|
32575
|
+
row-gap: 2px;
|
|
32576
|
+
}
|
|
32577
|
+
.v1p8siwu .ant-steps.ant-steps-vertical .ant-steps-item-container {
|
|
32578
|
+
padding: 0 8px;
|
|
32579
|
+
border-radius: 4px;
|
|
32580
|
+
height: 32px;
|
|
32581
|
+
display: flex;
|
|
32582
|
+
align-items: center;
|
|
32583
|
+
}
|
|
32584
|
+
.v1p8siwu .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
|
|
32585
|
+
min-height: auto;
|
|
32586
|
+
white-space: nowrap;
|
|
32587
|
+
}
|
|
32588
|
+
.v1p8siwu .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
32589
|
+
font-size: 13px;
|
|
32590
|
+
line-height: 20px;
|
|
32591
|
+
max-width: 100%;
|
|
32592
|
+
}
|
|
32593
|
+
.v1p8siwu .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
|
|
32594
|
+
background: rgba(0, 128, 255, 0.1);
|
|
32595
|
+
}
|
|
32596
|
+
|
|
32597
|
+
.h1xo7yjb {
|
|
32598
|
+
width: 100%;
|
|
32599
|
+
display: inline-flex;
|
|
32600
|
+
align-items: center;
|
|
32601
|
+
justify-content: center;
|
|
32602
|
+
column-gap: 4px;
|
|
32603
|
+
}
|
|
32604
|
+
.h1xo7yjb .step-item-prefix-container {
|
|
32605
|
+
display: inline-flex;
|
|
32606
|
+
align-items: center;
|
|
32607
|
+
width: 18px;
|
|
32608
|
+
height: 18px;
|
|
32609
|
+
color: rgba(44, 56, 82, 0.75);
|
|
32610
|
+
justify-content: center;
|
|
32611
|
+
}
|
|
32612
|
+
|
|
32613
|
+
.v1f2f7cy {
|
|
32614
|
+
width: 100%;
|
|
32615
|
+
display: flex;
|
|
32616
|
+
align-items: center;
|
|
32617
|
+
justify-content: center;
|
|
32618
|
+
column-gap: 6px;
|
|
32619
|
+
font-size: 13px;
|
|
32620
|
+
}
|
|
32621
|
+
.v1f2f7cy .step-item-prefix-container {
|
|
32622
|
+
display: inline-flex;
|
|
32623
|
+
align-items: center;
|
|
32624
|
+
min-width: 20px;
|
|
32625
|
+
min-height: 20px;
|
|
32626
|
+
color: rgba(44, 56, 82, 0.75);
|
|
32627
|
+
justify-content: center;
|
|
32628
|
+
}
|
|
32629
|
+
|
|
32526
32630
|
.t1gz6wqf {
|
|
32527
32631
|
height: 100%;
|
|
32528
32632
|
}
|
|
@@ -32553,10 +32657,6 @@ input.rrg1fkn.ant-input {
|
|
|
32553
32657
|
background: rgba(163, 180, 204, 0.18);
|
|
32554
32658
|
}
|
|
32555
32659
|
|
|
32556
|
-
.c1k4vanq {
|
|
32557
|
-
padding: 0 16px 14px 16px;
|
|
32558
|
-
}
|
|
32559
|
-
|
|
32560
32660
|
.c1udgdh2 {
|
|
32561
32661
|
color: #2d3a56;
|
|
32562
32662
|
padding: 12px 16px 10px 16px;
|
|
@@ -32597,6 +32697,10 @@ input.rrg1fkn.ant-input {
|
|
|
32597
32697
|
margin-right: 2px;
|
|
32598
32698
|
}
|
|
32599
32699
|
|
|
32700
|
+
.c1k4vanq {
|
|
32701
|
+
padding: 0 16px 14px 16px;
|
|
32702
|
+
}
|
|
32703
|
+
|
|
32600
32704
|
.bab9xum {
|
|
32601
32705
|
box-shadow: 0px 0.119595px 0.438513px rgba(129, 138, 153, 0.14), 0px 0.271728px 0.996336px rgba(129, 138, 153, 0.106447), 0px 0.472931px 1.73408px rgba(129, 138, 153, 0.0912224), 0px 0.751293px 2.75474px rgba(129, 138, 153, 0.0799253), 0px 1.15919px 4.25036px rgba(129, 138, 153, 0.07), 0px 1.80882px 6.63236px rgba(129, 138, 153, 0.0600747), 0px 3.00293px 11.0107px rgba(129, 138, 153, 0.0487776), 0px 6px 22px rgba(129, 138, 153, 0.0335534);
|
|
32602
32706
|
}
|
|
@@ -32605,6 +32709,14 @@ input.rrg1fkn.ant-input {
|
|
|
32605
32709
|
border-radius: 4px;
|
|
32606
32710
|
background-color: white;
|
|
32607
32711
|
}
|
|
32712
|
+
.cav4gt6.hoverable {
|
|
32713
|
+
cursor: pointer;
|
|
32714
|
+
}
|
|
32715
|
+
.cav4gt6.hoverable:hover {
|
|
32716
|
+
transition: all 200ms ease;
|
|
32717
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
32718
|
+
transform: translateY(-4px);
|
|
32719
|
+
}
|
|
32608
32720
|
|
|
32609
32721
|
.rrwcpby {
|
|
32610
32722
|
display: flex;
|
|
@@ -32925,25 +33037,6 @@ input.rrg1fkn.ant-input {
|
|
|
32925
33037
|
height: 16px;
|
|
32926
33038
|
}
|
|
32927
33039
|
|
|
32928
|
-
.feau332.ant-form-item {
|
|
32929
|
-
margin-bottom: 0;
|
|
32930
|
-
}
|
|
32931
|
-
.feau332 .ant-form-item-explain {
|
|
32932
|
-
display: none;
|
|
32933
|
-
min-height: 18px;
|
|
32934
|
-
margin-top: 5px;
|
|
32935
|
-
font-family: "Inter";
|
|
32936
|
-
font-weight: 400;
|
|
32937
|
-
font-size: 12px;
|
|
32938
|
-
line-height: 18px;
|
|
32939
|
-
}
|
|
32940
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
32941
|
-
white-space: pre-wrap;
|
|
32942
|
-
}
|
|
32943
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
32944
|
-
display: block;
|
|
32945
|
-
}
|
|
32946
|
-
|
|
32947
33040
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
32948
33041
|
display: var(--a6dbbkm-0);
|
|
32949
33042
|
}
|
|
@@ -32973,4 +33066,23 @@ input.rrg1fkn.ant-input {
|
|
|
32973
33066
|
margin: 0;
|
|
32974
33067
|
height: auto;
|
|
32975
33068
|
font-size: inherit;
|
|
33069
|
+
}
|
|
33070
|
+
|
|
33071
|
+
.feau332.ant-form-item {
|
|
33072
|
+
margin-bottom: 0;
|
|
33073
|
+
}
|
|
33074
|
+
.feau332 .ant-form-item-explain {
|
|
33075
|
+
display: none;
|
|
33076
|
+
min-height: 18px;
|
|
33077
|
+
margin-top: 5px;
|
|
33078
|
+
font-family: "Inter";
|
|
33079
|
+
font-weight: 400;
|
|
33080
|
+
font-size: 12px;
|
|
33081
|
+
line-height: 18px;
|
|
33082
|
+
}
|
|
33083
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
33084
|
+
white-space: pre-wrap;
|
|
33085
|
+
}
|
|
33086
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
33087
|
+
display: block;
|
|
32976
33088
|
}
|