Skip to content

Commit 3db85b4

Browse files
committed
Merge branch 'feat/resource-browser-visualizations' into feat/silver-surfer
2 parents 7b3aec7 + f9643b8 commit 3db85b4

File tree

5 files changed

+21
-3
lines changed

5 files changed

+21
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtron-labs/devtron-fe-common-lib",
3-
"version": "0.6.0-beta-1",
3+
"version": "0.6.0-patch-1-beta-4",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Pages/ResourceBrowser/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@
1616

1717
export * from './ResourceBrowser.Types'
1818
export * from './Helper'
19+
export * from './types'

src/Pages/ResourceBrowser/types.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export enum ClusterFiltersType {
2+
ALL_CLUSTERS = 'all',
3+
HEALTHY = 'healthy',
4+
UNHEALTHY = 'unhealthy',
5+
}
6+
7+
export enum ClusterStatusType {
8+
HEALTHY = 'healthy',
9+
UNHEALTHY = 'unhealthy',
10+
CONNECTION_FAILED = 'connection failed',
11+
}

src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ export interface customEnv {
7676
SYSTEM_CONTROLLER_LISTING_TIMEOUT?: number
7777
FEATURE_STEP_WISE_LOGS_ENABLE?: boolean
7878
FEATURE_IMAGE_PROMOTION_ENABLE?: boolean
79+
/**
80+
* If true, the direct permissions are hidden for non-super admins in user permissions
81+
*
82+
* @default false
83+
*/
84+
FEATURE_HIDE_USER_DIRECT_PERMISSIONS_FOR_NON_SUPER_ADMINS?: boolean
7985
FEATURE_PROMO_EMBEDDED_BUTTON_TEXT?: string
8086
FEATURE_PROMO_EMBEDDED_MODAL_TITLE?: string
8187
FEATURE_PROMO_EMBEDDED_IFRAME_URL?: string

0 commit comments

Comments
 (0)