@devtron-labs/devtron-fe-common-lib 1.1.7-beta-8 → 1.1.7-beta-10
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 -1
- package/dist/Common/CustomTagSelector/ResizableTagTextArea.d.ts +1 -1
- package/dist/Common/CustomTagSelector/Types.d.ts +14 -19
- package/dist/Common/Helper.d.ts +1 -1
- package/dist/Common/Markdown/MarkDown.d.ts +1 -1
- package/dist/Common/RJSF/index.d.ts +1 -1
- package/dist/Common/Types.d.ts +1 -2
- 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 +7 -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/CollapsibleList/CollapsibleList.types.d.ts +6 -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/SelectPicker/type.d.ts +4 -5
- package/dist/Shared/Components/index.d.ts +1 -1
- package/dist/Shared/Helpers.d.ts +5 -3
- package/dist/Shared/Hooks/useForm/useForm.d.ts +4 -0
- package/dist/Shared/Services/app.types.d.ts +4 -0
- package/dist/assets/index.css +1 -1
- package/dist/{cssMode-CI0Ti0PX.js → cssMode-BuITDEJ0.js} +1 -1
- package/dist/{freemarker2-DhIckmy0.js → freemarker2-CITYscgU.js} +1 -1
- package/dist/{handlebars-CSsFp5kd.js → handlebars-Dc7MQ59S.js} +1 -1
- package/dist/{html-LH3vKUZL.js → html-vgoFjs0J.js} +1 -1
- package/dist/{htmlMode-iRFD6CYu.js → htmlMode-Hjojbk5I.js} +1 -1
- package/dist/{index-CJC1np9i.js → index-DRABJq8n.js} +24081 -24413
- package/dist/index.d.ts +2 -0
- package/dist/index.js +263 -262
- package/dist/{javascript-BSAzSluu.js → javascript-BDbvTEwg.js} +1 -1
- package/dist/{jsonMode-CnHwHN88.js → jsonMode-B9HFzY-m.js} +1 -1
- package/dist/{liquid-BJhj3KIM.js → liquid-w7BKRkoX.js} +1 -1
- package/dist/{mdx-CVl-1BNF.js → mdx-CAIHkgxx.js} +1 -1
- package/dist/{python-CLg75GgN.js → python-B2ivqXVk.js} +1 -1
- package/dist/{razor-BaxZZVeV.js → razor-3xfm1RfB.js} +1 -1
- package/dist/{tsMode-CdYFr6rZ.js → tsMode-bsw6ih_t.js} +1 -1
- package/dist/{typescript-Bc_RhHK1.js → typescript-BdTJAEbE.js} +1 -1
- package/dist/{xml-C1guu_lI.js → xml-OhEX2yHX.js} +1 -1
- package/dist/{yaml-ypUOEe_i.js → yaml-Dlu34q0W.js} +1 -1
- package/package.json +1 -1
- package/dist/Shared/Components/DynamicDataTable/DynamicDataTable.d.ts +0 -2
- package/dist/Shared/Components/DynamicDataTable/DynamicDataTableHeader.d.ts +0 -2
- package/dist/Shared/Components/DynamicDataTable/DynamicDataTableRow.d.ts +0 -2
- package/dist/Shared/Components/DynamicDataTable/index.d.ts +0 -2
- package/dist/Shared/Components/DynamicDataTable/types.d.ts +0 -178
- package/dist/Shared/Components/DynamicDataTable/utils.d.ts +0 -5
- package/dist/Shared/Components/SelectTextArea/SelectTextArea.d.ts +0 -2
- package/dist/Shared/Components/SelectTextArea/index.d.ts +0 -2
- package/dist/Shared/Components/SelectTextArea/types.d.ts +0 -12
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
|
FEATURE_DEFAULT_LANDING_RB_ENABLE?: boolean;
|
|
76
78
|
}
|
|
77
79
|
declare global {
|