mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-13 18:14:09 +00:00
* build(deps): bump react-aria from 3.17.0 to 3.18.0 Bumps [react-aria](https://github.com/adobe/react-spectrum) from 3.17.0 to 3.18.0. - [Release notes](https://github.com/adobe/react-spectrum/releases) - [Commits](https://github.com/adobe/react-spectrum/compare/react-aria@3.17.0...react-aria@3.18.0) --- updated-dependencies: - dependency-name: react-aria dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * [dependabot skip] Fix yarn.lock * add react-aria type override This works around https://github.com/adobe/react-spectrum/issues/3375 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-fix <dependabot-fix@example.com> Co-authored-by: David Lechner <david@pybricks.com>
14 lines
341 B
TypeScript
14 lines
341 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2022 The Pybricks Authors
|
|
|
|
// exposes some monaco editor internal functions
|
|
|
|
import {} from 'react-aria';
|
|
|
|
declare module 'react-aria' {
|
|
export interface OverlayContainerProps {
|
|
// work around https://github.com/adobe/react-spectrum/issues/3375
|
|
className: string;
|
|
}
|
|
}
|