@plasmicapp/react-web 0.2.91 → 0.2.93

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/dist/all.d.ts CHANGED
@@ -1109,7 +1109,7 @@ interface BaseTextInputProps extends Omit<React.ComponentProps<"input">, "type"
1109
1109
  startIcon?: React.ReactNode;
1110
1110
  endIcon?: React.ReactNode;
1111
1111
  isDisabled?: boolean;
1112
- type?: "text" | "password" | "email" | "url";
1112
+ type?: "text" | "password" | "email" | "url" | string;
1113
1113
  inputClassName?: string;
1114
1114
  inputStyle?: React.CSSProperties;
1115
1115
  }
@@ -6,7 +6,7 @@ export interface BaseTextInputProps extends Omit<React.ComponentProps<"input">,
6
6
  startIcon?: React.ReactNode;
7
7
  endIcon?: React.ReactNode;
8
8
  isDisabled?: boolean;
9
- type?: "text" | "password" | "email" | "url";
9
+ type?: "text" | "password" | "email" | "url" | string;
10
10
  inputClassName?: string;
11
11
  inputStyle?: React.CSSProperties;
12
12
  }