Updated to latest bootstrap and reactstrap

This commit is contained in:
Alejandro Celaya
2022-03-05 13:14:26 +01:00
parent 5a713fe92f
commit ce871fe2a2
7 changed files with 117 additions and 83 deletions

View File

@@ -1,6 +1,6 @@
import { FC, useRef } from 'react';
import { v4 as uuid } from 'uuid';
import { InputType } from 'reactstrap/lib/Input';
import { InputType } from 'reactstrap/types/lib/Input';
import { FormGroup } from 'reactstrap';
export interface FormGroupContainerProps {

View File

@@ -1,5 +1,4 @@
import { CardProps } from 'reactstrap/lib/Card';
import { Card, CardBody, CardHeader } from 'reactstrap';
import { Card, CardBody, CardHeader, CardProps } from 'reactstrap';
import { ReactNode } from 'react';
interface SimpleCardProps extends Omit<CardProps, 'title'> {

View File

@@ -1,6 +1,5 @@
import { FC, useRef } from 'react';
import { UncontrolledTooltip } from 'reactstrap';
import { UncontrolledTooltipProps } from 'reactstrap/lib/Tooltip';
import { UncontrolledTooltip, UncontrolledTooltipProps } from 'reactstrap';
import { BooleanControlProps } from './BooleanControl';
import ToggleSwitch from './ToggleSwitch';