@elderbyte/ngx-starter 20.4.0 → 20.4.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.
package/index.d.ts
CHANGED
|
@@ -845,15 +845,19 @@ type CountryPhoneFormat = {
|
|
|
845
845
|
declare class PhoneFormatService {
|
|
846
846
|
/***************************************************************************
|
|
847
847
|
* *
|
|
848
|
-
* Public
|
|
848
|
+
* Public API *
|
|
849
849
|
* *
|
|
850
850
|
**************************************************************************/
|
|
851
|
-
formatPhoneNumber(
|
|
851
|
+
formatPhoneNumber(number: string, countryCode?: string, config?: CountryPhoneFormat): string;
|
|
852
852
|
/***************************************************************************
|
|
853
853
|
* *
|
|
854
|
-
* Private
|
|
854
|
+
* Private Methods *
|
|
855
855
|
* *
|
|
856
856
|
**************************************************************************/
|
|
857
|
+
private applyFormattingPerConfig;
|
|
858
|
+
private preparePhoneNumberBody;
|
|
859
|
+
private cleanNumberString;
|
|
860
|
+
private handleWithoutConfig;
|
|
857
861
|
private removeDialingCode;
|
|
858
862
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneFormatService, never>;
|
|
859
863
|
static ɵprov: i0.ɵɵInjectableDeclaration<PhoneFormatService>;
|
|
@@ -11750,6 +11754,27 @@ declare abstract class ElderMultiSelectBase<TId, TEntity, TValue> extends ElderS
|
|
|
11750
11754
|
*/
|
|
11751
11755
|
confirmRemoval: boolean;
|
|
11752
11756
|
readonly entitiesChangeEvent: Observable<EntitiesChangeEvent<TId, TEntity>>;
|
|
11757
|
+
/***************************************************************************
|
|
11758
|
+
* *
|
|
11759
|
+
* Deprecated Outputs *
|
|
11760
|
+
* *
|
|
11761
|
+
**************************************************************************/
|
|
11762
|
+
/**
|
|
11763
|
+
* @deprecated Switch to entitiesChangeEvent
|
|
11764
|
+
*/
|
|
11765
|
+
readonly entitiesChange: never;
|
|
11766
|
+
/**
|
|
11767
|
+
* @deprecated Switch to entitiesChangeEvent (filter by userInitiated)
|
|
11768
|
+
*/
|
|
11769
|
+
readonly entitiesUpdated: never;
|
|
11770
|
+
/**
|
|
11771
|
+
* @deprecated Switch to entitiesChangeEvent
|
|
11772
|
+
*/
|
|
11773
|
+
readonly entityIdsChange: never;
|
|
11774
|
+
/**
|
|
11775
|
+
* @deprecated Switch to entitiesChangeEvent (filter by userInitiated)
|
|
11776
|
+
*/
|
|
11777
|
+
readonly entityIdsUpdated: never;
|
|
11753
11778
|
/***************************************************************************
|
|
11754
11779
|
* *
|
|
11755
11780
|
* Constructor *
|
|
@@ -11830,7 +11855,7 @@ declare abstract class ElderMultiSelectBase<TId, TEntity, TValue> extends ElderS
|
|
|
11830
11855
|
private writeEntitiesSorted;
|
|
11831
11856
|
private sortEntities;
|
|
11832
11857
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderMultiSelectBase<any, any, any>, never>;
|
|
11833
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderMultiSelectBase<any, any, any>, never, never, { "entitiesSorts": { "alias": "entitiesSorts"; "required": false; }; "confirmRemoval": { "alias": "confirmRemoval"; "required": false; }; "entities": { "alias": "entities"; "required": false; }; "entityIds": { "alias": "entityIds"; "required": false; }; }, { "entitiesChangeEvent": "entitiesChangeEvent"; }, never, never, true, never>;
|
|
11858
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderMultiSelectBase<any, any, any>, never, never, { "entitiesSorts": { "alias": "entitiesSorts"; "required": false; }; "confirmRemoval": { "alias": "confirmRemoval"; "required": false; }; "entities": { "alias": "entities"; "required": false; }; "entityIds": { "alias": "entityIds"; "required": false; }; }, { "entitiesChangeEvent": "entitiesChangeEvent"; "entitiesChange": "entitiesChange"; "entitiesUpdated": "entitiesUpdated"; "entityIdsChange": "entityIdsChange"; "entityIdsUpdated": "entityIdsUpdated"; }, never, never, true, never>;
|
|
11834
11859
|
}
|
|
11835
11860
|
|
|
11836
11861
|
declare class SelectChipSpecUtil {
|