meyi-insight-ui-dev 1.0.2 → 1.0.4
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/components/common/PageSkeleton.d.ts +10 -0
- package/dist/components/data-table/toolbar.d.ts +3 -1
- package/dist/components/ui/badge.d.ts +1 -1
- package/dist/components/ui/button.d.ts +2 -2
- package/dist/components/ui/multi-select.d.ts +15 -0
- package/dist/components/ui/single-select.d.ts +15 -0
- package/dist/features/alerts/components/AlertFilters.d.ts +15 -0
- package/dist/features/alerts/components/ProcessingLifecycle.d.ts +5 -0
- package/dist/features/alerts/components/alerts-columns.d.ts +1 -0
- package/dist/features/alerts/components/alerts-table.d.ts +6 -9
- package/dist/features/alerts/detail.d.ts +7 -0
- package/dist/features/alerts/index.d.ts +2 -1
- package/dist/features/incidents/analytics.d.ts +1 -0
- package/dist/features/incidents/components/IncidentFilters.d.ts +4 -1
- package/dist/features/incidents/components/IncidentForm.d.ts +4 -0
- package/dist/features/incidents/components/InsightStatusBadge.d.ts +3 -0
- package/dist/features/incidents/components/incidents-columns.d.ts +0 -1
- package/dist/features/incidents/components/incidents-table.d.ts +3 -4
- package/dist/features/incidents/dashboard.d.ts +5 -0
- package/dist/features/pipeline/PipelineRuleEditor.d.ts +9 -0
- package/dist/features/pipeline/dedup.d.ts +4 -0
- package/dist/features/pipeline/editor-dedup.d.ts +4 -0
- package/dist/features/pipeline/editor-grouping.d.ts +4 -0
- package/dist/features/pipeline/editor-normalization.d.ts +4 -0
- package/dist/features/pipeline/grouping.d.ts +4 -0
- package/dist/features/pipeline/normalization.d.ts +1 -0
- package/dist/features/projects/components/ProjectFilters.d.ts +9 -0
- package/dist/features/projects/components/projects-table.d.ts +4 -3
- package/dist/features/settings/components/NotificationProvidersManager.d.ts +1 -0
- package/dist/features/settings/index.d.ts +5 -1
- package/dist/features/sop/components/SopFilters.d.ts +13 -0
- package/dist/features/sop/components/sop-table.d.ts +4 -7
- package/dist/features/sources/add-wizard/AddSourceConfigureStep.d.ts +8 -0
- package/dist/features/sources/add-wizard/AddSourceDeployStep.d.ts +11 -0
- package/dist/features/sources/add-wizard/AddSourceOverviewStep.d.ts +4 -0
- package/dist/features/sources/add-wizard/AddSourceSourceStep.d.ts +5 -0
- package/dist/features/{connectors/prometheus-wizard/PrometheusConnectorWizard.d.ts → sources/add-wizard/AddSourceWizard.d.ts} +1 -1
- package/dist/features/sources/add-wizard/add-source-options.d.ts +10 -0
- package/dist/features/sources/cloudwatch-wizard/CloudWatchSourceWizard.d.ts +8 -0
- package/dist/features/sources/components/InsightSourceDeleteDialog.d.ts +9 -0
- package/dist/features/sources/components/InsightSourceForm.d.ts +18 -0
- package/dist/features/{connectors/components/ConnectorAwsOnboardingDialog.d.ts → sources/components/SourceAwsOnboardingDialog.d.ts} +1 -1
- package/dist/features/{connectors/components/ConnectorDatadogSetupDialog.d.ts → sources/components/SourceDatadogSetupDialog.d.ts} +2 -2
- package/dist/features/sources/components/SourceDetailsDialog.d.ts +8 -0
- package/dist/features/sources/components/SourceFilters.d.ts +21 -0
- package/dist/features/{connectors/components/ConnectorGrafanaSetupDialog.d.ts → sources/components/SourceGrafanaSetupDialog.d.ts} +2 -2
- package/dist/features/sources/components/SourceGroupedList.d.ts +18 -0
- package/dist/features/{connectors/components/ConnectorPrometheusSetupDialog.d.ts → sources/components/SourcePrometheusSetupDialog.d.ts} +2 -2
- package/dist/features/sources/components/SourceTokenPolicyDialog.d.ts +11 -0
- package/dist/features/sources/components/WebhookSuccessModal.d.ts +6 -0
- package/dist/features/sources/detail/SourceAlarmsTab.d.ts +4 -0
- package/dist/features/sources/detail/SourceConfigurationTab.d.ts +10 -0
- package/dist/features/sources/detail/SourceDetailHeader.d.ts +11 -0
- package/dist/features/sources/detail/SourceDetailPage.d.ts +5 -0
- package/dist/features/sources/detail/SourceDetailTabs.d.ts +6 -0
- package/dist/features/sources/detail/SourceLogsTab.d.ts +6 -0
- package/dist/features/sources/detail/SourceOverviewTab.d.ts +4 -0
- package/dist/features/sources/detail/SourceSetupTab.d.ts +10 -0
- package/dist/features/sources/detail/SourceTestTab.d.ts +6 -0
- package/dist/features/sources/detail/source-detail-utils.d.ts +18 -0
- package/dist/features/sources/grafana-wizard/GrafanaSourceWizard.d.ts +7 -0
- package/dist/features/sources/index.d.ts +1 -0
- package/dist/features/sources/prometheus-wizard/PrometheusSourceWizard.d.ts +5 -0
- package/dist/features/sources/source-selection/SourceSourcePickerDialog.d.ts +6 -0
- package/dist/features/workflows/components/WorkflowFilters.d.ts +11 -0
- package/dist/features/workflows/components/WorkflowFormHelper.d.ts +6 -0
- package/dist/features/workflows/components/workflows-columns.d.ts +8 -0
- package/dist/features/workflows/components/workflows-table.d.ts +17 -0
- package/dist/features/workflows/editor.d.ts +4 -0
- package/dist/features/workflows/index.d.ts +4 -1
- package/dist/hooks/useInsightPolling.d.ts +1 -0
- package/dist/index.d.ts +17 -3
- package/dist/index.js +246 -112
- package/dist/index.mjs +71807 -73140
- package/dist/router.d.ts +1 -1
- package/dist/services/insight.d.ts +285 -21
- package/dist/services/workflow.d.ts +2 -1
- package/dist/style.css +1 -1
- package/dist/types.d.ts +128 -51
- package/package.json +4 -1
- package/dist/features/alerts/components/InsightAlertCard.d.ts +0 -13
- package/dist/features/connectors/cloudwatch-wizard/CloudWatchConnectorWizard.d.ts +0 -8
- package/dist/features/connectors/components/ConnectorDetailsDialog.d.ts +0 -8
- package/dist/features/connectors/components/ConnectorFilters.d.ts +0 -18
- package/dist/features/connectors/components/ConnectorTokenPolicyDialog.d.ts +0 -11
- package/dist/features/connectors/components/InsightConnectorCard.d.ts +0 -17
- package/dist/features/connectors/components/InsightConnectorDeleteDialog.d.ts +0 -9
- package/dist/features/connectors/components/InsightConnectorForm.d.ts +0 -18
- package/dist/features/connectors/components/WebhookSuccessModal.d.ts +0 -6
- package/dist/features/connectors/grafana-wizard/GrafanaConnectorWizard.d.ts +0 -7
- package/dist/features/connectors/index.d.ts +0 -1
- package/dist/features/connectors/source-selection/ConnectorSourcePickerDialog.d.ts +0 -6
- package/dist/features/incidents/components/InsightIncidentCard.d.ts +0 -8
- package/dist/features/workflows/components/WorkflowDiagramModal.d.ts +0 -6
- package/dist/features/workflows/components/WorkflowFormDialog.d.ts +0 -7
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.