@cube-dev/ui-kit 0.6.56 → 0.6.57

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.
@@ -5,5 +5,7 @@ import { CubeTextInputBaseProps } from './TextInputBase';
5
5
  * with a keyboard. Various decorations can be displayed around the field to
6
6
  * communicate the entry requirements.
7
7
  */
8
- declare const _TextInput: import("react").ForwardRefExoticComponent<CubeTextInputBaseProps & import("react").RefAttributes<unknown>>;
8
+ declare const _TextInput: import("react").ForwardRefExoticComponent<CubeTextInputBaseProps & import("react").RefAttributes<unknown>> & {
9
+ cubeInputType: string;
10
+ };
9
11
  export { _TextInput as TextInput };
@@ -150,7 +150,11 @@ export { useContextStyles, StyleProvider } from './providers/StylesProvider';
150
150
  export { Provider } from './provider';
151
151
  export type { useProviderProps } from './provider';
152
152
  declare const Input: import("react").ForwardRefExoticComponent<import("./components/forms/TextInput/TextInputBase").CubeTextInputBaseProps & import("react").RefAttributes<unknown>> & {
153
- Text: import("react").ForwardRefExoticComponent<import("./components/forms/TextInput/TextInputBase").CubeTextInputBaseProps & import("react").RefAttributes<unknown>>;
153
+ cubeInputType: string;
154
+ } & {
155
+ Text: import("react").ForwardRefExoticComponent<import("./components/forms/TextInput/TextInputBase").CubeTextInputBaseProps & import("react").RefAttributes<unknown>> & {
156
+ cubeInputType: string;
157
+ };
154
158
  Password: import("react").ForwardRefExoticComponent<import("./components/forms/TextInput/TextInputBase").CubeTextInputBaseProps & import("react").RefAttributes<unknown>> & {
155
159
  cubeInputType: string;
156
160
  };