@alauda/ui 6.3.1-beta.3 → 6.3.1-beta.6
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/esm2020/checkbox/checkbox-group/checkbox-group.component.mjs +2 -2
- package/esm2020/select/base-select.mjs +1 -1
- package/esm2020/select/multi-select/multi-select.component.mjs +18 -4
- package/esm2020/select/option/option.component.mjs +1 -1
- package/esm2020/select/select.component.mjs +2 -2
- package/fesm2015/alauda-ui.mjs +21 -7
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +21 -7
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/select/base-select.d.ts +1 -1
- package/select/multi-select/multi-select.component.d.ts +1 -0
- package/select/option/option.component.d.ts +1 -1
package/package.json
CHANGED
package/select/base-select.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ export declare abstract class BaseSelect<T, V = T> extends CommonFormControl<V>
|
|
|
33
33
|
hide: EventEmitter<void>;
|
|
34
34
|
protected selectRef: ElementRef<HTMLElement>;
|
|
35
35
|
protected tooltipRef: TooltipDirective;
|
|
36
|
-
protected optionListRef: ElementRef
|
|
36
|
+
protected optionListRef: ElementRef<HTMLDivElement>;
|
|
37
37
|
protected inputtingOption: OptionComponent<T>;
|
|
38
38
|
protected optionContent?: OptionContentDirective;
|
|
39
39
|
customOptions: QueryList<OptionComponent<T>>;
|
|
@@ -45,6 +45,7 @@ export declare class MultiSelectComponent<T = unknown> extends BaseSelect<T, T[]
|
|
|
45
45
|
onInputBlur(): void;
|
|
46
46
|
onKeyDown(event: KeyboardEvent): void;
|
|
47
47
|
writeValue(val: T[]): void;
|
|
48
|
+
isOptionRemovable(option: SelectFilterOption<T>): boolean;
|
|
48
49
|
selectOption(option: OptionComponent<T>): void;
|
|
49
50
|
addValue(value: T): void;
|
|
50
51
|
removeValue(value: T): void;
|
|
@@ -22,7 +22,7 @@ export declare class OptionComponent<T> {
|
|
|
22
22
|
get disabled(): boolean | '';
|
|
23
23
|
set disabled(val: boolean | '');
|
|
24
24
|
isMulti: boolean;
|
|
25
|
-
elRef: ElementRef
|
|
25
|
+
elRef: ElementRef<HTMLDivElement>;
|
|
26
26
|
private readonly select;
|
|
27
27
|
selected: boolean;
|
|
28
28
|
visible: boolean;
|