@acorex/components 18.5.5 → 18.5.7
Sign up to get free protection for your applications and to get access to all the features.
- package/datetime-box/lib/datetime-box.component.d.ts +1 -1
- package/esm2022/action-sheet/lib/action-sheet.service.mjs +3 -3
- package/esm2022/datetime-box/lib/datetime-box.component.mjs +3 -2
- package/esm2022/otp/lib/otp.component.mjs +2 -1
- package/esm2022/phone-box/lib/phone-box.component.mjs +20 -20
- package/fesm2022/acorex-components-action-sheet.mjs +2 -2
- package/fesm2022/acorex-components-action-sheet.mjs.map +1 -1
- package/fesm2022/acorex-components-datetime-box.mjs +2 -1
- package/fesm2022/acorex-components-datetime-box.mjs.map +1 -1
- package/fesm2022/acorex-components-otp.mjs +1 -0
- package/fesm2022/acorex-components-otp.mjs.map +1 -1
- package/fesm2022/acorex-components-phone-box.mjs +19 -19
- package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
- package/package.json +19 -19
- package/phone-box/lib/phone-box.component.d.ts +2 -2
@@ -18,14 +18,14 @@ export declare class AXPhoneBoxComponent extends AXPhoneBoxComponent_base {
|
|
18
18
|
protected countries: WritableSignal<CountryItem[]>;
|
19
19
|
protected selectedCountry: WritableSignal<CountryItem>;
|
20
20
|
protected _handleModelChange(value: string | null): void;
|
21
|
+
protected dataSource: AXDataSource<CountryItem>;
|
22
|
+
protected handleCountryOnClosed(): void;
|
21
23
|
constructor();
|
22
24
|
isValidKeyboardAction: (event: KeyboardEvent) => boolean;
|
23
25
|
setCountries(): void;
|
24
26
|
setDefaultValue(): void;
|
25
|
-
protected dataSource: AXDataSource<CountryItem>;
|
26
27
|
handleKeyDown(e: KeyboardEvent): void;
|
27
28
|
_handleCountryValueChanged(event: AXValueChangedEvent): void;
|
28
|
-
protected handleCountryOnClosed(): void;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPhoneBoxComponent, never>;
|
30
30
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPhoneBoxComponent, "ax-phone-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "type": { "alias": "type"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; "look": { "alias": "look"; "required": false; }; "classNames": { "alias": "class"; "required": false; }; "country": { "alias": "country"; "required": false; "isSignal": true; }; "included": { "alias": "included"; "required": false; "isSignal": true; }; "excluded": { "alias": "excluded"; "required": false; "isSignal": true; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; }, never, ["ax-clear-button", "ax-validation-rule"], false, never>;
|
31
31
|
}
|