@devtron-labs/devtron-fe-common-lib 1.6.6 → 1.6.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.6.6",
3
+ "version": "1.6.8",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,3 +0,0 @@
1
- import { DeleteComponentProps } from './types';
2
- declare const DeleteComponent: ({ setDeleting, toggleConfirmation, deleteComponent, title, component, payload, confirmationDialogDescription, redirectTo, url, reload, configuration, closeCustomComponent, }: DeleteComponentProps) => JSX.Element;
3
- export default DeleteComponent;
@@ -1,18 +0,0 @@
1
- export interface DeleteComponentProps {
2
- /**
3
- * @deprecated - Delete component internally handles loading for the `Delete Button`.
4
- */
5
- setDeleting?: (boolean: any) => void;
6
- toggleConfirmation: any;
7
- deleteComponent: (any: any) => Promise<any>;
8
- title: string;
9
- component: string;
10
- payload: any;
11
- confirmationDialogDescription?: string;
12
- redirectTo?: boolean;
13
- url?: string;
14
- reload?: () => void;
15
- configuration?: string;
16
- dataTestid?: string;
17
- closeCustomComponent?: () => void;
18
- }
@@ -1,5 +0,0 @@
1
- import { default as React } from 'react';
2
- import { DeleteDialogProps } from './Types';
3
- export declare const DeleteDialog: React.FC<DeleteDialogProps> & {
4
- Description?: React.FC<any>;
5
- };
@@ -1,2 +0,0 @@
1
- import { ForceDeleteDialogType } from './Types';
2
- export default function ForceDeleteDialog({ onClickDelete, closeDeleteModal, forceDeleteDialogTitle, forceDeleteDialogMessage, }: ForceDeleteDialogType): JSX.Element;