@devtron-labs/devtron-fe-common-lib 1.3.0-beta-14 → 1.3.0-beta-15

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 (31) hide show
  1. package/dist/{@code-editor-CWAcl7z_.js → @code-editor-DV0fyuSh.js} +3113 -3202
  2. package/dist/{@common-rjsf-E1JyUW15.js → @common-rjsf-DfO3w4MK.js} +2 -2
  3. package/dist/{@framer-motion-DHzxZlAx.js → @framer-motion-CdZdgA-3.js} +1 -1
  4. package/dist/{@react-dates-BZU5RIqe.js → @react-dates-CjgLNGq7.js} +20 -20
  5. package/dist/{@react-select-Dx53b3Wk.js → @react-select-Bplb1slj.js} +1 -1
  6. package/dist/{@vendor-BG3OpQCq.js → @vendor-dqBtmXrA.js} +3174 -3213
  7. package/dist/Common/Constants.d.ts +0 -1
  8. package/dist/Common/CustomTagSelector/TagLabelSelect.d.ts +2 -0
  9. package/dist/Common/CustomTagSelector/TagSelector.utils.d.ts +12 -0
  10. package/dist/Common/CustomTagSelector/Types.d.ts +14 -12
  11. package/dist/Common/CustomTagSelector/index.d.ts +1 -1
  12. package/dist/Common/DraggableWrapper/types.d.ts +0 -1
  13. package/dist/Common/Helper.d.ts +1 -2
  14. package/dist/Common/Types.d.ts +4 -20
  15. package/dist/Shared/Components/AnimatedDeployButton/AnimatedDeployButton.d.ts +3 -0
  16. package/dist/Shared/Components/AnimatedDeployButton/index.d.ts +1 -0
  17. package/dist/Shared/Components/AnimatedDeployButton/types.d.ts +3 -0
  18. package/dist/Shared/Components/DynamicDataTable/types.d.ts +0 -2
  19. package/dist/Shared/Components/index.d.ts +1 -1
  20. package/dist/Shared/types.d.ts +1 -19
  21. package/dist/assets/@code-editor.css +1 -1
  22. package/dist/assets/DeployAudio.566e45df.mp3 +0 -0
  23. package/dist/index.d.ts +1 -0
  24. package/dist/index.js +610 -616
  25. package/package.json +1 -1
  26. package/dist/Common/CustomTagSelector/tags.utils.d.ts +0 -13
  27. package/dist/Shared/Components/TagsKeyValueTable/TagsContainer.d.ts +0 -3
  28. package/dist/Shared/Components/TagsKeyValueTable/constants.d.ts +0 -4
  29. package/dist/Shared/Components/TagsKeyValueTable/index.d.ts +0 -4
  30. package/dist/Shared/Components/TagsKeyValueTable/types.d.ts +0 -12
  31. package/dist/Shared/Components/TagsKeyValueTable/utils.d.ts +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.3.0-beta-14",
3
+ "version": "1.3.0-beta-15",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,13 +0,0 @@
1
- /**
2
- *
3
- * @param value tag key value to validate
4
- * @returns isValid: boolean, errorMessages: string[]
5
- */
6
- export declare const validateTagKeyValue: (value: string) => {
7
- isValid: boolean;
8
- errorMessages: string[];
9
- };
10
- export declare const validateTagValue: (value: string, key: string) => {
11
- isValid: boolean;
12
- errorMessages: string[];
13
- };
@@ -1,3 +0,0 @@
1
- import { TagsContainerProps } from './types';
2
- declare const TagsContainer: ({ isCreateApp, hidePropagateTags, ...props }: TagsContainerProps) => JSX.Element;
3
- export default TagsContainer;
@@ -1,4 +0,0 @@
1
- import { DynamicDataTableHeaderType } from '../DynamicDataTable';
2
- import { TagsTableColumnsType } from './types';
3
- export declare const TAGS_TABLE_HEADERS: DynamicDataTableHeaderType<TagsTableColumnsType>[];
4
- export declare const DEVTRON_AI_URL: string;
@@ -1,4 +0,0 @@
1
- export { default as TagsContainer } from './TagsContainer';
2
- export { getEmptyTagTableRow } from './utils';
3
- export type { TagsTableColumnsType } from './types';
4
- export { DEVTRON_AI_URL } from './constants';
@@ -1,12 +0,0 @@
1
- import { DynamicDataTableCellErrorType, DynamicDataTableProps, DynamicDataTableRowType } from '../DynamicDataTable';
2
- export type TagsTableColumnsType = 'tagKey' | 'tagValue';
3
- export interface TagsContainerProps extends Partial<Pick<DynamicDataTableProps<TagsTableColumnsType>, 'onRowEdit'>> {
4
- appType: string;
5
- isCreateApp?: boolean;
6
- rows: DynamicDataTableRowType<TagsTableColumnsType>[];
7
- setRows: (updatedRows: DynamicDataTableRowType<TagsTableColumnsType>[]) => void;
8
- hidePropagateTags?: boolean;
9
- getEmptyRow?: (keyChoices?: string[]) => DynamicDataTableRowType<TagsTableColumnsType>;
10
- tagsError: DynamicDataTableCellErrorType<TagsTableColumnsType>;
11
- setTagErrors: (updatedTagsError: DynamicDataTableCellErrorType<TagsTableColumnsType>) => void;
12
- }
@@ -1,3 +0,0 @@
1
- import { DynamicDataTableRowType } from '../DynamicDataTable';
2
- import { TagsTableColumnsType } from './types';
3
- export declare const getEmptyTagTableRow: () => DynamicDataTableRowType<TagsTableColumnsType>;