tickera-angular-components 0.0.1-dev.133 → 0.0.1-dev.135
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/i18n/en.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"formErrors": {
|
|
3
3
|
"required": "This field is required",
|
|
4
|
-
"minlength": "Must be at least {{
|
|
5
|
-
"maxlength": "Must not exceed {{
|
|
4
|
+
"minlength": "Must be at least {{length}} characters",
|
|
5
|
+
"maxlength": "Must not exceed {{length}} characters",
|
|
6
6
|
"pattern": "Invalid format",
|
|
7
7
|
"email": "Invalid format",
|
|
8
8
|
"mustMatch": "Passwords do not match",
|
package/i18n/es.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"formErrors": {
|
|
3
3
|
"required": "Este campo es requerido",
|
|
4
|
-
"minlength": "Debe tener al menos {{
|
|
5
|
-
"maxlength": "No debe exceder {{
|
|
4
|
+
"minlength": "Debe tener al menos {{length}} caracteres",
|
|
5
|
+
"maxlength": "No debe exceder {{length}} caracteres",
|
|
6
6
|
"pattern": "El formato no es válido",
|
|
7
7
|
"email": "El formato no es válido",
|
|
8
8
|
"mustMatch": "Las contraseñas no coinciden",
|
package/index.d.ts
CHANGED
|
@@ -2812,8 +2812,8 @@ declare class PhoneInputComponent implements ControlValueAccessor, Validator, On
|
|
|
2812
2812
|
placeholder: string;
|
|
2813
2813
|
required: boolean;
|
|
2814
2814
|
readonly: boolean;
|
|
2815
|
-
|
|
2816
|
-
|
|
2815
|
+
maxNationalDigits: number | null;
|
|
2816
|
+
minNationalDigits: number | null;
|
|
2817
2817
|
defaultCountry: string;
|
|
2818
2818
|
fieldGroupClass: string;
|
|
2819
2819
|
readonly countries: tickera_angular_components.PhoneCountry[];
|
|
@@ -2828,6 +2828,7 @@ declare class PhoneInputComponent implements ControlValueAccessor, Validator, On
|
|
|
2828
2828
|
disabled: boolean;
|
|
2829
2829
|
onChange: any;
|
|
2830
2830
|
onTouched: any;
|
|
2831
|
+
onValidatorChange: () => void;
|
|
2831
2832
|
private _ngControl;
|
|
2832
2833
|
constructor(transloco: TranslocoService, injector: Injector);
|
|
2833
2834
|
get ngControl(): NgControl | null;
|
|
@@ -2836,6 +2837,7 @@ declare class PhoneInputComponent implements ControlValueAccessor, Validator, On
|
|
|
2836
2837
|
dialCodeOf(isoCode: string): string;
|
|
2837
2838
|
get value(): string;
|
|
2838
2839
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2840
|
+
registerOnValidatorChange(fn: () => void): void;
|
|
2839
2841
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
2840
2842
|
writeValue(value: string | null | undefined): void;
|
|
2841
2843
|
registerOnChange(fn: any): void;
|
|
@@ -2852,7 +2854,7 @@ declare class PhoneInputComponent implements ControlValueAccessor, Validator, On
|
|
|
2852
2854
|
private sanitize;
|
|
2853
2855
|
private nationalDigits;
|
|
2854
2856
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneInputComponent, never>;
|
|
2855
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneInputComponent, "phone-input", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "
|
|
2857
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneInputComponent, "phone-input", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "maxNationalDigits": { "alias": "maxNationalDigits"; "required": false; }; "minNationalDigits": { "alias": "minNationalDigits"; "required": false; }; "defaultCountry": { "alias": "defaultCountry"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
2856
2858
|
}
|
|
2857
2859
|
|
|
2858
2860
|
declare class FormEditorComponent implements ControlValueAccessor, OnInit, OnDestroy {
|