@devtron-labs/devtron-fe-common-lib 1.20.6-alpha-20 → 1.20.6-alpha-31

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.
Files changed (38) hide show
  1. package/dist/{@code-editor-DmaAaQJK.js → @code-editor-Bs5MF1tZ.js} +5454 -5361
  2. package/dist/{@common-rjsf-BFGk62PX.js → @common-rjsf-Bder2RBI.js} +1 -1
  3. package/dist/Common/ClipboardButton/ClipboardButton.d.ts +2 -2
  4. package/dist/Common/ClipboardButton/types.d.ts +12 -2
  5. package/dist/Common/Constants.d.ts +8 -3
  6. package/dist/Common/Types.d.ts +5 -0
  7. package/dist/Pages-Devtron-2.0/ApplicationManagement/Shared/ApplicationManagementIcon/utils.d.ts +0 -5
  8. package/dist/Shared/Components/Header/HeaderWithCreateButton/HeaderWithCreateButon.d.ts +1 -1
  9. package/dist/Shared/Components/Header/HeaderWithCreateButton/types.d.ts +1 -1
  10. package/dist/Shared/Components/Icon/Icon.d.ts +21 -1
  11. package/dist/Shared/Hooks/useUserPreferences/types.d.ts +1 -1
  12. package/dist/Shared/constants.d.ts +0 -15
  13. package/dist/Shared/validations.d.ts +1 -0
  14. package/dist/assets/ic-ai.25e44e0c.svg +3 -0
  15. package/dist/assets/ic-application-group.4b448cca.svg +3 -0
  16. package/dist/assets/ic-application-management.7fb9e3a0.svg +3 -0
  17. package/dist/assets/ic-application-template.212d14f1.svg +3 -0
  18. package/dist/assets/ic-application.4c80bfcf.svg +3 -0
  19. package/dist/assets/ic-backup-and-schedule.51b7d3dd.svg +3 -0
  20. package/dist/assets/ic-backup-color.dc62e9d5.svg +6 -0
  21. package/dist/assets/ic-backup-location.ebaf1148.svg +3 -0
  22. package/dist/assets/ic-backup-schedule-color.a16c34b0.svg +5 -0
  23. package/dist/assets/{ic-cloud.aa7acc8a.svg → ic-chart-line-up.7ab47f4e.svg} +1 -1
  24. package/dist/assets/ic-cloud-upload.55d9c163.svg +3 -0
  25. package/dist/assets/{ic-cost-visibility.4a4625fc.svg → ic-cost-visibility.5595009f.svg} +1 -1
  26. package/dist/assets/ic-global-overview.56ba9dc0.svg +3 -0
  27. package/dist/assets/ic-infrastructure-management.4b052d41.svg +3 -0
  28. package/dist/assets/ic-pause.4e5c6056.svg +4 -0
  29. package/dist/assets/ic-release-hub.25b9707a.svg +3 -0
  30. package/dist/assets/ic-resource-browser.4ff3e571.svg +3 -0
  31. package/dist/assets/ic-resource-watcher.7cce5305.svg +3 -0
  32. package/dist/assets/ic-security-policy.874568da.svg +3 -0
  33. package/dist/assets/ic-security-scan.3ae78d50.svg +3 -0
  34. package/dist/assets/ic-software-release-management.dceedf80.svg +3 -0
  35. package/dist/assets/ic-tenants.4f997b9a.svg +3 -0
  36. package/dist/index.d.ts +0 -6
  37. package/dist/index.js +989 -1009
  38. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  import { j as n, aK as v, aM as J, aL as K } from "./@vendor-DceGoESd.js";
2
2
  import V, { useState as q, useEffect as Y, forwardRef as G, useMemo as E } from "react";
3
3
  import z, { getDefaultRegistry as Q } from "@rjsf/core";
4
- import { T as O, j as F, c as S, b as N, S as X, i as Z, g as ee, a as te, d as R, e as ne } from "./@code-editor-DmaAaQJK.js";
4
+ import { T as O, j as F, c as S, b as N, S as X, i as Z, g as ee, a as te, d as R, e as ne } from "./@code-editor-Bs5MF1tZ.js";
5
5
  import { getUiOptions as B, getTemplate as $, getSubmitButtonOptions as re, ADDITIONAL_PROPERTY_FLAG as L, errorId as se, englishStringTranslator as ae, TranslatableString as oe, titleId as le, canExpand as ie, deepEquals as ce } from "@rjsf/utils";
6
6
  import { ReactComponent as de } from "./assets/ic-add.cfaa779b.svg";
7
7
  import { ReactComponent as ue } from "./assets/ic-warning.ecf7ff97.svg";
@@ -1,4 +1,4 @@
1
- import { default as ClipboardProps } from './types';
1
+ import { ClipboardProps } from './types';
2
2
  /**
3
3
  * @param content - Content to be copied
4
4
  * @param copiedTippyText - Text to be shown in the tippy when the content is copied, default 'Copied!'
@@ -7,4 +7,4 @@ import { default as ClipboardProps } from './types';
7
7
  * @param rootClassName - additional classes to add to button
8
8
  * @param iconSize - size of svg icon to be shown, default 16 (icon-dim-16)
9
9
  */
10
- export declare const ClipboardButton: ({ content, initialTippyText, copiedTippyText, duration, copyToClipboardPromise, rootClassName, iconSize, handleSuccess, }: ClipboardProps) => JSX.Element;
10
+ export declare const ClipboardButton: ({ content, initialTippyText, copiedTippyText, duration, copyToClipboardPromise, rootClassName, iconSize, handleSuccess, variant, size, }: ClipboardProps) => JSX.Element;
@@ -1,4 +1,14 @@
1
- export default interface ClipboardProps {
1
+ import { ComponentSizeType } from '../../Shared/constants';
2
+ export type ClipboardProps = ({
3
+ /**
4
+ * @default 'default'
5
+ */
6
+ variant?: 'default';
7
+ size?: never;
8
+ } | {
9
+ variant: 'button--secondary';
10
+ size: ComponentSizeType;
11
+ }) & {
2
12
  content: string;
3
13
  /**
4
14
  * tippy text before copying
@@ -16,4 +26,4 @@ export default interface ClipboardProps {
16
26
  rootClassName?: string;
17
27
  iconSize?: number;
18
28
  handleSuccess?: () => void;
19
- }
29
+ };
@@ -53,9 +53,9 @@ export declare const URLS: {
53
53
  readonly APPLICATION_MANAGEMENT: "/application-management";
54
54
  readonly APPLICATION_MANAGEMENT_OVERVIEW: "/application-management/overview";
55
55
  readonly APPLICATION_MANAGEMENT_APP: "/application-management/app";
56
+ readonly APPLICATION_MANAGEMENT_APP_LIST: "/application-management/devtron-apps";
57
+ readonly APPLICATION_MANAGEMENT_CREATE_DEVTRON_APP: "/application-management/devtron-apps/create-app";
56
58
  readonly APPLICATION_MANAGEMENT_APPLICATION_GROUP: "/application-management/application-group";
57
- readonly APPLICATION_MANAGEMENT_CHART_STORE: "/application-management/chart-store";
58
- readonly APPLICATION_MANAGEMENT_CHART_STORE_DISCOVER: "/application-management/chart-store/discover";
59
59
  readonly APPLICATION_MANAGEMENT_TEMPLATES_DEVTRON_APP: "/application-management/templates/devtron-app";
60
60
  readonly APPLICATION_MANAGEMENT_TEMPLATES_DEVTRON_APP_CREATE: "/application-management/templates/devtron-app/create";
61
61
  readonly APPLICATION_MANAGEMENT_TEMPLATES_DEVTRON_APP_DETAIL: "/application-management/templates/devtron-app/detail/:appId";
@@ -68,6 +68,10 @@ export declare const URLS: {
68
68
  readonly APPLICATION_MANAGEMENT_CONFIGURATIONS_NOTIFICATIONS: "/application-management/configurations/notifications";
69
69
  readonly INFRASTRUCTURE_MANAGEMENT: "/infrastructure-management";
70
70
  readonly INFRASTRUCTURE_MANAGEMENT_OVERVIEW: "/infrastructure-management/overview";
71
+ readonly INFRASTRUCTURE_MANAGEMENT_APP_LIST: `/infrastructure-management/apps/:appType(${string})`;
72
+ readonly INFRASTRUCTURE_MANAGEMENT_APP: "/infrastructure-management/app";
73
+ readonly INFRASTRUCTURE_MANAGEMENT_CHART_STORE: "/infrastructure-management/chart-store";
74
+ readonly INFRASTRUCTURE_MANAGEMENT_CHART_STORE_DISCOVER: "/infrastructure-management/chart-store/discover";
71
75
  readonly INFRASTRUCTURE_MANAGEMENT_RESOURCE_BROWSER: "/infrastructure-management/resource-browser";
72
76
  readonly INFRASTRUCTURE_MANAGEMENT_RESOURCE_WATCHER: "/infrastructure-management/resource-watcher";
73
77
  readonly SOFTWARE_RELEASE_MANAGEMENT: "/software-release-management";
@@ -86,8 +90,9 @@ export declare const URLS: {
86
90
  readonly DATA_PROTECTION: "/data-protection-management";
87
91
  readonly DATA_PROTECTION_OVERVIEW: "/data-protection-management/overview";
88
92
  readonly DATA_PROTECTION_BACKUP_AND_SCHEDULE: `/data-protection-management/backup-and-schedule/:view(${string})`;
89
- readonly DATA_PROTECTION_BACKUP_AND_SCHEDULE_DETAIL: `/data-protection-management/backup-and-schedule/:view(${string})/:name`;
93
+ readonly DATA_PROTECTION_BACKUP_AND_SCHEDULE_DETAIL: `/data-protection-management/backup-and-schedule/:view(${string})/detail/:id`;
90
94
  readonly DATA_PROTECTION_RESTORES: "/data-protection-management/restores";
95
+ readonly DATA_PROTECTION_RESTORES_DETAIL: "/data-protection-management/restores/:restoreId";
91
96
  readonly DATA_PROTECTION_BACKUP_LOCATIONS: `/data-protection-management/backup-locations/:type(${string})`;
92
97
  readonly BACKUP_LOCATION_DETAILS: "/:locationId";
93
98
  readonly GLOBAL_CONFIG: "/global-configuration";
@@ -988,4 +988,9 @@ export interface ClusterDetailListType extends Omit<ClusterDetailDTO, 'server_ur
988
988
  category: SelectPickerOptionType;
989
989
  status: ClusterStatusType;
990
990
  }
991
+ export declare enum InfrastructureManagementAppListType {
992
+ HELM = "helm",
993
+ ARGO_CD = "argocd",
994
+ FLUX_CD = "fluxcd"
995
+ }
991
996
  export {};
@@ -3,9 +3,4 @@ export declare const getApplicationManagementBreadcrumb: () => {
3
3
  component: JSX.Element;
4
4
  linked: boolean;
5
5
  };
6
- list: {
7
- component: JSX.Element;
8
- };
9
- d: any;
10
- app: any;
11
6
  };
@@ -1,3 +1,3 @@
1
1
  import { HeaderWithCreateButtonProps } from './types';
2
- export declare const HeaderWithCreateButton: ({ isJobView }: HeaderWithCreateButtonProps) => JSX.Element;
2
+ export declare const HeaderWithCreateButton: ({ viewType }: HeaderWithCreateButtonProps) => JSX.Element;
3
3
  export default HeaderWithCreateButton;
@@ -1,6 +1,6 @@
1
1
  import { ActionMenuProps } from '../../ActionMenu';
2
2
  export interface HeaderWithCreateButtonProps {
3
- isJobView?: boolean;
3
+ viewType?: 'jobs' | 'apps' | 'infra-apps';
4
4
  }
5
5
  export declare enum CreateActionMenuItems {
6
6
  CUSTOM_APP = "create-custom-app",
@@ -4,10 +4,15 @@ export declare const iconMap: {
4
4
  'ic-aborted': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
5
5
  'ic-activity': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
6
6
  'ic-add': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
7
+ 'ic-ai': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
7
8
  'ic-alibaba': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
8
9
  'ic-amazon-eks': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
9
10
  'ic-app-group': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
10
11
  'ic-app-template': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
12
+ 'ic-application-group': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
13
+ 'ic-application-management': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
14
+ 'ic-application-template': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
15
+ 'ic-application': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
11
16
  'ic-argocd-app': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
12
17
  'ic-arrow-clockwise': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
13
18
  'ic-arrow-line-down': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -21,6 +26,10 @@ export declare const iconMap: {
21
26
  'ic-aws': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
22
27
  'ic-azure-aks': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
23
28
  'ic-azure': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
29
+ 'ic-backup-and-schedule': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
30
+ 'ic-backup-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
31
+ 'ic-backup-location': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
32
+ 'ic-backup-schedule-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
24
33
  'ic-bg-build': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
25
34
  'ic-bg-cluster': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
26
35
  'ic-bg-cpu': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -47,6 +56,7 @@ export declare const iconMap: {
47
56
  'ic-caret-left': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
48
57
  'ic-caret-right': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
49
58
  'ic-cd': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
59
+ 'ic-chart-line-up': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
50
60
  'ic-chat-circle-dots': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
51
61
  'ic-chat-circle-online': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
52
62
  'ic-check-all': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -63,8 +73,8 @@ export declare const iconMap: {
63
73
  'ic-clock': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
64
74
  'ic-close-large': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
65
75
  'ic-close-small': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
76
+ 'ic-cloud-upload': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
66
77
  'ic-cloud-vms': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
67
- 'ic-cloud': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
68
78
  'ic-cluster-isolated': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
69
79
  'ic-cluster': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
70
80
  'ic-code': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -135,6 +145,7 @@ export declare const iconMap: {
135
145
  'ic-git': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
136
146
  'ic-github': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
137
147
  'ic-gitlab': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
148
+ 'ic-global-overview': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
138
149
  'ic-google-artifact-registry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
139
150
  'ic-google-cloud': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
140
151
  'ic-google-container-registry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -157,6 +168,7 @@ export declare const iconMap: {
157
168
  'ic-info-filled-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
158
169
  'ic-info-filled': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
159
170
  'ic-info-outline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
171
+ 'ic-infrastructure-management': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
160
172
  'ic-input': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
161
173
  'ic-install': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
162
174
  'ic-job-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -208,20 +220,27 @@ export declare const iconMap: {
208
220
  'ic-party': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
209
221
  'ic-path': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
210
222
  'ic-pause-circle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
223
+ 'ic-pause': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
211
224
  'ic-pencil': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
212
225
  'ic-play-outline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
213
226
  'ic-priority-medium-fill': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
214
227
  'ic-quay': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
215
228
  'ic-quote': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
216
229
  'ic-ratings': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
230
+ 'ic-release-hub': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
217
231
  'ic-resize-handle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
232
+ 'ic-resource-browser': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
233
+ 'ic-resource-watcher': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
218
234
  'ic-right-panel-collapse': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
219
235
  'ic-rocket-gear': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
220
236
  'ic-rocket-launch': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
237
+ 'ic-security-policy': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
238
+ 'ic-security-scan': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
221
239
  'ic-selected': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
222
240
  'ic-shapes': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
223
241
  'ic-shield-check': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
224
242
  'ic-sliders-vertical': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
243
+ 'ic-software-release-management': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
225
244
  'ic-sort-ascending': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
226
245
  'ic-sort-descending': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
227
246
  'ic-sortable': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -249,6 +268,7 @@ export declare const iconMap: {
249
268
  'ic-symbol-greater-than': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
250
269
  'ic-tag': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
251
270
  'ic-tata1mg': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
271
+ 'ic-tenants': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
252
272
  'ic-terminal-fill': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
253
273
  'ic-terminal': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
254
274
  'ic-thermometer': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -1,7 +1,7 @@
1
1
  import { USER_PREFERENCES_ATTRIBUTE_KEY } from './constants';
2
2
  import { AppThemeType, ThemeConfigType, ThemePreferenceType } from '../../Providers/ThemeProvider/types';
3
3
  import { ResourceKindType } from '../../types';
4
- export type NavigationItemID = 'application-management-overview' | 'application-management-applications' | 'application-management-application-groups' | 'application-management-chart-store' | 'application-management-bulk-edit' | 'application-management-application-templates' | 'application-management-projects' | 'application-management-configurations' | 'application-management-policies' | 'infrastructure-management-overview' | 'infrastructure-management-resource-browser' | 'infrastructure-management-resource-watcher' | 'infrastructure-management-catalog-framework' | 'software-release-management-overview' | 'software-release-management-release-hub' | 'software-release-management-tenants' | 'cost-visibility-overview' | 'cost-visibility-cost-breakdown' | 'cost-visibility-configurations' | 'security-center-overview' | 'security-center-security-scans' | 'security-center-security-policy' | 'automation-and-enablement-jobs' | 'automation-and-enablement-alerting' | 'automation-and-enablement-incident-response' | 'automation-and-enablement-api-portal' | 'automation-and-enablement-runbook-automation' | 'global-configuration-sso-login-services' | 'global-configuration-host-urls' | 'global-configuration-cluster-and-environments' | 'global-configuration-container-oci-registry' | 'global-configuration-authorization' | 'data-protection-overview' | 'data-protection-backup-and-schedule' | 'data-protection-restores' | 'data-protection-backup-repositories' | 'data-protection-backup-locations' | 'data-protection-history-and-logs' | 'ai-recommendations-overview';
4
+ export type NavigationItemID = 'application-management-overview' | 'application-management-devtron-applications' | 'application-management-application-groups' | 'application-management-bulk-edit' | 'application-management-application-templates' | 'application-management-projects' | 'application-management-configurations' | 'application-management-policies' | 'infrastructure-management-overview' | 'infrastructure-management-applications' | 'infrastructure-management-chart-store' | 'infrastructure-management-resource-browser' | 'infrastructure-management-resource-watcher' | 'infrastructure-management-catalog-framework' | 'software-release-management-overview' | 'software-release-management-release-hub' | 'software-release-management-tenants' | 'cost-visibility-overview' | 'cost-visibility-cost-breakdown' | 'cost-visibility-configurations' | 'security-center-overview' | 'security-center-security-scans' | 'security-center-security-policy' | 'automation-and-enablement-jobs' | 'automation-and-enablement-alerting' | 'automation-and-enablement-incident-response' | 'automation-and-enablement-api-portal' | 'automation-and-enablement-runbook-automation' | 'global-configuration-sso-login-services' | 'global-configuration-host-urls' | 'global-configuration-cluster-and-environments' | 'global-configuration-container-oci-registry' | 'global-configuration-authorization' | 'data-protection-overview' | 'data-protection-backup-and-schedule' | 'data-protection-restores' | 'data-protection-backup-repositories' | 'data-protection-backup-locations' | 'data-protection-history-and-logs' | 'ai-recommendations-overview';
5
5
  export type NavigationSubMenuItemID = 'application-management-configurations-gitops' | 'application-management-configurations-git-accounts' | 'application-management-configurations-external-links' | 'application-management-configurations-chart-repository' | 'application-management-configurations-deployment-charts' | 'application-management-configurations-notifications' | 'application-management-configurations-catalog-frameworks' | 'application-management-configurations-scoped-variables' | 'application-management-configurations-build-infra' | 'application-management-policies-deployment-window' | 'application-management-policies-approval-policy' | 'application-management-policies-plugin-policy' | 'application-management-policies-pull-image-digest' | 'application-management-policies-tag-policy' | 'application-management-policies-filter-conditions' | 'application-management-policies-image-promotion' | 'application-management-policies-lock-deployment-configuration' | 'cost-visibility-cost-breakdown-clusters' | 'cost-visibility-cost-breakdown-environments' | 'cost-visibility-cost-breakdown-projects' | 'cost-visibility-cost-breakdown-applications' | 'global-configuration-authorization-user-permissions' | 'global-configuration-authorization-permission-groups' | 'global-configuration-authorization-api-tokens';
6
6
  export interface GetUserPreferencesQueryParamsType {
7
7
  key: typeof USER_PREFERENCES_ATTRIBUTE_KEY;
@@ -322,27 +322,12 @@ export declare const APP_STATUS_HEADERS: string[];
322
322
  export declare const MATERIAL_EXCLUDE_TIPPY_TEXT = "Not available for build as this commit contains changes in excluded files or folders";
323
323
  export declare const AppListConstants: {
324
324
  SAMPLE_NODE_REPO_URL: string;
325
- CREATE_DEVTRON_APP_URL: string;
326
325
  AppTabs: {
327
326
  DEVTRON_APPS: string;
328
327
  HELM_APPS: string;
329
328
  ARGO_APPS: string;
330
329
  FLUX_APPS: string;
331
330
  };
332
- AppType: {
333
- DEVTRON_APPS: string;
334
- HELM_APPS: string;
335
- ARGO_APPS: string;
336
- FLUX_APPS: string;
337
- };
338
- FilterType: {
339
- PROJECT: string;
340
- CLUTSER: string;
341
- NAMESPACE: string;
342
- ENVIRONMENT: string;
343
- APP_STATUS: string;
344
- TEMPLATE_TYPE: string;
345
- };
346
331
  };
347
332
  export declare enum K8sResourcePayloadAppType {
348
333
  DEVTRON_APP = 0,
@@ -61,3 +61,4 @@ export declare const validateCMVolumeMountPath: (value: string) => {
61
61
  export declare const validateYAML: (yamlString: string, isRequired?: boolean) => ValidationResponseType;
62
62
  export declare const validateEmail: (email: string) => ValidationResponseType;
63
63
  export declare const getIsRegexValid: (regexString: string) => ValidationResponseType;
64
+ export declare const validateCronExpression: (cron: string) => ValidationResponseType;
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-width="1.5" d="M8.108 18.162a3.83 3.83 0 0 0-2.27-2.27l-3.137-1.156a.69.69 0 0 1 0-1.293l3.137-1.157a3.83 3.83 0 0 0 2.27-2.27L9.264 6.88a.69.69 0 0 1 1.293 0l1.157 3.138a3.83 3.83 0 0 0 2.27 2.27l3.137 1.155a.69.69 0 0 1 0 1.294l-3.138 1.156a3.83 3.83 0 0 0-2.27 2.27L10.558 21.3a.69.69 0 0 1-1.294 0l-1.156-3.137Zm9.34-10.579a1.741 1.741 0 0 0-1.031-1.031l-1.426-.526a.313.313 0 0 1 0-.588l1.426-.525a1.741 1.741 0 0 0 1.031-1.032l.526-1.426a.313.313 0 0 1 .588 0l.525 1.426a1.74 1.74 0 0 0 1.032 1.032l1.426.525a.313.313 0 0 1 0 .588l-1.426.526a1.74 1.74 0 0 0-1.032 1.031l-.525 1.426a.313.313 0 0 1-.588 0l-.526-1.426Z" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M2.25 10.259h19.5m-18.6-3.83h17.7c.497 0 .9.428.9.957v13.406c0 .53-.404.958-.9.958H3.15c-.496 0-.9-.429-.9-.958V7.386c0-.529.404-.958.9-.958ZM18.839 2.25c.426 0 .771.468.771 1.045v3.134H4.395l.001-3.134c0-.577.345-1.045.771-1.045h13.671Z" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M10.428 21.75v-5.571H3.086c-.461 0-.835-.39-.835-.871V3.121c0-.481.374-.871.836-.871h15.042c.461 0 .835.39.835.87v4.701M10.429 21.75h3.112m-3.112 0H7.315M2.25 5.732h16.714m-.487 10.383v-.374m0 .374a.358.358 0 0 1-.273-.127m.273.127a.354.354 0 0 0 .15-.033m.213-.341a.38.38 0 0 0-.087-.244m.087.244h-.363m.363 0a.379.379 0 0 1-.09.247m-.273-.621c.11 0 .21.05.276.13m-.276-.13v.374m0-.374a.34.34 0 0 0-.143.03m-.221.344h.364m-.364 0a.38.38 0 0 1 .103-.26m-.103.26c0 .043.007.084.02.123m.62-.367-.276.244m0 0-.273.247m.273-.247-.261-.26m.26.26.274.247m-.273-.247-.344.123m.344-.123-.143-.344m.143.344.15.34m-.423-.093a.375.375 0 0 1-.07-.124m.082-.384a.363.363 0 0 1 .118-.083m.416.59a.366.366 0 0 1-.123.095m3.123 1.386v-3.454a.286.286 0 0 0-.139-.245l-3-1.733a.267.267 0 0 0-.268 0l-3 1.733a.286.286 0 0 0-.139.244v3.455a.287.287 0 0 0 .138.244l3.001 1.734a.268.268 0 0 0 .267 0l3.001-1.734a.277.277 0 0 0 .139-.244Z" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M2.25 7.5h19.5m-6.45 8.7h1.503m.747-4.5H15.3M3.15 3.75h17.7c.497 0 .9.42.9.938v14.623c0 .518-.404.938-.9.938H3.15c-.496 0-.9-.42-.9-.938V4.688c0-.517.404-.937.9-.937Zm8.1 7.95h-4.5v4.5h4.5v-4.5Z" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M2.25 6h19.5M8.25 21.75H12m0 0v-4.5m0 4.5h3.75M12 17.25H3.15c-.496 0-.9-.42-.9-.938V3.188c0-.517.404-.937.9-.937h17.7c.497 0 .9.42.9.938v13.122c0 .518-.404.938-.9.938H12Z" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M17.852 6.706c0-2.047-3.493-3.706-7.8-3.706-4.308 0-7.8 1.66-7.8 3.706m15.6 0v3.21m0-3.21c0 1.275-1.355 2.4-3.419 3.067M2.251 6.706c0 2.047 3.493 3.706 7.8 3.706 1.625 0 3.133-.236 4.382-.64M2.251 6.707v5.167m0 0c0 2.047 3.493 3.706 7.8 3.706m-7.8-3.706v5.167c0 2.047 3.493 3.707 7.8 3.707 1.162 0 2.265-.121 3.255-.338m2.596-7.44.02 2.346h2.326m-.396-5.399a5.976 5.976 0 0 0-1.95-.324c-.507 0-1 .062-1.469.18m3.419.144a5.878 5.878 0 0 1 .89.392c1.795.974 3.01 2.843 3.01 4.988 0 3.15-2.62 5.704-5.85 5.704a5.948 5.948 0 0 1-2.596-.59m1.127-10.637c-2.099.529-3.74 2.165-4.231 4.232a5.63 5.63 0 0 0 1.812 5.554 5.87 5.87 0 0 0 1.292.85" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none" vector-effect="non-scaling-stroke">
2
+ <path d="M29.1648 27.3602C29.1648 29.4009 23.0092 31.0553 15.4158 31.0553C7.8224 31.0553 1.66675 29.4009 1.66675 27.3602C1.66675 25.3195 1.66675 16.361 1.66675 16.361H29.1648C29.1648 16.361 29.1648 26.4272 29.1648 27.3602Z" fill="#72ACE6" vector-effect="non-scaling-stroke" data-style-override="false"/>
3
+ <path d="M29.1648 16.3609C29.1648 18.4017 23.0092 20.056 15.4158 20.056C7.8224 20.056 1.66675 18.4017 1.66675 16.3609C1.66675 14.3202 1.66675 5.36169 1.66675 5.36169H29.1648C29.1648 5.36169 29.1648 15.4279 29.1648 16.3609Z" fill="#3385D6" vector-effect="non-scaling-stroke" data-style-override="false"/>
4
+ <ellipse cx="15.4158" cy="5.36168" rx="13.749" ry="3.69506" fill="#0066CC" vector-effect="non-scaling-stroke" data-style-override="false"/>
5
+ <path d="M29.124 14.4113C31.5572 14.4161 33.9911 14.458 36.4232 14.4082C37.4642 14.3869 38.3177 15.2669 38.3182 16.3284C38.3195 19.2629 38.3186 22.1974 38.3186 25.132C38.3186 28.8108 38.2923 32.49 38.3331 36.1685C38.3471 37.4287 37.4313 38.3331 36.1648 38.329C27.7335 38.3013 19.3021 38.3077 10.8707 38.3243C9.93882 38.3262 8.86327 37.5323 8.90913 36.3711C8.98533 34.4417 8.92891 32.507 8.92801 30.4948C8.92849 27.567 8.92706 24.7189 8.93119 21.8708C8.93288 20.7034 9.70155 19.9346 10.8638 19.9257C11.7079 19.9192 12.552 19.9158 13.4361 19.9166C14.8924 19.9226 16.3087 19.9149 17.7247 19.9305C18.0018 19.9336 18.1593 19.8475 18.3105 19.6164C19.2188 18.2292 20.1517 16.8582 21.0608 15.4716C21.5315 14.7537 22.1542 14.4062 23.0311 14.4165C25.0618 14.4404 27.093 14.4161 29.124 14.4113Z" fill="#FFC266" vector-effect="non-scaling-stroke" data-style-override="false"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M7.355 5.998a3.972 3.972 0 0 0-1.72-.068 4.024 4.024 0 0 0-1.595.667 4.17 4.17 0 0 0-1.187 1.285 4.344 4.344 0 0 0-.422 3.443c.17.572.457 1.1.84 1.55a4.103 4.103 0 0 0 1.98 1.277c.126.036.255.066.384.09M16.441 3.587a5.769 5.769 0 0 0-2.532-1.222 5.682 5.682 0 0 0-3.378.343 5.888 5.888 0 0 0-2.623 2.22 6.134 6.134 0 0 0-.947 2.663m14.79 2.938c0 1.636-2.687 2.962-6 2.962-3.314 0-6-1.326-6-2.962m12 0c0-1.636-2.687-2.962-6-2.962-3.314 0-6 1.326-6 2.962m12 0v4.13m-12-4.13v4.13m0 0c0 1.635 2.686 2.96 6 2.96 3.313 0 6-1.325 6-2.96m-12 0v4.128c0 1.636 2.686 2.962 6 2.962 3.313 0 6-1.326 6-2.962V14.66" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="12" cy="12" r="7" fill="var(--B200)" stroke="var(--B500)" stroke-width="1.5"/>
3
+ <path d="M2.83209 8C2.2969 9.22492 2 10.5778 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C9.20261 2 6.67349 3.14864 4.85857 5V2.5" stroke="var(--B500)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M9.17304 14.8245L12.0015 11.9961V8" stroke="var(--B500)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -1,3 +1,3 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
- <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M7.5 12a7.5 7.5 0 1 1 7.5 7.5H6.75A5.249 5.249 0 1 1 8.055 9.163" vector-effect="non-scaling-stroke"/>
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M21 19.5H3v-15M19.5 6 12 13.5l-3-3-6 6M19.5 6v3.75m0-3.75h-3.75" vector-effect="non-scaling-stroke"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.99995 12.999H4.49995C4.0036 12.9985 3.51303 12.8925 3.0608 12.6879C2.60857 12.4833 2.20502 12.1849 1.87694 11.8124C1.54886 11.44 1.30376 11.002 1.1579 10.5276C1.01203 10.0531 0.968751 9.55309 1.03092 9.06065C1.09309 8.56821 1.25928 8.09462 1.51848 7.67132C1.77768 7.24802 2.12394 6.88469 2.53429 6.60545C2.94465 6.3262 3.4097 6.13744 3.89859 6.05167C4.38747 5.9659 4.88901 5.9851 5.36991 6.10799M4.99995 7.99902C5.00003 7.20679 5.18836 6.42592 5.54942 5.72076C5.91048 5.01559 6.43393 4.40631 7.07665 3.94312C7.71937 3.47994 8.46295 3.17611 9.24612 3.05667C10.0293 2.93722 10.8296 3.00559 11.5812 3.25613C12.3328 3.50668 13.0141 3.93222 13.5689 4.49771C14.1237 5.06319 14.5363 5.75242 14.7725 6.50861C15.0087 7.2648 15.0619 8.0663 14.9276 8.84706C14.7933 9.62783 14.4754 10.3655 14.0001 10.9993M7.37864 10.1204L9.49995 7.999M9.49995 7.999L11.6213 10.1204M9.49995 7.999V12.999" stroke="#0066CC" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
- <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m21.75 15.14-4.527 4.89-2.053-2.053-3.743 3.773m10.323-6.61v2.565m0-2.566h-2.523m2.181-5.609v-.76 3.039m0-2.279V6.546c0-.472-.429-.855-.958-.855h-2.88m3.838 3.839h-.839a3 3 0 0 1-3-3v-.839m0 0H3.208c-.529 0-.958.383-.958.855V18.8c0 .472.429.855.958.855H8.78M2.25 9.53h.183a3.656 3.656 0 0 0 3.656-3.656V5.69M2.25 15.816h.183a3.656 3.656 0 0 1 3.656 3.657v.182m7.631-9.154-.098-.082a1.379 1.379 0 0 0-.882-.318h-1.6c-.665 0-1.205.538-1.205 1.201s.54 1.201 1.205 1.201h1.72c.665 0 1.205.538 1.205 1.2 0 .664-.54 1.202-1.205 1.202h-1.953c-.358 0-.703-.14-.96-.389l-.012-.011m2.053-4.404v-1.04m0 6.883v-1.04M4.774 2.25H18.94" vector-effect="non-scaling-stroke"/>
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m21.75 15.14-4.527 4.89-2.053-2.053-3.743 3.773m10.323-6.61v2.565m0-2.566h-2.523m2.181-5.609v-.76 3.039m0-2.279V6.546c0-.472-.429-.855-.958-.855h-2.88m3.838 3.839h-.839a3 3 0 0 1-3-3v-.839m0 0H3.208c-.529 0-.958.383-.958.855V18.8c0 .472.429.855.958.855H8.78M2.25 9.53h.183a3.656 3.656 0 0 0 3.656-3.656V5.69M2.25 15.816h.183a3.656 3.656 0 0 1 3.656 3.657v.182M4.774 2.25H18.94M9.42 12.56a2.579 2.579 0 1 0 5.158 0 2.579 2.579 0 0 0-5.158 0Z" vector-effect="non-scaling-stroke"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M2.25 12.278C2.25 6.739 6.616 2.25 12 2.25M2.25 12.278c0 2.182.679 4.203 1.83 5.849a9.902 9.902 0 0 0 3.045 2.837l.117.063m-4.992-8.75h19.5C21.75 6.74 17.386 2.25 12 2.25m0 0c-2.07 0-3.75 4.49-3.75 10.028 0 1.97.323 3.706.815 5.198M12.001 2.25c2.07 0 3.75 4.49 3.75 10.028 0 .524.029 1.27 0 1.774-.012.2-.032.439-.066.706m6.065 1.37v2.284m0-2.284h-2.452m2.453 0-4.965 4.968-2.246-2.468-3.46 3.122" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M7.988 12.375c0-1.483.42-2.933 1.21-4.167a7.256 7.256 0 0 1 3.22-2.762 6.892 6.892 0 0 1 4.148-.427c.91.19 1.771.56 2.539 1.086M8.519 9.538a4.815 4.815 0 0 0-2.113-.084 4.907 4.907 0 0 0-1.958.83 5.16 5.16 0 0 0-1.458 1.6 5.406 5.406 0 0 0-.7 2.083 5.475 5.475 0 0 0 .182 2.2c.21.712.561 1.37 1.032 1.928a5.045 5.045 0 0 0 1.7 1.313 4.843 4.843 0 0 0 2.066.467h1.648m4.7-5h7.34m-7.34 0c-.437 0-.792-.373-.792-.833v-3.334c0-.46.355-.833.792-.833h7.34c.437 0 .792.373.792.833v3.334c0 .46-.355.833-.792.833m-7.34 0c-.437 0-.792.373-.792.833v3.334c0 .46.355.833.792.833h7.34c.437 0 .792-.373.792-.833v-3.334c0-.46-.355-.833-.792-.833m-4.375-2.468h-.345m.345 5h-.345" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
+ <path d="M12.5 2.5H10C9.72386 2.5 9.5 2.72386 9.5 3V13C9.5 13.2761 9.72386 13.5 10 13.5H12.5C12.7761 13.5 13 13.2761 13 13V3C13 2.72386 12.7761 2.5 12.5 2.5Z" stroke="#000A14" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" vector-effect="non-scaling-stroke"/>
3
+ <path d="M6 2.5H3.5C3.22386 2.5 3 2.72386 3 3V13C3 13.2761 3.22386 13.5 3.5 13.5H6C6.27614 13.5 6.5 13.2761 6.5 13V3C6.5 2.72386 6.27614 2.5 6 2.5Z" stroke="#000A14" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" vector-effect="non-scaling-stroke"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12 12.004v9.75m0-9.75H7.124m4.874 0h4.876m-4.876 9.75H2.25v-9.75h4.876M12 21.754h9.75v-9.75h-4.874m-9.75 0v3.246m0-3.246h9.75m-9.75 0v-9.75H12m4.876 9.75v3.246m0-3.246v-9.75H12m0 0V5.5" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M19.764 5.7V4.453c0-.388-.294-.703-.657-.703h-16.2c-.363 0-.657.315-.657.703v15.094c0 .388.294.703.657.703h3.149M2.25 8.4h3.806m12.505 9.71 3.19 3.19m-1.576-7.088a5.513 5.513 0 1 1-11.025 0 5.513 5.513 0 0 1 11.025 0Z" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M19.765 5.7V4.453c0-.388-.294-.703-.657-.703h-16.2c-.363 0-.657.315-.657.703v15.094c0 .388.294.703.657.703h3.149M2.25 8.4h3.806m8.402.6c-5.354 0-7.291 5.25-7.291 5.25s1.937 5.25 7.291 5.25c5.355 0 7.292-5.25 7.292-5.25S19.813 9 14.459 9Zm1.568 5.325c0 .953-.739 1.725-1.591 1.725-.853 0-1.68-.772-1.68-1.725 0-.953.827-1.725 1.68-1.725.852 0 1.59.772 1.59 1.725Z" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.47" d="M20.028 6.058c0-.453-.297-.856-.737-1L11.14 2.4 2.987 5.06c-.44.143-.737.546-.737 1v3.983c0 8.301 7.203 11.051 8.64 11.518a.783.783 0 0 0 .497 0M8.123 10.042h2.34m-2.34 3.306h.47m6.701 4.754H12.81a.423.423 0 0 1-.293-.117.39.39 0 0 1-.121-.281v-2.221a.384.384 0 0 1 .12-.281l6.214-5.965a.423.423 0 0 1 .586 0l2.314 2.221a.39.39 0 0 1 0 .562l-6.335 6.082Z" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.535" d="M19.666 13.451c-1.458 5.396-6.24 7.337-7.33 7.715a.654.654 0 0 1-.444 0c-1.09-.378-5.872-2.32-7.33-7.715M20.09 9.938v-3.64c0-.435-.267-.82-.661-.958l-7.314-2.55-7.313 2.55a1.006 1.006 0 0 0-.661.959v3.64M2.25 13.45h19.499" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M19.92 7.13a.714.714 0 0 1 .102.368V9.75m-.101-2.62a.736.736 0 0 0-.276-.267l-4.073-2.26M19.92 7.13 11.224 12m-.088 9.75a.749.749 0 0 1-.363-.094l-8.146-4.518a.737.737 0 0 1-.377-.636V7.498a.722.722 0 0 1 .377-.636l8.146-4.518a.75.75 0 0 1 .726 0l4.073 2.259M11.136 21.75a.748.748 0 0 0 .363-.094l2.037-1.13m-2.4 1.224.044-4.875.044-4.875m0 0L6.788 9.564M2.353 7.128l4.435 2.436m8.784-4.961-8.784 4.96m0 0-.062 3.405m11.815 3.517v-.361m0 .361a.354.354 0 0 1-.268-.123m.268.123a.35.35 0 0 0 .147-.032m.21-.33a.364.364 0 0 0-.086-.235m.086.236h-.357m.357 0a.363.363 0 0 1-.09.238m-.267-.6c.108 0 .205.049.27.126m-.27-.126v.362m0-.362c-.05 0-.097.01-.14.029m-.216.333h.356m-.356 0c0-.098.038-.187.1-.252m-.1.252c0 .041.007.081.02.119m.607-.355-.27.236m0 0-.269.238m.268-.238-.256-.252m.256.252.268.238m-.268-.238-.337.119m.337-.12-.14-.332m.14.333.147.329m-.415-.09a.365.365 0 0 1-.069-.12m.081-.371a.357.357 0 0 1 .116-.081m.408.571a.357.357 0 0 1-.12.091m3.061 1.34v-3.34a.273.273 0 0 0-.136-.235l-2.942-1.676a.265.265 0 0 0-.262 0l-2.941 1.676a.268.268 0 0 0-.137.236v3.34a.273.273 0 0 0 .137.235l2.941 1.676a.265.265 0 0 0 .262 0l2.942-1.676a.27.27 0 0 0 .136-.236Z" vector-effect="non-scaling-stroke"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M2.25 21h19.5m-1.234 0V3.783a.808.808 0 0 0-.216-.554.717.717 0 0 0-.52-.229h-8.85a.716.716 0 0 0-.521.23.808.808 0 0 0-.216.553m4.637 3.13h2.95m-1.475 6.26h2.95m-5.474 3.914h2.311m-7.373-2.944c1.864 0 3.375-1.535 3.375-3.429 0-1.893-1.511-3.428-3.375-3.428S5.344 8.82 5.344 10.714s1.51 3.429 3.375 3.429Zm0 0c2.796 0 5.062 2.302 5.062 5.143V21M8.72 14.143c-2.796 0-5.063 2.302-5.063 5.143V21" vector-effect="non-scaling-stroke"/>
3
+ </svg>
package/dist/index.d.ts CHANGED
@@ -154,12 +154,6 @@ export interface customEnv {
154
154
  * @default true
155
155
  */
156
156
  FEATURE_INTERNET_CONNECTIVITY_ENABLE?: boolean;
157
- /**
158
- * If true, the grouped app list filters will be shown.
159
- *
160
- * @default false
161
- */
162
- FEATURE_GROUPED_APP_LIST_FILTERS_ENABLE?: boolean;
163
157
  /**
164
158
  * Show rollout progress if true, else canary step count in status
165
159
  * @default true