pagepilot-visual-editor 1.0.2
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/CHANGELOG.md +64 -0
- package/LICENSE +21 -0
- package/README.md +553 -0
- package/dist/PagePilotEditor.d.ts +17 -0
- package/dist/blocks-internal/block-button/src/NudegeIcons.d.ts +18 -0
- package/dist/blocks-internal/block-button/src/icons.d.ts +5 -0
- package/dist/blocks-internal/block-button/src/index.d.ts +145 -0
- package/dist/blocks-internal/block-button-group/src/index.d.ts +35 -0
- package/dist/blocks-internal/block-columns-container/src/index.d.ts +38 -0
- package/dist/blocks-internal/block-container/src/index.d.ts +72 -0
- package/dist/blocks-internal/block-divider/src/index.d.ts +23 -0
- package/dist/blocks-internal/block-grid/src/index.d.ts +32 -0
- package/dist/blocks-internal/block-heading/src/index.d.ts +99 -0
- package/dist/blocks-internal/block-html/src/index.d.ts +56 -0
- package/dist/blocks-internal/block-iframe/src/index.d.ts +26 -0
- package/dist/blocks-internal/block-image/src/index.d.ts +68 -0
- package/dist/blocks-internal/block-logo/src/index.d.ts +64 -0
- package/dist/blocks-internal/block-stepper/src/index.d.ts +52 -0
- package/dist/blocks-internal/block-text/src/EmailMarkdown.d.ts +8 -0
- package/dist/blocks-internal/block-text/src/index.d.ts +70 -0
- package/dist/blocks-internal/block-video/src/index.d.ts +46 -0
- package/dist/blocks-internal/block-youtube-url/src/index.d.ts +32 -0
- package/dist/editor/Shell.d.ts +6 -0
- package/dist/editor/StatusPill.d.ts +3 -0
- package/dist/editor/Topbar.d.ts +27 -0
- package/dist/editor/blockToggles.d.ts +12 -0
- package/dist/editor/theme.d.ts +10 -0
- package/dist/editor/types.d.ts +128 -0
- package/dist/editor-sample/App/InspectorDrawer/BehaviourPanel.d.ts +1 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/BlockStyleClipboardBar.d.ts +16 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/blockStyleClipboard.d.ts +83 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/index.d.ts +5 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/AccessibilityToolsSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/AccordionSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/AvatarSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/ButtonGroupSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/ButtonSidebarPanel.d.ts +7 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/CalendlySidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/CarouselSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/ColumnsContainerSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/ContainerSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/DividerSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/FlexColumns/ColumnSection.d.ts +10 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/FlexColumnsSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/GridSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/HeadingSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/HtmlSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/IframeSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/ImageSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/LogoSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/MarqueeSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/PagePilotLayoutSidebarPanel.d.ts +24 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/PricingAccordionSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/PricingAccordionSidebarPanel.styled.d.ts +7 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/RatingSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/SkipLinkSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/SpacerSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/StepperSidebarPanel.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/TabsBlockSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/TextSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/VideoSidebarPanel.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/BaseSidebarPanel.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/CollapsibleSection.d.ts +13 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/ContrastWarning.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/MediaLibraryButton.d.ts +17 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/SectionWrapper.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/contrast.d.ts +10 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/BooleanInput.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/CodeEditor.d.ts +7 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColorInput/BaseColorInput.d.ts +14 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColorInput/Picker.d.ts +28 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColorInput/Swatch.d.ts +7 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColorInput/index.d.ts +14 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColumnWidthsInput.d.ts +10 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontFamily.d.ts +11 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontSizeInput.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontStyleInput.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontWeightInput.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/NumberInput.d.ts +22 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/PaddingInput.d.ts +16 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/RadioGroupInput.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/RadiusInput.d.ts +20 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/SliderInput.d.ts +14 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/SwitchInput.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextAlignInput.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextDecorationInput.d.ts +8 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextDimensionInput.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextInput.d.ts +24 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/WidthInputWithSelect.d.ts +12 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/raw/RawSliderInput.d.ts +13 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/MultiStylePropertyPanel.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/SingleStylePropertyPanel.d.ts +9 -0
- package/dist/editor-sample/App/InspectorDrawer/EditorBehavior.d.ts +21 -0
- package/dist/editor-sample/App/InspectorDrawer/LayersPanel.d.ts +2 -0
- package/dist/editor-sample/App/InspectorDrawer/LayersPanelStyles.d.ts +27 -0
- package/dist/editor-sample/App/InspectorDrawer/LayoutPanel/BlocksPanel.d.ts +3 -0
- package/dist/editor-sample/App/InspectorDrawer/LayoutPanel/icons/index.d.ts +16 -0
- package/dist/editor-sample/App/InspectorDrawer/LayoutPanel/index.d.ts +6 -0
- package/dist/editor-sample/App/InspectorDrawer/LayoutPanel/templateHelpers.d.ts +1 -0
- package/dist/editor-sample/App/InspectorDrawer/StylesPanel.d.ts +6 -0
- package/dist/editor-sample/App/InspectorDrawer/hooks/useScalarFieldInput.d.ts +23 -0
- package/dist/editor-sample/App/InspectorDrawer/icons/index.d.ts +53 -0
- package/dist/editor-sample/App/InspectorDrawer/index.d.ts +16 -0
- package/dist/editor-sample/App/InspectorDrawer/layerClipboard.d.ts +7 -0
- package/dist/editor-sample/App/InspectorDrawer/useLayerNode.d.ts +35 -0
- package/dist/editor-sample/App/SelectionOverlay/index.d.ts +0 -0
- package/dist/editor-sample/App/TemplatePanel/HtmlPanel.d.ts +2 -0
- package/dist/editor-sample/App/TemplatePanel/JsonPanel.d.ts +2 -0
- package/dist/editor-sample/App/TemplatePanel/helper/HighlightedCodePanel.d.ts +7 -0
- package/dist/editor-sample/App/TemplatePanel/helper/highlighters.d.ts +2 -0
- package/dist/editor-sample/App/TemplatePanel/hooks/index.d.ts +3 -0
- package/dist/editor-sample/App/TemplatePanel/hooks/useDragSelection.d.ts +23 -0
- package/dist/editor-sample/App/TemplatePanel/hooks/useMainBoxStyles.d.ts +12 -0
- package/dist/editor-sample/App/TemplatePanel/hooks/usePanelPositioning.d.ts +25 -0
- package/dist/editor-sample/App/TemplatePanel/index.d.ts +17 -0
- package/dist/editor-sample/App/TemplatePanel/pageGuide/AhdMarkerLayer.d.ts +19 -0
- package/dist/editor-sample/App/TemplatePanel/pageGuide/elementBounds.d.ts +24 -0
- package/dist/editor-sample/App/TemplatePanel/pageGuide/iframeSrcDoc.d.ts +6 -0
- package/dist/editor-sample/App/TemplatePanel/pageGuide/useAhdMarkers.d.ts +28 -0
- package/dist/editor-sample/App/TemplatePanel/types.d.ts +36 -0
- package/dist/editor-sample/App/TemplatePanel/utils/index.d.ts +1 -0
- package/dist/editor-sample/App/TemplatePanel/utils/positioningUtils.d.ts +16 -0
- package/dist/editor-sample/App/hooks/constants.d.ts +10 -0
- package/dist/editor-sample/App/hooks/page/menuHrefBaselines.d.ts +10 -0
- package/dist/editor-sample/App/hooks/page/saveMenuHrefEdits.d.ts +1 -0
- package/dist/editor-sample/App/hooks/page/useSaveHandler.d.ts +21 -0
- package/dist/editor-sample/App/hooks/useGetPageType.d.ts +3 -0
- package/dist/editor-sample/App/hooks/usePreviewScreen.d.ts +8 -0
- package/dist/editor-sample/App/shared/AddSectionDialog.d.ts +12 -0
- package/dist/editor-sample/App/shared/PagePreviewFrame.d.ts +16 -0
- package/dist/editor-sample/App/shared/PreviewDialog.d.ts +15 -0
- package/dist/editor-sample/App/shared/SectionsDropdown.d.ts +10 -0
- package/dist/editor-sample/App/shared/editor.styles.d.ts +21 -0
- package/dist/editor-sample/App/shared/multipleSections.styled.d.ts +18 -0
- package/dist/editor-sample/App/shared/pageSections.d.ts +28 -0
- package/dist/editor-sample/documents/blocks/AccessibilityTools/AccessibilityToolsEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/AccessibilityTools/AccessibilityToolsPropsSchema.d.ts +1 -0
- package/dist/editor-sample/documents/blocks/Accordion/AccordionEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/Accordion/AccordionPropsSchema.d.ts +41 -0
- package/dist/editor-sample/documents/blocks/ButtonGroup/ButtonGroupEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/ButtonGroup/ButtonGroupPropsSchema.d.ts +31 -0
- package/dist/editor-sample/documents/blocks/Carousel/CarouselEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/Carousel/CarouselPropsSchema.d.ts +47 -0
- package/dist/editor-sample/documents/blocks/ColumnsContainer/ColumnsContainerEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/ColumnsContainer/ColumnsContainerPropsSchema.d.ts +49 -0
- package/dist/editor-sample/documents/blocks/Container/ContainerEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/Container/ContainerPropsSchema.d.ts +52 -0
- package/dist/editor-sample/documents/blocks/FlexColumns/FlexColumnsEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/FlexColumns/FlexColumnsPropsSchema.d.ts +1 -0
- package/dist/editor-sample/documents/blocks/Grid/GridEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/Grid/GridPropsSchema.d.ts +48 -0
- package/dist/editor-sample/documents/blocks/Marquee/MarqueeEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/Marquee/MarqueePropsSchema.d.ts +37 -0
- package/dist/editor-sample/documents/blocks/PagePilotLayout/PagePilotLayoutEditor.d.ts +2 -0
- package/dist/editor-sample/documents/blocks/PagePilotLayout/PagePilotLayoutPropsSchema.d.ts +151 -0
- package/dist/editor-sample/documents/blocks/PricingAccordion/PricingAccordionEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/PricingAccordion/PricingAccordionPropsSchema.d.ts +77 -0
- package/dist/editor-sample/documents/blocks/Rating/RatingEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/Rating/RatingPropsSchema.d.ts +31 -0
- package/dist/editor-sample/documents/blocks/SkipLink/SkipLinkEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/SkipLink/SkipLinkPropsSchema.d.ts +1 -0
- package/dist/editor-sample/documents/blocks/TabsBlock/TabsBlockEditor.d.ts +3 -0
- package/dist/editor-sample/documents/blocks/TabsBlock/TabsBlockPropsSchema.d.ts +53 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/BlockButton.d.ts +9 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/BlockInsertAboveContext.d.ts +2 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/BlocksMenu.d.ts +10 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/DividerButton.d.ts +7 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/PlaceholderButton.d.ts +6 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/ScopePickerMenu.d.ts +14 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/brandButtonDefaults.d.ts +14 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/buttons.d.ts +9 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/AddBlockMenu/index.d.ts +16 -0
- package/dist/editor-sample/documents/blocks/helpers/EditorChildrenIds/index.d.ts +16 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineEditableText.d.ts +6 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/FullscreenOverlay.d.ts +20 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/constants.d.ts +22 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/dialogs/ImageDialog.d.ts +20 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/dialogs/LinkDialog.d.ts +23 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/dialogs/VideoDialog.d.ts +9 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/dom.d.ts +6 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/focusGuard.d.ts +7 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/format.d.ts +19 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/hooks/useCodeView.d.ts +35 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/hooks/useFormatPainter.d.ts +18 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/hooks/useFormatState.d.ts +11 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/hooks/useFullscreen.d.ts +24 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/hooks/useToolbarCommands.d.ts +66 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/hooks/useToolbarDrag.d.ts +21 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/hooks/useToolbarPosition.d.ts +7 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/index.d.ts +17 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/inlineEditChrome.d.ts +6 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/popovers/ColorSwatchPopover.d.ts +21 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/popovers/ImagePopover.d.ts +16 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/popovers/OverflowMenu.d.ts +13 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/popovers/TableGridPicker.d.ts +10 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/primitives/Divider.d.ts +8 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/primitives/Dropdown.d.ts +27 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/primitives/HoverButton.d.ts +27 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/primitives/IconBtn.d.ts +16 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/primitives/MenuItem.d.ts +32 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/primitives/MicIcon.d.ts +7 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/primitives/NoteIcon.d.ts +15 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/selection.d.ts +17 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/styles.d.ts +14 -0
- package/dist/editor-sample/documents/blocks/helpers/InlineTextToolbar/types.d.ts +36 -0
- package/dist/editor-sample/documents/blocks/helpers/TStyle.d.ts +17 -0
- package/dist/editor-sample/documents/blocks/helpers/TemplateTokenOverlay.d.ts +44 -0
- package/dist/editor-sample/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.d.ts +6 -0
- package/dist/editor-sample/documents/blocks/helpers/block-wrappers/ReaderBlockWrapper.d.ts +8 -0
- package/dist/editor-sample/documents/blocks/helpers/block-wrappers/TuneMenu.d.ts +6 -0
- package/dist/editor-sample/documents/blocks/helpers/block-wrappers/useCanvasDrop.d.ts +18 -0
- package/dist/editor-sample/documents/blocks/helpers/blockVisibility.d.ts +27 -0
- package/dist/editor-sample/documents/blocks/helpers/documentUtils.d.ts +126 -0
- package/dist/editor-sample/documents/blocks/helpers/fontFamily.d.ts +33 -0
- package/dist/editor-sample/documents/blocks/helpers/fontWeight.d.ts +13 -0
- package/dist/editor-sample/documents/blocks/helpers/zod.d.ts +48 -0
- package/dist/editor-sample/documents/editor/EditorBlock.d.ts +13 -0
- package/dist/editor-sample/documents/editor/EditorContext.d.ts +347 -0
- package/dist/editor-sample/documents/editor/EditorVariantContext.d.ts +4 -0
- package/dist/editor-sample/documents/editor/LazyEditorBlock.d.ts +26 -0
- package/dist/editor-sample/documents/editor/core.d.ts +1212 -0
- package/dist/editor-sample/documents/editor/prefillDefaultValues.d.ts +12 -0
- package/dist/editor-sample/documents/editor/templateVariables.d.ts +50 -0
- package/dist/editor-sample/getConfiguration/index.d.ts +1 -0
- package/dist/editor-sample/getConfiguration/sample/empty-email-message.d.ts +3 -0
- package/dist/editor-sample/getConfiguration/sample/one-time-passcode.d.ts +3 -0
- package/dist/editor-sample/getConfiguration/sample/order-ecommerce.d.ts +3 -0
- package/dist/editor-sample/getConfiguration/sample/post-metrics-report.d.ts +3 -0
- package/dist/editor-sample/getConfiguration/sample/reservation-reminder.d.ts +3 -0
- package/dist/editor-sample/getConfiguration/sample/reset-password.d.ts +3 -0
- package/dist/editor-sample/getConfiguration/sample/respond-to-message.d.ts +3 -0
- package/dist/editor-sample/getConfiguration/sample/subscription-receipt.d.ts +3 -0
- package/dist/editor-sample/getConfiguration/sample/welcome.d.ts +3 -0
- package/dist/editor-sample/utils/editorKvStore.d.ts +5 -0
- package/dist/email-builder-core/Reader/ReaderBlockShim.d.ts +10 -0
- package/dist/email-builder-core/Reader/core.d.ts +35 -0
- package/dist/email-builder-core/blocks/AccessibilityTools/AccessibilityToolsPropsSchema.d.ts +79 -0
- package/dist/email-builder-core/blocks/AccessibilityTools/AccessibilityToolsReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/AccessibilityTools/icons.d.ts +4 -0
- package/dist/email-builder-core/blocks/Accordion/AccordionPropsSchema.d.ts +35 -0
- package/dist/email-builder-core/blocks/Accordion/AccordionReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/ButtonGroup/ButtonGroupPropsSchema.d.ts +31 -0
- package/dist/email-builder-core/blocks/ButtonGroup/ButtonGroupReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/Calendly/CalendlyPropsSchema.d.ts +24 -0
- package/dist/email-builder-core/blocks/Calendly/CalendlyReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/Carousel/CarouselPropsSchema.d.ts +47 -0
- package/dist/email-builder-core/blocks/Carousel/CarouselReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/ColumnsContainer/ColumnsContainerPropsSchema.d.ts +53 -0
- package/dist/email-builder-core/blocks/ColumnsContainer/ColumnsContainerReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/Container/ContainerPropsSchema.d.ts +52 -0
- package/dist/email-builder-core/blocks/Container/ContainerReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/FlexColumns/FlexColumnsPropsSchema.d.ts +44 -0
- package/dist/email-builder-core/blocks/FlexColumns/FlexColumnsReader.d.ts +2 -0
- package/dist/email-builder-core/blocks/FlexColumns/flexColumnsHelpers.d.ts +10 -0
- package/dist/email-builder-core/blocks/Grid/GridPropsSchema.d.ts +48 -0
- package/dist/email-builder-core/blocks/Grid/GridReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/Marquee/MarqueePropsSchema.d.ts +36 -0
- package/dist/email-builder-core/blocks/Marquee/MarqueeReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/PagePilotLayout/PagePilotLayoutPropsSchema.d.ts +103 -0
- package/dist/email-builder-core/blocks/PagePilotLayout/PagePilotLayoutReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/PricingAccordion/PricingAccordionPropsSchema.d.ts +77 -0
- package/dist/email-builder-core/blocks/PricingAccordion/PricingAccordionReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/Rating/RatingPropsSchema.d.ts +30 -0
- package/dist/email-builder-core/blocks/Rating/RatingReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/SkipLink/SkipLinkPropsSchema.d.ts +42 -0
- package/dist/email-builder-core/blocks/SkipLink/SkipLinkReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/TabsBlock/TabsBlockPropsSchema.d.ts +53 -0
- package/dist/email-builder-core/blocks/TabsBlock/TabsBlockReader.d.ts +3 -0
- package/dist/email-builder-core/blocks/helpers/blockStyleHelpers.d.ts +15 -0
- package/dist/email-builder-core/helpers/fontFamily.d.ts +33 -0
- package/dist/email-builder-core/helpers/fontWeight.d.ts +13 -0
- package/dist/email-builder-core/helpers/screen.d.ts +13 -0
- package/dist/email-builder-core/helpers/templateVariables.d.ts +14 -0
- package/dist/email-builder-core/index.d.ts +3 -0
- package/dist/email-builder-core/renderers/accessibilityTools.d.ts +35 -0
- package/dist/email-builder-core/renderers/pageScripts.d.ts +7 -0
- package/dist/email-builder-core/renderers/renderDynamicCss.d.ts +1 -0
- package/dist/email-builder-core/renderers/renderToStaticMarkup.d.ts +41 -0
- package/dist/host-stubs/_passthrough.d.ts +2 -0
- package/dist/host-stubs/i18n.d.ts +8 -0
- package/dist/host-stubs/style/menu.styled.d.ts +15 -0
- package/dist/host-stubs/style/styled.d.ts +34 -0
- package/dist/host-stubs/theme/theme.d.ts +2 -0
- package/dist/host-stubs/view/images/Icons.d.ts +649 -0
- package/dist/host-stubs/view/media/MediaGalleryDialog.d.ts +2 -0
- package/dist/host-stubs/view/shared/message.d.ts +11 -0
- package/dist/host-stubs/view/shared/modals/PopupConfirm.d.ts +11 -0
- package/dist/index.cjs +1630 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +168332 -0
- package/dist/style.css +1 -0
- package/package.json +115 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const __passthrough: any;
|
|
2
|
+
export default __passthrough;
|
|
3
|
+
export declare const addTabButtonSx: any;
|
|
4
|
+
export declare const menuItemHrefFieldSx: any;
|
|
5
|
+
export declare const menuSidebarSelectSx: any;
|
|
6
|
+
export declare const menuEditorEmptyState: any;
|
|
7
|
+
export declare const menuNav: any;
|
|
8
|
+
export declare const menuSlot: any;
|
|
9
|
+
export declare const menuList: any;
|
|
10
|
+
export declare const menuListItem: any;
|
|
11
|
+
export declare const menuLink: any;
|
|
12
|
+
export declare const menuIcon: any;
|
|
13
|
+
export declare const menuChildrenWrapper: any;
|
|
14
|
+
export declare const menuToggleInput: any;
|
|
15
|
+
export declare const menuBurgerLabel: any;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const EDITOR_INPUT_HEIGHT = 34;
|
|
2
|
+
export declare const editorSelectSx: {
|
|
3
|
+
"&.MuiInputBase-root": {
|
|
4
|
+
height: number;
|
|
5
|
+
background: string;
|
|
6
|
+
};
|
|
7
|
+
"& .MuiOutlinedInput-input": {
|
|
8
|
+
paddingY: number;
|
|
9
|
+
};
|
|
10
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
11
|
+
border: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export declare const editorTextFieldSx: {
|
|
15
|
+
"& .MuiOutlinedInput-root": {
|
|
16
|
+
borderRadius: number;
|
|
17
|
+
height: number;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export declare const getTextFieldSx: (_theme?: any, sx?: object) => {
|
|
21
|
+
mt: number;
|
|
22
|
+
mb: number;
|
|
23
|
+
"& .MuiOutlinedInput-root": {
|
|
24
|
+
borderRadius: number;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
export declare const getSidebarSelectSx: (_theme?: any, sx?: object) => {};
|
|
28
|
+
export declare const getSidebarSelectMenuProps: (_theme?: any) => {
|
|
29
|
+
PaperProps: {
|
|
30
|
+
sx: {
|
|
31
|
+
maxHeight: number;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,649 @@
|
|
|
1
|
+
import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
2
|
+
export declare const LiveIcon: {
|
|
3
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
4
|
+
muiName: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const PageIcon: {
|
|
7
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
8
|
+
muiName: string;
|
|
9
|
+
};
|
|
10
|
+
export declare const PageIconDashboard: (props: SvgIconProps) => import("react").JSX.Element;
|
|
11
|
+
export declare const DraftIcon: {
|
|
12
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
13
|
+
muiName: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const ViewIcon: {
|
|
16
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
17
|
+
muiName: string;
|
|
18
|
+
};
|
|
19
|
+
export declare const ViewIconNew: {
|
|
20
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
21
|
+
muiName: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const EditIcon: {
|
|
24
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
25
|
+
muiName: string;
|
|
26
|
+
};
|
|
27
|
+
export declare const EditIconListView: (props: SvgIconProps) => import("react").JSX.Element;
|
|
28
|
+
export declare const TrashIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
29
|
+
export declare const TrashIconListView: (props: SvgIconProps) => import("react").JSX.Element;
|
|
30
|
+
export declare const DeleteIcon: {
|
|
31
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
32
|
+
muiName: string;
|
|
33
|
+
};
|
|
34
|
+
export declare const DeleteOutlined: {
|
|
35
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
36
|
+
muiName: string;
|
|
37
|
+
};
|
|
38
|
+
export declare const SaveIcon: {
|
|
39
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
40
|
+
muiName: string;
|
|
41
|
+
};
|
|
42
|
+
export declare const BrowseIcon: {
|
|
43
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
44
|
+
muiName: string;
|
|
45
|
+
};
|
|
46
|
+
export declare const RenameIcon: {
|
|
47
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
48
|
+
muiName: string;
|
|
49
|
+
};
|
|
50
|
+
export declare const TourIcon: {
|
|
51
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
52
|
+
muiName: string;
|
|
53
|
+
};
|
|
54
|
+
export declare const TourIconDashboard: (props: SvgIconProps) => import("react").JSX.Element;
|
|
55
|
+
export declare const HomeIcon: {
|
|
56
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
57
|
+
muiName: string;
|
|
58
|
+
};
|
|
59
|
+
export declare const SaveOutlined: {
|
|
60
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
61
|
+
muiName: string;
|
|
62
|
+
};
|
|
63
|
+
export declare const HelpAndSupportIcon: {
|
|
64
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
65
|
+
muiName: string;
|
|
66
|
+
};
|
|
67
|
+
export declare const ArrowForward: {
|
|
68
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
69
|
+
muiName: string;
|
|
70
|
+
};
|
|
71
|
+
export declare const NorthEastIcon: {
|
|
72
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
73
|
+
muiName: string;
|
|
74
|
+
};
|
|
75
|
+
export declare const AddIcon: {
|
|
76
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
77
|
+
muiName: string;
|
|
78
|
+
};
|
|
79
|
+
export declare const ChervronDown: {
|
|
80
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
81
|
+
muiName: string;
|
|
82
|
+
};
|
|
83
|
+
export declare const WalkthroughIcon: {
|
|
84
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
85
|
+
muiName: string;
|
|
86
|
+
};
|
|
87
|
+
export declare const TooltipIcon: {
|
|
88
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
89
|
+
muiName: string;
|
|
90
|
+
};
|
|
91
|
+
export declare const ZapIcon: {
|
|
92
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
93
|
+
muiName: string;
|
|
94
|
+
};
|
|
95
|
+
export declare const LayoutRight: {
|
|
96
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
97
|
+
muiName: string;
|
|
98
|
+
};
|
|
99
|
+
export declare const LayoutLeft: {
|
|
100
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
101
|
+
muiName: string;
|
|
102
|
+
};
|
|
103
|
+
export declare const FabIcon: {
|
|
104
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
105
|
+
muiName: string;
|
|
106
|
+
};
|
|
107
|
+
export declare const BannerIcon: {
|
|
108
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
109
|
+
muiName: string;
|
|
110
|
+
};
|
|
111
|
+
export declare const BannerIconDashboard: (props: SvgIconProps) => import("react").JSX.Element;
|
|
112
|
+
export declare const PageMenuIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
113
|
+
export declare const ArrowUpRight: {
|
|
114
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
115
|
+
muiName: string;
|
|
116
|
+
};
|
|
117
|
+
export declare const CheckboxIcon: {
|
|
118
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
119
|
+
muiName: string;
|
|
120
|
+
};
|
|
121
|
+
export declare const CheckedIcon: {
|
|
122
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
123
|
+
muiName: string;
|
|
124
|
+
};
|
|
125
|
+
export declare const FabSmIcon: {
|
|
126
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
127
|
+
muiName: string;
|
|
128
|
+
};
|
|
129
|
+
export declare const AiIcon: {
|
|
130
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
131
|
+
muiName: string;
|
|
132
|
+
};
|
|
133
|
+
export declare const AiIcon2: (props: SvgIconProps) => import("react").JSX.Element;
|
|
134
|
+
export declare const FabIconDark: {
|
|
135
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
136
|
+
muiName: string;
|
|
137
|
+
};
|
|
138
|
+
export declare const PlayIcon: {
|
|
139
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
140
|
+
muiName: string;
|
|
141
|
+
};
|
|
142
|
+
export declare const MoreIcon: {
|
|
143
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
144
|
+
muiName: string;
|
|
145
|
+
};
|
|
146
|
+
export declare const PublishIcon: {
|
|
147
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
148
|
+
muiName: string;
|
|
149
|
+
};
|
|
150
|
+
export declare const BrushIcon: {
|
|
151
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
152
|
+
muiName: string;
|
|
153
|
+
};
|
|
154
|
+
export declare const BehaviourIcon: {
|
|
155
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
156
|
+
muiName: string;
|
|
157
|
+
};
|
|
158
|
+
export declare const InspectIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
159
|
+
export declare const LayoutIcon: {
|
|
160
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
161
|
+
muiName: string;
|
|
162
|
+
};
|
|
163
|
+
export declare const LockIcon: {
|
|
164
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
165
|
+
muiName: string;
|
|
166
|
+
};
|
|
167
|
+
export declare const TooltipsIcon: {
|
|
168
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
169
|
+
muiName: string;
|
|
170
|
+
};
|
|
171
|
+
export declare const SoundIcon: {
|
|
172
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
173
|
+
muiName: string;
|
|
174
|
+
};
|
|
175
|
+
export declare const ArrowRightIcon: {
|
|
176
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
177
|
+
muiName: string;
|
|
178
|
+
};
|
|
179
|
+
export declare const VideoPlayIcon: {
|
|
180
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
181
|
+
muiName: string;
|
|
182
|
+
};
|
|
183
|
+
export declare const CheckIcon: {
|
|
184
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
185
|
+
muiName: string;
|
|
186
|
+
};
|
|
187
|
+
export declare const ClockIcon: {
|
|
188
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
189
|
+
muiName: string;
|
|
190
|
+
};
|
|
191
|
+
export declare const GreenCheckedIcon: {
|
|
192
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
193
|
+
muiName: string;
|
|
194
|
+
};
|
|
195
|
+
export declare const PaddingInputIcon: {
|
|
196
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
197
|
+
muiName: string;
|
|
198
|
+
};
|
|
199
|
+
export declare const IndividualSidePaddingIcon: {
|
|
200
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
201
|
+
muiName: string;
|
|
202
|
+
};
|
|
203
|
+
export declare const PlusIcon: {
|
|
204
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
205
|
+
muiName: string;
|
|
206
|
+
};
|
|
207
|
+
export declare const IconAlignmentLeftIcon: {
|
|
208
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
209
|
+
muiName: string;
|
|
210
|
+
};
|
|
211
|
+
export declare const IconAlignmentRightIcon: {
|
|
212
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
213
|
+
muiName: string;
|
|
214
|
+
};
|
|
215
|
+
export declare const TextAlignCenterIcon: {
|
|
216
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
217
|
+
muiName: string;
|
|
218
|
+
};
|
|
219
|
+
export declare const TemplatesIcon: {
|
|
220
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
221
|
+
muiName: string;
|
|
222
|
+
};
|
|
223
|
+
export declare const QuestionCircleIcon: {
|
|
224
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
225
|
+
muiName: string;
|
|
226
|
+
};
|
|
227
|
+
export declare const DownloadIcon: {
|
|
228
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
229
|
+
muiName: string;
|
|
230
|
+
};
|
|
231
|
+
export declare const ArrowLeftIcon: {
|
|
232
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
233
|
+
muiName: string;
|
|
234
|
+
};
|
|
235
|
+
export declare const AlertTriangle: {
|
|
236
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
237
|
+
muiName: string;
|
|
238
|
+
};
|
|
239
|
+
export declare const HamburgerIcon: {
|
|
240
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
241
|
+
muiName: string;
|
|
242
|
+
};
|
|
243
|
+
export declare const ThicknessIcon: {
|
|
244
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
245
|
+
muiName: string;
|
|
246
|
+
};
|
|
247
|
+
export declare const ConfigurationsIcon: {
|
|
248
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
249
|
+
muiName: string;
|
|
250
|
+
};
|
|
251
|
+
export declare const CalendarIcon: {
|
|
252
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
253
|
+
muiName: string;
|
|
254
|
+
};
|
|
255
|
+
export declare const SearchIcon: {
|
|
256
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
257
|
+
muiName: string;
|
|
258
|
+
};
|
|
259
|
+
export declare const UnfoldIcon: {
|
|
260
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
261
|
+
muiName: string;
|
|
262
|
+
};
|
|
263
|
+
export declare const ChangesSavedIcon: {
|
|
264
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
265
|
+
muiName: string;
|
|
266
|
+
};
|
|
267
|
+
export declare const PlainEditIcon: {
|
|
268
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
269
|
+
muiName: string;
|
|
270
|
+
};
|
|
271
|
+
export declare const BorderedMoreIcon: {
|
|
272
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
273
|
+
muiName: string;
|
|
274
|
+
};
|
|
275
|
+
export declare const PreviewIcon: {
|
|
276
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
277
|
+
muiName: string;
|
|
278
|
+
};
|
|
279
|
+
export declare const PlainDeleteIcon: {
|
|
280
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
281
|
+
muiName: string;
|
|
282
|
+
};
|
|
283
|
+
export declare const MailIcon: {
|
|
284
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
285
|
+
muiName: string;
|
|
286
|
+
};
|
|
287
|
+
export declare const TickIcon: {
|
|
288
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
289
|
+
muiName: string;
|
|
290
|
+
};
|
|
291
|
+
export declare const PlainViewIcon: {
|
|
292
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
293
|
+
muiName: string;
|
|
294
|
+
};
|
|
295
|
+
export declare const EyeOffIcon: {
|
|
296
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
297
|
+
muiName: string;
|
|
298
|
+
};
|
|
299
|
+
export declare const ProfileIcon: {
|
|
300
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
301
|
+
muiName: string;
|
|
302
|
+
};
|
|
303
|
+
export declare const ProfileEditIcon: {
|
|
304
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
305
|
+
muiName: string;
|
|
306
|
+
};
|
|
307
|
+
export declare const ChangePasswordIcon: {
|
|
308
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
309
|
+
muiName: string;
|
|
310
|
+
};
|
|
311
|
+
export declare const HistoryIcon: {
|
|
312
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
313
|
+
muiName: string;
|
|
314
|
+
};
|
|
315
|
+
export declare const TranslateIcon: {
|
|
316
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
317
|
+
muiName: string;
|
|
318
|
+
};
|
|
319
|
+
export declare const TimerIcon: {
|
|
320
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
321
|
+
muiName: string;
|
|
322
|
+
};
|
|
323
|
+
export declare const MoonIcon: {
|
|
324
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
325
|
+
muiName: string;
|
|
326
|
+
};
|
|
327
|
+
export declare const SettingsIcon: {
|
|
328
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
329
|
+
muiName: string;
|
|
330
|
+
};
|
|
331
|
+
export declare const GiftIcon: {
|
|
332
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
333
|
+
muiName: string;
|
|
334
|
+
};
|
|
335
|
+
export declare const ExternalLink: {
|
|
336
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
337
|
+
muiName: string;
|
|
338
|
+
};
|
|
339
|
+
export declare const LogOutIcon: {
|
|
340
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
341
|
+
muiName: string;
|
|
342
|
+
};
|
|
343
|
+
export declare const PagePilotIcon: {
|
|
344
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
345
|
+
muiName: string;
|
|
346
|
+
};
|
|
347
|
+
export declare const PagePilotSmIcon: {
|
|
348
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
349
|
+
muiName: string;
|
|
350
|
+
};
|
|
351
|
+
export declare const CloseCircledIcon: {
|
|
352
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
353
|
+
muiName: string;
|
|
354
|
+
};
|
|
355
|
+
export declare const ShareIcon: {
|
|
356
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
357
|
+
muiName: string;
|
|
358
|
+
};
|
|
359
|
+
export declare const UsersCheckIcon: {
|
|
360
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
361
|
+
muiName: string;
|
|
362
|
+
};
|
|
363
|
+
export declare const DollarIcon: {
|
|
364
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
365
|
+
muiName: string;
|
|
366
|
+
};
|
|
367
|
+
export declare const LinkIcon: {
|
|
368
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
369
|
+
muiName: string;
|
|
370
|
+
};
|
|
371
|
+
export declare const UrlsIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
372
|
+
export declare const ContentCopyIcon: {
|
|
373
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
374
|
+
muiName: string;
|
|
375
|
+
};
|
|
376
|
+
export declare const UserIcon: {
|
|
377
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
378
|
+
muiName: string;
|
|
379
|
+
};
|
|
380
|
+
export declare const ThreeDotsIcon: {
|
|
381
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
382
|
+
muiName: string;
|
|
383
|
+
};
|
|
384
|
+
export declare const DashboardCheckedIcon: {
|
|
385
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
386
|
+
muiName: string;
|
|
387
|
+
};
|
|
388
|
+
export declare const AlertCircle: {
|
|
389
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
390
|
+
muiName: string;
|
|
391
|
+
};
|
|
392
|
+
export declare const TwoLayersIcon: {
|
|
393
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
394
|
+
muiName: string;
|
|
395
|
+
};
|
|
396
|
+
export declare const UncheckedIcon: {
|
|
397
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
398
|
+
muiName: string;
|
|
399
|
+
};
|
|
400
|
+
export declare const PrimaryCheckedCircle: {
|
|
401
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
402
|
+
muiName: string;
|
|
403
|
+
};
|
|
404
|
+
export declare const MessageNotificationIcon: {
|
|
405
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
406
|
+
muiName: string;
|
|
407
|
+
};
|
|
408
|
+
export declare const MobileIcon: {
|
|
409
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
410
|
+
muiName: string;
|
|
411
|
+
};
|
|
412
|
+
export declare const MetaIcon: {
|
|
413
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
414
|
+
muiName: string;
|
|
415
|
+
};
|
|
416
|
+
export declare const XIcon: {
|
|
417
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
418
|
+
muiName: string;
|
|
419
|
+
};
|
|
420
|
+
export declare const NoRowsIcon: {
|
|
421
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
422
|
+
muiName: string;
|
|
423
|
+
};
|
|
424
|
+
export declare const BlankTemplateIcon: {
|
|
425
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
426
|
+
muiName: string;
|
|
427
|
+
};
|
|
428
|
+
export declare const PlainThreeDotsIcon: {
|
|
429
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
430
|
+
muiName: string;
|
|
431
|
+
};
|
|
432
|
+
export declare const SuccessCircleOutlined: {
|
|
433
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
434
|
+
muiName: string;
|
|
435
|
+
};
|
|
436
|
+
export declare const SuccessCircleOutlined2: (props: SvgIconProps) => import("react").JSX.Element;
|
|
437
|
+
export declare const ErrorCircleOutlined: {
|
|
438
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
439
|
+
muiName: string;
|
|
440
|
+
};
|
|
441
|
+
export declare const DemosIcon: {
|
|
442
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
443
|
+
muiName: string;
|
|
444
|
+
};
|
|
445
|
+
export declare const WebinarIcon: {
|
|
446
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
447
|
+
muiName: string;
|
|
448
|
+
};
|
|
449
|
+
export declare const UseTemplateIcon: {
|
|
450
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
451
|
+
muiName: string;
|
|
452
|
+
};
|
|
453
|
+
export declare const SaveTemplateIcon: {
|
|
454
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
455
|
+
muiName: string;
|
|
456
|
+
};
|
|
457
|
+
export declare const EmptyTemplateState: {
|
|
458
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
459
|
+
muiName: string;
|
|
460
|
+
};
|
|
461
|
+
export declare const CloseIcon: {
|
|
462
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
463
|
+
muiName: string;
|
|
464
|
+
};
|
|
465
|
+
export declare const DuplicateIcon: {
|
|
466
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
467
|
+
muiName: string;
|
|
468
|
+
};
|
|
469
|
+
export declare const IntegrateSiteIcon: {
|
|
470
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
471
|
+
muiName: string;
|
|
472
|
+
};
|
|
473
|
+
export declare const PlayCircleIcon: {
|
|
474
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
475
|
+
muiName: string;
|
|
476
|
+
};
|
|
477
|
+
export declare const WebProgramming: {
|
|
478
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
479
|
+
muiName: string;
|
|
480
|
+
};
|
|
481
|
+
export declare const TrackingCode: {
|
|
482
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
483
|
+
muiName: string;
|
|
484
|
+
};
|
|
485
|
+
export declare const BookOpen: {
|
|
486
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
487
|
+
muiName: string;
|
|
488
|
+
};
|
|
489
|
+
export declare const OpenInNewTab: (props: SvgIconProps) => import("react").JSX.Element;
|
|
490
|
+
export declare const UploadAssetIcon: {
|
|
491
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
492
|
+
muiName: string;
|
|
493
|
+
};
|
|
494
|
+
export declare const DeleteAssetIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
495
|
+
export declare const ConfigureIcon: {
|
|
496
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
497
|
+
muiName: string;
|
|
498
|
+
};
|
|
499
|
+
export declare const LinkedInIcon: {
|
|
500
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
501
|
+
muiName: string;
|
|
502
|
+
};
|
|
503
|
+
export declare const TwitterIcon: {
|
|
504
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
505
|
+
muiName: string;
|
|
506
|
+
};
|
|
507
|
+
export declare const AnalyticsIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
508
|
+
export declare const ChevronDown2: (props: SvgIconProps) => import("react").JSX.Element;
|
|
509
|
+
export declare const SunIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
510
|
+
export declare const DiamondIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
511
|
+
export declare const AnalyticsDiamondIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
512
|
+
export declare const IconTopArrow: {
|
|
513
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
514
|
+
muiName: string;
|
|
515
|
+
};
|
|
516
|
+
export declare const IconBottomArrow: {
|
|
517
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
518
|
+
muiName: string;
|
|
519
|
+
};
|
|
520
|
+
export declare const InboxMsgIcon: {
|
|
521
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
522
|
+
muiName: string;
|
|
523
|
+
};
|
|
524
|
+
export declare const TourNameIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
525
|
+
export declare const StepIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
526
|
+
export declare const TeamMemberIcon: {
|
|
527
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
528
|
+
muiName: string;
|
|
529
|
+
};
|
|
530
|
+
export declare const DashboardIcon: {
|
|
531
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
532
|
+
muiName: string;
|
|
533
|
+
};
|
|
534
|
+
export declare const CreateNewIcon: {
|
|
535
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
536
|
+
muiName: string;
|
|
537
|
+
};
|
|
538
|
+
export declare const SimpleBannerIcon: {
|
|
539
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
540
|
+
muiName: string;
|
|
541
|
+
};
|
|
542
|
+
export declare const CarouselBannerIcon: {
|
|
543
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
544
|
+
muiName: string;
|
|
545
|
+
};
|
|
546
|
+
export declare const ModalBannerIcon: {
|
|
547
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
548
|
+
muiName: string;
|
|
549
|
+
};
|
|
550
|
+
export declare const FloaterBannerIcon: {
|
|
551
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
552
|
+
muiName: string;
|
|
553
|
+
};
|
|
554
|
+
export declare const WorkspacesIcon: {
|
|
555
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
556
|
+
muiName: string;
|
|
557
|
+
};
|
|
558
|
+
export declare const GlobeIcon: {
|
|
559
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
560
|
+
muiName: string;
|
|
561
|
+
};
|
|
562
|
+
export declare const FabAnalyticsIcon: {
|
|
563
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
564
|
+
muiName: string;
|
|
565
|
+
};
|
|
566
|
+
export declare const FabCrmIcon: {
|
|
567
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
568
|
+
muiName: string;
|
|
569
|
+
};
|
|
570
|
+
export declare const FabStudioIcon: {
|
|
571
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
572
|
+
muiName: string;
|
|
573
|
+
};
|
|
574
|
+
export declare const DisconnectIcon: {
|
|
575
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
576
|
+
muiName: string;
|
|
577
|
+
};
|
|
578
|
+
export declare const ReplaceIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
579
|
+
export declare const AiPanelIcon: {
|
|
580
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
581
|
+
muiName: string;
|
|
582
|
+
};
|
|
583
|
+
export declare const PagePilotDiamond: {
|
|
584
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
585
|
+
muiName: string;
|
|
586
|
+
};
|
|
587
|
+
export declare const CrownIcon: {
|
|
588
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
589
|
+
muiName: string;
|
|
590
|
+
};
|
|
591
|
+
export declare const LiveUrlIcon: {
|
|
592
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
593
|
+
muiName: string;
|
|
594
|
+
};
|
|
595
|
+
export declare const CalendelyIcon: {
|
|
596
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
597
|
+
muiName: string;
|
|
598
|
+
};
|
|
599
|
+
export declare const DeleteIconOutlined: {
|
|
600
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
601
|
+
muiName: string;
|
|
602
|
+
};
|
|
603
|
+
export declare const BrandThemeIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
604
|
+
export declare const TabsLayoutIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
605
|
+
export declare const CarouselIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
606
|
+
export declare const MarqueeIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
607
|
+
export declare const RatingStarIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
608
|
+
export declare const StarterComboIcon: {
|
|
609
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
610
|
+
muiName: string;
|
|
611
|
+
};
|
|
612
|
+
export declare const ProComboIcon: {
|
|
613
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
614
|
+
muiName: string;
|
|
615
|
+
};
|
|
616
|
+
export declare const FilterIcon: {
|
|
617
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
618
|
+
muiName: string;
|
|
619
|
+
};
|
|
620
|
+
export declare const SeoIcon: {
|
|
621
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
622
|
+
muiName: string;
|
|
623
|
+
};
|
|
624
|
+
export declare const EyeIcon: {
|
|
625
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
626
|
+
muiName: string;
|
|
627
|
+
};
|
|
628
|
+
export declare const PageResearchIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
629
|
+
export declare const PageCodeIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
630
|
+
export declare const PageTemplatePreviewIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
631
|
+
export declare const PremiumBadge: (props: SvgIconProps) => import("react").JSX.Element;
|
|
632
|
+
export declare const OverallUsageIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
633
|
+
export declare const AlertUsageIcon: (props: SvgIconProps) => import("react").JSX.Element;
|
|
634
|
+
export declare const RefreshIcon: {
|
|
635
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
636
|
+
muiName: string;
|
|
637
|
+
};
|
|
638
|
+
export declare const ScheduleCalendarIcon: {
|
|
639
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
640
|
+
muiName: string;
|
|
641
|
+
};
|
|
642
|
+
export declare const DocumentIcon: {
|
|
643
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
644
|
+
muiName: string;
|
|
645
|
+
};
|
|
646
|
+
export declare const ImagePlusIcon: {
|
|
647
|
+
(props: SvgIconProps): import("react").JSX.Element;
|
|
648
|
+
muiName: string;
|
|
649
|
+
};
|