@everymatrix/general-input 1.90.24 → 1.90.25

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.
@@ -84,6 +84,13 @@ export declare class TelInput {
84
84
  sendInputValue: EventEmitter<InputValueEvent>;
85
85
  valueHandler(inputValueEvent: InputValueEvent): void;
86
86
  handleClickOutside(event: MouseEvent): void;
87
+ resetValidationState(): void;
88
+ private isMissingValue;
89
+ isFixedLength(value: string): boolean;
90
+ isTooShort(value: string): boolean;
91
+ isTooLong(value: string): boolean;
92
+ failsPattern(value: string): boolean;
93
+ failsCustomRules(value: string): boolean;
87
94
  connectedCallback(): void;
88
95
  componentWillLoad(): void;
89
96
  handleClientStyling(): void;
@@ -95,6 +102,7 @@ export declare class TelInput {
95
102
  isValidValue(): boolean;
96
103
  setPattern(): string;
97
104
  setErrorMessage(): string;
105
+ applyCustomError(): void;
98
106
  renderTooltip(): any;
99
107
  render(): any;
100
108
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/general-input",
3
- "version": "1.90.24",
3
+ "version": "1.90.25",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",