-
-
Notifications
You must be signed in to change notification settings - Fork 334
refactor: migrate rc-overflow to @rc-component/overflow #953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,10 +1,13 @@ | ||||||
| import { clsx } from 'clsx'; | ||||||
| import Overflow from 'rc-overflow'; | ||||||
| import Overflow from '@rc-component/overflow'; | ||||||
| import * as React from 'react'; | ||||||
| import type { MouseEventHandler } from 'react'; | ||||||
| import type { PickerProps } from '../../SinglePicker'; | ||||||
|
|
||||||
| export interface MultipleDatesProps<DateType extends object = any> | ||||||
| extends Pick<PickerProps, 'maxTagCount'> { | ||||||
| export interface MultipleDatesProps<DateType extends object = any> extends Pick< | ||||||
| PickerProps, | ||||||
| 'maxTagCount' | ||||||
| > { | ||||||
| prefixCls: string; | ||||||
| value: DateType[]; | ||||||
| onRemove: (value: DateType) => void; | ||||||
|
|
@@ -33,7 +36,7 @@ export default function MultipleDates<DateType extends object = any>( | |||||
| const overflowCls = `${selectionCls}-overflow`; | ||||||
|
|
||||||
| // ========================= Item ========================= | ||||||
| function renderSelector(content: React.ReactNode, onClose?: React.MouseEventHandler) { | ||||||
| function renderSelector(content: React.ReactNode, onClose?: MouseEventHandler<HTMLSpanElement>) { | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While making the
Suggested change
|
||||||
| return ( | ||||||
| <span | ||||||
| className={clsx(`${selectionCls}-item`)} | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.