Skip to content

Commit 77e835b

Browse files
committed
resolve conflict
2 parents 87a145a + 22c5a2c commit 77e835b

127 files changed

Lines changed: 1566 additions & 1210 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@ Each change is prefixed with one of these keywords::
2424
- _Fixed_: Denotes bug fixes.
2525
- _Security_: Pertains to actions taken in response to vulnerabilities.
2626

27+
## 6.5.11 - 2024-04-11
28+
29+
Fixed: `antd` Datepicker not validating minDate and maxDate on input date
30+
changes.
31+
32+
## 6.5.10 - 2024-04-11
33+
34+
Fixed: Remove unnecessary onBlur trigger on amPm change in TimePickerInput
35+
2736
## 6.5.7 - 2024-03-29
2837

2938
Fixed: Clearing all rows by directly changing `selectedRowKeys` not working when
@@ -51,9 +60,7 @@ Added: Styles for _ActionBlock_ wrapper
5160
## 6.5.0 - 2024-03-22
5261
Added: `bulkSelectAllRowsProps` for tables to allow selecting all rows for multipage tables
5362
## 6.4.0 - 2024-03-21
54-
5563
Added: minDateTime and maxDateTime prop.
56-
5764
## 6.3.10 - 2024-03-20
5865

5966
While changing the page for multi-paged table, the selected rows will not be
@@ -237,9 +244,7 @@ This PR will migrate the package from `react-linkify` to `linkify-react`
237244
Added: `Add` button in *Select*
238245
## 5.2.28 - 2023-11-08
239246
Added: *Stepper* component.
240-
241247
## 5.2.27 - 2023-11-08
242-
243248
Changed: Updated instances of `@reach/autoid` with React `useId`
244249

245250
## 5.2.26 - 2023-11-08
@@ -1019,10 +1024,8 @@ Changes documentations to sentence case from title casing.
10191024
its submit/cancel buttons will also be automatically enabled or disabled.
10201025
## 3.5.10 - 2022-07-05
10211026
- Fixed: issue with closeOnEsc prop when the Pane is controlled.
1022-
10231027
## 3.5.9 - 2022-07-05
1024-
1025-
- Fixed: Checkbox in _Table_ component cut off in lower screen resolutions.
1028+
- Fixed: Checkbox in *Table* component cut off in lower screen resolutions.
10261029

10271030
## 3.5.8 - 2022-07-01
10281031

formik.d.ts

Lines changed: 26 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,27 @@
1-
import React from "react";
2-
import { FormikProps } from "formik";
3-
import {
4-
Input as PlainInput,
5-
Radio as PlainRadio,
6-
Switch as PlainSwitch,
7-
Textarea as PlainTextarea,
8-
Checkbox as PlainCheckbox,
9-
Select as PlainSelect,
10-
MultiEmailInput as PlainMultiEmailInput,
11-
TreeSelect as PlainTreeSelect,
12-
Slider as PlainSlider,
13-
Button as PlainButton,
14-
ButtonProps,
15-
AlertProps,
16-
} from "./index";
1+
export * from "./types/formik/ActionBlock";
2+
export * from "./types/formik/BlockNavigation";
3+
export * from "./types/formik/Button";
4+
export * from "./types/formik/Checkbox";
5+
export * from "./types/formik/Form";
6+
export * from "./types/formik/Input";
7+
export * from "./types/formik/MultiEmailInput";
8+
export * from "./types/formik/Radio";
9+
export * from "./types/formik/Select";
10+
export * from "./types/formik/Slider";
11+
export * from "./types/formik/Switch";
12+
export * from "./types/formik/Textarea";
13+
export * from "./types/formik/TreeSelect";
1714

18-
export interface ActionBlockProps {
19-
className?: string;
20-
submitButtonProps?: ButtonProps;
21-
cancelButtonProps?: ButtonProps;
22-
isSubmitting?: boolean;
23-
}
24-
export interface BlockNavigationProps {
25-
isDirty?: boolean;
26-
}
27-
28-
export interface Form {
29-
className?: string;
30-
children: React.ReactNode | ((props: FormikProps<any>) => React.ReactNode);
31-
formikProps: { [key: string]: any };
32-
formProps?: { [key: string]: any };
33-
scrollToErrorField?: boolean;
34-
}
35-
36-
export const ActionBlock: React.FC<ActionBlockProps>;
37-
export const BlockNavigation: React.FC<
38-
BlockNavigationProps & Partial<AlertProps>
39-
>;
40-
41-
export const Input: typeof PlainInput;
42-
export const Radio: typeof PlainRadio;
43-
export const Switch: typeof PlainSwitch;
44-
export const Textarea: typeof PlainTextarea;
45-
export const Checkbox: typeof PlainCheckbox;
46-
export const Select: typeof PlainSelect;
47-
export const MultiEmailInput: typeof PlainMultiEmailInput;
48-
export const Button: typeof PlainButton;
49-
export const TreeSelect: typeof PlainTreeSelect;
50-
export const Slider: typeof PlainSlider;
51-
52-
export const Form: React.FC<Form>;
15+
export { default as ActionBlock } from "./types/formik/ActionBlock";
16+
export { default as BlockNavigation } from "./types/formik/BlockNavigation";
17+
export { default as Button } from "./types/formik/Button";
18+
export { default as Checkbox } from "./types/formik/Checkbox";
19+
export { default as Form } from "./types/formik/Form";
20+
export { default as Input } from "./types/formik/Input";
21+
export { default as MultiEmailInput } from "./types/formik/MultiEmailInput";
22+
export { default as Radio } from "./types/formik/Radio";
23+
export { default as Select } from "./types/formik/Select";
24+
export { default as Slider } from "./types/formik/Slider";
25+
export { default as Switch } from "./types/formik/Switch";
26+
export { default as Textarea } from "./types/formik/Textarea";
27+
export { default as TreeSelect } from "./types/formik/TreeSelect";

0 commit comments

Comments
 (0)