@webiny/ui 0.0.0-mt-1
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/Accordion/Accordion.d.ts +19 -0
- package/Accordion/Accordion.js +30 -0
- package/Accordion/Accordion.stories.d.ts +1 -0
- package/Accordion/Accordion.stories.js +43 -0
- package/Accordion/AccordionItem.d.ts +33 -0
- package/Accordion/AccordionItem.js +124 -0
- package/Accordion/README.md +11 -0
- package/Accordion/icons/round-keyboard_arrow_down-24px.svg +16 -0
- package/Accordion/icons/round-keyboard_arrow_up-24px.svg +16 -0
- package/Accordion/icons/round-settings-24px.svg +21 -0
- package/Accordion/index.d.ts +2 -0
- package/Accordion/index.js +2 -0
- package/Alert/Alert.d.ts +14 -0
- package/Alert/Alert.js +52 -0
- package/Alert/Alert.stories.d.ts +1 -0
- package/Alert/Alert.stories.js +29 -0
- package/Alert/README.md +11 -0
- package/Alert/index.d.ts +1 -0
- package/Alert/index.js +1 -0
- package/AutoComplete/AutoComplete.d.ts +37 -0
- package/AutoComplete/AutoComplete.js +299 -0
- package/AutoComplete/AutoComplete.stories.d.ts +1 -0
- package/AutoComplete/AutoComplete.stories.js +76 -0
- package/AutoComplete/AutoCompleteReadme.md +11 -0
- package/AutoComplete/MultiAutoComplete.d.ts +80 -0
- package/AutoComplete/MultiAutoComplete.js +569 -0
- package/AutoComplete/MultiAutoComplete.stories.d.ts +1 -0
- package/AutoComplete/MultiAutoComplete.stories.js +132 -0
- package/AutoComplete/MultiAutoCompleteReadme.md +11 -0
- package/AutoComplete/icons/baseline-close-24px.svg +4 -0
- package/AutoComplete/icons/delete.svg +12 -0
- package/AutoComplete/icons/navigate_before-24px.svg +1 -0
- package/AutoComplete/icons/navigate_next-24px.svg +1 -0
- package/AutoComplete/icons/reorder_black_24dp.svg +1 -0
- package/AutoComplete/icons/skip_next-24px.svg +1 -0
- package/AutoComplete/icons/skip_previous-24px.svg +1 -0
- package/AutoComplete/icons/spinner.svg +3 -0
- package/AutoComplete/index.d.ts +2 -0
- package/AutoComplete/index.js +2 -0
- package/AutoComplete/styles.d.ts +2 -0
- package/AutoComplete/styles.js +37 -0
- package/AutoComplete/types.d.ts +62 -0
- package/AutoComplete/types.js +1 -0
- package/AutoComplete/utils.d.ts +9 -0
- package/AutoComplete/utils.js +19 -0
- package/Avatar/Avatar.d.ts +49 -0
- package/Avatar/Avatar.js +80 -0
- package/Avatar/Avatar.stories.d.ts +1 -0
- package/Avatar/Avatar.stories.js +27 -0
- package/Avatar/README.md +11 -0
- package/Avatar/index.d.ts +1 -0
- package/Avatar/index.js +1 -0
- package/Button/Button.d.ts +58 -0
- package/Button/Button.js +139 -0
- package/Button/Button.stories.d.ts +1 -0
- package/Button/Button.stories.js +53 -0
- package/Button/CopyButton/CopyButton.d.ts +14 -0
- package/Button/CopyButton/CopyButton.js +32 -0
- package/Button/CopyButton/CopyButton.stories.d.ts +1 -0
- package/Button/CopyButton/CopyButton.stories.js +18 -0
- package/Button/CopyButton/README.md +11 -0
- package/Button/IconButton/IconButton.d.ts +39 -0
- package/Button/IconButton/IconButton.js +31 -0
- package/Button/IconButton/IconButton.stories.d.ts +1 -0
- package/Button/IconButton/IconButton.stories.js +38 -0
- package/Button/IconButton/README.md +15 -0
- package/Button/README.md +28 -0
- package/Button/assets/baseline-cloud_done-24px.svg +3 -0
- package/Button/assets/file_copy-24px.svg +1 -0
- package/Button/assets/round-more_vert-24px.svg +12 -0
- package/Button/index.d.ts +3 -0
- package/Button/index.js +3 -0
- package/Carousel/Carousel.d.ts +19 -0
- package/Carousel/Carousel.js +46 -0
- package/Carousel/Carouser.stories.d.ts +1 -0
- package/Carousel/Carouser.stories.js +29 -0
- package/Carousel/README.md +15 -0
- package/Carousel/index.d.ts +1 -0
- package/Carousel/index.js +1 -0
- package/Checkbox/Checkbox.d.ts +25 -0
- package/Checkbox/Checkbox.js +76 -0
- package/Checkbox/Checkbox.stories.d.ts +1 -0
- package/Checkbox/Checkbox.stories.js +28 -0
- package/Checkbox/Checkbox.styles.d.ts +6 -0
- package/Checkbox/Checkbox.styles.js +15 -0
- package/Checkbox/CheckboxGroup.d.ts +15 -0
- package/Checkbox/CheckboxGroup.js +63 -0
- package/Checkbox/CheckboxGroup.stories.d.ts +1 -0
- package/Checkbox/CheckboxGroup.stories.js +55 -0
- package/Checkbox/README_Checkbox.md +15 -0
- package/Checkbox/README_CheckboxGroup.md +19 -0
- package/Checkbox/index.d.ts +2 -0
- package/Checkbox/index.js +2 -0
- package/Chips/Chip.d.ts +9 -0
- package/Chips/Chip.js +10 -0
- package/Chips/ChipIcon.d.ts +4 -0
- package/Chips/ChipIcon.js +8 -0
- package/Chips/Chips.d.ts +21 -0
- package/Chips/Chips.js +17 -0
- package/Chips/Chips.stories.d.ts +1 -0
- package/Chips/Chips.stories.js +25 -0
- package/Chips/README.md +15 -0
- package/Chips/icons/baseline-done-24px.svg +4 -0
- package/Chips/icons/baseline-email-24px.svg +3 -0
- package/Chips/index.d.ts +3 -0
- package/Chips/index.js +3 -0
- package/Chips/styles.d.ts +2 -0
- package/Chips/styles.js +17 -0
- package/CodeEditor/CodeEditor.d.ts +22 -0
- package/CodeEditor/CodeEditor.js +88 -0
- package/CodeEditor/CodeEditor.stories.d.ts +2 -0
- package/CodeEditor/CodeEditor.stories.js +32 -0
- package/CodeEditor/README.md +21 -0
- package/CodeEditor/index.d.ts +1 -0
- package/CodeEditor/index.js +1 -0
- package/ColorPicker/ColorPicker.d.ts +25 -0
- package/ColorPicker/ColorPicker.js +140 -0
- package/ColorPicker/ColorPicker.stories.d.ts +1 -0
- package/ColorPicker/ColorPicker.stories.js +30 -0
- package/ColorPicker/README.md +11 -0
- package/ColorPicker/index.d.ts +1 -0
- package/ColorPicker/index.js +1 -0
- package/ConfirmationDialog/ConfirmationDialog.d.ts +45 -0
- package/ConfirmationDialog/ConfirmationDialog.js +164 -0
- package/ConfirmationDialog/ConfirmationDialog.stories.d.ts +1 -0
- package/ConfirmationDialog/ConfirmationDialog.stories.js +30 -0
- package/ConfirmationDialog/README.md +11 -0
- package/ConfirmationDialog/index.d.ts +2 -0
- package/ConfirmationDialog/index.js +2 -0
- package/ConfirmationDialog/withConfirmation.d.ts +11 -0
- package/ConfirmationDialog/withConfirmation.js +15 -0
- package/Dialog/Dialog.d.ts +88 -0
- package/Dialog/Dialog.js +101 -0
- package/Dialog/Dialog.stories.d.ts +1 -0
- package/Dialog/Dialog.stories.js +30 -0
- package/Dialog/README.md +23 -0
- package/Dialog/index.d.ts +1 -0
- package/Dialog/index.js +1 -0
- package/Drawer/Drawer.d.ts +47 -0
- package/Drawer/Drawer.js +25 -0
- package/Drawer/Drawer.stories.d.ts +1 -0
- package/Drawer/Drawer.stories.js +23 -0
- package/Drawer/README.md +15 -0
- package/Drawer/index.d.ts +1 -0
- package/Drawer/index.js +1 -0
- package/DynamicFieldset/Fieldset.d.ts +41 -0
- package/DynamicFieldset/Fieldset.js +143 -0
- package/DynamicFieldset/index.d.ts +1 -0
- package/DynamicFieldset/index.js +1 -0
- package/Elevation/Elevation.d.ts +13 -0
- package/Elevation/Elevation.js +13 -0
- package/Elevation/Elevation.stories.d.ts +1 -0
- package/Elevation/Elevation.stories.js +29 -0
- package/Elevation/README.md +15 -0
- package/Elevation/index.d.ts +1 -0
- package/Elevation/index.js +1 -0
- package/FormElementMessage/FormElementMessage.d.ts +8 -0
- package/FormElementMessage/FormElementMessage.js +13 -0
- package/FormElementMessage/index.d.ts +1 -0
- package/FormElementMessage/index.js +1 -0
- package/FullName/FullName.d.ts +8 -0
- package/FullName/FullName.js +21 -0
- package/FullName/README.md +11 -0
- package/FullName/index.d.ts +1 -0
- package/FullName/index.js +1 -0
- package/Grid/Grid.d.ts +33 -0
- package/Grid/Grid.js +20 -0
- package/Grid/Grid.stories.d.ts +1 -0
- package/Grid/Grid.stories.js +31 -0
- package/Grid/README.md +15 -0
- package/Grid/index.d.ts +1 -0
- package/Grid/index.js +1 -0
- package/Helpers/ClassNames.d.ts +10 -0
- package/Helpers/ClassNames.js +30 -0
- package/Helpers/index.d.ts +2 -0
- package/Helpers/index.js +2 -0
- package/Icon/Icon.d.ts +24 -0
- package/Icon/Icon.js +26 -0
- package/Icon/Icon.stories.d.ts +1 -0
- package/Icon/Icon.stories.js +27 -0
- package/Icon/README.md +11 -0
- package/Icon/index.d.ts +1 -0
- package/Icon/index.js +1 -0
- package/Icon/svg/baseline-autorenew-24px.svg +4 -0
- package/Icon/svg/baseline-cloud_done-24px.svg +4 -0
- package/Icon/svg/baseline-delete-24px.svg +4 -0
- package/Icon/svg/baseline-done-24px.svg +4 -0
- package/Image/Image.d.ts +6 -0
- package/Image/Image.js +18 -0
- package/Image/Image.stories.d.ts +1 -0
- package/Image/Image.stories.js +21 -0
- package/Image/README.md +12 -0
- package/Image/index.d.ts +1 -0
- package/Image/index.js +1 -0
- package/ImageEditor/ImageEditor.d.ts +47 -0
- package/ImageEditor/ImageEditor.js +335 -0
- package/ImageEditor/index.d.ts +1 -0
- package/ImageEditor/index.js +1 -0
- package/ImageEditor/toolbar/crop.d.ts +4 -0
- package/ImageEditor/toolbar/crop.js +69 -0
- package/ImageEditor/toolbar/filter.d.ts +3 -0
- package/ImageEditor/toolbar/filter.js +209 -0
- package/ImageEditor/toolbar/flip.d.ts +4 -0
- package/ImageEditor/toolbar/flip.js +96 -0
- package/ImageEditor/toolbar/icons/crop.svg +4 -0
- package/ImageEditor/toolbar/icons/draw.svg +4 -0
- package/ImageEditor/toolbar/icons/filter.svg +4 -0
- package/ImageEditor/toolbar/icons/flip.svg +4 -0
- package/ImageEditor/toolbar/icons/index.d.ts +8 -0
- package/ImageEditor/toolbar/icons/index.js +8 -0
- package/ImageEditor/toolbar/icons/redo.svg +4 -0
- package/ImageEditor/toolbar/icons/rotateLeft.svg +4 -0
- package/ImageEditor/toolbar/icons/rotateRight.svg +4 -0
- package/ImageEditor/toolbar/icons/undo.svg +4 -0
- package/ImageEditor/toolbar/index.d.ts +4 -0
- package/ImageEditor/toolbar/index.js +4 -0
- package/ImageEditor/toolbar/rotate.d.ts +4 -0
- package/ImageEditor/toolbar/rotate.js +145 -0
- package/ImageEditor/toolbar/types.d.ts +22 -0
- package/ImageEditor/toolbar/types.js +1 -0
- package/ImageUpload/Image.d.ts +26 -0
- package/ImageUpload/Image.js +119 -0
- package/ImageUpload/ImageEditorDialog.d.ts +19 -0
- package/ImageUpload/ImageEditorDialog.js +94 -0
- package/ImageUpload/MultiImageUpload.d.ts +61 -0
- package/ImageUpload/MultiImageUpload.js +383 -0
- package/ImageUpload/MultiImageUpload.stories.d.ts +1 -0
- package/ImageUpload/MultiImageUpload.stories.js +66 -0
- package/ImageUpload/README.md +11 -0
- package/ImageUpload/SingleImageUpload.d.ts +64 -0
- package/ImageUpload/SingleImageUpload.js +224 -0
- package/ImageUpload/SingleImageUpload.stories.d.ts +1 -0
- package/ImageUpload/SingleImageUpload.stories.js +43 -0
- package/ImageUpload/icons/round-add_photo_alternate-24px.svg +23 -0
- package/ImageUpload/icons/round-close-24px.svg +13 -0
- package/ImageUpload/icons/round-edit-24px.svg +4 -0
- package/ImageUpload/image.jpeg +0 -0
- package/ImageUpload/index.d.ts +4 -0
- package/ImageUpload/index.js +4 -0
- package/ImageUpload/styled.d.ts +15 -0
- package/ImageUpload/styled.js +122 -0
- package/Input/Input.d.ts +34 -0
- package/Input/Input.js +152 -0
- package/Input/Input.stories.d.ts +1 -0
- package/Input/Input.stories.js +104 -0
- package/Input/README.md +16 -0
- package/Input/__tests__/Input.test.d.ts +1 -0
- package/Input/__tests__/Input.test.js +113 -0
- package/Input/index.d.ts +1 -0
- package/Input/index.js +1 -0
- package/Input/svg/baseline-autorenew-24px.svg +4 -0
- package/Input/svg/baseline-cloud_done-24px.svg +4 -0
- package/Input/svg/baseline-delete-24px.svg +4 -0
- package/Input/svg/baseline-done-24px.svg +4 -0
- package/LICENSE +21 -0
- package/List/CollapsibleList/CollapsibleList.stories.d.ts +1 -0
- package/List/CollapsibleList/CollapsibleList.stories.js +26 -0
- package/List/CollapsibleList/README.md +11 -0
- package/List/CollapsibleList/index.css +31 -0
- package/List/CollapsibleList/index.d.ts +8 -0
- package/List/CollapsibleList/index.js +7 -0
- package/List/DataList/DataList.d.ts +61 -0
- package/List/DataList/DataList.js +312 -0
- package/List/DataList/DataList.stories.d.ts +1 -0
- package/List/DataList/DataList.stories.js +107 -0
- package/List/DataList/DataListModalOverlay/DataListModalOverlay.d.ts +18 -0
- package/List/DataList/DataListModalOverlay/DataListModalOverlay.js +87 -0
- package/List/DataList/DataListModalOverlay/DataListModalOverlayAction.d.ts +6 -0
- package/List/DataList/DataListModalOverlay/DataListModalOverlayAction.js +21 -0
- package/List/DataList/DataListModalOverlay/DataListModalOverlayContext.d.ts +6 -0
- package/List/DataList/DataListModalOverlay/DataListModalOverlayContext.js +18 -0
- package/List/DataList/DataListModalOverlay/index.d.ts +3 -0
- package/List/DataList/DataListModalOverlay/index.js +3 -0
- package/List/DataList/Loader.d.ts +3 -0
- package/List/DataList/Loader.js +57 -0
- package/List/DataList/NoData.d.ts +3 -0
- package/List/DataList/NoData.js +19 -0
- package/List/DataList/README.md +17 -0
- package/List/DataList/icons/baseline-autorenew-24px.svg +4 -0
- package/List/DataList/icons/baseline-delete-24px.svg +4 -0
- package/List/DataList/icons/baseline-edit-24px.svg +4 -0
- package/List/DataList/icons/baseline-navigate_before-24px.svg +4 -0
- package/List/DataList/icons/baseline-navigate_next-24px.svg +4 -0
- package/List/DataList/icons/baseline-sort-24px.svg +4 -0
- package/List/DataList/icons/baseline-tune-24px.svg +4 -0
- package/List/DataList/icons/filter_alt-24px.svg +1 -0
- package/List/DataList/icons/index.d.ts +15 -0
- package/List/DataList/icons/index.js +55 -0
- package/List/DataList/icons/round-more_vert-24px.svg +12 -0
- package/List/DataList/index.d.ts +3 -0
- package/List/DataList/index.js +3 -0
- package/List/DataList/types.d.ts +28 -0
- package/List/DataList/types.js +1 -0
- package/List/List.d.ts +131 -0
- package/List/List.js +167 -0
- package/List/List.stories.d.ts +1 -0
- package/List/List.stories.js +47 -0
- package/List/README.md +22 -0
- package/List/icons/baseline-autorenew-24px.svg +4 -0
- package/List/icons/baseline-cloud_done-24px.svg +4 -0
- package/List/icons/baseline-delete-24px.svg +4 -0
- package/List/icons/baseline-done-24px.svg +4 -0
- package/List/icons/baseline-email-24px.svg +4 -0
- package/List/icons/index.d.ts +3 -0
- package/List/icons/index.js +3 -0
- package/List/index.d.ts +3 -0
- package/List/index.js +3 -0
- package/Menu/Menu.d.ts +43 -0
- package/Menu/Menu.js +128 -0
- package/Menu/Menu.stories.d.ts +1 -0
- package/Menu/Menu.stories.js +29 -0
- package/Menu/README.md +15 -0
- package/Menu/index.d.ts +1 -0
- package/Menu/index.js +1 -0
- package/Mosaic/Mosaic.d.ts +19 -0
- package/Mosaic/Mosaic.js +19 -0
- package/Mosaic/Mosaic.stories.d.ts +1 -0
- package/Mosaic/Mosaic.stories.js +75 -0
- package/Mosaic/README.md +15 -0
- package/Mosaic/index.d.ts +1 -0
- package/Mosaic/index.js +1 -0
- package/Progress/CircularProgress.d.ts +19 -0
- package/Progress/CircularProgress.js +63 -0
- package/Progress/README.md +19 -0
- package/Progress/index.d.ts +1 -0
- package/Progress/index.js +1 -0
- package/Progress/svg/circularProgress.svg +3 -0
- package/README.md +28 -0
- package/Radio/README.md +17 -0
- package/Radio/Radio.d.ts +21 -0
- package/Radio/Radio.js +68 -0
- package/Radio/Radio.styles.d.ts +6 -0
- package/Radio/Radio.styles.js +15 -0
- package/Radio/RadioGroup.d.ts +20 -0
- package/Radio/RadioGroup.js +56 -0
- package/Radio/RadioGroup.stories.d.ts +1 -0
- package/Radio/RadioGroup.stories.js +55 -0
- package/Radio/index.d.ts +2 -0
- package/Radio/index.js +2 -0
- package/RichTextEditor/README.md +10 -0
- package/RichTextEditor/RichTextEditor.d.ts +27 -0
- package/RichTextEditor/RichTextEditor.js +136 -0
- package/RichTextEditor/RichTextEditor.stories.d.ts +1 -0
- package/RichTextEditor/RichTextEditor.stories.js +19 -0
- package/RichTextEditor/createPropsFromConfig.d.ts +5 -0
- package/RichTextEditor/createPropsFromConfig.js +18 -0
- package/RichTextEditor/index.d.ts +2 -0
- package/RichTextEditor/index.js +2 -0
- package/Ripple/README.md +15 -0
- package/Ripple/Ripple.d.ts +11 -0
- package/Ripple/Ripple.js +14 -0
- package/Ripple/Ripple.stories.d.ts +1 -0
- package/Ripple/Ripple.stories.js +71 -0
- package/Ripple/index.d.ts +1 -0
- package/Ripple/index.js +1 -0
- package/Ripple/svg/baseline-autorenew-24px.svg +4 -0
- package/Ripple/svg/baseline-cloud_done-24px.svg +4 -0
- package/Ripple/svg/baseline-delete-24px.svg +4 -0
- package/Ripple/svg/baseline-done-24px.svg +4 -0
- package/Scrollbar/README.md +15 -0
- package/Scrollbar/Scrollbar.d.ts +11 -0
- package/Scrollbar/Scrollbar.js +11 -0
- package/Scrollbar/Scrollbar.stories.d.ts +1 -0
- package/Scrollbar/Scrollbar.stories.js +20 -0
- package/Scrollbar/index.d.ts +1 -0
- package/Scrollbar/index.js +1 -0
- package/Section/README.md +11 -0
- package/Section/Section.stories.d.ts +1 -0
- package/Section/Section.stories.js +25 -0
- package/Section/index.d.ts +7 -0
- package/Section/index.js +48 -0
- package/Select/README.md +15 -0
- package/Select/Select.d.ts +22 -0
- package/Select/Select.js +60 -0
- package/Select/Select.stories.d.ts +1 -0
- package/Select/Select.stories.js +46 -0
- package/Select/index.d.ts +1 -0
- package/Select/index.js +1 -0
- package/Slider/README.md +15 -0
- package/Slider/Slider.d.ts +35 -0
- package/Slider/Slider.js +87 -0
- package/Slider/Slider.stories.d.ts +1 -0
- package/Slider/Slider.stories.js +44 -0
- package/Slider/index.d.ts +1 -0
- package/Slider/index.js +1 -0
- package/Snackbar/README.md +15 -0
- package/Snackbar/Snackbar.d.ts +15 -0
- package/Snackbar/Snackbar.js +54 -0
- package/Snackbar/Snackbar.stories.d.ts +1 -0
- package/Snackbar/Snackbar.stories.js +77 -0
- package/Snackbar/index.d.ts +1 -0
- package/Snackbar/index.js +1 -0
- package/Switch/README.md +15 -0
- package/Switch/Switch.d.ts +21 -0
- package/Switch/Switch.js +67 -0
- package/Switch/Switch.stories.d.ts +1 -0
- package/Switch/Switch.stories.js +32 -0
- package/Switch/index.d.ts +1 -0
- package/Switch/index.js +1 -0
- package/Tabs/README.md +19 -0
- package/Tabs/Tab.d.ts +14 -0
- package/Tabs/Tab.js +10 -0
- package/Tabs/Tabs.d.ts +41 -0
- package/Tabs/Tabs.js +145 -0
- package/Tabs/Tabs.stories.d.ts +1 -0
- package/Tabs/Tabs.stories.js +41 -0
- package/Tabs/index.d.ts +2 -0
- package/Tabs/index.js +2 -0
- package/Tabs/svg/baseline-autorenew-24px.svg +4 -0
- package/Tabs/svg/baseline-cloud_done-24px.svg +4 -0
- package/Tabs/svg/baseline-delete-24px.svg +4 -0
- package/Tabs/svg/baseline-done-24px.svg +4 -0
- package/Tags/README.md +15 -0
- package/Tags/Tags.d.ts +58 -0
- package/Tags/Tags.js +148 -0
- package/Tags/Tags.stories.d.ts +1 -0
- package/Tags/Tags.stories.js +32 -0
- package/Tags/icons/baseline-close-24px.svg +4 -0
- package/Tags/index.d.ts +1 -0
- package/Tags/index.js +1 -0
- package/Tooltip/README.md +15 -0
- package/Tooltip/Tooltip.d.ts +24 -0
- package/Tooltip/Tooltip.js +60 -0
- package/Tooltip/Tooltip.stories.d.ts +1 -0
- package/Tooltip/Tooltip.stories.js +17 -0
- package/Tooltip/index.d.ts +1 -0
- package/Tooltip/index.js +1 -0
- package/Tooltip/style.scss +97 -0
- package/TopAppBar/README.md +20 -0
- package/TopAppBar/TopAppBar.d.ts +18 -0
- package/TopAppBar/TopAppBar.js +13 -0
- package/TopAppBar/TopAppBar.stories.d.ts +1 -0
- package/TopAppBar/TopAppBar.stories.js +56 -0
- package/TopAppBar/TopAppBarActionItem.d.ts +5 -0
- package/TopAppBar/TopAppBarActionItem.js +8 -0
- package/TopAppBar/TopAppBarNavigationIcon.d.ts +5 -0
- package/TopAppBar/TopAppBarNavigationIcon.js +8 -0
- package/TopAppBar/TopAppBarPrimary.d.ts +5 -0
- package/TopAppBar/TopAppBarPrimary.js +15 -0
- package/TopAppBar/TopAppBarSecondary.d.ts +5 -0
- package/TopAppBar/TopAppBarSecondary.js +17 -0
- package/TopAppBar/TopAppBarSection.d.ts +18 -0
- package/TopAppBar/TopAppBarSection.js +13 -0
- package/TopAppBar/TopAppBarTitle.d.ts +10 -0
- package/TopAppBar/TopAppBarTitle.js +13 -0
- package/TopAppBar/icons/baseline-autorenew-24px.svg +4 -0
- package/TopAppBar/icons/baseline-cloud_done-24px.svg +4 -0
- package/TopAppBar/icons/baseline-delete-24px.svg +4 -0
- package/TopAppBar/icons/baseline-email-24px.svg +4 -0
- package/TopAppBar/icons/baseline-menu-24px.svg +4 -0
- package/TopAppBar/index.d.ts +7 -0
- package/TopAppBar/index.js +7 -0
- package/TopProgressBar/README.md +11 -0
- package/TopProgressBar/TopProgressBar.d.ts +15 -0
- package/TopProgressBar/TopProgressBar.js +9 -0
- package/TopProgressBar/TopProgressBar.stories.d.ts +1 -0
- package/TopProgressBar/TopProgressBar.stories.js +22 -0
- package/TopProgressBar/hoc/index.d.ts +1 -0
- package/TopProgressBar/hoc/index.js +1 -0
- package/TopProgressBar/hoc/withTopProgressBar.d.ts +3 -0
- package/TopProgressBar/hoc/withTopProgressBar.js +23 -0
- package/TopProgressBar/index.d.ts +1 -0
- package/TopProgressBar/index.js +1 -0
- package/TopProgressBar/style.scss +21 -0
- package/Typography/README.md +15 -0
- package/Typography/Typography.d.ts +13 -0
- package/Typography/Typography.js +11 -0
- package/Typography/Typography.stories.d.ts +1 -0
- package/Typography/Typography.stories.js +67 -0
- package/Typography/index.d.ts +1 -0
- package/Typography/index.js +1 -0
- package/package.json +142 -0
- package/rmwc/textfield/code/index.d.ts +135 -0
- package/rmwc/textfield/code/index.js +571 -0
- package/rmwc/textfield/next/index.d.ts +135 -0
- package/rmwc/textfield/next/index.js +560 -0
- package/rmwc/textfield/package.json +45 -0
- package/styles.scss +44 -0
- package/types.d.ts +12 -0
- package/types.js +1 -0
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/objectSpread2";
|
|
2
|
+
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
|
3
|
+
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
4
|
+
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
5
|
+
import _createClass from "@babel/runtime/helpers/createClass";
|
|
6
|
+
import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized";
|
|
7
|
+
import _inherits from "@babel/runtime/helpers/inherits";
|
|
8
|
+
import _createSuper from "@babel/runtime/helpers/createSuper";
|
|
9
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
10
|
+
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
11
|
+
import * as React from "react";
|
|
12
|
+
import BrowseFiles from "react-butterfiles";
|
|
13
|
+
import { FormElementMessage } from "../FormElementMessage";
|
|
14
|
+
import styled from "@emotion/styled";
|
|
15
|
+
import classNames from "classnames";
|
|
16
|
+
import Image from "./Image";
|
|
17
|
+
import ImageEditorDialog from "./ImageEditorDialog";
|
|
18
|
+
var ImageUploadWrapper = /*#__PURE__*/styled("div", {
|
|
19
|
+
target: "e96x95k0",
|
|
20
|
+
label: "ImageUploadWrapper"
|
|
21
|
+
})({
|
|
22
|
+
position: "relative",
|
|
23
|
+
".disabled": {
|
|
24
|
+
opacity: 0.75,
|
|
25
|
+
pointerEvents: "none"
|
|
26
|
+
},
|
|
27
|
+
".mdc-floating-label--float-above": {
|
|
28
|
+
transform: "scale(0.75)",
|
|
29
|
+
top: 10,
|
|
30
|
+
left: 10,
|
|
31
|
+
color: "var(--mdc-theme-text-secondary-on-background)"
|
|
32
|
+
},
|
|
33
|
+
".mdc-text-field-helper-text": {
|
|
34
|
+
color: "var(--mdc-theme-text-secondary-on-background)"
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
// Do not apply editing for following image types.
|
|
38
|
+
var noImageEditingTypes = ["image/svg+xml", "image/gif"];
|
|
39
|
+
export var SingleImageUpload = /*#__PURE__*/function (_React$Component) {
|
|
40
|
+
_inherits(SingleImageUpload, _React$Component);
|
|
41
|
+
|
|
42
|
+
var _super = _createSuper(SingleImageUpload);
|
|
43
|
+
|
|
44
|
+
function SingleImageUpload() {
|
|
45
|
+
var _this;
|
|
46
|
+
|
|
47
|
+
_classCallCheck(this, SingleImageUpload);
|
|
48
|
+
|
|
49
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
50
|
+
args[_key] = arguments[_key];
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
_this = _super.call.apply(_super, [this].concat(args));
|
|
54
|
+
|
|
55
|
+
_defineProperty(_assertThisInitialized(_this), "state", {
|
|
56
|
+
loading: false,
|
|
57
|
+
error: null,
|
|
58
|
+
imageEditor: {
|
|
59
|
+
open: false,
|
|
60
|
+
image: null
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
_defineProperty(_assertThisInitialized(_this), "handleFiles", function (images) {
|
|
65
|
+
var _this$props = _this.props,
|
|
66
|
+
onChange = _this$props.onChange,
|
|
67
|
+
imageEditor = _this$props.imageEditor;
|
|
68
|
+
var image = {
|
|
69
|
+
name: images[0].name,
|
|
70
|
+
type: images[0].type,
|
|
71
|
+
size: images[0].size,
|
|
72
|
+
src: images[0].src.base64
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
_this.setState({
|
|
76
|
+
error: null
|
|
77
|
+
}, function () {
|
|
78
|
+
if (imageEditor && !noImageEditingTypes.includes(image.type)) {
|
|
79
|
+
_this.setState({
|
|
80
|
+
imageEditor: {
|
|
81
|
+
image: image,
|
|
82
|
+
open: true
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
} else {
|
|
86
|
+
onChange && onChange(image);
|
|
87
|
+
}
|
|
88
|
+
});
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
_defineProperty(_assertThisInitialized(_this), "handleErrors", function (errors) {
|
|
92
|
+
var _errors = _slicedToArray(errors, 1),
|
|
93
|
+
error = _errors[0];
|
|
94
|
+
|
|
95
|
+
_this.setState({
|
|
96
|
+
error: error
|
|
97
|
+
});
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
return _this;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
_createClass(SingleImageUpload, [{
|
|
104
|
+
key: "render",
|
|
105
|
+
value: function render() {
|
|
106
|
+
var _this2 = this;
|
|
107
|
+
|
|
108
|
+
var _this$props2 = this.props,
|
|
109
|
+
className = _this$props2.className,
|
|
110
|
+
value = _this$props2.value,
|
|
111
|
+
validation = _this$props2.validation,
|
|
112
|
+
label = _this$props2.label,
|
|
113
|
+
description = _this$props2.description,
|
|
114
|
+
accept = _this$props2.accept,
|
|
115
|
+
maxSize = _this$props2.maxSize,
|
|
116
|
+
onChange = _this$props2.onChange,
|
|
117
|
+
imageEditor = _this$props2.imageEditor,
|
|
118
|
+
showRemoveImageButton = _this$props2.showRemoveImageButton,
|
|
119
|
+
renderImagePreview = _this$props2.renderImagePreview;
|
|
120
|
+
var imageEditorImageSrc = "";
|
|
121
|
+
|
|
122
|
+
if (this.state.imageEditor.image) {
|
|
123
|
+
imageEditorImageSrc = this.state.imageEditor.image.src;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
var src = value ? value.src : null;
|
|
127
|
+
return /*#__PURE__*/React.createElement(ImageUploadWrapper, {
|
|
128
|
+
className: classNames(className)
|
|
129
|
+
}, label && !src && /*#__PURE__*/React.createElement("div", {
|
|
130
|
+
className: "mdc-floating-label mdc-floating-label--float-above"
|
|
131
|
+
}, label), /*#__PURE__*/React.createElement(ImageEditorDialog, {
|
|
132
|
+
options: imageEditor,
|
|
133
|
+
open: this.state.imageEditor.open,
|
|
134
|
+
src: imageEditorImageSrc,
|
|
135
|
+
onClose: function onClose() {
|
|
136
|
+
_this2.setState(function (state) {
|
|
137
|
+
state.imageEditor.open = false;
|
|
138
|
+
return state;
|
|
139
|
+
});
|
|
140
|
+
},
|
|
141
|
+
onAccept: function onAccept(src) {
|
|
142
|
+
// We wrapped everything into setTimeout - prevents dialog freeze when larger image is selected.
|
|
143
|
+
setTimeout(function () {
|
|
144
|
+
_this2.setState({
|
|
145
|
+
loading: true
|
|
146
|
+
}, /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
|
147
|
+
return _regeneratorRuntime.wrap(function _callee$(_context) {
|
|
148
|
+
while (1) {
|
|
149
|
+
switch (_context.prev = _context.next) {
|
|
150
|
+
case 0:
|
|
151
|
+
_context.t0 = onChange;
|
|
152
|
+
|
|
153
|
+
if (!_context.t0) {
|
|
154
|
+
_context.next = 4;
|
|
155
|
+
break;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
_context.next = 4;
|
|
159
|
+
return onChange(_objectSpread(_objectSpread({}, _this2.state.imageEditor.image), {}, {
|
|
160
|
+
src: src
|
|
161
|
+
}));
|
|
162
|
+
|
|
163
|
+
case 4:
|
|
164
|
+
_this2.setState({
|
|
165
|
+
loading: false,
|
|
166
|
+
imageEditor: {
|
|
167
|
+
image: null,
|
|
168
|
+
open: false
|
|
169
|
+
}
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
case 5:
|
|
173
|
+
case "end":
|
|
174
|
+
return _context.stop();
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}, _callee);
|
|
178
|
+
})));
|
|
179
|
+
});
|
|
180
|
+
}
|
|
181
|
+
}), /*#__PURE__*/React.createElement(BrowseFiles, {
|
|
182
|
+
accept: accept,
|
|
183
|
+
maxSize: maxSize,
|
|
184
|
+
convertToBase64: true,
|
|
185
|
+
onSuccess: this.handleFiles,
|
|
186
|
+
onError: this.handleErrors
|
|
187
|
+
}, function (_ref2) {
|
|
188
|
+
var browseFiles = _ref2.browseFiles,
|
|
189
|
+
getDropZoneProps = _ref2.getDropZoneProps;
|
|
190
|
+
return /*#__PURE__*/React.createElement("div", getDropZoneProps(), /*#__PURE__*/React.createElement(Image, {
|
|
191
|
+
renderImagePreview: renderImagePreview,
|
|
192
|
+
loading: _this2.state.loading,
|
|
193
|
+
value: value,
|
|
194
|
+
removeImage: showRemoveImageButton ? onChange : null,
|
|
195
|
+
uploadImage: browseFiles,
|
|
196
|
+
editImage: browseFiles
|
|
197
|
+
}));
|
|
198
|
+
}), validation.isValid === false && /*#__PURE__*/React.createElement(FormElementMessage, {
|
|
199
|
+
error: true
|
|
200
|
+
}, validation.message), validation.isValid !== false && description && /*#__PURE__*/React.createElement(FormElementMessage, null, description), this.state.error && /*#__PURE__*/React.createElement(FormElementMessage, {
|
|
201
|
+
error: true
|
|
202
|
+
}, this.props.errorMessages[this.state.error.type] || this.props.errorMessages.default));
|
|
203
|
+
}
|
|
204
|
+
}]);
|
|
205
|
+
|
|
206
|
+
return SingleImageUpload;
|
|
207
|
+
}(React.Component);
|
|
208
|
+
|
|
209
|
+
_defineProperty(SingleImageUpload, "defaultProps", {
|
|
210
|
+
validation: {
|
|
211
|
+
isValid: null
|
|
212
|
+
},
|
|
213
|
+
maxSize: "10mb",
|
|
214
|
+
imageEditor: {},
|
|
215
|
+
accept: ["image/jpeg", "image/png", "image/gif", "image/svg+xml"],
|
|
216
|
+
showRemoveImageButton: true,
|
|
217
|
+
errorMessages: {
|
|
218
|
+
maxSizeExceeded: "Max size exceeded.",
|
|
219
|
+
multipleMaxSizeExceeded: "Selected fields exceed max file size.",
|
|
220
|
+
multipleNotAllowed: "Multiple selection not allowed.",
|
|
221
|
+
unsupportedFileType: "Unsupported file type.",
|
|
222
|
+
default: "An error occurred."
|
|
223
|
+
}
|
|
224
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { storiesOf } from "@storybook/react";
|
|
3
|
+
import { Story, StoryReadme, StorySandboxCode, StorySandbox, StorySandboxExample } from "@webiny/storybook-utils/Story";
|
|
4
|
+
import { withKnobs, boolean } from "@storybook/addon-knobs";
|
|
5
|
+
import readme from "./README.md";
|
|
6
|
+
import { Form } from "@webiny/form";
|
|
7
|
+
import { SingleImageUpload } from "./SingleImageUpload";
|
|
8
|
+
var story = storiesOf("Components/ImageUpload", module);
|
|
9
|
+
story.addDecorator(withKnobs);
|
|
10
|
+
var image = {
|
|
11
|
+
id: 1,
|
|
12
|
+
name: "1st_image.jpg",
|
|
13
|
+
src: "http://i.pravatar.cc/150?img=49",
|
|
14
|
+
type: "image/jpeg",
|
|
15
|
+
size: 901611
|
|
16
|
+
};
|
|
17
|
+
story.add("Single Image Upload", function () {
|
|
18
|
+
var disabled = boolean("Disabled", false);
|
|
19
|
+
return /*#__PURE__*/React.createElement(Story, null, /*#__PURE__*/React.createElement(StoryReadme, null, readme), /*#__PURE__*/React.createElement(StorySandbox, null, /*#__PURE__*/React.createElement(StorySandboxExample, null, /*#__PURE__*/React.createElement("div", {
|
|
20
|
+
style: {
|
|
21
|
+
maxWidth: 200
|
|
22
|
+
}
|
|
23
|
+
}, /*#__PURE__*/React.createElement(Form, {
|
|
24
|
+
data: {
|
|
25
|
+
image: image
|
|
26
|
+
}
|
|
27
|
+
}, function (_ref) {
|
|
28
|
+
var Bind = _ref.Bind;
|
|
29
|
+
return /*#__PURE__*/React.createElement(Bind, {
|
|
30
|
+
name: "image"
|
|
31
|
+
}, /*#__PURE__*/React.createElement(SingleImageUpload, {
|
|
32
|
+
label: "Your previously uploaded image:",
|
|
33
|
+
disabled: disabled,
|
|
34
|
+
description: "Image will be publicly visible."
|
|
35
|
+
}));
|
|
36
|
+
}))), /*#__PURE__*/React.createElement(StorySandboxCode, null, "\n <Form data={".concat(JSON.stringify({
|
|
37
|
+
image: image
|
|
38
|
+
}), "}>\n {({ Bind }) => (\n <Bind name=\"image\">\n <SingleImageUpload\n label=\"Your previously uploaded image:\"\n disabled={disabled}\n description=\"This list will not be shown to other users.\"\n />\n </Bind>\n )}\n </Form>\n "))));
|
|
39
|
+
}, {
|
|
40
|
+
info: {
|
|
41
|
+
propTables: [SingleImageUpload]
|
|
42
|
+
}
|
|
43
|
+
});
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Bounding_Boxes">
|
|
6
|
+
<g id="ui_x5F_spec_x5F_header_copy_3">
|
|
7
|
+
</g>
|
|
8
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
|
9
|
+
</g>
|
|
10
|
+
<g id="Rounded">
|
|
11
|
+
<g id="ui_x5F_spec_x5F_header_copy_7">
|
|
12
|
+
</g>
|
|
13
|
+
<g>
|
|
14
|
+
<path fill="currentColor" d="M21.02,5H19V2.98C19,2.44,18.56,2,18.02,2h-0.03C17.44,2,17,2.44,17,2.98V5h-2.01C14.45,5,14.01,5.44,14,5.98
|
|
15
|
+
c0,0.01,0,0.02,0,0.03C14,6.56,14.44,7,14.99,7H17v2.01c0,0.54,0.44,0.99,0.99,0.98c0.01,0,0.02,0,0.03,0
|
|
16
|
+
c0.54,0,0.98-0.44,0.98-0.98V7h2.02C21.56,7,22,6.56,22,6.02V5.98C22,5.44,21.56,5,21.02,5z"/>
|
|
17
|
+
<path fill="currentColor" d="M16,9.01V8h-1.01c-0.53,0-1.03-0.21-1.41-0.58C13.21,7.04,13,6.54,13,5.98c0-0.36,0.1-0.69,0.27-0.98H5C3.9,5,3,5.9,3,7
|
|
18
|
+
v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-8.28c-0.3,0.17-0.64,0.28-1.02,0.28C16.89,10.99,16,10.1,16,9.01z M15.96,19H6
|
|
19
|
+
c-0.41,0-0.65-0.47-0.4-0.8l1.98-2.63c0.21-0.28,0.62-0.26,0.82,0.02L10,18l2.61-3.48c0.2-0.26,0.59-0.27,0.79-0.01l2.95,3.68
|
|
20
|
+
C16.61,18.52,16.38,19,15.96,19z"/>
|
|
21
|
+
</g>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
+
<g id="Bounding_Boxes">
|
|
6
|
+
<path fill="none" d="M0,0h24v24H0V0z"/>
|
|
7
|
+
</g>
|
|
8
|
+
<g id="Rounded">
|
|
9
|
+
<path fill="currentColor" d="M18.3,5.71L18.3,5.71c-0.39-0.39-1.02-0.39-1.41,0L12,10.59L7.11,5.7c-0.39-0.39-1.02-0.39-1.41,0l0,0
|
|
10
|
+
c-0.39,0.39-0.39,1.02,0,1.41L10.59,12L5.7,16.89c-0.39,0.39-0.39,1.02,0,1.41h0c0.39,0.39,1.02,0.39,1.41,0L12,13.41l4.89,4.89
|
|
11
|
+
c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L13.41,12l4.89-4.89C18.68,6.73,18.68,6.09,18.3,5.71z"/>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="currentColor" d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/>
|
|
3
|
+
<path d="M0 0h24v24H0z" fill="none"/>
|
|
4
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const AddImageIconWrapper: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "onError" | "className" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css">, object>;
|
|
3
|
+
export declare const AddImageWrapper: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "onError" | "className" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css">, object>;
|
|
4
|
+
export declare const AddImageWrapperRound: import("@emotion/styled-base").StyledComponent<Pick<import("react").PropsWithChildren<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Pick<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "onError" | "className" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css">, "onError" | "className" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css"> & {
|
|
5
|
+
theme?: object;
|
|
6
|
+
}>, "onError" | "className" | "theme" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "key" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css"> & {
|
|
7
|
+
ref?: ((instance: HTMLDivElement) => void) | import("react").RefObject<HTMLDivElement>;
|
|
8
|
+
}, Pick<Pick<import("react").PropsWithChildren<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Pick<Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "onError" | "className" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css">, "onError" | "className" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css"> & {
|
|
9
|
+
theme?: object;
|
|
10
|
+
}>, "onError" | "className" | "theme" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "key" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css"> & {
|
|
11
|
+
ref?: ((instance: HTMLDivElement) => void) | import("react").RefObject<HTMLDivElement>;
|
|
12
|
+
}, "onError" | "className" | "theme" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css">, object>;
|
|
13
|
+
export declare const RemoveImage: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "onError" | "className" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css">, object>;
|
|
14
|
+
export declare const EditImage: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "onError" | "className" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css">, object>;
|
|
15
|
+
export declare const ImagePreviewWrapper: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "onError" | "className" | "style" | "title" | "children" | "onBlur" | "onClick" | "onContextMenu" | "onCopy" | "onCut" | "onAuxClick" | "onDoubleClick" | "onDragEnd" | "onDragStart" | "onDrop" | "onFocus" | "onInput" | "onInvalid" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onMouseDown" | "onMouseUp" | "onPaste" | "onPause" | "onPlay" | "onPointerCancel" | "onPointerDown" | "onPointerUp" | "onRateChange" | "onReset" | "onSeeked" | "onSubmit" | "onTouchCancel" | "onTouchEnd" | "onTouchStart" | "onVolumeChange" | "onAbort" | "onAnimationEnd" | "onAnimationIteration" | "onAnimationStart" | "onCanPlay" | "onCanPlayThrough" | "onDrag" | "onDragEnter" | "onDragExit" | "onDragLeave" | "onDragOver" | "onDurationChange" | "onEmptied" | "onEncrypted" | "onEnded" | "onGotPointerCapture" | "onLoad" | "onLoadedData" | "onLoadedMetadata" | "onLoadStart" | "onLostPointerCapture" | "onMouseMove" | "onMouseOut" | "onMouseOver" | "onPlaying" | "onPointerMove" | "onPointerOut" | "onPointerOver" | "onProgress" | "onScroll" | "onSeeking" | "onStalled" | "onSuspend" | "onTimeUpdate" | "onTouchMove" | "onTransitionEnd" | "onWaiting" | "onWheel" | "onMouseEnter" | "onMouseLeave" | "onPointerEnter" | "onPointerLeave" | "onChange" | "onSelect" | "onBeforeInput" | "onCompositionEnd" | "onCompositionStart" | "onCompositionUpdate" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "tabIndex" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopyCapture" | "onCutCapture" | "onPasteCapture" | "onCompositionEndCapture" | "onCompositionStartCapture" | "onCompositionUpdateCapture" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInputCapture" | "onInputCapture" | "onResetCapture" | "onSubmitCapture" | "onInvalidCapture" | "onLoadCapture" | "onErrorCapture" | "onKeyDownCapture" | "onKeyPressCapture" | "onKeyUpCapture" | "onAbortCapture" | "onCanPlayCapture" | "onCanPlayThroughCapture" | "onDurationChangeCapture" | "onEmptiedCapture" | "onEncryptedCapture" | "onEndedCapture" | "onLoadedDataCapture" | "onLoadedMetadataCapture" | "onLoadStartCapture" | "onPauseCapture" | "onPlayCapture" | "onPlayingCapture" | "onProgressCapture" | "onRateChangeCapture" | "onSeekedCapture" | "onSeekingCapture" | "onStalledCapture" | "onSuspendCapture" | "onTimeUpdateCapture" | "onVolumeChangeCapture" | "onWaitingCapture" | "onAuxClickCapture" | "onClickCapture" | "onContextMenuCapture" | "onDoubleClickCapture" | "onDragCapture" | "onDragEndCapture" | "onDragEnterCapture" | "onDragExitCapture" | "onDragLeaveCapture" | "onDragOverCapture" | "onDragStartCapture" | "onDropCapture" | "onMouseDownCapture" | "onMouseMoveCapture" | "onMouseOutCapture" | "onMouseOverCapture" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancelCapture" | "onTouchEndCapture" | "onTouchMoveCapture" | "onTouchStartCapture" | "onPointerDownCapture" | "onPointerMoveCapture" | "onPointerUpCapture" | "onPointerCancelCapture" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "onPointerOverCapture" | "onPointerOutCapture" | "onGotPointerCaptureCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheelCapture" | "onAnimationStartCapture" | "onAnimationEndCapture" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "translate" | "css">, object>;
|