@prefecthq/prefect-ui-library 2.9.18 → 2.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{FlowRunsPageWithDefaultFilter-69VsEaxY.mjs → FlowRunsPageWithDefaultFilter-C6ZDBABX.mjs} +2 -2
- package/dist/{FlowRunsPageWithDefaultFilter-69VsEaxY.mjs.map → FlowRunsPageWithDefaultFilter-C6ZDBABX.mjs.map} +1 -1
- package/dist/{index-CsOfQPaS.mjs → index-CIX59mKM.mjs} +225 -189
- package/dist/{index-CsOfQPaS.mjs.map → index-CIX59mKM.mjs.map} +1 -1
- package/dist/prefect-ui-library.mjs +1 -1
- package/dist/prefect-ui-library.umd.js +2 -2
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/automations/components/AutomationTriggerCustomInput.vue.d.ts +5 -6
- package/dist/types/src/automations/components/AutomationTriggerDeploymentStatusInput.vue.d.ts +5 -6
- package/dist/types/src/automations/components/AutomationTriggerEventInput.vue.d.ts +9 -10
- package/dist/types/src/automations/components/AutomationTriggerFlowRunStateInput.vue.d.ts +5 -6
- package/dist/types/src/automations/components/AutomationTriggerWorkPoolStatusInput.vue.d.ts +5 -6
- package/dist/types/src/automations/components/AutomationTriggerWorkQueueStatusInput.vue.d.ts +5 -6
- package/dist/types/src/automations/components/AutomationWithinInput.vue.d.ts +9 -10
- package/dist/types/src/components/EventResourceCombobox.vue.d.ts +9 -12
- package/dist/types/src/components/FlowRunJobVariableOverridesLabeledInput.vue.d.ts +5 -6
- package/dist/types/src/components/FlowRunResumeModal.vue.d.ts +7 -9
- package/dist/types/src/components/FlowRunStateTypeCount.vue.d.ts +2 -2
- package/dist/types/src/components/FlowRunStateTypeEmpty.vue.d.ts +2 -2
- package/dist/types/src/components/FlowRunStateTypeTabDescription.vue.d.ts +2 -2
- package/dist/types/src/components/FlowRunsAccordion.vue.d.ts +2 -2
- package/dist/types/src/components/JobVariableOverridesInput.vue.d.ts +5 -6
- package/dist/types/src/components/LogLevelLabel.vue.d.ts +2 -2
- package/dist/types/src/components/LogLevelSelect.vue.d.ts +4 -4
- package/dist/types/src/components/NotificationStatusSelect.vue.d.ts +4 -4
- package/dist/types/src/components/SearchInput.vue.d.ts +3 -3
- package/dist/types/src/components/StateIcon.vue.d.ts +2 -2
- package/dist/types/src/components/StateListItem.vue.d.ts +2 -2
- package/dist/types/src/index.d.ts +1 -1
- package/dist/types/src/maps/index.d.ts +2 -2
- package/dist/types/src/mocks/index.d.ts +3 -3
- package/dist/types/src/models/StateType.d.ts +1 -1
- package/dist/types/src/schemas/components/SchemaForm.vue.d.ts +6 -6
- package/dist/types/src/schemas/components/SchemaFormProperty.vue.d.ts +1 -1
- package/dist/types/src/schemas/components/SchemaFormPropertyBoolean.vue.d.ts +8 -13
- package/dist/types/src/schemas/components/SchemaFormPropertyMenu.vue.d.ts +12 -15
- package/dist/types/src/schemas/components/SchemaInput.vue.d.ts +6 -6
- package/dist/types/src/schemas/types/schemaValues.d.ts +1 -1
- package/dist/types/src/services/Mapper.d.ts +2 -2
- package/dist/types/src/services/Mocker.d.ts +3 -3
- package/dist/types/src/tailwind.config.d.ts +14 -0
- package/dist/types/tailwind.config.d.ts +100 -0
- package/dist/types/vite.config.d.mts +2 -0
- package/package.json +11 -9
- package/src/automations/components/AutomationActionChangeFlowRunStateInput.vue +71 -0
- package/src/automations/components/AutomationActionDescription.vue +78 -0
- package/src/automations/components/AutomationActionDescriptionChangeFlowRunState.vue +36 -0
- package/src/automations/components/AutomationActionDescriptionDefault.vue +13 -0
- package/src/automations/components/AutomationActionDescriptionPauseResumeAutomation.vue +32 -0
- package/src/automations/components/AutomationActionDescriptionPauseResumeDeployment.vue +32 -0
- package/src/automations/components/AutomationActionDescriptionPauseResumeWorkPool.vue +37 -0
- package/src/automations/components/AutomationActionDescriptionPauseResumeWorkQueue.vue +36 -0
- package/src/automations/components/AutomationActionDescriptionRunDeployment.vue +73 -0
- package/src/automations/components/AutomationActionDescriptionSuspendCancelFlowRun.vue +16 -0
- package/src/automations/components/AutomationActionInput.vue +112 -0
- package/src/automations/components/AutomationActionPauseAutomationInput.vue +32 -0
- package/src/automations/components/AutomationActionPauseDeploymentInput.vue +32 -0
- package/src/automations/components/AutomationActionPauseWorkPoolInput.vue +32 -0
- package/src/automations/components/AutomationActionPauseWorkQueueInput.vue +32 -0
- package/src/automations/components/AutomationActionResumeAutomationInput.vue +32 -0
- package/src/automations/components/AutomationActionResumeDeploymentInput.vue +32 -0
- package/src/automations/components/AutomationActionResumeWorkPoolInput.vue +32 -0
- package/src/automations/components/AutomationActionResumeWorkQueueInput.vue +32 -0
- package/src/automations/components/AutomationActionRunDeploymentInput.vue +99 -0
- package/src/automations/components/AutomationActionRunDeploymentParameters.vue +82 -0
- package/src/automations/components/AutomationActionSendNotificationInput.vue +108 -0
- package/src/automations/components/AutomationAutomationCombobox.vue +31 -0
- package/src/automations/components/AutomationCombobox.vue +67 -0
- package/src/automations/components/AutomationDeploymentCombobox.vue +31 -0
- package/src/automations/components/AutomationIconText.vue +22 -0
- package/src/automations/components/AutomationMenu.vue +67 -0
- package/src/automations/components/AutomationToggle.vue +52 -0
- package/src/automations/components/AutomationTriggerCustomInput.vue +183 -0
- package/src/automations/components/AutomationTriggerDeploymentStatusInput.vue +64 -0
- package/src/automations/components/AutomationTriggerDescription.vue +27 -0
- package/src/automations/components/AutomationTriggerEventInput.vue +62 -0
- package/src/automations/components/AutomationTriggerEventPostureSelect.vue +35 -0
- package/src/automations/components/AutomationTriggerFlowRunStateInput.vue +83 -0
- package/src/automations/components/AutomationTriggerWorkPoolStatusInput.vue +64 -0
- package/src/automations/components/AutomationTriggerWorkQueueStatusInput.vue +72 -0
- package/src/automations/components/AutomationWithinInput.vue +77 -0
- package/src/automations/components/AutomationWorkPoolCombobox.vue +79 -0
- package/src/automations/components/AutomationWorkQueueCombobox.vue +40 -0
- package/src/automations/components/AutomationsPageEmptyState.vue +33 -0
- package/src/automations/components/index.ts +10 -0
- package/src/automations/compositions/index.ts +1 -0
- package/src/automations/compositions/useCreateAutomationQueryParams.ts +94 -0
- package/src/automations/defaultActionValues.ts +89 -0
- package/src/automations/defaultTriggerValues.ts +56 -0
- package/src/automations/index.ts +5 -0
- package/src/automations/maps/actions.ts +243 -0
- package/src/automations/maps/automations.ts +7 -0
- package/src/automations/maps/createAutomationQuery.ts +60 -0
- package/src/automations/maps/deploymentStatusTrigger.ts +95 -0
- package/src/automations/maps/event.ts +62 -0
- package/src/automations/maps/flowRunStateTrigger.ts +73 -0
- package/src/automations/maps/triggers.ts +94 -0
- package/src/automations/maps/utilities.ts +132 -0
- package/src/automations/maps/workPoolStatusTrigger.ts +106 -0
- package/src/automations/maps/workQueueStatusTrigger.ts +106 -0
- package/src/automations/types/actions.ts +325 -0
- package/src/automations/types/api/actions.ts +194 -0
- package/src/automations/types/api/automation.ts +6 -0
- package/src/automations/types/api/triggers.ts +54 -0
- package/src/automations/types/automation.ts +20 -0
- package/src/automations/types/automationTriggerEvent.ts +47 -0
- package/src/automations/types/createAutomationQuery.ts +50 -0
- package/src/automations/types/deploymentStatusTrigger.ts +27 -0
- package/src/automations/types/filter.ts +7 -0
- package/src/automations/types/flowRunStateTrigger.ts +51 -0
- package/src/automations/types/index.ts +63 -0
- package/src/automations/types/triggerTemplates.ts +47 -0
- package/src/automations/types/triggers.ts +12 -0
- package/src/automations/types/workPoolStatusTrigger.ts +24 -0
- package/src/automations/types/workQueueStatusTrigger.ts +26 -0
- package/src/components/.eslintrc.json +5 -0
- package/src/components/ActivityChart.vue +79 -0
- package/src/components/ArtifactCard.vue +231 -0
- package/src/components/ArtifactCollections.vue +127 -0
- package/src/components/ArtifactCollectionsEmptyState.vue +25 -0
- package/src/components/ArtifactDataMarkdown.vue +21 -0
- package/src/components/ArtifactDataRaw.vue +51 -0
- package/src/components/ArtifactDataResult.vue +25 -0
- package/src/components/ArtifactDataTable.vue +129 -0
- package/src/components/ArtifactDataUnknown.vue +23 -0
- package/src/components/ArtifactDataView.vue +36 -0
- package/src/components/ArtifactDescription.vue +22 -0
- package/src/components/ArtifactDetails.vue +142 -0
- package/src/components/ArtifactKeyIconText.vue +25 -0
- package/src/components/ArtifactMenu.vue +23 -0
- package/src/components/ArtifactResultCard.vue +81 -0
- package/src/components/ArtifactTimeline.vue +184 -0
- package/src/components/ArtifactTimelineItemContent.vue +180 -0
- package/src/components/ArtifactTimelineItemDate.vue +58 -0
- package/src/components/ArtifactTypeSelect.vue +32 -0
- package/src/components/BetaBadge.vue +18 -0
- package/src/components/BlockCapabilityBlockDocumentInput.vue +170 -0
- package/src/components/BlockCreateModal.vue +102 -0
- package/src/components/BlockDocument.vue +21 -0
- package/src/components/BlockDocumentCard.vue +49 -0
- package/src/components/BlockDocumentCombobox.vue +49 -0
- package/src/components/BlockDocumentInput.vue +69 -0
- package/src/components/BlockDocumentKeyValue.vue +27 -0
- package/src/components/BlockDocumentMenu.vue +58 -0
- package/src/components/BlockDocumentsTable.vue +233 -0
- package/src/components/BlockIconText.vue +22 -0
- package/src/components/BlockSchemaCapabilities.vue +16 -0
- package/src/components/BlockSchemaCapabilitySelect.vue +53 -0
- package/src/components/BlockSchemaCreateForm.vue +90 -0
- package/src/components/BlockSchemaEditForm.vue +48 -0
- package/src/components/BlockTypeCard.vue +79 -0
- package/src/components/BlockTypeCardLayout.vue +48 -0
- package/src/components/BlockTypeCardPreview.vue +81 -0
- package/src/components/BlockTypeList.vue +135 -0
- package/src/components/BlockTypeSelect.vue +52 -0
- package/src/components/BlockTypeSnippet.vue +22 -0
- package/src/components/BlocksDeleteButton.vue +52 -0
- package/src/components/BlocksPageEmptyState.vue +34 -0
- package/src/components/CodeBanner.vue +64 -0
- package/src/components/CollectionCardPreview.vue +68 -0
- package/src/components/CollectionItemCard.vue +53 -0
- package/src/components/CollectionsList.vue +99 -0
- package/src/components/ColorModeSelect.vue +41 -0
- package/src/components/ColorModeSelectOption.vue +86 -0
- package/src/components/ConcurrencyLimitActiveRuns.vue +31 -0
- package/src/components/ConcurrencyLimitDetails.vue +36 -0
- package/src/components/ConcurrencyLimitMenu.vue +51 -0
- package/src/components/ConcurrencyLimitResetModal.vue +61 -0
- package/src/components/ConcurrencyLimitV2Menu.vue +51 -0
- package/src/components/ConcurrencyLimitV2Toggle.vue +59 -0
- package/src/components/ConcurrencyLimitsCreateModal.vue +78 -0
- package/src/components/ConcurrencyLimitsPageEmptyState.vue +37 -0
- package/src/components/ConcurrencyLimitsTable.vue +65 -0
- package/src/components/ConcurrencyLimitsV2CreateModal.vue +114 -0
- package/src/components/ConcurrencyLimitsV2EmptyState.vue +36 -0
- package/src/components/ConcurrencyLimitsV2Table.vue +78 -0
- package/src/components/ConcurrencyLimitsV2UpdateModal.vue +119 -0
- package/src/components/ConcurrencyTableActiveSlots.vue +18 -0
- package/src/components/ConfirmDeleteModal.vue +71 -0
- package/src/components/ConfirmDeleteModalWithSlot.vue +30 -0
- package/src/components/ConfirmStateChangeModal.vue +92 -0
- package/src/components/CopyOverflowMenuItem.vue +13 -0
- package/src/components/CopyableWrapper.vue +38 -0
- package/src/components/CronScheduleForm.vue +168 -0
- package/src/components/CumulativeTaskRunsCard.vue +275 -0
- package/src/components/DashboardWorkPoolCard.vue +116 -0
- package/src/components/DashboardWorkPoolCardDetail.vue +28 -0
- package/src/components/DashboardWorkPoolFlowRunCompleteness.vue +118 -0
- package/src/components/DashboardWorkPoolFlowRunsTotal.vue +35 -0
- package/src/components/DashboardWorkPoolLateCount.vue +48 -0
- package/src/components/DashboardWorkPoolsCard.vue +72 -0
- package/src/components/DateInput.vue +57 -0
- package/src/components/DateRangeInput.vue +54 -0
- package/src/components/DateRangeInputWithFlowRunHistory.vue +125 -0
- package/src/components/DateRangeSelect.vue +47 -0
- package/src/components/DayOrDescriptionModal.vue +10 -0
- package/src/components/DeploymentCombobox.vue +83 -0
- package/src/components/DeploymentComboboxOption.vue +35 -0
- package/src/components/DeploymentConfiguration.vue +32 -0
- package/src/components/DeploymentCustomRunOverflowMenuItem.vue +20 -0
- package/src/components/DeploymentDeprecatedMessage.vue +31 -0
- package/src/components/DeploymentDescription.vue +9 -0
- package/src/components/DeploymentDescriptionEmptyState.vue +37 -0
- package/src/components/DeploymentDetails.vue +138 -0
- package/src/components/DeploymentForm.vue +160 -0
- package/src/components/DeploymentFormV2.vue +166 -0
- package/src/components/DeploymentIconText.vue +24 -0
- package/src/components/DeploymentList.vue +309 -0
- package/src/components/DeploymentMenu.vue +63 -0
- package/src/components/DeploymentQuickRunOverflowMenuItem.vue +61 -0
- package/src/components/DeploymentRelationships.vue +38 -0
- package/src/components/DeploymentScheduleCard.vue +72 -0
- package/src/components/DeploymentScheduleMenu.vue +83 -0
- package/src/components/DeploymentScheduleTags.vue +52 -0
- package/src/components/DeploymentScheduleToggle.vue +52 -0
- package/src/components/DeploymentSchedulesFieldset.vue +41 -0
- package/src/components/DeploymentStatusBadge.vue +42 -0
- package/src/components/DeploymentStatusIcon.vue +36 -0
- package/src/components/DeploymentStatusSelect.vue +35 -0
- package/src/components/DeploymentTagsInput.vue +45 -0
- package/src/components/DeploymentToggle.vue +57 -0
- package/src/components/DeploymentsCount.vue +35 -0
- package/src/components/DeploymentsDeleteButton.vue +60 -0
- package/src/components/DeploymentsList.vue +274 -0
- package/src/components/DeploymentsPageEmptyState.vue +29 -0
- package/src/components/DocumentationButton.vue +13 -0
- package/src/components/DurationIconText.vue +16 -0
- package/src/components/DurationInput.vue +78 -0
- package/src/components/EventResourceCombobox.vue +100 -0
- package/src/components/EventsCombobox.vue +87 -0
- package/src/components/ExtraInfoModal.vue +48 -0
- package/src/components/ExtraInfoTooltip.vue +22 -0
- package/src/components/FlowActivityChart.vue +46 -0
- package/src/components/FlowCombobox.vue +75 -0
- package/src/components/FlowDetails.vue +28 -0
- package/src/components/FlowIconText.vue +24 -0
- package/src/components/FlowList.vue +215 -0
- package/src/components/FlowMenu.vue +44 -0
- package/src/components/FlowPopover.vue +74 -0
- package/src/components/FlowRouterLink.vue +62 -0
- package/src/components/FlowRunArtifacts.vue +130 -0
- package/src/components/FlowRunBreadCrumbs.vue +56 -0
- package/src/components/FlowRunCancelButton.vue +52 -0
- package/src/components/FlowRunCancelModal.vue +87 -0
- package/src/components/FlowRunCreateFormTags.vue +29 -0
- package/src/components/FlowRunCreateFormV2.vue +196 -0
- package/src/components/FlowRunCreateFormWhen.vue +38 -0
- package/src/components/FlowRunCreateFormWorkQueueCombobox.vue +33 -0
- package/src/components/FlowRunDeployment.vue +22 -0
- package/src/components/FlowRunDetails.vue +82 -0
- package/src/components/FlowRunFilteredList.vue +92 -0
- package/src/components/FlowRunFlow.vue +20 -0
- package/src/components/FlowRunGraph.vue +192 -0
- package/src/components/FlowRunGraphArtifactCard.vue +23 -0
- package/src/components/FlowRunGraphArtifactDrawer.vue +118 -0
- package/src/components/FlowRunGraphArtifactsPopover.vue +48 -0
- package/src/components/FlowRunGraphConfirmation.vue +57 -0
- package/src/components/FlowRunGraphPopover.vue +66 -0
- package/src/components/FlowRunGraphSelectionPanel.vue +40 -0
- package/src/components/FlowRunGraphStatePopover.vue +53 -0
- package/src/components/FlowRunHistoryCard.vue +49 -0
- package/src/components/FlowRunIconText.vue +21 -0
- package/src/components/FlowRunJobVariableOverridesLabeledInput.vue +39 -0
- package/src/components/FlowRunList.vue +42 -0
- package/src/components/FlowRunListItem.vue +100 -0
- package/src/components/FlowRunLogs.vue +93 -0
- package/src/components/FlowRunMenu.vue +159 -0
- package/src/components/FlowRunName.vue +40 -0
- package/src/components/FlowRunNameInput.vue +39 -0
- package/src/components/FlowRunParentFlowRun.vue +36 -0
- package/src/components/FlowRunPopOver.vue +88 -0
- package/src/components/FlowRunPopOverContent.vue +71 -0
- package/src/components/FlowRunResults.vue +110 -0
- package/src/components/FlowRunResumeButton.vue +35 -0
- package/src/components/FlowRunResumeModal.vue +100 -0
- package/src/components/FlowRunRetryButton.vue +40 -0
- package/src/components/FlowRunRetryModal.vue +72 -0
- package/src/components/FlowRunStartTime.vue +24 -0
- package/src/components/FlowRunStateTypeCount.vue +72 -0
- package/src/components/FlowRunStateTypeEmpty.vue +83 -0
- package/src/components/FlowRunStateTypeEmptyAwaitingImage.vue +247 -0
- package/src/components/FlowRunStateTypeEmptyBadTerminalImage.vue +292 -0
- package/src/components/FlowRunStateTypeEmptyGoodTerminalImage.vue +292 -0
- package/src/components/FlowRunStateTypeEmptyLiveImage.vue +337 -0
- package/src/components/FlowRunStateTypeTabDescription.vue +63 -0
- package/src/components/FlowRunStateTypeTabs.vue +81 -0
- package/src/components/FlowRunSuspendButton.vue +36 -0
- package/src/components/FlowRunSuspendModal.vue +91 -0
- package/src/components/FlowRunTagsInput.vue +45 -0
- package/src/components/FlowRunTaskCounts.vue +48 -0
- package/src/components/FlowRunTaskRuns.vue +97 -0
- package/src/components/FlowRunTimelineSubFlowRunDetails.vue +85 -0
- package/src/components/FlowRunTimelineTaskDetails.vue +61 -0
- package/src/components/FlowRunWorkPool.vue +19 -0
- package/src/components/FlowRunWorkQueue.vue +49 -0
- package/src/components/FlowRunsAccordion.vue +69 -0
- package/src/components/FlowRunsAccordionContent.vue +49 -0
- package/src/components/FlowRunsAccordionHeader.vue +93 -0
- package/src/components/FlowRunsBarChart.vue +217 -0
- package/src/components/FlowRunsDeleteButton.vue +66 -0
- package/src/components/FlowRunsFilterGroup.vue +110 -0
- package/src/components/FlowRunsPageEmptyState.vue +29 -0
- package/src/components/FlowRunsPageWithDefaultFilter.vue +55 -0
- package/src/components/FlowRunsScatterPlot.vue +92 -0
- package/src/components/FlowRunsSort.vue +33 -0
- package/src/components/FlowsDeleteButton.vue +60 -0
- package/src/components/FlowsFilterGroup.vue +118 -0
- package/src/components/FlowsPageEmptyState.vue +45 -0
- package/src/components/FormattedDate.vue +59 -0
- package/src/components/FourZeroFour.vue +384 -0
- package/src/components/IconTextCount.vue +34 -0
- package/src/components/IntervalScheduleForm.vue +161 -0
- package/src/components/JobVariableOverridesInput.vue +24 -0
- package/src/components/JsonInput.vue +75 -0
- package/src/components/LastFlowRun.vue +18 -0
- package/src/components/LogLevelLabel.vue +66 -0
- package/src/components/LogLevelSelect.vue +38 -0
- package/src/components/LogRow.vue +105 -0
- package/src/components/LogoImage.vue +46 -0
- package/src/components/LogsContainer.vue +91 -0
- package/src/components/LogsSort.vue +30 -0
- package/src/components/MarketingBanner.vue +88 -0
- package/src/components/MiniDeploymentHistory.vue +25 -0
- package/src/components/MiniFlowHistory.vue +26 -0
- package/src/components/NextFlowRun.vue +18 -0
- package/src/components/NotificationDetails.vue +104 -0
- package/src/components/NotificationForm.vue +241 -0
- package/src/components/NotificationMenu.vue +53 -0
- package/src/components/NotificationStatusSelect.vue +31 -0
- package/src/components/NotificationToggle.vue +59 -0
- package/src/components/NotificationsPageEmptyState.vue +41 -0
- package/src/components/NotificationsTable.vue +119 -0
- package/src/components/PageHeading.vue +89 -0
- package/src/components/PageHeadingAccountSettings.vue +9 -0
- package/src/components/PageHeadingApiKeys.vue +14 -0
- package/src/components/PageHeadingArtifact.vue +62 -0
- package/src/components/PageHeadingArtifactKey.vue +41 -0
- package/src/components/PageHeadingArtifacts.vue +11 -0
- package/src/components/PageHeadingBlock.vue +30 -0
- package/src/components/PageHeadingBlockEdit.vue +22 -0
- package/src/components/PageHeadingBlocks.vue +18 -0
- package/src/components/PageHeadingBlocksCatalog.vue +27 -0
- package/src/components/PageHeadingBlocksCatalogCreate.vue +24 -0
- package/src/components/PageHeadingBlocksCatalogView.vue +23 -0
- package/src/components/PageHeadingConcurrencyLimit.vue +32 -0
- package/src/components/PageHeadingConcurrencyLimits.vue +18 -0
- package/src/components/PageHeadingDeployment.vue +41 -0
- package/src/components/PageHeadingDeploymentEdit.vue +22 -0
- package/src/components/PageHeadingDeployments.vue +13 -0
- package/src/components/PageHeadingFlow.vue +34 -0
- package/src/components/PageHeadingFlowCollection.vue +22 -0
- package/src/components/PageHeadingFlowCollections.vue +15 -0
- package/src/components/PageHeadingFlowRun.vue +134 -0
- package/src/components/PageHeadingFlowRunCreate.vue +28 -0
- package/src/components/PageHeadingFlowRuns.vue +34 -0
- package/src/components/PageHeadingFlows.vue +8 -0
- package/src/components/PageHeadingNotificationCreate.vue +9 -0
- package/src/components/PageHeadingNotificationEdit.vue +15 -0
- package/src/components/PageHeadingNotifications.vue +18 -0
- package/src/components/PageHeadingTaskRun.vue +106 -0
- package/src/components/PageHeadingVariables.vue +23 -0
- package/src/components/PageHeadingWorkPool.vue +39 -0
- package/src/components/PageHeadingWorkPoolCreate.vue +15 -0
- package/src/components/PageHeadingWorkPoolEdit.vue +22 -0
- package/src/components/PageHeadingWorkPoolQueue.vue +40 -0
- package/src/components/PageHeadingWorkPoolQueueCreate.vue +21 -0
- package/src/components/PageHeadingWorkPoolQueueEdit.vue +23 -0
- package/src/components/PageHeadingWorkPools.vue +22 -0
- package/src/components/PageHeadingWorkQueue.vue +42 -0
- package/src/components/PageHeadingWorkQueueCreate.vue +15 -0
- package/src/components/PageHeadingWorkQueueEdit.vue +22 -0
- package/src/components/PageHeadingWorkQueues.vue +18 -0
- package/src/components/PageHeadingWorkspaceSettings.vue +9 -0
- package/src/components/ParametersTable.vue +96 -0
- package/src/components/ProcessTypeBadge.vue +19 -0
- package/src/components/QuickRunParametersModal.vue +91 -0
- package/src/components/ResultsCount.vue +25 -0
- package/src/components/RowGridLayoutList.vue +53 -0
- package/src/components/RunMenu.vue +68 -0
- package/src/components/SaveFilterModal.vue +83 -0
- package/src/components/SavedFilters.vue +90 -0
- package/src/components/SavedFiltersDeleteModal.vue +54 -0
- package/src/components/SavedFiltersMenu.vue +110 -0
- package/src/components/ScheduleFieldset.vue +80 -0
- package/src/components/ScheduleFormModal.vue +129 -0
- package/src/components/SchemaForm.vue +42 -0
- package/src/components/SchemaFormFields.vue +31 -0
- package/src/components/SchemaFormFieldsWithValues.vue +47 -0
- package/src/components/SchemaFormInput.vue +72 -0
- package/src/components/SchemaFormProperties.vue +29 -0
- package/src/components/SchemaFormProperty.vue +45 -0
- package/src/components/SchemaFormPropertyAllOf.vue +17 -0
- package/src/components/SchemaFormPropertyAnyOf.vue +71 -0
- package/src/components/SchemaInput.vue +152 -0
- package/src/components/SchemaPropertiesKeyValues.vue +28 -0
- package/src/components/SchemaPropertyBlockKeyValue.vue +39 -0
- package/src/components/SchemaPropertyKeyValue.vue +58 -0
- package/src/components/SearchInput.vue +60 -0
- package/src/components/SelectedCount.vue +33 -0
- package/src/components/SeparatedList.vue +57 -0
- package/src/components/StateBadge.vue +56 -0
- package/src/components/StateIcon.vue +32 -0
- package/src/components/StateListItem.vue +200 -0
- package/src/components/StateNameSelect.vue +146 -0
- package/src/components/StateSelect.vue +87 -0
- package/src/components/StatisticKeyValue.vue +48 -0
- package/src/components/StatusIcon.vue +26 -0
- package/src/components/SubmitButton.vue +15 -0
- package/src/components/TaskRunArtifacts.vue +87 -0
- package/src/components/TaskRunDetails.vue +107 -0
- package/src/components/TaskRunIconText.vue +22 -0
- package/src/components/TaskRunList.vue +38 -0
- package/src/components/TaskRunListItem.vue +80 -0
- package/src/components/TaskRunLogs.vue +82 -0
- package/src/components/TaskRunTagsInput.vue +44 -0
- package/src/components/TaskRunsSort.vue +31 -0
- package/src/components/TimeSpanFilter.vue +29 -0
- package/src/components/TimezoneSelect.vue +80 -0
- package/src/components/ToastFlowRunCreate.vue +59 -0
- package/src/components/ToastParameterValidationError.vue +7 -0
- package/src/components/UseDeploymentSlot.vue +13 -0
- package/src/components/UseFlowSlot.vue +13 -0
- package/src/components/VariableCreateModal.vue +135 -0
- package/src/components/VariableEditModal.vue +134 -0
- package/src/components/VariableMenu.vue +69 -0
- package/src/components/VariableTagsInput.vue +44 -0
- package/src/components/VariablesDeleteButton.vue +54 -0
- package/src/components/VariablesPageEmptyState.vue +45 -0
- package/src/components/VariablesTable.vue +203 -0
- package/src/components/ViewModeButtonGroup.vue +13 -0
- package/src/components/WorkPoolAverageLateTime.vue +41 -0
- package/src/components/WorkPoolBaseJobTemplateFormSection.vue +121 -0
- package/src/components/WorkPoolCard.vue +121 -0
- package/src/components/WorkPoolCombobox.vue +68 -0
- package/src/components/WorkPoolCreateWizard.vue +78 -0
- package/src/components/WorkPoolCreateWizardStepInformation.vue +62 -0
- package/src/components/WorkPoolCreateWizardStepInfrastructureConfiguration.vue +66 -0
- package/src/components/WorkPoolCreateWizardStepInfrastructureType.vue +117 -0
- package/src/components/WorkPoolDetails.vue +72 -0
- package/src/components/WorkPoolEditForm.vue +101 -0
- package/src/components/WorkPoolIconText.vue +22 -0
- package/src/components/WorkPoolLastPolled.vue +30 -0
- package/src/components/WorkPoolLateIndicator.vue +31 -0
- package/src/components/WorkPoolList.vue +26 -0
- package/src/components/WorkPoolMenu.vue +55 -0
- package/src/components/WorkPoolQueueCombobox.vue +77 -0
- package/src/components/WorkPoolQueueCreateForm.vue +116 -0
- package/src/components/WorkPoolQueueDetails.vue +77 -0
- package/src/components/WorkPoolQueueEditForm.vue +115 -0
- package/src/components/WorkPoolQueueHealthIcon.vue +79 -0
- package/src/components/WorkPoolQueueMenu.vue +59 -0
- package/src/components/WorkPoolQueuePriorityLabel.vue +12 -0
- package/src/components/WorkPoolQueueStatusArray.vue +74 -0
- package/src/components/WorkPoolQueueStatusBadge.vue +70 -0
- package/src/components/WorkPoolQueueStatusIcon.vue +63 -0
- package/src/components/WorkPoolQueueToggle.vue +61 -0
- package/src/components/WorkPoolQueueUpcomingFlowRunsList.vue +55 -0
- package/src/components/WorkPoolQueuesDeleteButton.vue +67 -0
- package/src/components/WorkPoolQueuesTable.vue +127 -0
- package/src/components/WorkPoolStatusBadge.vue +18 -0
- package/src/components/WorkPoolStatusIcon.vue +51 -0
- package/src/components/WorkPoolStatusSelect.vue +36 -0
- package/src/components/WorkPoolToggle.vue +56 -0
- package/src/components/WorkPoolTypeSelect.vue +46 -0
- package/src/components/WorkPools.vue +63 -0
- package/src/components/WorkPoolsPageEmptyState.vue +40 -0
- package/src/components/WorkQueueCombobox.vue +120 -0
- package/src/components/WorkQueueCreateForm.vue +95 -0
- package/src/components/WorkQueueDetails.vue +90 -0
- package/src/components/WorkQueueEditForm.vue +101 -0
- package/src/components/WorkQueueFlowRunsList.vue +44 -0
- package/src/components/WorkQueueIconText.vue +62 -0
- package/src/components/WorkQueueLastPolled.vue +19 -0
- package/src/components/WorkQueueLateIndicator.vue +29 -0
- package/src/components/WorkQueueMenu.vue +69 -0
- package/src/components/WorkQueueStatusBadge.vue +48 -0
- package/src/components/WorkQueueStatusIcon.vue +43 -0
- package/src/components/WorkQueueStatusSelect.vue +35 -0
- package/src/components/WorkQueueToggle.vue +69 -0
- package/src/components/WorkQueuesDeleteButton.vue +66 -0
- package/src/components/WorkQueuesPageEmptyState.vue +42 -0
- package/src/components/WorkQueuesTable.vue +146 -0
- package/src/components/WorkerStatusBadge.vue +21 -0
- package/src/components/WorkersLateIndicator.vue +52 -0
- package/src/components/WorkersTable.vue +151 -0
- package/src/components/WorkspaceDashboardFlowRunsCard.vue +53 -0
- package/src/components/WorkspaceVariableCombobox.vue +64 -0
- package/src/components/index.ts +332 -0
- package/src/compositions/filters.ts +700 -0
- package/src/compositions/index.ts +63 -0
- package/src/compositions/useArtifact.ts +37 -0
- package/src/compositions/useArtifactCollection.ts +37 -0
- package/src/compositions/useBlockDocument.ts +37 -0
- package/src/compositions/useBlockDocuments.ts +45 -0
- package/src/compositions/useBlockSchema.ts +53 -0
- package/src/compositions/useBlockType.ts +54 -0
- package/src/compositions/useCan.ts +6 -0
- package/src/compositions/useComponent.ts +12 -0
- package/src/compositions/useDashboardSubscriptionOptions.ts +7 -0
- package/src/compositions/useDateRangeSelectValue.ts +135 -0
- package/src/compositions/useDefaultSavedSearchFilter.ts +40 -0
- package/src/compositions/useDeployment.ts +37 -0
- package/src/compositions/useDeployments.ts +45 -0
- package/src/compositions/useDeploymentsCount.ts +41 -0
- package/src/compositions/useFavicon.ts +42 -0
- package/src/compositions/useFilterPagination.ts +22 -0
- package/src/compositions/useFlow.ts +37 -0
- package/src/compositions/useFlowRun.ts +39 -0
- package/src/compositions/useFlowRunCompleteness.ts +62 -0
- package/src/compositions/useFlowRunFavicon.ts +20 -0
- package/src/compositions/useFlowRuns.ts +46 -0
- package/src/compositions/useFlowRunsAverageLateness.ts +35 -0
- package/src/compositions/useFlowRunsCount.ts +45 -0
- package/src/compositions/useFlows.ts +45 -0
- package/src/compositions/useFlowsCount.ts +41 -0
- package/src/compositions/useForm.ts +29 -0
- package/src/compositions/useInterval.ts +10 -0
- package/src/compositions/useJsonRecord.ts +47 -0
- package/src/compositions/useLastFlowRun.ts +39 -0
- package/src/compositions/useLogsSort.ts +34 -0
- package/src/compositions/useNextFlowRun.ts +41 -0
- package/src/compositions/useOptionalPropertiesSchema.ts +23 -0
- package/src/compositions/useOptionalRules.ts +9 -0
- package/src/compositions/usePaginatedSubscription.ts +102 -0
- package/src/compositions/usePagination.spec.ts +8 -0
- package/src/compositions/usePagination.ts +213 -0
- package/src/compositions/useReactiveField.ts +21 -0
- package/src/compositions/useReactiveForm.ts +23 -0
- package/src/compositions/useSavedFlowRunsSearches.ts +66 -0
- package/src/compositions/useScrollLinking.ts +63 -0
- package/src/compositions/useShowModal.ts +29 -0
- package/src/compositions/useStatePolling.ts +33 -0
- package/src/compositions/useSubscriptions.ts +52 -0
- package/src/compositions/useTabs.ts +38 -0
- package/src/compositions/useTaskRun.ts +37 -0
- package/src/compositions/useTaskRunFavicon.ts +20 -0
- package/src/compositions/useTaskRunResult.ts +47 -0
- package/src/compositions/useTaskRuns.ts +46 -0
- package/src/compositions/useTaskRunsCount.ts +58 -0
- package/src/compositions/useTaskRunsHistory.ts +45 -0
- package/src/compositions/useThemeTokens.ts +119 -0
- package/src/compositions/useVariable.ts +37 -0
- package/src/compositions/useVariables.ts +62 -0
- package/src/compositions/useWorkPool.ts +38 -0
- package/src/compositions/useWorkPoolById.ts +38 -0
- package/src/compositions/useWorkPoolLastPolled.ts +60 -0
- package/src/compositions/useWorkPoolQueue.ts +37 -0
- package/src/compositions/useWorkPoolsCount.ts +34 -0
- package/src/compositions/useWorkQueueStatus.ts +37 -0
- package/src/compositions/useWorkspaceApi.ts +6 -0
- package/src/compositions/useWorkspaceDashboardFilter.ts +26 -0
- package/src/compositions/useWorkspaceEvent.ts +32 -0
- package/src/compositions/useWorkspaceEventsSubscription.ts +73 -0
- package/src/compositions/useWorkspaceFlowRunDashboardFilter.ts +59 -0
- package/src/compositions/useWorkspaceRoutes.ts +7 -0
- package/src/date.d.ts +3 -0
- package/src/formatters/BlockDocumentSortValuesParam.ts +21 -0
- package/src/formatters/DateRangeSelectAroundPeriodParam.ts +21 -0
- package/src/formatters/DateRangeSelectAroundUnitParam.ts +21 -0
- package/src/formatters/DateRangeSelectTypeParam.ts +21 -0
- package/src/formatters/DeploymentSortValuesSortParam.ts +21 -0
- package/src/formatters/DeploymentStatusRouteParam.ts +17 -0
- package/src/formatters/FlowRunSortValuesSortParam.ts +21 -0
- package/src/formatters/FlowSortValuesSortParam.ts +21 -0
- package/src/formatters/JsonRouteParam.ts +13 -0
- package/src/formatters/OperatorRouteParam.ts +17 -0
- package/src/formatters/TaskRunSortValuesSortParam.ts +21 -0
- package/src/formatters/index.ts +7 -0
- package/src/index.ts +45 -0
- package/src/intl.d.ts +7 -0
- package/src/localization/index.ts +10 -0
- package/src/localization/locale/en.ts +214 -0
- package/src/maps/.eslintrc.json +5 -0
- package/src/maps/README.md +62 -0
- package/src/maps/artifact.ts +37 -0
- package/src/maps/blockDocument.ts +31 -0
- package/src/maps/blockDocumentCreate.ts +26 -0
- package/src/maps/blockDocumentReferences.ts +22 -0
- package/src/maps/blockDocumentUpdate.ts +14 -0
- package/src/maps/blockSchema.ts +16 -0
- package/src/maps/blockSchemaReferences.ts +11 -0
- package/src/maps/blockType.ts +17 -0
- package/src/maps/collectionItem.ts +28 -0
- package/src/maps/concurrencyLimit.ts +16 -0
- package/src/maps/concurrencyLimitCreate.ts +12 -0
- package/src/maps/concurrencyV2Limit.ts +27 -0
- package/src/maps/concurrencyV2LimitCreate.ts +20 -0
- package/src/maps/concurrencyV2LimitUpdate.ts +20 -0
- package/src/maps/createdOrUpdatedBy.ts +11 -0
- package/src/maps/dashboard.ts +64 -0
- package/src/maps/date.ts +9 -0
- package/src/maps/dateRangeSelectValue.ts +15 -0
- package/src/maps/deployment.ts +126 -0
- package/src/maps/deploymentSchedule.ts +14 -0
- package/src/maps/deploymentScheduleCreate.ts +11 -0
- package/src/maps/deploymentScheduleUpdate.ts +11 -0
- package/src/maps/deploymentStatsFilter.ts +35 -0
- package/src/maps/deploymentStatus.ts +10 -0
- package/src/maps/divergingBarChartItem.ts +14 -0
- package/src/maps/empiricalPolicy.ts +31 -0
- package/src/maps/filters.ts +539 -0
- package/src/maps/flow.ts +39 -0
- package/src/maps/flowRun.ts +41 -0
- package/src/maps/flowRunHistory.ts +19 -0
- package/src/maps/flowStatsFilter.ts +34 -0
- package/src/maps/index.ts +283 -0
- package/src/maps/logs.ts +31 -0
- package/src/maps/mapFlowRunInputKeysetResponseToFlowRunInputKeyset.ts +19 -0
- package/src/maps/notification.ts +16 -0
- package/src/maps/notificationCreate.ts +12 -0
- package/src/maps/notificationUpdate.ts +12 -0
- package/src/maps/number.ts +9 -0
- package/src/maps/orchestrationResult.ts +10 -0
- package/src/maps/runGraphData.ts +65 -0
- package/src/maps/savedSearch.ts +143 -0
- package/src/maps/savedSearchCreate.ts +68 -0
- package/src/maps/savedSearchFilter.ts +34 -0
- package/src/maps/scatterPlotItem.ts +19 -0
- package/src/maps/schedule.ts +84 -0
- package/src/maps/schema.ts +53 -0
- package/src/maps/schemaValuesRequest.ts +12 -0
- package/src/maps/schemaValuesResponse.ts +23 -0
- package/src/maps/state.ts +39 -0
- package/src/maps/stateDetails.ts +58 -0
- package/src/maps/stateHistory.ts +24 -0
- package/src/maps/stateType.ts +10 -0
- package/src/maps/stateUpdate.ts +14 -0
- package/src/maps/taskInput.ts +40 -0
- package/src/maps/taskRun.ts +62 -0
- package/src/maps/taskRunHistory.ts +46 -0
- package/src/maps/uiFlowRunHistory.ts +14 -0
- package/src/maps/uiTaskRunCountsByState.ts +13 -0
- package/src/maps/variable.ts +32 -0
- package/src/maps/workPool.ts +70 -0
- package/src/maps/workPoolQueue.ts +66 -0
- package/src/maps/workPoolStatus.ts +22 -0
- package/src/maps/workPoolWorker.ts +15 -0
- package/src/maps/workPoolWorkerStatus.ts +10 -0
- package/src/maps/workQueue.ts +52 -0
- package/src/maps/workQueueFilter.ts +18 -0
- package/src/maps/workQueueHealthPolicy.ts +9 -0
- package/src/maps/workQueueStatus.ts +11 -0
- package/src/maps/workerCollection.ts +58 -0
- package/src/maps/workerScheduledFlowRun.ts +19 -0
- package/src/maps/workspaceEvent.ts +77 -0
- package/src/maps/workspaceEvents.ts +11 -0
- package/src/maps/workspaceEventsCount.ts +22 -0
- package/src/maps/workspaceEventsFilter.ts +92 -0
- package/src/maps/workspaceEventsHistory.ts +13 -0
- package/src/mocks/README.md +62 -0
- package/src/mocks/UiFlowRunHistory.ts +13 -0
- package/src/mocks/any.ts +13 -0
- package/src/mocks/artifact.ts +42 -0
- package/src/mocks/blockDocument.ts +26 -0
- package/src/mocks/blockDocumentData.ts +24 -0
- package/src/mocks/blockSchema.ts +18 -0
- package/src/mocks/blockSchemaCapabilities.ts +5 -0
- package/src/mocks/blockSchemaCapability.ts +5 -0
- package/src/mocks/blockType.ts +19 -0
- package/src/mocks/blockTypeSnippet.ts +14 -0
- package/src/mocks/boolean.ts +5 -0
- package/src/mocks/collectionItem.ts +25 -0
- package/src/mocks/concurrencyLimit.ts +14 -0
- package/src/mocks/concurrencyV2Limit.ts +13 -0
- package/src/mocks/createdOrUpdatedBy.ts +12 -0
- package/src/mocks/date.ts +18 -0
- package/src/mocks/deployment.ts +51 -0
- package/src/mocks/deploymentSchedule.ts +22 -0
- package/src/mocks/deploymentStatus.ts +8 -0
- package/src/mocks/email.ts +5 -0
- package/src/mocks/flow.ts +13 -0
- package/src/mocks/flowResponse.ts +13 -0
- package/src/mocks/flowRun.ts +43 -0
- package/src/mocks/flowRunGraph.ts +108 -0
- package/src/mocks/flowRunHistory.ts +13 -0
- package/src/mocks/flowRunStateHistory.ts +14 -0
- package/src/mocks/id.ts +6 -0
- package/src/mocks/image.ts +14 -0
- package/src/mocks/index.ts +123 -0
- package/src/mocks/log.ts +22 -0
- package/src/mocks/markdown.ts +158 -0
- package/src/mocks/notification.ts +15 -0
- package/src/mocks/notificationCreate.ts +14 -0
- package/src/mocks/number.ts +7 -0
- package/src/mocks/parameters.ts +69 -0
- package/src/mocks/schedule.ts +46 -0
- package/src/mocks/schemas.ts +68 -0
- package/src/mocks/sentences/generateText.ts +103 -0
- package/src/mocks/sentences/sample.ts +94 -0
- package/src/mocks/sentences/utils.ts +64 -0
- package/src/mocks/starnames/generateStarName.ts +14 -0
- package/src/mocks/starnames/index.ts +4 -0
- package/src/mocks/starnames/names.ts +2 -0
- package/src/mocks/starnames/prefixes.ts +2 -0
- package/src/mocks/starnames/suffixes.ts +2 -0
- package/src/mocks/state.ts +30 -0
- package/src/mocks/stateType.ts +6 -0
- package/src/mocks/string.ts +40 -0
- package/src/mocks/table.ts +34 -0
- package/src/mocks/taskRun.ts +33 -0
- package/src/mocks/url.ts +14 -0
- package/src/mocks/workPool.ts +26 -0
- package/src/mocks/workPoolQueue.ts +19 -0
- package/src/mocks/workPoolStatus.ts +8 -0
- package/src/mocks/workQueue.ts +30 -0
- package/src/mocks/workQueueCreate.ts +14 -0
- package/src/mocks/workQueueHealthPolicy.ts +11 -0
- package/src/mocks/workQueueStatus.ts +14 -0
- package/src/mocks/worker.ts +15 -0
- package/src/mocks/workerStatus.ts +6 -0
- package/src/models/Artifact.ts +85 -0
- package/src/models/ArtifactCollection.ts +34 -0
- package/src/models/BatchLookupError.ts +5 -0
- package/src/models/BlockDocument.ts +58 -0
- package/src/models/BlockDocumentCreate.ts +18 -0
- package/src/models/BlockDocumentUpdate.ts +8 -0
- package/src/models/BlockSchema.ts +35 -0
- package/src/models/BlockType.ts +35 -0
- package/src/models/CloudConfigMissingParamsError.ts +5 -0
- package/src/models/CollectionItem.ts +16 -0
- package/src/models/ConcurrencyLimit.ts +8 -0
- package/src/models/ConcurrencyLimitCreate.ts +4 -0
- package/src/models/ConcurrencyV2ActiveSlots.ts +5 -0
- package/src/models/ConcurrencyV2Create.ts +8 -0
- package/src/models/ConcurrencyV2DecrementActiveSlots.ts +5 -0
- package/src/models/ConcurrencyV2IncrementActiveSlots.ts +5 -0
- package/src/models/ConcurrencyV2Limit.ts +12 -0
- package/src/models/ConcurrencyV2Update.ts +8 -0
- package/src/models/CreatedOrUpdatedBy.ts +7 -0
- package/src/models/CronSchedule.ts +235 -0
- package/src/models/CronStringLengthError.ts +5 -0
- package/src/models/Deployment.ts +123 -0
- package/src/models/DeploymentFlowRunCreate.ts +38 -0
- package/src/models/DeploymentSchedule.ts +30 -0
- package/src/models/DeploymentScheduleCompatible.ts +7 -0
- package/src/models/DeploymentScheduleCreate.ts +7 -0
- package/src/models/DeploymentScheduleUpdate.ts +7 -0
- package/src/models/DeploymentStatus.ts +6 -0
- package/src/models/DeploymentUpdate.ts +48 -0
- package/src/models/EmpiricalPolicy.ts +20 -0
- package/src/models/FilterDateError.ts +5 -0
- package/src/models/FilterPrefixError.ts +5 -0
- package/src/models/FilterRelativeDateUnitError.ts +5 -0
- package/src/models/Filters.ts +273 -0
- package/src/models/Flow.ts +23 -0
- package/src/models/FlowRun.ts +131 -0
- package/src/models/FlowRunHistoryMap.ts +23 -0
- package/src/models/FlowRunInputKeyset.ts +5 -0
- package/src/models/GraphNode.ts +39 -0
- package/src/models/ISchedule.ts +8 -0
- package/src/models/IntervalSchedule.ts +127 -0
- package/src/models/InvalidSchemaValueError.ts +5 -0
- package/src/models/Log.ts +39 -0
- package/src/models/NoSchemaPropertyDefaultValueError.ts +5 -0
- package/src/models/Notification.ts +32 -0
- package/src/models/NotificationCreate.ts +8 -0
- package/src/models/NotificationUpdate.ts +6 -0
- package/src/models/ObjectLevelCan.ts +25 -0
- package/src/models/PublicCron.ts +87 -0
- package/src/models/RRuleSchedule.ts +38 -0
- package/src/models/RunHistory.ts +19 -0
- package/src/models/SavedSearch.ts +34 -0
- package/src/models/Schedule.ts +40 -0
- package/src/models/State.ts +12 -0
- package/src/models/StateCreate.ts +10 -0
- package/src/models/StateDetails.ts +13 -0
- package/src/models/StateDetailsCreate.ts +8 -0
- package/src/models/StateHistory.ts +25 -0
- package/src/models/StateType.ts +56 -0
- package/src/models/StateUpdate.ts +13 -0
- package/src/models/TaskInput.ts +48 -0
- package/src/models/TaskRun.ts +89 -0
- package/src/models/TaskRunHistory.ts +13 -0
- package/src/models/UiFlowRunHistory.ts +10 -0
- package/src/models/UiTaskRunCountsByState.ts +5 -0
- package/src/models/Variable.ts +32 -0
- package/src/models/VariableCreate.ts +5 -0
- package/src/models/VariableEdit.ts +5 -0
- package/src/models/WorkPool.ts +67 -0
- package/src/models/WorkPoolCreate.ts +11 -0
- package/src/models/WorkPoolEdit.ts +9 -0
- package/src/models/WorkPoolQueue.ts +43 -0
- package/src/models/WorkPoolQueueCreate.ts +7 -0
- package/src/models/WorkPoolQueueEdit.ts +7 -0
- package/src/models/WorkPoolQueueTableData.ts +11 -0
- package/src/models/WorkPoolStatus.ts +7 -0
- package/src/models/WorkPoolWorker.ts +31 -0
- package/src/models/WorkPoolWorkerStatus.ts +4 -0
- package/src/models/WorkQueue.ts +53 -0
- package/src/models/WorkQueueCreate.ts +6 -0
- package/src/models/WorkQueueEdit.ts +5 -0
- package/src/models/WorkQueueFilter.ts +15 -0
- package/src/models/WorkQueueHealthPolicy.ts +4 -0
- package/src/models/WorkQueueStatus.ts +22 -0
- package/src/models/WorkQueueTableData.ts +11 -0
- package/src/models/WorkerCollectionItem.ts +27 -0
- package/src/models/WorkerScheduledFlowRun.ts +7 -0
- package/src/models/WorkerScheduledFlowRuns.ts +6 -0
- package/src/models/api/ArtifactCollectionResponse.ts +6 -0
- package/src/models/api/ArtifactResponse.ts +15 -0
- package/src/models/api/BlockDocumentCreateRequest.ts +35 -0
- package/src/models/api/BlockDocumentResponse.ts +29 -0
- package/src/models/api/BlockDocumentUpdateRequest.ts +4 -0
- package/src/models/api/BlockSchemaResponse.ts +13 -0
- package/src/models/api/BlockTypeResponse.ts +11 -0
- package/src/models/api/CollectionItemResponse.ts +19 -0
- package/src/models/api/ConcurrencyLimitCreateRequest.ts +4 -0
- package/src/models/api/ConcurrencyLimitResponse.ts +8 -0
- package/src/models/api/ConcurrencyV2ActiveSlotsResponse.ts +5 -0
- package/src/models/api/ConcurrencyV2CreateRequest.ts +8 -0
- package/src/models/api/ConcurrencyV2DecrementActiveSlotsRequest.ts +5 -0
- package/src/models/api/ConcurrencyV2IncrementActiveSlotsRequest.ts +5 -0
- package/src/models/api/ConcurrencyV2Response.ts +12 -0
- package/src/models/api/ConcurrencyV2UpdateRequest.ts +8 -0
- package/src/models/api/CreatedOrUpdatedByResponse.ts +7 -0
- package/src/models/api/DeploymentFlowRunRequest.ts +16 -0
- package/src/models/api/DeploymentResponse.ts +39 -0
- package/src/models/api/DeploymentScheduleCreateRequest.ts +7 -0
- package/src/models/api/DeploymentScheduleResponse.ts +12 -0
- package/src/models/api/DeploymentScheduleUpdateRequest.ts +7 -0
- package/src/models/api/DeploymentUpdateRequest.ts +18 -0
- package/src/models/api/EmpiricalPolicyRequest.ts +6 -0
- package/src/models/api/EmpiricalPolicyResponse.ts +6 -0
- package/src/models/api/Filters.ts +261 -0
- package/src/models/api/FlowResponse.ts +7 -0
- package/src/models/api/FlowRunGraphResponse.ts +18 -0
- package/src/models/api/FlowRunHistoryResponse.ts +7 -0
- package/src/models/api/FlowRunInputKeysetResponse.ts +5 -0
- package/src/models/api/FlowRunResponse.ts +43 -0
- package/src/models/api/LogResponse.ts +13 -0
- package/src/models/api/NotificationCreateRequest.ts +6 -0
- package/src/models/api/NotificationResponse.ts +9 -0
- package/src/models/api/NotificationUpdateRequest.ts +6 -0
- package/src/models/api/OrchestrationResult.ts +9 -0
- package/src/models/api/OrchestrationResultResponse.ts +9 -0
- package/src/models/api/RunGraphDataResponse.ts +39 -0
- package/src/models/api/SavedSearchResponse.ts +94 -0
- package/src/models/api/ScheduleRequest.ts +33 -0
- package/src/models/api/ScheduleResponse.ts +33 -0
- package/src/models/api/SchemaResponse.ts +52 -0
- package/src/models/api/StateDetailsRequest.ts +12 -0
- package/src/models/api/StateDetailsResponse.ts +14 -0
- package/src/models/api/StateHistoryResponse.ts +9 -0
- package/src/models/api/StateRequest.ts +10 -0
- package/src/models/api/StateResponse.ts +12 -0
- package/src/models/api/StateUpdateRequest.ts +13 -0
- package/src/models/api/TaskInputResponse.ts +28 -0
- package/src/models/api/TaskRunHistoryResponse.ts +13 -0
- package/src/models/api/TaskRunResponse.ts +32 -0
- package/src/models/api/UiFlowRunHistoryResponse.ts +10 -0
- package/src/models/api/UiTaskRunCountsByStateResponse.ts +5 -0
- package/src/models/api/VariableRequest.ts +11 -0
- package/src/models/api/VariableResponse.ts +10 -0
- package/src/models/api/WorkPoolQueueRequest.ts +15 -0
- package/src/models/api/WorkPoolQueueResponse.ts +17 -0
- package/src/models/api/WorkPoolRequest.ts +22 -0
- package/src/models/api/WorkPoolResponse.ts +24 -0
- package/src/models/api/WorkPoolWorkerResponse.ts +13 -0
- package/src/models/api/WorkQueueFilterResponse.ts +4 -0
- package/src/models/api/WorkQueueHealthPolicyResponse.ts +4 -0
- package/src/models/api/WorkQueueRequest.ts +12 -0
- package/src/models/api/WorkQueueResponse.ts +17 -0
- package/src/models/api/WorkQueueStatusResponse.ts +10 -0
- package/src/models/api/WorkerCollectionItemResponse.ts +23 -0
- package/src/models/api/WorkerScheduledFlowRunResponse.ts +7 -0
- package/src/models/api/WorkerScheduledFlowRunsRequest.ts +6 -0
- package/src/models/api/index.ts +47 -0
- package/src/models/api/workspaceEvents.ts +37 -0
- package/src/models/api/workspaceEventsFilterRequest.ts +20 -0
- package/src/models/api/workspaceEventsHistoryRequest.ts +9 -0
- package/src/models/index.ts +82 -0
- package/src/models/workspaceEvent.ts +119 -0
- package/src/models/workspaceEvents.ts +36 -0
- package/src/models/workspaceEventsCount.ts +31 -0
- package/src/router/index.ts +409 -0
- package/src/router/routes.ts +69 -0
- package/src/schemas/components/SchemaForm.vue +94 -0
- package/src/schemas/components/SchemaFormProperties.vue +112 -0
- package/src/schemas/components/SchemaFormProperty.vue +202 -0
- package/src/schemas/components/SchemaFormPropertyAllOf.vue +51 -0
- package/src/schemas/components/SchemaFormPropertyAnyOf.vue +144 -0
- package/src/schemas/components/SchemaFormPropertyArray.vue +69 -0
- package/src/schemas/components/SchemaFormPropertyArrayItem.vue +93 -0
- package/src/schemas/components/SchemaFormPropertyArrayList.vue +136 -0
- package/src/schemas/components/SchemaFormPropertyBlockDocument.vue +39 -0
- package/src/schemas/components/SchemaFormPropertyBoolean.vue +20 -0
- package/src/schemas/components/SchemaFormPropertyDate.vue +44 -0
- package/src/schemas/components/SchemaFormPropertyDateTime.vue +43 -0
- package/src/schemas/components/SchemaFormPropertyErrors.vue +41 -0
- package/src/schemas/components/SchemaFormPropertyInput.vue +124 -0
- package/src/schemas/components/SchemaFormPropertyInteger.vue +42 -0
- package/src/schemas/components/SchemaFormPropertyKindJinja.vue +36 -0
- package/src/schemas/components/SchemaFormPropertyKindJson.vue +47 -0
- package/src/schemas/components/SchemaFormPropertyKindWorkspaceVariable.vue +30 -0
- package/src/schemas/components/SchemaFormPropertyMenu.vue +96 -0
- package/src/schemas/components/SchemaFormPropertyNull.vue +28 -0
- package/src/schemas/components/SchemaFormPropertyObject.vue +59 -0
- package/src/schemas/components/SchemaFormPropertyString.vue +90 -0
- package/src/schemas/components/SchemaFormPropertyUnknown.vue +64 -0
- package/src/schemas/components/SchemaInput.vue +62 -0
- package/src/schemas/compositions/usePrefectKindValue.ts +95 -0
- package/src/schemas/compositions/useSchema.ts +16 -0
- package/src/schemas/compositions/useSchemaFormKinds.ts +8 -0
- package/src/schemas/compositions/useSchemaProperty.ts +48 -0
- package/src/schemas/compositions/useSchemaPropertyInput.ts +73 -0
- package/src/schemas/compositions/useSchemaValidation.ts +57 -0
- package/src/schemas/index.ts +20 -0
- package/src/schemas/mapper.ts +67 -0
- package/src/schemas/maps/index.ts +10 -0
- package/src/schemas/maps/schema.ts +111 -0
- package/src/schemas/maps/schemaValue.ts +117 -0
- package/src/schemas/symbols.ts +3 -0
- package/src/schemas/types/schema.ts +78 -0
- package/src/schemas/types/schemaResponse.ts +45 -0
- package/src/schemas/types/schemaValues.ts +97 -0
- package/src/schemas/types/schemaValuesValidationResponse.ts +30 -0
- package/src/schemas/utilities/definitions.ts +23 -0
- package/src/schemas/utilities/errors.ts +49 -0
- package/src/schemas/utilities/properties.ts +154 -0
- package/src/services/Api.ts +134 -0
- package/src/services/BatchProcessor/BatchProcessor.ts +156 -0
- package/src/services/BatchProcessor/README.md +36 -0
- package/src/services/BatchProcessor/index.ts +1 -0
- package/src/services/CollectionsApi.ts +17 -0
- package/src/services/HealthApi.ts +17 -0
- package/src/services/Mapper.ts +67 -0
- package/src/services/Mocker.ts +42 -0
- package/src/services/RouteGuardExecutioner.ts +44 -0
- package/src/services/SimpleIdManager.ts +7 -0
- package/src/services/UiApi.ts +29 -0
- package/src/services/WorkspaceApi.ts +29 -0
- package/src/services/WorkspaceArtifactsApi.ts +75 -0
- package/src/services/WorkspaceAutomationsApi.ts +66 -0
- package/src/services/WorkspaceBlockCapabilitiesApi.ts +13 -0
- package/src/services/WorkspaceBlockDocumentsApi.ts +71 -0
- package/src/services/WorkspaceBlockSchemasApi.ts +37 -0
- package/src/services/WorkspaceBlockTypesApi.ts +38 -0
- package/src/services/WorkspaceConcurrencyLimitsApi.ts +46 -0
- package/src/services/WorkspaceConcurrencyLimitsV2API.ts +47 -0
- package/src/services/WorkspaceDeploymentScheduleApi.ts +23 -0
- package/src/services/WorkspaceDeploymentsApi.ts +99 -0
- package/src/services/WorkspaceFlowRunsApi.ts +140 -0
- package/src/services/WorkspaceFlowsApi.ts +51 -0
- package/src/services/WorkspaceLogsApi.ts +18 -0
- package/src/services/WorkspaceNotificationsApi.ts +39 -0
- package/src/services/WorkspaceSavedSearchesApi.ts +46 -0
- package/src/services/WorkspaceSchemasWorkspaceApi.ts +52 -0
- package/src/services/WorkspaceTaskRunsApi.ts +67 -0
- package/src/services/WorkspaceVariablesApi.ts +51 -0
- package/src/services/WorkspaceWorkPoolQueuesApi.ts +51 -0
- package/src/services/WorkspaceWorkPoolWorkersApi.ts +27 -0
- package/src/services/WorkspaceWorkPoolsApi.ts +88 -0
- package/src/services/WorkspaceWorkQueuesApi.ts +98 -0
- package/src/services/can.ts +110 -0
- package/src/services/index.ts +33 -0
- package/src/services/schemas/constants.spec.ts +9 -0
- package/src/services/schemas/constants.ts +1 -0
- package/src/services/schemas/index.ts +4 -0
- package/src/services/schemas/properties/SchemaPropertyAny.ts +113 -0
- package/src/services/schemas/properties/SchemaPropertyArray.ts +62 -0
- package/src/services/schemas/properties/SchemaPropertyBlock.ts +54 -0
- package/src/services/schemas/properties/SchemaPropertyBoolean.ts +49 -0
- package/src/services/schemas/properties/SchemaPropertyInteger.ts +36 -0
- package/src/services/schemas/properties/SchemaPropertyNull.ts +16 -0
- package/src/services/schemas/properties/SchemaPropertyNumber.ts +42 -0
- package/src/services/schemas/properties/SchemaPropertyObject.ts +68 -0
- package/src/services/schemas/properties/SchemaPropertyService.ts +179 -0
- package/src/services/schemas/properties/SchemaPropertyString.ts +142 -0
- package/src/services/schemas/properties/factory.ts +46 -0
- package/src/services/schemas/properties/index.ts +10 -0
- package/src/services/schemas/resolvers/blockReferenceDefaults.ts +44 -0
- package/src/services/schemas/resolvers/blockReferences.ts +28 -0
- package/src/services/schemas/resolvers/definitions.ts +94 -0
- package/src/services/schemas/resolvers/index.ts +3 -0
- package/src/services/schemas/resolvers/meta.ts +50 -0
- package/src/services/schemas/resolvers/schemas.ts +19 -0
- package/src/services/schemas/utilities.ts +295 -0
- package/src/services/storage/Storage.ts +83 -0
- package/src/services/storage/StorageItem.ts +5 -0
- package/src/services/storage/flowRunStorage.ts +7 -0
- package/src/services/storage/index.ts +4 -0
- package/src/services/storage/useStorage.ts +53 -0
- package/src/services/workspaceEventsApi.ts +69 -0
- package/src/shims-svg.d.ts +11 -0
- package/src/styles/colors.css +682 -0
- package/src/styles/index.css +5 -0
- package/src/styles/states.css +94 -0
- package/src/tailwind.config.ts +37 -0
- package/src/types/ColorMode.ts +11 -0
- package/src/types/RouteGuard.ts +9 -0
- package/src/types/SortOptionTypes.ts +114 -0
- package/src/types/any.ts +2 -0
- package/src/types/artifact.ts +30 -0
- package/src/types/buttons.ts +1 -0
- package/src/types/cron.ts +99 -0
- package/src/types/css.ts +1 -0
- package/src/types/dashboard.ts +8 -0
- package/src/types/dates.ts +7 -0
- package/src/types/debug.ts +6 -0
- package/src/types/deployment.ts +5 -0
- package/src/types/flow.ts +7 -0
- package/src/types/flowRunResults.ts +1 -0
- package/src/types/index.ts +37 -0
- package/src/types/reactivity.ts +16 -0
- package/src/types/schemaInput.ts +6 -0
- package/src/types/schemas.ts +98 -0
- package/src/types/size.ts +1 -0
- package/src/types/stateBadge.ts +3 -0
- package/src/types/states.ts +54 -0
- package/src/types/tabs.ts +25 -0
- package/src/types/tailwind.ts +1 -0
- package/src/types/useEntitySubscription.ts +8 -0
- package/src/types/utilities.ts +39 -0
- package/src/types/workspaceEventsFilter.ts +40 -0
- package/src/types/workspaceEventsHistory.ts +8 -0
- package/src/utilities/activeViewMode.ts +18 -0
- package/src/utilities/api.ts +67 -0
- package/src/utilities/arrays.ts +175 -0
- package/src/utilities/boolean.ts +3 -0
- package/src/utilities/cache.ts +35 -0
- package/src/utilities/colorMode.ts +36 -0
- package/src/utilities/components.ts +34 -0
- package/src/utilities/copy.ts +7 -0
- package/src/utilities/dates.ts +129 -0
- package/src/utilities/delete.ts +24 -0
- package/src/utilities/errors.ts +64 -0
- package/src/utilities/eventTarget.ts +8 -0
- package/src/utilities/events.ts +21 -0
- package/src/utilities/formValidation.ts +18 -0
- package/src/utilities/functions.ts +4 -0
- package/src/utilities/httpStatus.ts +173 -0
- package/src/utilities/index.ts +35 -0
- package/src/utilities/inject.ts +25 -0
- package/src/utilities/json.ts +28 -0
- package/src/utilities/jsonSafe.spec.ts +59 -0
- package/src/utilities/jsonSafeParse.ts +28 -0
- package/src/utilities/jsonSafeStringify.ts +22 -0
- package/src/utilities/languageDefinitions/json.ts +28 -0
- package/src/utilities/languageDefinitions/python.ts +67 -0
- package/src/utilities/logs.ts +20 -0
- package/src/utilities/math.ts +27 -0
- package/src/utilities/numbers.ts +14 -0
- package/src/utilities/object.ts +178 -0
- package/src/utilities/parameters.ts +57 -0
- package/src/utilities/parseUnknownJson.spec.ts +26 -0
- package/src/utilities/parseUnknownJson.ts +22 -0
- package/src/utilities/processTypes.ts +12 -0
- package/src/utilities/reactivity.ts +61 -0
- package/src/utilities/routes.ts +19 -0
- package/src/utilities/savedFilters.ts +59 -0
- package/src/utilities/seconds.ts +74 -0
- package/src/utilities/state.ts +64 -0
- package/src/utilities/stringifyUnknownJson.spec.ts +27 -0
- package/src/utilities/stringifyUnknownJson.ts +12 -0
- package/src/utilities/strings.ts +81 -0
- package/src/utilities/subscriptions.ts +16 -0
- package/src/utilities/time.ts +14 -0
- package/src/utilities/timeIntervals.ts +60 -0
- package/src/utilities/timeline.ts +41 -0
- package/src/utilities/timezone.ts +141 -0
- package/src/utilities/tryOnScopeDispose.ts +11 -0
- package/src/utilities/tuples.ts +24 -0
- package/src/utilities/types.ts +30 -0
- package/src/utilities/urls.ts +1 -0
- package/src/utilities/validation.ts +278 -0
- package/src/utilities/variables.ts +19 -0
- package/dist/types/vite.config.d.ts +0 -31
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var e9 = Object.defineProperty;
|
|
2
2
|
var t9 = (t, e, n) => e in t ? e9(t, e, { enumerable: !0, configurable: !0, writable: !0, value: n }) : t[e] = n;
|
|
3
3
|
var V = (t, e, n) => (t9(t, typeof e != "symbol" ? e + "" : e, n), n);
|
|
4
|
-
import { ref as me, computed as M, capitalize as n9, readonly as _D, inject as sh, getCurrentInstance as vD, defineComponent as W, openBlock as T, createElementBlock as K, createTextVNode as z, createVNode as v, unref as g, withCtx as w, toValue as qe, reactive as ht, toRef as Se, isReactive as r9, toRefs as Sr, watch as Et, onScopeDispose as bD, watchEffect as Uk, onUnmounted as lm, isRef as Fe, onMounted as hc, mergeModels as ah, useModel as ws, useSlots as o_, resolveComponent as A, createBlock as D, Fragment as ke, createCommentVNode as U, renderSlot as Oe, createElementVNode as J, resolveDynamicComponent as Qr, normalizeProps as Bt, guardReactiveProps as Zt, toDisplayString as se, mergeProps as
|
|
4
|
+
import { ref as me, computed as M, capitalize as n9, readonly as _D, inject as sh, getCurrentInstance as vD, defineComponent as W, openBlock as T, createElementBlock as K, createTextVNode as z, createVNode as v, unref as g, withCtx as w, toValue as qe, reactive as ht, toRef as Se, isReactive as r9, toRefs as Sr, watch as Et, onScopeDispose as bD, watchEffect as Uk, onUnmounted as lm, isRef as Fe, onMounted as hc, mergeModels as ah, useModel as ws, useSlots as o_, resolveComponent as A, createBlock as D, Fragment as ke, createCommentVNode as U, renderSlot as Oe, createElementVNode as J, resolveDynamicComponent as Qr, normalizeProps as Bt, guardReactiveProps as Zt, toDisplayString as se, mergeProps as Mt, renderList as _n, createSlots as vt, markRaw as o9, normalizeClass as Ut, normalizeStyle as Vg, KeepAlive as Gk, withAsyncContext as Hk, onActivated as s9, provide as Xw, h as cm, getCurrentScope as a9, withKeys as wD, withModifiers as Ww, onBeforeMount as i9, useAttrs as ih, onBeforeUnmount as u9, effectScope as l9, Transition as $k, createStaticVNode as dm } from "vue";
|
|
5
5
|
import { DivergingBarChart as c9, LineChart as nM, ScatterPlot as d9 } from "@prefecthq/vue-charts";
|
|
6
6
|
import { asArray as _a, isDefined as un, toPluralString as jc, showToast as Be, isDateBefore as p9, isDateBeforeOrEqual as h9, isDateAfter as f9, isDateAfterOrEqual as m9, isNotNullish as dd, isArray as Kl, mapDateRangeSelectValueToDateRange as y9, PLink as jk, isDateRangeSelectPeriod as rM, isDateRangeSelectAroundUnit as oM, isDateRangeSelectType as sM, scrollToValidationError as g9, useThemeTokens as _9, PCombobox as qo, PToggle as yl, PNumberInput as Qo, PTextInput as Np, PDateInput as aM, PTagWrapper as v9, PTags as Af, PLabel as pn, PIcon as Tr, PEmptyResults as Xp, randomId as s_, useAttrsStylesAndClasses as b9, PCodeInput as w9, sortStringArray as uh, kebabCase as kD, PEmptyState as xs, PKeyValue as Pt, POverflowMenuItem as Df, useAttrsStylesClassesAndListeners as k9, PButton as Do, PContent as T9, PIconButtonMenu as TD, media as io, PSelect as pm, PListItemInput as x9, PListItem as S9, PForm as lh, positions as Dr, usePopOverGroup as R9, toPixels as M9, PPopOver as a_, useColorTheme as P9, PTag as xD, PCode as E9, PTagsInput as A9, PButtonGroup as D9, PTable as SD, PBreadCrumbs as C9, useWizardStep as zk, isSelectOptionNormalized as iM, ToastPlugin as I9 } from "@prefecthq/prefect-design";
|
|
7
7
|
import { createActions as Fn, SubscriptionManager as O9, RouteParam as pi, InvalidRouteParamValue as uo, getLocationQueryForSchema as F9, useRouteQueryParams as L9, NumberRouteParam as ko, BooleanRouteParam as oi, DateRouteParam as hs, StringRouteParam as zt, NullableBooleanRouteParam as N9, useSubscriptionWithDependencies as $t, useRouteQueryParam as In, useLocalStorage as Zk, watchableArgs as X9, unrefArgs as W9, useSubscription as tt, useNow as Yk, useSessionStorage as B9, useDebouncedRef as Ss, useValidation as En, useValidationObserver as Rs, useRouteParam as V9, useElementRect as U9, useKeyDown as RD, useIntersectionObserver as G9, usePatchRef as or, refreshChannel as MD } from "@prefecthq/vue-compositions";
|
|
@@ -9253,8 +9253,26 @@ var OI = { exports: {} };
|
|
|
9253
9253
|
f === void 0 && (f = !0), y === void 0 && (y = !1), this.expression = p, this.dayOfWeekStartIndexZero = f, this.monthStartIndexZero = y;
|
|
9254
9254
|
}
|
|
9255
9255
|
return d.prototype.parse = function() {
|
|
9256
|
-
var p =
|
|
9257
|
-
|
|
9256
|
+
var p, f, y = (p = this.expression) !== null && p !== void 0 ? p : "";
|
|
9257
|
+
if (y.startsWith("@")) {
|
|
9258
|
+
var _ = this.parseSpecial(this.expression);
|
|
9259
|
+
f = this.extractParts(_);
|
|
9260
|
+
} else
|
|
9261
|
+
f = this.extractParts(this.expression);
|
|
9262
|
+
return this.normalize(f), this.validate(f), f;
|
|
9263
|
+
}, d.prototype.parseSpecial = function(p) {
|
|
9264
|
+
var f = {
|
|
9265
|
+
"@yearly": "0 0 1 1 *",
|
|
9266
|
+
"@annually": "0 0 1 1 *",
|
|
9267
|
+
"@monthly": "0 0 1 * *",
|
|
9268
|
+
"@weekly": "0 0 * * 0",
|
|
9269
|
+
"@daily": "0 0 * * *",
|
|
9270
|
+
"@midnight": "0 0 * * *",
|
|
9271
|
+
"@hourly": "0 * * * *"
|
|
9272
|
+
}, y = f[p];
|
|
9273
|
+
if (!y)
|
|
9274
|
+
throw new Error("Unknown special expression.");
|
|
9275
|
+
return y;
|
|
9258
9276
|
}, d.prototype.extractParts = function(p) {
|
|
9259
9277
|
if (!this.expression)
|
|
9260
9278
|
throw new Error("cron expression is empty");
|
|
@@ -14754,8 +14772,26 @@ var FI = { exports: {} };
|
|
|
14754
14772
|
f === void 0 && (f = !0), y === void 0 && (y = !1), this.expression = p, this.dayOfWeekStartIndexZero = f, this.monthStartIndexZero = y;
|
|
14755
14773
|
}
|
|
14756
14774
|
return d.prototype.parse = function() {
|
|
14757
|
-
var p =
|
|
14758
|
-
|
|
14775
|
+
var p, f, y = (p = this.expression) !== null && p !== void 0 ? p : "";
|
|
14776
|
+
if (y.startsWith("@")) {
|
|
14777
|
+
var _ = this.parseSpecial(this.expression);
|
|
14778
|
+
f = this.extractParts(_);
|
|
14779
|
+
} else
|
|
14780
|
+
f = this.extractParts(this.expression);
|
|
14781
|
+
return this.normalize(f), this.validate(f), f;
|
|
14782
|
+
}, d.prototype.parseSpecial = function(p) {
|
|
14783
|
+
var f = {
|
|
14784
|
+
"@yearly": "0 0 1 1 *",
|
|
14785
|
+
"@annually": "0 0 1 1 *",
|
|
14786
|
+
"@monthly": "0 0 1 * *",
|
|
14787
|
+
"@weekly": "0 0 * * 0",
|
|
14788
|
+
"@daily": "0 0 * * *",
|
|
14789
|
+
"@midnight": "0 0 * * *",
|
|
14790
|
+
"@hourly": "0 * * * *"
|
|
14791
|
+
}, y = f[p];
|
|
14792
|
+
if (!y)
|
|
14793
|
+
throw new Error("Unknown special expression.");
|
|
14794
|
+
return y;
|
|
14759
14795
|
}, d.prototype.extractParts = function(p) {
|
|
14760
14796
|
if (!this.expression)
|
|
14761
14797
|
throw new Error("cron expression is empty");
|
|
@@ -16342,7 +16378,7 @@ function L7() {
|
|
|
16342
16378
|
value: _D(tO)
|
|
16343
16379
|
};
|
|
16344
16380
|
}
|
|
16345
|
-
function
|
|
16381
|
+
function xt(...[t, e]) {
|
|
16346
16382
|
return {
|
|
16347
16383
|
component: t,
|
|
16348
16384
|
props: e
|
|
@@ -24181,7 +24217,7 @@ function RCe(t, e) {
|
|
|
24181
24217
|
target: r
|
|
24182
24218
|
};
|
|
24183
24219
|
}
|
|
24184
|
-
function
|
|
24220
|
+
function St() {
|
|
24185
24221
|
const t = me(!1), e = M(() => t.value);
|
|
24186
24222
|
function n() {
|
|
24187
24223
|
t.value = !0;
|
|
@@ -24630,7 +24666,7 @@ function OCe(t) {
|
|
|
24630
24666
|
{
|
|
24631
24667
|
name: "workspace.flow-runs",
|
|
24632
24668
|
path: "",
|
|
24633
|
-
component: () => import("./FlowRunsPageWithDefaultFilter-
|
|
24669
|
+
component: () => import("./FlowRunsPageWithDefaultFilter-C6ZDBABX.mjs"),
|
|
24634
24670
|
props: { component: t.flowRuns }
|
|
24635
24671
|
},
|
|
24636
24672
|
{
|
|
@@ -25496,7 +25532,7 @@ const lne = { class: "schema-form-property-array-list" }, cne = {
|
|
|
25496
25532
|
const _ = A("p-draggable-list");
|
|
25497
25533
|
return T(), K("div", lne, [
|
|
25498
25534
|
o.value ? (T(), K("p", cne, " No items in this list ")) : U("", !0),
|
|
25499
|
-
v(_,
|
|
25535
|
+
v(_, Mt({
|
|
25500
25536
|
modelValue: i.value,
|
|
25501
25537
|
"onUpdate:modelValue": y[0] || (y[0] = (b) => i.value = b)
|
|
25502
25538
|
}, { allowCreate: u.value, generator: c, state: f.state }, { "allow-delete": "" }), {
|
|
@@ -25544,7 +25580,7 @@ const lne = { class: "schema-form-property-array-list" }, cne = {
|
|
|
25544
25580
|
if (nne(a)) {
|
|
25545
25581
|
const { type: c, enum: d } = TF(a, r);
|
|
25546
25582
|
if (tne(c) && d)
|
|
25547
|
-
return
|
|
25583
|
+
return xt(qo, {
|
|
25548
25584
|
modelValue: u(n.value),
|
|
25549
25585
|
emptyMessage: "No items selected",
|
|
25550
25586
|
state: n.state,
|
|
@@ -25553,7 +25589,7 @@ const lne = { class: "schema-form-property-array-list" }, cne = {
|
|
|
25553
25589
|
"onUpdate:modelValue": (p) => s("update:value", u(p))
|
|
25554
25590
|
});
|
|
25555
25591
|
}
|
|
25556
|
-
return
|
|
25592
|
+
return xt(pne, {
|
|
25557
25593
|
property: n.property,
|
|
25558
25594
|
value: n.value,
|
|
25559
25595
|
state: n.state,
|
|
@@ -25561,7 +25597,7 @@ const lne = { class: "schema-form-property-array-list" }, cne = {
|
|
|
25561
25597
|
"onUpdate:value": (c) => s("update:value", c)
|
|
25562
25598
|
});
|
|
25563
25599
|
});
|
|
25564
|
-
return (a, c) => (T(), D(Qr(l.value.component),
|
|
25600
|
+
return (a, c) => (T(), D(Qr(l.value.component), Mt(l.value.props, { class: "schema-form-property-array" }), null, 16));
|
|
25565
25601
|
}
|
|
25566
25602
|
}), fne = { class: "schema-form-input__description" }, h1 = /* @__PURE__ */ W({
|
|
25567
25603
|
__name: "SchemaFormInput",
|
|
@@ -25605,7 +25641,7 @@ const lne = { class: "schema-form-property-array-list" }, cne = {
|
|
|
25605
25641
|
])
|
|
25606
25642
|
]),
|
|
25607
25643
|
default: w(() => [
|
|
25608
|
-
n.value && n.value.component ? (T(), D(Qr(n.value.component),
|
|
25644
|
+
n.value && n.value.component ? (T(), D(Qr(n.value.component), Mt({
|
|
25609
25645
|
key: 0,
|
|
25610
25646
|
modelValue: g(u),
|
|
25611
25647
|
"onUpdate:modelValue": d[0] || (d[0] = (y) => Fe(u) ? u.value = y : null),
|
|
@@ -26081,7 +26117,7 @@ const Uf = /* @__PURE__ */ W({
|
|
|
26081
26117
|
};
|
|
26082
26118
|
return (u, l) => {
|
|
26083
26119
|
const a = A("p-button"), c = A("p-code-input");
|
|
26084
|
-
return T(), D(c,
|
|
26120
|
+
return T(), D(c, Mt({
|
|
26085
26121
|
modelValue: o.value,
|
|
26086
26122
|
"onUpdate:modelValue": l[0] || (l[0] = (d) => o.value = d),
|
|
26087
26123
|
lang: "json",
|
|
@@ -26917,7 +26953,7 @@ const Xne = { class: "schema-form-property-any-of__section-header" }, IF = /* @_
|
|
|
26917
26953
|
class: Ut(["block-documents-select", g(o)]),
|
|
26918
26954
|
style: Vg(g(s))
|
|
26919
26955
|
}, [
|
|
26920
|
-
v(d,
|
|
26956
|
+
v(d, Mt({
|
|
26921
26957
|
modelValue: l.value,
|
|
26922
26958
|
"onUpdate:modelValue": c[0] || (c[0] = (p) => l.value = p),
|
|
26923
26959
|
options: u.value,
|
|
@@ -26948,7 +26984,7 @@ const Xne = { class: "schema-form-property-any-of__section-header" }, IF = /* @_
|
|
|
26948
26984
|
set(_) {
|
|
26949
26985
|
r("update:modelValue", _);
|
|
26950
26986
|
}
|
|
26951
|
-
}), { showModal: s, open: i, close: u } =
|
|
26987
|
+
}), { showModal: s, open: i, close: u } = St(), l = ve(), a = M(() => n.blockTypeSlug), c = tt(l.blockTypes.getBlockTypeBySlug, [a]), d = M(() => c.response), p = tt(l.blockTypes.getBlockDocumentsByBlockTypeSlug, [a]), f = M(() => p.response ?? []), y = async (_) => {
|
|
26952
26988
|
o.value = _.id, await p.refresh(), u();
|
|
26953
26989
|
};
|
|
26954
26990
|
return (_, b) => {
|
|
@@ -26958,7 +26994,7 @@ const Xne = { class: "schema-form-property-any-of__section-header" }, IF = /* @_
|
|
|
26958
26994
|
key: 0,
|
|
26959
26995
|
url: d.value.logoUrl
|
|
26960
26996
|
}, null, 8, ["url"])) : U("", !0),
|
|
26961
|
-
f.value.length ? (T(), D(NF,
|
|
26997
|
+
f.value.length ? (T(), D(NF, Mt({
|
|
26962
26998
|
key: 1,
|
|
26963
26999
|
selected: o.value,
|
|
26964
27000
|
"onUpdate:selected": b[0] || (b[0] = (R) => o.value = R)
|
|
@@ -27060,12 +27096,12 @@ const qne = /* @__PURE__ */ W({
|
|
|
27060
27096
|
},
|
|
27061
27097
|
emits: ["update:value"],
|
|
27062
27098
|
setup(t, { emit: e }) {
|
|
27063
|
-
const n = t, r = e, { property: o } = Md(() => n.property), s = M(() => o.value.enum ?
|
|
27099
|
+
const n = t, r = e, { property: o } = Md(() => n.property), s = M(() => o.value.enum ? xt(qo, {
|
|
27064
27100
|
modelValue: n.value,
|
|
27065
27101
|
state: n.state,
|
|
27066
27102
|
options: o.value.enum.filter(Tm),
|
|
27067
27103
|
"onUpdate:modelValue": (i) => r("update:value", vo(i, Number))
|
|
27068
|
-
}) :
|
|
27104
|
+
}) : xt(Qo, {
|
|
27069
27105
|
modelValue: vo(n.value, Number),
|
|
27070
27106
|
step: "1",
|
|
27071
27107
|
state: n.state,
|
|
@@ -27073,7 +27109,7 @@ const qne = /* @__PURE__ */ W({
|
|
|
27073
27109
|
}));
|
|
27074
27110
|
return (i, u) => {
|
|
27075
27111
|
var l, a;
|
|
27076
|
-
return T(), D(Qr((l = s.value) == null ? void 0 : l.component),
|
|
27112
|
+
return T(), D(Qr((l = s.value) == null ? void 0 : l.component), Mt((a = s.value) == null ? void 0 : a.props, { class: "schema-form-property-integer" }), null, 16);
|
|
27077
27113
|
};
|
|
27078
27114
|
}
|
|
27079
27115
|
}), ere = { class: "schema-form-property-null" }, tre = /* @__PURE__ */ W({
|
|
@@ -27557,30 +27593,30 @@ const hre = /* @__PURE__ */ W({
|
|
|
27557
27593
|
setup(t, { emit: e }) {
|
|
27558
27594
|
const n = t, r = e, { property: o } = Md(() => n.property), s = M(() => {
|
|
27559
27595
|
const { format: u, enum: l } = o.value;
|
|
27560
|
-
return u === "date" ?
|
|
27596
|
+
return u === "date" ? xt(yre, {
|
|
27561
27597
|
value: n.value,
|
|
27562
27598
|
state: n.state,
|
|
27563
27599
|
"onUpdate:value": i
|
|
27564
|
-
}) : u === "date-time" ?
|
|
27600
|
+
}) : u === "date-time" ? xt(gre, {
|
|
27565
27601
|
value: n.value,
|
|
27566
27602
|
state: n.state,
|
|
27567
27603
|
"onUpdate:value": i
|
|
27568
|
-
}) : u === "password" ?
|
|
27604
|
+
}) : u === "password" ? xt(Np, {
|
|
27569
27605
|
type: "password",
|
|
27570
27606
|
modelValue: n.value,
|
|
27571
27607
|
state: n.state,
|
|
27572
27608
|
"onUpdate:modelValue": i
|
|
27573
|
-
}) : u === "json-string" ?
|
|
27609
|
+
}) : u === "json-string" ? xt(w9, {
|
|
27574
27610
|
lang: "json",
|
|
27575
27611
|
modelValue: n.value,
|
|
27576
27612
|
state: n.state,
|
|
27577
27613
|
"onUpdate:modelValue": i
|
|
27578
|
-
}) : l ?
|
|
27614
|
+
}) : l ? xt(qo, {
|
|
27579
27615
|
modelValue: n.value,
|
|
27580
27616
|
state: n.state,
|
|
27581
27617
|
options: l.filter(Ft),
|
|
27582
27618
|
"onUpdate:modelValue": i
|
|
27583
|
-
}) :
|
|
27619
|
+
}) : xt(Np, {
|
|
27584
27620
|
modelValue: n.value,
|
|
27585
27621
|
state: n.state,
|
|
27586
27622
|
"onUpdate:modelValue": i
|
|
@@ -27596,7 +27632,7 @@ const hre = /* @__PURE__ */ W({
|
|
|
27596
27632
|
}
|
|
27597
27633
|
return (u, l) => {
|
|
27598
27634
|
var a, c;
|
|
27599
|
-
return T(), D(Qr((a = s.value) == null ? void 0 : a.component),
|
|
27635
|
+
return T(), D(Qr((a = s.value) == null ? void 0 : a.component), Mt((c = s.value) == null ? void 0 : c.props, { class: "schema-form-property-string" }), null, 16);
|
|
27600
27636
|
};
|
|
27601
27637
|
}
|
|
27602
27638
|
}), vre = /* @__PURE__ */ W({
|
|
@@ -27625,7 +27661,7 @@ const hre = /* @__PURE__ */ W({
|
|
|
27625
27661
|
}
|
|
27626
27662
|
const u = M(() => {
|
|
27627
27663
|
const { enum: l } = i.value;
|
|
27628
|
-
return l ?
|
|
27664
|
+
return l ? xt(qo, {
|
|
27629
27665
|
modelValue: r(o.value),
|
|
27630
27666
|
state: o.state,
|
|
27631
27667
|
options: l.filter(n).map((a) => ({ value: a, label: (a == null ? void 0 : a.toString()) ?? "None" })),
|
|
@@ -27634,7 +27670,7 @@ const hre = /* @__PURE__ */ W({
|
|
|
27634
27670
|
});
|
|
27635
27671
|
return (l, a) => {
|
|
27636
27672
|
var c, d;
|
|
27637
|
-
return T(), D(Qr((c = u.value) == null ? void 0 : c.component),
|
|
27673
|
+
return T(), D(Qr((c = u.value) == null ? void 0 : c.component), Mt((d = u.value) == null ? void 0 : d.props, { class: "schema-form-property-string" }), null, 16);
|
|
27638
27674
|
};
|
|
27639
27675
|
}
|
|
27640
27676
|
}), gP = /* @__PURE__ */ W({
|
|
@@ -27650,42 +27686,42 @@ const hre = /* @__PURE__ */ W({
|
|
|
27650
27686
|
const n = t, r = e, { property: o } = Md(() => n.property), s = M(() => {
|
|
27651
27687
|
const { type: i } = o.value, { value: u } = n;
|
|
27652
27688
|
if (fd(o.value, "blockTypeSlug"))
|
|
27653
|
-
return
|
|
27689
|
+
return xt(Qne, {
|
|
27654
27690
|
property: o.value,
|
|
27655
27691
|
state: n.state,
|
|
27656
27692
|
value: Zte(u),
|
|
27657
27693
|
"onUpdate:value": (a) => r("update:value", a)
|
|
27658
27694
|
});
|
|
27659
27695
|
if (Fi(i, "boolean"))
|
|
27660
|
-
return
|
|
27696
|
+
return xt(qne, {
|
|
27661
27697
|
property: { ...o.value, type: i },
|
|
27662
27698
|
value: vo(u, Boolean),
|
|
27663
27699
|
state: n.state,
|
|
27664
27700
|
"onUpdate:value": (a) => r("update:value", vo(a, Boolean))
|
|
27665
27701
|
});
|
|
27666
27702
|
if (Fi(i, "string"))
|
|
27667
|
-
return
|
|
27703
|
+
return xt(_re, {
|
|
27668
27704
|
property: { ...o.value, type: i },
|
|
27669
27705
|
value: vo(u, String),
|
|
27670
27706
|
state: n.state,
|
|
27671
27707
|
"onUpdate:value": (a) => r("update:value", vo(a, String))
|
|
27672
27708
|
});
|
|
27673
27709
|
if (Fi(i, "integer"))
|
|
27674
|
-
return
|
|
27710
|
+
return xt(Jne, {
|
|
27675
27711
|
property: { ...o.value, type: i },
|
|
27676
27712
|
value: vo(u, Number),
|
|
27677
27713
|
state: n.state,
|
|
27678
27714
|
"onUpdate:value": (a) => r("update:value", vo(a, Number))
|
|
27679
27715
|
});
|
|
27680
27716
|
if (Fi(i, "number"))
|
|
27681
|
-
return
|
|
27717
|
+
return xt(Qo, {
|
|
27682
27718
|
modelValue: vo(u, Number),
|
|
27683
27719
|
step: "0.01",
|
|
27684
27720
|
state: n.state,
|
|
27685
27721
|
"onUpdate:modelValue": (a) => r("update:value", vo(a, Number))
|
|
27686
27722
|
});
|
|
27687
27723
|
if (Fi(i, "array"))
|
|
27688
|
-
return
|
|
27724
|
+
return xt(hne, {
|
|
27689
27725
|
property: { ...o.value, type: i },
|
|
27690
27726
|
value: vo(u, Array),
|
|
27691
27727
|
errors: n.errors,
|
|
@@ -27693,20 +27729,20 @@ const hre = /* @__PURE__ */ W({
|
|
|
27693
27729
|
"onUpdate:value": (a) => r("update:value", vo(a, Array))
|
|
27694
27730
|
});
|
|
27695
27731
|
if (Fi(i, "object"))
|
|
27696
|
-
return
|
|
27732
|
+
return xt(mre, {
|
|
27697
27733
|
property: { ...o.value, type: i },
|
|
27698
27734
|
values: vo(u, Object),
|
|
27699
27735
|
errors: n.errors,
|
|
27700
27736
|
"onUpdate:values": (a) => r("update:value", vo(a, Object))
|
|
27701
27737
|
});
|
|
27702
27738
|
if (Fi(i, "null"))
|
|
27703
|
-
return
|
|
27739
|
+
return xt(tre, {
|
|
27704
27740
|
property: { ...o.value, type: i },
|
|
27705
27741
|
value: null,
|
|
27706
27742
|
"onUpdate:value": (a) => r("update:value", a)
|
|
27707
27743
|
});
|
|
27708
27744
|
if (Fi(i, void 0))
|
|
27709
|
-
return
|
|
27745
|
+
return xt(vre, {
|
|
27710
27746
|
property: { ...o.value, type: i },
|
|
27711
27747
|
value: u,
|
|
27712
27748
|
state: n.state,
|
|
@@ -27715,7 +27751,7 @@ const hre = /* @__PURE__ */ W({
|
|
|
27715
27751
|
const l = i;
|
|
27716
27752
|
throw new Error(`SchemaFormPropertyInput missing case for ${l}`);
|
|
27717
27753
|
});
|
|
27718
|
-
return (i, u) => (T(), D(Qr(s.value.component),
|
|
27754
|
+
return (i, u) => (T(), D(Qr(s.value.component), Mt(s.value.props, { class: "schema-form-property-input" }), null, 16));
|
|
27719
27755
|
}
|
|
27720
27756
|
}), bre = {
|
|
27721
27757
|
key: 0,
|
|
@@ -27904,7 +27940,7 @@ function ix(t, e, n) {
|
|
|
27904
27940
|
return { input: M(() => {
|
|
27905
27941
|
const o = qe(t), s = qe(n), { state: i } = ex(s);
|
|
27906
27942
|
if (!ya(e.value))
|
|
27907
|
-
return
|
|
27943
|
+
return xt(gP, {
|
|
27908
27944
|
property: o,
|
|
27909
27945
|
value: e.value,
|
|
27910
27946
|
errors: s,
|
|
@@ -27912,26 +27948,26 @@ function ix(t, e, n) {
|
|
|
27912
27948
|
"onUpdate:value": (l) => e.value = l
|
|
27913
27949
|
});
|
|
27914
27950
|
if (ya(e.value, "json"))
|
|
27915
|
-
return
|
|
27951
|
+
return xt(Sre, {
|
|
27916
27952
|
value: e.value,
|
|
27917
27953
|
errors: s,
|
|
27918
27954
|
state: i,
|
|
27919
27955
|
"onUpdate:value": (l) => e.value = l
|
|
27920
27956
|
});
|
|
27921
27957
|
if (ya(e.value, "jinja"))
|
|
27922
|
-
return
|
|
27958
|
+
return xt(xre, {
|
|
27923
27959
|
value: e.value,
|
|
27924
27960
|
errors: s,
|
|
27925
27961
|
state: i,
|
|
27926
27962
|
"onUpdate:value": (l) => e.value = l
|
|
27927
27963
|
});
|
|
27928
27964
|
if (ya(e.value, "workspace_variable"))
|
|
27929
|
-
return
|
|
27965
|
+
return xt(Rre, {
|
|
27930
27966
|
value: e.value,
|
|
27931
27967
|
"onUpdate:value": (l) => e.value = l
|
|
27932
27968
|
});
|
|
27933
27969
|
if (ya(e.value, "none"))
|
|
27934
|
-
return
|
|
27970
|
+
return xt(gP, {
|
|
27935
27971
|
property: o,
|
|
27936
27972
|
value: e.value,
|
|
27937
27973
|
errors: s,
|
|
@@ -31296,7 +31332,7 @@ const uue = new sue(), WCe = iue(uue), lue = /* @__PURE__ */ J("div", { class: "
|
|
|
31296
31332
|
class: "artifact-data-raw__copyable-wrapper"
|
|
31297
31333
|
}, {
|
|
31298
31334
|
default: w(() => [
|
|
31299
|
-
v(i,
|
|
31335
|
+
v(i, Mt({ "show-line-numbers": "" }, { lang: r.value, text: n.value }, { class: "artifact-data-raw__code" }), null, 16)
|
|
31300
31336
|
]),
|
|
31301
31337
|
_: 1
|
|
31302
31338
|
}, 8, ["text-to-copy"])
|
|
@@ -32091,7 +32127,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
32091
32127
|
},
|
|
32092
32128
|
emits: ["update:modelValue"],
|
|
32093
32129
|
setup(t, { emit: e }) {
|
|
32094
|
-
const n = t, r = e, { capability: o } = Sr(n), s = ve(), { classes: i, styles: u, listeners: l, attrs: a } = k9(), { showModal: c, open: d, close: p } =
|
|
32130
|
+
const n = t, r = e, { capability: o } = Sr(n), s = ve(), { classes: i, styles: u, listeners: l, attrs: a } = k9(), { showModal: c, open: d, close: p } = St(), f = Ve(), y = M({
|
|
32095
32131
|
get() {
|
|
32096
32132
|
return n.modelValue;
|
|
32097
32133
|
},
|
|
@@ -32130,11 +32166,11 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
32130
32166
|
};
|
|
32131
32167
|
return ($, ee) => {
|
|
32132
32168
|
const Q = A("p-select"), ue = A("p-button");
|
|
32133
|
-
return T(), K("div",
|
|
32169
|
+
return T(), K("div", Mt({
|
|
32134
32170
|
class: ["block-capability-block-document-input", g(i)],
|
|
32135
32171
|
style: g(u)
|
|
32136
32172
|
}, g(l)), [
|
|
32137
|
-
v(Q,
|
|
32173
|
+
v(Q, Mt({
|
|
32138
32174
|
modelValue: y.value,
|
|
32139
32175
|
"onUpdate:modelValue": ee[0] || (ee[0] = (we) => y.value = we)
|
|
32140
32176
|
}, g(a), {
|
|
@@ -32314,7 +32350,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
32314
32350
|
}), r = M(() => Gp(e.value) ?? ""), o = M(() => typeof e.value == "object" && e.value !== null ? Array.isArray(e.value) ? e.value.length > 0 : Object.keys(e.value).length > 0 : typeof e.value < "u" && e.value !== null && e.value !== "");
|
|
32315
32351
|
return (s, i) => {
|
|
32316
32352
|
const u = A("p-code-highlight"), l = A("p-key-value");
|
|
32317
|
-
return g(o0)(s.value) ? (T(), D(ule, Bt(
|
|
32353
|
+
return g(o0)(s.value) ? (T(), D(ule, Bt(Mt({ key: 0 }, { property: s.property, value: s.value })), null, 16)) : (T(), D(l, Mt({
|
|
32318
32354
|
key: 1,
|
|
32319
32355
|
label: s.property.title,
|
|
32320
32356
|
class: "schema-property-key-value"
|
|
@@ -32355,7 +32391,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
32355
32391
|
return T(), D(i, { class: "schema-properties-key-values" }, {
|
|
32356
32392
|
default: w(() => [
|
|
32357
32393
|
(T(!0), K(ke, null, _n(r.value, ([u, l]) => (T(), K(ke, { key: u }, [
|
|
32358
|
-
l ? (T(), D(sL,
|
|
32394
|
+
l ? (T(), D(sL, Mt({
|
|
32359
32395
|
key: 0,
|
|
32360
32396
|
value: n(u),
|
|
32361
32397
|
ref_for: !0
|
|
@@ -32402,7 +32438,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
32402
32438
|
}, 8, ["to"])
|
|
32403
32439
|
], 64)) : U("", !0)
|
|
32404
32440
|
])) : U("", !0),
|
|
32405
|
-
r.value ? (T(), D(px, Bt(
|
|
32441
|
+
r.value ? (T(), D(px, Bt(Mt({ key: 1 }, { snippet: r.value, name: o.value })), null, 16)) : U("", !0),
|
|
32406
32442
|
v(hx, {
|
|
32407
32443
|
values: s.blockDocument.data,
|
|
32408
32444
|
schema: s.blockDocument.blockSchema.fields
|
|
@@ -32517,7 +32553,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
32517
32553
|
},
|
|
32518
32554
|
emits: ["delete"],
|
|
32519
32555
|
setup(t, { emit: e }) {
|
|
32520
|
-
const n = t, r = e, o = Ea(), s = Ve(), i = ve(), { showModal: u, open: l } =
|
|
32556
|
+
const n = t, r = e, o = Ea(), s = Ve(), i = ve(), { showModal: u, open: l } = St();
|
|
32521
32557
|
function a() {
|
|
32522
32558
|
o.push(s.blockEdit(n.blockDocument.id));
|
|
32523
32559
|
}
|
|
@@ -32561,7 +32597,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
32561
32597
|
},
|
|
32562
32598
|
emits: ["delete"],
|
|
32563
32599
|
setup(t, { emit: e }) {
|
|
32564
|
-
const n = e, { showModal: r, open: o, close: s } =
|
|
32600
|
+
const n = e, { showModal: r, open: o, close: s } = St(), i = ve(), u = ih(), l = async (a) => {
|
|
32565
32601
|
const c = M(() => a.length === 1 ? re.success.delete("Block") : re.success.delete(`${a.length} blocks`));
|
|
32566
32602
|
try {
|
|
32567
32603
|
const d = a.map(i.blockDocuments.deleteBlockDocument);
|
|
@@ -32576,7 +32612,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
32576
32612
|
return (a, c) => {
|
|
32577
32613
|
const d = A("p-button");
|
|
32578
32614
|
return T(), K(ke, null, [
|
|
32579
|
-
a.selected.length > 0 ? (T(), D(d,
|
|
32615
|
+
a.selected.length > 0 ? (T(), D(d, Mt({ key: 0 }, g(u), {
|
|
32580
32616
|
icon: "TrashIcon",
|
|
32581
32617
|
onClick: g(o)
|
|
32582
32618
|
}), null, 16, ["onClick"])) : U("", !0),
|
|
@@ -33419,7 +33455,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
33419
33455
|
}), l = M(() => n.taskRun.tags), a = M(() => n.taskRun.id), { flowRun: c } = di(n.taskRun.flowRunId), d = M(() => s.name === i.flowRun("").name);
|
|
33420
33456
|
return (p, f) => {
|
|
33421
33457
|
const y = A("p-link"), _ = A("p-icon"), b = A("p-icon-text");
|
|
33422
|
-
return T(), D(mx,
|
|
33458
|
+
return T(), D(mx, Mt({
|
|
33423
33459
|
selected: o.value,
|
|
33424
33460
|
"onUpdate:selected": f[0] || (f[0] = (x) => o.value = x)
|
|
33425
33461
|
}, { selectable: p.selectable, value: a.value, tags: l.value, stateType: u.value }, { class: "task-run-list-item" }), {
|
|
@@ -33501,7 +33537,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
33501
33537
|
class: "task-run-list"
|
|
33502
33538
|
}, {
|
|
33503
33539
|
default: w(({ item: l }) => [
|
|
33504
|
-
v(uL,
|
|
33540
|
+
v(uL, Mt({
|
|
33505
33541
|
selected: o.value,
|
|
33506
33542
|
"onUpdate:selected": i[0] || (i[0] = (a) => o.value = a)
|
|
33507
33543
|
}, { taskRun: l, selectable: s.selectable }), null, 16, ["selected"])
|
|
@@ -33592,7 +33628,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
33592
33628
|
},
|
|
33593
33629
|
emits: ["delete"],
|
|
33594
33630
|
setup(t, { emit: e }) {
|
|
33595
|
-
const n = e, r = ze(), { showModal: o, open: s, close: i } =
|
|
33631
|
+
const n = e, r = ze(), { showModal: o, open: s, close: i } = St(), { showModal: u, open: l } = St(), a = ve(), c = async (d) => {
|
|
33596
33632
|
i(), await na(d, a.concurrencyLimits.deleteConcurrencyLimit, "Concurrency Limit"), n("delete", d);
|
|
33597
33633
|
};
|
|
33598
33634
|
return (d, p) => {
|
|
@@ -33788,7 +33824,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
33788
33824
|
}), cL = /* @__PURE__ */ W({
|
|
33789
33825
|
__name: "ConcurrencyLimitsPageEmptyState",
|
|
33790
33826
|
setup(t) {
|
|
33791
|
-
const { showModal: e, open: n } =
|
|
33827
|
+
const { showModal: e, open: n } = St(), r = ze();
|
|
33792
33828
|
return (o, s) => (T(), D(g(xs), { class: "concurrency-limit-page-empty-state" }, {
|
|
33793
33829
|
icon: w(() => [
|
|
33794
33830
|
v(g(Tr), { icon: "Task" })
|
|
@@ -34029,7 +34065,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
34029
34065
|
}), hL = /* @__PURE__ */ W({
|
|
34030
34066
|
__name: "ConcurrencyLimitsV2EmptyState",
|
|
34031
34067
|
setup(t) {
|
|
34032
|
-
const { showModal: e, open: n } =
|
|
34068
|
+
const { showModal: e, open: n } = St(), r = ze();
|
|
34033
34069
|
return (o, s) => (T(), D(g(xs), { class: "concurrency-limit-page-empty-state" }, {
|
|
34034
34070
|
icon: w(() => [
|
|
34035
34071
|
v(g(Tr), { icon: "QueueListIcon" })
|
|
@@ -34287,7 +34323,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
34287
34323
|
},
|
|
34288
34324
|
emits: ["delete"],
|
|
34289
34325
|
setup(t, { emit: e }) {
|
|
34290
|
-
const n = e, r = ze(), { showModal: o, open: s, close: i } =
|
|
34326
|
+
const n = e, r = ze(), { showModal: o, open: s, close: i } = St(), { showModal: u, open: l } = St(), a = ve(), c = async (d) => {
|
|
34291
34327
|
i(), await na(d, a.concurrencyV2Limits.deleteConcurrencyV2Limit, "Concurrency Limit"), n("delete", d);
|
|
34292
34328
|
};
|
|
34293
34329
|
return (d, p) => {
|
|
@@ -34387,7 +34423,7 @@ const nL = /* @__PURE__ */ Ed(que, [["render", ele]]), tle = { class: "block-cap
|
|
|
34387
34423
|
},
|
|
34388
34424
|
inheritAttrs: !1,
|
|
34389
34425
|
setup() {
|
|
34390
|
-
const { showModal: t, isOpen: e, open: n, close: r, toggle: o } =
|
|
34426
|
+
const { showModal: t, isOpen: e, open: n, close: r, toggle: o } = St();
|
|
34391
34427
|
return { showModal: t, isOpen: e, open: n, close: r, toggle: o };
|
|
34392
34428
|
}
|
|
34393
34429
|
});
|
|
@@ -34401,7 +34437,7 @@ function mce(t, e, n, r, o, s) {
|
|
|
34401
34437
|
close: t.close,
|
|
34402
34438
|
toggle: t.toggle
|
|
34403
34439
|
}),
|
|
34404
|
-
v(i,
|
|
34440
|
+
v(i, Mt({
|
|
34405
34441
|
showModal: t.showModal,
|
|
34406
34442
|
"onUpdate:showModal": e[0] || (e[0] = (u) => t.showModal = u)
|
|
34407
34443
|
}, t.$attrs), vt({ _: 2 }, [
|
|
@@ -34581,11 +34617,11 @@ const yce = /* @__PURE__ */ Ed(fce, [["render", mce]]), gce = { class: "state-se
|
|
|
34581
34617
|
title: {}
|
|
34582
34618
|
},
|
|
34583
34619
|
setup(t) {
|
|
34584
|
-
const e = ih(), { showModal: n, open: r, close: o } =
|
|
34620
|
+
const e = ih(), { showModal: n, open: r, close: o } = St();
|
|
34585
34621
|
return (s, i) => {
|
|
34586
34622
|
const u = A("p-icon"), l = A("p-button"), a = A("p-modal");
|
|
34587
34623
|
return T(), K(ke, null, [
|
|
34588
|
-
J("button",
|
|
34624
|
+
J("button", Mt({ class: "extra-info-modal" }, g(e), {
|
|
34589
34625
|
type: "button",
|
|
34590
34626
|
onClick: i[0] || (i[0] = Ww(
|
|
34591
34627
|
//@ts-ignore
|
|
@@ -37542,7 +37578,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
37542
37578
|
},
|
|
37543
37579
|
emits: ["delete"],
|
|
37544
37580
|
setup(t, { emit: e }) {
|
|
37545
|
-
const n = e, { showModal: r, open: o, close: s } =
|
|
37581
|
+
const n = e, { showModal: r, open: o, close: s } = St(), { showModal: i, open: u } = St(), l = ve(), a = Ve(), c = async (d) => {
|
|
37546
37582
|
s(), await na(d, l.deployments.deleteDeployment, "Deployment"), n("delete", d);
|
|
37547
37583
|
};
|
|
37548
37584
|
return (d, p) => {
|
|
@@ -37796,7 +37832,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
37796
37832
|
active: n.schedule.active,
|
|
37797
37833
|
schedule: n.schedule.schedule,
|
|
37798
37834
|
jobVariables: n.schedule.jobVariables
|
|
37799
|
-
}), { showModal: i, open: u, close: l } =
|
|
37835
|
+
}), { showModal: i, open: u, close: l } = St(), a = me(null), c = () => {
|
|
37800
37836
|
var f, y;
|
|
37801
37837
|
(y = (f = a.value) == null ? void 0 : f.publicOpen) == null || y.call(f);
|
|
37802
37838
|
}, d = async (f, y) => {
|
|
@@ -37834,7 +37870,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
37834
37870
|
]),
|
|
37835
37871
|
_: 1
|
|
37836
37872
|
}, 16),
|
|
37837
|
-
v(g(yv),
|
|
37873
|
+
v(g(yv), Mt({
|
|
37838
37874
|
ref_key: "scheduleFormModalRef",
|
|
37839
37875
|
ref: a
|
|
37840
37876
|
}, s.value, { onSubmit: p }), null, 16),
|
|
@@ -38102,7 +38138,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
38102
38138
|
},
|
|
38103
38139
|
emits: ["delete"],
|
|
38104
38140
|
setup(t, { emit: e }) {
|
|
38105
|
-
const n = e, { showModal: r, open: o, close: s } =
|
|
38141
|
+
const n = e, { showModal: r, open: o, close: s } = St(), i = ve(), u = ih(), l = async (a) => {
|
|
38106
38142
|
const c = M(() => a.length === 1 ? re.success.delete("Deployment") : re.success.delete(`${a.length} deployments`));
|
|
38107
38143
|
try {
|
|
38108
38144
|
const d = a.map(i.deployments.deleteDeployment);
|
|
@@ -38117,7 +38153,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
38117
38153
|
return (a, c) => {
|
|
38118
38154
|
const d = A("p-button");
|
|
38119
38155
|
return T(), K(ke, null, [
|
|
38120
|
-
a.selected.length > 0 ? (T(), D(d,
|
|
38156
|
+
a.selected.length > 0 ? (T(), D(d, Mt({ key: 0 }, g(u), {
|
|
38121
38157
|
icon: "TrashIcon",
|
|
38122
38158
|
onClick: g(o)
|
|
38123
38159
|
}), null, 16, ["onClick"])) : U("", !0),
|
|
@@ -38686,7 +38722,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
38686
38722
|
});
|
|
38687
38723
|
return (l, a) => {
|
|
38688
38724
|
const c = A("p-tags-input");
|
|
38689
|
-
return T(), D(c,
|
|
38725
|
+
return T(), D(c, Mt({
|
|
38690
38726
|
modelValue: s.value,
|
|
38691
38727
|
"onUpdate:modelValue": a[0] || (a[0] = (d) => s.value = d),
|
|
38692
38728
|
class: "deployment-tags-input",
|
|
@@ -39076,7 +39112,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
39076
39112
|
},
|
|
39077
39113
|
emits: ["delete"],
|
|
39078
39114
|
setup(t, { emit: e }) {
|
|
39079
|
-
const n = ve(), { showModal: r, open: o } =
|
|
39115
|
+
const n = ve(), { showModal: r, open: o } = St(), s = e, i = async (u) => {
|
|
39080
39116
|
await na(u, n.flows.deleteFlow, "Flow"), s("delete", u);
|
|
39081
39117
|
};
|
|
39082
39118
|
return (u, l) => {
|
|
@@ -39126,7 +39162,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
39126
39162
|
Oe(o.$slots, "default", Bt(Zt({ open: d, close: p, toggle: f, flow: g(r) })), () => [
|
|
39127
39163
|
v(g(zf), { "flow-id": o.flowId }, {
|
|
39128
39164
|
default: w(() => [
|
|
39129
|
-
g(r) ? (T(), K("div",
|
|
39165
|
+
g(r) ? (T(), K("div", Mt({
|
|
39130
39166
|
key: 0,
|
|
39131
39167
|
class: "flow-popover__link"
|
|
39132
39168
|
}, o.$attrs), [
|
|
@@ -39369,7 +39405,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
39369
39405
|
flowRun: {}
|
|
39370
39406
|
},
|
|
39371
39407
|
setup(t) {
|
|
39372
|
-
const e = t, n = ze(), { showModal: r, open: o } =
|
|
39408
|
+
const e = t, n = ze(), { showModal: r, open: o } = St(), s = M(() => !n.update.flow_run || !e.flowRun.stateType ? !1 : tC(e.flowRun.stateType)), i = M(() => !!(!e.flowRun.deploymentId && s.value));
|
|
39373
39409
|
return (u, l) => {
|
|
39374
39410
|
const a = A("p-button"), c = A("p-tooltip");
|
|
39375
39411
|
return T(), K(ke, null, [
|
|
@@ -39580,7 +39616,7 @@ const vh = /* @__PURE__ */ W({
|
|
|
39580
39616
|
]),
|
|
39581
39617
|
_: 1
|
|
39582
39618
|
}),
|
|
39583
|
-
v(g(zm),
|
|
39619
|
+
v(g(zm), Mt({
|
|
39584
39620
|
selected: r.value,
|
|
39585
39621
|
"onUpdate:selected": b[4] || (b[4] = (I) => r.value = I)
|
|
39586
39622
|
}, { hideDetails: _.hideDetails, hideFlowName: _.hideFlowName }, {
|
|
@@ -42850,7 +42886,7 @@ gt.prototype.toString = function() {
|
|
|
42850
42886
|
return `[@pixi/math:Point x=${this.x} y=${this.y}]`;
|
|
42851
42887
|
};
|
|
42852
42888
|
const $y = [new gt(), new gt(), new gt(), new gt()];
|
|
42853
|
-
class
|
|
42889
|
+
class Rt {
|
|
42854
42890
|
/**
|
|
42855
42891
|
* @param x - The X coordinate of the upper-left corner of the rectangle
|
|
42856
42892
|
* @param y - The Y coordinate of the upper-left corner of the rectangle
|
|
@@ -42878,14 +42914,14 @@ class Mt {
|
|
|
42878
42914
|
}
|
|
42879
42915
|
/** A constant empty rectangle. */
|
|
42880
42916
|
static get EMPTY() {
|
|
42881
|
-
return new
|
|
42917
|
+
return new Rt(0, 0, 0, 0);
|
|
42882
42918
|
}
|
|
42883
42919
|
/**
|
|
42884
42920
|
* Creates a clone of this Rectangle
|
|
42885
42921
|
* @returns a copy of the rectangle
|
|
42886
42922
|
*/
|
|
42887
42923
|
clone() {
|
|
42888
|
-
return new
|
|
42924
|
+
return new Rt(this.x, this.y, this.width, this.height);
|
|
42889
42925
|
}
|
|
42890
42926
|
/**
|
|
42891
42927
|
* Copies another rectangle to this one.
|
|
@@ -42983,7 +43019,7 @@ class Mt {
|
|
|
42983
43019
|
return this.x = n, this.width = r - n, this.y = o, this.height = s - o, this;
|
|
42984
43020
|
}
|
|
42985
43021
|
}
|
|
42986
|
-
|
|
43022
|
+
Rt.prototype.toString = function() {
|
|
42987
43023
|
return `[@pixi/math:Rectangle x=${this.x} y=${this.y} width=${this.width} height=${this.height}]`;
|
|
42988
43024
|
};
|
|
42989
43025
|
class J_ {
|
|
@@ -43020,7 +43056,7 @@ class J_ {
|
|
|
43020
43056
|
* @returns The framing rectangle
|
|
43021
43057
|
*/
|
|
43022
43058
|
getBounds() {
|
|
43023
|
-
return new
|
|
43059
|
+
return new Rt(this.x - this.radius, this.y - this.radius, this.radius * 2, this.radius * 2);
|
|
43024
43060
|
}
|
|
43025
43061
|
}
|
|
43026
43062
|
J_.prototype.toString = function() {
|
|
@@ -43060,7 +43096,7 @@ class ev {
|
|
|
43060
43096
|
* @returns The framing rectangle
|
|
43061
43097
|
*/
|
|
43062
43098
|
getBounds() {
|
|
43063
|
-
return new
|
|
43099
|
+
return new Rt(this.x - this.width, this.y - this.height, this.width, this.height);
|
|
43064
43100
|
}
|
|
43065
43101
|
}
|
|
43066
43102
|
ev.prototype.toString = function() {
|
|
@@ -45588,7 +45624,7 @@ class st extends Wm {
|
|
|
45588
45624
|
* @param borders - Default borders used for 9-slice scaling. See {@link PIXI.NineSlicePlane}
|
|
45589
45625
|
*/
|
|
45590
45626
|
constructor(e, n, r, o, s, i, u) {
|
|
45591
|
-
if (super(), this.noFrame = !1, n || (this.noFrame = !0, n = new
|
|
45627
|
+
if (super(), this.noFrame = !1, n || (this.noFrame = !0, n = new Rt(0, 0, 1, 1)), e instanceof st && (e = e.baseTexture), this.baseTexture = e, this._frame = n, this.trim = o, this.valid = !1, this.destroyed = !1, this._uvs = LE, this.uvMatrix = null, this.orig = r || n, this._rotate = Number(s || 0), s === !0)
|
|
45592
45628
|
this._rotate = 2;
|
|
45593
45629
|
else if (this._rotate % 2 !== 0)
|
|
45594
45630
|
throw new Error("attempt to use diamond-shaped UVs. If you are sure, set rotation manually");
|
|
@@ -46054,7 +46090,7 @@ class xN extends uc {
|
|
|
46054
46090
|
}
|
|
46055
46091
|
class lye {
|
|
46056
46092
|
constructor() {
|
|
46057
|
-
this.renderTexture = null, this.target = null, this.legacy = !1, this.resolution = 1, this.multisample = Ar.NONE, this.sourceFrame = new
|
|
46093
|
+
this.renderTexture = null, this.target = null, this.legacy = !1, this.resolution = 1, this.multisample = Ar.NONE, this.sourceFrame = new Rt(), this.destinationFrame = new Rt(), this.bindingSourceFrame = new Rt(), this.bindingDestinationFrame = new Rt(), this.filters = [], this.transform = null;
|
|
46058
46094
|
}
|
|
46059
46095
|
/** Clears the state */
|
|
46060
46096
|
clear() {
|
|
@@ -46067,8 +46103,8 @@ class SN {
|
|
|
46067
46103
|
* @param renderer - The renderer this System works for.
|
|
46068
46104
|
*/
|
|
46069
46105
|
constructor(e) {
|
|
46070
|
-
this.renderer = e, this.defaultFilterStack = [{}], this.texturePool = new TN(), this.statePool = [], this.quad = new uye(), this.quadUv = new xN(), this.tempRect = new
|
|
46071
|
-
outputFrame: new
|
|
46106
|
+
this.renderer = e, this.defaultFilterStack = [{}], this.texturePool = new TN(), this.statePool = [], this.quad = new uye(), this.quadUv = new xN(), this.tempRect = new Rt(), this.activeState = {}, this.globalUniforms = new ui({
|
|
46107
|
+
outputFrame: new Rt(),
|
|
46072
46108
|
inputSize: new Float32Array(4),
|
|
46073
46109
|
inputPixel: new Float32Array(4),
|
|
46074
46110
|
inputClamp: new Float32Array(4),
|
|
@@ -46295,7 +46331,7 @@ class cye {
|
|
|
46295
46331
|
this.framebuffer = e, this.stencil = null, this.dirtyId = -1, this.dirtyFormat = -1, this.dirtySize = -1, this.multisample = Ar.NONE, this.msaaBuffer = null, this.blitFramebuffer = null, this.mipLevel = 0;
|
|
46296
46332
|
}
|
|
46297
46333
|
}
|
|
46298
|
-
const dye = new
|
|
46334
|
+
const dye = new Rt();
|
|
46299
46335
|
class RN {
|
|
46300
46336
|
/**
|
|
46301
46337
|
* @param renderer - The renderer this System works for.
|
|
@@ -46307,7 +46343,7 @@ class RN {
|
|
|
46307
46343
|
contextChange() {
|
|
46308
46344
|
this.disposeAll(!0);
|
|
46309
46345
|
const e = this.gl = this.renderer.gl;
|
|
46310
|
-
if (this.CONTEXT_UID = this.renderer.CONTEXT_UID, this.current = this.unknownFramebuffer, this.viewport = new
|
|
46346
|
+
if (this.CONTEXT_UID = this.renderer.CONTEXT_UID, this.current = this.unknownFramebuffer, this.viewport = new Rt(), this.hasMRT = !0, this.writeDepthTexture = !0, this.renderer.context.webGLVersion === 1) {
|
|
46311
46347
|
let n = this.renderer.context.extensions.drawBuffers, r = this.renderer.context.extensions.depthTexture;
|
|
46312
46348
|
et.PREFER_ENV === Ad.WEBGL_LEGACY && (n = null, r = null), n ? e.drawBuffers = (o) => n.drawBuffersWEBGL(o) : (this.hasMRT = !1, e.drawBuffers = () => {
|
|
46313
46349
|
}), r || (this.writeDepthTexture = !1);
|
|
@@ -46578,7 +46614,7 @@ class RN {
|
|
|
46578
46614
|
}
|
|
46579
46615
|
/** Resets framebuffer stored state, binds screen framebuffer. Should be called before renderTexture reset(). */
|
|
46580
46616
|
reset() {
|
|
46581
|
-
this.current = this.unknownFramebuffer, this.viewport = new
|
|
46617
|
+
this.current = this.unknownFramebuffer, this.viewport = new Rt();
|
|
46582
46618
|
}
|
|
46583
46619
|
destroy() {
|
|
46584
46620
|
this.renderer = null;
|
|
@@ -47128,7 +47164,7 @@ const XE = new Gn(), WE = [], DN = class Rg extends AN {
|
|
|
47128
47164
|
calcScissorRect(e) {
|
|
47129
47165
|
if (e._scissorRectLocal)
|
|
47130
47166
|
return;
|
|
47131
|
-
const n = e._scissorRect, { maskObject: r } = e, { renderer: o } = this, s = o.renderTexture, i = r.getBounds(!0, WE.pop() ?? new
|
|
47167
|
+
const n = e._scissorRect, { maskObject: r } = e, { renderer: o } = this, s = o.renderTexture, i = r.getBounds(!0, WE.pop() ?? new Rt());
|
|
47132
47168
|
this.roundFrameToPixels(
|
|
47133
47169
|
i,
|
|
47134
47170
|
s.current ? s.current.resolution : o.resolution,
|
|
@@ -47357,7 +47393,7 @@ ON.extension = {
|
|
|
47357
47393
|
name: "projection"
|
|
47358
47394
|
};
|
|
47359
47395
|
at.add(ON);
|
|
47360
|
-
const gye = new $x(), BE = new
|
|
47396
|
+
const gye = new $x(), BE = new Rt();
|
|
47361
47397
|
class FN {
|
|
47362
47398
|
constructor(e) {
|
|
47363
47399
|
this.renderer = e, this._tempMatrix = new Gn();
|
|
@@ -47397,13 +47433,13 @@ FN.extension = {
|
|
|
47397
47433
|
name: "textureGenerator"
|
|
47398
47434
|
};
|
|
47399
47435
|
at.add(FN);
|
|
47400
|
-
const Ac = new
|
|
47436
|
+
const Ac = new Rt(), Qh = new Rt();
|
|
47401
47437
|
class LN {
|
|
47402
47438
|
/**
|
|
47403
47439
|
* @param renderer - The renderer this System works for.
|
|
47404
47440
|
*/
|
|
47405
47441
|
constructor(e) {
|
|
47406
|
-
this.renderer = e, this.defaultMaskStack = [], this.current = null, this.sourceFrame = new
|
|
47442
|
+
this.renderer = e, this.defaultMaskStack = [], this.current = null, this.sourceFrame = new Rt(), this.destinationFrame = new Rt(), this.viewportFrame = new Rt();
|
|
47407
47443
|
}
|
|
47408
47444
|
contextChange() {
|
|
47409
47445
|
var e;
|
|
@@ -48608,7 +48644,7 @@ class M0 {
|
|
|
48608
48644
|
* @param {PIXI.ViewOptions} options - the options for the view
|
|
48609
48645
|
*/
|
|
48610
48646
|
init(e) {
|
|
48611
|
-
this.screen = new
|
|
48647
|
+
this.screen = new Rt(0, 0, e.width, e.height), this.element = e.view || et.ADAPTER.createCanvas(), this.resolution = e.resolution || et.RESOLUTION, this.autoDensity = !!e.autoDensity;
|
|
48612
48648
|
}
|
|
48613
48649
|
/**
|
|
48614
48650
|
* Resizes the screen and canvas to the specified dimensions.
|
|
@@ -50341,7 +50377,7 @@ class P0 {
|
|
|
50341
50377
|
* @returns - A rectangle of the bounds
|
|
50342
50378
|
*/
|
|
50343
50379
|
getRectangle(e) {
|
|
50344
|
-
return this.minX > this.maxX || this.minY > this.maxY ?
|
|
50380
|
+
return this.minX > this.maxX || this.minY > this.maxY ? Rt.EMPTY : (e = e || new Rt(0, 0, 1, 1), e.x = this.minX, e.y = this.minY, e.width = this.maxX - this.minX, e.height = this.maxY - this.minY, e);
|
|
50345
50381
|
}
|
|
50346
50382
|
/**
|
|
50347
50383
|
* This function should be inlined when its possible.
|
|
@@ -50579,7 +50615,7 @@ class lr extends Wm {
|
|
|
50579
50615
|
* @returns - The minimum axis-aligned rectangle in world space that fits around this object.
|
|
50580
50616
|
*/
|
|
50581
50617
|
getBounds(e, n) {
|
|
50582
|
-
return e || (this.parent ? (this._recursivePostUpdateTransform(), this.updateTransform()) : (this.parent = this._tempDisplayObjectParent, this.updateTransform(), this.parent = null)), this._bounds.updateID !== this._boundsID && (this.calculateBounds(), this._bounds.updateID = this._boundsID), n || (this._boundsRect || (this._boundsRect = new
|
|
50618
|
+
return e || (this.parent ? (this._recursivePostUpdateTransform(), this.updateTransform()) : (this.parent = this._tempDisplayObjectParent, this.updateTransform(), this.parent = null)), this._bounds.updateID !== this._boundsID && (this.calculateBounds(), this._bounds.updateID = this._boundsID), n || (this._boundsRect || (this._boundsRect = new Rt()), n = this._boundsRect), this._bounds.getRectangle(n);
|
|
50583
50619
|
}
|
|
50584
50620
|
/**
|
|
50585
50621
|
* Retrieves the local bounds of the displayObject as a rectangle object.
|
|
@@ -50587,7 +50623,7 @@ class lr extends Wm {
|
|
|
50587
50623
|
* @returns - The rectangular bounding area.
|
|
50588
50624
|
*/
|
|
50589
50625
|
getLocalBounds(e) {
|
|
50590
|
-
e || (this._localBoundsRect || (this._localBoundsRect = new
|
|
50626
|
+
e || (this._localBoundsRect || (this._localBoundsRect = new Rt()), e = this._localBoundsRect), this._localBounds || (this._localBounds = new P0());
|
|
50591
50627
|
const n = this.transform, r = this.parent;
|
|
50592
50628
|
this.parent = null, this._tempDisplayObjectParent.worldAlpha = (r == null ? void 0 : r.worldAlpha) ?? 1, this.transform = this._tempDisplayObjectParent.transform;
|
|
50593
50629
|
const o = this._bounds, s = this._boundsID;
|
|
@@ -51265,7 +51301,7 @@ class Pr extends ln {
|
|
|
51265
51301
|
* @returns The bounds.
|
|
51266
51302
|
*/
|
|
51267
51303
|
getLocalBounds(e) {
|
|
51268
|
-
return this.children.length === 0 ? (this._localBounds || (this._localBounds = new P0()), this._localBounds.minX = this._texture.orig.width * -this._anchor._x, this._localBounds.minY = this._texture.orig.height * -this._anchor._y, this._localBounds.maxX = this._texture.orig.width * (1 - this._anchor._x), this._localBounds.maxY = this._texture.orig.height * (1 - this._anchor._y), e || (this._localBoundsRect || (this._localBoundsRect = new
|
|
51304
|
+
return this.children.length === 0 ? (this._localBounds || (this._localBounds = new P0()), this._localBounds.minX = this._texture.orig.width * -this._anchor._x, this._localBounds.minY = this._texture.orig.height * -this._anchor._y, this._localBounds.maxX = this._texture.orig.width * (1 - this._anchor._x), this._localBounds.maxY = this._texture.orig.height * (1 - this._anchor._y), e || (this._localBoundsRect || (this._localBoundsRect = new Rt()), e = this._localBoundsRect), this._localBounds.getRectangle(e)) : super.getLocalBounds.call(this, e);
|
|
51269
51305
|
}
|
|
51270
51306
|
/**
|
|
51271
51307
|
* Tests if a point is inside this sprite
|
|
@@ -51465,7 +51501,7 @@ lr.prototype._initCachedDisplayObject = function(t) {
|
|
|
51465
51501
|
return;
|
|
51466
51502
|
const r = this.alpha;
|
|
51467
51503
|
this.alpha = 1, t.batch.flush();
|
|
51468
|
-
const o = this.getLocalBounds(new
|
|
51504
|
+
const o = this.getLocalBounds(new Rt(), !0);
|
|
51469
51505
|
if ((n = this.filters) != null && n.length) {
|
|
51470
51506
|
const y = this.filters[0].padding;
|
|
51471
51507
|
o.pad(y);
|
|
@@ -51491,7 +51527,7 @@ lr.prototype._initCachedDisplayObjectCanvas = function(t) {
|
|
|
51491
51527
|
var e;
|
|
51492
51528
|
if ((e = this._cacheData) != null && e.sprite)
|
|
51493
51529
|
return;
|
|
51494
|
-
const n = this.getLocalBounds(new
|
|
51530
|
+
const n = this.getLocalBounds(new Rt(), !0), r = this.alpha;
|
|
51495
51531
|
this.alpha = 1;
|
|
51496
51532
|
const o = t.canvasContext.activeContext, s = t._projTransform, i = this.cacheAsBitmapResolution || t.resolution;
|
|
51497
51533
|
n.ceil(i), n.width = Math.max(n.width, 1 / i), n.height = Math.max(n.height, 1 / i);
|
|
@@ -56898,7 +56934,7 @@ const $0e = {
|
|
|
56898
56934
|
}
|
|
56899
56935
|
};
|
|
56900
56936
|
at.add($0e);
|
|
56901
|
-
const og = new
|
|
56937
|
+
const og = new Rt(), j0e = 4, a3 = class hf {
|
|
56902
56938
|
/**
|
|
56903
56939
|
* @param renderer - A reference to the current renderer
|
|
56904
56940
|
*/
|
|
@@ -58324,7 +58360,7 @@ const fw = {}, ak = class Ag extends ln {
|
|
|
58324
58360
|
* @returns - This Graphics object. Good for chaining method calls
|
|
58325
58361
|
*/
|
|
58326
58362
|
drawRect(e, n, r, o) {
|
|
58327
|
-
return this.drawShape(new
|
|
58363
|
+
return this.drawShape(new Rt(e, n, r, o));
|
|
58328
58364
|
}
|
|
58329
58365
|
/**
|
|
58330
58366
|
* Draw a rectangle shape with rounded/beveled corners.
|
|
@@ -60192,7 +60228,7 @@ const l_e = {
|
|
|
60192
60228
|
let o = !1;
|
|
60193
60229
|
r || (r = et.ADAPTER.createCanvas(), o = !0), r.width = 3, r.height = 3;
|
|
60194
60230
|
const s = st.from(r);
|
|
60195
|
-
s.orig = new
|
|
60231
|
+
s.orig = new Rt(), s.trim = new Rt(), super(s), this._ownCanvas = o, this.canvas = r, this.context = r.getContext("2d", {
|
|
60196
60232
|
// required for trimming to work without warnings
|
|
60197
60233
|
willReadFrequently: !0
|
|
60198
60234
|
}), this._resolution = lk.defaultResolution ?? et.RESOLUTION, this._autoResolution = lk.defaultAutoResolution, this._text = null, this._style = null, this._styleListener = null, this._font = "", this.text = e, this.style = n, this.localStyleID = -1;
|
|
@@ -60849,23 +60885,23 @@ const k3 = class mf {
|
|
|
60849
60885
|
const o = this._frameKeys[n], s = this._frames[o], i = s.frame;
|
|
60850
60886
|
if (i) {
|
|
60851
60887
|
let u = null, l = null;
|
|
60852
|
-
const a = s.trimmed !== !1 && s.sourceSize ? s.sourceSize : s.frame, c = new
|
|
60888
|
+
const a = s.trimmed !== !1 && s.sourceSize ? s.sourceSize : s.frame, c = new Rt(
|
|
60853
60889
|
0,
|
|
60854
60890
|
0,
|
|
60855
60891
|
Math.floor(a.w) / this.resolution,
|
|
60856
60892
|
Math.floor(a.h) / this.resolution
|
|
60857
60893
|
);
|
|
60858
|
-
s.rotated ? u = new
|
|
60894
|
+
s.rotated ? u = new Rt(
|
|
60859
60895
|
Math.floor(i.x) / this.resolution,
|
|
60860
60896
|
Math.floor(i.y) / this.resolution,
|
|
60861
60897
|
Math.floor(i.h) / this.resolution,
|
|
60862
60898
|
Math.floor(i.w) / this.resolution
|
|
60863
|
-
) : u = new
|
|
60899
|
+
) : u = new Rt(
|
|
60864
60900
|
Math.floor(i.x) / this.resolution,
|
|
60865
60901
|
Math.floor(i.y) / this.resolution,
|
|
60866
60902
|
Math.floor(i.w) / this.resolution,
|
|
60867
60903
|
Math.floor(i.h) / this.resolution
|
|
60868
|
-
), s.trimmed !== !1 && s.spriteSourceSize && (l = new
|
|
60904
|
+
), s.trimmed !== !1 && s.spriteSourceSize && (l = new Rt(
|
|
60869
60905
|
Math.floor(s.spriteSourceSize.x) / this.resolution,
|
|
60870
60906
|
Math.floor(s.spriteSourceSize.y) / this.resolution,
|
|
60871
60907
|
Math.floor(i.w) / this.resolution,
|
|
@@ -61262,7 +61298,7 @@ const Ll = class Ii {
|
|
|
61262
61298
|
const { id: p, page: f } = e.char[d];
|
|
61263
61299
|
let { x: y, y: _, width: b, height: x, xoffset: R, yoffset: S, xadvance: E } = e.char[d];
|
|
61264
61300
|
y /= a, _ /= a, b /= a, x /= a, R /= a, S /= a, E /= a;
|
|
61265
|
-
const F = new
|
|
61301
|
+
const F = new Rt(
|
|
61266
61302
|
y + c[f].frame.x / a,
|
|
61267
61303
|
_ + c[f].frame.y / a,
|
|
61268
61304
|
b,
|
|
@@ -62147,7 +62183,7 @@ const ug = class pp extends Pr {
|
|
|
62147
62183
|
autoLoad: !1
|
|
62148
62184
|
}
|
|
62149
62185
|
});
|
|
62150
|
-
o.orig = new
|
|
62186
|
+
o.orig = new Rt(), o.trim = new Rt(), this.texture = o;
|
|
62151
62187
|
const s = "http://www.w3.org/2000/svg", i = "http://www.w3.org/1999/xhtml", u = document.createElementNS(s, "svg"), l = document.createElementNS(s, "foreignObject"), a = document.createElementNS(i, "div"), c = document.createElementNS(i, "style");
|
|
62152
62188
|
l.setAttribute("width", "10000"), l.setAttribute("height", "10000"), l.style.overflow = "hidden", u.appendChild(l), this.maxWidth = pp.defaultMaxWidth, this.maxHeight = pp.defaultMaxHeight, this._domElement = a, this._styleElement = c, this._svgRoot = u, this._foreignObject = l, this._foreignObject.appendChild(c), this._foreignObject.appendChild(a), this._image = r, this._loadImage = new Image(), this._autoResolution = pp.defaultAutoResolution, this._resolution = pp.defaultResolution ?? et.RESOLUTION, this.text = e, this.style = n;
|
|
62153
62189
|
}
|
|
@@ -65034,7 +65070,7 @@ _s("x,y,z,top,right,bottom,left,width,height,fontSize,padding,margin,perspective
|
|
|
65034
65070
|
Ts.registerPlugin(MX);
|
|
65035
65071
|
var PX = Ts.registerPlugin(MX) || Ts;
|
|
65036
65072
|
PX.core.Tween;
|
|
65037
|
-
const Oc = new
|
|
65073
|
+
const Oc = new Rt();
|
|
65038
65074
|
class dbe {
|
|
65039
65075
|
/**
|
|
65040
65076
|
* @param options
|
|
@@ -66652,7 +66688,7 @@ class Bbe {
|
|
|
66652
66688
|
Ae(this, "viewport"), Ae(this, "clickedAvailable"), Ae(this, "isMouseDown"), Ae(this, "last"), Ae(this, "wheelFunction"), Ae(this, "touches"), this.viewport = e, this.touches = [], this.addListeners();
|
|
66653
66689
|
}
|
|
66654
66690
|
addListeners() {
|
|
66655
|
-
this.viewport.interactive = !0, this.viewport.forceHitArea || (this.viewport.hitArea = new
|
|
66691
|
+
this.viewport.interactive = !0, this.viewport.forceHitArea || (this.viewport.hitArea = new Rt(0, 0, this.viewport.worldWidth, this.viewport.worldHeight)), this.viewport.on("pointerdown", this.down, this), this.viewport.options.allowPreserveDragOutside ? this.viewport.on("globalpointermove", this.move, this) : this.viewport.on("pointermove", this.move, this), this.viewport.on("pointerup", this.up, this), this.viewport.on("pointerupoutside", this.up, this), this.viewport.on("pointercancel", this.up, this), this.viewport.options.allowPreserveDragOutside || this.viewport.on("pointerleave", this.up, this), this.wheelFunction = (e) => this.handleWheel(e), this.viewport.options.events.domElement.addEventListener(
|
|
66656
66692
|
"wheel",
|
|
66657
66693
|
this.wheelFunction,
|
|
66658
66694
|
{ passive: this.viewport.options.passiveWheel }
|
|
@@ -66842,7 +66878,7 @@ class Gbe extends ln {
|
|
|
66842
66878
|
!this.options.noTicker && this.tickerFunction && this.options.ticker.remove(this.tickerFunction), this.options.disableOnContextMenu && this.options.events.domElement.removeEventListener("contextmenu", this._disableOnContextMenu), this.input.destroy(), super.destroy(e);
|
|
66843
66879
|
}
|
|
66844
66880
|
update(e) {
|
|
66845
|
-
this.pause || (this.plugins.update(e), this.lastViewport && (this.lastViewport.x !== this.x || this.lastViewport.y !== this.y ? this.moving = !0 : this.moving && (this.emit("moved-end", this), this.moving = !1), this.lastViewport.scaleX !== this.scale.x || this.lastViewport.scaleY !== this.scale.y ? this.zooming = !0 : this.zooming && (this.emit("zoomed-end", this), this.zooming = !1)), this.forceHitArea || (this._hitAreaDefault = new
|
|
66881
|
+
this.pause || (this.plugins.update(e), this.lastViewport && (this.lastViewport.x !== this.x || this.lastViewport.y !== this.y ? this.moving = !0 : this.moving && (this.emit("moved-end", this), this.moving = !1), this.lastViewport.scaleX !== this.scale.x || this.lastViewport.scaleY !== this.scale.y ? this.zooming = !0 : this.zooming && (this.emit("zoomed-end", this), this.zooming = !1)), this.forceHitArea || (this._hitAreaDefault = new Rt(this.left, this.top, this.worldScreenWidth, this.worldScreenHeight), this.hitArea = this._hitAreaDefault), this._dirty = this._dirty || !this.lastViewport || this.lastViewport.x !== this.x || this.lastViewport.y !== this.y || this.lastViewport.scaleX !== this.scale.x || this.lastViewport.scaleY !== this.scale.y, this.lastViewport = {
|
|
66846
66882
|
x: this.x,
|
|
66847
66883
|
y: this.y,
|
|
66848
66884
|
scaleX: this.scale.x,
|
|
@@ -66865,7 +66901,7 @@ class Gbe extends ln {
|
|
|
66865
66901
|
this._worldHeight = e, this.plugins.resize();
|
|
66866
66902
|
}
|
|
66867
66903
|
getVisibleBounds() {
|
|
66868
|
-
return new
|
|
66904
|
+
return new Rt(this.left, this.top, this.worldScreenWidth, this.worldScreenHeight);
|
|
66869
66905
|
}
|
|
66870
66906
|
toWorld(e, n) {
|
|
66871
66907
|
return arguments.length === 2 ? this.toLocal(new gt(e, n)) : this.toLocal(e);
|
|
@@ -67021,7 +67057,7 @@ class Gbe extends ln {
|
|
|
67021
67057
|
return this._forceHitArea;
|
|
67022
67058
|
}
|
|
67023
67059
|
set forceHitArea(e) {
|
|
67024
|
-
e ? (this._forceHitArea = e, this.hitArea = e) : (this._forceHitArea = null, this.hitArea = new
|
|
67060
|
+
e ? (this._forceHitArea = e, this.hitArea = e) : (this._forceHitArea = null, this.hitArea = new Rt(0, 0, this.worldWidth, this.worldHeight));
|
|
67025
67061
|
}
|
|
67026
67062
|
drag(e) {
|
|
67027
67063
|
return this.plugins.add("drag", new Mbe(this, e)), this;
|
|
@@ -68902,7 +68938,7 @@ async function Mke({ size: t, stroke: e = 1, radius: n = 0 }) {
|
|
|
68902
68938
|
const r = await Lr(), o = new xh();
|
|
68903
68939
|
return o.lineStyle(e, "#fff", 1, 0), o.drawRoundedRect(0, 0, t * 2, t * 2, n), r.renderer.generateTexture(o, {
|
|
68904
68940
|
// drew a rounded rectangle and then just using one corner as the "arrow"
|
|
68905
|
-
region: new
|
|
68941
|
+
region: new Rt(0, 0, t, t),
|
|
68906
68942
|
// manually bumping up the resolution to keep the border radius from being blurry
|
|
68907
68943
|
resolution: 10
|
|
68908
68944
|
});
|
|
@@ -69008,7 +69044,7 @@ async function Ike({ height: t, radius: e }) {
|
|
|
69008
69044
|
const n = await Lr(), r = new xh();
|
|
69009
69045
|
return r.beginFill("#fff"), r.drawRoundedRect(0, 0, e * 2, t, e), r.endFill(), n.renderer.generateTexture(r, {
|
|
69010
69046
|
// drew a rounded rectangle and then just using half of the graphic to get just the left "cap"
|
|
69011
|
-
region: new
|
|
69047
|
+
region: new Rt(0, 0, e, t),
|
|
69012
69048
|
resolution: $L
|
|
69013
69049
|
});
|
|
69014
69050
|
}
|
|
@@ -72083,7 +72119,7 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
72083
72119
|
class: "flow-run-list"
|
|
72084
72120
|
}, {
|
|
72085
72121
|
default: w(({ item: a }) => [
|
|
72086
|
-
v(g(o),
|
|
72122
|
+
v(g(o), Mt({
|
|
72087
72123
|
selected: s.value,
|
|
72088
72124
|
"onUpdate:selected": u[0] || (u[0] = (c) => s.value = c)
|
|
72089
72125
|
}, { hideFlowName: i.hideFlowName, hideDetails: i.hideDetails, flowRun: a, selectable: i.selectable }), null, 16, ["selected"])
|
|
@@ -72127,7 +72163,7 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
72127
72163
|
class: "icon-text-count"
|
|
72128
72164
|
}, {
|
|
72129
72165
|
default: w(() => [
|
|
72130
|
-
r.count > 0 ? Oe(r.$slots, "default", Bt(
|
|
72166
|
+
r.count > 0 ? Oe(r.$slots, "default", Bt(Mt({ key: 0 }, { count: r.count, formattedLabel: n.value })), () => [
|
|
72131
72167
|
z(se(r.count) + " " + se(n.value), 1)
|
|
72132
72168
|
]) : Oe(r.$slots, "empty", { key: 1 }, () => [
|
|
72133
72169
|
Uxe
|
|
@@ -72176,7 +72212,7 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
72176
72212
|
ref: c,
|
|
72177
72213
|
class: "flow-run-list-item"
|
|
72178
72214
|
}, [
|
|
72179
|
-
v(mx,
|
|
72215
|
+
v(mx, Mt({
|
|
72180
72216
|
selected: o.value,
|
|
72181
72217
|
"onUpdate:selected": _[0] || (_[0] = (b) => o.value = b)
|
|
72182
72218
|
}, { selectable: y.selectable, value: u.value, tags: i.value, stateType: s.value }), vt({
|
|
@@ -72400,7 +72436,7 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
72400
72436
|
},
|
|
72401
72437
|
emits: ["delete"],
|
|
72402
72438
|
setup(t, { emit: e }) {
|
|
72403
|
-
const n = t, r = ze(), o = ve(), s = Ve(), { flowRunId: i } = Sr(n), { showModal: u, open: l } =
|
|
72439
|
+
const n = t, r = ze(), o = ve(), s = Ve(), { flowRunId: i } = Sr(n), { showModal: u, open: l } = St(), { showModal: a, open: c } = St(), { showModal: d, open: p } = St(), { showModal: f, open: y } = St(), { showModal: _, open: b } = St(), { showModal: x, open: R } = St(), S = me(!1), { flowRun: E, subscription: F } = di(i, { interval: 3e3 }), { deployment: I } = U_(() => {
|
|
72404
72440
|
var ye;
|
|
72405
72441
|
return (ye = E.value) == null ? void 0 : ye.deploymentId;
|
|
72406
72442
|
}), O = M(() => {
|
|
@@ -72709,11 +72745,11 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
72709
72745
|
flowRun: {}
|
|
72710
72746
|
},
|
|
72711
72747
|
setup(t) {
|
|
72712
|
-
const e = t, n = ih(), r = ze(), { showModal: o, open: s } =
|
|
72748
|
+
const e = t, n = ih(), r = ze(), { showModal: o, open: s } = St(), i = M(() => !r.update.flow_run || !e.flowRun.stateType ? !1 : nC(e.flowRun.stateType));
|
|
72713
72749
|
return (u, l) => {
|
|
72714
72750
|
const a = A("p-button");
|
|
72715
72751
|
return T(), K(ke, null, [
|
|
72716
|
-
i.value ? (T(), D(a,
|
|
72752
|
+
i.value ? (T(), D(a, Mt({
|
|
72717
72753
|
key: 0,
|
|
72718
72754
|
"icon-append": "PlayIcon"
|
|
72719
72755
|
}, g(n), { onClick: g(s) }), {
|
|
@@ -72808,7 +72844,7 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
72808
72844
|
flowRun: {}
|
|
72809
72845
|
},
|
|
72810
72846
|
setup(t) {
|
|
72811
|
-
const e = t, n = ze(), { showModal: r, open: o } =
|
|
72847
|
+
const e = t, n = ze(), { showModal: r, open: o } = St(), s = M(() => !n.update.flow_run || !e.flowRun.stateType || !e.flowRun.deploymentId ? !1 : li(e.flowRun.stateType)), i = me(!1);
|
|
72812
72848
|
return (u, l) => {
|
|
72813
72849
|
const a = A("p-button");
|
|
72814
72850
|
return s.value ? (T(), D(a, {
|
|
@@ -72838,7 +72874,7 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
72838
72874
|
},
|
|
72839
72875
|
emits: ["delete"],
|
|
72840
72876
|
setup(t, { emit: e }) {
|
|
72841
|
-
const n = e, { showModal: r, open: o, close: s } =
|
|
72877
|
+
const n = e, { showModal: r, open: o, close: s } = St(), i = ve(), u = async (l) => {
|
|
72842
72878
|
const a = M(() => l.length === 1 ? "Flow run deleted" : `${l.length} flow runs deleted`);
|
|
72843
72879
|
s();
|
|
72844
72880
|
try {
|
|
@@ -72894,7 +72930,7 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
72894
72930
|
});
|
|
72895
72931
|
return (l, a) => {
|
|
72896
72932
|
const c = A("p-tags-input");
|
|
72897
|
-
return T(), D(c,
|
|
72933
|
+
return T(), D(c, Mt({
|
|
72898
72934
|
modelValue: s.value,
|
|
72899
72935
|
"onUpdate:modelValue": a[0] || (a[0] = (d) => s.value = d),
|
|
72900
72936
|
class: "flow-run-tags-input",
|
|
@@ -72947,7 +72983,7 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
72947
72983
|
...l
|
|
72948
72984
|
];
|
|
72949
72985
|
}), u = (l) => typeof l == "string" ? Xf(l) : null;
|
|
72950
|
-
return (l, a) => (T(), D(g(pm),
|
|
72986
|
+
return (l, a) => (T(), D(g(pm), Mt({
|
|
72951
72987
|
modelValue: s.value,
|
|
72952
72988
|
"onUpdate:modelValue": a[0] || (a[0] = (c) => s.value = c),
|
|
72953
72989
|
class: "state-name-select"
|
|
@@ -73017,7 +73053,7 @@ const yxe = { class: "flex items-center gap-2" }, gxe = /* @__PURE__ */ W({
|
|
|
73017
73053
|
label: "None"
|
|
73018
73054
|
}), c;
|
|
73019
73055
|
});
|
|
73020
|
-
return (c, d) => (T(), D(g(qo),
|
|
73056
|
+
return (c, d) => (T(), D(g(qo), Mt({
|
|
73021
73057
|
modelValue: s.value,
|
|
73022
73058
|
"onUpdate:modelValue": d[0] || (d[0] = (p) => s.value = p)
|
|
73023
73059
|
}, { options: a.value, emptyMessage: c.emptyMessage, multiple: o.value }), {
|
|
@@ -73393,11 +73429,11 @@ const USe = /* @__PURE__ */ Ed(NSe, [["render", VSe]]), GSe = { class: "flow-run
|
|
|
73393
73429
|
sections: a.value,
|
|
73394
73430
|
class: "flow-runs-accordion"
|
|
73395
73431
|
}, {
|
|
73396
|
-
heading: w(({ section: _
|
|
73397
|
-
v(_Se,
|
|
73432
|
+
heading: w(({ section: _ }) => [
|
|
73433
|
+
v(_Se, {
|
|
73398
73434
|
flow: d(_),
|
|
73399
73435
|
filter: n.value
|
|
73400
|
-
},
|
|
73436
|
+
}, null, 8, ["flow", "filter"])
|
|
73401
73437
|
]),
|
|
73402
73438
|
content: w(({ section: _ }) => [
|
|
73403
73439
|
v(hSe, {
|
|
@@ -73601,7 +73637,7 @@ const USe = /* @__PURE__ */ Ed(NSe, [["render", VSe]]), GSe = { class: "flow-run
|
|
|
73601
73637
|
flowRun: {}
|
|
73602
73638
|
},
|
|
73603
73639
|
setup(t) {
|
|
73604
|
-
const e = t, n = ze(), { showModal: r, open: o } =
|
|
73640
|
+
const e = t, n = ze(), { showModal: r, open: o } = St(), s = M(() => !n.update.flow_run || !e.flowRun.stateType || !e.flowRun.deploymentId ? !1 : rC(e.flowRun.stateType));
|
|
73605
73641
|
return (i, u) => {
|
|
73606
73642
|
const l = A("p-button");
|
|
73607
73643
|
return s.value ? (T(), D(l, {
|
|
@@ -73660,7 +73696,7 @@ const USe = /* @__PURE__ */ Ed(NSe, [["render", VSe]]), GSe = { class: "flow-run
|
|
|
73660
73696
|
});
|
|
73661
73697
|
return (l, a) => {
|
|
73662
73698
|
const c = A("p-tags-input");
|
|
73663
|
-
return T(), D(c,
|
|
73699
|
+
return T(), D(c, Mt({
|
|
73664
73700
|
modelValue: s.value,
|
|
73665
73701
|
"onUpdate:modelValue": a[0] || (a[0] = (d) => s.value = d),
|
|
73666
73702
|
class: "task-run-tags-input",
|
|
@@ -73939,7 +73975,7 @@ const USe = /* @__PURE__ */ Ed(NSe, [["render", VSe]]), GSe = { class: "flow-run
|
|
|
73939
73975
|
},
|
|
73940
73976
|
emits: ["delete"],
|
|
73941
73977
|
setup(t, { emit: e }) {
|
|
73942
|
-
const n = e, { showModal: r, open: o, close: s } =
|
|
73978
|
+
const n = e, { showModal: r, open: o, close: s } = St(), i = ve(), u = ih(), l = async (a) => {
|
|
73943
73979
|
const c = M(() => a.length === 1 ? re.success.delete("Flow") : re.success.delete(`${a.length} flows`));
|
|
73944
73980
|
try {
|
|
73945
73981
|
const d = a.map(i.flows.deleteFlow);
|
|
@@ -73954,7 +73990,7 @@ const USe = /* @__PURE__ */ Ed(NSe, [["render", VSe]]), GSe = { class: "flow-run
|
|
|
73954
73990
|
return (a, c) => {
|
|
73955
73991
|
const d = A("p-button");
|
|
73956
73992
|
return T(), K(ke, null, [
|
|
73957
|
-
a.selected.length > 0 ? (T(), D(d,
|
|
73993
|
+
a.selected.length > 0 ? (T(), D(d, Mt({ key: 0 }, g(u), {
|
|
73958
73994
|
icon: "TrashIcon",
|
|
73959
73995
|
onClick: g(o)
|
|
73960
73996
|
}), null, 16, ["onClick"])) : U("", !0),
|
|
@@ -74803,7 +74839,7 @@ const _2e = /* @__PURE__ */ Ed(h2e, [["render", g2e]]), v2e = { class: "interval
|
|
|
74803
74839
|
},
|
|
74804
74840
|
emits: ["delete"],
|
|
74805
74841
|
setup(t, { emit: e }) {
|
|
74806
|
-
const n = e, r = ze(), o = ve(), s = Ve(), { showModal: i, open: u, close: l } =
|
|
74842
|
+
const n = e, r = ze(), o = ve(), s = Ve(), { showModal: i, open: u, close: l } = St(), a = async (c) => {
|
|
74807
74843
|
l(), await na(c, o.notifications.deleteNotification, "Notification"), n("delete", c);
|
|
74808
74844
|
};
|
|
74809
74845
|
return (c, d) => {
|
|
@@ -75349,7 +75385,7 @@ const _2e = /* @__PURE__ */ Ed(h2e, [["render", g2e]]), v2e = { class: "interval
|
|
|
75349
75385
|
}), vRe = /* @__PURE__ */ W({
|
|
75350
75386
|
__name: "PageHeadingConcurrencyLimits",
|
|
75351
75387
|
setup(t) {
|
|
75352
|
-
const e = ze(), { showModal: n, open: r } =
|
|
75388
|
+
const e = ze(), { showModal: n, open: r } = St();
|
|
75353
75389
|
return (o, s) => {
|
|
75354
75390
|
const i = A("p-button");
|
|
75355
75391
|
return T(), K(ke, null, [
|
|
@@ -75827,7 +75863,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
75827
75863
|
var F;
|
|
75828
75864
|
(F = n.savedSearch) != null && F.isDefault ? c.remove() : n.savedSearch && c.set(n.savedSearch.filters);
|
|
75829
75865
|
}
|
|
75830
|
-
const p = ze(), f = i_(), y = M(() => window.location.origin + f.fullPath), { showModal: _, open: b } =
|
|
75866
|
+
const p = ze(), f = i_(), y = M(() => window.location.origin + f.fullPath), { showModal: _, open: b } = St(), { showModal: x, open: R } = St();
|
|
75831
75867
|
function S(F) {
|
|
75832
75868
|
s.value = { ...F, isDefault: !1 };
|
|
75833
75869
|
}
|
|
@@ -76251,7 +76287,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
76251
76287
|
__name: "PageHeadingVariables",
|
|
76252
76288
|
emits: ["create"],
|
|
76253
76289
|
setup(t, { emit: e }) {
|
|
76254
|
-
const n = [{ text: "Variables" }], r = e, o = ze(), { showModal: s, open: i } =
|
|
76290
|
+
const n = [{ text: "Variables" }], r = e, o = ze(), { showModal: s, open: i } = St();
|
|
76255
76291
|
return (u, l) => {
|
|
76256
76292
|
const a = A("p-button");
|
|
76257
76293
|
return T(), K(ke, null, [
|
|
@@ -76636,7 +76672,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
76636
76672
|
deployment: {}
|
|
76637
76673
|
},
|
|
76638
76674
|
setup(t) {
|
|
76639
|
-
const e = me(), n = me(), r = [Dr.bottomRight, Dr.bottomLeft, Dr.topRight, Dr.topLeft], { showModal: o, open: s } =
|
|
76675
|
+
const e = me(), n = me(), r = [Dr.bottomRight, Dr.bottomLeft, Dr.topRight, Dr.topLeft], { showModal: o, open: s } = St();
|
|
76640
76676
|
function i() {
|
|
76641
76677
|
e.value && e.value.close();
|
|
76642
76678
|
}
|
|
@@ -76704,7 +76740,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
76704
76740
|
},
|
|
76705
76741
|
emits: ["submit"],
|
|
76706
76742
|
setup(t, { expose: e, emit: n }) {
|
|
76707
|
-
const { showModal: r, open: o, close: s } =
|
|
76743
|
+
const { showModal: r, open: o, close: s } = St();
|
|
76708
76744
|
e({ publicOpen: () => {
|
|
76709
76745
|
o();
|
|
76710
76746
|
} });
|
|
@@ -77486,7 +77522,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
77486
77522
|
},
|
|
77487
77523
|
emits: ["delete", "update"],
|
|
77488
77524
|
setup(t, { emit: e }) {
|
|
77489
|
-
const n = e, r = ze(), { showModal: o, open: s, close: i } =
|
|
77525
|
+
const n = e, r = ze(), { showModal: o, open: s, close: i } = St(), { showModal: u, open: l } = St(), a = ve(), c = async (p) => {
|
|
77490
77526
|
i();
|
|
77491
77527
|
try {
|
|
77492
77528
|
await a.variables.deleteVariable(p), Be(re.success.delete(re.info.variable), "success"), n("delete", p);
|
|
@@ -77551,7 +77587,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
77551
77587
|
},
|
|
77552
77588
|
emits: ["delete"],
|
|
77553
77589
|
setup(t, { emit: e }) {
|
|
77554
|
-
const n = t, r = e, { showModal: o, open: s, close: i } =
|
|
77590
|
+
const n = t, r = e, { showModal: o, open: s, close: i } = St(), u = ve(), l = M(() => n.variableIds.length === 1 ? re.info.thisVariable : re.info.theseVariables), a = async (c) => {
|
|
77555
77591
|
try {
|
|
77556
77592
|
const d = c.map(u.variables.deleteVariable);
|
|
77557
77593
|
await Promise.all(d);
|
|
@@ -77587,7 +77623,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
77587
77623
|
__name: "VariablesPageEmptyState",
|
|
77588
77624
|
emits: ["create"],
|
|
77589
77625
|
setup(t, { emit: e }) {
|
|
77590
|
-
const n = e, r = ze(), { showModal: o, open: s } =
|
|
77626
|
+
const n = e, r = ze(), { showModal: o, open: s } = St();
|
|
77591
77627
|
return (i, u) => (T(), D(g(xs), null, {
|
|
77592
77628
|
icon: w(() => [
|
|
77593
77629
|
v(g(Tr), {
|
|
@@ -77897,7 +77933,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
77897
77933
|
function y() {
|
|
77898
77934
|
c.value = "";
|
|
77899
77935
|
}
|
|
77900
|
-
const { showModal: _, open: b, close: x } =
|
|
77936
|
+
const { showModal: _, open: b, close: x } = St();
|
|
77901
77937
|
async function R(S) {
|
|
77902
77938
|
x(), await na({ workPoolName: u.value, workerName: S }, o.workPoolWorkers.deleteWorker, "Worker"), r("delete");
|
|
77903
77939
|
}
|
|
@@ -78502,7 +78538,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
78502
78538
|
a.value ? (T(), K(ke, { key: 2 }, [
|
|
78503
78539
|
v(y),
|
|
78504
78540
|
sPe,
|
|
78505
|
-
v(g(hx),
|
|
78541
|
+
v(g(hx), Mt({ values: c.value }, { schema: l.value, alternate: d.alternate }), null, 16, ["values"])
|
|
78506
78542
|
], 64)) : U("", !0)
|
|
78507
78543
|
]);
|
|
78508
78544
|
};
|
|
@@ -78663,14 +78699,14 @@ const HW = /* @__PURE__ */ W({
|
|
|
78663
78699
|
},
|
|
78664
78700
|
emits: ["delete"],
|
|
78665
78701
|
setup(t, { emit: e }) {
|
|
78666
|
-
const n = e, r = ze(), o = ve(), s = Ve(), { showModal: i, open: u, close: l } =
|
|
78702
|
+
const n = e, r = ze(), o = ve(), s = Ve(), { showModal: i, open: u, close: l } = St(), { subscription: a } = yF();
|
|
78667
78703
|
async function c(d) {
|
|
78668
78704
|
l(), await na(d, o.workPools.deleteWorkPool, "Work pool"), MD(o.workPools.getWorkPools, []), a.refresh(), n("delete");
|
|
78669
78705
|
}
|
|
78670
78706
|
return (d, p) => {
|
|
78671
78707
|
const f = A("p-overflow-menu-item"), y = A("router-link"), _ = A("p-icon-button-menu");
|
|
78672
78708
|
return T(), K(ke, null, [
|
|
78673
|
-
v(_,
|
|
78709
|
+
v(_, Mt(d.$attrs, { class: "work-pool-menu" }), {
|
|
78674
78710
|
default: w(() => [
|
|
78675
78711
|
v(g(Yr), {
|
|
78676
78712
|
label: "Copy ID",
|
|
@@ -79115,14 +79151,14 @@ const HW = /* @__PURE__ */ W({
|
|
|
79115
79151
|
},
|
|
79116
79152
|
emits: ["delete"],
|
|
79117
79153
|
setup(t, { emit: e }) {
|
|
79118
|
-
const n = t, r = e, o = ze(), s = ve(), i = Ve(), { showModal: u, open: l, close: a } =
|
|
79154
|
+
const n = t, r = e, o = ze(), s = ve(), i = Ve(), { showModal: u, open: l, close: a } = St(), c = tt(s.workPools.getWorkPoolByName, [n.workPoolName]), d = M(() => c.response), p = M(() => !d.value || d.value.defaultQueueId !== n.workPoolQueue.id && o.delete.work_queue);
|
|
79119
79155
|
async function f(y) {
|
|
79120
79156
|
a(), await na([n.workPoolName, y], s.workPoolQueues.deleteWorkPoolQueue, "Work queue"), r("delete");
|
|
79121
79157
|
}
|
|
79122
79158
|
return (y, _) => {
|
|
79123
79159
|
const b = A("p-overflow-menu-item"), x = A("router-link"), R = A("p-icon-button-menu");
|
|
79124
79160
|
return T(), K(ke, null, [
|
|
79125
|
-
v(R,
|
|
79161
|
+
v(R, Mt(y.$attrs, { class: "work-pool-queue-menu" }), {
|
|
79126
79162
|
default: w(() => [
|
|
79127
79163
|
v(g(Yr), {
|
|
79128
79164
|
label: "Copy ID",
|
|
@@ -79179,7 +79215,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
79179
79215
|
},
|
|
79180
79216
|
emits: ["delete"],
|
|
79181
79217
|
setup(t, { emit: e }) {
|
|
79182
|
-
const n = t, r = e, { showModal: o, open: s, close: i } =
|
|
79218
|
+
const n = t, r = e, { showModal: o, open: s, close: i } = St(), u = ve(), l = async (a) => {
|
|
79183
79219
|
const c = M(() => a.length === 1 ? re.success.delete("Work queue") : re.success.delete(`${a.length} work queues`));
|
|
79184
79220
|
try {
|
|
79185
79221
|
const d = a.map((p) => u.workPoolQueues.deleteWorkPoolQueue(n.workPoolName, p.name));
|
|
@@ -79603,7 +79639,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
79603
79639
|
})).sort((c, d) => c.label.localeCompare(d.label)));
|
|
79604
79640
|
return (a, c) => {
|
|
79605
79641
|
const d = A("PSelect");
|
|
79606
|
-
return T(), D(d,
|
|
79642
|
+
return T(), D(d, Mt({
|
|
79607
79643
|
modelValue: o.value,
|
|
79608
79644
|
"onUpdate:modelValue": c[0] || (c[0] = (p) => o.value = p),
|
|
79609
79645
|
class: "block-type-select"
|
|
@@ -79660,7 +79696,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
79660
79696
|
for (const _ of y.options)
|
|
79661
79697
|
iM(_) && !p.has(_.value) && f.add(_.value);
|
|
79662
79698
|
f.size !== 0 && (!o.value && s.value && f.has(s.value) ? s.value = void 0 : Array.isArray(s.value) && s.value.length && (s.value = s.value.filter((y) => !f.has(y))));
|
|
79663
|
-
}), (c, d) => (T(), D(g(qo),
|
|
79699
|
+
}), (c, d) => (T(), D(g(qo), Mt({
|
|
79664
79700
|
modelValue: s.value,
|
|
79665
79701
|
"onUpdate:modelValue": d[0] || (d[0] = (p) => s.value = p)
|
|
79666
79702
|
}, { options: a.value, multiple: o.value, emptyMessage: c.emptyMessage }), {
|
|
@@ -80107,7 +80143,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
80107
80143
|
},
|
|
80108
80144
|
emits: ["delete"],
|
|
80109
80145
|
setup(t, { emit: e }) {
|
|
80110
|
-
const n = t, r = e, o = ve(), s = ze(), i = Ve(), { showModal: u, open: l, close: a } =
|
|
80146
|
+
const n = t, r = e, o = ve(), s = ze(), i = Ve(), { showModal: u, open: l, close: a } = St(), c = tt(o.workPools.getWorkPools, []), d = M(() => c.response ?? []), p = M(() => d.value.some((_) => _.defaultQueueId === n.workQueue.id)), f = M(() => !p.value && s.delete.work_queue), y = async (_) => {
|
|
80111
80147
|
a(), await na(_, o.workQueues.deleteWorkQueue, "Work queue"), r("delete", _);
|
|
80112
80148
|
};
|
|
80113
80149
|
return (_, b) => (T(), K(ke, null, [
|
|
@@ -80151,7 +80187,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
80151
80187
|
},
|
|
80152
80188
|
emits: ["delete"],
|
|
80153
80189
|
setup(t, { emit: e }) {
|
|
80154
|
-
const n = e, { showModal: r, open: o, close: s } =
|
|
80190
|
+
const n = e, { showModal: r, open: o, close: s } = St(), i = ve(), u = async (l) => {
|
|
80155
80191
|
const a = M(() => l.length === 1 ? re.success.delete("Work queue") : re.success.delete(`${l.length} work queues`));
|
|
80156
80192
|
try {
|
|
80157
80193
|
const c = l.map((d) => i.workQueues.deleteWorkQueue(d.id));
|
|
@@ -80882,7 +80918,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
80882
80918
|
return (l, a) => {
|
|
80883
80919
|
const c = A("p-number-input"), d = A("p-select");
|
|
80884
80920
|
return T(), K("div", qPe, [
|
|
80885
|
-
v(c,
|
|
80921
|
+
v(c, Mt({
|
|
80886
80922
|
modelValue: i.value,
|
|
80887
80923
|
"onUpdate:modelValue": a[0] || (a[0] = (p) => i.value = p)
|
|
80888
80924
|
}, l.$attrs, { min: l.min }), null, 16, ["modelValue", "min"]),
|
|
@@ -81081,7 +81117,7 @@ const HW = /* @__PURE__ */ W({
|
|
|
81081
81117
|
}
|
|
81082
81118
|
return (y, _) => {
|
|
81083
81119
|
const b = A("p-combobox");
|
|
81084
|
-
return T(), D(b,
|
|
81120
|
+
return T(), D(b, Mt({
|
|
81085
81121
|
modelValue: o.value,
|
|
81086
81122
|
"onUpdate:modelValue": _[0] || (_[0] = (x) => o.value = x)
|
|
81087
81123
|
}, { options: p.value, multiple: y.multiple }, {
|
|
@@ -81321,7 +81357,7 @@ const lEe = {
|
|
|
81321
81357
|
label: "None"
|
|
81322
81358
|
}), c;
|
|
81323
81359
|
});
|
|
81324
|
-
return (c, d) => (T(), D(g(qo),
|
|
81360
|
+
return (c, d) => (T(), D(g(qo), Mt({
|
|
81325
81361
|
modelValue: s.value,
|
|
81326
81362
|
"onUpdate:modelValue": d[0] || (d[0] = (p) => s.value = p)
|
|
81327
81363
|
}, { options: a.value, multiple: o.value, emptyMessage: c.emptyMessage }), {
|
|
@@ -82054,57 +82090,57 @@ const lEe = {
|
|
|
82054
82090
|
const n = t, r = e, o = M(() => {
|
|
82055
82091
|
switch (n.action.type) {
|
|
82056
82092
|
case "change-flow-run-state":
|
|
82057
|
-
return
|
|
82093
|
+
return xt(cEe, {
|
|
82058
82094
|
action: n.action,
|
|
82059
82095
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82060
82096
|
});
|
|
82061
82097
|
case "run-deployment":
|
|
82062
|
-
return
|
|
82098
|
+
return xt(TEe, {
|
|
82063
82099
|
action: n.action,
|
|
82064
82100
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82065
82101
|
});
|
|
82066
82102
|
case "pause-deployment":
|
|
82067
|
-
return
|
|
82103
|
+
return xt(hEe, {
|
|
82068
82104
|
action: n.action,
|
|
82069
82105
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82070
82106
|
});
|
|
82071
82107
|
case "resume-deployment":
|
|
82072
|
-
return
|
|
82108
|
+
return xt(gEe, {
|
|
82073
82109
|
action: n.action,
|
|
82074
82110
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82075
82111
|
});
|
|
82076
82112
|
case "pause-work-pool":
|
|
82077
|
-
return
|
|
82113
|
+
return xt(fEe, {
|
|
82078
82114
|
action: n.action,
|
|
82079
82115
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82080
82116
|
});
|
|
82081
82117
|
case "resume-work-pool":
|
|
82082
|
-
return
|
|
82118
|
+
return xt(_Ee, {
|
|
82083
82119
|
action: n.action,
|
|
82084
82120
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82085
82121
|
});
|
|
82086
82122
|
case "pause-work-queue":
|
|
82087
|
-
return
|
|
82123
|
+
return xt(mEe, {
|
|
82088
82124
|
action: n.action,
|
|
82089
82125
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82090
82126
|
});
|
|
82091
82127
|
case "resume-work-queue":
|
|
82092
|
-
return
|
|
82128
|
+
return xt(vEe, {
|
|
82093
82129
|
action: n.action,
|
|
82094
82130
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82095
82131
|
});
|
|
82096
82132
|
case "pause-automation":
|
|
82097
|
-
return
|
|
82133
|
+
return xt(pEe, {
|
|
82098
82134
|
action: n.action,
|
|
82099
82135
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82100
82136
|
});
|
|
82101
82137
|
case "resume-automation":
|
|
82102
|
-
return
|
|
82138
|
+
return xt(yEe, {
|
|
82103
82139
|
action: n.action,
|
|
82104
82140
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82105
82141
|
});
|
|
82106
82142
|
case "send-notification":
|
|
82107
|
-
return
|
|
82143
|
+
return xt(xEe, {
|
|
82108
82144
|
action: n.action,
|
|
82109
82145
|
"onUpdate:action": (i) => r("update:action", i)
|
|
82110
82146
|
});
|
|
@@ -82119,7 +82155,7 @@ const lEe = {
|
|
|
82119
82155
|
throw new Error(`AutomationActionInput.vue missing case for action type: ${s.type}`);
|
|
82120
82156
|
}
|
|
82121
82157
|
});
|
|
82122
|
-
return (s, i) => o.value ? (T(), D(Qr(o.value.component),
|
|
82158
|
+
return (s, i) => o.value ? (T(), D(Qr(o.value.component), Mt({ key: 0 }, o.value.props, { class: "automation-action-input" }), null, 16)) : U("", !0);
|
|
82123
82159
|
}
|
|
82124
82160
|
}), SEe = { class: "automation-action-description-change-flow-run-state" }, REe = /* @__PURE__ */ W({
|
|
82125
82161
|
__name: "AutomationActionDescriptionChangeFlowRunState",
|
|
@@ -82248,11 +82284,11 @@ const lEe = {
|
|
|
82248
82284
|
action: {}
|
|
82249
82285
|
},
|
|
82250
82286
|
setup(t) {
|
|
82251
|
-
const { showModal: e, open: n, close: r } =
|
|
82287
|
+
const { showModal: e, open: n, close: r } = St(), { showModal: o, open: s, close: i } = St();
|
|
82252
82288
|
return (u, l) => {
|
|
82253
82289
|
const a = A("p-button"), c = A("p-code-highlight"), d = A("p-modal");
|
|
82254
82290
|
return T(), K(ke, null, [
|
|
82255
|
-
J("div",
|
|
82291
|
+
J("div", Mt({ class: "automation-action-description-run-deployment" }, u.$attrs), [
|
|
82256
82292
|
u.action.deploymentId ? (T(), K(ke, { key: 0 }, [
|
|
82257
82293
|
J("span", UEe, [
|
|
82258
82294
|
z("Run deployment: "),
|
|
@@ -82349,39 +82385,39 @@ const lEe = {
|
|
|
82349
82385
|
switch (e.action.type) {
|
|
82350
82386
|
case "pause-deployment":
|
|
82351
82387
|
case "resume-deployment":
|
|
82352
|
-
return
|
|
82388
|
+
return xt(FEe, {
|
|
82353
82389
|
action: e.action
|
|
82354
82390
|
});
|
|
82355
82391
|
case "pause-work-queue":
|
|
82356
82392
|
case "resume-work-queue":
|
|
82357
|
-
return
|
|
82393
|
+
return xt(VEe, {
|
|
82358
82394
|
action: e.action
|
|
82359
82395
|
});
|
|
82360
82396
|
case "change-flow-run-state":
|
|
82361
|
-
return
|
|
82397
|
+
return xt(REe, {
|
|
82362
82398
|
action: e.action
|
|
82363
82399
|
});
|
|
82364
82400
|
case "pause-work-pool":
|
|
82365
82401
|
case "resume-work-pool":
|
|
82366
|
-
return
|
|
82402
|
+
return xt(XEe, {
|
|
82367
82403
|
action: e.action
|
|
82368
82404
|
});
|
|
82369
82405
|
case "pause-automation":
|
|
82370
82406
|
case "resume-automation":
|
|
82371
|
-
return
|
|
82407
|
+
return xt(CEe, {
|
|
82372
82408
|
action: e.action
|
|
82373
82409
|
});
|
|
82374
82410
|
case "suspend-flow-run":
|
|
82375
82411
|
case "cancel-flow-run":
|
|
82376
|
-
return
|
|
82412
|
+
return xt(jEe, {
|
|
82377
82413
|
action: e.action
|
|
82378
82414
|
});
|
|
82379
82415
|
case "run-deployment":
|
|
82380
|
-
return
|
|
82416
|
+
return xt(HEe, {
|
|
82381
82417
|
action: e.action
|
|
82382
82418
|
});
|
|
82383
82419
|
case "send-notification":
|
|
82384
|
-
return
|
|
82420
|
+
return xt(PEe, {
|
|
82385
82421
|
action: e.action
|
|
82386
82422
|
});
|
|
82387
82423
|
case "do-nothing":
|
|
@@ -82391,7 +82427,7 @@ const lEe = {
|
|
|
82391
82427
|
throw new Error(`AutomationActionDescription has no case for type: ${r.type}`);
|
|
82392
82428
|
}
|
|
82393
82429
|
});
|
|
82394
|
-
return (r, o) => n.value ? (T(), D(Qr(n.value.component),
|
|
82430
|
+
return (r, o) => n.value ? (T(), D(Qr(n.value.component), Mt({ key: 0 }, n.value.props, { class: "automation-action-description" }), null, 16)) : U("", !0);
|
|
82395
82431
|
}
|
|
82396
82432
|
}), HCe = /* @__PURE__ */ W({
|
|
82397
82433
|
__name: "AutomationTriggerDescription",
|
|
@@ -82974,27 +83010,27 @@ const lEe = {
|
|
|
82974
83010
|
const e = ws(t, "trigger"), { template: n } = t, r = M(() => {
|
|
82975
83011
|
switch (n) {
|
|
82976
83012
|
case "deployment-status":
|
|
82977
|
-
return
|
|
83013
|
+
return xt(eAe, {
|
|
82978
83014
|
trigger: e.value,
|
|
82979
83015
|
"onUpdate:trigger": o
|
|
82980
83016
|
});
|
|
82981
83017
|
case "flow-run-state":
|
|
82982
|
-
return
|
|
83018
|
+
return xt(nAe, {
|
|
82983
83019
|
trigger: e.value,
|
|
82984
83020
|
"onUpdate:trigger": o
|
|
82985
83021
|
});
|
|
82986
83022
|
case "work-pool-status":
|
|
82987
|
-
return
|
|
83023
|
+
return xt(oAe, {
|
|
82988
83024
|
trigger: e.value,
|
|
82989
83025
|
"onUpdate:trigger": o
|
|
82990
83026
|
});
|
|
82991
83027
|
case "work-queue-status":
|
|
82992
|
-
return
|
|
83028
|
+
return xt(aAe, {
|
|
82993
83029
|
trigger: e.value,
|
|
82994
83030
|
"onUpdate:trigger": o
|
|
82995
83031
|
});
|
|
82996
83032
|
case "custom":
|
|
82997
|
-
return
|
|
83033
|
+
return xt(qEe, {
|
|
82998
83034
|
trigger: e.value,
|
|
82999
83035
|
"onUpdate:trigger": o
|
|
83000
83036
|
});
|
|
@@ -83005,7 +83041,7 @@ const lEe = {
|
|
|
83005
83041
|
function o(s) {
|
|
83006
83042
|
e.value = s;
|
|
83007
83043
|
}
|
|
83008
|
-
return (s, i) => (T(), D(Qr(r.value.component),
|
|
83044
|
+
return (s, i) => (T(), D(Qr(r.value.component), Mt(r.value.props, { class: "automation-trigger-event-input" }), null, 16));
|
|
83009
83045
|
}
|
|
83010
83046
|
}), jCe = /* @__PURE__ */ W({
|
|
83011
83047
|
__name: "AutomationsPageEmptyState",
|
|
@@ -83087,7 +83123,7 @@ const lEe = {
|
|
|
83087
83123
|
},
|
|
83088
83124
|
emits: ["delete"],
|
|
83089
83125
|
setup(t, { emit: e }) {
|
|
83090
|
-
const n = t, r = e, o = ze(), s = ve(), i = Ve(), { showModal: u, open: l } =
|
|
83126
|
+
const n = t, r = e, o = ze(), s = ve(), i = Ve(), { showModal: u, open: l } = St();
|
|
83091
83127
|
async function a() {
|
|
83092
83128
|
try {
|
|
83093
83129
|
await s.automations.deleteAutomation(n.automation.id), Be(re.success.automationDelete, "success"), r("delete");
|
|
@@ -83100,7 +83136,7 @@ const lEe = {
|
|
|
83100
83136
|
return (c, d) => {
|
|
83101
83137
|
const p = A("p-overflow-menu-item"), f = A("router-link"), y = A("p-icon"), _ = A("p-icon-button-menu");
|
|
83102
83138
|
return T(), K(ke, null, [
|
|
83103
|
-
v(_,
|
|
83139
|
+
v(_, Mt(c.$attrs, { class: "automation-menu" }), {
|
|
83104
83140
|
default: w(() => [
|
|
83105
83141
|
v(Yr, {
|
|
83106
83142
|
label: "Copy ID",
|
|
@@ -83571,7 +83607,7 @@ export {
|
|
|
83571
83607
|
U_ as f9,
|
|
83572
83608
|
YT as fA,
|
|
83573
83609
|
RCe as fB,
|
|
83574
|
-
|
|
83610
|
+
St as fC,
|
|
83575
83611
|
Em as fD,
|
|
83576
83612
|
iF as fE,
|
|
83577
83613
|
MCe as fF,
|
|
@@ -83891,7 +83927,7 @@ export {
|
|
|
83891
83927
|
BM as k6,
|
|
83892
83928
|
SDe as k7,
|
|
83893
83929
|
L7 as k8,
|
|
83894
|
-
|
|
83930
|
+
xt as k9,
|
|
83895
83931
|
eDe as kA,
|
|
83896
83932
|
Xt as kB,
|
|
83897
83933
|
tDe as kC,
|
|
@@ -84132,4 +84168,4 @@ export {
|
|
|
84132
84168
|
ple as y,
|
|
84133
84169
|
yle as z
|
|
84134
84170
|
};
|
|
84135
|
-
//# sourceMappingURL=index-
|
|
84171
|
+
//# sourceMappingURL=index-CIX59mKM.mjs.map
|