fis-component 0.0.69 → 0.0.71
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/index.js +27 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/Input/InputDate/index.d.ts +1 -0
- package/dist/cjs/types/src/components/Select/styles.d.ts +3 -1
- package/dist/cjs/types/src/components/SelectItem/styles.d.ts +1 -0
- package/dist/esm/index.js +27 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/Input/InputDate/index.d.ts +1 -0
- package/dist/esm/types/src/components/Select/styles.d.ts +3 -1
- package/dist/esm/types/src/components/SelectItem/styles.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { InputFieldProps } from "../InputField";
|
|
|
2
2
|
import dayjs from "dayjs";
|
|
3
3
|
import { InputLabelProps } from "../InputLabel";
|
|
4
4
|
export interface InputDateProps extends Omit<InputFieldProps, "value" | "onChange">, Partial<InputLabelProps> {
|
|
5
|
+
className?: string | undefined;
|
|
5
6
|
/**Date value*/
|
|
6
7
|
value?: Date | null;
|
|
7
8
|
/**Format Date*/
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export declare const DivWrapperSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
-
export declare const DivInputWrapperSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").
|
|
2
|
+
export declare const DivInputWrapperSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
3
|
+
$hasValue?: boolean;
|
|
4
|
+
}>> & string;
|
|
3
5
|
export declare const DivDropdownMenuSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
6
|
export declare const SelectedTagsWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { SelectSize } from ".";
|
|
2
2
|
interface SelectItemProps {
|
|
3
3
|
$size?: SelectSize;
|
|
4
|
+
$disabled?: boolean;
|
|
4
5
|
}
|
|
5
6
|
export declare const InputSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, SelectItemProps>> & string;
|
|
6
7
|
export declare const DivWrapperSC: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SelectItemProps>> & string;
|
package/dist/index.d.ts
CHANGED
|
@@ -4056,6 +4056,7 @@ interface InputTimeProps extends Omit<InputFieldProps, "onChange">, Partial<Inpu
|
|
|
4056
4056
|
declare const FISInputTime: React__default.ForwardRefExoticComponent<InputTimeProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
4057
4057
|
|
|
4058
4058
|
interface InputDateProps extends Omit<InputFieldProps, "value" | "onChange">, Partial<InputLabelProps> {
|
|
4059
|
+
className?: string | undefined;
|
|
4059
4060
|
/**Date value*/
|
|
4060
4061
|
value?: Date | null;
|
|
4061
4062
|
/**Format Date*/
|