formifex 0.2.14 → 0.2.15
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/ANTDFormComponents/inputs/InputColorPicker.d.ts +1 -0
- package/dist/components/ANTDFormComponents/inputs/InputDateRange.d.ts +1 -0
- package/dist/components/ANTDFormComponents/inputs/InputDateTime.d.ts +1 -0
- package/dist/components/ANTDFormComponents/inputs/InputNumber.d.ts +1 -0
- package/dist/components/ANTDFormComponents/inputs/InputPassword.d.ts +1 -0
- package/dist/components/ANTDFormComponents/inputs/InputRate.d.ts +1 -0
- package/dist/components/ANTDFormComponents/inputs/InputSelect.d.ts +1 -0
- package/dist/components/ANTDFormComponents/inputs/InputString.d.ts +1 -0
- package/dist/components/ANTDFormComponents/inputs/InputSwitch.d.ts +1 -0
- package/dist/components/ANTDFormComponents/inputs/InputTextArea.d.ts +1 -0
- package/dist/index.es.js +1022 -1020
- package/dist/index.umd.js +19 -19
- package/dist/types/inputs/checkbox.d.ts +3 -1
- package/dist/types/inputs/colorpicker.d.ts +1 -0
- package/dist/types/inputs/date.d.ts +1 -0
- package/dist/types/inputs/number.d.ts +1 -0
- package/dist/types/inputs/password.d.ts +1 -0
- package/dist/types/inputs/radio.d.ts +1 -0
- package/dist/types/inputs/rate.d.ts +1 -0
- package/dist/types/inputs/select.d.ts +1 -0
- package/dist/types/inputs/slider.d.ts +1 -0
- package/dist/types/inputs/switch.d.ts +1 -0
- package/dist/types/inputs/text.d.ts +1 -0
- package/dist/types/inputs/textArea.d.ts +1 -0
- package/dist/types/inputs/upload.d.ts +1 -0
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ declare const InputColorPickerComponent: React.ForwardRefExoticComponent<{
|
|
|
9
9
|
placement?: "top" | "left" | "right" | "bottom" | "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom";
|
|
10
10
|
format?: "rgb" | "hex" | "hsb";
|
|
11
11
|
showText?: boolean;
|
|
12
|
+
[key: string]: any;
|
|
12
13
|
};
|
|
13
14
|
} & import('../../../types/inputs/_input').TInputGeneric & React.RefAttributes<unknown>>;
|
|
14
15
|
export default InputColorPickerComponent;
|
|
@@ -12,6 +12,7 @@ declare const InputDateRangeComponent: React.ForwardRefExoticComponent<{
|
|
|
12
12
|
minDate?: import('dayjs').Dayjs | undefined;
|
|
13
13
|
maxDate?: import('dayjs').Dayjs | undefined;
|
|
14
14
|
showNow?: boolean | undefined;
|
|
15
|
+
[key: string]: any;
|
|
15
16
|
} & (import('../../../types/inputs/date').TShowTime | import('../../../types/inputs/date').TMultiple);
|
|
16
17
|
} & import('../../../types/inputs/_input').TInputGeneric & React.RefAttributes<unknown>>;
|
|
17
18
|
export default InputDateRangeComponent;
|
|
@@ -13,6 +13,7 @@ declare const InputDatePickerComponent: React.ForwardRefExoticComponent<{
|
|
|
13
13
|
minDate?: dayjs.Dayjs | undefined;
|
|
14
14
|
maxDate?: dayjs.Dayjs | undefined;
|
|
15
15
|
showNow?: boolean | undefined;
|
|
16
|
+
[key: string]: any;
|
|
16
17
|
} & (import('../../../types/inputs/date').TShowTime | import('../../../types/inputs/date').TMultiple);
|
|
17
18
|
} & import('../../../types/inputs/_input').TInputGeneric & React.RefAttributes<unknown>>;
|
|
18
19
|
export default InputDatePickerComponent;
|
|
@@ -15,6 +15,7 @@ declare const InputNumberComponent: React.ForwardRefExoticComponent<{
|
|
|
15
15
|
unitLabel?: string;
|
|
16
16
|
defaultValue?: number;
|
|
17
17
|
controls: boolean;
|
|
18
|
+
[key: string]: any;
|
|
18
19
|
};
|
|
19
20
|
} & import('../../../types/inputs/_input').TInputGeneric & React.RefAttributes<unknown>>;
|
|
20
21
|
export default InputNumberComponent;
|
|
@@ -7,6 +7,7 @@ declare const InputPasswordComponent: React.ForwardRefExoticComponent<{
|
|
|
7
7
|
maxLength?: number;
|
|
8
8
|
allowClear?: boolean;
|
|
9
9
|
showCount?: boolean;
|
|
10
|
+
[key: string]: any;
|
|
10
11
|
};
|
|
11
12
|
} & import('../../../types/inputs/_input').TInputGeneric & React.RefAttributes<unknown>>;
|
|
12
13
|
export default InputPasswordComponent;
|
|
@@ -8,6 +8,7 @@ declare const InputRateComponent: React.ForwardRefExoticComponent<{
|
|
|
8
8
|
character?: React.ReactNode;
|
|
9
9
|
count?: number;
|
|
10
10
|
tooltips?: string[];
|
|
11
|
+
[key: string]: any;
|
|
11
12
|
};
|
|
12
13
|
} & import('../../../types/inputs/_input').TInputGeneric & React.RefAttributes<unknown>>;
|
|
13
14
|
export default InputRateComponent;
|
|
@@ -9,6 +9,7 @@ declare const InputStringComponent: React.ForwardRefExoticComponent<{
|
|
|
9
9
|
maxLength?: number;
|
|
10
10
|
allowClear?: boolean;
|
|
11
11
|
showCount?: boolean;
|
|
12
|
+
[key: string]: any;
|
|
12
13
|
};
|
|
13
14
|
} & import('../../../types/inputs/_input').TInputGeneric & React.RefAttributes<unknown>>;
|
|
14
15
|
export default InputStringComponent;
|
|
@@ -6,6 +6,7 @@ declare const InputSwitchComponent: React.ForwardRefExoticComponent<{
|
|
|
6
6
|
properties?: {
|
|
7
7
|
checkedChildren?: React.ReactNode;
|
|
8
8
|
unCheckedChildren?: React.ReactNode;
|
|
9
|
+
[key: string]: any;
|
|
9
10
|
};
|
|
10
11
|
} & import('../../../types/inputs/_input').TInputGeneric & {
|
|
11
12
|
data: any;
|
|
@@ -12,6 +12,7 @@ declare const TextAreaComponent: React.ForwardRefExoticComponent<{
|
|
|
12
12
|
minRows: number;
|
|
13
13
|
maxRows: number;
|
|
14
14
|
};
|
|
15
|
+
[key: string]: any;
|
|
15
16
|
};
|
|
16
17
|
} & import('../../../types/inputs/_input').TInputGeneric & React.RefAttributes<unknown>>;
|
|
17
18
|
export default TextAreaComponent;
|