@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alauda/ui",
3
- "version": "7.3.2",
3
+ "version": "7.3.3-beta.0",
4
4
  "description": "Angular UI components by Alauda Frontend Team.",
5
5
  "repository": "git+https://github.com/alauda/alauda-ui.git",
6
6
  "author": "Alauda Frontend",
@@ -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 inputReadonly(): boolean;
21
+ get inaction(): boolean;
22
22
  get filterString(): string;
23
23
  set filterString(val: string);
24
24
  loading: boolean;