@fluid-topics/ft-text-area 0.2.2 → 0.2.6

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.
@@ -6,6 +6,7 @@ export interface FtTextAreaProperties {
6
6
  helper?: string;
7
7
  outlined?: boolean;
8
8
  disabled?: boolean;
9
+ error?: boolean;
9
10
  }
10
11
  export declare const FtTextAreaCssVariables: {
11
12
  fontSize: FtCssVariable;
@@ -17,6 +18,7 @@ export declare const FtTextAreaCssVariables: {
17
18
  colorOnSurface: FtCssVariable;
18
19
  colorOnSurfaceDisabled: FtCssVariable;
19
20
  borderRadiusS: FtCssVariable;
21
+ colorError: FtCssVariable;
20
22
  };
21
23
  export declare class FtTextArea extends FtLitElement implements FtTextAreaProperties {
22
24
  static elementDefinitions: ElementDefinitionsMap;
@@ -26,6 +28,7 @@ export declare class FtTextArea extends FtLitElement implements FtTextAreaProper
26
28
  helper: string;
27
29
  outlined: boolean;
28
30
  disabled: boolean;
31
+ error: boolean;
29
32
  private height;
30
33
  private textarea?;
31
34
  private focused;