Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
rashagu committed Jul 11, 2024
1 parent 3f50ffc commit cddbcf6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const propTypes: CombineProps<DateInputProps> = {
prefixCls: { type: PropTypes.string, default: cssClasses.PREFIX },
dateFnsLocale: PropTypes.any, // Foundation useful to
placeholder: PropTypes.any,
rangeInputFocus: PropTypes.string as PropType<DateInputProps['rangeInputFocus']>,
rangeInputFocus: [PropTypes.string, PropTypes.bool] as PropType<DateInputProps['rangeInputFocus']>,
rangeInputStartRef: PropTypes.object,
rangeInputEndRef: PropTypes.object,
rangeSeparator: { type: PropTypes.string, default: strings.DEFAULT_SEPARATOR_RANGE },
Expand Down
1 change: 0 additions & 1 deletion packages/semi-ui-vue/src/components/form/hoc/withField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ import { CombineProps, VueHTMLAttributes, type VueJsxNode } from '../../interfac
import { useFormUpdaterContext } from '../context/FormUpdaterContext/Consumer';
import { omit } from 'lodash';
import { useHasInProps } from '../../_base/baseComponent';
import { LooseRequired } from '@vue/shared';

const prefix = cssClasses.PREFIX;

Expand Down

0 comments on commit cddbcf6

Please sign in to comment.