Skip to content

Commit 0622fbf

Browse files
committed
Merge branch 'develop' into feat/api-token-removed
2 parents 34554cf + a0d4f45 commit 0622fbf

33 files changed

+963
-829
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,6 @@ FEATURE_ASK_DEVTRON_EXPERT=false
7373
FEATURE_MANAGE_TRAFFIC_ENABLE=false
7474
FEATURE_REDFISH_NODE_ENABLE=false
7575
FEATURE_INFRA_PROVISION_INFO_BLOCK_HIDE=false
76+
FEATURE_GROUPED_APP_LIST_FILTERS_ENABLE=false
7677
FEATURE_FLUX_DEPLOYMENTS_ENABLE=false
7778
FEATURE_LINK_EXTERNAL_FLUX_ENABLE=false

.eslintignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -152,17 +152,12 @@ src/components/charts/discoverChartDetail/About.tsx
152152
src/components/charts/discoverChartDetail/ChartDeploymentList.tsx
153153
src/components/charts/discoverChartDetail/DiscoverChartDetails.tsx
154154
src/components/charts/list/ChartGroup.tsx
155-
src/components/charts/list/ChartListPopUp.tsx
156155
src/components/charts/list/ChartListPopUpRow.tsx
157-
src/components/charts/list/Deployed.tsx
158156
src/components/charts/list/DeployedChartFilters.tsx
159157
src/components/charts/list/DiscoverCharts.tsx
160158
src/components/charts/modal/ChartGroupBasicDeploy.tsx
161159
src/components/charts/modal/CreateChartGroup.tsx
162160
src/components/charts/useChartGroup.ts
163-
src/components/charts/util/ChartGroupCard.tsx
164-
src/components/charts/util/ChartSelect.tsx
165-
src/components/charts/util/ChartValueSelect.tsx
166161
src/components/checkList/AllChartsCheck.tsx
167162
src/components/checkList/AllCheckModal.tsx
168163
src/components/checkList/AppCheckList.tsx

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"homepage": "/dashboard",
66
"dependencies": {
7-
"@devtron-labs/devtron-fe-common-lib": "1.17.0-pre-0",
7+
"@devtron-labs/devtron-fe-common-lib": "1.17.0-pre-6",
88
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
99
"@rjsf/core": "^5.13.3",
1010
"@rjsf/utils": "^5.13.3",

src/components/ResourceBrowser/ResourceList/ResourceList.component.tsx

Lines changed: 1 addition & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,14 @@
1717
import React, { MouseEventHandler, useEffect, useState } from 'react'
1818
import { ClearIndicatorProps, components, ValueContainerProps } from 'react-select'
1919

20-
import { Button, ButtonVariantType, ComponentSizeType, Tooltip } from '@devtron-labs/devtron-fe-common-lib'
20+
import { Button, ButtonVariantType, ComponentSizeType } from '@devtron-labs/devtron-fe-common-lib'
2121

2222
import { ReactComponent as ClearIcon } from '@Icons/ic-error.svg'
2323
import { ReactComponent as SearchIcon } from '@Icons/ic-search.svg'
2424
import { ReactComponent as Warning } from '@Icons/ic-warning.svg'
2525

2626
import { handleUTCTime } from '../../common'
2727
import { ShortcutKeyBadge } from '../../common/formFields/Widgets/Widgets'
28-
import { SidebarChildButtonPropsType } from '../Types'
2928

3029
export const KindSearchValueContainer = (props: ValueContainerProps) => {
3130
const { selectProps, children } = props
@@ -96,38 +95,3 @@ export const renderRefreshBar =
9695
(show: boolean, lastSyncTime: string, callback: () => void): (() => JSX.Element) =>
9796
() =>
9897
!show ? null : <WarningStrip lastSyncTime={lastSyncTime} callback={callback} />
99-
100-
export const SidebarChildButton: React.FC<SidebarChildButtonPropsType> = ({
101-
parentRef,
102-
group,
103-
version,
104-
text,
105-
kind,
106-
namespaced,
107-
isSelected,
108-
onClick,
109-
}) => (
110-
<button
111-
type="button"
112-
className="dc__unset-button-styles"
113-
key={text}
114-
ref={parentRef}
115-
data-group={group}
116-
data-version={version}
117-
data-kind={kind}
118-
data-namespaced={namespaced}
119-
data-selected={isSelected}
120-
onClick={onClick}
121-
aria-label={`Select ${text}`}
122-
>
123-
<Tooltip content={text} placement="right">
124-
<div
125-
className={`fs-13 pointer dc__ellipsis-right dc__align-left dc__border-radius-4-imp fw-4 pt-6 lh-20 pr-8 pb-6 pl-8 ${
126-
isSelected ? 'bcb-1 cb-5' : 'cn-9 dc__hover-n50'
127-
}`}
128-
>
129-
{text}
130-
</div>
131-
</Tooltip>
132-
</button>
133-
)

0 commit comments

Comments
 (0)