@kestra-io/ui-libs 0.0.44 → 0.0.45

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kestra-io/ui-libs",
3
- "version": "v0.0.44",
3
+ "version": "v0.0.45",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src",
@@ -30,7 +30,7 @@
30
30
  <script>
31
31
  import {EVENTS} from "../../utils/constants.js";
32
32
  import ArrowExpand from "vue-material-design-icons/ArrowExpand.vue";
33
- import Webhook from "vue-material-design-icons/Webhook.vue";
33
+ import LightningBolt from "vue-material-design-icons/LightningBolt.vue";
34
34
  import {Handle} from "@vue-flow/core";
35
35
  import Tooltip from "../misc/Tooltip.vue";
36
36
 
@@ -39,7 +39,7 @@
39
39
  Tooltip,
40
40
  Handle,
41
41
  ArrowExpand,
42
- Webhook
42
+ LightningBolt
43
43
  },
44
44
  inheritAttrs: false,
45
45
  props: {
@@ -426,7 +426,7 @@ export default class VueFlowUtils {
426
426
  color: color,
427
427
  expandable: this.isExpandableTask(node, clusterByNodeUid, edgeReplacer, enableSubflowInteraction),
428
428
  isReadOnly: isReadOnlyTask,
429
- iconComponent: this.isCollapsedCluster(node) ? "webhook" : null,
429
+ iconComponent: this.isCollapsedCluster(node) ? "lightning-bolt" : null,
430
430
  executionId: node.executionId,
431
431
  unused: node.unused
432
432
  },