@kestra-io/ui-libs 0.0.263 → 0.0.265

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 (83) hide show
  1. package/dist/{VueFlowUtils-D6fVYEkI.js → VueFlowUtils-DifPO0kH.js} +1229 -1261
  2. package/dist/VueFlowUtils-DifPO0kH.js.map +1 -0
  3. package/dist/VueFlowUtils-DjetWQIy.cjs +2 -0
  4. package/dist/VueFlowUtils-DjetWQIy.cjs.map +1 -0
  5. package/dist/components/index.d.ts +4 -0
  6. package/dist/components/index.d.ts.map +1 -1
  7. package/dist/components/misc/Collapsible.vue.d.ts.map +1 -1
  8. package/dist/components/misc/ElementCard.vue.d.ts +29 -0
  9. package/dist/components/misc/ElementCard.vue.d.ts.map +1 -0
  10. package/dist/components/misc/Status.vue.d.ts.map +1 -1
  11. package/dist/components/misc/SubgroupCard.vue.d.ts +24 -0
  12. package/dist/components/misc/SubgroupCard.vue.d.ts.map +1 -0
  13. package/dist/components/nodes/EdgeNode.vue.d.ts.map +1 -1
  14. package/dist/components/plugins/CollapsibleProperties.vue.d.ts.map +1 -1
  15. package/dist/components/plugins/PluginIndex.vue.d.ts +15 -11
  16. package/dist/components/plugins/PluginIndex.vue.d.ts.map +1 -1
  17. package/dist/components/plugins/PropertyDetail.vue.d.ts.map +1 -1
  18. package/dist/components/plugins/SchemaToHtml.vue.d.ts.map +1 -1
  19. package/dist/components/plugins_v2/CollapsiblePropertiesV2.vue.d.ts +39 -0
  20. package/dist/components/plugins_v2/CollapsiblePropertiesV2.vue.d.ts.map +1 -0
  21. package/dist/components/plugins_v2/CollapsibleV2.vue.d.ts +34 -0
  22. package/dist/components/plugins_v2/CollapsibleV2.vue.d.ts.map +1 -0
  23. package/dist/components/plugins_v2/DefinitionCollapsible.vue.d.ts +34 -0
  24. package/dist/components/plugins_v2/DefinitionCollapsible.vue.d.ts.map +1 -0
  25. package/dist/components/plugins_v2/PropertyBadges.vue.d.ts +13 -0
  26. package/dist/components/plugins_v2/PropertyBadges.vue.d.ts.map +1 -0
  27. package/dist/components/plugins_v2/PropertyDetailV2.vue.d.ts +43 -0
  28. package/dist/components/plugins_v2/PropertyDetailV2.vue.d.ts.map +1 -0
  29. package/dist/components/plugins_v2/PropertyMeta.vue.d.ts +10 -0
  30. package/dist/components/plugins_v2/PropertyMeta.vue.d.ts.map +1 -0
  31. package/dist/components/plugins_v2/SchemaToHtmlV2.vue.d.ts +50 -0
  32. package/dist/components/plugins_v2/SchemaToHtmlV2.vue.d.ts.map +1 -0
  33. package/dist/components/topology/Topology.vue.d.ts +1 -1
  34. package/dist/composables/usePluginElementCounts.d.ts +13 -0
  35. package/dist/composables/usePluginElementCounts.d.ts.map +1 -0
  36. package/dist/index.d.ts +2 -1
  37. package/dist/index.d.ts.map +1 -1
  38. package/dist/kestra-index.cjs.js +15 -13
  39. package/dist/kestra-index.cjs.js.map +1 -1
  40. package/dist/kestra-index.es.js +4940 -4087
  41. package/dist/kestra-index.es.js.map +1 -1
  42. package/dist/kestra-vueflowutils.cjs.js +1 -1
  43. package/dist/kestra-vueflowutils.es.js +10 -10
  44. package/dist/ui-libs.css +1 -1
  45. package/dist/utils/Utils.d.ts +2 -0
  46. package/dist/utils/Utils.d.ts.map +1 -1
  47. package/dist/utils/VueFlowUtils.d.ts.map +1 -1
  48. package/dist/utils/constants.d.ts +0 -39
  49. package/dist/utils/constants.d.ts.map +1 -1
  50. package/dist/utils/plugins.d.ts +30 -0
  51. package/dist/utils/plugins.d.ts.map +1 -1
  52. package/dist/utils/schemaUtils.d.ts +6 -0
  53. package/dist/utils/schemaUtils.d.ts.map +1 -1
  54. package/package.json +1 -1
  55. package/src/components/index.ts +4 -0
  56. package/src/components/misc/Collapsible.vue +7 -1
  57. package/src/components/misc/ElementCard.vue +136 -0
  58. package/src/components/misc/Status.vue +0 -1
  59. package/src/components/misc/SubgroupCard.vue +188 -0
  60. package/src/components/nodes/EdgeNode.vue +17 -1
  61. package/src/components/plugins/CollapsibleProperties.vue +2 -13
  62. package/src/components/plugins/PluginIndex.vue +169 -40
  63. package/src/components/plugins/PropertyDetail.vue +5 -5
  64. package/src/components/plugins/SchemaToHtml.vue +7 -3
  65. package/src/components/plugins_v2/CollapsiblePropertiesV2.vue +183 -0
  66. package/src/components/plugins_v2/CollapsibleV2.vue +121 -0
  67. package/src/components/plugins_v2/DefinitionCollapsible.vue +208 -0
  68. package/src/components/plugins_v2/PropertyBadges.vue +93 -0
  69. package/src/components/plugins_v2/PropertyDetailV2.vue +127 -0
  70. package/src/components/plugins_v2/PropertyMeta.vue +169 -0
  71. package/src/components/plugins_v2/SchemaToHtmlV2.vue +213 -0
  72. package/src/composables/usePluginElementCounts.ts +16 -0
  73. package/src/index.ts +2 -1
  74. package/src/scss/_variables.scss +69 -0
  75. package/src/utils/FlowYamlUtils.test.ts +38 -2
  76. package/src/utils/Utils.ts +5 -0
  77. package/src/utils/VueFlowUtils.ts +10 -2
  78. package/src/utils/constants.ts +0 -45
  79. package/src/utils/plugins.ts +76 -1
  80. package/src/utils/schemaUtils.ts +45 -1
  81. package/dist/VueFlowUtils-CF-L3pYu.cjs +0 -2
  82. package/dist/VueFlowUtils-CF-L3pYu.cjs.map +0 -1
  83. package/dist/VueFlowUtils-D6fVYEkI.js.map +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.