@devtron-labs/devtron-fe-common-lib 1.1.1 → 1.1.3-beta-1
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/Common/CodeEditor/CodeEditor.reducer.d.ts +2 -1
- package/dist/Common/CodeEditor/types.d.ts +2 -1
- package/dist/Common/Constants.d.ts +2 -0
- package/dist/Common/Hooks/UseRegisterShortcut/types.d.ts +1 -0
- package/dist/Common/Hooks/UseRegisterShortcut/utils.d.ts +1 -1
- package/dist/Common/RJSF/Form.d.ts +1 -1
- package/dist/Common/RJSF/index.d.ts +1 -1
- package/dist/Pages/App/AppConfiguration/DeploymentTemplate/GUIView/index.d.ts +2 -0
- package/dist/Pages/App/AppConfiguration/DeploymentTemplate/GUIView/types.d.ts +2 -0
- package/dist/Pages/App/AppConfiguration/DeploymentTemplate/GUIView/utils.d.ts +6 -0
- package/dist/Pages/App/AppConfiguration/DeploymentTemplate/index.d.ts +1 -0
- package/dist/Pages/App/AppConfiguration/index.d.ts +1 -0
- package/dist/Pages/App/index.d.ts +1 -0
- package/dist/Pages/Applications/DevtronApps/Details/AppConfigurations/DeploymentTemplate/types.d.ts +21 -3
- package/dist/Pages/Applications/DevtronApps/Details/AppConfigurations/OverrideStrategyTippyContent.d.ts +2 -1
- package/dist/Pages/Applications/DevtronApps/Details/AppConfigurations/types.d.ts +6 -0
- package/dist/Pages/Applications/DevtronApps/Details/AppConfigurations/utils.d.ts +1 -1
- package/dist/Pages/index.d.ts +1 -0
- package/dist/Shared/Components/DeploymentConfigDiff/DeploymentConfigDiff.utils.d.ts +2 -0
- package/dist/Shared/Components/DiffViewer/DiffViewer.component.d.ts +41 -0
- package/dist/Shared/Components/DiffViewer/constants.d.ts +2 -0
- package/dist/Shared/Components/DiffViewer/index.d.ts +1 -0
- package/dist/Shared/Components/DiffViewer/types.d.ts +9 -0
- package/dist/Shared/Components/EnterpriseTag/EnterpriseTag.component.d.ts +2 -0
- package/dist/Shared/Components/EnterpriseTag/index.d.ts +1 -0
- package/dist/Shared/Components/index.d.ts +2 -0
- package/dist/Shared/Helpers.d.ts +5 -3
- package/dist/Shared/Hooks/useForm/useForm.d.ts +1 -0
- package/dist/Shared/Services/app.types.d.ts +3 -0
- package/dist/assets/index.css +1 -1
- package/dist/{cssMode-D377I1wG.js → cssMode-CMaMwk19.js} +1 -1
- package/dist/{freemarker2-CRS-UYqe.js → freemarker2-CLqyLn9v.js} +1 -1
- package/dist/{handlebars-NzP2uR49.js → handlebars-BRD1MBC4.js} +1 -1
- package/dist/{html-DB1mVxb-.js → html-DACNVWi2.js} +1 -1
- package/dist/{htmlMode-SNasYE4z.js → htmlMode-DOkUWxl6.js} +1 -1
- package/dist/{index-Y72wmNul.js → index-B0R-eIqT.js} +34719 -32661
- package/dist/index.d.ts +2 -0
- package/dist/index.js +526 -520
- package/dist/{javascript-Dwb4sZFi.js → javascript-CcPM8gMo.js} +1 -1
- package/dist/{jsonMode-CCk0-ZN_.js → jsonMode-CcN4cBks.js} +1 -1
- package/dist/{liquid-9jGwTnWc.js → liquid-ByxkY-P3.js} +1 -1
- package/dist/{mdx-ByXK0Ej3.js → mdx-CB1YZfsJ.js} +1 -1
- package/dist/{python-CF0zSstS.js → python-DtLslx5t.js} +1 -1
- package/dist/{razor-kKmZnFzU.js → razor-BpWch-b7.js} +1 -1
- package/dist/{tsMode-CXH7Hlza.js → tsMode-CX3PjebE.js} +1 -1
- package/dist/{typescript-c57zh6eL.js → typescript-CYUmpyQQ.js} +1 -1
- package/dist/{xml-sO0NebH6.js → xml-DoPkFoDS.js} +1 -1
- package/dist/{yaml-Cu-yIVBN.js → yaml-ps_8KiyV.js} +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OverrideMergeStrategyType } from './Pages/Applications';
|
|
1
2
|
export interface customEnv {
|
|
2
3
|
SENTRY_ENV?: string;
|
|
3
4
|
SENTRY_ERROR_ENABLED?: boolean;
|
|
@@ -72,6 +73,7 @@ export interface customEnv {
|
|
|
72
73
|
FEATURE_PROMO_EMBEDDED_MODAL_TITLE?: string;
|
|
73
74
|
FEATURE_PROMO_EMBEDDED_IFRAME_URL?: string;
|
|
74
75
|
FEATURE_BULK_RESTART_WORKLOADS_FROM_RB: string;
|
|
76
|
+
FEATURE_DEFAULT_MERGE_STRATEGY?: OverrideMergeStrategyType;
|
|
75
77
|
}
|
|
76
78
|
declare global {
|
|
77
79
|
interface Window {
|