@alauda/ui 7.3.2 → 7.3.3-beta.0
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/esm2022/form/common-form.mjs +5 -3
- package/esm2022/input/input.component.mjs +2 -2
- package/esm2022/input/tags-input/tags-input.component.mjs +2 -2
- package/esm2022/select/base-select.mjs +2 -2
- package/esm2022/select/multi-select/multi-select.component.mjs +5 -5
- package/esm2022/select/select.component.mjs +3 -3
- package/fesm2022/alauda-ui.mjs +15 -13
- package/fesm2022/alauda-ui.mjs.map +1 -1
- package/form/common-form.d.ts +3 -2
- package/package.json +1 -1
- package/select/base-select.d.ts +1 -1
package/form/common-form.d.ts
CHANGED
|
@@ -6,8 +6,8 @@ export declare class CommonFormControl<V, M = V> implements ControlValueAccessor
|
|
|
6
6
|
protected cdr: ChangeDetectorRef;
|
|
7
7
|
get disabled(): boolean | '';
|
|
8
8
|
set disabled(val: boolean | '');
|
|
9
|
-
get readonly(): boolean
|
|
10
|
-
set readonly(val: boolean
|
|
9
|
+
get readonly(): boolean;
|
|
10
|
+
set readonly(val: boolean);
|
|
11
11
|
get propValue(): V;
|
|
12
12
|
set propValue(val: V);
|
|
13
13
|
valueChange: EventEmitter<V>;
|
|
@@ -15,6 +15,7 @@ export declare class CommonFormControl<V, M = V> implements ControlValueAccessor
|
|
|
15
15
|
protected onTouched: () => void;
|
|
16
16
|
private _propValue;
|
|
17
17
|
private _disabled;
|
|
18
|
+
private _readonly;
|
|
18
19
|
model: M;
|
|
19
20
|
model$: ReplaySubject<M>;
|
|
20
21
|
constructor(cdr: ChangeDetectorRef);
|
package/package.json
CHANGED
package/select/base-select.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export declare abstract class BaseSelect<T, V = T> extends CommonFormControl<V>
|
|
|
18
18
|
allowCreate: boolean;
|
|
19
19
|
get allOptions(): OptionComponent<T>[];
|
|
20
20
|
get opened(): boolean;
|
|
21
|
-
get
|
|
21
|
+
get inaction(): boolean;
|
|
22
22
|
get filterString(): string;
|
|
23
23
|
set filterString(val: string);
|
|
24
24
|
loading: boolean;
|