profinansy-ui-lib 3.5.84 → 3.5.86
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const StaticRoot: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
2
|
export declare const ChevronIcon: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const CustomIcon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
3
4
|
export declare const Button: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
4
5
|
export declare const ChevronRight: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
5
6
|
export declare const DateText: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -16,6 +16,8 @@ export declare const RightText: import("styled-components").StyledComponent<"spa
|
|
|
16
16
|
}, never>;
|
|
17
17
|
export declare const Input: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {
|
|
18
18
|
icon: boolean;
|
|
19
|
+
rightText: boolean;
|
|
20
|
+
prohibitTextInput: boolean;
|
|
19
21
|
error: boolean;
|
|
20
22
|
positionIcon: IInput['positionIcon'];
|
|
21
23
|
}, never>;
|
|
@@ -17,6 +17,8 @@ export interface IInput {
|
|
|
17
17
|
autoComplete?: 'on' | 'off' | 'new-password';
|
|
18
18
|
inputClassName?: string;
|
|
19
19
|
iconBorder?: boolean;
|
|
20
|
+
/** Запретить ввод текста, но оставить стилизацию. */
|
|
21
|
+
prohibitTextInput?: boolean;
|
|
20
22
|
pattern?: RegExp;
|
|
21
23
|
error?: boolean | string | React.ReactNode;
|
|
22
24
|
onChange?: (val: string, evt: React.ChangeEvent<HTMLInputElement>) => void;
|