@devtron-labs/devtron-fe-common-lib 1.20.3-pre-1 → 1.20.3-pre-2

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 (20) hide show
  1. package/dist/{@code-editor-CyROJVsO.js → @code-editor-B795B-vT.js} +2817 -2836
  2. package/dist/{@common-rjsf-DarRIml5.js → @common-rjsf-BeQqdyJi.js} +1 -1
  3. package/dist/Common/Constants.d.ts +1 -0
  4. package/dist/Pages-Devtron-2.0/ApplicationManagement/Shared/index.d.ts +1 -1
  5. package/dist/Pages-Devtron-2.0/InfrastructureManagement/Shared/index.d.ts +0 -1
  6. package/dist/Shared/Components/Icon/Icon.d.ts +2 -1
  7. package/dist/assets/{ic-bg-build.7de825b3.svg → ic-bg-build.8609d0ea.svg} +1 -1
  8. package/dist/assets/{ic-bg-production-pipelines.5965401c.svg → ic-bg-production-pipelines.2951cdc0.svg} +3 -2
  9. package/dist/assets/ic-bg-webhook.b455152d.svg +13 -0
  10. package/dist/assets/{ic-graph-negative.d49ba2b7.svg → ic-priority-medium-fill.7bab0ff8.svg} +2 -2
  11. package/dist/index.js +998 -1018
  12. package/package.json +1 -1
  13. package/dist/Pages-Devtron-2.0/ApplicationManagement/Shared/PageHeader/PageHeader.d.ts +0 -1
  14. package/dist/Pages-Devtron-2.0/ApplicationManagement/Shared/PageHeader/constants.d.ts +0 -2
  15. package/dist/Pages-Devtron-2.0/ApplicationManagement/Shared/PageHeader/index.d.ts +0 -1
  16. package/dist/Pages-Devtron-2.0/ApplicationManagement/Shared/PageHeader/types.d.ts +0 -12
  17. package/dist/Pages-Devtron-2.0/ApplicationManagement/Shared/PageHeader/utils.d.ts +0 -2
  18. /package/dist/Pages-Devtron-2.0/{InfrastructureManagement → ApplicationManagement}/Shared/ApplicationManagementIcon/ApplicationManagementIcon.d.ts +0 -0
  19. /package/dist/Pages-Devtron-2.0/{InfrastructureManagement → ApplicationManagement}/Shared/ApplicationManagementIcon/index.d.ts +0 -0
  20. /package/dist/Pages-Devtron-2.0/{InfrastructureManagement → ApplicationManagement}/Shared/ApplicationManagementIcon/utils.d.ts +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.20.3-pre-1",
3
+ "version": "1.20.3-pre-2",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1 +0,0 @@
1
- export declare const ApplicationManagementPageHeader: () => JSX.Element;
@@ -1,2 +0,0 @@
1
- import { BreadcrumbConfig } from './types';
2
- export declare const APPLICATION_MANAGEMENT_BREADCRUMB_CONFIG: BreadcrumbConfig[];
@@ -1 +0,0 @@
1
- export * from './PageHeader';
@@ -1,12 +0,0 @@
1
- export type BreadcrumbKey = 'overview';
2
- export interface BreadcrumbConfig {
3
- key: BreadcrumbKey;
4
- route: string;
5
- heading: string;
6
- }
7
- export interface BreadcrumbAlias {
8
- [key: string]: {
9
- component: React.ReactNode;
10
- linked: boolean;
11
- } | null;
12
- }
@@ -1,2 +0,0 @@
1
- import { useBreadcrumb } from '../../../../Common/index';
2
- export declare const getApplicationManagementBreadcrumbs: (url: string) => Parameters<typeof useBreadcrumb>[0];