@devtron-labs/devtron-fe-common-lib 1.20.0-pre-5 → 1.20.1-pre-1

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.
@@ -1,7 +1,7 @@
1
1
  import { j as n, aI as v, aK as W, aJ as K } from "./@vendor-DMIFbFhR.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 I, e as ne } from "./@code-editor-CQa5l5q4.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 I, e as ne } from "./@code-editor-CywBBv09.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,2 +1,2 @@
1
1
  import { ComponentSizeType } from '../../Shared/constants';
2
- export declare const getBarHeightForSize: (size: ComponentSizeType) => "h-20" | "h-8";
2
+ export declare const getBarHeightForSize: (size: ComponentSizeType) => "h-20" | "h-6" | "h-8";
@@ -0,0 +1 @@
1
+ export declare const ApplicationManagementIcon: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ export * from './ApplicationManagementIcon';
2
+ export { getApplicationManagementBreadcrumb } from './utils';
@@ -0,0 +1,6 @@
1
+ export declare const getApplicationManagementBreadcrumb: () => {
2
+ 'application-management': {
3
+ component: JSX.Element;
4
+ linked: boolean;
5
+ };
6
+ };
@@ -0,0 +1 @@
1
+ export declare const InfrastructureManagementIcon: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ export * from './InfrastructureManagementIcon';
2
+ export { getInfrastructureManagementBreadcrumb } from './utils';
@@ -0,0 +1,6 @@
1
+ export declare const getInfrastructureManagementBreadcrumb: () => {
2
+ 'infrastructure-management': {
3
+ component: JSX.Element;
4
+ linked: boolean;
5
+ };
6
+ };
@@ -0,0 +1,2 @@
1
+ export * from './ApplicationManagementIcon';
2
+ export * from './InfrastructureManagementIcon';
@@ -1 +1,2 @@
1
1
  export * from './Overview';
2
+ export * from './Shared';
@@ -1 +1,2 @@
1
1
  export * from './CostVisibility';
2
+ export * from './InfrastructureManagement';
@@ -31,7 +31,7 @@ type FeatureDescriptionModalWithTabsConfig = {
31
31
  imageStyles?: never;
32
32
  };
33
33
  export type FeatureDescriptionModalProps = {
34
- title: string;
34
+ title: React.ReactNode;
35
35
  closeModalText?: string;
36
36
  closeModal?: () => void;
37
37
  } & ((BaseFeatureDescriptionModalProps & {
@@ -17,6 +17,7 @@ export interface PageHeaderType {
17
17
  TippyIcon?: React.FunctionComponent<any>;
18
18
  tippyMessage?: string;
19
19
  onClickTippyButton?: () => void;
20
+ tippyHeader?: string;
20
21
  };
21
22
  onClose?: () => void;
22
23
  closeIcon?: JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import { FiltersTypeEnum, InternalTableProps } from './types';
2
- declare const InternalTable: <RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>>({ filtersVariant, filterData, rows, getRows, columns, ViewWrapper, resizableConfig, emptyStateConfig, additionalProps, areColumnsConfigurable, filter, setVisibleColumns, visibleColumns, stylesConfig, loading, bulkSelectionConfig, bulkSelectionReturnValue, handleClearBulkSelection, handleToggleBulkSelectionOnRow, paginationVariant, RowActionsOnHoverComponent, pageSizeOptions, clearFilters: userGivenUrlClearFilters, }: InternalTableProps<RowData, FilterVariant, AdditionalProps>) => JSX.Element;
2
+ declare const InternalTable: <RowData extends unknown, FilterVariant extends FiltersTypeEnum, AdditionalProps extends Record<string, any>>({ filtersVariant, filterData, rows, getRows, columns, ViewWrapper, resizableConfig, emptyStateConfig, additionalProps, areColumnsConfigurable, filter, setVisibleColumns, visibleColumns, stylesConfig, loading, bulkSelectionConfig, bulkSelectionReturnValue, id, handleClearBulkSelection, handleToggleBulkSelectionOnRow, paginationVariant, RowActionsOnHoverComponent, pageSizeOptions, clearFilters: userGivenUrlClearFilters, }: InternalTableProps<RowData, FilterVariant, AdditionalProps>) => JSX.Element;
3
3
  export default InternalTable;