myrta-ui 1.1.63 → 1.1.64

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.
@@ -10,6 +10,7 @@ export declare class InputTextComponent implements ControlValueAccessor {
10
10
  uuid: string;
11
11
  fields: Field[];
12
12
  disabled: boolean;
13
+ allowPattern: RegExp | null;
13
14
  required: boolean;
14
15
  readonly: boolean;
15
16
  maxlength: number;
@@ -32,7 +33,6 @@ export declare class InputTextComponent implements ControlValueAccessor {
32
33
  changed: EventEmitter<InputTextValueTypes>;
33
34
  blurred: EventEmitter<InputTextValueWithId>;
34
35
  modelChange: EventEmitter<InputTextValueWithId>;
35
- private get _isInvalidValueLength();
36
36
  get getInvalid(): boolean;
37
37
  get getInvalidMessage(): string | string[];
38
38
  get readonlyClass(): string;
@@ -50,8 +50,10 @@ export declare class InputTextComponent implements ControlValueAccessor {
50
50
  registerOnTouched(fn: () => {}): void;
51
51
  writeValue(outsideValue: InputTextValueTypes): void;
52
52
  setDisabledState(isDisabled: boolean): void;
53
- updateValue(insideValue: InputTextValueTypes): void;
54
53
  onBlur(event: FocusEvent): void;
54
+ updateValue(insideValue: InputTextValueTypes): void;
55
+ private get _isInvalidValueLength();
56
+ _normalizeValue(value: InputTextValueTypes): any;
55
57
  static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
56
- static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "mrx-input-text", never, { "fields": "fields"; "disabled": "disabled"; "required": "required"; "readonly": "readonly"; "maxlength": "maxlength"; "minlength": "minlength"; "placeholder": "placeholder"; "customClasses": "customClasses"; "size": "size"; "isTooltipValue": "isTooltipValue"; "icon": "icon"; "iconColor": "iconColor"; "invalid": "invalid"; "invalidMessage": "invalidMessage"; "checkInvalid": "checkInvalid"; "restrictInput": "restrictInput"; "mask": "mask"; "maskPrefix": "maskPrefix"; "showMaskTyped": "showMaskTyped"; "maskDropSpecialCharacters": "maskDropSpecialCharacters"; }, { "changed": "changed"; "blurred": "blurred"; "modelChange": "modelChange"; }, never, never>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "mrx-input-text", never, { "fields": "fields"; "disabled": "disabled"; "allowPattern": "allowPattern"; "required": "required"; "readonly": "readonly"; "maxlength": "maxlength"; "minlength": "minlength"; "placeholder": "placeholder"; "customClasses": "customClasses"; "size": "size"; "isTooltipValue": "isTooltipValue"; "icon": "icon"; "iconColor": "iconColor"; "invalid": "invalid"; "invalidMessage": "invalidMessage"; "checkInvalid": "checkInvalid"; "restrictInput": "restrictInput"; "mask": "mask"; "maskPrefix": "maskPrefix"; "showMaskTyped": "showMaskTyped"; "maskDropSpecialCharacters": "maskDropSpecialCharacters"; }, { "changed": "changed"; "blurred": "blurred"; "modelChange": "modelChange"; }, never, never>;
57
59
  }
@@ -23,11 +23,11 @@ export declare class InputTextareaComponent implements ControlValueAccessor {
23
23
  invalidMessage: string | string[];
24
24
  checkInvalid: true | false | null;
25
25
  restrictInput: boolean;
26
+ allowPattern: RegExp | null;
26
27
  inputElement: ElementRef;
27
28
  changed: EventEmitter<InputTextareaValueTypes>;
28
29
  blurred: EventEmitter<InputTextareaValueWithId>;
29
30
  modelChange: EventEmitter<InputTextareaValueWithId>;
30
- private get _isInvalidValueLength();
31
31
  get getInvalid(): boolean;
32
32
  get getInvalidMessage(): string | string[];
33
33
  get readonlyClass(): string;
@@ -42,8 +42,10 @@ export declare class InputTextareaComponent implements ControlValueAccessor {
42
42
  registerOnTouched(fn: () => {}): void;
43
43
  private processValueForViewOnly;
44
44
  writeValue(outsideValue: InputTextareaValueTypes): void;
45
- updateValue(insideValue: InputTextareaValueTypes): void;
46
45
  onBlur(event: FocusEvent): void;
46
+ updateValue(insideValue: InputTextareaValueTypes): void;
47
+ private _normalizeValue;
48
+ private get _isInvalidValueLength();
47
49
  static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaComponent, never>;
48
- static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaComponent, "mrx-input-textarea", never, { "fields": "fields"; "disabled": "disabled"; "readonly": "readonly"; "autosize": "autosize"; "maxlength": "maxlength"; "minlength": "minlength"; "rows": "rows"; "placeholder": "placeholder"; "customClasses": "customClasses"; "mask": "mask"; "size": "size"; "invalid": "invalid"; "invalidMessage": "invalidMessage"; "checkInvalid": "checkInvalid"; "restrictInput": "restrictInput"; }, { "changed": "changed"; "blurred": "blurred"; "modelChange": "modelChange"; }, never, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaComponent, "mrx-input-textarea", never, { "fields": "fields"; "disabled": "disabled"; "readonly": "readonly"; "autosize": "autosize"; "maxlength": "maxlength"; "minlength": "minlength"; "rows": "rows"; "placeholder": "placeholder"; "customClasses": "customClasses"; "mask": "mask"; "size": "size"; "invalid": "invalid"; "invalidMessage": "invalidMessage"; "checkInvalid": "checkInvalid"; "restrictInput": "restrictInput"; "allowPattern": "allowPattern"; }, { "changed": "changed"; "blurred": "blurred"; "modelChange": "modelChange"; }, never, never>;
49
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myrta-ui",
3
- "version": "1.1.63",
3
+ "version": "1.1.64",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.3.0",
6
6
  "@angular/core": "^13.3.0",