@fluid-topics/ft-text-input 1.3.14 → 1.3.16

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.
@@ -4,6 +4,7 @@ export interface TextInputMessages extends I18nMessages {
4
4
  showPassword(): string;
5
5
  invalidEmail(): string;
6
6
  invalidUrl(): string;
7
+ clear(): string;
7
8
  }
8
9
  export declare const textInputContext: I18nMessageContext<TextInputMessages>;
9
10
  export declare const textInputDefaultMessages: DefaultI18nMessages<TextInputMessages>;
@@ -5,4 +5,5 @@ export const textInputDefaultMessages = {
5
5
  showPassword: "Show password",
6
6
  invalidEmail: "Invalid email format.",
7
7
  invalidUrl: "Invalid URL format.",
8
+ clear: "clear",
8
9
  };