@instructure/canvas-rce 5.15.4 → 5.15.5
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/es/bridge/Bridge.d.ts +179 -0
- package/es/bridge/index.d.ts +3 -0
- package/es/canvasFileBrowser/FileBrowser.d.ts +80 -0
- package/es/canvasFileBrowser/en-US.d.ts +0 -0
- package/es/common/FlashAlert.d.ts +41 -0
- package/es/common/browser.d.ts +5 -0
- package/es/common/fileUrl.d.ts +13 -0
- package/es/common/getCookie.d.ts +7 -0
- package/es/common/incremental-loading/LoadMoreButton.d.ts +12 -0
- package/es/common/incremental-loading/LoadingIndicator.d.ts +2 -0
- package/es/common/incremental-loading/LoadingStatus.d.ts +6 -0
- package/es/common/incremental-loading/index.d.ts +4 -0
- package/es/common/incremental-loading/useIncrementalLoading.d.ts +10 -0
- package/es/common/indicate.d.ts +1 -0
- package/es/common/mimeClass.d.ts +5 -0
- package/es/common/natcompare.d.ts +8 -0
- package/es/defaultTinymceConfig.d.ts +44 -0
- package/es/elementDenylist.d.ts +2 -0
- package/es/enhance-user-content/doc_previews.d.ts +10 -0
- package/es/enhance-user-content/enhance_user_content.d.ts +1 -0
- package/es/enhance-user-content/external_links.d.ts +2 -0
- package/es/enhance-user-content/index.d.ts +4 -0
- package/es/enhance-user-content/instructure_helper.d.ts +6 -0
- package/es/enhance-user-content/jqueryish_funcs.d.ts +9 -0
- package/es/enhance-user-content/mathml.d.ts +28 -0
- package/es/enhance-user-content/media_comment_thumbnail.d.ts +1 -0
- package/es/format-message.d.ts +3 -0
- package/es/getThemeVars.d.ts +5 -0
- package/es/getTranslations.d.ts +2 -0
- package/es/index.d.ts +59 -0
- package/es/rce/AlertMessageArea.d.ts +16 -0
- package/es/rce/DraggingBlocker.d.ts +8 -0
- package/es/rce/KeyboardShortcutModal.d.ts +12 -0
- package/es/rce/RCE.d.ts +130 -0
- package/es/rce/RCEGlobals.d.ts +21 -0
- package/es/rce/RCEVariants.d.ts +17 -0
- package/es/rce/RCEWrapper.d.ts +428 -0
- package/es/rce/RCEWrapper.utils.d.ts +24 -0
- package/es/rce/RCEWrapperProps.d.ts +175 -0
- package/es/rce/RceHtmlEditor.d.ts +8 -0
- package/es/rce/ResizeHandle.d.ts +15 -0
- package/es/rce/RestoreAutoSaveModal.d.ts +15 -0
- package/es/rce/ShowOnFocusButton/index.d.ts +22 -0
- package/es/rce/StatusBar.d.ts +38 -0
- package/es/rce/alertHandler.d.ts +19 -0
- package/es/rce/contentInsertion.d.ts +8 -0
- package/es/rce/contentInsertionUtils.d.ts +20 -0
- package/es/rce/contentRendering.d.ts +9 -0
- package/es/rce/customEvents.d.ts +1 -0
- package/es/rce/editorLanguage.d.ts +10 -0
- package/es/rce/indicatorRegion.d.ts +6 -0
- package/es/rce/normalizeLocale.d.ts +1 -0
- package/es/rce/normalizeProps.d.ts +3 -0
- package/es/rce/plugins/instructure-ui-icons/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_color/clickCallback.d.ts +7 -0
- package/es/rce/plugins/instructure_color/components/ColorPicker.d.ts +30 -0
- package/es/rce/plugins/instructure_color/components/ColorPopup.d.ts +12 -0
- package/es/rce/plugins/instructure_color/components/colorUtils.d.ts +4 -0
- package/es/rce/plugins/instructure_color/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_condensed_buttons/core/ListUtils.d.ts +16 -0
- package/es/rce/plugins/instructure_condensed_buttons/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_condensed_buttons/ui/alignment-button.d.ts +2 -0
- package/es/rce/plugins/instructure_condensed_buttons/ui/directionality-button.d.ts +1 -0
- package/es/rce/plugins/instructure_condensed_buttons/ui/indent-outdent-button.d.ts +2 -0
- package/es/rce/plugins/instructure_condensed_buttons/ui/list-button.d.ts +8 -0
- package/es/rce/plugins/instructure_condensed_buttons/ui/subscript-superscript-button.d.ts +2 -0
- package/es/rce/plugins/instructure_documents/clickCallback.d.ts +1 -0
- package/es/rce/plugins/instructure_documents/components/DocumentsPanel.d.ts +18 -0
- package/es/rce/plugins/instructure_documents/components/Link.d.ts +28 -0
- package/es/rce/plugins/instructure_documents/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_equation/EquationEditorModal/advancedOnlySyntax.d.ts +2 -0
- package/es/rce/plugins/instructure_equation/EquationEditorModal/advancedPreference.d.ts +4 -0
- package/es/rce/plugins/instructure_equation/EquationEditorModal/index.d.ts +51 -0
- package/es/rce/plugins/instructure_equation/EquationEditorModal/latexTextareaUtil.d.ts +16 -0
- package/es/rce/plugins/instructure_equation/EquationEditorModal/parseLatex.d.ts +12 -0
- package/es/rce/plugins/instructure_equation/EquationEditorModal/styles.d.ts +6 -0
- package/es/rce/plugins/instructure_equation/EquationEditorToolbar/buttons.d.ts +17 -0
- package/es/rce/plugins/instructure_equation/EquationEditorToolbar/index.d.ts +10 -0
- package/es/rce/plugins/instructure_equation/MathIcon/index.d.ts +10 -0
- package/es/rce/plugins/instructure_equation/MathIcon/svgs.d.ts +216 -0
- package/es/rce/plugins/instructure_equation/clickCallback.d.ts +1 -0
- package/es/rce/plugins/instructure_equation/mathlive/index.d.ts +1 -0
- package/es/rce/plugins/instructure_equation/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_fullscreen/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_html_view/clickCallback.d.ts +1 -0
- package/es/rce/plugins/instructure_html_view/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_icon_maker/clickCallback.d.ts +5 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ColorSection.d.ts +6 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/CreateIconMakerForm.d.ts +10 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Footer.d.ts +11 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Group.d.ts +6 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Header.d.ts +8 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Course.d.ts +29 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageOptions.d.ts +56 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ImageSection.d.ts +20 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/ModeSelect.d.ts +3 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/MultiColor/index.d.ts +23 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/MultiColor/svg.d.ts +91 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGList.d.ts +154 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SVGThumbnail.d.ts +28 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SingleColor/index.d.ts +29 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/SingleColor/svg.d.ts +97 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/Upload.d.ts +26 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/index.d.ts +1 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/propTypes.d.ts +21 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ImageSection/utils.d.ts +5 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/Preview.d.ts +4 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/ShapeSection.d.ts +5 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/TextSection.d.ts +5 -0
- package/es/rce/plugins/instructure_icon_maker/components/CreateIconMakerForm/index.d.ts +1 -0
- package/es/rce/plugins/instructure_icon_maker/components/IconMakerTray.d.ts +22 -0
- package/es/rce/plugins/instructure_icon_maker/components/SavedIconMakerList.d.ts +30 -0
- package/es/rce/plugins/instructure_icon_maker/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_icon_maker/reducers/imageSection.d.ts +97 -0
- package/es/rce/plugins/instructure_icon_maker/reducers/svgSettings.d.ts +40 -0
- package/es/rce/plugins/instructure_icon_maker/registerEditToolbar.d.ts +3 -0
- package/es/rce/plugins/instructure_icon_maker/svg/clipPath.d.ts +2 -0
- package/es/rce/plugins/instructure_icon_maker/svg/constants.d.ts +66 -0
- package/es/rce/plugins/instructure_icon_maker/svg/font.d.ts +2 -0
- package/es/rce/plugins/instructure_icon_maker/svg/image.d.ts +44 -0
- package/es/rce/plugins/instructure_icon_maker/svg/index.d.ts +9 -0
- package/es/rce/plugins/instructure_icon_maker/svg/metadata.d.ts +2 -0
- package/es/rce/plugins/instructure_icon_maker/svg/settings.d.ts +6 -0
- package/es/rce/plugins/instructure_icon_maker/svg/shape.d.ts +14 -0
- package/es/rce/plugins/instructure_icon_maker/svg/text.d.ts +28 -0
- package/es/rce/plugins/instructure_icon_maker/svg/utils.d.ts +3 -0
- package/es/rce/plugins/instructure_icon_maker/utils/IconMakerClose.d.ts +2 -0
- package/es/rce/plugins/instructure_icon_maker/utils/IconMakerFormHasChanges.d.ts +35 -0
- package/es/rce/plugins/instructure_icon_maker/utils/addIconMakerAttributes.d.ts +4 -0
- package/es/rce/plugins/instructure_icon_maker/utils/iconValidation.d.ts +6 -0
- package/es/rce/plugins/instructure_icon_maker/utils/iconsLabels.d.ts +356 -0
- package/es/rce/plugins/instructure_icon_maker/utils/useDebouncedValue.d.ts +1 -0
- package/es/rce/plugins/instructure_image/ImageEmbedOptions.d.ts +49 -0
- package/es/rce/plugins/instructure_image/ImageList/Image.d.ts +33 -0
- package/es/rce/plugins/instructure_image/ImageList/index.d.ts +33 -0
- package/es/rce/plugins/instructure_image/ImageOptionsTray/TrayController.d.ts +17 -0
- package/es/rce/plugins/instructure_image/ImageOptionsTray/index.d.ts +29 -0
- package/es/rce/plugins/instructure_image/Images/index.d.ts +24 -0
- package/es/rce/plugins/instructure_image/clickCallback.d.ts +1 -0
- package/es/rce/plugins/instructure_image/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_links/clickCallback.d.ts +1 -0
- package/es/rce/plugins/instructure_links/components/AccordionSection.d.ts +18 -0
- package/es/rce/plugins/instructure_links/components/CollectionPanel.d.ts +113 -0
- package/es/rce/plugins/instructure_links/components/Link.d.ts +24 -0
- package/es/rce/plugins/instructure_links/components/LinkOptionsDialog/LinkOptionsDialogController.d.ts +18 -0
- package/es/rce/plugins/instructure_links/components/LinkOptionsDialog/index.d.ts +24 -0
- package/es/rce/plugins/instructure_links/components/LinkOptionsTray/LinkOptionsTrayController.d.ts +14 -0
- package/es/rce/plugins/instructure_links/components/LinkOptionsTray/index.d.ts +18 -0
- package/es/rce/plugins/instructure_links/components/LinkSet.d.ts +46 -0
- package/es/rce/plugins/instructure_links/components/LinksPanel.d.ts +107 -0
- package/es/rce/plugins/instructure_links/components/NavigationPanel.d.ts +17 -0
- package/es/rce/plugins/instructure_links/components/NoResults.d.ts +13 -0
- package/es/rce/plugins/instructure_links/components/propTypes.d.ts +102 -0
- package/es/rce/plugins/instructure_links/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_links/validateURL.d.ts +6 -0
- package/es/rce/plugins/instructure_media_embed/clickCallback.d.ts +1 -0
- package/es/rce/plugins/instructure_media_embed/components/Embed.d.ts +11 -0
- package/es/rce/plugins/instructure_media_embed/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_paste/pasteMenuCommand.d.ts +1 -0
- package/es/rce/plugins/instructure_paste/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_rce_external_tools/ExternalToolsEnv.d.ts +30 -0
- package/es/rce/plugins/instructure_rce_external_tools/RceToolWrapper.d.ts +77 -0
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialog.d.ts +45 -0
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialogModal.d.ts +8 -0
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialogTray.d.ts +14 -0
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolSelectionDialog/ExternalToolSelectionDialog.d.ts +18 -0
- package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolSelectionDialog/ExternalToolSelectionItem.d.ts +12 -0
- package/es/rce/plugins/instructure_rce_external_tools/components/util/ExpandoText.d.ts +7 -0
- package/es/rce/plugins/instructure_rce_external_tools/components/util/ToolLaunchIframe.d.ts +10 -0
- package/es/rce/plugins/instructure_rce_external_tools/constants.d.ts +9 -0
- package/es/rce/plugins/instructure_rce_external_tools/dialog-helper.d.ts +3 -0
- package/es/rce/plugins/instructure_rce_external_tools/helpers/tags.d.ts +18 -0
- package/es/rce/plugins/instructure_rce_external_tools/jquery/jquery.dropdownList.d.ts +27 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti11-content-items/RceLti11ContentItem.d.ts +72 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/Lti13ContentItemJson.d.ts +55 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/RceLti13ContentItem.d.ts +31 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/BaseLinkContentItem.d.ts +19 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/HtmlFragmentContentItem.d.ts +11 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/ImageContentItem.d.ts +17 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/LinkContentItem.d.ts +7 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/ResourceLinkContentItem.d.ts +9 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/processEditorContentItems.d.ts +13 -0
- package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/rceLti13ContentItemFromJson.d.ts +12 -0
- package/es/rce/plugins/instructure_rce_external_tools/plugin.d.ts +9 -0
- package/es/rce/plugins/instructure_rce_external_tools/util/addParentFrameContextToUrl.d.ts +1 -0
- package/es/rce/plugins/instructure_rce_external_tools/util/externalToolsForToolbar.d.ts +2 -0
- package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.d.ts +17 -0
- package/es/rce/plugins/instructure_record/AudioOptionsTray/index.d.ts +41 -0
- package/es/rce/plugins/instructure_record/MediaPanel/index.d.ts +18 -0
- package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.d.ts +27 -0
- package/es/rce/plugins/instructure_record/VideoOptionsTray/index.d.ts +45 -0
- package/es/rce/plugins/instructure_record/clickCallback.d.ts +2 -0
- package/es/rce/plugins/instructure_record/mediaTranslations.d.ts +69 -0
- package/es/rce/plugins/instructure_record/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_search_and_replace/clickCallback.d.ts +2 -0
- package/es/rce/plugins/instructure_search_and_replace/components/FindReplaceTray.d.ts +14 -0
- package/es/rce/plugins/instructure_search_and_replace/components/FindReplaceTrayController.d.ts +12 -0
- package/es/rce/plugins/instructure_search_and_replace/getSelectionContext.d.ts +1 -0
- package/es/rce/plugins/instructure_search_and_replace/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_studio_media_options/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_wordcount/clickCallback.d.ts +6 -0
- package/es/rce/plugins/instructure_wordcount/components/WordCountModal.d.ts +8 -0
- package/es/rce/plugins/instructure_wordcount/plugin.d.ts +1 -0
- package/es/rce/plugins/instructure_wordcount/utils/countContent.d.ts +11 -0
- package/es/rce/plugins/instructure_wordcount/utils/tableContent.d.ts +12 -0
- package/es/rce/plugins/shared/CanvasContentTray.d.ts +66 -0
- package/es/rce/plugins/shared/CheckerboardStyling.d.ts +5 -0
- package/es/rce/plugins/shared/ColorInput.d.ts +11 -0
- package/es/rce/plugins/shared/ConditionalTooltip.d.ts +12 -0
- package/es/rce/plugins/shared/ContentSelection.d.ts +75 -0
- package/es/rce/plugins/shared/DimensionUtils.d.ts +14 -0
- package/es/rce/plugins/shared/DimensionsInput/DimensionInput.d.ts +13 -0
- package/es/rce/plugins/shared/DimensionsInput/index.d.ts +36 -0
- package/es/rce/plugins/shared/DimensionsInput/useDimensionsState.d.ts +25 -0
- package/es/rce/plugins/shared/ErrorBoundary.d.ts +16 -0
- package/es/rce/plugins/shared/EventUtils.d.ts +8 -0
- package/es/rce/plugins/shared/Filter.d.ts +18 -0
- package/es/rce/plugins/shared/FixedContentTray.d.ts +46 -0
- package/es/rce/plugins/shared/ImageCropper/DirectionRegion.d.ts +13 -0
- package/es/rce/plugins/shared/ImageCropper/Modal.d.ts +40 -0
- package/es/rce/plugins/shared/ImageCropper/Preview.d.ts +21 -0
- package/es/rce/plugins/shared/ImageCropper/constants.d.ts +22 -0
- package/es/rce/plugins/shared/ImageCropper/controls/CustomNumberInput.d.ts +30 -0
- package/es/rce/plugins/shared/ImageCropper/controls/ResetControls.d.ts +14 -0
- package/es/rce/plugins/shared/ImageCropper/controls/RotationControls.d.ts +18 -0
- package/es/rce/plugins/shared/ImageCropper/controls/ShapeControls.d.ts +12 -0
- package/es/rce/plugins/shared/ImageCropper/controls/ZoomControls.d.ts +18 -0
- package/es/rce/plugins/shared/ImageCropper/controls/index.d.ts +5 -0
- package/es/rce/plugins/shared/ImageCropper/controls/useDebouncedNumericValue.d.ts +7 -0
- package/es/rce/plugins/shared/ImageCropper/controls/utils.d.ts +4 -0
- package/es/rce/plugins/shared/ImageCropper/imageCropUtils.d.ts +8 -0
- package/es/rce/plugins/shared/ImageCropper/index.d.ts +1 -0
- package/es/rce/plugins/shared/ImageCropper/propTypes.d.ts +9 -0
- package/es/rce/plugins/shared/ImageCropper/reducers/imageCropper.d.ts +18 -0
- package/es/rce/plugins/shared/ImageCropper/shape.d.ts +10 -0
- package/es/rce/plugins/shared/ImageCropper/svg/index.d.ts +1 -0
- package/es/rce/plugins/shared/ImageCropper/svg/shape.d.ts +4 -0
- package/es/rce/plugins/shared/ImageCropper/svg/utils.d.ts +1 -0
- package/es/rce/plugins/shared/ImageCropper/useKeyMouseEvents.d.ts +1 -0
- package/es/rce/plugins/shared/ImageCropper/useMouseWheel.d.ts +1 -0
- package/es/rce/plugins/shared/ImageOptionsForm.d.ts +19 -0
- package/es/rce/plugins/shared/LinkDisplay.d.ts +9 -0
- package/es/rce/plugins/shared/PreviewIcon.d.ts +50 -0
- package/es/rce/plugins/shared/Previewable.d.ts +2 -0
- package/es/rce/plugins/shared/RceFileBrowser.d.ts +19 -0
- package/es/rce/plugins/shared/StoreContext.d.ts +15 -0
- package/es/rce/plugins/shared/StudioLtiSupportUtils.d.ts +37 -0
- package/es/rce/plugins/shared/UnknownFileTypePanel.d.ts +2 -0
- package/es/rce/plugins/shared/Upload/CanvasContentPanel.d.ts +29 -0
- package/es/rce/plugins/shared/Upload/CategoryProcessor.d.ts +3 -0
- package/es/rce/plugins/shared/Upload/ComputerPanel.d.ts +32 -0
- package/es/rce/plugins/shared/Upload/PanelFilter.d.ts +10 -0
- package/es/rce/plugins/shared/Upload/SvgCategoryProcessor.d.ts +4 -0
- package/es/rce/plugins/shared/Upload/UploadFile.d.ts +24 -0
- package/es/rce/plugins/shared/Upload/UploadFileModal.d.ts +3 -0
- package/es/rce/plugins/shared/Upload/UrlPanel.d.ts +12 -0
- package/es/rce/plugins/shared/Upload/UsageRightsSelectBox.d.ts +23 -0
- package/es/rce/plugins/shared/Upload/doFileUpload.d.ts +17 -0
- package/es/rce/plugins/shared/Upload/index.d.ts +2 -0
- package/es/rce/plugins/shared/ai_tools/AIResponseModal.d.ts +10 -0
- package/es/rce/plugins/shared/ai_tools/AIToolsTray.d.ts +18 -0
- package/es/rce/plugins/shared/ai_tools/aiicons.d.ts +7 -0
- package/es/rce/plugins/shared/ai_tools/index.d.ts +3 -0
- package/es/rce/plugins/shared/buildDownloadUrl.d.ts +1 -0
- package/es/rce/plugins/shared/canvasContentUtils.d.ts +138 -0
- package/es/rce/plugins/shared/compressionUtils.d.ts +11 -0
- package/es/rce/plugins/shared/dateUtils.d.ts +1 -0
- package/es/rce/plugins/shared/do-fetch-api-effect/defaultFetchOptions.d.ts +4 -0
- package/es/rce/plugins/shared/do-fetch-api-effect/doFetchApi.d.ts +22 -0
- package/es/rce/plugins/shared/do-fetch-api-effect/get-cookie.d.ts +7 -0
- package/es/rce/plugins/shared/do-fetch-api-effect/index.d.ts +7 -0
- package/es/rce/plugins/shared/do-fetch-api-effect/parse-link-header.d.ts +12 -0
- package/es/rce/plugins/shared/do-fetch-api-effect/query-string-encoding.d.ts +6 -0
- package/es/rce/plugins/shared/fileShape.d.ts +116 -0
- package/es/rce/plugins/shared/fileTypeUtils.d.ts +28 -0
- package/es/rce/plugins/shared/fileUtils.d.ts +1 -0
- package/es/rce/plugins/shared/linkUtils.d.ts +5 -0
- package/es/rce/plugins/shared/round.d.ts +1 -0
- package/es/rce/plugins/shared/trayUtils.d.ts +3 -0
- package/es/rce/plugins/shared/useDataUrl.d.ts +8 -0
- package/es/rce/plugins/shared/useFilterSettings.d.ts +10 -0
- package/es/rce/plugins/tinymce-a11y-checker/components/ColorField.d.ts +33 -0
- package/es/rce/plugins/tinymce-a11y-checker/components/checker.d.ts +53 -0
- package/es/rce/plugins/tinymce-a11y-checker/components/color-picker.d.ts +2 -0
- package/es/rce/plugins/tinymce-a11y-checker/components/placeholder-svg.d.ts +2 -0
- package/es/rce/plugins/tinymce-a11y-checker/components/pointer.d.ts +2 -0
- package/es/rce/plugins/tinymce-a11y-checker/node-checker.d.ts +1 -0
- package/es/rce/plugins/tinymce-a11y-checker/plugin.d.ts +2 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/adjacent-links.d.ts +19 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/headings-sequence.d.ts +18 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/headings-start-at-h2.d.ts +28 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/img-alt-filename.d.ts +25 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/img-alt-length.d.ts +18 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/img-alt.d.ts +25 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/index.d.ts +198 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/large-text-contrast.d.ts +19 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/list-structure.d.ts +20 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/paragraphs-for-headings.d.ts +18 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/small-text-contrast.d.ts +19 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/table-caption.d.ts +17 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/table-header-scope.d.ts +18 -0
- package/es/rce/plugins/tinymce-a11y-checker/rules/table-header.d.ts +18 -0
- package/es/rce/plugins/tinymce-a11y-checker/utils/colors.d.ts +10 -0
- package/es/rce/plugins/tinymce-a11y-checker/utils/describe.d.ts +1 -0
- package/es/rce/plugins/tinymce-a11y-checker/utils/dom.d.ts +11 -0
- package/es/rce/plugins/tinymce-a11y-checker/utils/indicate.d.ts +7 -0
- package/es/rce/plugins/tinymce-a11y-checker/utils/rgb-hex.d.ts +2 -0
- package/es/rce/plugins/tinymce-a11y-checker/utils/strings.d.ts +2 -0
- package/es/rce/root.d.ts +3 -0
- package/es/rce/sanitizePlugins.d.ts +1 -0
- package/es/rce/style.d.ts +64 -0
- package/es/rce/tinyRCE.d.ts +2 -0
- package/es/rce/tinymce.oxide.content.min.css.d.ts +2 -0
- package/es/rce/tinymce.oxide.skin.min.css.d.ts +2 -0
- package/es/rce/transformContent.d.ts +13 -0
- package/es/rce/types.d.ts +96 -0
- package/es/rce/userOS.d.ts +4 -0
- package/es/rce/wrapInitCb.d.ts +2 -0
- package/es/rcs/api.d.ts +117 -0
- package/es/rcs/buildError.d.ts +4 -0
- package/es/rcs/fake.d.ts +111 -0
- package/es/sidebar/actions/all_files.d.ts +5 -0
- package/es/sidebar/actions/data.d.ts +29 -0
- package/es/sidebar/actions/documents.d.ts +42 -0
- package/es/sidebar/actions/files.d.ts +66 -0
- package/es/sidebar/actions/filter.d.ts +25 -0
- package/es/sidebar/actions/flickr.d.ts +20 -0
- package/es/sidebar/actions/images.d.ts +63 -0
- package/es/sidebar/actions/links.d.ts +4 -0
- package/es/sidebar/actions/media.d.ts +46 -0
- package/es/sidebar/actions/session.d.ts +2 -0
- package/es/sidebar/actions/ui.d.ts +22 -0
- package/es/sidebar/actions/upload.d.ts +114 -0
- package/es/sidebar/containers/Sidebar.d.ts +1 -0
- package/es/sidebar/containers/sidebarHandlers.d.ts +33 -0
- package/es/sidebar/dragHtml.d.ts +1 -0
- package/es/sidebar/reducers/all_files.d.ts +1 -0
- package/es/sidebar/reducers/collection.d.ts +1 -0
- package/es/sidebar/reducers/collections.d.ts +9 -0
- package/es/sidebar/reducers/documents.d.ts +1 -0
- package/es/sidebar/reducers/files.d.ts +1 -0
- package/es/sidebar/reducers/filter.d.ts +7 -0
- package/es/sidebar/reducers/flickr.d.ts +1 -0
- package/es/sidebar/reducers/folder.d.ts +25 -0
- package/es/sidebar/reducers/folders.d.ts +1 -0
- package/es/sidebar/reducers/images.d.ts +1 -0
- package/es/sidebar/reducers/index.d.ts +44 -0
- package/es/sidebar/reducers/media.d.ts +1 -0
- package/es/sidebar/reducers/newPageLinkExpanded.d.ts +1 -0
- package/es/sidebar/reducers/noop.d.ts +1 -0
- package/es/sidebar/reducers/rootFolderId.d.ts +1 -0
- package/es/sidebar/reducers/session.d.ts +1 -0
- package/es/sidebar/reducers/ui.d.ts +6 -0
- package/es/sidebar/reducers/upload.d.ts +11 -0
- package/es/sidebar/store/configureStore.d.ts +3 -0
- package/es/sidebar/store/initialState.d.ts +22 -0
- package/es/translations/locales/ab.d.ts +1 -0
- package/es/translations/locales/ar.d.ts +1 -0
- package/es/translations/locales/ca.d.ts +1 -0
- package/es/translations/locales/cs.d.ts +1 -0
- package/es/translations/locales/cs_CZ.d.ts +1 -0
- package/es/translations/locales/cy.d.ts +1 -0
- package/es/translations/locales/da-x-k12.d.ts +1 -0
- package/es/translations/locales/da.d.ts +1 -0
- package/es/translations/locales/da_DK.d.ts +1 -0
- package/es/translations/locales/de.d.ts +1 -0
- package/es/translations/locales/el.d.ts +1 -0
- package/es/translations/locales/en-AU-x-unimelb.d.ts +1 -0
- package/es/translations/locales/en-GB-x-ukhe.d.ts +1 -0
- package/es/translations/locales/en.d.ts +1 -0
- package/es/translations/locales/en_AU.d.ts +1 -0
- package/es/translations/locales/en_CA.d.ts +1 -0
- package/es/translations/locales/en_CY.d.ts +1 -0
- package/es/translations/locales/en_GB.d.ts +1 -0
- package/es/translations/locales/en_NZ.d.ts +1 -0
- package/es/translations/locales/en_SE.d.ts +1 -0
- package/es/translations/locales/en_US.d.ts +1 -0
- package/es/translations/locales/es.d.ts +1 -0
- package/es/translations/locales/es_ES.d.ts +1 -0
- package/es/translations/locales/es_GT.d.ts +1 -0
- package/es/translations/locales/fa_IR.d.ts +1 -0
- package/es/translations/locales/fi.d.ts +1 -0
- package/es/translations/locales/fr.d.ts +1 -0
- package/es/translations/locales/fr_CA.d.ts +1 -0
- package/es/translations/locales/ga.d.ts +1 -0
- package/es/translations/locales/he.d.ts +1 -0
- package/es/translations/locales/hi.d.ts +1 -0
- package/es/translations/locales/ht.d.ts +1 -0
- package/es/translations/locales/hu.d.ts +1 -0
- package/es/translations/locales/hu_HU.d.ts +1 -0
- package/es/translations/locales/hy.d.ts +1 -0
- package/es/translations/locales/id.d.ts +1 -0
- package/es/translations/locales/id_ID.d.ts +1 -0
- package/es/translations/locales/is.d.ts +1 -0
- package/es/translations/locales/it.d.ts +1 -0
- package/es/translations/locales/ja.d.ts +1 -0
- package/es/translations/locales/ko.d.ts +1 -0
- package/es/translations/locales/ko_KR.d.ts +1 -0
- package/es/translations/locales/lt.d.ts +1 -0
- package/es/translations/locales/lt_LT.d.ts +1 -0
- package/es/translations/locales/mi.d.ts +1 -0
- package/es/translations/locales/mn_MN.d.ts +1 -0
- package/es/translations/locales/ms.d.ts +1 -0
- package/es/translations/locales/nb-x-k12.d.ts +1 -0
- package/es/translations/locales/nb.d.ts +1 -0
- package/es/translations/locales/nl.d.ts +1 -0
- package/es/translations/locales/nl_NL.d.ts +1 -0
- package/es/translations/locales/nn.d.ts +1 -0
- package/es/translations/locales/pl.d.ts +1 -0
- package/es/translations/locales/pt.d.ts +1 -0
- package/es/translations/locales/pt_BR.d.ts +1 -0
- package/es/translations/locales/ro.d.ts +1 -0
- package/es/translations/locales/ru.d.ts +1 -0
- package/es/translations/locales/se.d.ts +1 -0
- package/es/translations/locales/sl.d.ts +1 -0
- package/es/translations/locales/sv-x-k12.d.ts +1 -0
- package/es/translations/locales/sv.d.ts +1 -0
- package/es/translations/locales/sv_SE.d.ts +1 -0
- package/es/translations/locales/tg.d.ts +1 -0
- package/es/translations/locales/th.d.ts +1 -0
- package/es/translations/locales/th_TH.d.ts +1 -0
- package/es/translations/locales/tl_PH.d.ts +1 -0
- package/es/translations/locales/tr.d.ts +1 -0
- package/es/translations/locales/uk_UA.d.ts +1 -0
- package/es/translations/locales/vi.d.ts +1 -0
- package/es/translations/locales/vi_VN.d.ts +1 -0
- package/es/translations/locales/zh-Hans.d.ts +1 -0
- package/es/translations/locales/zh-Hant.d.ts +1 -0
- package/es/translations/locales/zh.d.ts +1 -0
- package/es/translations/locales/zh_HK.d.ts +1 -0
- package/es/translations/locales/zh_TW.Big5.d.ts +1 -0
- package/es/translations/locales/zh_TW.d.ts +1 -0
- package/es/translations/tinymce/ar_SA.d.ts +0 -0
- package/es/translations/tinymce/bg_BG.d.ts +0 -0
- package/es/translations/tinymce/ca.d.ts +0 -0
- package/es/translations/tinymce/cs.d.ts +0 -0
- package/es/translations/tinymce/cy.d.ts +0 -0
- package/es/translations/tinymce/da.d.ts +0 -0
- package/es/translations/tinymce/de.d.ts +0 -0
- package/es/translations/tinymce/el.d.ts +0 -0
- package/es/translations/tinymce/en_GB.d.ts +0 -0
- package/es/translations/tinymce/es.d.ts +0 -0
- package/es/translations/tinymce/fa_IR.d.ts +0 -0
- package/es/translations/tinymce/fi.d.ts +0 -0
- package/es/translations/tinymce/fr_FR.d.ts +0 -0
- package/es/translations/tinymce/ga.d.ts +0 -0
- package/es/translations/tinymce/he_IL.d.ts +0 -0
- package/es/translations/tinymce/hu_HU.d.ts +0 -0
- package/es/translations/tinymce/hy.d.ts +0 -0
- package/es/translations/tinymce/id.d.ts +0 -0
- package/es/translations/tinymce/it.d.ts +0 -0
- package/es/translations/tinymce/ja.d.ts +0 -0
- package/es/translations/tinymce/ko_KR.d.ts +0 -0
- package/es/translations/tinymce/nb_NO.d.ts +0 -0
- package/es/translations/tinymce/nl.d.ts +0 -0
- package/es/translations/tinymce/pl.d.ts +0 -0
- package/es/translations/tinymce/pt_BR.d.ts +0 -0
- package/es/translations/tinymce/pt_PT.d.ts +0 -0
- package/es/translations/tinymce/ro.d.ts +0 -0
- package/es/translations/tinymce/ru.d.ts +0 -0
- package/es/translations/tinymce/ru_RU.d.ts +0 -0
- package/es/translations/tinymce/sl.d.ts +0 -0
- package/es/translations/tinymce/sr.d.ts +0 -0
- package/es/translations/tinymce/sv_SE.d.ts +0 -0
- package/es/translations/tinymce/th.d.ts +0 -0
- package/es/translations/tinymce/tr_TR.d.ts +0 -0
- package/es/translations/tinymce/uk_UA.d.ts +0 -0
- package/es/translations/tinymce/vi_VN.d.ts +0 -0
- package/es/translations/tinymce/zh_CN.d.ts +0 -0
- package/es/translations/tinymce/zh_TW.d.ts +0 -0
- package/es/util/DeepPartialNullable.d.ts +15 -0
- package/es/util/ExtractRequired.d.ts +42 -0
- package/es/util/TypedDict.d.ts +99 -0
- package/es/util/assertNever.d.ts +24 -0
- package/es/util/elem-util.d.ts +6 -0
- package/es/util/encrypted-storage.d.ts +9 -0
- package/es/util/file-url-util.d.ts +1 -0
- package/es/util/fullscreenHelpers.d.ts +6 -0
- package/es/util/instui-icon-helper.d.ts +19 -0
- package/es/util/loadingPlaceholder.d.ts +39 -0
- package/es/util/simpleCache.d.ts +11 -0
- package/es/util/string-util.d.ts +20 -0
- package/es/util/textarea-editing-util.d.ts +35 -0
- package/es/util/tinymce-plugin-util.d.ts +16 -0
- package/es/util/url-util.d.ts +32 -0
- package/package.json +2 -3
- package/scripts/build.js +0 -40
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export function startFlickrSearch(term: any): {
|
|
2
|
+
type: string;
|
|
3
|
+
term: any;
|
|
4
|
+
};
|
|
5
|
+
export function receiveFlickrResults(results: any): {
|
|
6
|
+
type: string;
|
|
7
|
+
results: any;
|
|
8
|
+
};
|
|
9
|
+
export function failFlickrSearch(error: any): {
|
|
10
|
+
type: string;
|
|
11
|
+
error: any;
|
|
12
|
+
};
|
|
13
|
+
export function openOrCloseFlickrForm(): {
|
|
14
|
+
type: string;
|
|
15
|
+
};
|
|
16
|
+
export function searchFlickr(term: any): (dispatch: any, getState: any) => any;
|
|
17
|
+
export const START_FLICKR_SEARCH: "START_FLICKR_SEARCH";
|
|
18
|
+
export const RECEIVE_FLICKR_RESULTS: "RECEIVE_FLICKR_RESULTS";
|
|
19
|
+
export const FAIL_FLICKR_SEARCH: "FAIL_FLICKR_SEARCH";
|
|
20
|
+
export const TOGGLE_FLICKR_FORM: "TOGGLE_FLICKR_FORM";
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
export function createAddImage({ id, filename, display_name, url, thumbnail_url }: {
|
|
2
|
+
id: any;
|
|
3
|
+
filename: any;
|
|
4
|
+
display_name: any;
|
|
5
|
+
url: any;
|
|
6
|
+
thumbnail_url: any;
|
|
7
|
+
}, contextType: any): {
|
|
8
|
+
type: string;
|
|
9
|
+
payload: {
|
|
10
|
+
newImage: {
|
|
11
|
+
id: any;
|
|
12
|
+
filename: any;
|
|
13
|
+
display_name: any;
|
|
14
|
+
preview_url: any;
|
|
15
|
+
thumbnail_url: any;
|
|
16
|
+
};
|
|
17
|
+
contextType: any;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export function requestInitialImages(contextType: any): {
|
|
21
|
+
type: string;
|
|
22
|
+
payload: {
|
|
23
|
+
contextType: any;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export function requestImages(contextType: any): {
|
|
27
|
+
type: string;
|
|
28
|
+
payload: {
|
|
29
|
+
contextType: any;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
export function receiveImages({ response, contextType, opts }: {
|
|
33
|
+
response: any;
|
|
34
|
+
contextType: any;
|
|
35
|
+
opts?: {} | undefined;
|
|
36
|
+
}): {
|
|
37
|
+
type: string;
|
|
38
|
+
payload: {
|
|
39
|
+
files: any;
|
|
40
|
+
bookmark: any;
|
|
41
|
+
contextType: any;
|
|
42
|
+
searchString: any;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
export function failImagesLoad({ error, contextType }: {
|
|
46
|
+
error: any;
|
|
47
|
+
contextType: any;
|
|
48
|
+
}): {
|
|
49
|
+
type: string;
|
|
50
|
+
payload: {
|
|
51
|
+
error: any;
|
|
52
|
+
contextType: any;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
export function fetchImages(opts?: {}): (dispatch: any, getState: any) => any;
|
|
56
|
+
export function fetchNextImages(opts?: {}): (dispatch: any, getState: any) => any;
|
|
57
|
+
export function fetchInitialImages(opts?: {}): (dispatch: any, getState: any) => any;
|
|
58
|
+
export const ADD_IMAGE: "action.images.add_image";
|
|
59
|
+
export const REQUEST_INITIAL_IMAGES: "action.images.request_initial_images";
|
|
60
|
+
export const REQUEST_IMAGES: "action.images.request_images";
|
|
61
|
+
export const RECEIVE_IMAGES: "action.images.receive_images";
|
|
62
|
+
export const FAIL_IMAGES_LOAD: "action.images.fail_images_load";
|
|
63
|
+
export function applyAttributes(file: any, opts: any): any;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export function requestInitialMedia(contextType: any): {
|
|
2
|
+
type: string;
|
|
3
|
+
payload: {
|
|
4
|
+
contextType: any;
|
|
5
|
+
};
|
|
6
|
+
};
|
|
7
|
+
export function requestMedia(contextType: any): {
|
|
8
|
+
type: string;
|
|
9
|
+
payload: {
|
|
10
|
+
contextType: any;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export function receiveMedia({ response, contextType }: {
|
|
14
|
+
response: any;
|
|
15
|
+
contextType: any;
|
|
16
|
+
}): {
|
|
17
|
+
type: string;
|
|
18
|
+
payload: {
|
|
19
|
+
files: any;
|
|
20
|
+
bookmark: any;
|
|
21
|
+
contextType: any;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export function failMedia({ error, contextType }: {
|
|
25
|
+
error: any;
|
|
26
|
+
contextType: any;
|
|
27
|
+
}): {
|
|
28
|
+
type: string;
|
|
29
|
+
payload: {
|
|
30
|
+
error: any;
|
|
31
|
+
contextType: any;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export function fetchMedia(): (dispatch: any, getState: any) => any;
|
|
35
|
+
export function fetchNextMedia(): (dispatch: any, getState: any) => any;
|
|
36
|
+
export function fetchInitialMedia(): (dispatch: any, getState: any) => any;
|
|
37
|
+
export function updateMediaObject({ media_object_id, attachment_id, title, subtitles }: {
|
|
38
|
+
media_object_id: any;
|
|
39
|
+
attachment_id: any;
|
|
40
|
+
title: any;
|
|
41
|
+
subtitles: any;
|
|
42
|
+
}): (dispatch: any, getState: any) => Promise<[any, any]>;
|
|
43
|
+
export const REQUEST_INITIAL_MEDIA: "REQUEST_INITIAL_MEDIA";
|
|
44
|
+
export const REQUEST_MEDIA: "REQUEST_MEDIA";
|
|
45
|
+
export const RECEIVE_MEDIA: "RECEIVE_MEDIA";
|
|
46
|
+
export const FAIL_MEDIA: "FAIL_MEDIA";
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export function changeTab(index: any): {
|
|
2
|
+
type: string;
|
|
3
|
+
index: any;
|
|
4
|
+
};
|
|
5
|
+
export function changeAccordion(index: any): {
|
|
6
|
+
type: string;
|
|
7
|
+
index: any;
|
|
8
|
+
};
|
|
9
|
+
export function resetUI(): {
|
|
10
|
+
type: string;
|
|
11
|
+
};
|
|
12
|
+
export function hideSidebar(): {
|
|
13
|
+
type: string;
|
|
14
|
+
};
|
|
15
|
+
export function showSidebar(): {
|
|
16
|
+
type: string;
|
|
17
|
+
};
|
|
18
|
+
export const CHANGE_TAB: "CHANGE_TAB";
|
|
19
|
+
export const CHANGE_ACCORDION: "CHANGE_ACCORDION";
|
|
20
|
+
export const RESET_UI: "RESET_UI";
|
|
21
|
+
export const HIDE_SIDEBAR: "HIDE_SIDEBAR";
|
|
22
|
+
export const SHOW_SIDEBAR: "SHOW_SIDEBAR";
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
export function startLoading(): {
|
|
2
|
+
type: string;
|
|
3
|
+
};
|
|
4
|
+
export function stopLoading(): {
|
|
5
|
+
type: string;
|
|
6
|
+
};
|
|
7
|
+
export function receiveFolder({ id, name, parentId }: {
|
|
8
|
+
id: any;
|
|
9
|
+
name: any;
|
|
10
|
+
parentId: any;
|
|
11
|
+
}): {
|
|
12
|
+
type: string;
|
|
13
|
+
id: any;
|
|
14
|
+
name: any;
|
|
15
|
+
parentId: any;
|
|
16
|
+
};
|
|
17
|
+
export function failFoldersLoad(error: any): {
|
|
18
|
+
type: string;
|
|
19
|
+
error: any;
|
|
20
|
+
};
|
|
21
|
+
export function failMediaUpload(error: any): {
|
|
22
|
+
type: string;
|
|
23
|
+
error: any;
|
|
24
|
+
};
|
|
25
|
+
export function mediaUploadSuccess(): {
|
|
26
|
+
type: string;
|
|
27
|
+
};
|
|
28
|
+
export function startUpload(fileMetaProps: any): {
|
|
29
|
+
type: string;
|
|
30
|
+
file: any;
|
|
31
|
+
};
|
|
32
|
+
export function failUpload(error: any): {
|
|
33
|
+
type: string;
|
|
34
|
+
error: any;
|
|
35
|
+
};
|
|
36
|
+
export function quotaExceeded(error: any): {
|
|
37
|
+
type: string;
|
|
38
|
+
error: any;
|
|
39
|
+
};
|
|
40
|
+
export function completeUpload(results: any): {
|
|
41
|
+
type: string;
|
|
42
|
+
results: any;
|
|
43
|
+
};
|
|
44
|
+
export function openOrCloseUploadForm(): {
|
|
45
|
+
type: string;
|
|
46
|
+
};
|
|
47
|
+
export function processedFolderBatch({ folders }: {
|
|
48
|
+
folders: any;
|
|
49
|
+
}): {
|
|
50
|
+
type: string;
|
|
51
|
+
folders: any;
|
|
52
|
+
};
|
|
53
|
+
export function startMediaUploading(fileMetaProps: any): {
|
|
54
|
+
type: string;
|
|
55
|
+
payload: any;
|
|
56
|
+
};
|
|
57
|
+
export function stopMediaUploading(): {
|
|
58
|
+
type: string;
|
|
59
|
+
};
|
|
60
|
+
export function activateMediaUpload(fileMetaProps: any): (dispatch: any) => void;
|
|
61
|
+
export function removePlaceholdersFor(name: any): (dispatch: any) => void;
|
|
62
|
+
export function allUploadCompleteActions(results: any, fileMetaProps: any, contextType: any): ({
|
|
63
|
+
type: string;
|
|
64
|
+
payload: {
|
|
65
|
+
newImage: {
|
|
66
|
+
id: any;
|
|
67
|
+
filename: any;
|
|
68
|
+
display_name: any;
|
|
69
|
+
preview_url: any;
|
|
70
|
+
thumbnail_url: any;
|
|
71
|
+
};
|
|
72
|
+
contextType: any;
|
|
73
|
+
};
|
|
74
|
+
} | {
|
|
75
|
+
type: string;
|
|
76
|
+
id: any;
|
|
77
|
+
name: any;
|
|
78
|
+
url: any;
|
|
79
|
+
embed: any;
|
|
80
|
+
fileType: any;
|
|
81
|
+
} | {
|
|
82
|
+
type: string;
|
|
83
|
+
id: any;
|
|
84
|
+
fileId: any;
|
|
85
|
+
} | {
|
|
86
|
+
type: string;
|
|
87
|
+
results: any;
|
|
88
|
+
})[];
|
|
89
|
+
export function embedUploadResult(results: any, selectedTabType: any): any;
|
|
90
|
+
export function fetchFolders(bookmark: any): (dispatch: any, getState: any) => any;
|
|
91
|
+
export function mediaUploadComplete(error: any, uploadData: any): (dispatch: any, _getState: any) => void;
|
|
92
|
+
export function createMediaServerSession(): (dispatch: any, getState: any) => any;
|
|
93
|
+
export function uploadToIconMakerFolder(svg: any, uploadSettings?: {}): (_dispatch: any, getState: any) => any;
|
|
94
|
+
export function uploadToMediaFolder(tabContext: any, fileMetaProps: any): (dispatch: any, getState: any) => any;
|
|
95
|
+
export function setUsageRights(source: any, fileMetaProps: any, results: any): any;
|
|
96
|
+
export function getFileUrlIfMissing(source: any, results: any): any;
|
|
97
|
+
export function generateThumbnailUrl(results: any, fileDOMObject: any, reader: any): Promise<any>;
|
|
98
|
+
export function setAltText(altText: any, results: any): any;
|
|
99
|
+
export function handleFailures(error: any, dispatch: any): any;
|
|
100
|
+
export function uploadPreflight(tabContext: any, fileMetaProps: any): (dispatch: any, getState: any) => Promise<any>;
|
|
101
|
+
export const COMPLETE_FILE_UPLOAD: "COMPLETE_FILE_UPLOAD";
|
|
102
|
+
export const FAIL_FILE_UPLOAD: "FAIL_FILE_UPLOAD";
|
|
103
|
+
export const FAIL_FOLDERS_LOAD: "FAIL_FOLDERS_LOAD";
|
|
104
|
+
export const FAIL_MEDIA_UPLOAD: "FAIL_MEDIA_UPLOAD";
|
|
105
|
+
export const MEDIA_UPLOAD_SUCCESS: "MEDIA_UPLOAD_SUCCESS";
|
|
106
|
+
export const PROCESSED_FOLDER_BATCH: "PROCESSED_FOLDER_BATCH";
|
|
107
|
+
export const QUOTA_EXCEEDED_UPLOAD: "QUOTA_EXCEEDED_UPLOAD";
|
|
108
|
+
export const RECEIVE_FOLDER: "RECEIVE_FOLDER";
|
|
109
|
+
export const START_FILE_UPLOAD: "START_FILE_UPLOAD";
|
|
110
|
+
export const START_LOADING: "START_LOADING";
|
|
111
|
+
export const START_MEDIA_UPLOADING: "START_MEDIA_UPLOADING";
|
|
112
|
+
export const STOP_LOADING: "STOP_LOADING";
|
|
113
|
+
export const STOP_MEDIA_UPLOADING: "STOP_MEDIA_UPLOADING";
|
|
114
|
+
export const TOGGLE_UPLOAD_FORM: "TOGGLE_UPLOAD_FORM";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function propsFromState(state: any): any;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export default function propsFromDispatch(dispatch: any): {
|
|
2
|
+
loadSession: () => any;
|
|
3
|
+
onChangeTab: (index: any) => any;
|
|
4
|
+
onChangeAccordion: (index: any) => any;
|
|
5
|
+
fetchInitialPage: (key: any) => any;
|
|
6
|
+
fetchNextPage: (key: any) => any;
|
|
7
|
+
toggleFolder: (id: any) => any;
|
|
8
|
+
fetchFolders: () => any;
|
|
9
|
+
fetchInitialImages: (opts?: {
|
|
10
|
+
category: string;
|
|
11
|
+
}) => any;
|
|
12
|
+
fetchNextImages: (opts?: {
|
|
13
|
+
category: string;
|
|
14
|
+
}) => any;
|
|
15
|
+
startUpload: (tabContext: any, fileMetaProps: any) => any;
|
|
16
|
+
flickrSearch: (term: any) => any;
|
|
17
|
+
toggleFlickrForm: () => any;
|
|
18
|
+
toggleUploadForm: () => any;
|
|
19
|
+
toggleNewPageForm: () => any;
|
|
20
|
+
startIconMakerUpload: (fileMetaProps: any, uploadSettings: any) => any;
|
|
21
|
+
startMediaUpload: (tabContext: any, fileMetaProps: any) => any;
|
|
22
|
+
createMediaServerSession: () => any;
|
|
23
|
+
mediaUploadComplete: (error: any, uploadData: any) => any;
|
|
24
|
+
fetchInitialDocs: () => any;
|
|
25
|
+
fetchNextDocs: () => any;
|
|
26
|
+
fetchInitialMedia: () => any;
|
|
27
|
+
fetchNextMedia: () => any;
|
|
28
|
+
updateMediaObject: (new_values: any) => any;
|
|
29
|
+
onChangeContext: (newContext: any) => any;
|
|
30
|
+
onChangeSearchString: (searchString: any) => any;
|
|
31
|
+
onChangeSortBy: (sortBy: any) => any;
|
|
32
|
+
onAllFilesLoading: (isLoading: any) => any;
|
|
33
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (ev: DragEvent, html: string): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function allFilesLoading(state: {} | undefined, action: any): {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function _default(state: {} | undefined, action: any): {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function documentsReducer(prevState: {} | undefined, action: any): {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function filesReducer(state: {} | undefined, action: any): {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export function changeContextType(state: string | undefined, action: any): any;
|
|
2
|
+
export function changeContextId(state: string | undefined, action: any): any;
|
|
3
|
+
export function changeSearchString(state: string | undefined, action: any): any;
|
|
4
|
+
export function changeSortBy(state: {
|
|
5
|
+
order: string;
|
|
6
|
+
sort: string;
|
|
7
|
+
} | undefined, action: any): any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function _default(state: {} | undefined, action: any): {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export default function folderReducer(state: {
|
|
2
|
+
id: null;
|
|
3
|
+
name: null;
|
|
4
|
+
loadingCount: number;
|
|
5
|
+
loading: boolean;
|
|
6
|
+
requested: boolean;
|
|
7
|
+
expanded: boolean;
|
|
8
|
+
filesUrl: null;
|
|
9
|
+
foldersUrl: null;
|
|
10
|
+
parentId: null;
|
|
11
|
+
fileIds: never[];
|
|
12
|
+
folderIds: never[];
|
|
13
|
+
} | undefined, action: any): {
|
|
14
|
+
id: any;
|
|
15
|
+
name: any;
|
|
16
|
+
parentId: any;
|
|
17
|
+
filesUrl: any;
|
|
18
|
+
foldersUrl: any;
|
|
19
|
+
loadingCount: number;
|
|
20
|
+
loading: boolean;
|
|
21
|
+
requested: boolean;
|
|
22
|
+
expanded: boolean;
|
|
23
|
+
fileIds: never[];
|
|
24
|
+
folderIds: never[];
|
|
25
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function foldersReducer(state: {} | undefined, action: any): {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function imagesReducer(prevState: {} | undefined, action: any): {};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: import("redux").Reducer<import("redux").CombinedState<{
|
|
2
|
+
ui: import("redux").CombinedState<{
|
|
3
|
+
hidden: boolean;
|
|
4
|
+
selectedTabIndex: any;
|
|
5
|
+
selectedAccordionIndex: any;
|
|
6
|
+
}>;
|
|
7
|
+
source: string;
|
|
8
|
+
jwt: string;
|
|
9
|
+
host: string;
|
|
10
|
+
containingContext: string;
|
|
11
|
+
contextType: any;
|
|
12
|
+
contextId: any;
|
|
13
|
+
searchString: any;
|
|
14
|
+
sortBy: any;
|
|
15
|
+
all_files: {};
|
|
16
|
+
collections: import("redux").CombinedState<{
|
|
17
|
+
announcements: {};
|
|
18
|
+
assignments: {};
|
|
19
|
+
discussions: {};
|
|
20
|
+
modules: {};
|
|
21
|
+
quizzes: {};
|
|
22
|
+
wikiPages: {};
|
|
23
|
+
}>;
|
|
24
|
+
files: {};
|
|
25
|
+
folders: {};
|
|
26
|
+
rootFolderId: any;
|
|
27
|
+
images: {};
|
|
28
|
+
documents: {};
|
|
29
|
+
media: {};
|
|
30
|
+
upload: import("redux").CombinedState<{
|
|
31
|
+
uploading: boolean;
|
|
32
|
+
formExpanded: boolean;
|
|
33
|
+
folders: {};
|
|
34
|
+
rootFolderId: any;
|
|
35
|
+
folderTree: {};
|
|
36
|
+
error: {};
|
|
37
|
+
loadingFolders: boolean;
|
|
38
|
+
uploadingMediaStatus: never;
|
|
39
|
+
}>;
|
|
40
|
+
flickr: {};
|
|
41
|
+
session: any;
|
|
42
|
+
newPageLinkExpanded: boolean;
|
|
43
|
+
}>, any>;
|
|
44
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function mediaReducer(prevState: {} | undefined, action: any): {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function _default(state: boolean | undefined, action: any): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function _default(state?: string): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function rootFolderIdReducer(state: null | undefined, action: any): any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function sessionReducer(state: {} | undefined, action: any): any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _default: import("redux").Reducer<import("redux").CombinedState<{
|
|
2
|
+
uploading: boolean;
|
|
3
|
+
formExpanded: boolean;
|
|
4
|
+
folders: {};
|
|
5
|
+
rootFolderId: any;
|
|
6
|
+
folderTree: {};
|
|
7
|
+
error: {};
|
|
8
|
+
loadingFolders: boolean;
|
|
9
|
+
uploadingMediaStatus: never;
|
|
10
|
+
}>, any>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export default function _default(props?: {}): {
|
|
2
|
+
ui: {
|
|
3
|
+
selectedAccordionIndex: string | null | undefined;
|
|
4
|
+
};
|
|
5
|
+
source: any;
|
|
6
|
+
jwt: any;
|
|
7
|
+
host: any;
|
|
8
|
+
contextType: any;
|
|
9
|
+
contextId: any;
|
|
10
|
+
collections: any;
|
|
11
|
+
files: any;
|
|
12
|
+
folders: any;
|
|
13
|
+
upload: any;
|
|
14
|
+
images: any;
|
|
15
|
+
documents: any;
|
|
16
|
+
media: any;
|
|
17
|
+
flickr: any;
|
|
18
|
+
newPageLinkExpanded: any;
|
|
19
|
+
searchString: any;
|
|
20
|
+
sortBy: any;
|
|
21
|
+
all_files: any;
|
|
22
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|