@plitzi/plitzi-builder 0.30.19
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 +2862 -0
- package/README.md +3 -0
- package/dist/App.d.ts +13 -0
- package/dist/config/index.d.ts +6 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.html +82 -0
- package/dist/modules/AI/AiChat.d.ts +2 -0
- package/dist/modules/AI/AiChatPreview.d.ts +2 -0
- package/dist/modules/AI/components/AiChatHeader.d.ts +16 -0
- package/dist/modules/AI/components/AiProviderSettings/AiProviderSettings.d.ts +10 -0
- package/dist/modules/AI/components/Chat/Chat.d.ts +11 -0
- package/dist/modules/AI/components/Chat/LiveEntry.d.ts +8 -0
- package/dist/modules/AI/components/Chat/TimelineDot.d.ts +6 -0
- package/dist/modules/AI/components/Chat/index.d.ts +2 -0
- package/dist/modules/AI/components/ChatInput/AttachmentThumbnail.d.ts +7 -0
- package/dist/modules/AI/components/ChatInput/ChatInput.d.ts +14 -0
- package/dist/modules/AI/components/ChatInput/index.d.ts +2 -0
- package/dist/modules/AI/components/ChatMessage/ActionButtons.d.ts +6 -0
- package/dist/modules/AI/components/ChatMessage/ChatMessage.d.ts +3 -0
- package/dist/modules/AI/components/ChatMessage/ThinkingBlock.d.ts +6 -0
- package/dist/modules/AI/components/ChatMessage/components/AITemplatePreview/AITemplateHeader.d.ts +9 -0
- package/dist/modules/AI/components/ChatMessage/components/AITemplatePreview/AITemplatePreview.d.ts +8 -0
- package/dist/modules/AI/components/ChatMessage/components/AITemplatePreview/index.d.ts +3 -0
- package/dist/modules/AI/components/ChatMessage/components/SdkElementPreview/SdkElementPreview.d.ts +5 -0
- package/dist/modules/AI/components/ChatMessage/components/SdkElementPreview/index.d.ts +3 -0
- package/dist/modules/AI/components/ChatMessage/index.d.ts +1 -0
- package/dist/modules/AI/components/ToolActivity.d.ts +5 -0
- package/dist/modules/AI/components/ToolCall.d.ts +3 -0
- package/dist/modules/AI/components/ToolCallGroup.d.ts +7 -0
- package/dist/modules/AI/components/VoiceVisualizer/VoiceVisualizer.d.ts +18 -0
- package/dist/modules/AI/components/VoiceVisualizer/helpers/drawByBlob.d.ts +11 -0
- package/dist/modules/AI/components/VoiceVisualizer/helpers/drawByLiveStream.d.ts +20 -0
- package/dist/modules/AI/components/VoiceVisualizer/helpers/getBarsData.d.ts +9 -0
- package/dist/modules/AI/components/VoiceVisualizer/helpers/index.d.ts +7 -0
- package/dist/modules/AI/components/VoiceVisualizer/helpers/initialCanvasSetup.d.ts +9 -0
- package/dist/modules/AI/components/VoiceVisualizer/helpers/paintLine.d.ts +9 -0
- package/dist/modules/AI/components/VoiceVisualizer/helpers/paintLineFromCenterToRight.d.ts +8 -0
- package/dist/modules/AI/components/VoiceVisualizer/index.d.ts +2 -0
- package/dist/modules/AI/helpers/getRootNode.d.ts +9 -0
- package/dist/modules/AI/hooks/useAiChat.d.ts +15 -0
- package/dist/modules/AI/hooks/useAiProviderSettings.d.ts +9 -0
- package/dist/modules/AI/hooks/useAiTools.d.ts +3 -0
- package/dist/modules/AI/hooks/useMediaRecorder.d.ts +18 -0
- package/dist/modules/AI/hooks/useVoice.d.ts +11 -0
- package/dist/modules/AI/index.d.ts +2 -0
- package/dist/modules/AI/tools/getBuilderContext.d.ts +13 -0
- package/dist/modules/AI/tools/index.d.ts +14 -0
- package/dist/modules/AI/tools/stagePreview.d.ts +25 -0
- package/dist/modules/AI/types.d.ts +98 -0
- package/dist/modules/App/AppContainer/AppContainer.d.ts +5 -0
- package/dist/modules/App/AppContainer/containers/ContainerCollections.d.ts +2 -0
- package/dist/modules/App/AppContainer/containers/ContainerDefault.d.ts +6 -0
- package/dist/modules/App/AppContainer/containers/ContainerIntegrations.d.ts +2 -0
- package/dist/modules/App/AppContainer/containers/ContainerMarketplace.d.ts +2 -0
- package/dist/modules/App/AppContainer/containers/ContainerSettings.d.ts +2 -0
- package/dist/modules/App/AppContainer/containers/ContainerSitemap.d.ts +2 -0
- package/dist/modules/App/AppContainer/index.d.ts +3 -0
- package/dist/modules/App/AppContext.d.ts +17 -0
- package/dist/modules/App/AppMain.d.ts +18 -0
- package/dist/modules/App/AppProvider.d.ts +17 -0
- package/dist/modules/App/components/AppDirectory/AppDirectory.d.ts +2 -0
- package/dist/modules/App/components/AppDirectory/Directory.d.ts +14 -0
- package/dist/modules/App/components/AppDirectory/DirectoryHeader.d.ts +6 -0
- package/dist/modules/App/components/AppDirectory/DirectoryItem.d.ts +8 -0
- package/dist/modules/App/components/AppDirectory/ItemActions.d.ts +11 -0
- package/dist/modules/App/components/AppDirectory/index.d.ts +3 -0
- package/dist/modules/App/components/AppHeader/AppHeader.d.ts +2 -0
- package/dist/modules/App/components/AppHeader/BorderButton.d.ts +2 -0
- package/dist/modules/App/components/AppHeader/DisplayModeButtons.d.ts +2 -0
- package/dist/modules/App/components/AppHeader/HistoryButtons.d.ts +2 -0
- package/dist/modules/App/components/AppHeader/PageHeader.d.ts +2 -0
- package/dist/modules/App/components/AppHeader/PreviewModeButtons.d.ts +2 -0
- package/dist/modules/App/components/AppHeader/ZoomButtons.d.ts +2 -0
- package/dist/modules/App/components/AppHeader/index.d.ts +3 -0
- package/dist/modules/App/components/WorkflowDiagram/WorkflowDiagram.d.ts +37 -0
- package/dist/modules/App/components/WorkflowDiagram/components/CustomEdge.d.ts +3 -0
- package/dist/modules/App/components/WorkflowDiagram/components/CustomNode.d.ts +5 -0
- package/dist/modules/App/components/WorkflowDiagram/helpers/schemaToSitemap.d.ts +11 -0
- package/dist/modules/App/components/WorkflowDiagram/helpers/sitemapToFlow.d.ts +20 -0
- package/dist/modules/App/components/WorkflowDiagram/index.d.ts +3 -0
- package/dist/modules/App/helpers/utils.d.ts +8 -0
- package/dist/modules/App/models/DeployForm/DeployForm.d.ts +24 -0
- package/dist/modules/App/models/DeployForm/InputEnvironment.d.ts +2 -0
- package/dist/modules/App/models/DeployForm/index.d.ts +3 -0
- package/dist/modules/App/models/LayoutForm.d.ts +16 -0
- package/dist/modules/App/models/PageFolderForm.d.ts +18 -0
- package/dist/modules/App/models/PageForm.d.ts +18 -0
- package/dist/modules/App/models/PublishForm.d.ts +20 -0
- package/dist/modules/Builder/Builder.d.ts +10 -0
- package/dist/modules/Builder/BuilderHelper.d.ts +44 -0
- package/dist/modules/Builder/BuilderPlugin.d.ts +11 -0
- package/dist/modules/Builder/BuilderPopup.d.ts +6 -0
- package/dist/modules/Builder/BuilderProvider.d.ts +11 -0
- package/dist/modules/Builder/Models/TemplateForm.d.ts +16 -0
- package/dist/modules/Builder/components/BuilderArea/BuilderArea.d.ts +14 -0
- package/dist/modules/Builder/components/BuilderArea/BuilderAreaHeader.d.ts +10 -0
- package/dist/modules/Builder/components/BuilderArea/BuilderAreaOverlay.d.ts +11 -0
- package/dist/modules/Builder/components/BuilderArea/BuilderAreaTracking.d.ts +12 -0
- package/dist/modules/Builder/components/BuilderArea/index.d.ts +3 -0
- package/dist/modules/Builder/components/BuilderAreaPreview/BuilderAreaPreview.d.ts +7 -0
- package/dist/modules/Builder/components/BuilderAreaPreview/index.d.ts +3 -0
- package/dist/modules/Builder/components/BuilderBreadcrumb/BuilderBreadcrumb.d.ts +5 -0
- package/dist/modules/Builder/components/BuilderBreadcrumb/BuilderBreadcrumbItem.d.ts +12 -0
- package/dist/modules/Builder/components/BuilderBreadcrumb/ItemIcon.d.ts +4 -0
- package/dist/modules/Builder/components/BuilderBreadcrumb/index.d.ts +3 -0
- package/dist/modules/Builder/components/BuilderCollaborator/BuilderCollaboratorArea.d.ts +13 -0
- package/dist/modules/Builder/components/BuilderCollaborator/BuilderCollaboratorCursor.d.ts +9 -0
- package/dist/modules/Builder/components/BuilderCollaborator/BuilderCollaboratorHeaderUser.d.ts +9 -0
- package/dist/modules/Builder/components/BuilderContextMenu/BuilderContextMenu.d.ts +8 -0
- package/dist/modules/Builder/components/BuilderContextMenu/BuilderContextMenuItem.d.ts +11 -0
- package/dist/modules/Builder/components/BuilderContextMenu/BuilderContextSubMenu.d.ts +12 -0
- package/dist/modules/Builder/components/BuilderContextMenu/index.d.ts +3 -0
- package/dist/modules/Builder/components/BuilderElementTools/BuilderElementTools.d.ts +5 -0
- package/dist/modules/Builder/components/BuilderElementTools/ElementDefinitionSettings.d.ts +7 -0
- package/dist/modules/Builder/components/BuilderElementTools/ElementSettings.d.ts +8 -0
- package/dist/modules/Builder/components/BuilderElementTools/index.d.ts +3 -0
- package/dist/modules/Builder/components/BuilderOverlay/BuilderOverlay.d.ts +16 -0
- package/dist/modules/Builder/components/BuilderOverlay/BuilderOverlayDistance.d.ts +11 -0
- package/dist/modules/Builder/components/BuilderOverlay/BuilderOverlayDrag.d.ts +10 -0
- package/dist/modules/Builder/components/BuilderOverlay/BuilderOverlayHelper.d.ts +72 -0
- package/dist/modules/Builder/components/BuilderOverlay/BuilderOverlayHelper.test.d.ts +1 -0
- package/dist/modules/Builder/components/BuilderOverlay/OverlayButton.d.ts +9 -0
- package/dist/modules/Builder/components/BuilderOverlay/OverlayButtonContainer.d.ts +13 -0
- package/dist/modules/Builder/components/BuilderOverlay/OverlayButtonResize.d.ts +20 -0
- package/dist/modules/Builder/components/BuilderOverlay/OverlayNormal.d.ts +20 -0
- package/dist/modules/Builder/components/BuilderOverlay/OverlaySpacing.d.ts +11 -0
- package/dist/modules/Builder/components/BuilderOverlay/index.d.ts +3 -0
- package/dist/modules/Builder/components/BuilderTree/BuilderTree.d.ts +2 -0
- package/dist/modules/Builder/components/BuilderTree/BuilderTreeNodeControls.d.ts +7 -0
- package/dist/modules/Builder/components/BuilderTree/index.d.ts +3 -0
- package/dist/modules/Builder/components/BuilderTree/utils.d.ts +10 -0
- package/dist/modules/Builder/components/ToolsList/ToolsList.d.ts +6 -0
- package/dist/modules/Builder/components/ToolsList/ToolsListItem.d.ts +8 -0
- package/dist/modules/Builder/components/ToolsList/index.d.ts +3 -0
- package/dist/modules/Builder/hooks/useNormalizedCursor.d.ts +25 -0
- package/dist/modules/Builder/index.d.ts +3 -0
- package/dist/modules/Collection/CollectionContextProvider.d.ts +8 -0
- package/dist/modules/Collection/Collections.d.ts +2 -0
- package/dist/modules/Collection/Models/CollectionFieldForm.d.ts +41 -0
- package/dist/modules/Collection/Models/CollectionForm.d.ts +13 -0
- package/dist/modules/Collection/Models/CollectionRecordForm/CollectionRecordForm.d.ts +14 -0
- package/dist/modules/Collection/Models/CollectionRecordForm/CollectionRecordFormHelper.d.ts +19 -0
- package/dist/modules/Collection/Models/CollectionRecordForm/index.d.ts +3 -0
- package/dist/modules/Collection/components/Collection/Collection.d.ts +9 -0
- package/dist/modules/Collection/components/Collection/index.d.ts +3 -0
- package/dist/modules/Collection/components/CollectionContainer/CollectionContainer.d.ts +10 -0
- package/dist/modules/Collection/components/CollectionContainer/CollectionRecord.d.ts +13 -0
- package/dist/modules/Collection/components/CollectionContainer/CollectionRecords.d.ts +10 -0
- package/dist/modules/Collection/components/CollectionContainer/index.d.ts +3 -0
- package/dist/modules/Collection/components/CollectionField.d.ts +11 -0
- package/dist/modules/Collection/index.d.ts +1 -0
- package/dist/modules/DataSource/BindingSelected.d.ts +18 -0
- package/dist/modules/DataSource/DataSourceBinding.d.ts +9 -0
- package/dist/modules/DataSource/helpers/transformerString.d.ts +6 -0
- package/dist/modules/DataSource/helpers/whenString.d.ts +3 -0
- package/dist/modules/DataSource/models/BindingForm/BindingForm.d.ts +30 -0
- package/dist/modules/DataSource/models/BindingForm/index.d.ts +3 -0
- package/dist/modules/DataSource/models/BindingForm/steps/StepPreview.d.ts +8 -0
- package/dist/modules/DataSource/models/BindingForm/steps/StepSettings.d.ts +11 -0
- package/dist/modules/DataSource/models/BindingForm/steps/StepSource.d.ts +6 -0
- package/dist/modules/DataSource/models/BindingForm/steps/StepTransformers/StepTransformers.d.ts +6 -0
- package/dist/modules/DataSource/models/BindingForm/steps/StepTransformers/TransformerParam.d.ts +16 -0
- package/dist/modules/DataSource/models/BindingForm/steps/StepTransformers/index.d.ts +3 -0
- package/dist/modules/DataSource/models/BindingForm/steps/StepWhen.d.ts +6 -0
- package/dist/modules/Elements/Element.d.ts +6 -0
- package/dist/modules/Elements/ElementCategory.d.ts +7 -0
- package/dist/modules/Elements/ElementHelper.d.ts +5 -0
- package/dist/modules/Elements/Elements.d.ts +2 -0
- package/dist/modules/Elements/hooks/useDragElement.d.ts +13 -0
- package/dist/modules/Elements/index.d.ts +3 -0
- package/dist/modules/Integrations/Integrations.d.ts +1 -0
- package/dist/modules/Interactions/Interactions.d.ts +9 -0
- package/dist/modules/Interactions/InteractionsBuilderContextProvider.d.ts +7 -0
- package/dist/modules/Interactions/components/Workflow/Workflow.d.ts +11 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowAddNode.d.ts +10 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowContext.d.ts +21 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowContextProvider.d.ts +12 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowFlow.d.ts +9 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowHeader.d.ts +14 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowNode/NodeBody.d.ts +15 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowNode/NodeBodyParam.d.ts +22 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowNode/NodeFooter.d.ts +5 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowNode/NodeHeader.d.ts +21 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowNode/NodePreview.d.ts +8 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowNode/NodeWhen.d.ts +10 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowNode/ParamBinding.d.ts +10 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowNode/WorkflowNode.d.ts +22 -0
- package/dist/modules/Interactions/components/Workflow/WorkflowNode/index.d.ts +3 -0
- package/dist/modules/Interactions/components/Workflow/index.d.ts +3 -0
- package/dist/modules/Interactions/sources/CollectionSource/CollectionInteractions.d.ts +6 -0
- package/dist/modules/Interactions/sources/PageSource/PageInteractions.d.ts +7 -0
- package/dist/modules/Marketplace/Marketplace.d.ts +2 -0
- package/dist/modules/Marketplace/components/MarketNews/MarketNews.d.ts +2 -0
- package/dist/modules/Marketplace/components/MarketNews/index.d.ts +3 -0
- package/dist/modules/Marketplace/components/MarketPlugins/MarketPlugins.d.ts +2 -0
- package/dist/modules/Marketplace/components/MarketPlugins/PluginDetails/DetailsContent.d.ts +2 -0
- package/dist/modules/Marketplace/components/MarketPlugins/PluginDetails/DetailsSidebar.d.ts +19 -0
- package/dist/modules/Marketplace/components/MarketPlugins/PluginDetails/PluginDetails.d.ts +23 -0
- package/dist/modules/Marketplace/components/MarketPlugins/PluginDetails/index.d.ts +3 -0
- package/dist/modules/Marketplace/components/MarketPlugins/PluginItem.d.ts +14 -0
- package/dist/modules/Marketplace/components/MarketPlugins/PluginList.d.ts +7 -0
- package/dist/modules/Marketplace/components/MarketPlugins/PluginsFilter/FilterCategory.d.ts +9 -0
- package/dist/modules/Marketplace/components/MarketPlugins/PluginsFilter/PluginsFilter.d.ts +13 -0
- package/dist/modules/Marketplace/components/MarketPlugins/PluginsFilter/index.d.ts +3 -0
- package/dist/modules/Marketplace/components/MarketPlugins/index.d.ts +3 -0
- package/dist/modules/Marketplace/components/MarketSidebar.d.ts +6 -0
- package/dist/modules/Marketplace/components/MarketSidebarItem.d.ts +9 -0
- package/dist/modules/Marketplace/components/MarketTemplates/MarketTemplates.d.ts +2 -0
- package/dist/modules/Marketplace/components/MarketTemplates/index.d.ts +3 -0
- package/dist/modules/Marketplace/helpers/PluginHelper.d.ts +2 -0
- package/dist/modules/Marketplace/index.d.ts +3 -0
- package/dist/modules/Marketplace/types/index.d.ts +44 -0
- package/dist/modules/Navigation/NavigationContextProvider.d.ts +7 -0
- package/dist/modules/Network/NetworkContextProvider.d.ts +13 -0
- package/dist/modules/Network/NetworkSubscriptionsContextProvider.d.ts +8 -0
- package/dist/modules/Network/contexts/BuilderSubscriptionsContext.d.ts +11 -0
- package/dist/modules/Network/helpers/customFetch.d.ts +12 -0
- package/dist/modules/Network/hooks/useGraphQL.d.ts +15 -0
- package/dist/modules/Network/hooks/useInfiniteGraphQL.d.ts +18 -0
- package/dist/modules/Network/hooks/useSubscriptionsManager.d.ts +21 -0
- package/dist/modules/Network/hooks/useWebsocket.d.ts +20 -0
- package/dist/modules/OpenAI_Deprecated/OpenAIChat.d.ts +2 -0
- package/dist/modules/OpenAI_Deprecated/components/Chat/Chat.d.ts +8 -0
- package/dist/modules/OpenAI_Deprecated/components/Chat/ChatMessage.d.ts +8 -0
- package/dist/modules/OpenAI_Deprecated/components/Chat/Message/Message.d.ts +9 -0
- package/dist/modules/OpenAI_Deprecated/components/Chat/Message/index.d.ts +3 -0
- package/dist/modules/OpenAI_Deprecated/components/Chat/Message/modes/MessageHtml.d.ts +5 -0
- package/dist/modules/OpenAI_Deprecated/components/Chat/Message/modes/MessageText.d.ts +7 -0
- package/dist/modules/OpenAI_Deprecated/components/Chat/index.d.ts +3 -0
- package/dist/modules/OpenAI_Deprecated/components/VoiceVisualizer/VoiceVisualizer.d.ts +18 -0
- package/dist/modules/OpenAI_Deprecated/components/VoiceVisualizer/helpers/drawByBlob.d.ts +11 -0
- package/dist/modules/OpenAI_Deprecated/components/VoiceVisualizer/helpers/drawByLiveStream.d.ts +20 -0
- package/dist/modules/OpenAI_Deprecated/components/VoiceVisualizer/helpers/getBarsData.d.ts +9 -0
- package/dist/modules/OpenAI_Deprecated/components/VoiceVisualizer/helpers/index.d.ts +7 -0
- package/dist/modules/OpenAI_Deprecated/components/VoiceVisualizer/helpers/initialCanvasSetup.d.ts +9 -0
- package/dist/modules/OpenAI_Deprecated/components/VoiceVisualizer/helpers/paintLine.d.ts +9 -0
- package/dist/modules/OpenAI_Deprecated/components/VoiceVisualizer/helpers/paintLineFromCenterToRight.d.ts +8 -0
- package/dist/modules/OpenAI_Deprecated/components/VoiceVisualizer/index.d.ts +3 -0
- package/dist/modules/OpenAI_Deprecated/hooks/useMediaRecorder.d.ts +18 -0
- package/dist/modules/OpenAI_Deprecated/hooks/useWebWorker.d.ts +10 -0
- package/dist/modules/OpenAI_Deprecated/index.d.ts +1 -0
- package/dist/modules/OpenAI_Deprecated/types/openAI.d.ts +20 -0
- package/dist/modules/Plugins/PluginsContextProvider.d.ts +8 -0
- package/dist/modules/Plugins/PluginsReducer.d.ts +25 -0
- package/dist/modules/Plugins/index.d.ts +1 -0
- package/dist/modules/Queue/QueueContext.d.ts +25 -0
- package/dist/modules/Queue/QueueContextProvider.d.ts +7 -0
- package/dist/modules/Queue/QueueStatusContext.d.ts +3 -0
- package/dist/modules/Queue/hooks/useQueueManager.d.ts +19 -0
- package/dist/modules/Resources/Models/PluginSettingsForm.d.ts +8 -0
- package/dist/modules/Resources/Models/ResourceCdnForm.d.ts +30 -0
- package/dist/modules/Resources/Models/ResourceDirectoryForm.d.ts +15 -0
- package/dist/modules/Resources/Resources.d.ts +2 -0
- package/dist/modules/Resources/components/Resource/Resource.d.ts +15 -0
- package/dist/modules/Resources/components/Resource/ResourceLoading.d.ts +2 -0
- package/dist/modules/Resources/components/Resource/ResourceName.d.ts +6 -0
- package/dist/modules/Resources/components/Resource/ResourceRemoveButton.d.ts +6 -0
- package/dist/modules/Resources/components/Resource/index.d.ts +3 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourceFile/ResourceFile.d.ts +15 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourceFile/index.d.ts +3 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourceImage/ResourceImage.d.ts +14 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourceImage/index.d.ts +3 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourcePlugin/PluginContent.d.ts +13 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourcePlugin/ResourcePlugin.d.ts +14 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourceTemplate/ResourceTemplate.d.ts +13 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourceTemplate/TemplateContent.d.ts +8 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourceTemplate/index.d.ts +3 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourceVideo/ResourceVideo.d.ts +14 -0
- package/dist/modules/Resources/components/Resource/subTypes/ResourceVideo/index.d.ts +3 -0
- package/dist/modules/Resources/components/ResourceManager/ResourceContent/ResourceContent.d.ts +12 -0
- package/dist/modules/Resources/components/ResourceManager/ResourceContent/contents/ContentPlugin.d.ts +13 -0
- package/dist/modules/Resources/components/ResourceManager/ResourceContent/index.d.ts +3 -0
- package/dist/modules/Resources/components/ResourceManager/ResourceManager.d.ts +10 -0
- package/dist/modules/Resources/components/ResourceManager/ResourceUploadStatus.d.ts +9 -0
- package/dist/modules/Resources/components/ResourceManager/TemporalResource.d.ts +15 -0
- package/dist/modules/Resources/components/ResourceManager/helpers/formatBytes.d.ts +2 -0
- package/dist/modules/Resources/components/ResourceManager/helpers/getPluginManifest.d.ts +3 -0
- package/dist/modules/Resources/components/ResourceManager/index.d.ts +3 -0
- package/dist/modules/Resources/components/ResourcesCdn/ResourcesCdn.d.ts +12 -0
- package/dist/modules/Resources/components/ResourcesCdn/index.d.ts +3 -0
- package/dist/modules/Resources/components/ResourcesList/ListHelper.d.ts +5 -0
- package/dist/modules/Resources/components/ResourcesList/ResourceDirectory.d.ts +15 -0
- package/dist/modules/Resources/components/ResourcesList/ResourcesList.d.ts +18 -0
- package/dist/modules/Resources/components/ResourcesList/ResourcesListProvider.d.ts +20 -0
- package/dist/modules/Resources/components/ResourcesList/index.d.ts +3 -0
- package/dist/modules/Resources/index.d.ts +3 -0
- package/dist/modules/Schema/SchemaContextProvider.d.ts +9 -0
- package/dist/modules/Segments/Segment.d.ts +11 -0
- package/dist/modules/Segments/Segments.d.ts +2 -0
- package/dist/modules/Segments/SegmentsContextProvider.d.ts +7 -0
- package/dist/modules/Segments/SegmentsReducer.d.ts +128 -0
- package/dist/modules/Segments/index.d.ts +3 -0
- package/dist/modules/Segments/models/PublishForm.d.ts +19 -0
- package/dist/modules/Segments/models/SegmentForm.d.ts +17 -0
- package/dist/modules/Space/Models/SpaceCredentialForm.d.ts +40 -0
- package/dist/modules/Space/SpaceContainer.d.ts +6 -0
- package/dist/modules/Space/SpaceContainerInternal.d.ts +6 -0
- package/dist/modules/Space/SpaceContext.d.ts +3 -0
- package/dist/modules/Space/SpaceContextProvider.d.ts +6 -0
- package/dist/modules/Space/components/SpaceCredentialSelectorModal/ModalBody.d.ts +11 -0
- package/dist/modules/Space/components/SpaceCredentialSelectorModal/SpaceCredentialSelectorModal.d.ts +11 -0
- package/dist/modules/Space/components/SpaceCredentialSelectorModal/SpaceCredentialsEmpty.d.ts +6 -0
- package/dist/modules/Space/components/SpaceCredentialSelectorModal/index.d.ts +3 -0
- package/dist/modules/Space/components/SpaceCredentials/SpaceCredential.d.ts +19 -0
- package/dist/modules/Space/components/SpaceCredentials/SpaceCredentials.d.ts +10 -0
- package/dist/modules/Space/components/SpaceCredentials/index.d.ts +3 -0
- package/dist/modules/StateManager/StateManager.d.ts +5 -0
- package/dist/modules/Style/StyleContextProvider.d.ts +6 -0
- package/dist/modules/Transformers/Transform.d.ts +2 -0
- package/dist/modules/Transformers/TransformActions.d.ts +14 -0
- package/dist/modules/Transformers/TransformLayout.d.ts +9 -0
- package/dist/modules/Transformers/TransformPreview.d.ts +13 -0
- package/dist/modules/Undoable/UndoableContext.d.ts +28 -0
- package/dist/modules/Undoable/UndoableContextProducer.d.ts +6 -0
- package/dist/modules/Undoable/UndoableReducer.d.ts +23 -0
- package/dist/modules/Variables/Variables.d.ts +2 -0
- package/dist/modules/Variables/index.d.ts +3 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/patches/useSyncExternalStoreWithSelector.d.ts +4 -0
- package/dist/plitzi-builder-dev-vendor.js +15564 -0
- package/dist/plitzi-builder-dev-vendor.js.gz +0 -0
- package/dist/plitzi-builder-dev-vendor.js.map +1 -0
- package/dist/plitzi-builder-dev-vendor.js.map.gz +0 -0
- package/dist/plitzi-builder-vendor.js +1 -0
- package/dist/plitzi-builder-vendor.js.gz +0 -0
- package/dist/plitzi-builder.css +3 -0
- package/dist/plitzi-builder.css.gz +0 -0
- package/dist/plitzi-builder.js +4186 -0
- package/dist/plitzi-builder.js.gz +0 -0
- package/dist/robots.txt +2 -0
- package/dist/serviceWorker.d.ts +2 -0
- package/dist/vendor-entry.d.ts +17 -0
- package/package.json +140 -0
|
Binary file
|
package/dist/robots.txt
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import * as ReactJsx from 'react/jsx-runtime';
|
|
3
|
+
import * as ReactDOM from 'react-dom';
|
|
4
|
+
import * as ReactDOMClient from 'react-dom/client';
|
|
5
|
+
export declare const Activity: React.ExoticComponent<React.ActivityProps>, Children: {
|
|
6
|
+
map<T, C>(children: C | readonly C[], fn: (child: C, index: number) => T): C extends null | undefined ? C : Array<Exclude<T, boolean | null | undefined>>;
|
|
7
|
+
forEach<C>(children: C | readonly C[], fn: (child: C, index: number) => void): void;
|
|
8
|
+
count(children: any): number;
|
|
9
|
+
only<C>(children: C): C extends any[] ? never : C;
|
|
10
|
+
toArray(children: React.ReactNode | React.ReactNode[]): Array<Exclude<React.ReactNode, boolean | null | undefined>>;
|
|
11
|
+
}, Component: typeof React.Component, Fragment: React.ExoticComponent<React.FragmentProps>, Profiler: React.ExoticComponent<React.ProfilerProps>, PureComponent: typeof React.PureComponent, StrictMode: React.ExoticComponent<{
|
|
12
|
+
children?: React.ReactNode | undefined;
|
|
13
|
+
}>, Suspense: React.ExoticComponent<React.SuspenseProps>, act: typeof React.act, cache: typeof React.cache, cacheSignal: typeof React.cacheSignal, captureOwnerStack: typeof React.captureOwnerStack, cloneElement: typeof React.cloneElement, createContext: typeof React.createContext, createElement: typeof React.createElement, createRef: typeof React.createRef, forwardRef: typeof React.forwardRef, isValidElement: typeof React.isValidElement, lazy: typeof React.lazy, memo: typeof React.memo, startTransition: typeof React.startTransition, use: typeof React.use, useActionState: typeof React.useActionState, useCallback: typeof React.useCallback, useContext: typeof React.useContext, useDebugValue: typeof React.useDebugValue, useDeferredValue: typeof React.useDeferredValue, useEffect: typeof React.useEffect, useEffectEvent: typeof React.useEffectEvent, useId: typeof React.useId, useImperativeHandle: typeof React.useImperativeHandle, useInsertionEffect: typeof React.useInsertionEffect, useLayoutEffect: typeof React.useLayoutEffect, useMemo: typeof React.useMemo, useOptimistic: typeof React.useOptimistic, useReducer: typeof React.useReducer, useRef: typeof React.useRef, useState: typeof React.useState, useSyncExternalStore: typeof React.useSyncExternalStore, useTransition: typeof React.useTransition, version: string;
|
|
14
|
+
export declare const createPortal: typeof ReactDOM.createPortal, flushSync: typeof ReactDOM.flushSync, preconnect: typeof ReactDOM.preconnect, prefetchDNS: typeof ReactDOM.prefetchDNS, preinit: typeof ReactDOM.preinit, preinitModule: typeof ReactDOM.preinitModule, preload: typeof ReactDOM.preload, preloadModule: typeof ReactDOM.preloadModule, requestFormReset: typeof ReactDOM.requestFormReset, unstable_batchedUpdates: typeof ReactDOM.unstable_batchedUpdates, useFormState: typeof ReactDOM.useFormState, useFormStatus: typeof ReactDOM.useFormStatus;
|
|
15
|
+
export declare const createRoot: typeof ReactDOMClient.createRoot, hydrateRoot: typeof ReactDOMClient.hydrateRoot;
|
|
16
|
+
export declare const jsx: typeof ReactJsx.jsx, jsxs: typeof ReactJsx.jsxs;
|
|
17
|
+
export default React;
|
package/package.json
ADDED
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@plitzi/plitzi-builder",
|
|
3
|
+
"version": "0.30.19",
|
|
4
|
+
"homepage": "./",
|
|
5
|
+
"license": "AGPL-3.0",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "https",
|
|
11
|
+
"url": "https://github.com/plitzi/plitzi-workspace.git"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "dist/plitzi-builder.js",
|
|
15
|
+
"module": "dist/plitzi-builder.js",
|
|
16
|
+
"types": "dist/index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"import": "./dist/plitzi-builder.js",
|
|
21
|
+
"default": "./dist/plitzi-builder.js"
|
|
22
|
+
},
|
|
23
|
+
"./plitzi-builder.css": "./dist/plitzi-builder.css",
|
|
24
|
+
"./plitzi-builder-vendor.js": "./dist/plitzi-builder-vendor.js",
|
|
25
|
+
"./plitzi-builder-dev-vendor.js": "./dist/plitzi-builder-dev-vendor.js",
|
|
26
|
+
"./plitzi-builder-dev-vendor.js.map": "./dist/plitzi-builder-dev-vendor.js.map"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@apollo/client": "^4.1.9",
|
|
30
|
+
"@fortawesome/fontawesome-free": "^7.2.0",
|
|
31
|
+
"@plitzi/plitzi-sdk": "0.30.19",
|
|
32
|
+
"@plitzi/plitzi-ui": "^1.6.2",
|
|
33
|
+
"@plitzi/sdk-auth": "0.30.19",
|
|
34
|
+
"@plitzi/sdk-collections": "0.30.19",
|
|
35
|
+
"@plitzi/sdk-dev-tools": "0.30.19",
|
|
36
|
+
"@plitzi/sdk-event-bridge": "0.30.19",
|
|
37
|
+
"@plitzi/sdk-interactions": "0.30.19",
|
|
38
|
+
"@plitzi/sdk-navigation": "0.30.19",
|
|
39
|
+
"@plitzi/sdk-plugins": "0.30.19",
|
|
40
|
+
"@plitzi/sdk-schema": "0.30.19",
|
|
41
|
+
"@plitzi/sdk-shared": "0.30.19",
|
|
42
|
+
"@plitzi/sdk-state": "0.30.19",
|
|
43
|
+
"@plitzi/sdk-store": "0.30.19",
|
|
44
|
+
"@plitzi/sdk-style": "0.30.19",
|
|
45
|
+
"@plitzi/sdk-variables": "0.30.19",
|
|
46
|
+
"@tanstack/react-virtual": "^3.13.24",
|
|
47
|
+
"@xyflow/react": "^12.10.2",
|
|
48
|
+
"apollo-upload-client": "^19.0.0",
|
|
49
|
+
"clsx": "^2.1.1",
|
|
50
|
+
"graphql": "^16.13.2",
|
|
51
|
+
"graphql-ws": "^6.0.8",
|
|
52
|
+
"immer": "^11.1.4",
|
|
53
|
+
"jszip": "^3.10.1",
|
|
54
|
+
"react-hook-form": "^7.74.0",
|
|
55
|
+
"react-router-dom": "^7.14.2",
|
|
56
|
+
"swr": "^2.4.1",
|
|
57
|
+
"twig": "^3.0.0",
|
|
58
|
+
"uuid": "^14.0.0",
|
|
59
|
+
"zod": "^4.4.1"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"react": "^19",
|
|
63
|
+
"react-dom": "^19"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@babel/compat-data": "^7.29.0",
|
|
67
|
+
"@babel/core": "^7.29.0",
|
|
68
|
+
"@babel/helper-builder-react-jsx-experimental": "^7.12.11",
|
|
69
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
70
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
71
|
+
"@babel/plugin-transform-private-methods": "^7.28.6",
|
|
72
|
+
"@babel/plugin-transform-runtime": "^7.29.0",
|
|
73
|
+
"@babel/polyfill": "^7.12.1",
|
|
74
|
+
"@babel/preset-env": "^7.29.2",
|
|
75
|
+
"@babel/preset-react": "^7.28.5",
|
|
76
|
+
"@tailwindcss/postcss": "^4.2.4",
|
|
77
|
+
"css-loader": "^7.1.4",
|
|
78
|
+
"cypress": "15.14.2",
|
|
79
|
+
"eslint": "^9.39.4",
|
|
80
|
+
"eslint-plugin-import": "^2.32.0",
|
|
81
|
+
"flow-bin": "^0.312.0",
|
|
82
|
+
"postcss": "^8.5.12",
|
|
83
|
+
"postcss-loader": "^8.2.1",
|
|
84
|
+
"postcss-scss": "^4.0.9",
|
|
85
|
+
"prettier": "^3.8.3",
|
|
86
|
+
"prop-types": "^15.8.1",
|
|
87
|
+
"react": "19.2.5",
|
|
88
|
+
"react-dom": "19.2.5",
|
|
89
|
+
"react-refresh": "^0.18.0",
|
|
90
|
+
"react-test-renderer": "^19.2.5",
|
|
91
|
+
"sass": "^1.99.0",
|
|
92
|
+
"sass-embedded": "^1.99.0",
|
|
93
|
+
"sass-loader": "^16.0.7",
|
|
94
|
+
"stylelint": "^17.9.1",
|
|
95
|
+
"stylelint-order": "^8.1.1",
|
|
96
|
+
"stylelint-scss": "^7.0.0",
|
|
97
|
+
"terser": "^5.46.2",
|
|
98
|
+
"typescript": "^6.0.3",
|
|
99
|
+
"vite": "^8.0.10",
|
|
100
|
+
"vite-plugin-dts": "^5.0.0",
|
|
101
|
+
"vite-plugin-ejs": "^1.7.0",
|
|
102
|
+
"vite-plugin-mkcert": "^2.0.0",
|
|
103
|
+
"vite-plugin-react": "^4.0.1",
|
|
104
|
+
"vitest": "^4.1.5"
|
|
105
|
+
},
|
|
106
|
+
"scripts": {
|
|
107
|
+
"start": "vite dev --mode development",
|
|
108
|
+
"test": "vitest run",
|
|
109
|
+
"test:coverage": "",
|
|
110
|
+
"lint": "TIMING=1 eslint ./src",
|
|
111
|
+
"lint-style": "stylelint \"**/*.scss\" --custom-syntax postcss-scss",
|
|
112
|
+
"lint-style:fix": "stylelint \"**/*.scss\" --custom-syntax postcss-scss --fix",
|
|
113
|
+
"typecheck": "tsc -p tsconfig.app.json --noEmit",
|
|
114
|
+
"build:dev": "tsc -p tsconfig.app.json --noEmit && vite build --mode development",
|
|
115
|
+
"build:dev-watch": "tsc -p tsconfig.app.json --noEmit && vite build --mode development --watch",
|
|
116
|
+
"build:dev-gzip": "tsc -p tsconfig.app.json --noEmit && ONLY_GZIP=1 vite build --mode development",
|
|
117
|
+
"build:dev-analyze": "tsc -p tsconfig.app.json --noEmit && ONLY_ANALYZE=1 vite build --mode development",
|
|
118
|
+
"build:prod": "tsc -p tsconfig.app.json --noEmit && vite build",
|
|
119
|
+
"build:prod-watch": "tsc -p tsconfig.app.json --noEmit && vite build --watch",
|
|
120
|
+
"build:prod-gzip": "tsc -p tsconfig.app.json --noEmit && ONLY_GZIP=1 vite build",
|
|
121
|
+
"build:prod-analyze": "tsc -p tsconfig.app.json --noEmit && ONLY_ANALYZE=1 vite build",
|
|
122
|
+
"build-vendor:dev": "vite build --config vite.vendor.config.ts --mode development",
|
|
123
|
+
"build-vendor:prod": "vite build --config vite.vendor.config.ts"
|
|
124
|
+
},
|
|
125
|
+
"eslintConfig": {
|
|
126
|
+
"extends": "react-app"
|
|
127
|
+
},
|
|
128
|
+
"browserslist": {
|
|
129
|
+
"production": [
|
|
130
|
+
">0.2%",
|
|
131
|
+
"not dead",
|
|
132
|
+
"not op_mini all"
|
|
133
|
+
],
|
|
134
|
+
"development": [
|
|
135
|
+
"last 1 chrome version",
|
|
136
|
+
"last 1 firefox version",
|
|
137
|
+
"last 1 safari version"
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
}
|