@odigos/ui-kit 0.0.212 → 0.0.214

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 (59) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/lib/chunks/index-CIjqAfew.js +3 -0
  3. package/lib/chunks/ui-components-Cu9XlyM0.js +2391 -0
  4. package/lib/components/_v2/badge/index.d.ts +2 -0
  5. package/lib/components/_v2/cards/section-card/index.d.ts +1 -0
  6. package/lib/components/_v2/checkbox/index.d.ts +5 -1
  7. package/lib/components/_v2/field-message/index.d.ts +1 -0
  8. package/lib/components/_v2/field-title/index.d.ts +2 -0
  9. package/lib/components/_v2/input/index.d.ts +4 -3
  10. package/lib/components/_v2/input-list/index.d.ts +5 -3
  11. package/lib/components/_v2/input-table/index.d.ts +5 -3
  12. package/lib/components/_v2/textarea/index.d.ts +4 -3
  13. package/lib/components/_v2/toggle/index.d.ts +5 -1
  14. package/lib/components/styled.d.ts +3 -6
  15. package/lib/components/tooltip/index.d.ts +1 -0
  16. package/lib/components/v2.js +1 -1
  17. package/lib/components.js +1 -1
  18. package/lib/constants.js +1 -1
  19. package/lib/containers/_v2/_drawers/add-rule-drawer/index.d.ts +1 -1
  20. package/lib/containers/_v2/_drawers/add-source-drawer/index.d.ts +1 -4
  21. package/lib/containers/_v2/_drawers/add-source-drawer/namespaces-column/index.d.ts +2 -1
  22. package/lib/containers/_v2/_drawers/add-source-drawer/types.d.ts +3 -0
  23. package/lib/containers/_v2/_drawers/add-source-drawer/workloads-column/index.d.ts +2 -1
  24. package/lib/containers/_v2/_forms/add-action-form/context.d.ts +18 -0
  25. package/lib/containers/_v2/_forms/add-action-form/index.d.ts +2 -6
  26. package/lib/containers/_v2/_forms/add-rule-form/context.d.ts +18 -0
  27. package/lib/containers/_v2/_forms/add-rule-form/index.d.ts +2 -6
  28. package/lib/containers/_v2/_forms/add-source-form/context.d.ts +21 -0
  29. package/lib/containers/_v2/_forms/add-source-form/index.d.ts +1 -0
  30. package/lib/containers/_v2/_forms/index.d.ts +1 -0
  31. package/lib/containers/service-map/helpers/build-map-nodes.d.ts +2 -0
  32. package/lib/containers/service-map/index.d.ts +1 -0
  33. package/lib/containers/v2.js +40 -40
  34. package/lib/containers.js +116 -116
  35. package/lib/contexts.js +1 -1
  36. package/lib/functions/deep-values/index.d.ts +2 -0
  37. package/lib/functions/get-virtual-service-icon/index.d.ts +2 -0
  38. package/lib/functions/index.d.ts +2 -0
  39. package/lib/functions.js +1 -1
  40. package/lib/hooks/useGenericForm.d.ts +2 -0
  41. package/lib/hooks.js +1 -1
  42. package/lib/icons/programming-languages/aws-logo/index.d.ts +2 -0
  43. package/lib/icons/programming-languages/index.d.ts +1 -0
  44. package/lib/icons.js +1 -1
  45. package/lib/snippets/_v2/wide-drawer/column-list-item/index.d.ts +1 -0
  46. package/lib/snippets/_v2/yaml-section-card/index.d.ts +1 -0
  47. package/lib/snippets/react-flow/flow.d.ts +1 -0
  48. package/lib/snippets.js +1 -1
  49. package/lib/store.js +1 -1
  50. package/lib/theme.js +1 -1
  51. package/lib/types/common/index.d.ts +307 -3
  52. package/lib/types/service-map/index.d.ts +5 -0
  53. package/lib/types.js +1 -1
  54. package/lib/visuals.js +1 -1
  55. package/package.json +10 -10
  56. package/lib/chunks/index-CTFaJvLO.js +0 -3
  57. package/lib/chunks/ui-components-DQ5eBxQh.js +0 -2387
  58. package/lib/containers/_v2/_drawers/add-action-drawer/helpers.d.ts +0 -7
  59. package/lib/containers/_v2/_drawers/add-rule-drawer/helpers.d.ts +0 -7
@@ -1,7 +0,0 @@
1
- import { GenericFormResult } from '@/hooks';
2
- import { type ActionFormData, type ActionOption } from '@/types';
3
- export declare const INITIAL_FORM_DATA: ActionFormData;
4
- export declare const validateForm: (selectedOption: ActionOption | null, genericForm: GenericFormResult<ActionFormData>) => {
5
- isOk: boolean;
6
- preparedFormData: ActionFormData;
7
- };
@@ -1,7 +0,0 @@
1
- import { GenericFormResult } from '@/hooks';
2
- import { type InstrumentationRuleFormData, type InstrumentationRuleOption } from '@/types';
3
- export declare const INITIAL_FORM_DATA: InstrumentationRuleFormData;
4
- export declare const validateForm: (selectedOption: InstrumentationRuleOption | null, genericForm: GenericFormResult<InstrumentationRuleFormData>) => {
5
- isOk: boolean;
6
- preparedFormData: InstrumentationRuleFormData;
7
- };