rd-outer-component 0.0.100 → 0.1.2

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.
@@ -12,8 +12,8 @@ export declare class CustomCheckboxComponent implements ControlValueAccessor {
12
12
  theme?: 'light' | 'dark';
13
13
  get hostThemeLight(): boolean;
14
14
  get hostThemeDark(): boolean;
15
- set options(val: ISelectOption[]);
16
- get options(): ISelectOption[];
15
+ set options(val: any);
16
+ get options(): any;
17
17
  valueChange: EventEmitter<ISelectOption[]>;
18
18
  private _rawOptions;
19
19
  value: ISelectOption | undefined;
@@ -11,9 +11,9 @@ export declare class RdPhoneComponent implements OnInit, OnDestroy {
11
11
  /** Local color context. Omit to inherit body `.theme-light` / `.theme-dark`. */
12
12
  theme?: 'light' | 'dark';
13
13
  /** Area codes to exclude from the dropdown (e.g. ['+86']) */
14
- excludeAreaCodes: string[];
15
- _areaCodeOptions: any[];
16
- get areaCodeOptions(): any[];
14
+ excludeAreaCodes: any;
15
+ _areaCodeOptions: any;
16
+ get areaCodeOptions(): any;
17
17
  private destroy$;
18
18
  get hostThemeLight(): boolean;
19
19
  get hostThemeDark(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rd-outer-component",
3
- "version": "0.0.100",
3
+ "version": "0.1.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "15.2.10",
6
6
  "@angular/core": "15.2.10",