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

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 (60) hide show
  1. package/dist/{@code-editor-CHmXQoJu.js → @code-editor-BuOe4OPL.js} +9687 -9268
  2. package/dist/@common-rjsf-DgYgQ4tX.js +598 -0
  3. package/dist/{@framer-motion-j6RIjEIR.js → @framer-motion-rKKsQaE-.js} +1 -1
  4. package/dist/{@react-dates-BVyHiOGU.js → @react-dates-CiTDEWTa.js} +213 -213
  5. package/dist/{@react-select-BQNFZu0Y.js → @react-select-CWq3RFmB.js} +1 -1
  6. package/dist/{@react-virtualized-sticky-tree-CuElh0mS.js → @react-virtualized-sticky-tree-BHVxyXG4.js} +1 -1
  7. package/dist/{@vendor-DbxoIktR.js → @vendor-BNG16Dqc.js} +17164 -15448
  8. package/dist/Common/API/QueryClientProvider.d.ts +2 -0
  9. package/dist/Common/API/index.d.ts +2 -0
  10. package/dist/Common/API/useQueryClient.d.ts +6 -0
  11. package/dist/Common/Hooks/UseIsTextTruncated/UseIsTextTruncated.d.ts +5 -0
  12. package/dist/Common/Hooks/UseIsTextTruncated/constants.d.ts +1 -0
  13. package/dist/Common/Hooks/UseIsTextTruncated/index.d.ts +1 -0
  14. package/dist/Common/Hooks/index.d.ts +1 -0
  15. package/dist/Common/RJSF/constants.d.ts +1 -0
  16. package/dist/Common/RJSF/utils.d.ts +1 -1
  17. package/dist/Common/Tooltip/constants.d.ts +0 -1
  18. package/dist/Pages/ResourceBrowser/ResourceBrowser.Types.d.ts +0 -1
  19. package/dist/Shared/Components/ActionMenu/types.d.ts +2 -33
  20. package/dist/Shared/Components/CollapsibleList/CollapsibleList.component.d.ts +3 -0
  21. package/dist/Shared/Components/Icon/Icon.d.ts +4 -0
  22. package/dist/Shared/Components/Security/SecurityModal/config/Sidebar.d.ts +6 -3
  23. package/dist/Shared/Components/Security/SecurityModal/config/index.d.ts +1 -1
  24. package/dist/Shared/Components/Security/SecurityModal/index.d.ts +2 -2
  25. package/dist/Shared/Components/Security/SecurityModal/types.d.ts +0 -6
  26. package/dist/Shared/Components/Security/types.d.ts +5 -1
  27. package/dist/Shared/Components/SelectPicker/GroupedFilterSelectPicker.d.ts +2 -0
  28. package/dist/Shared/Components/SelectPicker/SelectPicker.component.d.ts +1 -1
  29. package/dist/Shared/Components/SelectPicker/index.d.ts +1 -0
  30. package/dist/Shared/Components/SelectPicker/type.d.ts +7 -2
  31. package/dist/Shared/Components/TrailingItem/TrailingItem.component.d.ts +3 -0
  32. package/dist/Shared/Components/TrailingItem/index.d.ts +2 -0
  33. package/dist/Shared/Components/TrailingItem/types.d.ts +39 -0
  34. package/dist/Shared/Components/TreeView/TreeView.component.d.ts +3 -0
  35. package/dist/Shared/Components/TreeView/TreeViewNodeContent.d.ts +3 -0
  36. package/dist/Shared/Components/TreeView/constants.d.ts +4 -0
  37. package/dist/Shared/Components/TreeView/index.d.ts +2 -0
  38. package/dist/Shared/Components/TreeView/types.d.ts +204 -0
  39. package/dist/Shared/Components/TreeView/utils.d.ts +22 -0
  40. package/dist/Shared/Components/index.d.ts +1 -1
  41. package/dist/Shared/Hooks/useUserPreferences/constants.d.ts +0 -2
  42. package/dist/Shared/Hooks/useUserPreferences/index.d.ts +1 -1
  43. package/dist/Shared/Hooks/useUserPreferences/service.d.ts +2 -22
  44. package/dist/Shared/Hooks/useUserPreferences/types.d.ts +11 -24
  45. package/dist/Shared/Hooks/useUserPreferences/useUserPrefrences.d.ts +3 -5
  46. package/dist/Shared/Hooks/useUserPreferences/utils.d.ts +4 -3
  47. package/dist/assets/@code-editor.css +1 -1
  48. package/dist/assets/@common-rjsf.css +1 -1
  49. package/dist/assets/ic-activity.abf111c7.svg +3 -0
  50. package/dist/assets/ic-folder.8038c019.svg +3 -0
  51. package/dist/assets/ic-helm-app.a20cfeb3.svg +4 -0
  52. package/dist/assets/ic-namespace.8980221f.svg +3 -0
  53. package/dist/index.d.ts +22 -0
  54. package/dist/index.js +658 -652
  55. package/package.json +4 -2
  56. package/dist/@common-rjsf-kLdUrmr1.js +0 -609
  57. package/dist/Shared/Components/ContextSwitcher/ContextSwitcher.d.ts +0 -2
  58. package/dist/Shared/Components/ContextSwitcher/index.d.ts +0 -3
  59. package/dist/Shared/Components/ContextSwitcher/types.d.ts +0 -14
  60. package/dist/Shared/Components/ContextSwitcher/utils.d.ts +0 -5
package/dist/index.d.ts CHANGED
@@ -160,6 +160,12 @@ export interface customEnv {
160
160
  * @default true
161
161
  */
162
162
  FEATURE_INTERNET_CONNECTIVITY_ENABLE?: boolean;
163
+ /**
164
+ * If true, the grouped app list filters will be shown.
165
+ *
166
+ * @default false
167
+ */
168
+ FEATURE_GROUPED_APP_LIST_FILTERS_ENABLE?: boolean;
163
169
  }
164
170
  declare global {
165
171
  interface Window {
@@ -168,6 +174,22 @@ declare global {
168
174
  _env_: customEnv;
169
175
  }
170
176
  }
177
+ declare module '@tanstack/react-query' {
178
+ interface QueryMeta {
179
+ /**
180
+ * Optional flag indicating whether to display a toast notification for errors.
181
+ * @default true
182
+ */
183
+ showToastError?: boolean;
184
+ }
185
+ interface MutationMeta {
186
+ /**
187
+ * Optional flag indicating whether to display a toast notification for errors.
188
+ * @default true
189
+ */
190
+ showToastError?: boolean;
191
+ }
192
+ }
171
193
  export * from './Common';
172
194
  export * from './Pages';
173
195
  export * from './Shared';