my-animated-components 1.4.7 → 1.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -3
- package/dist/index.js +381 -790
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -595,12 +595,12 @@ interface TextProps extends BaseProps, WithChildren, SizeProps {
|
|
|
595
595
|
}
|
|
596
596
|
declare const Text: React$1.FC<TextProps>;
|
|
597
597
|
|
|
598
|
-
|
|
598
|
+
interface ImageEditorProps {
|
|
599
599
|
imageFile: File;
|
|
600
600
|
onSave: (file: File) => void;
|
|
601
601
|
onCancel: () => void;
|
|
602
602
|
className?: string;
|
|
603
|
-
}
|
|
604
|
-
declare const Imageeditor:
|
|
603
|
+
}
|
|
604
|
+
declare const Imageeditor: React$1.FC<ImageEditorProps>;
|
|
605
605
|
|
|
606
606
|
export { Accordion, Alert, Avatar, Badge, Breadcrumb, Button, Card, CardBody, CardFooter, CardHeader, Checkbox, Container, Dropdown, DropdownItem, FileUpload, Flex, Grid, Heading, IconButton, Imageeditor, Input, List, ListItem, Modal, ModalBody, ModalFooter, ModalHeader, NavItem, Navbar, Offcanvas, OffcanvasBody, OffcanvasHeader, Pagination, ProgressBar, Radio, RangeSlider, Select, Skeleton, Slider, Stepper, Switch, Table, TableBody, TableCell, TableHead, TableRow, Tabs, Text, Textarea, Tooltip, motionVariants };
|