@cloudtower/eagle 0.26.2 → 0.26.3-vpc-0.0.1
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 +3 -3
- package/dist/components/Card/CardBody.d.ts +5 -0
- package/dist/components/Card/CardTitle.d.ts +5 -0
- package/dist/components/Card/CardWrapper.d.ts +10 -0
- package/dist/components/Card/__test__/Card.spec.d.ts +1 -0
- package/dist/components/Card/index.d.ts +13 -0
- package/dist/components/TableForm/Columns/index.d.ts +3 -3
- package/dist/components/TableForm/types.d.ts +34 -2
- package/dist/components.css +227 -174
- package/dist/esm/index.js +382 -251
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +3 -1
- package/dist/style.css +463 -410
- package/dist/umd/index.js +384 -253
- package/dist/umd/stats1.html +1 -1
- package/dist/utils/testSuit.d.ts +2 -0
- package/package.json +5 -5
|
@@ -4,13 +4,13 @@ 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?: "link" | "text" | "
|
|
7
|
+
type?: "link" | "text" | "dashed" | "default" | "primary" | "ghost" | "secondary" | "tertiary" | "ordinary" | "ordinary-onTint" | "quiet" | undefined;
|
|
8
8
|
} & Omit<Partial<{
|
|
9
9
|
href: string;
|
|
10
10
|
target?: string | undefined;
|
|
11
11
|
onClick?: React.MouseEventHandler<HTMLElement> | undefined;
|
|
12
|
-
} & import("antd/lib/button/button").BaseButtonProps & import("antd/lib/_util/type").Omit<React.AnchorHTMLAttributes<any>, "
|
|
12
|
+
} & import("antd/lib/button/button").BaseButtonProps & import("antd/lib/_util/type").Omit<React.AnchorHTMLAttributes<any>, "onClick" | "type"> & {
|
|
13
13
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
14
14
|
onClick?: React.MouseEventHandler<HTMLElement> | undefined;
|
|
15
|
-
} & import("antd/lib/_util/type").Omit<React.ButtonHTMLAttributes<any>, "
|
|
15
|
+
} & import("antd/lib/_util/type").Omit<React.ButtonHTMLAttributes<any>, "onClick" | "type">>, "type"> & React.RefAttributes<HTMLButtonElement>>;
|
|
16
16
|
export default Button;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const CardBody: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
3
|
+
as?: import("react").ElementType<any> | undefined;
|
|
4
|
+
}>;
|
|
5
|
+
export default CardBody;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const CardTitle: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown> & {
|
|
3
|
+
as?: import("react").ElementType<any> | undefined;
|
|
4
|
+
}>;
|
|
5
|
+
export default CardTitle;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React, { CSSProperties } from "react";
|
|
2
|
+
interface IProps {
|
|
3
|
+
shadow?: boolean;
|
|
4
|
+
className?: string;
|
|
5
|
+
style?: CSSProperties;
|
|
6
|
+
}
|
|
7
|
+
declare const CardWrapper: import("@linaria/react").StyledMeta & React.ForwardRefExoticComponent<IProps & {
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
export default CardWrapper;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface ICardProps {
|
|
3
|
+
collapsible?: boolean;
|
|
4
|
+
defaultOpen?: boolean;
|
|
5
|
+
title?: React.ReactNode | string;
|
|
6
|
+
subInfo?: React.ReactNode;
|
|
7
|
+
className?: string;
|
|
8
|
+
shadow?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const Card: React.ForwardRefExoticComponent<ICardProps & {
|
|
11
|
+
children?: React.ReactNode;
|
|
12
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
export default Card;
|
|
@@ -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, "data" | "
|
|
22
|
+
input: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "data" | "visible" | "column" | "disabled" | "latestData" | "index"> & {
|
|
23
23
|
onChange: (value: any) => void;
|
|
24
24
|
onBlur: () => void;
|
|
25
25
|
}>;
|
|
26
|
-
password: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "data" | "
|
|
26
|
+
password: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "data" | "visible" | "column" | "disabled" | "latestData" | "index"> & {
|
|
27
27
|
onChange: (value: any) => void;
|
|
28
28
|
onBlur: () => void;
|
|
29
29
|
}>;
|
|
30
|
-
affix: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "data" | "
|
|
30
|
+
affix: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "data" | "visible" | "column" | "disabled" | "latestData" | "index"> & {
|
|
31
31
|
onChange: (value: any) => void;
|
|
32
32
|
onBlur: () => void;
|
|
33
33
|
}>;
|
|
@@ -90,12 +90,14 @@ export type RowAddConfigurations = {
|
|
|
90
90
|
className?: string;
|
|
91
91
|
CustomizedButton?: (props: AddRowButtonProps) => React.ReactElement;
|
|
92
92
|
};
|
|
93
|
-
export interface TableFormRowsProps extends Pick<TableFormProps, "columns" | "disabled" | "deleteConfig" | "
|
|
93
|
+
export interface TableFormRowsProps extends Pick<TableFormProps, "columns" | "disabled" | "deleteConfig" | "disableBatchFilling" | "validateTriggerType" | "renderRowDescription" | "rowValidator" | "onBodyBlur" | "row"> {
|
|
94
94
|
data: DataType[];
|
|
95
95
|
latestData: DataType[];
|
|
96
96
|
updateData: (data: DataType[]) => void;
|
|
97
97
|
passwordVisible: boolean;
|
|
98
98
|
validateAll: boolean;
|
|
99
|
+
draggable?: boolean;
|
|
100
|
+
rowSplitType?: TableFormRowSplitType;
|
|
99
101
|
}
|
|
100
102
|
export type RenderRowDescriptionProps = {
|
|
101
103
|
rowIndex: number;
|
|
@@ -106,20 +108,50 @@ export type DeletableConfigurations = {
|
|
|
106
108
|
deletable: boolean;
|
|
107
109
|
specifyRowDeleteDisabled?: (rowIndex: number, allData: DataType[]) => boolean;
|
|
108
110
|
};
|
|
111
|
+
export type TableFormRowActions = "delete";
|
|
112
|
+
export type TableFormRowSplitType = "border" | "zebraMarking";
|
|
113
|
+
export type TableFormRowConfiguration = {
|
|
114
|
+
splitType?: TableFormRowSplitType;
|
|
115
|
+
draggable?: boolean;
|
|
116
|
+
deletable?: boolean | ((rowIndex: number, allData: DataType[]) => boolean);
|
|
117
|
+
descriptions?: string | React.ReactNode[];
|
|
118
|
+
disableActions?: TableFormRowActions[] | ((rowIndex: number, allData: DataType[]) => TableFormRowActions[] | undefined);
|
|
119
|
+
validator?: (rowIndex: number, rowData: DataType) => string | undefined;
|
|
120
|
+
customizedDescription?: (props: RenderRowDescriptionProps) => React.ReactNode | string;
|
|
121
|
+
};
|
|
122
|
+
export type TableFormErrorsType = (string | {
|
|
123
|
+
[columnKey: string]: string;
|
|
124
|
+
})[];
|
|
109
125
|
export type TableFormProps = {
|
|
110
126
|
defaultData?: DataType[];
|
|
111
127
|
columns: TableFormColumn[];
|
|
112
128
|
disabled?: boolean;
|
|
113
129
|
rowAddConfig?: RowAddConfigurations;
|
|
130
|
+
/**
|
|
131
|
+
* @deprecated use "row" configuration instead
|
|
132
|
+
*/
|
|
114
133
|
deleteConfig?: DeletableConfigurations;
|
|
115
134
|
size?: "default" | "large" | "small";
|
|
135
|
+
/**
|
|
136
|
+
* @deprecated use "row" configuration instead
|
|
137
|
+
*/
|
|
116
138
|
draggable?: boolean;
|
|
117
139
|
disableBatchFilling?: boolean;
|
|
118
140
|
className?: string;
|
|
119
|
-
|
|
141
|
+
/**
|
|
142
|
+
* @deprecated use "row" configuration instead
|
|
143
|
+
*/
|
|
144
|
+
rowSplitType?: TableFormRowSplitType;
|
|
120
145
|
validateTriggerType?: ValidateTriggerType;
|
|
121
146
|
maxHeight?: number | string;
|
|
147
|
+
row?: TableFormRowConfiguration;
|
|
148
|
+
/**
|
|
149
|
+
* @deprecated use "row" configuration instead
|
|
150
|
+
*/
|
|
122
151
|
renderRowDescription?: (props: RenderRowDescriptionProps) => React.ReactNode;
|
|
152
|
+
/**
|
|
153
|
+
* @deprecated use "row" configuration instead
|
|
154
|
+
*/
|
|
123
155
|
rowValidator?: (rowIndex: number, rowData: DataType) => string | undefined;
|
|
124
156
|
onHeaderChange?: (data: any[], columnKey: string) => void;
|
|
125
157
|
onHeaderBlur?: (data: any[]) => void;
|
package/dist/components.css
CHANGED
|
@@ -1549,6 +1549,35 @@ html body {
|
|
|
1549
1549
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
1550
1550
|
}
|
|
1551
1551
|
}
|
|
1552
|
+
.bpq0js6 {
|
|
1553
|
+
padding: 4px 11px;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.b15sn34c {
|
|
1557
|
+
white-space: nowrap;
|
|
1558
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1559
|
+
}
|
|
1560
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1561
|
+
--color: #0080ff;
|
|
1562
|
+
}
|
|
1563
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1564
|
+
--color: #0080ff;
|
|
1565
|
+
}
|
|
1566
|
+
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1567
|
+
margin-left: 1px;
|
|
1568
|
+
}
|
|
1569
|
+
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1570
|
+
border-top-right-radius: 0;
|
|
1571
|
+
border-bottom-right-radius: 0;
|
|
1572
|
+
}
|
|
1573
|
+
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1574
|
+
border-top-left-radius: 0;
|
|
1575
|
+
border-bottom-left-radius: 0;
|
|
1576
|
+
}
|
|
1577
|
+
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1578
|
+
border-radius: unset;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1552
1581
|
.buj61ew.ant-btn {
|
|
1553
1582
|
height: 32px;
|
|
1554
1583
|
border-radius: 6px;
|
|
@@ -1797,33 +1826,17 @@ html body {
|
|
|
1797
1826
|
padding: 0;
|
|
1798
1827
|
}
|
|
1799
1828
|
|
|
1800
|
-
.
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1829
|
+
.iap75of {
|
|
1830
|
+
height: 18px;
|
|
1831
|
+
line-height: 18px;
|
|
1832
|
+
padding: 0 4px;
|
|
1833
|
+
border-radius: 4px;
|
|
1834
|
+
background: rgba(235, 239, 245, 0.6);
|
|
1835
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1836
|
+
display: flex;
|
|
1837
|
+
align-items: center;
|
|
1805
1838
|
white-space: nowrap;
|
|
1806
|
-
|
|
1807
|
-
}
|
|
1808
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1809
|
-
--color: #0080ff;
|
|
1810
|
-
}
|
|
1811
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1812
|
-
--color: #0080ff;
|
|
1813
|
-
}
|
|
1814
|
-
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1815
|
-
margin-left: 1px;
|
|
1816
|
-
}
|
|
1817
|
-
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1818
|
-
border-top-right-radius: 0;
|
|
1819
|
-
border-bottom-right-radius: 0;
|
|
1820
|
-
}
|
|
1821
|
-
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1822
|
-
border-top-left-radius: 0;
|
|
1823
|
-
border-bottom-left-radius: 0;
|
|
1824
|
-
}
|
|
1825
|
-
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1826
|
-
border-radius: unset;
|
|
1839
|
+
margin-right: 4px;
|
|
1827
1840
|
}
|
|
1828
1841
|
|
|
1829
1842
|
.fde5mpd {
|
|
@@ -1841,46 +1854,6 @@ html body {
|
|
|
1841
1854
|
font-size: 18px;
|
|
1842
1855
|
}
|
|
1843
1856
|
|
|
1844
|
-
.i1mrf09m {
|
|
1845
|
-
display: inline-flex;
|
|
1846
|
-
align-items: center;
|
|
1847
|
-
}
|
|
1848
|
-
.i1mrf09m .icon-inner {
|
|
1849
|
-
display: inline-flex;
|
|
1850
|
-
align-items: center;
|
|
1851
|
-
justify-content: center;
|
|
1852
|
-
}
|
|
1853
|
-
.i1mrf09m .icon-inner + span,
|
|
1854
|
-
.i1mrf09m span + .icon-inner.suffix {
|
|
1855
|
-
margin-left: 4px;
|
|
1856
|
-
}
|
|
1857
|
-
.i1mrf09m.is-rotate img,
|
|
1858
|
-
.i1mrf09m.is-rotate svg {
|
|
1859
|
-
animation: rotate 680ms linear infinite;
|
|
1860
|
-
}
|
|
1861
|
-
|
|
1862
|
-
.iap75of {
|
|
1863
|
-
height: 18px;
|
|
1864
|
-
line-height: 18px;
|
|
1865
|
-
padding: 0 4px;
|
|
1866
|
-
border-radius: 4px;
|
|
1867
|
-
background: rgba(235, 239, 245, 0.6);
|
|
1868
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1869
|
-
display: flex;
|
|
1870
|
-
align-items: center;
|
|
1871
|
-
white-space: nowrap;
|
|
1872
|
-
margin-right: 4px;
|
|
1873
|
-
}
|
|
1874
|
-
|
|
1875
|
-
.obf05yr {
|
|
1876
|
-
display: inline-block;
|
|
1877
|
-
}
|
|
1878
|
-
|
|
1879
|
-
.hsms1n6 {
|
|
1880
|
-
visibility: hidden;
|
|
1881
|
-
position: absolute;
|
|
1882
|
-
}
|
|
1883
|
-
|
|
1884
1857
|
.p12gwtiw {
|
|
1885
1858
|
display: flex;
|
|
1886
1859
|
justify-content: space-between;
|
|
@@ -2603,59 +2576,87 @@ input.rrg1fkn.ant-input {
|
|
|
2603
2576
|
border-bottom-left-radius: 0;
|
|
2604
2577
|
}
|
|
2605
2578
|
|
|
2606
|
-
.
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
background: rgba(172, 186, 211, 0.6);
|
|
2610
|
-
overflow: hidden;
|
|
2579
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
2580
|
+
flex-direction: row;
|
|
2581
|
+
justify-content: stretch;
|
|
2611
2582
|
}
|
|
2612
|
-
.
|
|
2613
|
-
|
|
2583
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
2584
|
+
padding: 0;
|
|
2585
|
+
margin-right: 4px;
|
|
2586
|
+
flex: 1;
|
|
2587
|
+
overflow: visible;
|
|
2614
2588
|
}
|
|
2615
|
-
.
|
|
2616
|
-
|
|
2617
|
-
height: 16px;
|
|
2589
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
2590
|
+
display: none;
|
|
2618
2591
|
}
|
|
2619
|
-
.
|
|
2620
|
-
|
|
2621
|
-
height:
|
|
2592
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
2593
|
+
width: 100%;
|
|
2594
|
+
min-height: unset;
|
|
2622
2595
|
}
|
|
2623
|
-
.
|
|
2624
|
-
height:
|
|
2625
|
-
|
|
2596
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
2597
|
+
height: 26px;
|
|
2598
|
+
line-height: 26px;
|
|
2599
|
+
width: 100%;
|
|
2600
|
+
text-align: center;
|
|
2601
|
+
padding: 0;
|
|
2602
|
+
font-size: 12px;
|
|
2603
|
+
font-weight: normal;
|
|
2626
2604
|
}
|
|
2627
|
-
.
|
|
2628
|
-
|
|
2629
|
-
transition-delay: 120ms;
|
|
2605
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
2606
|
+
margin-right: 10px;
|
|
2630
2607
|
}
|
|
2631
|
-
.
|
|
2632
|
-
|
|
2633
|
-
width: 14px;
|
|
2634
|
-
top: 1px;
|
|
2635
|
-
left: 1px;
|
|
2608
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
2609
|
+
display: none;
|
|
2636
2610
|
}
|
|
2637
|
-
.
|
|
2638
|
-
|
|
2639
|
-
width: 28px;
|
|
2611
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
2612
|
+
border-radius: 4px 0 0 4px;
|
|
2640
2613
|
}
|
|
2641
|
-
.
|
|
2642
|
-
|
|
2614
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
2615
|
+
margin-right: 0;
|
|
2643
2616
|
}
|
|
2644
|
-
.
|
|
2645
|
-
|
|
2617
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
2618
|
+
border-radius: 0 4px 4px 0;
|
|
2646
2619
|
}
|
|
2647
|
-
.
|
|
2648
|
-
|
|
2620
|
+
.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 {
|
|
2621
|
+
content: "";
|
|
2622
|
+
width: 0;
|
|
2623
|
+
height: 0;
|
|
2624
|
+
border: 13px solid transparent;
|
|
2625
|
+
position: absolute;
|
|
2626
|
+
top: 0;
|
|
2627
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2628
|
+
right: -21px;
|
|
2629
|
+
z-index: 2;
|
|
2649
2630
|
}
|
|
2650
|
-
.
|
|
2651
|
-
|
|
2631
|
+
.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 {
|
|
2632
|
+
content: "";
|
|
2633
|
+
width: 0;
|
|
2634
|
+
height: 0;
|
|
2635
|
+
border: 13px solid transparent;
|
|
2636
|
+
position: absolute;
|
|
2637
|
+
top: 0;
|
|
2638
|
+
border-left: 8px solid #fff;
|
|
2639
|
+
left: 0;
|
|
2652
2640
|
}
|
|
2653
|
-
.
|
|
2654
|
-
|
|
2641
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2642
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2655
2643
|
}
|
|
2656
|
-
|
|
2657
|
-
.
|
|
2658
|
-
|
|
2644
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2645
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2646
|
+
}
|
|
2647
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2648
|
+
color: #005ed1;
|
|
2649
|
+
}
|
|
2650
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2651
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2652
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
2653
|
+
}
|
|
2654
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
2655
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
2656
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2657
|
+
}
|
|
2658
|
+
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
2659
|
+
padding: 0;
|
|
2659
2660
|
}
|
|
2660
2661
|
|
|
2661
2662
|
.rxbeqvl.ant-radio-wrapper {
|
|
@@ -2799,87 +2800,86 @@ input.rrg1fkn.ant-input {
|
|
|
2799
2800
|
width: 36px;
|
|
2800
2801
|
}
|
|
2801
2802
|
|
|
2802
|
-
.
|
|
2803
|
-
|
|
2804
|
-
justify-content: stretch;
|
|
2803
|
+
.obf05yr {
|
|
2804
|
+
display: inline-block;
|
|
2805
2805
|
}
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
overflow: visible;
|
|
2806
|
+
|
|
2807
|
+
.hsms1n6 {
|
|
2808
|
+
visibility: hidden;
|
|
2809
|
+
position: absolute;
|
|
2811
2810
|
}
|
|
2812
|
-
|
|
2813
|
-
|
|
2811
|
+
|
|
2812
|
+
.i1mrf09m {
|
|
2813
|
+
display: inline-flex;
|
|
2814
|
+
align-items: center;
|
|
2814
2815
|
}
|
|
2815
|
-
.
|
|
2816
|
-
|
|
2817
|
-
|
|
2816
|
+
.i1mrf09m .icon-inner {
|
|
2817
|
+
display: inline-flex;
|
|
2818
|
+
align-items: center;
|
|
2819
|
+
justify-content: center;
|
|
2818
2820
|
}
|
|
2819
|
-
.
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
width: 100%;
|
|
2823
|
-
text-align: center;
|
|
2824
|
-
padding: 0;
|
|
2825
|
-
font-size: 12px;
|
|
2826
|
-
font-weight: normal;
|
|
2821
|
+
.i1mrf09m .icon-inner + span,
|
|
2822
|
+
.i1mrf09m span + .icon-inner.suffix {
|
|
2823
|
+
margin-left: 4px;
|
|
2827
2824
|
}
|
|
2828
|
-
.
|
|
2829
|
-
|
|
2825
|
+
.i1mrf09m.is-rotate img,
|
|
2826
|
+
.i1mrf09m.is-rotate svg {
|
|
2827
|
+
animation: rotate 680ms linear infinite;
|
|
2830
2828
|
}
|
|
2831
|
-
|
|
2832
|
-
|
|
2829
|
+
|
|
2830
|
+
.s34f1qb.ant-switch {
|
|
2831
|
+
min-width: 40px;
|
|
2832
|
+
height: 24px;
|
|
2833
|
+
background: rgba(172, 186, 211, 0.6);
|
|
2834
|
+
overflow: hidden;
|
|
2833
2835
|
}
|
|
2834
|
-
.
|
|
2835
|
-
|
|
2836
|
+
.s34f1qb.ant-switch:focus {
|
|
2837
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
2836
2838
|
}
|
|
2837
|
-
.
|
|
2838
|
-
|
|
2839
|
+
.s34f1qb.ant-switch-small {
|
|
2840
|
+
min-width: 26px;
|
|
2841
|
+
height: 16px;
|
|
2839
2842
|
}
|
|
2840
|
-
.
|
|
2841
|
-
|
|
2843
|
+
.s34f1qb.ant-switch-large {
|
|
2844
|
+
min-width: 52px;
|
|
2845
|
+
height: 32px;
|
|
2842
2846
|
}
|
|
2843
|
-
.
|
|
2844
|
-
|
|
2845
|
-
width:
|
|
2846
|
-
height: 0;
|
|
2847
|
-
border: 13px solid transparent;
|
|
2848
|
-
position: absolute;
|
|
2849
|
-
top: 0;
|
|
2850
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2851
|
-
right: -21px;
|
|
2852
|
-
z-index: 2;
|
|
2847
|
+
.s34f1qb.ant-switch .ant-switch-handle {
|
|
2848
|
+
height: 20px;
|
|
2849
|
+
width: 20px;
|
|
2853
2850
|
}
|
|
2854
|
-
.
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
height: 0;
|
|
2858
|
-
border: 13px solid transparent;
|
|
2859
|
-
position: absolute;
|
|
2860
|
-
top: 0;
|
|
2861
|
-
border-left: 8px solid #fff;
|
|
2862
|
-
left: 0;
|
|
2851
|
+
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
2852
|
+
border-radius: 10px;
|
|
2853
|
+
transition-delay: 120ms;
|
|
2863
2854
|
}
|
|
2864
|
-
.
|
|
2865
|
-
|
|
2855
|
+
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
2856
|
+
height: 14px;
|
|
2857
|
+
width: 14px;
|
|
2858
|
+
top: 1px;
|
|
2859
|
+
left: 1px;
|
|
2866
2860
|
}
|
|
2867
|
-
.
|
|
2868
|
-
|
|
2861
|
+
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
2862
|
+
height: 28px;
|
|
2863
|
+
width: 28px;
|
|
2869
2864
|
}
|
|
2870
|
-
.
|
|
2871
|
-
|
|
2865
|
+
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
2866
|
+
border-radius: 14px;
|
|
2872
2867
|
}
|
|
2873
|
-
.
|
|
2874
|
-
|
|
2875
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
2868
|
+
.s34f1qb.ant-switch-checked {
|
|
2869
|
+
background-color: #00ba5d;
|
|
2876
2870
|
}
|
|
2877
|
-
.
|
|
2878
|
-
|
|
2879
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2871
|
+
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
2872
|
+
left: calc(100% - 20px - 2px);
|
|
2880
2873
|
}
|
|
2881
|
-
.
|
|
2882
|
-
|
|
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
2883
|
}
|
|
2884
2884
|
|
|
2885
2885
|
.t1upn1sz {
|
|
@@ -3245,6 +3245,10 @@ input.rrg1fkn.ant-input {
|
|
|
3245
3245
|
background: #fff;
|
|
3246
3246
|
}
|
|
3247
3247
|
|
|
3248
|
+
.i1e4sgug {
|
|
3249
|
+
display: inline-block;
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3248
3252
|
.s1fc623g {
|
|
3249
3253
|
width: 430px !important;
|
|
3250
3254
|
}
|
|
@@ -3326,10 +3330,6 @@ input.rrg1fkn.ant-input {
|
|
|
3326
3330
|
opacity: 0;
|
|
3327
3331
|
}
|
|
3328
3332
|
|
|
3329
|
-
.i1e4sgug {
|
|
3330
|
-
display: inline-block;
|
|
3331
|
-
}
|
|
3332
|
-
|
|
3333
3333
|
.d6j0lbj {
|
|
3334
3334
|
font-family: Inter;
|
|
3335
3335
|
font-style: normal;
|
|
@@ -4136,6 +4136,59 @@ input.rrg1fkn.ant-input {
|
|
|
4136
4136
|
background: rgba(163, 180, 204, 0.18);
|
|
4137
4137
|
}
|
|
4138
4138
|
|
|
4139
|
+
.c1k4vanq {
|
|
4140
|
+
padding: 0 16px 14px 16px;
|
|
4141
|
+
}
|
|
4142
|
+
|
|
4143
|
+
.c1udgdh2 {
|
|
4144
|
+
color: #2d3a56;
|
|
4145
|
+
padding: 12px 16px 10px 16px;
|
|
4146
|
+
display: flex;
|
|
4147
|
+
justify-content: space-between;
|
|
4148
|
+
align-items: center;
|
|
4149
|
+
}
|
|
4150
|
+
.c1udgdh2.has-arrow {
|
|
4151
|
+
padding-left: 10px;
|
|
4152
|
+
}
|
|
4153
|
+
.c1udgdh2.has-arrow .title-wrapper {
|
|
4154
|
+
cursor: pointer;
|
|
4155
|
+
color: #00122e;
|
|
4156
|
+
}
|
|
4157
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open {
|
|
4158
|
+
color: #2d3a56;
|
|
4159
|
+
font-weight: 600;
|
|
4160
|
+
}
|
|
4161
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
4162
|
+
transform: rotate(90deg);
|
|
4163
|
+
}
|
|
4164
|
+
.c1udgdh2 .sub-info {
|
|
4165
|
+
font-size: 12px;
|
|
4166
|
+
line-height: 18px;
|
|
4167
|
+
}
|
|
4168
|
+
.c1udgdh2 .title-wrapper {
|
|
4169
|
+
display: flex;
|
|
4170
|
+
align-items: center;
|
|
4171
|
+
user-select: none;
|
|
4172
|
+
flex-grow: 1;
|
|
4173
|
+
font-size: 12px;
|
|
4174
|
+
line-height: 18px;
|
|
4175
|
+
color: #2d3a56;
|
|
4176
|
+
font-weight: 700;
|
|
4177
|
+
}
|
|
4178
|
+
.c1udgdh2 .collapse-arrow {
|
|
4179
|
+
transition: all 50ms ease-out 0ms;
|
|
4180
|
+
margin-right: 2px;
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
.bab9xum {
|
|
4184
|
+
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);
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4187
|
+
.cav4gt6 {
|
|
4188
|
+
border-radius: 4px;
|
|
4189
|
+
background-color: white;
|
|
4190
|
+
}
|
|
4191
|
+
|
|
4139
4192
|
.f1p9ti6d {
|
|
4140
4193
|
width: 100%;
|
|
4141
4194
|
margin-bottom: 0 !important;
|