@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.
- package/dist/cjs/components/forms/TextInput/TextInput.d.ts +3 -1
- package/dist/cjs/index.d.ts +5 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/mjs/components/forms/TextInput/TextInput.d.ts +3 -1
- package/dist/mjs/index.d.ts +5 -1
- package/dist/mjs/index.js +5 -5
- package/dist/mjs/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -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 };
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -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
|
-
|
|
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
|
};
|