@fattureincloud/fic-design-system 0.19.19 → 0.19.21-test
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/components/editableInput/components/styled.d.ts +3 -1
- package/dist/components/form/inputText/InputTelephone.d.ts +1 -1
- package/dist/components/form/inputText/types.d.ts +2 -0
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
@@ -2,7 +2,9 @@
|
|
2
2
|
export declare const InputsWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
3
3
|
export declare const TextAreaWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
4
4
|
export declare const StyledTextArea: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../form/label").LabelProps & import("../../form/textArea/types").TextAreaElementProps & import("react").RefAttributes<HTMLTextAreaElement>>, import("styled-components").DefaultTheme, {}, never>;
|
5
|
-
export declare const IconsWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
5
|
+
export declare const IconsWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
6
|
+
hasMaxContentLength: boolean;
|
7
|
+
}, never>;
|
6
8
|
export declare const StyledIcon: import("styled-components").StyledComponent<({ isDisabled, onClick, ...props }: import("../../icon").IconProps) => JSX.Element, import("styled-components").DefaultTheme, {
|
7
9
|
confirm?: boolean | undefined;
|
8
10
|
}, never>;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { InputTelephoneProps } from './types';
|
3
|
-
declare const InputTelephone: ({ className, disabled, helper, label, menuPortalTarget, phoneNumberLabel, placeholder, prefixCustomStyles, required, setValue, status, value, }: InputTelephoneProps) => JSX.Element;
|
3
|
+
declare const InputTelephone: ({ className, defaultPrefix, disabled, helper, label, menuPortalTarget, phoneNumberLabel, placeholder, prefixCustomStyles, required, setValue, status, value, }: InputTelephoneProps) => JSX.Element;
|
4
4
|
export default InputTelephone;
|
@@ -3,6 +3,7 @@ import { IconProps } from '../../icon';
|
|
3
3
|
import { TooltipProps } from '../../tooltip';
|
4
4
|
import { CommonFormTypes } from '../common/types';
|
5
5
|
import { LabelProps } from '../label';
|
6
|
+
import { OptionType } from '../select';
|
6
7
|
import { CustomStylesType } from '../select/hooks/useSelectThemeStyles';
|
7
8
|
import { UnitDropdownProps } from './components/types';
|
8
9
|
export declare const inputTypesArray: readonly ["password", "text", "number", "code", "telephone"];
|
@@ -42,6 +43,7 @@ export declare type InputTelephoneProps = LabelProps & CommonFormTypes & {
|
|
42
43
|
value?: string | null;
|
43
44
|
menuPortalTarget?: HTMLElement | null | undefined;
|
44
45
|
prefixCustomStyles?: CustomStylesType;
|
46
|
+
defaultPrefix?: OptionType;
|
45
47
|
};
|
46
48
|
export declare type InputTextProps = LabelProps & InputElementProps;
|
47
49
|
export {};
|