@devtron-labs/devtron-fe-common-lib 1.2.4-beta-5 → 1.2.4-beta-7

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 (32) hide show
  1. package/dist/{@code-editor-CTMrJ4TQ.js → @code-editor-DH7H2lYl.js} +3720 -3696
  2. package/dist/{@common-rjsf-CQOy6buw.js → @common-rjsf-DcaQ69gF.js} +1 -1
  3. package/dist/Common/CIPipeline.Types.d.ts +1 -26
  4. package/dist/Common/Constants.d.ts +1 -1
  5. package/dist/Common/CustomTagSelector/Types.d.ts +12 -0
  6. package/dist/Common/Helper.d.ts +2 -1
  7. package/dist/Common/RJSF/Form.d.ts +1 -1
  8. package/dist/Common/Types.d.ts +20 -2
  9. package/dist/Pages/Applications/DevtronApps/Details/CDPipeline/index.d.ts +0 -1
  10. package/dist/Pages/Applications/DevtronApps/Details/index.d.ts +0 -1
  11. package/dist/Shared/Components/DynamicDataTable/DynamicDataTable.d.ts +1 -1
  12. package/dist/Shared/Components/DynamicDataTable/DynamicDataTableHeader.d.ts +1 -1
  13. package/dist/Shared/Components/DynamicDataTable/DynamicDataTableRow.d.ts +1 -1
  14. package/dist/Shared/Components/DynamicDataTable/types.d.ts +17 -22
  15. package/dist/Shared/Components/DynamicDataTable/utils.d.ts +3 -3
  16. package/dist/Shared/Components/TagsKeyValueTable/TagsContainer.d.ts +3 -0
  17. package/dist/Shared/Components/TagsKeyValueTable/constants.d.ts +4 -0
  18. package/dist/Shared/Components/TagsKeyValueTable/index.d.ts +3 -0
  19. package/dist/Shared/Components/TagsKeyValueTable/types.d.ts +9 -0
  20. package/dist/Shared/Components/TagsKeyValueTable/utils.d.ts +3 -0
  21. package/dist/Shared/Components/index.d.ts +1 -1
  22. package/dist/Shared/types.d.ts +19 -31
  23. package/dist/assets/@code-editor.css +1 -1
  24. package/dist/index.js +337 -336
  25. package/package.json +1 -1
  26. package/dist/Pages/Applications/DevtronApps/Details/CDPipeline/services.d.ts +0 -10
  27. package/dist/Pages/Applications/DevtronApps/Details/CIPipeline/index.d.ts +0 -1
  28. package/dist/Pages/Applications/DevtronApps/Details/CIPipeline/services.d.ts +0 -11
  29. package/dist/Shared/Components/FileUpload/FileUpload.d.ts +0 -2
  30. package/dist/Shared/Components/FileUpload/index.d.ts +0 -2
  31. package/dist/Shared/Components/FileUpload/types.d.ts +0 -8
  32. package/dist/assets/ic-cloud-upload.18066e05.svg +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.2.4-beta-5",
3
+ "version": "1.2.4-beta-7",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,10 +0,0 @@
1
- import { MutableRefObject } from 'react';
2
- import { UploadFileDTO } from '../../../../../Shared/types';
3
- export declare const uploadCDPipelineFile: ({ file, appId, envId, allowedExtensions, maxUploadSize, abortControllerRef, }: {
4
- file: File[];
5
- appId: number;
6
- envId: number;
7
- allowedExtensions?: string[];
8
- maxUploadSize?: number;
9
- abortControllerRef?: MutableRefObject<AbortController>;
10
- }) => Promise<UploadFileDTO>;
@@ -1 +0,0 @@
1
- export * from './services';
@@ -1,11 +0,0 @@
1
- import { MutableRefObject } from 'react';
2
- import { UploadFileDTO } from '../../../../../Shared/types';
3
- export declare const uploadCIPipelineFile: ({ file, appId, ciPipelineId, envId, allowedExtensions, maxUploadSize, abortControllerRef, }: {
4
- file: File[];
5
- appId: number;
6
- ciPipelineId: number;
7
- envId?: number;
8
- allowedExtensions?: string[];
9
- maxUploadSize?: number;
10
- abortControllerRef?: MutableRefObject<AbortController>;
11
- }) => Promise<UploadFileDTO>;
@@ -1,2 +0,0 @@
1
- import { FileUploadProps } from './types';
2
- export declare const FileUpload: ({ label, fileName, multiple, fileTypes, className, onUpload, }: FileUploadProps) => JSX.Element;
@@ -1,2 +0,0 @@
1
- export * from './FileUpload';
2
- export * from './types';
@@ -1,8 +0,0 @@
1
- export interface FileUploadProps {
2
- fileName: string;
3
- onUpload: (files: File[]) => void;
4
- multiple?: boolean;
5
- label?: string;
6
- className?: string;
7
- fileTypes?: string[];
8
- }
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16"><path stroke="#06C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25" d="M6 12.999H4.5a3.5 3.5 0 1 1 .87-6.891M5 7.999a5 5 0 1 1 9 3m-6.62-.879L9.5 8m0 0 2.121 2.121M9.5 8v5"/></svg>