@odigos/ui-kit 0.0.41 → 0.0.42

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 (34) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/lib/components/data-card/data-card-fields/index.d.ts +1 -0
  3. package/lib/components/data-card/data-card-fields/override-runtime.d.ts +9 -0
  4. package/lib/components/dropdown/index.d.ts +4 -2
  5. package/lib/components.js +8 -8
  6. package/lib/constants/index.d.ts +1 -0
  7. package/lib/constants/sources/index.d.ts +4 -0
  8. package/lib/constants/strings/index.d.ts +3 -0
  9. package/lib/constants.js +1 -1
  10. package/lib/containers.js +15 -15
  11. package/lib/functions/index.d.ts +1 -0
  12. package/lib/functions/is-valid-version/index.d.ts +1 -0
  13. package/lib/functions.js +5 -5
  14. package/lib/hooks.js +3 -3
  15. package/lib/icons.js +6 -7
  16. package/lib/{index-DLH1IvyS.js → index-BJn6pgjP.js} +2 -2
  17. package/lib/{index-B1h5g0Hl.js → index-BMkvXaM3.js} +7 -32
  18. package/lib/{index-C-84NaCL.js → index-Biu8ddMV.js} +78 -16
  19. package/lib/{index-BeVb1H9n.js → index-BvZgTeSU.js} +1369 -36
  20. package/lib/{index-BrriZrlp.js → index-CN-rJ_ZV.js} +3 -4
  21. package/lib/{index-zXCdgpRU.js → index-CQ2z02Y8.js} +1 -1
  22. package/lib/{index-Cau7bWmr.js → index-CS6xAoTK.js} +9 -2
  23. package/lib/{index-CBgnxpkW.js → index-CmGKwhgi.js} +1 -1
  24. package/lib/index-DtSbC1Cl.js +62 -0
  25. package/lib/{index-Cph4pNkb.js → index-VLuOq8HF.js} +4 -4
  26. package/lib/snippets.js +7 -8
  27. package/lib/store.js +1 -1
  28. package/lib/theme.js +1 -1
  29. package/lib/types/sources/index.d.ts +8 -2
  30. package/lib/{useSourceSelectionFormData-CrtSxE3G.js → useSourceSelectionFormData-xhTNmN-P.js} +2 -2
  31. package/lib/{useTransition-BumZECD3.js → useTransition-BOwXSp5e.js} +1 -1
  32. package/package.json +1 -1
  33. package/lib/index-BdZq2vdJ.js +0 -1297
  34. package/lib/index-CDHYBh8C.js +0 -11
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- import { T as Theme } from './index-BdZq2vdJ.js';
3
-
4
- const EditIcon = ({ size = 16, fill: f, rotate = 0, onClick }) => {
5
- const theme = Theme.useTheme();
6
- const fill = f || theme.text.secondary;
7
- return (React.createElement("svg", { width: size, height: size, viewBox: '0 0 16 16', xmlns: 'http://www.w3.org/2000/svg', fill: 'none', style: { transform: `rotate(${rotate}deg)` }, onClick: onClick },
8
- React.createElement("path", { stroke: fill, strokeLinecap: 'round', strokeLinejoin: 'round', d: 'M8 14C10.6787 11.8171 10.7261 16.2383 14 12.6667M2 13.997L3.81777 13.9999C4.07739 14.0003 4.2072 14.0005 4.32937 13.9712C4.43769 13.9452 4.54125 13.9022 4.63623 13.8438C4.74337 13.778 4.83516 13.6858 5.01874 13.5014L13.6676 4.81451C14.021 4.4596 14.1088 3.91087 13.8396 3.47722C13.5142 2.95298 13.0691 2.50221 12.5511 2.16754C12.136 1.8993 11.5908 1.95805 11.2417 2.30864L2.53993 11.0487C2.36296 11.2264 2.27447 11.3153 2.21029 11.4188C2.15338 11.5105 2.11072 11.6104 2.08378 11.7151C2.05341 11.8331 2.05031 11.9588 2.04411 12.2101L2 13.997Z' })));
9
- };
10
-
11
- export { EditIcon as E };