@odigos/ui-kit 0.0.257 → 0.0.258

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 (57) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/lib/chunks/{connections-scope-RiHZnCRk.js → connections-scope-DgpFs9S1.js} +1 -1
  3. package/lib/chunks/{helpers-CUmUiA_l.js → helpers-BlFl20R2.js} +2 -2
  4. package/lib/chunks/index-BVL5-zQa.js +155 -0
  5. package/lib/chunks/{source-instrument-form-context-8HLrHGI9.js → source-instrument-form-context-o2ynNRPg.js} +1 -1
  6. package/lib/chunks/ui-components-BmIux5o5.js +1692 -0
  7. package/lib/chunks/{use-odigos-api-DnIoW4_W.js → use-odigos-api-hslZLdix.js} +2 -2
  8. package/lib/components/_v2/autocomplete/index.d.ts +4 -0
  9. package/lib/components/_v2/badge/index.d.ts +2 -2
  10. package/lib/components/_v2/cards/status-card/index.d.ts +2 -2
  11. package/lib/components/_v2/condition/index.d.ts +2 -2
  12. package/lib/components/_v2/drop-data/index.d.ts +2 -0
  13. package/lib/components/_v2/table/index.d.ts +4 -0
  14. package/lib/components/_v2/table/styled.d.ts +1 -0
  15. package/lib/components/_v2/table/table-rows/index.d.ts +6 -0
  16. package/lib/components/_v2/table/types.d.ts +6 -0
  17. package/lib/components/scroll-y/index.d.ts +4 -0
  18. package/lib/components/v2.js +1 -1
  19. package/lib/components.js +1 -1
  20. package/lib/constants.js +1 -1
  21. package/lib/containers/_v2/_drawers/edit-rule-drawer/helpers.d.ts +1 -1
  22. package/lib/containers/_v2/_drawers/edit-source-drawer/profiling/flame-graph-canvas.d.ts +6 -0
  23. package/lib/containers/_v2/_drawers/edit-source-drawer/profiling/flamebearer.d.ts +3 -1
  24. package/lib/containers/_v2/_drawers/edit-source-drawer/profiling/symbol-table/index.d.ts +34 -0
  25. package/lib/containers/_v2/_drawers/edit-source-drawer/profiling/symbol-table/modify-rules-modal.d.ts +10 -0
  26. package/lib/containers/_v2/_drawers/edit-source-drawer/profiling/symbol-table/symbol-instrumentation.d.ts +86 -0
  27. package/lib/containers/_v2/_drawers/edit-source-drawer/profiling/symbol-table/use-symbol-instrumentation.d.ts +69 -0
  28. package/lib/containers/service-map/react-flow/columns/active-node-info.d.ts +2 -0
  29. package/lib/containers/service-map/react-flow/columns/column-root.d.ts +4 -0
  30. package/lib/containers/service-map/react-flow/{search-and-select-nodes.d.ts → columns/search-and-select-nodes.d.ts} +0 -1
  31. package/lib/containers/service-map/service-map-context.d.ts +3 -3
  32. package/lib/containers/v2.js +158 -143
  33. package/lib/containers.js +30 -12
  34. package/lib/contexts/odigos-api.js +1 -1
  35. package/lib/contexts.js +1 -1
  36. package/lib/functions/get-health-badge-label/index.d.ts +2 -2
  37. package/lib/functions/get-status-color/index.d.ts +2 -2
  38. package/lib/functions/get-status-from-pod-status/index.d.ts +2 -2
  39. package/lib/functions/get-status-icon/index.d.ts +2 -2
  40. package/lib/functions/get-status-type-from-odigos-health/index.d.ts +2 -2
  41. package/lib/functions/map-desired-status-to-condition-status/index.d.ts +2 -2
  42. package/lib/functions.js +1 -1
  43. package/lib/hooks.js +1 -1
  44. package/lib/snippets/_v2/sampling-rule-form-sections/preset-with-custom-input.d.ts +1 -1
  45. package/lib/snippets/v2.js +1 -1
  46. package/lib/snippets.js +1 -1
  47. package/lib/store/useProgressStore.d.ts +2 -2
  48. package/lib/store.js +1 -1
  49. package/lib/theme.js +1 -1
  50. package/lib/types/common/index.d.ts +5 -10
  51. package/lib/types/sampling.d.ts +2 -0
  52. package/lib/types.js +1 -1
  53. package/lib/visuals.js +1 -1
  54. package/package.json +1 -1
  55. package/lib/chunks/index-hiRPXsEi.js +0 -155
  56. package/lib/chunks/ui-components-B1TCLO_N.js +0 -1666
  57. package/lib/containers/_v2/_drawers/edit-source-drawer/profiling/symbol-table.d.ts +0 -21
@@ -1,21 +0,0 @@
1
- import { type FC } from 'react';
2
- import { ProgrammingLanguages } from '@/types';
3
- import { type SymbolTableRow } from './flamebearer';
4
- import { type TableRowCell } from '@/components/_v2';
5
- /** Shape of `Table`'s controlled filters map (columnKey → selected option ids). Re-exported so callers can hold the lifted state. */
6
- export type SymbolTableFilters = {
7
- [columnKey: string]: TableRowCell['rawValue'][];
8
- };
9
- export interface SymbolTableProps {
10
- rows: SymbolTableRow[];
11
- languages?: ProgrammingLanguages[] | null;
12
- /** Controlled column filters. Provide together with `onFiltersChange` to share the table's filters with the flame graph (PLAT-1001 #1). */
13
- filters?: SymbolTableFilters;
14
- onFiltersChange?: (filters: SymbolTableFilters) => void;
15
- }
16
- /**
17
- * Build a flame-graph-friendly name predicate from the table's lifted column filters. Returns `undefined` when no
18
- * filtering is needed so callers can pass it straight through to `FlameGraphCanvas` without an unnecessary identity churn.
19
- */
20
- export declare function buildJavaSymbolNamePredicate(filters: SymbolTableFilters | undefined, languages: ProgrammingLanguages[] | null | undefined): ((name: string) => boolean) | undefined;
21
- export declare const SymbolTable: FC<SymbolTableProps>;