@aloudata/aloudata-design 2.14.3 → 2.14.5

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.
@@ -41,7 +41,6 @@ export interface BaseSelectProps extends BaseSelectPrivateProps, ISelectProps, R
41
41
  innerSearchValue?: string;
42
42
  setInnerSearchValue?: (value: string) => void;
43
43
  displayMenu?: MenuProps;
44
- status?: 'success' | 'error';
45
44
  open?: boolean;
46
45
  defaultOpen?: boolean;
47
46
  onOpenChange?: (open: boolean) => void;
@@ -7,7 +7,7 @@ export interface ISelectProps<ValueType = any, OptionType extends BaseOptionType
7
7
  prefix?: React.ReactNode;
8
8
  size?: 'small' | 'middle' | 'large';
9
9
  mode?: Mode;
10
- status?: 'success' | 'error';
10
+ status?: 'passed' | 'error';
11
11
  suffixIcon?: React.ReactNode;
12
12
  className?: string;
13
13
  id?: string;
@@ -11,7 +11,7 @@
11
11
  }
12
12
 
13
13
  &-validating,
14
- &-success {
14
+ &-passed {
15
15
  border-color: #16a34a;
16
16
  }
17
17
 
@@ -5,7 +5,6 @@
5
5
  @import './color.less';
6
6
 
7
7
  .beta-ald-select {
8
- width: 100%;
9
8
  height: fit-content;
10
9
  display: inline-flex;
11
10
  position: relative;
@@ -124,7 +123,7 @@
124
123
  }
125
124
  }
126
125
 
127
- .beta-ald-select-popup-container {
126
+ .beta-ald-select-popup-container.ald-dropdown-overlay {
128
127
  min-width: 194px;
129
128
 
130
129
  .beta-ald-select-popup {
@@ -9,6 +9,8 @@
9
9
  @select-line-height-small: 16px;
10
10
 
11
11
  .beta-ald-select {
12
+ width: 240px;
13
+
12
14
  &-large {
13
15
  .beta-ald-select-size-style( @select-padding-top-large, @select-font-size-large, @select-line-height-large);
14
16
  }
@@ -19,6 +21,11 @@
19
21
 
20
22
  &-small {
21
23
  .beta-ald-select-size-style( @select-padding-top-small, @select-font-size-small, @select-line-height-small);
24
+
25
+ .ald-tag-container {
26
+ padding: 0 4px;
27
+ border-width: 0;
28
+ }
22
29
  }
23
30
  }
24
31