@cube-dev/ui-kit 0.6.53 → 0.6.54
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/TextInputBase.d.ts +2 -2
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/mjs/components/forms/TextInput/TextInputBase.d.ts +2 -2
- package/dist/mjs/index.js +4 -4
- package/dist/mjs/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ReactNode, RefObject } from 'react';
|
|
2
2
|
import { Styles } from '../../../styles/types';
|
|
3
|
-
import { BaseProps, BlockStyleProps, PositionStyleProps, Props } from '../../types';
|
|
3
|
+
import { BaseProps, BlockStyleProps, DimensionStyleProps, PositionStyleProps, Props } from '../../types';
|
|
4
4
|
import { FormFieldProps } from '../../../shared';
|
|
5
5
|
import { AriaTextFieldProps } from '@react-types/textfield';
|
|
6
6
|
export declare const DEFAULT_INPUT_STYLES: Styles;
|
|
7
|
-
export interface CubeTextInputBaseProps extends BaseProps, PositionStyleProps, BlockStyleProps, AriaTextFieldProps, FormFieldProps {
|
|
7
|
+
export interface CubeTextInputBaseProps extends BaseProps, PositionStyleProps, DimensionStyleProps, BlockStyleProps, AriaTextFieldProps, FormFieldProps {
|
|
8
8
|
/** Input decoration before the main input */
|
|
9
9
|
prefix?: ReactNode;
|
|
10
10
|
/** Input decoration after the main input */
|