Update dependencies (again) (#3442)

* Update dependencies
* Upgrade rollup
* Remove all index.ts reexport files
This commit is contained in:
DingDongSoLong4
2023-02-17 00:42:44 +02:00
committed by GitHub
parent a1851b3713
commit bd747317d4
202 changed files with 1297 additions and 1406 deletions

View File

@@ -8,8 +8,8 @@ import {
Row,
} from "react-bootstrap";
import { useIntl } from "react-intl";
import Modal from "./Modal";
import Icon from "./Icon";
import { ModalComponent } from "./Modal";
import { Icon } from "./Icon";
import { faFile, faLink } from "@fortawesome/free-solid-svg-icons";
interface IImageInput {
@@ -64,7 +64,7 @@ export const ImageInput: React.FC<IImageInput> = ({
function renderDialog() {
return (
<Modal
<ModalComponent
show={!!isShowDialog}
onHide={() => setIsShowDialog(false)}
header={intl.formatMessage({ id: "dialogs.set_image_url_title" })}
@@ -90,7 +90,7 @@ export const ImageInput: React.FC<IImageInput> = ({
</Col>
</Form.Group>
</div>
</Modal>
</ModalComponent>
);
}