windmill-components 1.46.1 → 1.46.2

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.
@@ -96,7 +96,7 @@ function flowModuleToNode(parentIds, id, title, host, onClickDetail, lang, edgeL
96
96
  data: {
97
97
  html: `
98
98
  <div class="w-full flex justify-between items-center px-1">
99
- <div class="${wrapperWidth} text-left ellipsize text-2xs">
99
+ <div class="${wrapperWidth} text-left ellipsize text-2xs truncate">
100
100
  ${title}
101
101
  </div>
102
102
  <div class="flex items-center">
@@ -129,7 +129,7 @@ function flowModuleToLoop(modules, startLabel, parent = undefined) {
129
129
  const item = getConvertedFlowModule(module, loop.items);
130
130
  item && loop.items.push(item);
131
131
  });
132
- loop.items.push(createVirtualNode(getParentIds(loop.items), 'Collection of the results'));
132
+ loop.items.push(createVirtualNode(getParentIds(loop.items), "Collect iterations' results"));
133
133
  return loop;
134
134
  }
135
135
  function flowModuleToBranch(branches, edgesLabel, parent = undefined) {
@@ -1,5 +1,5 @@
1
1
  export const NODE = {
2
- width: 200,
2
+ width: 300,
3
3
  height: 35,
4
4
  gap: {
5
5
  horizontal: 40,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-components",
3
- "version": "1.46.1",
3
+ "version": "1.46.2",
4
4
  "devDependencies": {
5
5
  "@playwright/test": "^1.27.1",
6
6
  "@sveltejs/adapter-static": "^1.0.0-next.47",