@alauda/ui 6.5.9-beta.2 → 6.5.9-beta.4
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/autocomplete/autocomplete.component.d.ts +1 -0
- package/esm2020/autocomplete/autocomplete.component.mjs +6 -3
- package/esm2020/input/tags-input/tags-input.component.mjs +6 -3
- package/esm2020/select/multi-select/multi-select.component.mjs +6 -3
- package/esm2020/select/select.component.mjs +6 -3
- package/esm2020/time-picker/component.mjs +6 -3
- package/esm2020/tree-select/tree-select.component.mjs +6 -3
- package/fesm2015/alauda-ui.mjs +30 -12
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +30 -12
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/input/tags-input/tags-input.component.d.ts +1 -0
- package/package.json +1 -1
- package/select/multi-select/multi-select.component.d.ts +1 -0
- package/select/select.component.d.ts +1 -0
- package/time-picker/component.d.ts +1 -0
- package/tree-select/tree-select.component.d.ts +1 -0
|
@@ -39,6 +39,7 @@ export declare class TagsInputComponent extends CommonFormControl<string[]> impl
|
|
|
39
39
|
get inputClass(): string;
|
|
40
40
|
constructor(cdr: ChangeDetectorRef, fb: FormBuilder, renderer: Renderer2, injector: Injector);
|
|
41
41
|
ngOnChanges({ inputValidator, inputAsyncValidator, disabled, }: SimpleChanges): void;
|
|
42
|
+
preventDefault(e: Event): void;
|
|
42
43
|
ngAfterViewInit(): void;
|
|
43
44
|
onRemove(index: number): void;
|
|
44
45
|
onInput(): void;
|
package/package.json
CHANGED
|
@@ -39,6 +39,7 @@ export declare class MultiSelectComponent<T = unknown> extends BaseSelect<T, T[]
|
|
|
39
39
|
constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
40
40
|
ngAfterContentInit(): void;
|
|
41
41
|
ngAfterViewInit(): void;
|
|
42
|
+
preventDefault(e: Event): void;
|
|
42
43
|
onVisibleOptions(visible: boolean): void;
|
|
43
44
|
onInput(event: Event): void;
|
|
44
45
|
onInputFocus(): void;
|
|
@@ -14,6 +14,7 @@ export declare class SelectComponent<T = unknown> extends BaseSelect<T> implemen
|
|
|
14
14
|
get containerClass(): string;
|
|
15
15
|
isClearable: (hasSelected: boolean) => boolean;
|
|
16
16
|
ngAfterContentInit(): void;
|
|
17
|
+
preventDefault(e: Event): void;
|
|
17
18
|
onVisibleOptions(visible: boolean): void;
|
|
18
19
|
protected valueIn(v: T): T;
|
|
19
20
|
selectOption(option: OptionComponent<T>): void;
|
|
@@ -28,6 +28,7 @@ export declare class TimePickerComponent extends CommonFormControl<TimePickerDat
|
|
|
28
28
|
changeFromPanel(value: Dayjs): void;
|
|
29
29
|
changeFromInput(source: string): void;
|
|
30
30
|
onKeyDown(event: KeyboardEvent): void;
|
|
31
|
+
preventDefault(e: Event): void;
|
|
31
32
|
handleTooltipVisible(visible: boolean): void;
|
|
32
33
|
openPanel(): void;
|
|
33
34
|
closePanel(): void;
|
|
@@ -44,6 +44,7 @@ export declare class TreeSelectComponent<T = unknown> extends CommonFormControl<
|
|
|
44
44
|
get filterString(): string;
|
|
45
45
|
set filterString(val: string);
|
|
46
46
|
updatePosition(): void;
|
|
47
|
+
preventDefault(e: Event): void;
|
|
47
48
|
onVisibleNodes(visible: boolean): void;
|
|
48
49
|
onInput(event: Event): void;
|
|
49
50
|
onNodeClick(node: TreeNodeComponent<T>): void;
|