@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
package/dist/spec/base.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ import { RowProps } from "antd/lib/row";
|
|
|
35
35
|
import { SelectProps as AntdSelectProps, SelectProps } from "antd/lib/select";
|
|
36
36
|
import { SkeletonProps as AntdSkeletonProps } from "antd/lib/skeleton";
|
|
37
37
|
import { SkeletonButtonProps } from "antd/lib/skeleton/Button";
|
|
38
|
-
import Steps
|
|
38
|
+
import Steps from "antd/lib/steps";
|
|
39
39
|
import { SwitchProps as AntdSwitchProps } from "antd/lib/switch";
|
|
40
40
|
import { ColumnsType, ColumnType, TableProps as AntdTableProps } from "antd/lib/table";
|
|
41
41
|
import { TableRowSelection } from "antd/lib/table/interface";
|
|
@@ -50,7 +50,7 @@ import { TextProps } from "antd/lib/typography/Text";
|
|
|
50
50
|
import { DraggerProps, UploadProps } from "antd/lib/upload";
|
|
51
51
|
import type { Moment } from "moment";
|
|
52
52
|
import React, { ForwardRefExoticComponent, PropsWithChildren, PropsWithoutRef, ReactNode, RefAttributes } from "react";
|
|
53
|
-
import {
|
|
53
|
+
import { CardProps } from "../components/Card";
|
|
54
54
|
import { IEmptyProps } from "../components/Empty";
|
|
55
55
|
import { MessageApi } from "../components/message";
|
|
56
56
|
import { TableFormHandle, TableFormProps } from "../components/TableForm/types";
|
|
@@ -345,10 +345,21 @@ export type RadioButtonProps = AntdRadioButtonProps & {
|
|
|
345
345
|
initialValue?: string | number;
|
|
346
346
|
onInputChange?: (val: number | string | undefined) => void;
|
|
347
347
|
};
|
|
348
|
-
export type
|
|
349
|
-
|
|
348
|
+
export type StepProps = {
|
|
349
|
+
className?: string;
|
|
350
|
+
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
351
|
+
title: string;
|
|
352
|
+
style?: React.CSSProperties;
|
|
353
|
+
};
|
|
354
|
+
export type IStepsProps = {
|
|
355
|
+
className?: string;
|
|
356
|
+
current?: number;
|
|
357
|
+
direction?: "horizontal" | "vertical";
|
|
358
|
+
style?: React.CSSProperties;
|
|
359
|
+
onChange?: (current: number) => void;
|
|
360
|
+
stepsConfig: Array<StepProps>;
|
|
350
361
|
containerClassname?: string;
|
|
351
|
-
|
|
362
|
+
disabled?: boolean;
|
|
352
363
|
};
|
|
353
364
|
export interface ISimplePaginationProps {
|
|
354
365
|
className?: string;
|
|
@@ -495,7 +506,7 @@ export interface Kit<V = any, T extends HTMLElement = HTMLElement> {
|
|
|
495
506
|
antdTreeSelect: typeof TreeSelect;
|
|
496
507
|
antdDrawer: React.FC<DrawerProps>;
|
|
497
508
|
truncate: React.FC<TruncatePropTypes>;
|
|
498
|
-
card: ForwardRefExoticComponent<PropsWithoutRef<
|
|
509
|
+
card: ForwardRefExoticComponent<PropsWithoutRef<PropsWithChildren<CardProps>> & RefAttributes<HTMLDivElement>>;
|
|
499
510
|
expandableList: {
|
|
500
511
|
ExpandableContainer: React.FC<PropsWithChildren<{}>>;
|
|
501
512
|
ExpandableItem: React.FC<PropsWithChildren<IExpandableItemProps>>;
|
|
@@ -545,9 +556,13 @@ export type SplitTagComponentType = React.FC<Omit<TagProps, "closable" | "closeI
|
|
|
545
556
|
secondaryContent: React.ReactNode;
|
|
546
557
|
}>;
|
|
547
558
|
export type TokenColor = "red" | "yellow" | "green" | "blue" | "gray";
|
|
548
|
-
export type
|
|
559
|
+
export type TokenType = Omit<TagProps, "closeIcon"> & {
|
|
549
560
|
color?: TokenColor;
|
|
550
561
|
size?: "small" | "medium" | "large";
|
|
551
562
|
checked?: boolean;
|
|
552
|
-
|
|
563
|
+
tooltipConfig?: {
|
|
564
|
+
title: string;
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
export type TokenComponentType = React.ForwardRefExoticComponent<TokenType & React.RefAttributes<HTMLDivElement>>;
|
|
553
568
|
export {};
|
package/dist/style.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 {
|
|
@@ -31183,87 +31184,85 @@ input.rrg1fkn.ant-input {
|
|
|
31183
31184
|
margin-left: 5px;
|
|
31184
31185
|
}
|
|
31185
31186
|
|
|
31186
|
-
.
|
|
31187
|
-
|
|
31188
|
-
justify-content: stretch;
|
|
31189
|
-
}
|
|
31190
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
31191
|
-
padding: 0;
|
|
31192
|
-
margin-right: 4px;
|
|
31193
|
-
flex: 1;
|
|
31194
|
-
overflow: visible;
|
|
31195
|
-
}
|
|
31196
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
31197
|
-
display: none;
|
|
31198
|
-
}
|
|
31199
|
-
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
31200
|
-
width: 100%;
|
|
31201
|
-
min-height: unset;
|
|
31187
|
+
.s1fc623g {
|
|
31188
|
+
width: 430px !important;
|
|
31202
31189
|
}
|
|
31203
|
-
|
|
31204
|
-
|
|
31205
|
-
|
|
31206
|
-
|
|
31207
|
-
|
|
31208
|
-
|
|
31209
|
-
|
|
31210
|
-
|
|
31190
|
+
|
|
31191
|
+
.da3mx0o .ant-select-item-group {
|
|
31192
|
+
padding: 8px 16px;
|
|
31193
|
+
line-height: 18px;
|
|
31194
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31195
|
+
height: 34px;
|
|
31196
|
+
min-height: 34px;
|
|
31197
|
+
box-sizing: border-box;
|
|
31198
|
+
margin-top: 8px;
|
|
31211
31199
|
}
|
|
31212
|
-
|
|
31213
|
-
|
|
31200
|
+
|
|
31201
|
+
.onr9gzt {
|
|
31202
|
+
display: flex;
|
|
31203
|
+
flex-direction: column;
|
|
31204
|
+
margin: 1px 8px;
|
|
31205
|
+
padding: 8px;
|
|
31206
|
+
border-radius: 4px;
|
|
31214
31207
|
}
|
|
31215
|
-
.
|
|
31208
|
+
.onr9gzt .selected-icon {
|
|
31216
31209
|
display: none;
|
|
31217
31210
|
}
|
|
31218
|
-
.
|
|
31219
|
-
|
|
31211
|
+
.onr9gzt.ant-select-item-option-grouped {
|
|
31212
|
+
padding-left: 8px;
|
|
31220
31213
|
}
|
|
31221
|
-
.
|
|
31222
|
-
|
|
31214
|
+
.onr9gzt.ant-select-item-option-selected {
|
|
31215
|
+
background-color: white;
|
|
31223
31216
|
}
|
|
31224
|
-
.
|
|
31225
|
-
|
|
31217
|
+
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
31218
|
+
color: #0080ff;
|
|
31226
31219
|
}
|
|
31227
|
-
.
|
|
31228
|
-
|
|
31229
|
-
width: 0;
|
|
31230
|
-
height: 0;
|
|
31231
|
-
border: 13px solid transparent;
|
|
31232
|
-
position: absolute;
|
|
31233
|
-
top: 0;
|
|
31234
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
31235
|
-
right: -21px;
|
|
31236
|
-
z-index: 2;
|
|
31220
|
+
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
31221
|
+
display: block;
|
|
31237
31222
|
}
|
|
31238
|
-
.
|
|
31239
|
-
|
|
31240
|
-
width: 0;
|
|
31241
|
-
height: 0;
|
|
31242
|
-
border: 13px solid transparent;
|
|
31243
|
-
position: absolute;
|
|
31244
|
-
top: 0;
|
|
31245
|
-
border-left: 8px solid #fff;
|
|
31246
|
-
left: 0;
|
|
31223
|
+
.onr9gzt.ant-select-item-option-active {
|
|
31224
|
+
background: rgba(0, 136, 255, 0.16);
|
|
31247
31225
|
}
|
|
31248
|
-
.
|
|
31249
|
-
|
|
31226
|
+
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
31227
|
+
color: #0080ff;
|
|
31250
31228
|
}
|
|
31251
|
-
.
|
|
31252
|
-
|
|
31229
|
+
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
31230
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31231
|
+
color: #0080ff;
|
|
31253
31232
|
}
|
|
31254
|
-
|
|
31255
|
-
|
|
31233
|
+
|
|
31234
|
+
.oiy0apc {
|
|
31235
|
+
display: flex;
|
|
31236
|
+
justify-content: space-between;
|
|
31237
|
+
height: 20px;
|
|
31238
|
+
line-height: 20px;
|
|
31256
31239
|
}
|
|
31257
|
-
.
|
|
31258
|
-
|
|
31259
|
-
|
|
31240
|
+
.oiy0apc .timezone-title {
|
|
31241
|
+
color: #2d3a56;
|
|
31242
|
+
overflow: hidden;
|
|
31243
|
+
text-overflow: ellipsis;
|
|
31260
31244
|
}
|
|
31261
|
-
|
|
31262
|
-
.
|
|
31245
|
+
|
|
31246
|
+
.of4y382 {
|
|
31247
|
+
display: flex;
|
|
31248
|
+
justify-content: space-between;
|
|
31263
31249
|
color: rgba(44, 56, 82, 0.6);
|
|
31250
|
+
height: 18px;
|
|
31251
|
+
line-height: 18px;
|
|
31252
|
+
margin-top: 2px;
|
|
31264
31253
|
}
|
|
31265
|
-
|
|
31266
|
-
|
|
31254
|
+
|
|
31255
|
+
.t19903l9 {
|
|
31256
|
+
border: none;
|
|
31257
|
+
margin-right: 0;
|
|
31258
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31259
|
+
}
|
|
31260
|
+
|
|
31261
|
+
.ohwbvxu {
|
|
31262
|
+
pointer-events: none;
|
|
31263
|
+
height: 32px;
|
|
31264
|
+
width: 100%;
|
|
31265
|
+
opacity: 0;
|
|
31267
31266
|
}
|
|
31268
31267
|
|
|
31269
31268
|
.t1upn1sz {
|
|
@@ -31630,91 +31629,6 @@ input.rrg1fkn.ant-input {
|
|
|
31630
31629
|
background: #fff;
|
|
31631
31630
|
}
|
|
31632
31631
|
|
|
31633
|
-
.s1fc623g {
|
|
31634
|
-
width: 430px !important;
|
|
31635
|
-
}
|
|
31636
|
-
|
|
31637
|
-
.da3mx0o .ant-select-item-group {
|
|
31638
|
-
padding: 8px 16px;
|
|
31639
|
-
line-height: 18px;
|
|
31640
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31641
|
-
height: 34px;
|
|
31642
|
-
min-height: 34px;
|
|
31643
|
-
box-sizing: border-box;
|
|
31644
|
-
margin-top: 8px;
|
|
31645
|
-
}
|
|
31646
|
-
|
|
31647
|
-
.onr9gzt {
|
|
31648
|
-
display: flex;
|
|
31649
|
-
flex-direction: column;
|
|
31650
|
-
margin: 1px 8px;
|
|
31651
|
-
padding: 8px;
|
|
31652
|
-
border-radius: 4px;
|
|
31653
|
-
}
|
|
31654
|
-
.onr9gzt .selected-icon {
|
|
31655
|
-
display: none;
|
|
31656
|
-
}
|
|
31657
|
-
.onr9gzt.ant-select-item-option-grouped {
|
|
31658
|
-
padding-left: 8px;
|
|
31659
|
-
}
|
|
31660
|
-
.onr9gzt.ant-select-item-option-selected {
|
|
31661
|
-
background-color: white;
|
|
31662
|
-
}
|
|
31663
|
-
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
31664
|
-
color: #0080ff;
|
|
31665
|
-
}
|
|
31666
|
-
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
31667
|
-
display: block;
|
|
31668
|
-
}
|
|
31669
|
-
.onr9gzt.ant-select-item-option-active {
|
|
31670
|
-
background: rgba(0, 136, 255, 0.16);
|
|
31671
|
-
}
|
|
31672
|
-
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
31673
|
-
color: #0080ff;
|
|
31674
|
-
}
|
|
31675
|
-
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
31676
|
-
background: rgba(0, 136, 255, 0.1);
|
|
31677
|
-
color: #0080ff;
|
|
31678
|
-
}
|
|
31679
|
-
|
|
31680
|
-
.oiy0apc {
|
|
31681
|
-
display: flex;
|
|
31682
|
-
justify-content: space-between;
|
|
31683
|
-
height: 20px;
|
|
31684
|
-
line-height: 20px;
|
|
31685
|
-
}
|
|
31686
|
-
.oiy0apc .timezone-title {
|
|
31687
|
-
color: #2d3a56;
|
|
31688
|
-
overflow: hidden;
|
|
31689
|
-
text-overflow: ellipsis;
|
|
31690
|
-
}
|
|
31691
|
-
|
|
31692
|
-
.of4y382 {
|
|
31693
|
-
display: flex;
|
|
31694
|
-
justify-content: space-between;
|
|
31695
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31696
|
-
height: 18px;
|
|
31697
|
-
line-height: 18px;
|
|
31698
|
-
margin-top: 2px;
|
|
31699
|
-
}
|
|
31700
|
-
|
|
31701
|
-
.t19903l9 {
|
|
31702
|
-
border: none;
|
|
31703
|
-
margin-right: 0;
|
|
31704
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31705
|
-
}
|
|
31706
|
-
|
|
31707
|
-
.ohwbvxu {
|
|
31708
|
-
pointer-events: none;
|
|
31709
|
-
height: 32px;
|
|
31710
|
-
width: 100%;
|
|
31711
|
-
opacity: 0;
|
|
31712
|
-
}
|
|
31713
|
-
|
|
31714
|
-
.i1e4sgug {
|
|
31715
|
-
display: inline-block;
|
|
31716
|
-
}
|
|
31717
|
-
|
|
31718
31632
|
.d6j0lbj {
|
|
31719
31633
|
font-family: Inter;
|
|
31720
31634
|
font-style: normal;
|
|
@@ -32190,6 +32104,10 @@ input.rrg1fkn.ant-input {
|
|
|
32190
32104
|
line-height: 12px;
|
|
32191
32105
|
}
|
|
32192
32106
|
|
|
32107
|
+
.i1e4sgug {
|
|
32108
|
+
display: inline-block;
|
|
32109
|
+
}
|
|
32110
|
+
|
|
32193
32111
|
.m15dvk92 {
|
|
32194
32112
|
display: flex;
|
|
32195
32113
|
justify-content: space-between;
|
|
@@ -32303,6 +32221,20 @@ input.rrg1fkn.ant-input {
|
|
|
32303
32221
|
cursor: default;
|
|
32304
32222
|
}
|
|
32305
32223
|
|
|
32224
|
+
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32225
|
+
display: flex;
|
|
32226
|
+
}
|
|
32227
|
+
|
|
32228
|
+
.igz4le8 {
|
|
32229
|
+
height: 24px;
|
|
32230
|
+
width: 56px !important;
|
|
32231
|
+
margin-right: 4px;
|
|
32232
|
+
}
|
|
32233
|
+
|
|
32234
|
+
.c1riexje {
|
|
32235
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32236
|
+
}
|
|
32237
|
+
|
|
32306
32238
|
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
32307
32239
|
border-radius: 6px;
|
|
32308
32240
|
}
|
|
@@ -32360,20 +32292,6 @@ input.rrg1fkn.ant-input {
|
|
|
32360
32292
|
transform: rotate(180deg);
|
|
32361
32293
|
}
|
|
32362
32294
|
|
|
32363
|
-
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
32364
|
-
display: flex;
|
|
32365
|
-
}
|
|
32366
|
-
|
|
32367
|
-
.igz4le8 {
|
|
32368
|
-
height: 24px;
|
|
32369
|
-
width: 56px !important;
|
|
32370
|
-
margin-right: 4px;
|
|
32371
|
-
}
|
|
32372
|
-
|
|
32373
|
-
.c1riexje {
|
|
32374
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32375
|
-
}
|
|
32376
|
-
|
|
32377
32295
|
.s1uupxds {
|
|
32378
32296
|
padding: 0 8px;
|
|
32379
32297
|
border-radius: 4px;
|
|
@@ -32610,6 +32528,192 @@ input.rrg1fkn.ant-input {
|
|
|
32610
32528
|
margin-left: 8px;
|
|
32611
32529
|
}
|
|
32612
32530
|
|
|
32531
|
+
.sq6vos1 {
|
|
32532
|
+
--item-min-width: 60px;
|
|
32533
|
+
}
|
|
32534
|
+
.sq6vos1 .ant-steps-item-tail, .sq6vos1 .ant-steps-item-icon {
|
|
32535
|
+
display: none !important;
|
|
32536
|
+
}
|
|
32537
|
+
.sq6vos1 .ant-steps-item.ant-steps-item-active {
|
|
32538
|
+
flex-shrink: 0 !important;
|
|
32539
|
+
}
|
|
32540
|
+
.sq6vos1 .ant-steps-item.ant-steps-item-active .step-item-prefix-container {
|
|
32541
|
+
color: #0080ff;
|
|
32542
|
+
}
|
|
32543
|
+
.sq6vos1 .ant-steps-item.ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
32544
|
+
color: #0080ff;
|
|
32545
|
+
font-weight: normal;
|
|
32546
|
+
}
|
|
32547
|
+
.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 {
|
|
32548
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32549
|
+
}
|
|
32550
|
+
.sq6vos1 .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
32551
|
+
color: #00122e;
|
|
32552
|
+
}
|
|
32553
|
+
.sq6vos1 .step-item-text {
|
|
32554
|
+
display: inline-block;
|
|
32555
|
+
}
|
|
32556
|
+
.sq6vos1 .step-item-title {
|
|
32557
|
+
overflow: hidden;
|
|
32558
|
+
white-space: nowrap;
|
|
32559
|
+
text-overflow: ellipsis;
|
|
32560
|
+
}
|
|
32561
|
+
|
|
32562
|
+
.hjtnwxg .ant-steps-item-container {
|
|
32563
|
+
min-width: var(--item-min-width);
|
|
32564
|
+
}
|
|
32565
|
+
.hjtnwxg .ant-steps-item-disabled {
|
|
32566
|
+
cursor: not-allowed !important;
|
|
32567
|
+
}
|
|
32568
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
32569
|
+
flex-direction: row;
|
|
32570
|
+
justify-content: stretch;
|
|
32571
|
+
}
|
|
32572
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
32573
|
+
padding: 0;
|
|
32574
|
+
margin-right: 4px;
|
|
32575
|
+
flex: 1;
|
|
32576
|
+
overflow: visible;
|
|
32577
|
+
}
|
|
32578
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
32579
|
+
width: 100%;
|
|
32580
|
+
min-height: unset;
|
|
32581
|
+
}
|
|
32582
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
32583
|
+
height: 26px;
|
|
32584
|
+
line-height: 26px;
|
|
32585
|
+
width: 100%;
|
|
32586
|
+
padding: 0;
|
|
32587
|
+
font-size: 12px;
|
|
32588
|
+
}
|
|
32589
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
32590
|
+
margin-right: 10px;
|
|
32591
|
+
}
|
|
32592
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
32593
|
+
display: none;
|
|
32594
|
+
}
|
|
32595
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
32596
|
+
padding-left: 8px;
|
|
32597
|
+
padding-right: 4px;
|
|
32598
|
+
border-radius: 4px 0 0 4px;
|
|
32599
|
+
}
|
|
32600
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
32601
|
+
margin-right: 0;
|
|
32602
|
+
}
|
|
32603
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
32604
|
+
padding-right: 8px;
|
|
32605
|
+
padding-left: 12px;
|
|
32606
|
+
border-radius: 0 4px 4px 0;
|
|
32607
|
+
}
|
|
32608
|
+
.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 {
|
|
32609
|
+
content: "";
|
|
32610
|
+
width: 0;
|
|
32611
|
+
height: 0;
|
|
32612
|
+
border: 13px solid transparent;
|
|
32613
|
+
position: absolute;
|
|
32614
|
+
top: 0;
|
|
32615
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
32616
|
+
z-index: 2;
|
|
32617
|
+
position: relative;
|
|
32618
|
+
top: -50%;
|
|
32619
|
+
right: -100%;
|
|
32620
|
+
display: inline-block;
|
|
32621
|
+
}
|
|
32622
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(:first-child):not(:last-child) .ant-steps-item-container {
|
|
32623
|
+
padding: 0 4px 0 12px;
|
|
32624
|
+
}
|
|
32625
|
+
.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 {
|
|
32626
|
+
content: "";
|
|
32627
|
+
width: 0;
|
|
32628
|
+
height: 0;
|
|
32629
|
+
border: 13px solid transparent;
|
|
32630
|
+
position: absolute;
|
|
32631
|
+
top: 0;
|
|
32632
|
+
border-left: 8px solid #fff;
|
|
32633
|
+
left: 0;
|
|
32634
|
+
}
|
|
32635
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active {
|
|
32636
|
+
max-width: calc(100% - var(--item-min-width) * 2);
|
|
32637
|
+
}
|
|
32638
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
32639
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
32640
|
+
}
|
|
32641
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
32642
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
32643
|
+
}
|
|
32644
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
32645
|
+
cursor: pointer;
|
|
32646
|
+
min-width: var(--item-min-width);
|
|
32647
|
+
}
|
|
32648
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait,
|
|
32649
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish {
|
|
32650
|
+
min-width: var(--item-min-width);
|
|
32651
|
+
}
|
|
32652
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
32653
|
+
.hjtnwxg .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
32654
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
32655
|
+
}
|
|
32656
|
+
.hjtnwxg .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
32657
|
+
padding: 0;
|
|
32658
|
+
}
|
|
32659
|
+
|
|
32660
|
+
.v1p8siwu .ant-steps.ant-steps-vertical {
|
|
32661
|
+
width: 138px;
|
|
32662
|
+
row-gap: 2px;
|
|
32663
|
+
}
|
|
32664
|
+
.v1p8siwu .ant-steps.ant-steps-vertical .ant-steps-item-container {
|
|
32665
|
+
padding: 0 8px;
|
|
32666
|
+
border-radius: 4px;
|
|
32667
|
+
height: 32px;
|
|
32668
|
+
display: flex;
|
|
32669
|
+
align-items: center;
|
|
32670
|
+
}
|
|
32671
|
+
.v1p8siwu .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content {
|
|
32672
|
+
min-height: auto;
|
|
32673
|
+
white-space: nowrap;
|
|
32674
|
+
}
|
|
32675
|
+
.v1p8siwu .ant-steps.ant-steps-vertical .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
32676
|
+
font-size: 13px;
|
|
32677
|
+
line-height: 20px;
|
|
32678
|
+
max-width: 100%;
|
|
32679
|
+
}
|
|
32680
|
+
.v1p8siwu .ant-steps.ant-steps-vertical .ant-steps-item-active .ant-steps-item-container {
|
|
32681
|
+
background: rgba(0, 128, 255, 0.1);
|
|
32682
|
+
}
|
|
32683
|
+
|
|
32684
|
+
.h1xo7yjb {
|
|
32685
|
+
width: 100%;
|
|
32686
|
+
display: inline-flex;
|
|
32687
|
+
align-items: center;
|
|
32688
|
+
justify-content: center;
|
|
32689
|
+
column-gap: 4px;
|
|
32690
|
+
}
|
|
32691
|
+
.h1xo7yjb .step-item-prefix-container {
|
|
32692
|
+
display: inline-flex;
|
|
32693
|
+
align-items: center;
|
|
32694
|
+
width: 18px;
|
|
32695
|
+
height: 18px;
|
|
32696
|
+
color: rgba(44, 56, 82, 0.75);
|
|
32697
|
+
justify-content: center;
|
|
32698
|
+
}
|
|
32699
|
+
|
|
32700
|
+
.v1f2f7cy {
|
|
32701
|
+
width: 100%;
|
|
32702
|
+
display: flex;
|
|
32703
|
+
align-items: center;
|
|
32704
|
+
justify-content: center;
|
|
32705
|
+
column-gap: 6px;
|
|
32706
|
+
font-size: 13px;
|
|
32707
|
+
}
|
|
32708
|
+
.v1f2f7cy .step-item-prefix-container {
|
|
32709
|
+
display: inline-flex;
|
|
32710
|
+
align-items: center;
|
|
32711
|
+
min-width: 20px;
|
|
32712
|
+
min-height: 20px;
|
|
32713
|
+
color: rgba(44, 56, 82, 0.75);
|
|
32714
|
+
justify-content: center;
|
|
32715
|
+
}
|
|
32716
|
+
|
|
32613
32717
|
.t1gz6wqf {
|
|
32614
32718
|
height: 100%;
|
|
32615
32719
|
}
|
|
@@ -32692,6 +32796,14 @@ input.rrg1fkn.ant-input {
|
|
|
32692
32796
|
border-radius: 4px;
|
|
32693
32797
|
background-color: white;
|
|
32694
32798
|
}
|
|
32799
|
+
.cav4gt6.hoverable {
|
|
32800
|
+
cursor: pointer;
|
|
32801
|
+
}
|
|
32802
|
+
.cav4gt6.hoverable:hover {
|
|
32803
|
+
transition: all 200ms ease;
|
|
32804
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
32805
|
+
transform: translateY(-4px);
|
|
32806
|
+
}
|
|
32695
32807
|
|
|
32696
32808
|
.rrwcpby {
|
|
32697
32809
|
display: flex;
|
|
@@ -32942,6 +33054,30 @@ input.rrg1fkn.ant-input {
|
|
|
32942
33054
|
margin-right: 4px;
|
|
32943
33055
|
}
|
|
32944
33056
|
|
|
33057
|
+
.sut42l0 {
|
|
33058
|
+
padding: 0 8px;
|
|
33059
|
+
height: 18px;
|
|
33060
|
+
}
|
|
33061
|
+
|
|
33062
|
+
.mfsz1jz {
|
|
33063
|
+
padding: 2px 8px;
|
|
33064
|
+
height: 24px;
|
|
33065
|
+
}
|
|
33066
|
+
|
|
33067
|
+
.tnd6h4m {
|
|
33068
|
+
margin: 0;
|
|
33069
|
+
}
|
|
33070
|
+
|
|
33071
|
+
.i1qw4clm {
|
|
33072
|
+
margin-right: 4px;
|
|
33073
|
+
height: 16px;
|
|
33074
|
+
}
|
|
33075
|
+
|
|
33076
|
+
.iwsze0q {
|
|
33077
|
+
margin-right: 4px;
|
|
33078
|
+
height: 16px;
|
|
33079
|
+
}
|
|
33080
|
+
|
|
32945
33081
|
.at4ovwe .ant-input-number-handler-wrap {
|
|
32946
33082
|
display: var(--at4ovwe-0);
|
|
32947
33083
|
}
|
|
@@ -32988,30 +33124,6 @@ input.rrg1fkn.ant-input {
|
|
|
32988
33124
|
font-size: inherit;
|
|
32989
33125
|
}
|
|
32990
33126
|
|
|
32991
|
-
.sut42l0 {
|
|
32992
|
-
padding: 0 8px;
|
|
32993
|
-
height: 18px;
|
|
32994
|
-
}
|
|
32995
|
-
|
|
32996
|
-
.mfsz1jz {
|
|
32997
|
-
padding: 2px 8px;
|
|
32998
|
-
height: 24px;
|
|
32999
|
-
}
|
|
33000
|
-
|
|
33001
|
-
.tnd6h4m {
|
|
33002
|
-
margin: 0;
|
|
33003
|
-
}
|
|
33004
|
-
|
|
33005
|
-
.i1qw4clm {
|
|
33006
|
-
margin-right: 4px;
|
|
33007
|
-
height: 16px;
|
|
33008
|
-
}
|
|
33009
|
-
|
|
33010
|
-
.iwsze0q {
|
|
33011
|
-
margin-right: 4px;
|
|
33012
|
-
height: 16px;
|
|
33013
|
-
}
|
|
33014
|
-
|
|
33015
33127
|
.feau332.ant-form-item {
|
|
33016
33128
|
margin-bottom: 0;
|
|
33017
33129
|
}
|