@cloudtower/eagle 0.25.9 → 0.25.11

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.
@@ -6,9 +6,7 @@ interface IProps {
6
6
  kit?: Kit;
7
7
  message?: {
8
8
  batch?: BatchHelper;
9
- config?: {
10
- maxCount?: number;
11
- };
9
+ maxCount?: number;
12
10
  };
13
11
  lng?: ParrotI18nSupportLng;
14
12
  getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
@@ -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?: "link" | "text" | "default" | "primary" | "ghost" | "dashed" | "secondary" | "tertiary" | "ordinary" | "ordinary-onTint" | "quiet" | undefined;
7
+ type?: "default" | "dashed" | "text" | "link" | "primary" | "ghost" | "secondary" | "tertiary" | "ordinary" | "ordinary-onTint" | "quiet" | undefined;
8
8
  } & Omit<Partial<{
9
9
  href: string;
10
10
  target?: string | undefined;
@@ -1,33 +1,33 @@
1
1
  /// <reference types="react" />
2
2
  export declare const ColumnHeaderImpls: {
3
3
  text: import("react").FC<import("../types").ColumnHeaderCellProps>;
4
- input: import("react").FC<Omit<import("../types").ColumnHeaderCellProps, "onChange" | "onBlur"> & {
4
+ input: import("react").FC<Omit<import("../types").ColumnHeaderCellProps, "onBlur" | "onChange"> & {
5
5
  onChange: (value: any) => void;
6
6
  onBlur: () => void;
7
7
  }>;
8
- password: import("react").FC<Omit<import("../types").ColumnHeaderCellProps, "onChange" | "onBlur"> & {
8
+ password: import("react").FC<Omit<import("../types").ColumnHeaderCellProps, "onBlur" | "onChange"> & {
9
9
  onChange: (value: any) => void;
10
10
  onBlur: () => void;
11
11
  }>;
12
- affix: import("react").FC<Omit<import("../types").ColumnHeaderCellProps, "onChange" | "onBlur"> & {
12
+ affix: import("react").FC<Omit<import("../types").ColumnHeaderCellProps, "onBlur" | "onChange"> & {
13
13
  onChange: (value: any) => void;
14
14
  onBlur: () => void;
15
15
  }>;
16
- checkbox: import("react").FC<Omit<import("../types").ColumnHeaderCellProps, "onChange" | "onBlur"> & {
16
+ checkbox: import("react").FC<Omit<import("../types").ColumnHeaderCellProps, "onBlur" | "onChange"> & {
17
17
  onChange: (value: any, shouldUpdateData?: boolean | undefined) => void;
18
18
  }>;
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" | "latestData" | "column" | "disabled" | "index" | "visible"> & {
22
+ input: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "disabled" | "data" | "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, "data" | "latestData" | "column" | "disabled" | "index" | "visible"> & {
26
+ password: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "disabled" | "data" | "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, "data" | "latestData" | "column" | "disabled" | "index" | "visible"> & {
30
+ affix: import("react").FC<Pick<import("../types").ColumnBodyCellProps, "disabled" | "data" | "visible" | "column" | "latestData" | "index"> & {
31
31
  onChange: (value: any) => void;
32
32
  onBlur: () => void;
33
33
  }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,52 @@
1
+ import * as React from "react";
2
+ type NoticeType = "info" | "success" | "error" | "warning" | "loading";
3
+ export declare function getKeyThenIncreaseKey(): number;
4
+ export interface ConfigOptions {
5
+ top?: number;
6
+ duration?: number;
7
+ prefixCls?: string;
8
+ getContainer?: () => HTMLElement;
9
+ transitionName?: string;
10
+ maxCount?: number;
11
+ rtl?: boolean;
12
+ }
13
+ export interface ThenableArgument {
14
+ (val: any): void;
15
+ }
16
+ export interface MessageType {
17
+ (): void;
18
+ then: (fill: ThenableArgument, reject: ThenableArgument) => Promise<void>;
19
+ promise: Promise<void>;
20
+ }
21
+ export interface ArgsProps {
22
+ content: React.ReactNode;
23
+ duration: number | null;
24
+ type?: NoticeType;
25
+ prefixCls?: string;
26
+ onClose?: () => void;
27
+ icon?: React.ReactNode;
28
+ key?: string | number;
29
+ style?: React.CSSProperties;
30
+ className?: string;
31
+ }
32
+ type ConfigContent = React.ReactNode | string;
33
+ type ConfigDuration = number | (() => void);
34
+ type JointContent = ConfigContent | ArgsProps;
35
+ export type ConfigOnClose = () => void;
36
+ export declare function attachTypeApi(originalApi: any, type: string): void;
37
+ export interface MessageInstance {
38
+ info(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
39
+ success(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
40
+ error(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
41
+ warning(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
42
+ loading(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
43
+ open(args: ArgsProps): MessageType;
44
+ }
45
+ export interface MessageApi extends MessageInstance {
46
+ warn(content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose): MessageType;
47
+ config(options: ConfigOptions): void;
48
+ destroy(): void;
49
+ useMessage(): [MessageInstance, React.ReactElement];
50
+ }
51
+ declare const _default: MessageApi;
52
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import "../../style/index.less";
2
+ import "./index.less";
@@ -1,6 +1,6 @@
1
- import { message } from "antd";
2
- import { ArgsProps } from "antd/lib/message";
1
+ import { ArgsProps, ConfigOnClose, MessageType } from "antd/lib/message";
3
2
  import { ReactNode } from "react";
3
+ import { MessageApi } from "../message";
4
4
  export declare function makeUUID(length?: number): string;
5
5
  export type BatchHelper = {
6
6
  getBatchKey: (content: ReactNode) => string | undefined;
@@ -9,15 +9,19 @@ export type BatchHelper = {
9
9
  type KeyedArgsProps = ArgsProps & {
10
10
  key: string;
11
11
  };
12
+ declare type ConfigContent = React.ReactNode | string;
13
+ declare type ConfigDuration = number | (() => void);
14
+ declare type JointContent = ConfigContent | ArgsProps;
15
+ type OriginalMethod = (content: JointContent, duration?: ConfigDuration, onClose?: ConfigOnClose) => MessageType;
12
16
  export declare class Batcher {
13
17
  private batchSize;
14
18
  private batchTime;
15
19
  private scheduler;
16
20
  private originalMethod;
17
21
  private batchHelper;
18
- constructor(originalMethod: typeof message["success"], batchHelper: BatchHelper);
22
+ constructor(originalMethod: OriginalMethod, batchHelper: BatchHelper);
19
23
  addMessage(originContent: KeyedArgsProps): void;
20
24
  private applyContent;
21
25
  }
22
- export declare function createBatchMessageMethods(batchHelper?: BatchHelper): typeof message;
26
+ export declare function createBatchMessageMethods(message: MessageApi, batchHelper: BatchHelper): MessageApi;
23
27
  export {};
@@ -1881,6 +1881,63 @@ html body {
1881
1881
  position: absolute;
1882
1882
  }
1883
1883
 
1884
+ .p12gwtiw {
1885
+ display: flex;
1886
+ justify-content: space-between;
1887
+ align-items: center;
1888
+ padding: 10px 0;
1889
+ color: rgba(44, 56, 82, 0.6);
1890
+ font-size: 12px;
1891
+ line-height: 24px;
1892
+ }
1893
+ .p12gwtiw .pagination-left {
1894
+ padding: 2px 8px;
1895
+ }
1896
+ .p12gwtiw .dropdown-trigger {
1897
+ display: flex;
1898
+ align-items: center;
1899
+ border-radius: 6px;
1900
+ cursor: pointer;
1901
+ transition: all 0.3s ease;
1902
+ }
1903
+ .p12gwtiw .dropdown-trigger:hover {
1904
+ background: rgba(211, 218, 235, 0.6);
1905
+ color: #0080ff;
1906
+ }
1907
+ .p12gwtiw .dropdown-trigger .icon-inner {
1908
+ margin-left: 4px;
1909
+ }
1910
+ .p12gwtiw .pagination-right {
1911
+ display: flex;
1912
+ align-items: center;
1913
+ color: #0080ff;
1914
+ font-weight: bold;
1915
+ }
1916
+ .p12gwtiw .pagination-right .icon-inner {
1917
+ margin-left: 4px;
1918
+ }
1919
+ .p12gwtiw .pagination-right .prev-btn,
1920
+ .p12gwtiw .pagination-right .next-btn {
1921
+ padding: 0 8px;
1922
+ }
1923
+ .p12gwtiw .pagination-right .prev-btn > span,
1924
+ .p12gwtiw .pagination-right .next-btn > span {
1925
+ color: #0080ff;
1926
+ }
1927
+ .p12gwtiw .pagination-right .next-btn .icon-inner {
1928
+ transform: rotate(180deg);
1929
+ }
1930
+
1931
+ .d1bnu0in.ant-dropdown .ant-dropdown-menu {
1932
+ max-height: calc(100vh - 128px);
1933
+ overflow-y: auto;
1934
+ }
1935
+ .d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
1936
+ padding: 4px 20px;
1937
+ font-size: 12px;
1938
+ line-height: 18px;
1939
+ }
1940
+
1884
1941
  .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
1885
1942
  flex-direction: row;
1886
1943
  justify-content: stretch;
@@ -2106,61 +2163,59 @@ html body {
2106
2163
  width: 36px;
2107
2164
  }
2108
2165
 
2109
- .p12gwtiw {
2110
- display: flex;
2111
- justify-content: space-between;
2112
- align-items: center;
2113
- padding: 10px 0;
2114
- color: rgba(44, 56, 82, 0.6);
2115
- font-size: 12px;
2116
- line-height: 24px;
2166
+ .s34f1qb.ant-switch {
2167
+ min-width: 40px;
2168
+ height: 24px;
2169
+ background: rgba(172, 186, 211, 0.6);
2170
+ overflow: hidden;
2117
2171
  }
2118
- .p12gwtiw .pagination-left {
2119
- padding: 2px 8px;
2172
+ .s34f1qb.ant-switch:focus {
2173
+ box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
2120
2174
  }
2121
- .p12gwtiw .dropdown-trigger {
2122
- display: flex;
2123
- align-items: center;
2124
- border-radius: 6px;
2125
- cursor: pointer;
2126
- transition: all 0.3s ease;
2175
+ .s34f1qb.ant-switch-small {
2176
+ min-width: 26px;
2177
+ height: 16px;
2127
2178
  }
2128
- .p12gwtiw .dropdown-trigger:hover {
2129
- background: rgba(211, 218, 235, 0.6);
2130
- color: #0080ff;
2179
+ .s34f1qb.ant-switch-large {
2180
+ min-width: 52px;
2181
+ height: 32px;
2131
2182
  }
2132
- .p12gwtiw .dropdown-trigger .icon-inner {
2133
- margin-left: 4px;
2183
+ .s34f1qb.ant-switch .ant-switch-handle {
2184
+ height: 20px;
2185
+ width: 20px;
2134
2186
  }
2135
- .p12gwtiw .pagination-right {
2136
- display: flex;
2137
- align-items: center;
2138
- color: #0080ff;
2139
- font-weight: bold;
2187
+ .s34f1qb.ant-switch .ant-switch-handle::before {
2188
+ border-radius: 10px;
2189
+ transition-delay: 120ms;
2140
2190
  }
2141
- .p12gwtiw .pagination-right .icon-inner {
2142
- margin-left: 4px;
2191
+ .s34f1qb.ant-switch-small .ant-switch-handle {
2192
+ height: 14px;
2193
+ width: 14px;
2194
+ top: 1px;
2195
+ left: 1px;
2143
2196
  }
2144
- .p12gwtiw .pagination-right .prev-btn,
2145
- .p12gwtiw .pagination-right .next-btn {
2146
- padding: 0 8px;
2197
+ .s34f1qb.ant-switch-large .ant-switch-handle {
2198
+ height: 28px;
2199
+ width: 28px;
2147
2200
  }
2148
- .p12gwtiw .pagination-right .prev-btn > span,
2149
- .p12gwtiw .pagination-right .next-btn > span {
2150
- color: #0080ff;
2201
+ .s34f1qb.ant-switch-large .ant-switch-handle::before {
2202
+ border-radius: 14px;
2151
2203
  }
2152
- .p12gwtiw .pagination-right .next-btn .icon-inner {
2153
- transform: rotate(180deg);
2204
+ .s34f1qb.ant-switch-checked {
2205
+ background-color: #00ba5d;
2154
2206
  }
2155
-
2156
- .d1bnu0in.ant-dropdown .ant-dropdown-menu {
2157
- max-height: calc(100vh - 128px);
2158
- overflow-y: auto;
2207
+ .s34f1qb.ant-switch-checked .ant-switch-handle {
2208
+ left: calc(100% - 20px - 2px);
2159
2209
  }
2160
- .d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
2161
- padding: 4px 20px;
2162
- font-size: 12px;
2163
- line-height: 18px;
2210
+ .s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
2211
+ left: calc(100% - 14px - 1px);
2212
+ }
2213
+ .s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
2214
+ left: calc(100% - 28px - 2px);
2215
+ }
2216
+
2217
+ .c1to9vb9 {
2218
+ margin-left: 5px;
2164
2219
  }
2165
2220
 
2166
2221
  .cz04yix {
@@ -2828,61 +2883,6 @@ input.rrg1fkn.ant-input {
2828
2883
  border-bottom-left-radius: 0;
2829
2884
  }
2830
2885
 
2831
- .s34f1qb.ant-switch {
2832
- min-width: 40px;
2833
- height: 24px;
2834
- background: rgba(172, 186, 211, 0.6);
2835
- overflow: hidden;
2836
- }
2837
- .s34f1qb.ant-switch:focus {
2838
- box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
2839
- }
2840
- .s34f1qb.ant-switch-small {
2841
- min-width: 26px;
2842
- height: 16px;
2843
- }
2844
- .s34f1qb.ant-switch-large {
2845
- min-width: 52px;
2846
- height: 32px;
2847
- }
2848
- .s34f1qb.ant-switch .ant-switch-handle {
2849
- height: 20px;
2850
- width: 20px;
2851
- }
2852
- .s34f1qb.ant-switch .ant-switch-handle::before {
2853
- border-radius: 10px;
2854
- transition-delay: 120ms;
2855
- }
2856
- .s34f1qb.ant-switch-small .ant-switch-handle {
2857
- height: 14px;
2858
- width: 14px;
2859
- top: 1px;
2860
- left: 1px;
2861
- }
2862
- .s34f1qb.ant-switch-large .ant-switch-handle {
2863
- height: 28px;
2864
- width: 28px;
2865
- }
2866
- .s34f1qb.ant-switch-large .ant-switch-handle::before {
2867
- border-radius: 14px;
2868
- }
2869
- .s34f1qb.ant-switch-checked {
2870
- background-color: #00ba5d;
2871
- }
2872
- .s34f1qb.ant-switch-checked .ant-switch-handle {
2873
- left: calc(100% - 20px - 2px);
2874
- }
2875
- .s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
2876
- left: calc(100% - 14px - 1px);
2877
- }
2878
- .s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
2879
- left: calc(100% - 28px - 2px);
2880
- }
2881
-
2882
- .c1to9vb9 {
2883
- margin-left: 5px;
2884
- }
2885
-
2886
2886
  .t1upn1sz {
2887
2887
  height: 100%;
2888
2888
  }
@@ -3246,6 +3246,91 @@ input.rrg1fkn.ant-input {
3246
3246
  background: #fff;
3247
3247
  }
3248
3248
 
3249
+ .s1fc623g {
3250
+ width: 430px !important;
3251
+ }
3252
+
3253
+ .da3mx0o .ant-select-item-group {
3254
+ padding: 8px 16px;
3255
+ line-height: 18px;
3256
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
3257
+ height: 34px;
3258
+ min-height: 34px;
3259
+ box-sizing: border-box;
3260
+ margin-top: 8px;
3261
+ }
3262
+
3263
+ .onr9gzt {
3264
+ display: flex;
3265
+ flex-direction: column;
3266
+ margin: 1px 8px;
3267
+ padding: 8px;
3268
+ border-radius: 4px;
3269
+ }
3270
+ .onr9gzt .selected-icon {
3271
+ display: none;
3272
+ }
3273
+ .onr9gzt.ant-select-item-option-grouped {
3274
+ padding-left: 8px;
3275
+ }
3276
+ .onr9gzt.ant-select-item-option-selected {
3277
+ background-color: white;
3278
+ }
3279
+ .onr9gzt.ant-select-item-option-selected .timezone-title {
3280
+ color: #0080ff;
3281
+ }
3282
+ .onr9gzt.ant-select-item-option-selected .selected-icon {
3283
+ display: block;
3284
+ }
3285
+ .onr9gzt.ant-select-item-option-active {
3286
+ background: rgba(0, 136, 255, 0.16);
3287
+ }
3288
+ .onr9gzt.ant-select-item-option-active .timezone-title {
3289
+ color: #0080ff;
3290
+ }
3291
+ .onr9gzt.ant-select-item-option-active .timezone-tag {
3292
+ background: rgba(0, 136, 255, 0.1);
3293
+ color: #0080ff;
3294
+ }
3295
+
3296
+ .oiy0apc {
3297
+ display: flex;
3298
+ justify-content: space-between;
3299
+ height: 20px;
3300
+ line-height: 20px;
3301
+ }
3302
+ .oiy0apc .timezone-title {
3303
+ color: #2d3a56;
3304
+ overflow: hidden;
3305
+ text-overflow: ellipsis;
3306
+ }
3307
+
3308
+ .of4y382 {
3309
+ display: flex;
3310
+ justify-content: space-between;
3311
+ color: rgba(44, 56, 82, 0.6);
3312
+ height: 18px;
3313
+ line-height: 18px;
3314
+ margin-top: 2px;
3315
+ }
3316
+
3317
+ .t19903l9 {
3318
+ border: none;
3319
+ margin-right: 0;
3320
+ background: rgba(225, 230, 241, 0.6);
3321
+ }
3322
+
3323
+ .ohwbvxu {
3324
+ pointer-events: none;
3325
+ height: 32px;
3326
+ width: 100%;
3327
+ opacity: 0;
3328
+ }
3329
+
3330
+ .i1e4sgug {
3331
+ display: inline-block;
3332
+ }
3333
+
3249
3334
  .d6j0lbj {
3250
3335
  font-family: Inter;
3251
3336
  font-style: normal;
@@ -3721,91 +3806,6 @@ input.rrg1fkn.ant-input {
3721
3806
  line-height: 12px;
3722
3807
  }
3723
3808
 
3724
- .s1fc623g {
3725
- width: 430px !important;
3726
- }
3727
-
3728
- .da3mx0o .ant-select-item-group {
3729
- padding: 8px 16px;
3730
- line-height: 18px;
3731
- border-top: 1px solid rgba(211, 218, 235, 0.6);
3732
- height: 34px;
3733
- min-height: 34px;
3734
- box-sizing: border-box;
3735
- margin-top: 8px;
3736
- }
3737
-
3738
- .onr9gzt {
3739
- display: flex;
3740
- flex-direction: column;
3741
- margin: 1px 8px;
3742
- padding: 8px;
3743
- border-radius: 4px;
3744
- }
3745
- .onr9gzt .selected-icon {
3746
- display: none;
3747
- }
3748
- .onr9gzt.ant-select-item-option-grouped {
3749
- padding-left: 8px;
3750
- }
3751
- .onr9gzt.ant-select-item-option-selected {
3752
- background-color: white;
3753
- }
3754
- .onr9gzt.ant-select-item-option-selected .timezone-title {
3755
- color: #0080ff;
3756
- }
3757
- .onr9gzt.ant-select-item-option-selected .selected-icon {
3758
- display: block;
3759
- }
3760
- .onr9gzt.ant-select-item-option-active {
3761
- background: rgba(0, 136, 255, 0.16);
3762
- }
3763
- .onr9gzt.ant-select-item-option-active .timezone-title {
3764
- color: #0080ff;
3765
- }
3766
- .onr9gzt.ant-select-item-option-active .timezone-tag {
3767
- background: rgba(0, 136, 255, 0.1);
3768
- color: #0080ff;
3769
- }
3770
-
3771
- .oiy0apc {
3772
- display: flex;
3773
- justify-content: space-between;
3774
- height: 20px;
3775
- line-height: 20px;
3776
- }
3777
- .oiy0apc .timezone-title {
3778
- color: #2d3a56;
3779
- overflow: hidden;
3780
- text-overflow: ellipsis;
3781
- }
3782
-
3783
- .of4y382 {
3784
- display: flex;
3785
- justify-content: space-between;
3786
- color: rgba(44, 56, 82, 0.6);
3787
- height: 18px;
3788
- line-height: 18px;
3789
- margin-top: 2px;
3790
- }
3791
-
3792
- .t19903l9 {
3793
- border: none;
3794
- margin-right: 0;
3795
- background: rgba(225, 230, 241, 0.6);
3796
- }
3797
-
3798
- .ohwbvxu {
3799
- pointer-events: none;
3800
- height: 32px;
3801
- width: 100%;
3802
- opacity: 0;
3803
- }
3804
-
3805
- .i1e4sgug {
3806
- display: inline-block;
3807
- }
3808
-
3809
3809
  .c198s9j3 {
3810
3810
  color: #2d3a56;
3811
3811
  line-height: 22px;
@@ -4137,6 +4137,37 @@ input.rrg1fkn.ant-input {
4137
4137
  background: rgba(163, 180, 204, 0.18);
4138
4138
  }
4139
4139
 
4140
+ .f1p9ti6d {
4141
+ width: 100%;
4142
+ margin-bottom: 0 !important;
4143
+ flex-flow: nowrap !important;
4144
+ line-break: auto;
4145
+ }
4146
+ .f1p9ti6d > .ant-form-item-label {
4147
+ text-align: left !important;
4148
+ padding-bottom: 0 !important;
4149
+ }
4150
+ .f1p9ti6d > .ant-form-item-label > label {
4151
+ min-height: 32px;
4152
+ height: auto;
4153
+ font-size: 13px;
4154
+ color: rgba(44, 56, 82, 0.6);
4155
+ white-space: normal;
4156
+ }
4157
+ .f1p9ti6d.ant-form-item-has-error .ant-input {
4158
+ border-color: #ff4d4f !important;
4159
+ }
4160
+ .f1p9ti6d .ant-form-item-explain {
4161
+ margin-top: 4px;
4162
+ font-size: 12px;
4163
+ min-height: 0px;
4164
+ }
4165
+ .f1p9ti6d .ant-form-item-extra {
4166
+ font-size: 12px;
4167
+ color: rgba(44, 56, 82, 0.6);
4168
+ min-height: 0px;
4169
+ }
4170
+
4140
4171
  .at4ovwe .ant-input-number-handler-wrap {
4141
4172
  display: var(--at4ovwe-0);
4142
4173
  }
@@ -4379,37 +4410,6 @@ input.rrg1fkn.ant-input {
4379
4410
  margin-right: 8px;
4380
4411
  }
4381
4412
 
4382
- .f1p9ti6d {
4383
- width: 100%;
4384
- margin-bottom: 0 !important;
4385
- flex-flow: nowrap !important;
4386
- line-break: auto;
4387
- }
4388
- .f1p9ti6d > .ant-form-item-label {
4389
- text-align: left !important;
4390
- padding-bottom: 0 !important;
4391
- }
4392
- .f1p9ti6d > .ant-form-item-label > label {
4393
- min-height: 32px;
4394
- height: auto;
4395
- font-size: 13px;
4396
- color: rgba(44, 56, 82, 0.6);
4397
- white-space: normal;
4398
- }
4399
- .f1p9ti6d.ant-form-item-has-error .ant-input {
4400
- border-color: #ff4d4f !important;
4401
- }
4402
- .f1p9ti6d .ant-form-item-explain {
4403
- margin-top: 4px;
4404
- font-size: 12px;
4405
- min-height: 0px;
4406
- }
4407
- .f1p9ti6d .ant-form-item-extra {
4408
- font-size: 12px;
4409
- color: rgba(44, 56, 82, 0.6);
4410
- min-height: 0px;
4411
- }
4412
-
4413
4413
  .a6dbbkm .ant-input-number-handler-wrap {
4414
4414
  display: var(--a6dbbkm-0);
4415
4415
  }