@devtron-labs/devtron-fe-common-lib 1.8.4 → 1.8.6-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/{@code-editor-CECO9rTe.js → @code-editor-BdGij9tO.js} +7125 -6948
- package/dist/{@common-rjsf-CAp5a9od.js → @common-rjsf-D-u0GkOU.js} +2 -2
- package/dist/{@framer-motion-DrRBF6oz.js → @framer-motion-DpViUwiU.js} +1 -1
- package/dist/{@react-dates-DTh8Zdbr.js → @react-dates-DImxPZnP.js} +20 -20
- package/dist/{@react-select-Bsomcqq-.js → @react-select-CMmT3rFY.js} +1 -1
- package/dist/{@react-virtualized-sticky-tree-DjqdMMRP.js → @react-virtualized-sticky-tree-DLIJD4ml.js} +1 -1
- package/dist/{@vendor-Bb3ljJxt.js → @vendor-JJZeSNjd.js} +7533 -7494
- package/dist/Common/CodeEditor/types.d.ts +1 -2
- package/dist/Common/CodeMirror/CodeEditor.constants.d.ts +3 -0
- package/dist/Common/CodeMirror/CodeEditorRenderer.d.ts +1 -1
- package/dist/Common/CodeMirror/Extensions/DiffMinimap.d.ts +2 -0
- package/dist/Common/CodeMirror/Extensions/index.d.ts +1 -0
- package/dist/Common/CodeMirror/types.d.ts +10 -18
- package/dist/Common/CodeMirror/utils.d.ts +4 -1
- package/dist/Common/Common.service.d.ts +1 -8
- package/dist/Common/Constants.d.ts +1 -0
- package/dist/Common/Hooks/UseGetUserRoles/UseGetUserRoles.d.ts +7 -0
- package/dist/Common/Hooks/UseGetUserRoles/index.d.ts +1 -0
- package/dist/Common/Hooks/UseGetUserRoles/types.d.ts +8 -0
- package/dist/Common/Hooks/UseRegisterShortcut/utils.d.ts +1 -1
- package/dist/Common/Hooks/index.d.ts +1 -1
- package/dist/Common/RJSF/Form.d.ts +1 -1
- package/dist/Common/Toggle/Toggle.d.ts +2 -1
- package/dist/Common/Types.d.ts +21 -1
- package/dist/Pages/Applications/DevtronApps/Details/AppConfigurations/DeploymentTemplate/types.d.ts +4 -0
- package/dist/Pages/Applications/DevtronApps/Details/CDPipeline/types.d.ts +1 -1
- package/dist/Shared/Components/CICDHistory/constants.d.ts +1 -1
- package/dist/Shared/Components/CICDHistory/types.d.ts +8 -0
- package/dist/Shared/Components/GenericSectionErrorState/GenericSectionErrorState.component.d.ts +1 -1
- package/dist/Shared/Components/GenericSectionErrorState/types.d.ts +18 -5
- package/dist/Shared/Components/Icon/Icon.d.ts +2 -0
- package/dist/Shared/Components/Security/SecurityModal/utils.d.ts +2 -2
- package/dist/Shared/Providers/types.d.ts +15 -1
- package/dist/Shared/Services/common.service.d.ts +2 -1
- package/dist/Shared/Services/types.d.ts +6 -0
- package/dist/Shared/Store/IndexStore.d.ts +1 -1
- package/dist/Shared/types.d.ts +19 -8
- package/dist/assets/@code-editor.css +1 -1
- package/dist/assets/ic-crown.868ff2a9.svg +3 -0
- package/dist/assets/ic-user-key.523f6939.svg +4 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +790 -786
- package/package.json +1 -1
- package/dist/Common/CodeMirror/CodeEditor.reducer.d.ts +0 -4
- package/dist/Common/Hooks/UseSuperAdmin/UseSuperAdmin.d.ts +0 -6
- package/dist/Common/Hooks/UseSuperAdmin/types.d.ts +0 -3
package/package.json
CHANGED
@@ -1,4 +0,0 @@
|
|
1
|
-
import { CodeEditorPayloadType, CodeEditorInitialValueType, CodeEditorState } from './types';
|
2
|
-
export declare const CodeEditorReducer: (state: CodeEditorState, action: CodeEditorPayloadType) => CodeEditorState;
|
3
|
-
export declare const parseValueToCode: (value: string, mode: string, tabSize: number) => string;
|
4
|
-
export declare const initialState: ({ mode, value, lhsValue, diffView, noParsing, tabSize, }: CodeEditorInitialValueType) => CodeEditorState;
|
@@ -1,6 +0,0 @@
|
|
1
|
-
import { useSuperAdminType } from './types';
|
2
|
-
/**
|
3
|
-
* @description It will return isSuperAdmin and would be set to false by default, might need few optimizations like dep, etc
|
4
|
-
* @returns {useSuperAdminType} isSuperAdmin
|
5
|
-
*/
|
6
|
-
export declare const useSuperAdmin: () => useSuperAdminType;
|