mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 03:29:39 +08:00
f09e9cb0c9
* refactor: Menu migrate to @rc-component/trigger * chore: remove rc-trigger * chore: bump version * chore: bump version * chore: update size limit * chore: update snapshot
13 lines
411 B
TypeScript
13 lines
411 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
import type { TriggerProps } from '@rc-component/trigger';
|
|
import * as React from 'react';
|
|
|
|
// We export context here is to avoid testing-lib inject `afterEach` in `tests/index.test.js`
|
|
// Which breaks the circle deps
|
|
export const TriggerMockContext = React.createContext<
|
|
| (Partial<TriggerProps> & {
|
|
mock?: boolean;
|
|
})
|
|
| undefined
|
|
>(undefined);
|