@devtron-labs/devtron-fe-common-lib 1.17.0-beta-5 → 1.17.0-beta-7

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 (24) hide show
  1. package/dist/{@code-editor-BuOe4OPL.js → @code-editor-CuHkeuO1.js} +5071 -4982
  2. package/dist/{@common-rjsf-DgYgQ4tX.js → @common-rjsf-COvKctSh.js} +2 -2
  3. package/dist/{@framer-motion-rKKsQaE-.js → @framer-motion-j6RIjEIR.js} +1 -1
  4. package/dist/{@react-dates-CiTDEWTa.js → @react-dates-BVyHiOGU.js} +213 -213
  5. package/dist/{@react-select-CWq3RFmB.js → @react-select-BQNFZu0Y.js} +1 -1
  6. package/dist/{@react-virtualized-sticky-tree-BHVxyXG4.js → @react-virtualized-sticky-tree-CuElh0mS.js} +1 -1
  7. package/dist/{@vendor-BNG16Dqc.js → @vendor-DbxoIktR.js} +15448 -17164
  8. package/dist/Common/API/index.d.ts +0 -2
  9. package/dist/Shared/Components/ContextSwitcher/ContextSwitcher.d.ts +2 -0
  10. package/dist/Shared/Components/ContextSwitcher/index.d.ts +3 -0
  11. package/dist/Shared/Components/ContextSwitcher/types.d.ts +14 -0
  12. package/dist/Shared/Components/ContextSwitcher/utils.d.ts +5 -0
  13. package/dist/Shared/Components/index.d.ts +1 -0
  14. package/dist/Shared/Hooks/useUserPreferences/constants.d.ts +2 -0
  15. package/dist/Shared/Hooks/useUserPreferences/index.d.ts +1 -1
  16. package/dist/Shared/Hooks/useUserPreferences/service.d.ts +22 -2
  17. package/dist/Shared/Hooks/useUserPreferences/types.d.ts +24 -11
  18. package/dist/Shared/Hooks/useUserPreferences/useUserPrefrences.d.ts +5 -3
  19. package/dist/Shared/Hooks/useUserPreferences/utils.d.ts +3 -4
  20. package/dist/index.d.ts +0 -16
  21. package/dist/index.js +781 -782
  22. package/package.json +2 -4
  23. package/dist/Common/API/QueryClientProvider.d.ts +0 -2
  24. package/dist/Common/API/useQueryClient.d.ts +0 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.17.0-beta-5",
3
+ "version": "1.17.0-beta-7",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -39,7 +39,6 @@
39
39
  "@esbuild-plugins/node-globals-polyfill": "0.2.3",
40
40
  "@laynezh/vite-plugin-lib-assets": "1.1.0",
41
41
  "@sentry/browser": "^7.119.1",
42
- "@tanstack/eslint-plugin-query": "<5",
43
42
  "@testing-library/jest-dom": "^5.16.2",
44
43
  "@testing-library/react": "^12.1.4",
45
44
  "@tippyjs/react": "^4.2.0",
@@ -47,7 +46,6 @@
47
46
  "@types/dompurify": "^3.0.5",
48
47
  "@types/json-schema": "^7.0.15",
49
48
  "@types/react": "17.0.39",
50
- "@types/react-dates": "^21.8.6",
51
49
  "@types/react-dom": "17.0.13",
52
50
  "@types/react-router-dom": "^5.3.3",
53
51
  "@typescript-eslint/eslint-plugin": "8.3.0",
@@ -108,7 +106,7 @@
108
106
  "@lezer/highlight": "1.2.1",
109
107
  "@replit/codemirror-indentation-markers": "6.5.3",
110
108
  "@replit/codemirror-vscode-keymap": "6.0.2",
111
- "@tanstack/react-query": "<5",
109
+ "@types/react-dates": "^21.8.6",
112
110
  "@uiw/codemirror-extensions-hyper-link": "4.23.10",
113
111
  "@uiw/codemirror-theme-github": "4.23.7",
114
112
  "@uiw/react-codemirror": "4.23.7",
@@ -1,2 +0,0 @@
1
- import { PropsWithChildren } from 'react';
2
- export declare const QueryClientProvider: ({ children }: PropsWithChildren<{}>) => JSX.Element;
@@ -1,6 +0,0 @@
1
- import { QueryKey, UseMutationOptions, UseMutationResult, useQueryClient, UseQueryOptions, UseQueryResult } from '@tanstack/react-query';
2
- import { ServerErrors } from '../ServerError';
3
- import { ResponseType } from '../Types';
4
- export declare const useQuery: <TQueryFnData = unknown, TData = TQueryFnData, TQueryKey extends QueryKey = QueryKey>(options: UseQueryOptions<ResponseType<TQueryFnData>, ServerErrors, TData, TQueryKey>) => UseQueryResult<TData, ServerErrors>;
5
- export declare const useMutation: <TData = unknown, TVariables = void, TContext = unknown>(options: UseMutationOptions<ResponseType<TData>, ServerErrors, TVariables, TContext>) => UseMutationResult<ResponseType<TData>, ServerErrors, TVariables, TContext>;
6
- export { useQueryClient };