@devtron-labs/devtron-fe-common-lib 1.3.0-beta-2 → 1.3.0-beta-4
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/dist/{@code-editor-CyrbR7OU.js → @code-editor-DNwiBMPM.js} +4650 -4714
- package/dist/{@common-rjsf-7t0xRouC.js → @common-rjsf-BFncpuNt.js} +1 -1
- package/dist/{@monaco-editor-DukJFc0i.js → @monaco-editor-CVagbUeH.js} +28153 -27951
- package/dist/Common/CIPipeline.Types.d.ts +5 -0
- package/dist/Common/Common.service.d.ts +2 -1
- package/dist/Common/Constants.d.ts +0 -1
- package/dist/Common/CustomTagSelector/TagLabelSelect.d.ts +2 -0
- package/dist/Common/CustomTagSelector/TagSelector.utils.d.ts +12 -0
- package/dist/Common/CustomTagSelector/Types.d.ts +14 -12
- package/dist/Common/CustomTagSelector/index.d.ts +1 -1
- package/dist/Common/Helper.d.ts +2 -3
- package/dist/Common/Types.d.ts +53 -60
- package/dist/Pages/Applications/DevtronApps/Details/CDPipeline/types.d.ts +1 -2
- package/dist/Shared/Components/DynamicDataTable/types.d.ts +0 -2
- package/dist/Shared/Components/FeatureDescription/FeatureDescriptionModal.d.ts +1 -1
- package/dist/Shared/Components/FeatureDescription/FeatureTitleWithInfo.d.ts +1 -1
- package/dist/Shared/Components/FeatureDescription/types.d.ts +34 -6
- package/dist/Shared/Components/SelectPicker/type.d.ts +1 -1
- package/dist/Shared/Components/index.d.ts +0 -1
- package/dist/Shared/Helpers.d.ts +4 -3
- package/dist/Shared/Services/app.types.d.ts +8 -1
- package/dist/Shared/constants.d.ts +7 -0
- package/dist/Shared/types.d.ts +17 -23
- package/dist/assets/@code-editor.css +1 -1
- package/dist/assets/{ic-arrow-square-out.1be837ac.svg → ic-arrow-square-out.3d1a0d41.svg} +1 -1
- package/dist/assets/ic-check-circle-dots.6229180e.svg +4 -0
- package/dist/assets/{ic-edit-file.a782640f.svg → ic-edit-file.aea811d8.svg} +3 -3
- package/dist/index.js +571 -571
- package/package.json +3 -3
- package/dist/Common/CustomTagSelector/tags.utils.d.ts +0 -13
- package/dist/Shared/Components/TagsKeyValueTable/TagsContainer.d.ts +0 -3
- package/dist/Shared/Components/TagsKeyValueTable/constants.d.ts +0 -4
- package/dist/Shared/Components/TagsKeyValueTable/index.d.ts +0 -4
- package/dist/Shared/Components/TagsKeyValueTable/types.d.ts +0 -12
- package/dist/Shared/Components/TagsKeyValueTable/utils.d.ts +0 -3
- package/dist/assets/ic-stamp.526499d2.svg +0 -7
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-
|
3
|
+
"version": "1.3.0-beta-4",
|
4
4
|
"description": "Supporting common component library",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/index.js",
|
@@ -10,7 +10,7 @@
|
|
10
10
|
],
|
11
11
|
"repository": {
|
12
12
|
"type": "git",
|
13
|
-
"url": "https://github.com/devtron-labs/devtron-fe-common-lib.git"
|
13
|
+
"url": "git+https://github.com/devtron-labs/devtron-fe-common-lib.git"
|
14
14
|
},
|
15
15
|
"author": "Devtron",
|
16
16
|
"license": "ISC",
|
@@ -87,7 +87,6 @@
|
|
87
87
|
"react-draggable": "^4.4.5",
|
88
88
|
"react-ga4": "^1.4.1",
|
89
89
|
"react-mde": "^11.5.0",
|
90
|
-
"react-monaco-editor": "^0.54.0",
|
91
90
|
"react-router-dom": "^5.3.0",
|
92
91
|
"react-select": "5.8.0",
|
93
92
|
"rxjs": "^7.8.1",
|
@@ -102,6 +101,7 @@
|
|
102
101
|
"jsonpath-plus": "^10.0.0",
|
103
102
|
"marked": "^13.0.3",
|
104
103
|
"react-dates": "^21.8.0",
|
104
|
+
"react-monaco-editor": "^0.54.0",
|
105
105
|
"react-diff-viewer-continued": "^3.4.0",
|
106
106
|
"sass": "^1.69.7",
|
107
107
|
"tslib": "2.7.0"
|
@@ -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,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,7 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
- Copyright (c) 2024. Devtron Inc.
|
3
|
-
-->
|
4
|
-
|
5
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
6
|
-
<path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M4 22h16M5 18h14a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1Zm8.5-5 1.945-8.557A2 2 0 0 0 13.495 2h-2.99a2 2 0 0 0-1.95 2.443L10.5 13h3Z" vector-effect="non-scaling-stroke"/>
|
7
|
-
</svg>
|