@devtron-labs/devtron-fe-common-lib 1.8.6 → 1.8.8

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 (27) hide show
  1. package/dist/{@code-editor-DdQlAVm0.js → @code-editor-pcFQIw8K.js} +3263 -3242
  2. package/dist/{@common-rjsf-Ba8ZCwag.js → @common-rjsf-DmzBeGtX.js} +2 -2
  3. package/dist/{@framer-motion-DpViUwiU.js → @framer-motion-DWs0_8aB.js} +1 -1
  4. package/dist/{@react-dates-DImxPZnP.js → @react-dates-CHCZFrgt.js} +1 -1
  5. package/dist/{@react-select-CMmT3rFY.js → @react-select-Dn2Z7PBK.js} +1 -1
  6. package/dist/{@react-virtualized-sticky-tree-DLIJD4ml.js → @react-virtualized-sticky-tree-KcWdTSlv.js} +1 -1
  7. package/dist/{@vendor-JJZeSNjd.js → @vendor-C6JiJKw0.js} +6069 -5991
  8. package/dist/Common/CodeEditor/types.d.ts +1 -1
  9. package/dist/Common/CodeMirror/Commands/index.d.ts +1 -0
  10. package/dist/Common/CodeMirror/Commands/keyMaps.d.ts +2 -0
  11. package/dist/Common/Common.service.d.ts +1 -8
  12. package/dist/Common/Hooks/UseGetUserRoles/UseGetUserRoles.d.ts +7 -0
  13. package/dist/Common/Hooks/UseGetUserRoles/index.d.ts +1 -0
  14. package/dist/Common/Hooks/UseGetUserRoles/types.d.ts +8 -0
  15. package/dist/Common/Hooks/index.d.ts +1 -1
  16. package/dist/Common/Toggle/Toggle.d.ts +2 -1
  17. package/dist/Common/Types.d.ts +19 -0
  18. package/dist/Shared/Components/CodeEditorWrapper/CodeEditorWrapper.d.ts +1 -3
  19. package/dist/Shared/Components/Icon/Icon.d.ts +2 -0
  20. package/dist/Shared/types.d.ts +19 -3
  21. package/dist/assets/@code-editor.css +1 -1
  22. package/dist/assets/ic-crown.868ff2a9.svg +3 -0
  23. package/dist/assets/ic-user-key.523f6939.svg +4 -0
  24. package/dist/index.js +775 -774
  25. package/package.json +3 -2
  26. package/dist/Common/Hooks/UseSuperAdmin/UseSuperAdmin.d.ts +0 -6
  27. package/dist/Common/Hooks/UseSuperAdmin/types.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.8.6",
3
+ "version": "1.8.8",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -107,7 +107,8 @@
107
107
  "@replit/codemirror-indentation-markers": "6.5.3",
108
108
  "@replit/codemirror-vscode-keymap": "6.0.2",
109
109
  "@types/react-dates": "^21.8.6",
110
- "@uiw/codemirror-theme-github": "^4.23.7",
110
+ "@uiw/codemirror-extensions-hyper-link": "4.23.10",
111
+ "@uiw/codemirror-theme-github": "4.23.7",
111
112
  "@uiw/react-codemirror": "4.23.7",
112
113
  "ansi_up": "^5.2.1",
113
114
  "codemirror-json-schema": "0.8.0",
@@ -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;
@@ -1,3 +0,0 @@
1
- export interface useSuperAdminType {
2
- isSuperAdmin: boolean;
3
- }