rd-outer-component 0.1.1 → 0.1.3
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/lib/modules/rd-phone/rd-phone.component.mjs +9 -8
- package/fesm2015/rd-outer-component.mjs +8 -7
- package/fesm2015/rd-outer-component.mjs.map +1 -1
- package/fesm2020/rd-outer-component.mjs +8 -7
- package/fesm2020/rd-outer-component.mjs.map +1 -1
- package/lib/modules/rd-phone/rd-phone.component.d.ts +5 -4
- package/package.json +1 -1
|
@@ -11,9 +11,10 @@ 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:
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
excludeAreaCodes: any[];
|
|
15
|
+
/** Full area-code list from the host (e.g. commonService.areaDictionary) */
|
|
16
|
+
areaCodeOptions: any[];
|
|
17
|
+
get filteredAreaCodeOptions(): any[];
|
|
17
18
|
private destroy$;
|
|
18
19
|
get hostThemeLight(): boolean;
|
|
19
20
|
get hostThemeDark(): boolean;
|
|
@@ -21,5 +22,5 @@ export declare class RdPhoneComponent implements OnInit, OnDestroy {
|
|
|
21
22
|
ngOnInit(): void;
|
|
22
23
|
ngOnDestroy(): void;
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<RdPhoneComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RdPhoneComponent, "app-rd-phone", never, { "form": "form"; "areaCodeControlName": "areaCodeControlName"; "phoneControlName": "phoneControlName"; "label": "label"; "required": "required"; "theme": "theme"; "excludeAreaCodes": "excludeAreaCodes"; "
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RdPhoneComponent, "app-rd-phone", never, { "form": "form"; "areaCodeControlName": "areaCodeControlName"; "phoneControlName": "phoneControlName"; "label": "label"; "required": "required"; "theme": "theme"; "excludeAreaCodes": "excludeAreaCodes"; "areaCodeOptions": "areaCodeOptions"; }, {}, never, never, false, never>;
|
|
25
26
|
}
|