@vention/machine-ui 3.27.0

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 (1070) hide show
  1. package/.babelrc +12 -0
  2. package/.storybook/blocks/work-in-progress.tsx +12 -0
  3. package/.storybook/helpers/go-to-icon-gallery.tsx +23 -0
  4. package/.storybook/main.ts +38 -0
  5. package/.storybook/manager.ts +7 -0
  6. package/.storybook/preview-head.html +4 -0
  7. package/.storybook/preview.tsx +55 -0
  8. package/.storybook/theme.ts +25 -0
  9. package/CHANGELOG.md +2287 -0
  10. package/Dockerfile +11 -0
  11. package/README.md +39 -0
  12. package/ecs-task-definition.json +28 -0
  13. package/eslint.config.js +37 -0
  14. package/jest.config.ts +33 -0
  15. package/package.json +20 -0
  16. package/project.json +164 -0
  17. package/src/documentation/code-conventions.mdx +98 -0
  18. package/src/documentation/design-system/colors.mdx +58 -0
  19. package/src/documentation/design-system/how-to-choose-color.mdx +63 -0
  20. package/src/documentation/design-system/palette.mdx +159 -0
  21. package/src/documentation/design-system/spacing.mdx +61 -0
  22. package/src/documentation/design-system/typography.mdx +63 -0
  23. package/src/documentation/getting-started.mdx +154 -0
  24. package/src/documentation/icons.mdx +52 -0
  25. package/src/documentation/installation-and-usage.mdx +148 -0
  26. package/src/documentation/introduction.mdx +96 -0
  27. package/src/global-styles.css +9 -0
  28. package/src/index.ts +54 -0
  29. package/src/lib/components/shared/styles/input-styles.ts +123 -0
  30. package/src/lib/components/shared/types/input-types.ts +9 -0
  31. package/src/lib/components/vention-alert/vention-alert-controls.tsx +57 -0
  32. package/src/lib/components/vention-alert/vention-alert-utils.ts +27 -0
  33. package/src/lib/components/vention-alert/vention-alert.stories.tsx +137 -0
  34. package/src/lib/components/vention-alert/vention-alert.test.tsx +185 -0
  35. package/src/lib/components/vention-alert/vention-alert.tsx +295 -0
  36. package/src/lib/components/vention-badge/vention-badge.stories.tsx +60 -0
  37. package/src/lib/components/vention-badge/vention-badge.test.tsx +59 -0
  38. package/src/lib/components/vention-badge/vention-badge.tsx +197 -0
  39. package/src/lib/components/vention-banner/vention-banner.stories.tsx +124 -0
  40. package/src/lib/components/vention-banner/vention-banner.test.tsx +72 -0
  41. package/src/lib/components/vention-banner/vention-banner.tsx +123 -0
  42. package/src/lib/components/vention-button/button-utils.ts +143 -0
  43. package/src/lib/components/vention-button/vention-button.stories.tsx +89 -0
  44. package/src/lib/components/vention-button/vention-button.test.tsx +182 -0
  45. package/src/lib/components/vention-button/vention-button.tsx +151 -0
  46. package/src/lib/components/vention-button/vention-dropdown-button/vention-dropdown-button.stories.tsx +55 -0
  47. package/src/lib/components/vention-button/vention-dropdown-button/vention-dropdown-button.test.tsx +96 -0
  48. package/src/lib/components/vention-button/vention-dropdown-button/vention-dropdown-button.tsx +94 -0
  49. package/src/lib/components/vention-button/vention-icon-button/vention-icon-button.stories.tsx +55 -0
  50. package/src/lib/components/vention-button/vention-icon-button/vention-icon-button.test.tsx +227 -0
  51. package/src/lib/components/vention-button/vention-icon-button/vention-icon-button.tsx +60 -0
  52. package/src/lib/components/vention-callout/vention-callout.stories.tsx +82 -0
  53. package/src/lib/components/vention-callout/vention-callout.test.tsx +142 -0
  54. package/src/lib/components/vention-callout/vention-callout.tsx +199 -0
  55. package/src/lib/components/vention-checkbox/vention-checkbox-icon.tsx +64 -0
  56. package/src/lib/components/vention-checkbox/vention-checkbox.stories.tsx +121 -0
  57. package/src/lib/components/vention-checkbox/vention-checkbox.test.tsx +468 -0
  58. package/src/lib/components/vention-checkbox/vention-checkbox.tsx +321 -0
  59. package/src/lib/components/vention-combobox/vention-combobox.stories.tsx +181 -0
  60. package/src/lib/components/vention-combobox/vention-combobox.test.tsx +157 -0
  61. package/src/lib/components/vention-combobox/vention-combobox.tsx +374 -0
  62. package/src/lib/components/vention-counter/vention-counter.stories.tsx +19 -0
  63. package/src/lib/components/vention-counter/vention-counter.test.tsx +116 -0
  64. package/src/lib/components/vention-counter/vention-counter.tsx +165 -0
  65. package/src/lib/components/vention-draggable/vention-draggable.stories.tsx +47 -0
  66. package/src/lib/components/vention-draggable/vention-draggable.test.tsx +54 -0
  67. package/src/lib/components/vention-draggable/vention-draggable.tsx +120 -0
  68. package/src/lib/components/vention-drawer/vention-drawer.stories.tsx +80 -0
  69. package/src/lib/components/vention-drawer/vention-drawer.test.tsx +74 -0
  70. package/src/lib/components/vention-drawer/vention-drawer.tsx +105 -0
  71. package/src/lib/components/vention-dropzone/vention-dropzone-utils.tsx +124 -0
  72. package/src/lib/components/vention-dropzone/vention-dropzone.stories.tsx +69 -0
  73. package/src/lib/components/vention-dropzone/vention-dropzone.test.tsx +136 -0
  74. package/src/lib/components/vention-dropzone/vention-dropzone.tsx +234 -0
  75. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-analytics.tsx +18 -0
  76. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-communication.tsx +35 -0
  77. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-conveyor.tsx +32 -0
  78. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-input-output.tsx +10 -0
  79. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-linear.tsx +22 -0
  80. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-pneumatic.tsx +12 -0
  81. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-programming.tsx +24 -0
  82. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-robot-arm.tsx +29 -0
  83. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-rotary.tsx +22 -0
  84. package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-state-machine.tsx +35 -0
  85. package/src/lib/components/vention-icon/_generated/duotone-icons/position-rx.tsx +16 -0
  86. package/src/lib/components/vention-icon/_generated/duotone-icons/position-ry.tsx +16 -0
  87. package/src/lib/components/vention-icon/_generated/duotone-icons/position-rz.tsx +16 -0
  88. package/src/lib/components/vention-icon/_generated/duotone-icons/position-x.tsx +12 -0
  89. package/src/lib/components/vention-icon/_generated/duotone-icons/position-y.tsx +12 -0
  90. package/src/lib/components/vention-icon/_generated/duotone-icons/position-z.tsx +12 -0
  91. package/src/lib/components/vention-icon/_generated/icon-types.ts +460 -0
  92. package/src/lib/components/vention-icon/_generated/icons/ac-motor.tsx +16 -0
  93. package/src/lib/components/vention-icon/_generated/icons/access-point.tsx +13 -0
  94. package/src/lib/components/vention-icon/_generated/icons/actuator.tsx +19 -0
  95. package/src/lib/components/vention-icon/_generated/icons/actuator1.tsx +21 -0
  96. package/src/lib/components/vention-icon/_generated/icons/actuator10.tsx +24 -0
  97. package/src/lib/components/vention-icon/_generated/icons/actuator2.tsx +23 -0
  98. package/src/lib/components/vention-icon/_generated/icons/actuator3.tsx +27 -0
  99. package/src/lib/components/vention-icon/_generated/icons/actuator4.tsx +37 -0
  100. package/src/lib/components/vention-icon/_generated/icons/actuator5.tsx +37 -0
  101. package/src/lib/components/vention-icon/_generated/icons/actuator6.tsx +17 -0
  102. package/src/lib/components/vention-icon/_generated/icons/actuator7.tsx +12 -0
  103. package/src/lib/components/vention-icon/_generated/icons/actuator8.tsx +28 -0
  104. package/src/lib/components/vention-icon/_generated/icons/actuator9.tsx +25 -0
  105. package/src/lib/components/vention-icon/_generated/icons/adjustments-alt-filled.tsx +23 -0
  106. package/src/lib/components/vention-icon/_generated/icons/adjustments-alt.tsx +13 -0
  107. package/src/lib/components/vention-icon/_generated/icons/adjustments-filled.tsx +26 -0
  108. package/src/lib/components/vention-icon/_generated/icons/adjustments-horizontal.tsx +13 -0
  109. package/src/lib/components/vention-icon/_generated/icons/alarm-bell-filled.tsx +23 -0
  110. package/src/lib/components/vention-icon/_generated/icons/alarm-bell-ringing.tsx +13 -0
  111. package/src/lib/components/vention-icon/_generated/icons/alarm-bell.tsx +13 -0
  112. package/src/lib/components/vention-icon/_generated/icons/alarm.tsx +13 -0
  113. package/src/lib/components/vention-icon/_generated/icons/alert-circle-filled.tsx +11 -0
  114. package/src/lib/components/vention-icon/_generated/icons/alert-circle.tsx +13 -0
  115. package/src/lib/components/vention-icon/_generated/icons/alert-triangle-filled.tsx +11 -0
  116. package/src/lib/components/vention-icon/_generated/icons/alert-triangle.tsx +13 -0
  117. package/src/lib/components/vention-icon/_generated/icons/analytics.tsx +13 -0
  118. package/src/lib/components/vention-icon/_generated/icons/angle.tsx +13 -0
  119. package/src/lib/components/vention-icon/_generated/icons/apps-2.tsx +31 -0
  120. package/src/lib/components/vention-icon/_generated/icons/apps.tsx +13 -0
  121. package/src/lib/components/vention-icon/_generated/icons/arrow-bar-both.tsx +13 -0
  122. package/src/lib/components/vention-icon/_generated/icons/arrow-bar-down.tsx +8 -0
  123. package/src/lib/components/vention-icon/_generated/icons/arrow-bar-left.tsx +8 -0
  124. package/src/lib/components/vention-icon/_generated/icons/arrow-bar-right.tsx +8 -0
  125. package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-down.tsx +8 -0
  126. package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-left.tsx +8 -0
  127. package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-right.tsx +8 -0
  128. package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-up.tsx +8 -0
  129. package/src/lib/components/vention-icon/_generated/icons/arrow-bar-up.tsx +8 -0
  130. package/src/lib/components/vention-icon/_generated/icons/arrow-big-down.tsx +13 -0
  131. package/src/lib/components/vention-icon/_generated/icons/arrow-big-left.tsx +13 -0
  132. package/src/lib/components/vention-icon/_generated/icons/arrow-big-right-lines.tsx +22 -0
  133. package/src/lib/components/vention-icon/_generated/icons/arrow-big-right.tsx +13 -0
  134. package/src/lib/components/vention-icon/_generated/icons/arrow-big-up.tsx +13 -0
  135. package/src/lib/components/vention-icon/_generated/icons/arrow-left-from-arc.tsx +22 -0
  136. package/src/lib/components/vention-icon/_generated/icons/arrow-left.tsx +8 -0
  137. package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-down.tsx +8 -0
  138. package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-left.tsx +8 -0
  139. package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-right.tsx +8 -0
  140. package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-up.tsx +8 -0
  141. package/src/lib/components/vention-icon/_generated/icons/arrow-right.tsx +8 -0
  142. package/src/lib/components/vention-icon/_generated/icons/arrow-up-right.tsx +9 -0
  143. package/src/lib/components/vention-icon/_generated/icons/arrows-diagonal-minimize-1.tsx +11 -0
  144. package/src/lib/components/vention-icon/_generated/icons/arrows-diagonal.tsx +11 -0
  145. package/src/lib/components/vention-icon/_generated/icons/arrows-diff.tsx +13 -0
  146. package/src/lib/components/vention-icon/_generated/icons/arrows-exchange-1.tsx +9 -0
  147. package/src/lib/components/vention-icon/_generated/icons/arrows-exchange.tsx +9 -0
  148. package/src/lib/components/vention-icon/_generated/icons/arrows-maximize.tsx +13 -0
  149. package/src/lib/components/vention-icon/_generated/icons/arrows-minimize.tsx +13 -0
  150. package/src/lib/components/vention-icon/_generated/icons/arrows-move.tsx +13 -0
  151. package/src/lib/components/vention-icon/_generated/icons/arrows-right-left.tsx +18 -0
  152. package/src/lib/components/vention-icon/_generated/icons/assembly.tsx +19 -0
  153. package/src/lib/components/vention-icon/_generated/icons/asset.tsx +13 -0
  154. package/src/lib/components/vention-icon/_generated/icons/axis.tsx +13 -0
  155. package/src/lib/components/vention-icon/_generated/icons/belt-actuator-2.tsx +25 -0
  156. package/src/lib/components/vention-icon/_generated/icons/belt-actuator-3.tsx +26 -0
  157. package/src/lib/components/vention-icon/_generated/icons/belt-actuator.tsx +25 -0
  158. package/src/lib/components/vention-icon/_generated/icons/binary-tree-2.tsx +13 -0
  159. package/src/lib/components/vention-icon/_generated/icons/binary-tree.tsx +13 -0
  160. package/src/lib/components/vention-icon/_generated/icons/binary.tsx +13 -0
  161. package/src/lib/components/vention-icon/_generated/icons/blend.tsx +11 -0
  162. package/src/lib/components/vention-icon/_generated/icons/bolt-filled.tsx +11 -0
  163. package/src/lib/components/vention-icon/_generated/icons/bolt.tsx +8 -0
  164. package/src/lib/components/vention-icon/_generated/icons/bomb.tsx +13 -0
  165. package/src/lib/components/vention-icon/_generated/icons/book-2.tsx +13 -0
  166. package/src/lib/components/vention-icon/_generated/icons/book.tsx +13 -0
  167. package/src/lib/components/vention-icon/_generated/icons/bookmark.tsx +13 -0
  168. package/src/lib/components/vention-icon/_generated/icons/books.tsx +13 -0
  169. package/src/lib/components/vention-icon/_generated/icons/braces.tsx +13 -0
  170. package/src/lib/components/vention-icon/_generated/icons/brand-python.tsx +13 -0
  171. package/src/lib/components/vention-icon/_generated/icons/bug.tsx +13 -0
  172. package/src/lib/components/vention-icon/_generated/icons/building-broadcast-tower.tsx +13 -0
  173. package/src/lib/components/vention-icon/_generated/icons/building-community.tsx +13 -0
  174. package/src/lib/components/vention-icon/_generated/icons/building-factory-2.tsx +13 -0
  175. package/src/lib/components/vention-icon/_generated/icons/building-skyscraper.tsx +13 -0
  176. package/src/lib/components/vention-icon/_generated/icons/building.tsx +13 -0
  177. package/src/lib/components/vention-icon/_generated/icons/button-black.tsx +13 -0
  178. package/src/lib/components/vention-icon/_generated/icons/button-white.tsx +13 -0
  179. package/src/lib/components/vention-icon/_generated/icons/calendar-month.tsx +13 -0
  180. package/src/lib/components/vention-icon/_generated/icons/camera.tsx +19 -0
  181. package/src/lib/components/vention-icon/_generated/icons/capture.tsx +13 -0
  182. package/src/lib/components/vention-icon/_generated/icons/caret-down-filled.tsx +11 -0
  183. package/src/lib/components/vention-icon/_generated/icons/caret-down.tsx +8 -0
  184. package/src/lib/components/vention-icon/_generated/icons/caret-left-filled.tsx +11 -0
  185. package/src/lib/components/vention-icon/_generated/icons/caret-left.tsx +8 -0
  186. package/src/lib/components/vention-icon/_generated/icons/caret-right-filled.tsx +11 -0
  187. package/src/lib/components/vention-icon/_generated/icons/caret-right.tsx +8 -0
  188. package/src/lib/components/vention-icon/_generated/icons/caret-up-filled.tsx +11 -0
  189. package/src/lib/components/vention-icon/_generated/icons/caret-up.tsx +8 -0
  190. package/src/lib/components/vention-icon/_generated/icons/category-filled.tsx +30 -0
  191. package/src/lib/components/vention-icon/_generated/icons/category.tsx +16 -0
  192. package/src/lib/components/vention-icon/_generated/icons/cell-signal-full.tsx +13 -0
  193. package/src/lib/components/vention-icon/_generated/icons/cell-signal-low.tsx +13 -0
  194. package/src/lib/components/vention-icon/_generated/icons/cell-signal-off.tsx +13 -0
  195. package/src/lib/components/vention-icon/_generated/icons/chart-dots-2.tsx +13 -0
  196. package/src/lib/components/vention-icon/_generated/icons/check.tsx +8 -0
  197. package/src/lib/components/vention-icon/_generated/icons/checkbox.tsx +20 -0
  198. package/src/lib/components/vention-icon/_generated/icons/checks.tsx +8 -0
  199. package/src/lib/components/vention-icon/_generated/icons/chevron-down.tsx +8 -0
  200. package/src/lib/components/vention-icon/_generated/icons/chevron-left.tsx +8 -0
  201. package/src/lib/components/vention-icon/_generated/icons/chevron-right.tsx +8 -0
  202. package/src/lib/components/vention-icon/_generated/icons/chevron-up.tsx +8 -0
  203. package/src/lib/components/vention-icon/_generated/icons/chevrons-down.tsx +8 -0
  204. package/src/lib/components/vention-icon/_generated/icons/chevrons-left.tsx +8 -0
  205. package/src/lib/components/vention-icon/_generated/icons/chevrons-right.tsx +8 -0
  206. package/src/lib/components/vention-icon/_generated/icons/chevrons-up.tsx +8 -0
  207. package/src/lib/components/vention-icon/_generated/icons/circle-arrow-up.tsx +13 -0
  208. package/src/lib/components/vention-icon/_generated/icons/circle-check-filled.tsx +11 -0
  209. package/src/lib/components/vention-icon/_generated/icons/circle-check.tsx +13 -0
  210. package/src/lib/components/vention-icon/_generated/icons/circle-minus.tsx +13 -0
  211. package/src/lib/components/vention-icon/_generated/icons/circle-plus.tsx +13 -0
  212. package/src/lib/components/vention-icon/_generated/icons/circle-square.tsx +19 -0
  213. package/src/lib/components/vention-icon/_generated/icons/circle-x-filled.tsx +11 -0
  214. package/src/lib/components/vention-icon/_generated/icons/circle-x.tsx +13 -0
  215. package/src/lib/components/vention-icon/_generated/icons/clock.tsx +13 -0
  216. package/src/lib/components/vention-icon/_generated/icons/clockwise-1.tsx +13 -0
  217. package/src/lib/components/vention-icon/_generated/icons/clockwise-2.tsx +13 -0
  218. package/src/lib/components/vention-icon/_generated/icons/close.tsx +8 -0
  219. package/src/lib/components/vention-icon/_generated/icons/cloud-computing.tsx +13 -0
  220. package/src/lib/components/vention-icon/_generated/icons/cloud-data-connection.tsx +13 -0
  221. package/src/lib/components/vention-icon/_generated/icons/cloud-download-1.tsx +15 -0
  222. package/src/lib/components/vention-icon/_generated/icons/cloud-download-off.tsx +37 -0
  223. package/src/lib/components/vention-icon/_generated/icons/cloud-download.tsx +13 -0
  224. package/src/lib/components/vention-icon/_generated/icons/cloud-off.tsx +13 -0
  225. package/src/lib/components/vention-icon/_generated/icons/cloud-upload.tsx +13 -0
  226. package/src/lib/components/vention-icon/_generated/icons/cloud.tsx +13 -0
  227. package/src/lib/components/vention-icon/_generated/icons/code.tsx +8 -0
  228. package/src/lib/components/vention-icon/_generated/icons/command-do.tsx +11 -0
  229. package/src/lib/components/vention-icon/_generated/icons/command-elif.tsx +11 -0
  230. package/src/lib/components/vention-icon/_generated/icons/command-else.tsx +11 -0
  231. package/src/lib/components/vention-icon/_generated/icons/command-if.tsx +11 -0
  232. package/src/lib/components/vention-icon/_generated/icons/condition-tree.tsx +13 -0
  233. package/src/lib/components/vention-icon/_generated/icons/confetti.tsx +13 -0
  234. package/src/lib/components/vention-icon/_generated/icons/connection.tsx +12 -0
  235. package/src/lib/components/vention-icon/_generated/icons/conveyor.tsx +31 -0
  236. package/src/lib/components/vention-icon/_generated/icons/copy.tsx +13 -0
  237. package/src/lib/components/vention-icon/_generated/icons/corner-up-left.tsx +20 -0
  238. package/src/lib/components/vention-icon/_generated/icons/corner-up-right.tsx +20 -0
  239. package/src/lib/components/vention-icon/_generated/icons/counterclockwise-1.tsx +13 -0
  240. package/src/lib/components/vention-icon/_generated/icons/counterclockwise-2.tsx +13 -0
  241. package/src/lib/components/vention-icon/_generated/icons/cpu-2.tsx +13 -0
  242. package/src/lib/components/vention-icon/_generated/icons/cpu.tsx +13 -0
  243. package/src/lib/components/vention-icon/_generated/icons/cube-plus.tsx +13 -0
  244. package/src/lib/components/vention-icon/_generated/icons/cube-send.tsx +13 -0
  245. package/src/lib/components/vention-icon/_generated/icons/cube.tsx +13 -0
  246. package/src/lib/components/vention-icon/_generated/icons/custom-gear-fill.tsx +11 -0
  247. package/src/lib/components/vention-icon/_generated/icons/custom-help-bold-filled.tsx +13 -0
  248. package/src/lib/components/vention-icon/_generated/icons/custom-help-bold.tsx +22 -0
  249. package/src/lib/components/vention-icon/_generated/icons/custom-help-fill.tsx +13 -0
  250. package/src/lib/components/vention-icon/_generated/icons/custom-help.tsx +20 -0
  251. package/src/lib/components/vention-icon/_generated/icons/custom-info-1.tsx +13 -0
  252. package/src/lib/components/vention-icon/_generated/icons/custom-info-bold-filled.tsx +13 -0
  253. package/src/lib/components/vention-icon/_generated/icons/custom-info-bold.tsx +22 -0
  254. package/src/lib/components/vention-icon/_generated/icons/custom-info.tsx +20 -0
  255. package/src/lib/components/vention-icon/_generated/icons/custom-point-to-point.tsx +16 -0
  256. package/src/lib/components/vention-icon/_generated/icons/custom-rocket-fat.tsx +35 -0
  257. package/src/lib/components/vention-icon/_generated/icons/custom-rocket.tsx +31 -0
  258. package/src/lib/components/vention-icon/_generated/icons/dashboard.tsx +11 -0
  259. package/src/lib/components/vention-icon/_generated/icons/decline.tsx +9 -0
  260. package/src/lib/components/vention-icon/_generated/icons/device-laptop.tsx +13 -0
  261. package/src/lib/components/vention-icon/_generated/icons/device-tv.tsx +13 -0
  262. package/src/lib/components/vention-icon/_generated/icons/devices-2.tsx +13 -0
  263. package/src/lib/components/vention-icon/_generated/icons/dimensions.tsx +25 -0
  264. package/src/lib/components/vention-icon/_generated/icons/dots-vertical.tsx +25 -0
  265. package/src/lib/components/vention-icon/_generated/icons/dots.tsx +25 -0
  266. package/src/lib/components/vention-icon/_generated/icons/download-off.tsx +13 -0
  267. package/src/lib/components/vention-icon/_generated/icons/download.tsx +13 -0
  268. package/src/lib/components/vention-icon/_generated/icons/edit.tsx +13 -0
  269. package/src/lib/components/vention-icon/_generated/icons/electric-actuator.tsx +14 -0
  270. package/src/lib/components/vention-icon/_generated/icons/exclamation-mark.tsx +8 -0
  271. package/src/lib/components/vention-icon/_generated/icons/external-link.tsx +13 -0
  272. package/src/lib/components/vention-icon/_generated/icons/eye-closed.tsx +13 -0
  273. package/src/lib/components/vention-icon/_generated/icons/eye.tsx +19 -0
  274. package/src/lib/components/vention-icon/_generated/icons/file-3-d.tsx +13 -0
  275. package/src/lib/components/vention-icon/_generated/icons/file-code.tsx +13 -0
  276. package/src/lib/components/vention-icon/_generated/icons/file-description.tsx +13 -0
  277. package/src/lib/components/vention-icon/_generated/icons/file-download.tsx +13 -0
  278. package/src/lib/components/vention-icon/_generated/icons/file-type-pdf.tsx +13 -0
  279. package/src/lib/components/vention-icon/_generated/icons/file-upload.tsx +13 -0
  280. package/src/lib/components/vention-icon/_generated/icons/file-wrong.tsx +28 -0
  281. package/src/lib/components/vention-icon/_generated/icons/file.tsx +13 -0
  282. package/src/lib/components/vention-icon/_generated/icons/filter.tsx +13 -0
  283. package/src/lib/components/vention-icon/_generated/icons/focus.tsx +13 -0
  284. package/src/lib/components/vention-icon/_generated/icons/folder-open.tsx +20 -0
  285. package/src/lib/components/vention-icon/_generated/icons/folder-plus-1.tsx +22 -0
  286. package/src/lib/components/vention-icon/_generated/icons/folder.tsx +13 -0
  287. package/src/lib/components/vention-icon/_generated/icons/frame-3.tsx +13 -0
  288. package/src/lib/components/vention-icon/_generated/icons/function-icon.tsx +13 -0
  289. package/src/lib/components/vention-icon/_generated/icons/git-branch-deleted.tsx +13 -0
  290. package/src/lib/components/vention-icon/_generated/icons/git-branch.tsx +13 -0
  291. package/src/lib/components/vention-icon/_generated/icons/git-compare.tsx +13 -0
  292. package/src/lib/components/vention-icon/_generated/icons/git-fork.tsx +13 -0
  293. package/src/lib/components/vention-icon/_generated/icons/git-merge.tsx +13 -0
  294. package/src/lib/components/vention-icon/_generated/icons/gizmo.tsx +13 -0
  295. package/src/lib/components/vention-icon/_generated/icons/graph.tsx +13 -0
  296. package/src/lib/components/vention-icon/_generated/icons/grid-dots.tsx +61 -0
  297. package/src/lib/components/vention-icon/_generated/icons/grip-horizontal.tsx +43 -0
  298. package/src/lib/components/vention-icon/_generated/icons/grip-vertical.tsx +43 -0
  299. package/src/lib/components/vention-icon/_generated/icons/gripper-1.tsx +15 -0
  300. package/src/lib/components/vention-icon/_generated/icons/gripper-2.tsx +10 -0
  301. package/src/lib/components/vention-icon/_generated/icons/hand-stop.tsx +13 -0
  302. package/src/lib/components/vention-icon/_generated/icons/hash.tsx +22 -0
  303. package/src/lib/components/vention-icon/_generated/icons/hb-menu.tsx +8 -0
  304. package/src/lib/components/vention-icon/_generated/icons/headphones-filled.tsx +11 -0
  305. package/src/lib/components/vention-icon/_generated/icons/headset-filled.tsx +15 -0
  306. package/src/lib/components/vention-icon/_generated/icons/headset.tsx +13 -0
  307. package/src/lib/components/vention-icon/_generated/icons/help-circle-filled.tsx +11 -0
  308. package/src/lib/components/vention-icon/_generated/icons/help.tsx +13 -0
  309. package/src/lib/components/vention-icon/_generated/icons/history-toggle.tsx +13 -0
  310. package/src/lib/components/vention-icon/_generated/icons/history.tsx +13 -0
  311. package/src/lib/components/vention-icon/_generated/icons/hmi.tsx +26 -0
  312. package/src/lib/components/vention-icon/_generated/icons/home-2.tsx +15 -0
  313. package/src/lib/components/vention-icon/_generated/icons/home-solid.tsx +27 -0
  314. package/src/lib/components/vention-icon/_generated/icons/home.tsx +13 -0
  315. package/src/lib/components/vention-icon/_generated/icons/hourglass-empty.tsx +13 -0
  316. package/src/lib/components/vention-icon/_generated/icons/i-o.tsx +31 -0
  317. package/src/lib/components/vention-icon/_generated/icons/icon-box-padding.tsx +13 -0
  318. package/src/lib/components/vention-icon/_generated/icons/icon-components.tsx +18 -0
  319. package/src/lib/components/vention-icon/_generated/icons/icon-nut.tsx +19 -0
  320. package/src/lib/components/vention-icon/_generated/icons/icon-ruler-2.tsx +13 -0
  321. package/src/lib/components/vention-icon/_generated/icons/icon-square-rotated.tsx +13 -0
  322. package/src/lib/components/vention-icon/_generated/icons/incline.tsx +9 -0
  323. package/src/lib/components/vention-icon/_generated/icons/infinity.tsx +13 -0
  324. package/src/lib/components/vention-icon/_generated/icons/info-circle-filled.tsx +11 -0
  325. package/src/lib/components/vention-icon/_generated/icons/info-circle.tsx +13 -0
  326. package/src/lib/components/vention-icon/_generated/icons/input-output.tsx +16 -0
  327. package/src/lib/components/vention-icon/_generated/icons/io-link.tsx +11 -0
  328. package/src/lib/components/vention-icon/_generated/icons/ipad-horizontal.tsx +13 -0
  329. package/src/lib/components/vention-icon/_generated/icons/json.tsx +13 -0
  330. package/src/lib/components/vention-icon/_generated/icons/lan.tsx +13 -0
  331. package/src/lib/components/vention-icon/_generated/icons/language.tsx +13 -0
  332. package/src/lib/components/vention-icon/_generated/icons/layout-sidebar-right.tsx +14 -0
  333. package/src/lib/components/vention-icon/_generated/icons/legacy-axis.tsx +15 -0
  334. package/src/lib/components/vention-icon/_generated/icons/legacy-robot.tsx +11 -0
  335. package/src/lib/components/vention-icon/_generated/icons/letter-case.tsx +13 -0
  336. package/src/lib/components/vention-icon/_generated/icons/line.tsx +27 -0
  337. package/src/lib/components/vention-icon/_generated/icons/linear.tsx +27 -0
  338. package/src/lib/components/vention-icon/_generated/icons/link.tsx +13 -0
  339. package/src/lib/components/vention-icon/_generated/icons/list-check.tsx +24 -0
  340. package/src/lib/components/vention-icon/_generated/icons/load-balancer.tsx +13 -0
  341. package/src/lib/components/vention-icon/_generated/icons/lock.tsx +13 -0
  342. package/src/lib/components/vention-icon/_generated/icons/logout.tsx +13 -0
  343. package/src/lib/components/vention-icon/_generated/icons/machine-apps-headset.tsx +18 -0
  344. package/src/lib/components/vention-icon/_generated/icons/machinelogic-2.tsx +17 -0
  345. package/src/lib/components/vention-icon/_generated/icons/magnet.tsx +15 -0
  346. package/src/lib/components/vention-icon/_generated/icons/mail-fast.tsx +13 -0
  347. package/src/lib/components/vention-icon/_generated/icons/mail.tsx +13 -0
  348. package/src/lib/components/vention-icon/_generated/icons/mailbox.tsx +13 -0
  349. package/src/lib/components/vention-icon/_generated/icons/math-equal-greater.tsx +8 -0
  350. package/src/lib/components/vention-icon/_generated/icons/math-equal-lower.tsx +8 -0
  351. package/src/lib/components/vention-icon/_generated/icons/maximize.tsx +13 -0
  352. package/src/lib/components/vention-icon/_generated/icons/menu-2.tsx +8 -0
  353. package/src/lib/components/vention-icon/_generated/icons/menu-waffle.tsx +16 -0
  354. package/src/lib/components/vention-icon/_generated/icons/menu.tsx +8 -0
  355. package/src/lib/components/vention-icon/_generated/icons/merge.tsx +13 -0
  356. package/src/lib/components/vention-icon/_generated/icons/message-2.tsx +13 -0
  357. package/src/lib/components/vention-icon/_generated/icons/message-chatbot.tsx +13 -0
  358. package/src/lib/components/vention-icon/_generated/icons/message-circle-filled.tsx +11 -0
  359. package/src/lib/components/vention-icon/_generated/icons/message-circle.tsx +13 -0
  360. package/src/lib/components/vention-icon/_generated/icons/message-dots.tsx +13 -0
  361. package/src/lib/components/vention-icon/_generated/icons/message.tsx +13 -0
  362. package/src/lib/components/vention-icon/_generated/icons/messages.tsx +13 -0
  363. package/src/lib/components/vention-icon/_generated/icons/microphone.tsx +13 -0
  364. package/src/lib/components/vention-icon/_generated/icons/minus-vertical.tsx +8 -0
  365. package/src/lib/components/vention-icon/_generated/icons/minus.tsx +8 -0
  366. package/src/lib/components/vention-icon/_generated/icons/mirror-flip-horizontal.tsx +13 -0
  367. package/src/lib/components/vention-icon/_generated/icons/mirror-flip-vertical.tsx +8 -0
  368. package/src/lib/components/vention-icon/_generated/icons/module-1.tsx +28 -0
  369. package/src/lib/components/vention-icon/_generated/icons/module-2.tsx +19 -0
  370. package/src/lib/components/vention-icon/_generated/icons/module-3.tsx +16 -0
  371. package/src/lib/components/vention-icon/_generated/icons/module-4.tsx +14 -0
  372. package/src/lib/components/vention-icon/_generated/icons/motor-1.tsx +14 -0
  373. package/src/lib/components/vention-icon/_generated/icons/motor-2.tsx +24 -0
  374. package/src/lib/components/vention-icon/_generated/icons/motor-3.tsx +21 -0
  375. package/src/lib/components/vention-icon/_generated/icons/motor-4.tsx +11 -0
  376. package/src/lib/components/vention-icon/_generated/icons/motor-5.tsx +13 -0
  377. package/src/lib/components/vention-icon/_generated/icons/move-to-ground.tsx +13 -0
  378. package/src/lib/components/vention-icon/_generated/icons/movie.tsx +13 -0
  379. package/src/lib/components/vention-icon/_generated/icons/multiplier.tsx +17 -0
  380. package/src/lib/components/vention-icon/_generated/icons/music.tsx +13 -0
  381. package/src/lib/components/vention-icon/_generated/icons/network-2.tsx +13 -0
  382. package/src/lib/components/vention-icon/_generated/icons/network-off.tsx +13 -0
  383. package/src/lib/components/vention-icon/_generated/icons/network.tsx +13 -0
  384. package/src/lib/components/vention-icon/_generated/icons/number-1.tsx +15 -0
  385. package/src/lib/components/vention-icon/_generated/icons/number-2.tsx +21 -0
  386. package/src/lib/components/vention-icon/_generated/icons/number-3.tsx +28 -0
  387. package/src/lib/components/vention-icon/_generated/icons/number-4.tsx +15 -0
  388. package/src/lib/components/vention-icon/_generated/icons/operator.tsx +23 -0
  389. package/src/lib/components/vention-icon/_generated/icons/pdf.tsx +13 -0
  390. package/src/lib/components/vention-icon/_generated/icons/phone-call.tsx +13 -0
  391. package/src/lib/components/vention-icon/_generated/icons/phone-off.tsx +13 -0
  392. package/src/lib/components/vention-icon/_generated/icons/phone.tsx +13 -0
  393. package/src/lib/components/vention-icon/_generated/icons/photo.tsx +13 -0
  394. package/src/lib/components/vention-icon/_generated/icons/pinned.tsx +8 -0
  395. package/src/lib/components/vention-icon/_generated/icons/player-pause.tsx +19 -0
  396. package/src/lib/components/vention-icon/_generated/icons/player-play-filled.tsx +18 -0
  397. package/src/lib/components/vention-icon/_generated/icons/player-play.tsx +8 -0
  398. package/src/lib/components/vention-icon/_generated/icons/player-record.tsx +13 -0
  399. package/src/lib/components/vention-icon/_generated/icons/player-skip-back.tsx +8 -0
  400. package/src/lib/components/vention-icon/_generated/icons/player-skip-forward.tsx +8 -0
  401. package/src/lib/components/vention-icon/_generated/icons/player-stop-filled.tsx +15 -0
  402. package/src/lib/components/vention-icon/_generated/icons/player-stop.tsx +13 -0
  403. package/src/lib/components/vention-icon/_generated/icons/player-track-next.tsx +9 -0
  404. package/src/lib/components/vention-icon/_generated/icons/player-track-prev.tsx +9 -0
  405. package/src/lib/components/vention-icon/_generated/icons/plug-x.tsx +13 -0
  406. package/src/lib/components/vention-icon/_generated/icons/plug.tsx +13 -0
  407. package/src/lib/components/vention-icon/_generated/icons/plus.tsx +8 -0
  408. package/src/lib/components/vention-icon/_generated/icons/pneumatic.tsx +12 -0
  409. package/src/lib/components/vention-icon/_generated/icons/point-to-point-3.tsx +15 -0
  410. package/src/lib/components/vention-icon/_generated/icons/point-to-point-check.tsx +23 -0
  411. package/src/lib/components/vention-icon/_generated/icons/power.tsx +13 -0
  412. package/src/lib/components/vention-icon/_generated/icons/programming.tsx +20 -0
  413. package/src/lib/components/vention-icon/_generated/icons/pushbutton.tsx +13 -0
  414. package/src/lib/components/vention-icon/_generated/icons/receipt-dollar.tsx +13 -0
  415. package/src/lib/components/vention-icon/_generated/icons/receipt.tsx +19 -0
  416. package/src/lib/components/vention-icon/_generated/icons/reference-frame-2.tsx +13 -0
  417. package/src/lib/components/vention-icon/_generated/icons/reference-frame.tsx +13 -0
  418. package/src/lib/components/vention-icon/_generated/icons/refresh-alert.tsx +13 -0
  419. package/src/lib/components/vention-icon/_generated/icons/refresh-off.tsx +13 -0
  420. package/src/lib/components/vention-icon/_generated/icons/refresh.tsx +13 -0
  421. package/src/lib/components/vention-icon/_generated/icons/reload.tsx +13 -0
  422. package/src/lib/components/vention-icon/_generated/icons/repeat.tsx +13 -0
  423. package/src/lib/components/vention-icon/_generated/icons/rewind-backward-15.tsx +28 -0
  424. package/src/lib/components/vention-icon/_generated/icons/rewind-forward-15.tsx +28 -0
  425. package/src/lib/components/vention-icon/_generated/icons/robot-arm-2.tsx +23 -0
  426. package/src/lib/components/vention-icon/_generated/icons/robot-arm-duotone-2.tsx +25 -0
  427. package/src/lib/components/vention-icon/_generated/icons/robot-arm.tsx +25 -0
  428. package/src/lib/components/vention-icon/_generated/icons/robot-face.tsx +13 -0
  429. package/src/lib/components/vention-icon/_generated/icons/rotary.tsx +20 -0
  430. package/src/lib/components/vention-icon/_generated/icons/route-square.tsx +13 -0
  431. package/src/lib/components/vention-icon/_generated/icons/row-insert-bottom.tsx +13 -0
  432. package/src/lib/components/vention-icon/_generated/icons/row-insert-top.tsx +13 -0
  433. package/src/lib/components/vention-icon/_generated/icons/ruler-measure-2.tsx +28 -0
  434. package/src/lib/components/vention-icon/_generated/icons/ruler.tsx +13 -0
  435. package/src/lib/components/vention-icon/_generated/icons/save.tsx +13 -0
  436. package/src/lib/components/vention-icon/_generated/icons/search.tsx +13 -0
  437. package/src/lib/components/vention-icon/_generated/icons/selector.tsx +8 -0
  438. package/src/lib/components/vention-icon/_generated/icons/send.tsx +13 -0
  439. package/src/lib/components/vention-icon/_generated/icons/sensor.tsx +13 -0
  440. package/src/lib/components/vention-icon/_generated/icons/sensor1.tsx +11 -0
  441. package/src/lib/components/vention-icon/_generated/icons/sensor2.tsx +16 -0
  442. package/src/lib/components/vention-icon/_generated/icons/sequence.tsx +28 -0
  443. package/src/lib/components/vention-icon/_generated/icons/setting-automation.tsx +20 -0
  444. package/src/lib/components/vention-icon/_generated/icons/settings-2.tsx +19 -0
  445. package/src/lib/components/vention-icon/_generated/icons/settings-filled.tsx +11 -0
  446. package/src/lib/components/vention-icon/_generated/icons/settings.tsx +19 -0
  447. package/src/lib/components/vention-icon/_generated/icons/shield-code.tsx +15 -0
  448. package/src/lib/components/vention-icon/_generated/icons/shield-filled.tsx +11 -0
  449. package/src/lib/components/vention-icon/_generated/icons/shield-half.tsx +13 -0
  450. package/src/lib/components/vention-icon/_generated/icons/shield.tsx +13 -0
  451. package/src/lib/components/vention-icon/_generated/icons/shopping-bag.tsx +13 -0
  452. package/src/lib/components/vention-icon/_generated/icons/shopping-cart-filled.tsx +11 -0
  453. package/src/lib/components/vention-icon/_generated/icons/shopping-cart.tsx +13 -0
  454. package/src/lib/components/vention-icon/_generated/icons/show-3d.tsx +26 -0
  455. package/src/lib/components/vention-icon/_generated/icons/sitemap-1.tsx +13 -0
  456. package/src/lib/components/vention-icon/_generated/icons/sitemap.tsx +13 -0
  457. package/src/lib/components/vention-icon/_generated/icons/slash.tsx +8 -0
  458. package/src/lib/components/vention-icon/_generated/icons/speedtest.tsx +13 -0
  459. package/src/lib/components/vention-icon/_generated/icons/sphere.tsx +13 -0
  460. package/src/lib/components/vention-icon/_generated/icons/square-number-0.tsx +19 -0
  461. package/src/lib/components/vention-icon/_generated/icons/square-number-1.tsx +14 -0
  462. package/src/lib/components/vention-icon/_generated/icons/square-number-2.tsx +19 -0
  463. package/src/lib/components/vention-icon/_generated/icons/square-number-3.tsx +19 -0
  464. package/src/lib/components/vention-icon/_generated/icons/stack.tsx +13 -0
  465. package/src/lib/components/vention-icon/_generated/icons/star.tsx +13 -0
  466. package/src/lib/components/vention-icon/_generated/icons/state-machine.tsx +19 -0
  467. package/src/lib/components/vention-icon/_generated/icons/status-danger-hmi.tsx +11 -0
  468. package/src/lib/components/vention-icon/_generated/icons/status-small.tsx +11 -0
  469. package/src/lib/components/vention-icon/_generated/icons/status-warning-hmi.tsx +11 -0
  470. package/src/lib/components/vention-icon/_generated/icons/stopwatch.tsx +23 -0
  471. package/src/lib/components/vention-icon/_generated/icons/subtask.tsx +13 -0
  472. package/src/lib/components/vention-icon/_generated/icons/switch-horizontal.tsx +11 -0
  473. package/src/lib/components/vention-icon/_generated/icons/switch-vertical.tsx +13 -0
  474. package/src/lib/components/vention-icon/_generated/icons/tag.tsx +19 -0
  475. package/src/lib/components/vention-icon/_generated/icons/target.tsx +25 -0
  476. package/src/lib/components/vention-icon/_generated/icons/template.tsx +29 -0
  477. package/src/lib/components/vention-icon/_generated/icons/terminal-2.tsx +13 -0
  478. package/src/lib/components/vention-icon/_generated/icons/terminal.tsx +8 -0
  479. package/src/lib/components/vention-icon/_generated/icons/text-plus-1.tsx +20 -0
  480. package/src/lib/components/vention-icon/_generated/icons/timeline.tsx +13 -0
  481. package/src/lib/components/vention-icon/_generated/icons/tiny-caret-down.tsx +8 -0
  482. package/src/lib/components/vention-icon/_generated/icons/tiny-caret-right.tsx +8 -0
  483. package/src/lib/components/vention-icon/_generated/icons/tool-1.tsx +11 -0
  484. package/src/lib/components/vention-icon/_generated/icons/tool.tsx +13 -0
  485. package/src/lib/components/vention-icon/_generated/icons/topology-bus.tsx +13 -0
  486. package/src/lib/components/vention-icon/_generated/icons/topology-complex.tsx +13 -0
  487. package/src/lib/components/vention-icon/_generated/icons/topology-full-hierarchy.tsx +13 -0
  488. package/src/lib/components/vention-icon/_generated/icons/topology-full.tsx +13 -0
  489. package/src/lib/components/vention-icon/_generated/icons/topology-ring-2.tsx +13 -0
  490. package/src/lib/components/vention-icon/_generated/icons/topology-ring-3.tsx +13 -0
  491. package/src/lib/components/vention-icon/_generated/icons/topology-ring.tsx +13 -0
  492. package/src/lib/components/vention-icon/_generated/icons/topology-star-3.tsx +13 -0
  493. package/src/lib/components/vention-icon/_generated/icons/trash.tsx +13 -0
  494. package/src/lib/components/vention-icon/_generated/icons/trending-up.tsx +16 -0
  495. package/src/lib/components/vention-icon/_generated/icons/truck-delivery.tsx +13 -0
  496. package/src/lib/components/vention-icon/_generated/icons/truck-loading.tsx +13 -0
  497. package/src/lib/components/vention-icon/_generated/icons/un-pinned.tsx +14 -0
  498. package/src/lib/components/vention-icon/_generated/icons/unlink.tsx +13 -0
  499. package/src/lib/components/vention-icon/_generated/icons/update.tsx +21 -0
  500. package/src/lib/components/vention-icon/_generated/icons/upload.tsx +13 -0
  501. package/src/lib/components/vention-icon/_generated/icons/user-circle.tsx +25 -0
  502. package/src/lib/components/vention-icon/_generated/icons/user-off.tsx +21 -0
  503. package/src/lib/components/vention-icon/_generated/icons/user-plus.tsx +13 -0
  504. package/src/lib/components/vention-icon/_generated/icons/user-shield.tsx +21 -0
  505. package/src/lib/components/vention-icon/_generated/icons/user.tsx +13 -0
  506. package/src/lib/components/vention-icon/_generated/icons/users-plus.tsx +13 -0
  507. package/src/lib/components/vention-icon/_generated/icons/users.tsx +13 -0
  508. package/src/lib/components/vention-icon/_generated/icons/variable.tsx +13 -0
  509. package/src/lib/components/vention-icon/_generated/icons/vention.tsx +11 -0
  510. package/src/lib/components/vention-icon/_generated/icons/versions.tsx +13 -0
  511. package/src/lib/components/vention-icon/_generated/icons/video.tsx +19 -0
  512. package/src/lib/components/vention-icon/_generated/icons/web-link.tsx +13 -0
  513. package/src/lib/components/vention-icon/_generated/icons/weight-2.tsx +13 -0
  514. package/src/lib/components/vention-icon/_generated/icons/weight.tsx +19 -0
  515. package/src/lib/components/vention-icon/_generated/icons/wifi-low.tsx +13 -0
  516. package/src/lib/components/vention-icon/_generated/icons/wifi-lowest.tsx +13 -0
  517. package/src/lib/components/vention-icon/_generated/icons/wifi-off.tsx +13 -0
  518. package/src/lib/components/vention-icon/_generated/icons/wifi.tsx +13 -0
  519. package/src/lib/components/vention-icon/_generated/icons/world-download.tsx +13 -0
  520. package/src/lib/components/vention-icon/_generated/icons/world.tsx +13 -0
  521. package/src/lib/components/vention-icon/_generated/icons/xyz-1.tsx +20 -0
  522. package/src/lib/components/vention-icon/_generated/icons/xyz-2.tsx +16 -0
  523. package/src/lib/components/vention-icon/duotone-svg/duotone-analytics.svg +5 -0
  524. package/src/lib/components/vention-icon/duotone-svg/duotone-communication.svg +13 -0
  525. package/src/lib/components/vention-icon/duotone-svg/duotone-conveyor.svg +6 -0
  526. package/src/lib/components/vention-icon/duotone-svg/duotone-input-output.svg +5 -0
  527. package/src/lib/components/vention-icon/duotone-svg/duotone-linear.svg +5 -0
  528. package/src/lib/components/vention-icon/duotone-svg/duotone-pneumatic.svg +7 -0
  529. package/src/lib/components/vention-icon/duotone-svg/duotone-programming.svg +6 -0
  530. package/src/lib/components/vention-icon/duotone-svg/duotone-robot-arm.svg +12 -0
  531. package/src/lib/components/vention-icon/duotone-svg/duotone-rotary.svg +5 -0
  532. package/src/lib/components/vention-icon/duotone-svg/duotone-state-machine.svg +10 -0
  533. package/src/lib/components/vention-icon/duotone-svg/position-rx.svg +5 -0
  534. package/src/lib/components/vention-icon/duotone-svg/position-ry.svg +5 -0
  535. package/src/lib/components/vention-icon/duotone-svg/position-rz.svg +5 -0
  536. package/src/lib/components/vention-icon/duotone-svg/position-x.svg +4 -0
  537. package/src/lib/components/vention-icon/duotone-svg/position-y.svg +4 -0
  538. package/src/lib/components/vention-icon/duotone-svg/position-z.svg +4 -0
  539. package/src/lib/components/vention-icon/svg/ac-motor.svg +6 -0
  540. package/src/lib/components/vention-icon/svg/access-point.svg +3 -0
  541. package/src/lib/components/vention-icon/svg/actuator.svg +11 -0
  542. package/src/lib/components/vention-icon/svg/actuator1.svg +6 -0
  543. package/src/lib/components/vention-icon/svg/actuator10.svg +9 -0
  544. package/src/lib/components/vention-icon/svg/actuator2.svg +8 -0
  545. package/src/lib/components/vention-icon/svg/actuator3.svg +7 -0
  546. package/src/lib/components/vention-icon/svg/actuator4.svg +7 -0
  547. package/src/lib/components/vention-icon/svg/actuator5.svg +7 -0
  548. package/src/lib/components/vention-icon/svg/actuator6.svg +7 -0
  549. package/src/lib/components/vention-icon/svg/actuator7.svg +7 -0
  550. package/src/lib/components/vention-icon/svg/actuator8.svg +8 -0
  551. package/src/lib/components/vention-icon/svg/actuator9.svg +10 -0
  552. package/src/lib/components/vention-icon/svg/adjustments-alt-filled.svg +12 -0
  553. package/src/lib/components/vention-icon/svg/adjustments-alt.svg +3 -0
  554. package/src/lib/components/vention-icon/svg/adjustments-filled.svg +12 -0
  555. package/src/lib/components/vention-icon/svg/adjustments-horizontal.svg +3 -0
  556. package/src/lib/components/vention-icon/svg/alarm-bell-filled.svg +6 -0
  557. package/src/lib/components/vention-icon/svg/alarm-bell-ringing.svg +3 -0
  558. package/src/lib/components/vention-icon/svg/alarm-bell.svg +3 -0
  559. package/src/lib/components/vention-icon/svg/alarm.svg +3 -0
  560. package/src/lib/components/vention-icon/svg/alert-circle-filled.svg +3 -0
  561. package/src/lib/components/vention-icon/svg/alert-circle.svg +3 -0
  562. package/src/lib/components/vention-icon/svg/alert-triangle-filled.svg +3 -0
  563. package/src/lib/components/vention-icon/svg/alert-triangle.svg +3 -0
  564. package/src/lib/components/vention-icon/svg/analytics.svg +3 -0
  565. package/src/lib/components/vention-icon/svg/angle.svg +3 -0
  566. package/src/lib/components/vention-icon/svg/apps-2.svg +6 -0
  567. package/src/lib/components/vention-icon/svg/apps.svg +3 -0
  568. package/src/lib/components/vention-icon/svg/arrow-bar-both.svg +3 -0
  569. package/src/lib/components/vention-icon/svg/arrow-bar-down.svg +3 -0
  570. package/src/lib/components/vention-icon/svg/arrow-bar-left.svg +3 -0
  571. package/src/lib/components/vention-icon/svg/arrow-bar-right.svg +3 -0
  572. package/src/lib/components/vention-icon/svg/arrow-bar-to-down.svg +3 -0
  573. package/src/lib/components/vention-icon/svg/arrow-bar-to-left.svg +3 -0
  574. package/src/lib/components/vention-icon/svg/arrow-bar-to-right.svg +3 -0
  575. package/src/lib/components/vention-icon/svg/arrow-bar-to-up.svg +3 -0
  576. package/src/lib/components/vention-icon/svg/arrow-bar-up.svg +3 -0
  577. package/src/lib/components/vention-icon/svg/arrow-big-down.svg +3 -0
  578. package/src/lib/components/vention-icon/svg/arrow-big-left.svg +3 -0
  579. package/src/lib/components/vention-icon/svg/arrow-big-right-lines.svg +12 -0
  580. package/src/lib/components/vention-icon/svg/arrow-big-right.svg +3 -0
  581. package/src/lib/components/vention-icon/svg/arrow-big-up.svg +3 -0
  582. package/src/lib/components/vention-icon/svg/arrow-left-from-arc.svg +12 -0
  583. package/src/lib/components/vention-icon/svg/arrow-left.svg +3 -0
  584. package/src/lib/components/vention-icon/svg/arrow-narrow-down.svg +3 -0
  585. package/src/lib/components/vention-icon/svg/arrow-narrow-left.svg +3 -0
  586. package/src/lib/components/vention-icon/svg/arrow-narrow-right.svg +3 -0
  587. package/src/lib/components/vention-icon/svg/arrow-narrow-up.svg +3 -0
  588. package/src/lib/components/vention-icon/svg/arrow-right.svg +3 -0
  589. package/src/lib/components/vention-icon/svg/arrow-up-right.svg +4 -0
  590. package/src/lib/components/vention-icon/svg/arrows-diagonal-minimize-1.svg +6 -0
  591. package/src/lib/components/vention-icon/svg/arrows-diagonal.svg +6 -0
  592. package/src/lib/components/vention-icon/svg/arrows-diff.svg +3 -0
  593. package/src/lib/components/vention-icon/svg/arrows-exchange-1.svg +4 -0
  594. package/src/lib/components/vention-icon/svg/arrows-exchange.svg +4 -0
  595. package/src/lib/components/vention-icon/svg/arrows-maximize.svg +3 -0
  596. package/src/lib/components/vention-icon/svg/arrows-minimize.svg +3 -0
  597. package/src/lib/components/vention-icon/svg/arrows-move.svg +3 -0
  598. package/src/lib/components/vention-icon/svg/arrows-right-left.svg +13 -0
  599. package/src/lib/components/vention-icon/svg/assembly.svg +4 -0
  600. package/src/lib/components/vention-icon/svg/asset.svg +3 -0
  601. package/src/lib/components/vention-icon/svg/axis.svg +3 -0
  602. package/src/lib/components/vention-icon/svg/belt-actuator-2.svg +5 -0
  603. package/src/lib/components/vention-icon/svg/belt-actuator-3.svg +6 -0
  604. package/src/lib/components/vention-icon/svg/belt-actuator.svg +5 -0
  605. package/src/lib/components/vention-icon/svg/binary-tree-2.svg +3 -0
  606. package/src/lib/components/vention-icon/svg/binary-tree.svg +3 -0
  607. package/src/lib/components/vention-icon/svg/binary.svg +3 -0
  608. package/src/lib/components/vention-icon/svg/blend.svg +3 -0
  609. package/src/lib/components/vention-icon/svg/bolt-filled.svg +3 -0
  610. package/src/lib/components/vention-icon/svg/bolt.svg +3 -0
  611. package/src/lib/components/vention-icon/svg/bomb.svg +3 -0
  612. package/src/lib/components/vention-icon/svg/book-2.svg +3 -0
  613. package/src/lib/components/vention-icon/svg/book.svg +3 -0
  614. package/src/lib/components/vention-icon/svg/bookmark.svg +3 -0
  615. package/src/lib/components/vention-icon/svg/books.svg +3 -0
  616. package/src/lib/components/vention-icon/svg/braces.svg +3 -0
  617. package/src/lib/components/vention-icon/svg/brand-python.svg +3 -0
  618. package/src/lib/components/vention-icon/svg/bug.svg +3 -0
  619. package/src/lib/components/vention-icon/svg/building-broadcast-tower.svg +3 -0
  620. package/src/lib/components/vention-icon/svg/building-community.svg +3 -0
  621. package/src/lib/components/vention-icon/svg/building-factory-2.svg +3 -0
  622. package/src/lib/components/vention-icon/svg/building-skyscraper.svg +3 -0
  623. package/src/lib/components/vention-icon/svg/building.svg +3 -0
  624. package/src/lib/components/vention-icon/svg/button-black.svg +3 -0
  625. package/src/lib/components/vention-icon/svg/button-white.svg +3 -0
  626. package/src/lib/components/vention-icon/svg/calendar-month.svg +3 -0
  627. package/src/lib/components/vention-icon/svg/camera.svg +4 -0
  628. package/src/lib/components/vention-icon/svg/capture.svg +3 -0
  629. package/src/lib/components/vention-icon/svg/caret-down-filled.svg +3 -0
  630. package/src/lib/components/vention-icon/svg/caret-down.svg +3 -0
  631. package/src/lib/components/vention-icon/svg/caret-left-filled.svg +3 -0
  632. package/src/lib/components/vention-icon/svg/caret-left.svg +3 -0
  633. package/src/lib/components/vention-icon/svg/caret-right-filled.svg +3 -0
  634. package/src/lib/components/vention-icon/svg/caret-right.svg +3 -0
  635. package/src/lib/components/vention-icon/svg/caret-up-filled.svg +3 -0
  636. package/src/lib/components/vention-icon/svg/caret-up.svg +3 -0
  637. package/src/lib/components/vention-icon/svg/category-filled.svg +13 -0
  638. package/src/lib/components/vention-icon/svg/category.svg +6 -0
  639. package/src/lib/components/vention-icon/svg/cell-signal-full.svg +3 -0
  640. package/src/lib/components/vention-icon/svg/cell-signal-low.svg +3 -0
  641. package/src/lib/components/vention-icon/svg/cell-signal-off.svg +3 -0
  642. package/src/lib/components/vention-icon/svg/chart-dots-2.svg +3 -0
  643. package/src/lib/components/vention-icon/svg/check.svg +3 -0
  644. package/src/lib/components/vention-icon/svg/checkbox.svg +5 -0
  645. package/src/lib/components/vention-icon/svg/checks.svg +3 -0
  646. package/src/lib/components/vention-icon/svg/chevron-down.svg +3 -0
  647. package/src/lib/components/vention-icon/svg/chevron-left.svg +3 -0
  648. package/src/lib/components/vention-icon/svg/chevron-right.svg +3 -0
  649. package/src/lib/components/vention-icon/svg/chevron-up.svg +3 -0
  650. package/src/lib/components/vention-icon/svg/chevrons-down.svg +3 -0
  651. package/src/lib/components/vention-icon/svg/chevrons-left.svg +3 -0
  652. package/src/lib/components/vention-icon/svg/chevrons-right.svg +3 -0
  653. package/src/lib/components/vention-icon/svg/chevrons-up.svg +3 -0
  654. package/src/lib/components/vention-icon/svg/circle-arrow-up.svg +3 -0
  655. package/src/lib/components/vention-icon/svg/circle-check-filled.svg +3 -0
  656. package/src/lib/components/vention-icon/svg/circle-check.svg +3 -0
  657. package/src/lib/components/vention-icon/svg/circle-minus.svg +3 -0
  658. package/src/lib/components/vention-icon/svg/circle-plus.svg +3 -0
  659. package/src/lib/components/vention-icon/svg/circle-square.svg +4 -0
  660. package/src/lib/components/vention-icon/svg/circle-x-filled.svg +3 -0
  661. package/src/lib/components/vention-icon/svg/circle-x.svg +3 -0
  662. package/src/lib/components/vention-icon/svg/clock.svg +3 -0
  663. package/src/lib/components/vention-icon/svg/clockwise-1.svg +3 -0
  664. package/src/lib/components/vention-icon/svg/clockwise-2.svg +3 -0
  665. package/src/lib/components/vention-icon/svg/close.svg +3 -0
  666. package/src/lib/components/vention-icon/svg/cloud-computing.svg +3 -0
  667. package/src/lib/components/vention-icon/svg/cloud-data-connection.svg +3 -0
  668. package/src/lib/components/vention-icon/svg/cloud-download-1.svg +5 -0
  669. package/src/lib/components/vention-icon/svg/cloud-download-off.svg +8 -0
  670. package/src/lib/components/vention-icon/svg/cloud-download.svg +3 -0
  671. package/src/lib/components/vention-icon/svg/cloud-off.svg +3 -0
  672. package/src/lib/components/vention-icon/svg/cloud-upload.svg +3 -0
  673. package/src/lib/components/vention-icon/svg/cloud.svg +3 -0
  674. package/src/lib/components/vention-icon/svg/code.svg +3 -0
  675. package/src/lib/components/vention-icon/svg/command-do.svg +3 -0
  676. package/src/lib/components/vention-icon/svg/command-elif.svg +3 -0
  677. package/src/lib/components/vention-icon/svg/command-else.svg +3 -0
  678. package/src/lib/components/vention-icon/svg/command-if.svg +3 -0
  679. package/src/lib/components/vention-icon/svg/condition-tree.svg +3 -0
  680. package/src/lib/components/vention-icon/svg/confetti.svg +3 -0
  681. package/src/lib/components/vention-icon/svg/connection.svg +3 -0
  682. package/src/lib/components/vention-icon/svg/conveyor.svg +6 -0
  683. package/src/lib/components/vention-icon/svg/copy.svg +3 -0
  684. package/src/lib/components/vention-icon/svg/corner-up-left.svg +10 -0
  685. package/src/lib/components/vention-icon/svg/corner-up-right.svg +10 -0
  686. package/src/lib/components/vention-icon/svg/counterclockwise-1.svg +3 -0
  687. package/src/lib/components/vention-icon/svg/counterclockwise-2.svg +3 -0
  688. package/src/lib/components/vention-icon/svg/cpu-2.svg +3 -0
  689. package/src/lib/components/vention-icon/svg/cpu.svg +3 -0
  690. package/src/lib/components/vention-icon/svg/cube-plus.svg +3 -0
  691. package/src/lib/components/vention-icon/svg/cube-send.svg +3 -0
  692. package/src/lib/components/vention-icon/svg/cube.svg +3 -0
  693. package/src/lib/components/vention-icon/svg/custom-gear-fill.svg +3 -0
  694. package/src/lib/components/vention-icon/svg/custom-help-bold-filled.svg +3 -0
  695. package/src/lib/components/vention-icon/svg/custom-help-bold.svg +5 -0
  696. package/src/lib/components/vention-icon/svg/custom-help-fill.svg +3 -0
  697. package/src/lib/components/vention-icon/svg/custom-help.svg +5 -0
  698. package/src/lib/components/vention-icon/svg/custom-info-1.svg +3 -0
  699. package/src/lib/components/vention-icon/svg/custom-info-bold-filled.svg +3 -0
  700. package/src/lib/components/vention-icon/svg/custom-info-bold.svg +5 -0
  701. package/src/lib/components/vention-icon/svg/custom-info.svg +5 -0
  702. package/src/lib/components/vention-icon/svg/custom-point-to-point.svg +5 -0
  703. package/src/lib/components/vention-icon/svg/custom-rocket-fat.svg +6 -0
  704. package/src/lib/components/vention-icon/svg/custom-rocket.svg +6 -0
  705. package/src/lib/components/vention-icon/svg/dashboard.svg +6 -0
  706. package/src/lib/components/vention-icon/svg/decline.svg +4 -0
  707. package/src/lib/components/vention-icon/svg/device-laptop.svg +3 -0
  708. package/src/lib/components/vention-icon/svg/device-tv.svg +3 -0
  709. package/src/lib/components/vention-icon/svg/devices-2.svg +3 -0
  710. package/src/lib/components/vention-icon/svg/dimensions.svg +10 -0
  711. package/src/lib/components/vention-icon/svg/dots-vertical.svg +5 -0
  712. package/src/lib/components/vention-icon/svg/dots.svg +5 -0
  713. package/src/lib/components/vention-icon/svg/download-off.svg +3 -0
  714. package/src/lib/components/vention-icon/svg/download.svg +3 -0
  715. package/src/lib/components/vention-icon/svg/edit.svg +3 -0
  716. package/src/lib/components/vention-icon/svg/electric-actuator.svg +5 -0
  717. package/src/lib/components/vention-icon/svg/exclamation-mark.svg +3 -0
  718. package/src/lib/components/vention-icon/svg/external-link.svg +3 -0
  719. package/src/lib/components/vention-icon/svg/eye-closed.svg +3 -0
  720. package/src/lib/components/vention-icon/svg/eye.svg +4 -0
  721. package/src/lib/components/vention-icon/svg/file-3-d.svg +3 -0
  722. package/src/lib/components/vention-icon/svg/file-code.svg +3 -0
  723. package/src/lib/components/vention-icon/svg/file-description.svg +3 -0
  724. package/src/lib/components/vention-icon/svg/file-download.svg +3 -0
  725. package/src/lib/components/vention-icon/svg/file-type-pdf.svg +3 -0
  726. package/src/lib/components/vention-icon/svg/file-upload.svg +3 -0
  727. package/src/lib/components/vention-icon/svg/file-wrong.svg +13 -0
  728. package/src/lib/components/vention-icon/svg/file.svg +3 -0
  729. package/src/lib/components/vention-icon/svg/filter.svg +3 -0
  730. package/src/lib/components/vention-icon/svg/focus.svg +3 -0
  731. package/src/lib/components/vention-icon/svg/folder-open.svg +10 -0
  732. package/src/lib/components/vention-icon/svg/folder-plus-1.svg +12 -0
  733. package/src/lib/components/vention-icon/svg/folder.svg +3 -0
  734. package/src/lib/components/vention-icon/svg/frame-3.svg +3 -0
  735. package/src/lib/components/vention-icon/svg/function-icon.svg +3 -0
  736. package/src/lib/components/vention-icon/svg/git-branch-deleted.svg +3 -0
  737. package/src/lib/components/vention-icon/svg/git-branch.svg +3 -0
  738. package/src/lib/components/vention-icon/svg/git-compare.svg +3 -0
  739. package/src/lib/components/vention-icon/svg/git-fork.svg +3 -0
  740. package/src/lib/components/vention-icon/svg/git-merge.svg +3 -0
  741. package/src/lib/components/vention-icon/svg/gizmo.svg +3 -0
  742. package/src/lib/components/vention-icon/svg/graph.svg +3 -0
  743. package/src/lib/components/vention-icon/svg/grid-dots.svg +11 -0
  744. package/src/lib/components/vention-icon/svg/grip-horizontal.svg +8 -0
  745. package/src/lib/components/vention-icon/svg/grip-vertical.svg +8 -0
  746. package/src/lib/components/vention-icon/svg/gripper-1.svg +5 -0
  747. package/src/lib/components/vention-icon/svg/gripper-2.svg +5 -0
  748. package/src/lib/components/vention-icon/svg/hand-stop.svg +3 -0
  749. package/src/lib/components/vention-icon/svg/hash.svg +7 -0
  750. package/src/lib/components/vention-icon/svg/hb-menu.svg +3 -0
  751. package/src/lib/components/vention-icon/svg/headphones-filled.svg +3 -0
  752. package/src/lib/components/vention-icon/svg/headset-filled.svg +5 -0
  753. package/src/lib/components/vention-icon/svg/headset.svg +3 -0
  754. package/src/lib/components/vention-icon/svg/help-circle-filled.svg +3 -0
  755. package/src/lib/components/vention-icon/svg/help.svg +3 -0
  756. package/src/lib/components/vention-icon/svg/history-toggle.svg +3 -0
  757. package/src/lib/components/vention-icon/svg/history.svg +3 -0
  758. package/src/lib/components/vention-icon/svg/hmi.svg +6 -0
  759. package/src/lib/components/vention-icon/svg/home-2.svg +5 -0
  760. package/src/lib/components/vention-icon/svg/home-solid.svg +7 -0
  761. package/src/lib/components/vention-icon/svg/home.svg +3 -0
  762. package/src/lib/components/vention-icon/svg/hourglass-empty.svg +3 -0
  763. package/src/lib/components/vention-icon/svg/i-o.svg +6 -0
  764. package/src/lib/components/vention-icon/svg/icon-box-padding.svg +3 -0
  765. package/src/lib/components/vention-icon/svg/icon-components.svg +13 -0
  766. package/src/lib/components/vention-icon/svg/icon-nut.svg +4 -0
  767. package/src/lib/components/vention-icon/svg/icon-ruler-2.svg +3 -0
  768. package/src/lib/components/vention-icon/svg/icon-square-rotated.svg +3 -0
  769. package/src/lib/components/vention-icon/svg/incline.svg +4 -0
  770. package/src/lib/components/vention-icon/svg/infinity.svg +3 -0
  771. package/src/lib/components/vention-icon/svg/info-circle-filled.svg +3 -0
  772. package/src/lib/components/vention-icon/svg/info-circle.svg +3 -0
  773. package/src/lib/components/vention-icon/svg/input-output.svg +11 -0
  774. package/src/lib/components/vention-icon/svg/io-link.svg +3 -0
  775. package/src/lib/components/vention-icon/svg/ipad-horizontal.svg +3 -0
  776. package/src/lib/components/vention-icon/svg/json.svg +3 -0
  777. package/src/lib/components/vention-icon/svg/lan.svg +3 -0
  778. package/src/lib/components/vention-icon/svg/language.svg +3 -0
  779. package/src/lib/components/vention-icon/svg/layout-sidebar-right.svg +4 -0
  780. package/src/lib/components/vention-icon/svg/legacy-axis.svg +4 -0
  781. package/src/lib/components/vention-icon/svg/legacy-robot.svg +3 -0
  782. package/src/lib/components/vention-icon/svg/letter-case.svg +3 -0
  783. package/src/lib/components/vention-icon/svg/line.svg +12 -0
  784. package/src/lib/components/vention-icon/svg/linear.svg +12 -0
  785. package/src/lib/components/vention-icon/svg/link.svg +3 -0
  786. package/src/lib/components/vention-icon/svg/list-check.svg +9 -0
  787. package/src/lib/components/vention-icon/svg/load-balancer.svg +3 -0
  788. package/src/lib/components/vention-icon/svg/lock.svg +3 -0
  789. package/src/lib/components/vention-icon/svg/logout.svg +3 -0
  790. package/src/lib/components/vention-icon/svg/machine-apps-headset.svg +4 -0
  791. package/src/lib/components/vention-icon/svg/machinelogic-2.svg +7 -0
  792. package/src/lib/components/vention-icon/svg/magnet.svg +5 -0
  793. package/src/lib/components/vention-icon/svg/mail-fast.svg +3 -0
  794. package/src/lib/components/vention-icon/svg/mail.svg +3 -0
  795. package/src/lib/components/vention-icon/svg/mailbox.svg +3 -0
  796. package/src/lib/components/vention-icon/svg/math-equal-greater.svg +3 -0
  797. package/src/lib/components/vention-icon/svg/math-equal-lower.svg +3 -0
  798. package/src/lib/components/vention-icon/svg/maximize.svg +3 -0
  799. package/src/lib/components/vention-icon/svg/menu-2.svg +3 -0
  800. package/src/lib/components/vention-icon/svg/menu-waffle.svg +11 -0
  801. package/src/lib/components/vention-icon/svg/menu.svg +3 -0
  802. package/src/lib/components/vention-icon/svg/merge.svg +3 -0
  803. package/src/lib/components/vention-icon/svg/message-2.svg +3 -0
  804. package/src/lib/components/vention-icon/svg/message-chatbot.svg +3 -0
  805. package/src/lib/components/vention-icon/svg/message-circle-filled.svg +3 -0
  806. package/src/lib/components/vention-icon/svg/message-circle.svg +3 -0
  807. package/src/lib/components/vention-icon/svg/message-dots.svg +3 -0
  808. package/src/lib/components/vention-icon/svg/message.svg +3 -0
  809. package/src/lib/components/vention-icon/svg/messages.svg +3 -0
  810. package/src/lib/components/vention-icon/svg/microphone.svg +3 -0
  811. package/src/lib/components/vention-icon/svg/minus-vertical.svg +3 -0
  812. package/src/lib/components/vention-icon/svg/minus.svg +3 -0
  813. package/src/lib/components/vention-icon/svg/mirror-flip-horizontal.svg +3 -0
  814. package/src/lib/components/vention-icon/svg/mirror-flip-vertical.svg +3 -0
  815. package/src/lib/components/vention-icon/svg/module-1.svg +13 -0
  816. package/src/lib/components/vention-icon/svg/module-2.svg +9 -0
  817. package/src/lib/components/vention-icon/svg/module-3.svg +6 -0
  818. package/src/lib/components/vention-icon/svg/module-4.svg +4 -0
  819. package/src/lib/components/vention-icon/svg/motor-1.svg +9 -0
  820. package/src/lib/components/vention-icon/svg/motor-2.svg +9 -0
  821. package/src/lib/components/vention-icon/svg/motor-3.svg +16 -0
  822. package/src/lib/components/vention-icon/svg/motor-4.svg +3 -0
  823. package/src/lib/components/vention-icon/svg/motor-5.svg +5 -0
  824. package/src/lib/components/vention-icon/svg/move-to-ground.svg +3 -0
  825. package/src/lib/components/vention-icon/svg/movie.svg +3 -0
  826. package/src/lib/components/vention-icon/svg/multiplier.svg +12 -0
  827. package/src/lib/components/vention-icon/svg/music.svg +3 -0
  828. package/src/lib/components/vention-icon/svg/network-2.svg +3 -0
  829. package/src/lib/components/vention-icon/svg/network-off.svg +3 -0
  830. package/src/lib/components/vention-icon/svg/network.svg +3 -0
  831. package/src/lib/components/vention-icon/svg/number-1.svg +10 -0
  832. package/src/lib/components/vention-icon/svg/number-2.svg +10 -0
  833. package/src/lib/components/vention-icon/svg/number-3.svg +11 -0
  834. package/src/lib/components/vention-icon/svg/number-4.svg +10 -0
  835. package/src/lib/components/vention-icon/svg/operator.svg +6 -0
  836. package/src/lib/components/vention-icon/svg/pdf.svg +3 -0
  837. package/src/lib/components/vention-icon/svg/phone-call.svg +3 -0
  838. package/src/lib/components/vention-icon/svg/phone-off.svg +3 -0
  839. package/src/lib/components/vention-icon/svg/phone.svg +3 -0
  840. package/src/lib/components/vention-icon/svg/photo.svg +3 -0
  841. package/src/lib/components/vention-icon/svg/pinned.svg +3 -0
  842. package/src/lib/components/vention-icon/svg/player-pause.svg +4 -0
  843. package/src/lib/components/vention-icon/svg/player-play-filled.svg +10 -0
  844. package/src/lib/components/vention-icon/svg/player-play.svg +3 -0
  845. package/src/lib/components/vention-icon/svg/player-record.svg +3 -0
  846. package/src/lib/components/vention-icon/svg/player-skip-back.svg +3 -0
  847. package/src/lib/components/vention-icon/svg/player-skip-forward.svg +3 -0
  848. package/src/lib/components/vention-icon/svg/player-stop-filled.svg +3 -0
  849. package/src/lib/components/vention-icon/svg/player-stop.svg +3 -0
  850. package/src/lib/components/vention-icon/svg/player-track-next.svg +4 -0
  851. package/src/lib/components/vention-icon/svg/player-track-prev.svg +4 -0
  852. package/src/lib/components/vention-icon/svg/plug-x.svg +3 -0
  853. package/src/lib/components/vention-icon/svg/plug.svg +3 -0
  854. package/src/lib/components/vention-icon/svg/plus.svg +3 -0
  855. package/src/lib/components/vention-icon/svg/pneumatic.svg +7 -0
  856. package/src/lib/components/vention-icon/svg/point-to-point-3.svg +4 -0
  857. package/src/lib/components/vention-icon/svg/point-to-point-check.svg +13 -0
  858. package/src/lib/components/vention-icon/svg/power.svg +3 -0
  859. package/src/lib/components/vention-icon/svg/programming.svg +5 -0
  860. package/src/lib/components/vention-icon/svg/pushbutton.svg +3 -0
  861. package/src/lib/components/vention-icon/svg/receipt-dollar.svg +3 -0
  862. package/src/lib/components/vention-icon/svg/receipt.svg +4 -0
  863. package/src/lib/components/vention-icon/svg/reference-frame-2.svg +3 -0
  864. package/src/lib/components/vention-icon/svg/reference-frame.svg +8 -0
  865. package/src/lib/components/vention-icon/svg/refresh-alert.svg +3 -0
  866. package/src/lib/components/vention-icon/svg/refresh-off.svg +3 -0
  867. package/src/lib/components/vention-icon/svg/refresh.svg +3 -0
  868. package/src/lib/components/vention-icon/svg/reload.svg +3 -0
  869. package/src/lib/components/vention-icon/svg/repeat.svg +3 -0
  870. package/src/lib/components/vention-icon/svg/rewind-backward-15.svg +13 -0
  871. package/src/lib/components/vention-icon/svg/rewind-forward-15.svg +13 -0
  872. package/src/lib/components/vention-icon/svg/robot-arm-2.svg +8 -0
  873. package/src/lib/components/vention-icon/svg/robot-arm-duotone-2.svg +8 -0
  874. package/src/lib/components/vention-icon/svg/robot-arm.svg +10 -0
  875. package/src/lib/components/vention-icon/svg/robot-face.svg +3 -0
  876. package/src/lib/components/vention-icon/svg/rotary.svg +5 -0
  877. package/src/lib/components/vention-icon/svg/route-square.svg +3 -0
  878. package/src/lib/components/vention-icon/svg/row-insert-bottom.svg +3 -0
  879. package/src/lib/components/vention-icon/svg/row-insert-top.svg +3 -0
  880. package/src/lib/components/vention-icon/svg/ruler-measure-2.svg +18 -0
  881. package/src/lib/components/vention-icon/svg/ruler.svg +3 -0
  882. package/src/lib/components/vention-icon/svg/save.svg +3 -0
  883. package/src/lib/components/vention-icon/svg/search.svg +3 -0
  884. package/src/lib/components/vention-icon/svg/selector.svg +3 -0
  885. package/src/lib/components/vention-icon/svg/send.svg +3 -0
  886. package/src/lib/components/vention-icon/svg/sensor.svg +5 -0
  887. package/src/lib/components/vention-icon/svg/sensor1.svg +6 -0
  888. package/src/lib/components/vention-icon/svg/sensor2.svg +6 -0
  889. package/src/lib/components/vention-icon/svg/sequence.svg +13 -0
  890. package/src/lib/components/vention-icon/svg/setting-automation.svg +5 -0
  891. package/src/lib/components/vention-icon/svg/settings-2.svg +4 -0
  892. package/src/lib/components/vention-icon/svg/settings-filled.svg +3 -0
  893. package/src/lib/components/vention-icon/svg/settings.svg +4 -0
  894. package/src/lib/components/vention-icon/svg/shield-code.svg +5 -0
  895. package/src/lib/components/vention-icon/svg/shield-filled.svg +3 -0
  896. package/src/lib/components/vention-icon/svg/shield-half.svg +3 -0
  897. package/src/lib/components/vention-icon/svg/shield.svg +3 -0
  898. package/src/lib/components/vention-icon/svg/shopping-bag.svg +3 -0
  899. package/src/lib/components/vention-icon/svg/shopping-cart-filled.svg +3 -0
  900. package/src/lib/components/vention-icon/svg/shopping-cart.svg +3 -0
  901. package/src/lib/components/vention-icon/svg/show-3d.svg +11 -0
  902. package/src/lib/components/vention-icon/svg/sitemap-1.svg +3 -0
  903. package/src/lib/components/vention-icon/svg/sitemap.svg +3 -0
  904. package/src/lib/components/vention-icon/svg/slash.svg +3 -0
  905. package/src/lib/components/vention-icon/svg/speedtest.svg +3 -0
  906. package/src/lib/components/vention-icon/svg/sphere.svg +3 -0
  907. package/src/lib/components/vention-icon/svg/square-number-0.svg +4 -0
  908. package/src/lib/components/vention-icon/svg/square-number-1.svg +4 -0
  909. package/src/lib/components/vention-icon/svg/square-number-2.svg +4 -0
  910. package/src/lib/components/vention-icon/svg/square-number-3.svg +4 -0
  911. package/src/lib/components/vention-icon/svg/stack.svg +3 -0
  912. package/src/lib/components/vention-icon/svg/star.svg +3 -0
  913. package/src/lib/components/vention-icon/svg/state-machine.svg +4 -0
  914. package/src/lib/components/vention-icon/svg/status-danger-hmi.svg +3 -0
  915. package/src/lib/components/vention-icon/svg/status-small.svg +3 -0
  916. package/src/lib/components/vention-icon/svg/status-warning-hmi.svg +3 -0
  917. package/src/lib/components/vention-icon/svg/stopwatch.svg +13 -0
  918. package/src/lib/components/vention-icon/svg/subtask.svg +3 -0
  919. package/src/lib/components/vention-icon/svg/switch-horizontal.svg +6 -0
  920. package/src/lib/components/vention-icon/svg/switch-vertical.svg +3 -0
  921. package/src/lib/components/vention-icon/svg/tag.svg +4 -0
  922. package/src/lib/components/vention-icon/svg/target.svg +5 -0
  923. package/src/lib/components/vention-icon/svg/template.svg +14 -0
  924. package/src/lib/components/vention-icon/svg/terminal-2.svg +3 -0
  925. package/src/lib/components/vention-icon/svg/terminal.svg +3 -0
  926. package/src/lib/components/vention-icon/svg/text-plus-1.svg +15 -0
  927. package/src/lib/components/vention-icon/svg/timeline.svg +3 -0
  928. package/src/lib/components/vention-icon/svg/tiny-caret-down.svg +3 -0
  929. package/src/lib/components/vention-icon/svg/tiny-caret-right.svg +3 -0
  930. package/src/lib/components/vention-icon/svg/tool-1.svg +3 -0
  931. package/src/lib/components/vention-icon/svg/tool.svg +3 -0
  932. package/src/lib/components/vention-icon/svg/topology-bus.svg +3 -0
  933. package/src/lib/components/vention-icon/svg/topology-complex.svg +3 -0
  934. package/src/lib/components/vention-icon/svg/topology-full-hierarchy.svg +3 -0
  935. package/src/lib/components/vention-icon/svg/topology-full.svg +3 -0
  936. package/src/lib/components/vention-icon/svg/topology-ring-2.svg +3 -0
  937. package/src/lib/components/vention-icon/svg/topology-ring-3.svg +3 -0
  938. package/src/lib/components/vention-icon/svg/topology-ring.svg +3 -0
  939. package/src/lib/components/vention-icon/svg/topology-star-3.svg +3 -0
  940. package/src/lib/components/vention-icon/svg/trash.svg +3 -0
  941. package/src/lib/components/vention-icon/svg/trending-up.svg +11 -0
  942. package/src/lib/components/vention-icon/svg/truck-delivery.svg +3 -0
  943. package/src/lib/components/vention-icon/svg/truck-loading.svg +3 -0
  944. package/src/lib/components/vention-icon/svg/un-pinned.svg +4 -0
  945. package/src/lib/components/vention-icon/svg/unlink.svg +3 -0
  946. package/src/lib/components/vention-icon/svg/update.svg +11 -0
  947. package/src/lib/components/vention-icon/svg/upload.svg +3 -0
  948. package/src/lib/components/vention-icon/svg/user-circle.svg +5 -0
  949. package/src/lib/components/vention-icon/svg/user-off.svg +6 -0
  950. package/src/lib/components/vention-icon/svg/user-plus.svg +3 -0
  951. package/src/lib/components/vention-icon/svg/user-shield.svg +6 -0
  952. package/src/lib/components/vention-icon/svg/user.svg +3 -0
  953. package/src/lib/components/vention-icon/svg/users-plus.svg +3 -0
  954. package/src/lib/components/vention-icon/svg/users.svg +3 -0
  955. package/src/lib/components/vention-icon/svg/variable.svg +3 -0
  956. package/src/lib/components/vention-icon/svg/vention.svg +3 -0
  957. package/src/lib/components/vention-icon/svg/versions.svg +3 -0
  958. package/src/lib/components/vention-icon/svg/video.svg +4 -0
  959. package/src/lib/components/vention-icon/svg/web-link.svg +3 -0
  960. package/src/lib/components/vention-icon/svg/weight-2.svg +3 -0
  961. package/src/lib/components/vention-icon/svg/weight.svg +4 -0
  962. package/src/lib/components/vention-icon/svg/wifi-low.svg +3 -0
  963. package/src/lib/components/vention-icon/svg/wifi-lowest.svg +3 -0
  964. package/src/lib/components/vention-icon/svg/wifi-off.svg +3 -0
  965. package/src/lib/components/vention-icon/svg/wifi.svg +3 -0
  966. package/src/lib/components/vention-icon/svg/world-download.svg +3 -0
  967. package/src/lib/components/vention-icon/svg/world.svg +3 -0
  968. package/src/lib/components/vention-icon/svg/xyz-1.svg +5 -0
  969. package/src/lib/components/vention-icon/svg/xyz-2.svg +5 -0
  970. package/src/lib/components/vention-icon/svgo.config.js +19 -0
  971. package/src/lib/components/vention-icon/svgr-duotone.config.js +13 -0
  972. package/src/lib/components/vention-icon/svgr.config.js +11 -0
  973. package/src/lib/components/vention-icon/vention-icon.stories.tsx +63 -0
  974. package/src/lib/components/vention-icon/vention-icon.test.tsx +62 -0
  975. package/src/lib/components/vention-icon/vention-icon.tsx +62 -0
  976. package/src/lib/components/vention-link/vention-link.stories.tsx +20 -0
  977. package/src/lib/components/vention-link/vention-link.test.tsx +44 -0
  978. package/src/lib/components/vention-link/vention-link.tsx +88 -0
  979. package/src/lib/components/vention-menu/vention-menu-context.ts +13 -0
  980. package/src/lib/components/vention-menu/vention-menu-item/vention-menu-child-item.tsx +104 -0
  981. package/src/lib/components/vention-menu/vention-menu-item/vention-menu-divider.tsx +33 -0
  982. package/src/lib/components/vention-menu/vention-menu-item/vention-menu-header.tsx +30 -0
  983. package/src/lib/components/vention-menu/vention-menu-item/vention-menu-item.tsx +25 -0
  984. package/src/lib/components/vention-menu/vention-menu-item/vention-menu-parent-item.tsx +84 -0
  985. package/src/lib/components/vention-menu/vention-menu-list.tsx +66 -0
  986. package/src/lib/components/vention-menu/vention-menu-styling-helpers.ts +151 -0
  987. package/src/lib/components/vention-menu/vention-menu.stories.tsx +119 -0
  988. package/src/lib/components/vention-menu/vention-menu.test.tsx +234 -0
  989. package/src/lib/components/vention-menu/vention-menu.tsx +44 -0
  990. package/src/lib/components/vention-modal/vention-modal.stories.tsx +204 -0
  991. package/src/lib/components/vention-modal/vention-modal.test.tsx +181 -0
  992. package/src/lib/components/vention-modal/vention-modal.tsx +232 -0
  993. package/src/lib/components/vention-modal-banner/vention-modal-banner.test.tsx +104 -0
  994. package/src/lib/components/vention-modal-banner/vention-modal-banner.tsx +120 -0
  995. package/src/lib/components/vention-modal-banner/vention-modal.banner.stories.tsx +138 -0
  996. package/src/lib/components/vention-modal-base/vention-modal-base.stories.tsx +95 -0
  997. package/src/lib/components/vention-modal-base/vention-modal-base.test.tsx +117 -0
  998. package/src/lib/components/vention-modal-base/vention-modal-base.tsx +149 -0
  999. package/src/lib/components/vention-popover/vention-popover.stories.tsx +30 -0
  1000. package/src/lib/components/vention-popover/vention-popover.test.tsx +148 -0
  1001. package/src/lib/components/vention-popover/vention-popover.tsx +211 -0
  1002. package/src/lib/components/vention-progress-bar/vention-progress-bar.stories.tsx +84 -0
  1003. package/src/lib/components/vention-progress-bar/vention-progress-bar.test.tsx +102 -0
  1004. package/src/lib/components/vention-progress-bar/vention-progress-bar.tsx +119 -0
  1005. package/src/lib/components/vention-radio/radio-model.ts +77 -0
  1006. package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile-control.tsx +38 -0
  1007. package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile-label.tsx +52 -0
  1008. package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile.stories.tsx +67 -0
  1009. package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile.test.tsx +88 -0
  1010. package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile.tsx +159 -0
  1011. package/src/lib/components/vention-radio/vention-radio.stories.tsx +62 -0
  1012. package/src/lib/components/vention-radio/vention-radio.test.tsx +90 -0
  1013. package/src/lib/components/vention-radio/vention-radio.tsx +174 -0
  1014. package/src/lib/components/vention-select/vention-select.stories.tsx +224 -0
  1015. package/src/lib/components/vention-select/vention-select.test.tsx +348 -0
  1016. package/src/lib/components/vention-select/vention-select.tsx +295 -0
  1017. package/src/lib/components/vention-sidebar-item/vention-sidebar-item.stories.tsx +27 -0
  1018. package/src/lib/components/vention-sidebar-item/vention-sidebar-item.test.tsx +45 -0
  1019. package/src/lib/components/vention-sidebar-item/vention-sidebar-item.tsx +82 -0
  1020. package/src/lib/components/vention-slider/vention-slider.stories.tsx +65 -0
  1021. package/src/lib/components/vention-slider/vention-slider.test.tsx +35 -0
  1022. package/src/lib/components/vention-slider/vention-slider.tsx +74 -0
  1023. package/src/lib/components/vention-spinner/vention-spinner.test.tsx +176 -0
  1024. package/src/lib/components/vention-spinner/vention-spinner.tsx +213 -0
  1025. package/src/lib/components/vention-spinner/vention.spinner.stories.tsx +67 -0
  1026. package/src/lib/components/vention-status-dot/vention-status-dot.stories.tsx +24 -0
  1027. package/src/lib/components/vention-status-dot/vention-status-dot.test.tsx +44 -0
  1028. package/src/lib/components/vention-status-dot/vention-status-dot.tsx +52 -0
  1029. package/src/lib/components/vention-status-indicator/vention-status-indicator.stories.tsx +49 -0
  1030. package/src/lib/components/vention-status-indicator/vention-status-indicator.test.tsx +50 -0
  1031. package/src/lib/components/vention-status-indicator/vention-status-indicator.tsx +205 -0
  1032. package/src/lib/components/vention-stepper/vention-stepper.stories.tsx +141 -0
  1033. package/src/lib/components/vention-stepper/vention-stepper.test.tsx +55 -0
  1034. package/src/lib/components/vention-stepper/vention-stepper.tsx +127 -0
  1035. package/src/lib/components/vention-steps/vention-steps.stories.tsx +45 -0
  1036. package/src/lib/components/vention-steps/vention-steps.test.tsx +144 -0
  1037. package/src/lib/components/vention-steps/vention-steps.tsx +305 -0
  1038. package/src/lib/components/vention-switch/vention-switch.stories.tsx +48 -0
  1039. package/src/lib/components/vention-switch/vention-switch.test.tsx +118 -0
  1040. package/src/lib/components/vention-switch/vention-switch.tsx +189 -0
  1041. package/src/lib/components/vention-tabs/vention-tabs.stories.tsx +28 -0
  1042. package/src/lib/components/vention-tabs/vention-tabs.test.tsx +40 -0
  1043. package/src/lib/components/vention-tabs/vention-tabs.tsx +61 -0
  1044. package/src/lib/components/vention-text-input/vention-text-input.stories.tsx +203 -0
  1045. package/src/lib/components/vention-text-input/vention-text-input.test.tsx +635 -0
  1046. package/src/lib/components/vention-text-input/vention-text-input.tsx +205 -0
  1047. package/src/lib/components/vention-tooltip/vention-tooltip.stories.tsx +25 -0
  1048. package/src/lib/components/vention-tooltip/vention-tooltip.test.tsx +19 -0
  1049. package/src/lib/components/vention-tooltip/vention-tooltip.tsx +53 -0
  1050. package/src/lib/components/vention-tree-item/vention-collapsible-caret-button.tsx +42 -0
  1051. package/src/lib/components/vention-tree-item/vention-tree-item.stories.tsx +618 -0
  1052. package/src/lib/components/vention-tree-item/vention-tree-item.test.tsx +561 -0
  1053. package/src/lib/components/vention-tree-item/vention-tree-item.tsx +401 -0
  1054. package/src/lib/components/vention-uploadfile/vention-uploadfile-utils.tsx +115 -0
  1055. package/src/lib/components/vention-uploadfile/vention-uploadfile.stories.tsx +69 -0
  1056. package/src/lib/components/vention-uploadfile/vention-uploadfile.test.tsx +88 -0
  1057. package/src/lib/components/vention-uploadfile/vention-uploadfile.tsx +122 -0
  1058. package/src/lib/testing/utils.tsx +26 -0
  1059. package/src/lib/theme/colors.ts +80 -0
  1060. package/src/lib/theme/machine-ui-theme.ts +718 -0
  1061. package/src/lib/theme/typography.ts +188 -0
  1062. package/src/lib/utilities.ts +15 -0
  1063. package/src/scripts/generate-icon-types.test.ts +91 -0
  1064. package/src/scripts/generate-icon-types.ts +97 -0
  1065. package/tsconfig.icon-generator.json +10 -0
  1066. package/tsconfig.json +24 -0
  1067. package/tsconfig.lib.json +23 -0
  1068. package/tsconfig.spec.json +20 -0
  1069. package/tsconfig.storybook.json +33 -0
  1070. package/tsconfig.types.json +9 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,2287 @@
1
+ ## 3.27.0 (2025-10-21)
2
+
3
+ ### 🚀 Features
4
+
5
+ - mc 920 cleanup stories ([#3910](https://github.com/VentionCo/platform-products/pull/3910))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - ashrafkhalilvention @ashrafkhalilvention
10
+
11
+ ## 3.26.0 (2025-10-21)
12
+
13
+ ### 🚀 Features
14
+
15
+ - publish machine apps components ([#3946](https://github.com/VentionCo/platform-products/pull/3946))
16
+
17
+ ### ❤️ Thank You
18
+
19
+ - JacquesVention
20
+
21
+ ## 3.25.0 (2025-10-20)
22
+
23
+ ### 🚀 Features
24
+
25
+ - add new icons and update existing SVG ([#3942](https://github.com/VentionCo/platform-products/pull/3942))
26
+
27
+ ### ❤️ Thank You
28
+
29
+ - LaurentColas-Vention @LaurentColas-Vention
30
+
31
+ ## 3.24.0 (2025-10-20)
32
+
33
+ ### 🚀 Features
34
+
35
+ - add duotone icons for position coordinates (rx, ry, rz, x, y, z) ([#3938](https://github.com/VentionCo/platform-products/pull/3938))
36
+
37
+ ### ❤️ Thank You
38
+
39
+ - LaurentColas-Vention @LaurentColas-Vention
40
+
41
+ ## 3.23.0 (2025-10-16)
42
+
43
+ ### 🚀 Features
44
+
45
+ - add duotone icons to vention icon ([#3921](https://github.com/VentionCo/platform-products/pull/3921))
46
+
47
+ ### ❤️ Thank You
48
+
49
+ - LaurentColas-Vention @LaurentColas-Vention
50
+
51
+ ## 3.22.0 (2025-10-16)
52
+
53
+ ### 🚀 Features
54
+
55
+ - mc 921 publish public machine UI package ([#3908](https://github.com/VentionCo/platform-products/pull/3908))
56
+
57
+ ### ❤️ Thank You
58
+
59
+ - ashrafkhalilvention @ashrafkhalilvention
60
+
61
+ ## 3.21.0 (2025-10-15)
62
+
63
+ ### 🚀 Features
64
+
65
+ - removed dev categoy ([#3904](https://github.com/VentionCo/platform-products/pull/3904))
66
+
67
+ ### ❤️ Thank You
68
+
69
+ - ashrafkhalilvention @ashrafkhalilvention
70
+
71
+ ## 3.20.3 (2025-10-14)
72
+
73
+ ### 🩹 Fixes
74
+
75
+ - **ui:** remove font smoothing properties from vention-icon ([#3915](https://github.com/VentionCo/platform-products/pull/3915))
76
+
77
+ ### ❤️ Thank You
78
+
79
+ - samuel-croteau
80
+
81
+ ## 3.20.2 (2025-10-14)
82
+
83
+ ### 🩹 Fixes
84
+
85
+ - add icon ([#3912](https://github.com/VentionCo/platform-products/pull/3912))
86
+
87
+ ### ❤️ Thank You
88
+
89
+ - JacquesVention
90
+
91
+ ## 3.20.1 (2025-10-10)
92
+
93
+ ### 🩹 Fixes
94
+
95
+ - **vention-select:** align chevron icon with Figma design ([#3901](https://github.com/VentionCo/platform-products/pull/3901))
96
+
97
+ ### ❤️ Thank You
98
+
99
+ - samuel-croteau
100
+
101
+ ## 3.20.0 (2025-10-09)
102
+
103
+ ### 🚀 Features
104
+
105
+ - add incline and decline icons ([#3896](https://github.com/VentionCo/platform-products/pull/3896))
106
+
107
+ ### ❤️ Thank You
108
+
109
+ - Daniel Ceballos @shibeknight
110
+
111
+ ## 3.19.0 (2025-10-08)
112
+
113
+ ### 🚀 Features
114
+
115
+ - **theme:** improve icon stroke width precision for better SVG rendering ([#3890](https://github.com/VentionCo/platform-products/pull/3890))
116
+
117
+ ### ❤️ Thank You
118
+
119
+ - samuel-croteau
120
+
121
+ ## 3.18.0 (2025-10-07)
122
+
123
+ ### 🚀 Features
124
+
125
+ - add font smoothing to icons ([#3875](https://github.com/VentionCo/platform-products/pull/3875))
126
+
127
+ ### ❤️ Thank You
128
+
129
+ - samuel-croteau
130
+
131
+ ## 3.17.0 (2025-10-06)
132
+
133
+ ### 🚀 Features
134
+
135
+ - mc 1128 add typechecking ([#3861](https://github.com/VentionCo/platform-products/pull/3861))
136
+
137
+ ### 🩹 Fixes
138
+
139
+ - add disabled prop for vention modal buttons ([#3866](https://github.com/VentionCo/platform-products/pull/3866))
140
+ - **nestjs-utils:** fix automatic versioning in dependent libraries ([#3858](https://github.com/VentionCo/platform-products/pull/3858))
141
+
142
+ ### ❤️ Thank You
143
+
144
+ - ashrafkhalilvention @ashrafkhalilvention
145
+ - Mark Aronin @maronin-vention
146
+ - Yann Thibodeau
147
+
148
+ ## 3.16.0 (2025-10-03)
149
+
150
+ ### 🚀 Features
151
+
152
+ - added the rotary icon ([1c3946d96](https://github.com/VentionCo/platform-products/commit/1c3946d96))
153
+
154
+ ### ❤️ Thank You
155
+
156
+ - guillaume-docquier-vention
157
+
158
+ ## 3.15.0 (2025-10-03)
159
+
160
+ ### 🚀 Features
161
+
162
+ - **storybook:** migrate to Vite and clean up icons ([#3867](https://github.com/VentionCo/platform-products/pull/3867))
163
+
164
+ ### 🔥 Performance
165
+
166
+ - **icons:** memoize components to reduce re-renders ([#3865](https://github.com/VentionCo/platform-products/pull/3865))
167
+
168
+ ### ❤️ Thank You
169
+
170
+ - samuel-croteau
171
+
172
+ ## 3.14.0 (2025-10-01)
173
+
174
+ ### 🚀 Features
175
+
176
+ - add forwardRef support to VentionIconButton component ([#3855](https://github.com/VentionCo/platform-products/pull/3855))
177
+
178
+ ### ❤️ Thank You
179
+
180
+ - LaurentColas-Vention @LaurentColas-Vention
181
+
182
+ ## 3.13.0 (2025-09-24)
183
+
184
+ ### 🚀 Features
185
+
186
+ - introduce disabled steps ([fcb066bc1](https://github.com/VentionCo/platform-products/commit/fcb066bc1))
187
+ - introduce addons to vention-steps ([6d90cf53f](https://github.com/VentionCo/platform-products/commit/6d90cf53f))
188
+ - support small size of vention-steps ([5e47f3769](https://github.com/VentionCo/platform-products/commit/5e47f3769))
189
+ - conditional vention-step styling if clickable ([19a5ce3c2](https://github.com/VentionCo/platform-products/commit/19a5ce3c2))
190
+ - introduce the vention-steps dot variant ([73349745d](https://github.com/VentionCo/platform-products/commit/73349745d))
191
+
192
+ ### 🩹 Fixes
193
+
194
+ - grow vention step based on content ([ffc3db087](https://github.com/VentionCo/platform-products/commit/ffc3db087))
195
+ - vention-steps crash in storybook ([bda07a68b](https://github.com/VentionCo/platform-products/commit/bda07a68b))
196
+
197
+ ### 🏡 Chore
198
+
199
+ - step numbers toFixed(0) ([95fc85767](https://github.com/VentionCo/platform-products/commit/95fc85767))
200
+ - typo in index comment ([dce25f642](https://github.com/VentionCo/platform-products/commit/dce25f642))
201
+ - handle cursor style conflict with bootstrap ([23dda8f05](https://github.com/VentionCo/platform-products/commit/23dda8f05))
202
+ - apply global styling to storybook ([3317ff18d](https://github.com/VentionCo/platform-products/commit/3317ff18d))
203
+ - adjust styling to account for global box-sizing rule ([0269bab6e](https://github.com/VentionCo/platform-products/commit/0269bab6e))
204
+ - expand test coverage ([378e72726](https://github.com/VentionCo/platform-products/commit/378e72726))
205
+ - improve test readability ([2e75ea8fe](https://github.com/VentionCo/platform-products/commit/2e75ea8fe))
206
+ - don't rely on css classes in unit tests ([02a40f1af](https://github.com/VentionCo/platform-products/commit/02a40f1af))
207
+ - use dot notation ([b0195645c](https://github.com/VentionCo/platform-products/commit/b0195645c))
208
+ - adjust small bullet top margin ([4c105b505](https://github.com/VentionCo/platform-products/commit/4c105b505))
209
+ - use step index as React key ([7f7ba0f81](https://github.com/VentionCo/platform-products/commit/7f7ba0f81))
210
+ - fix lint issues ([da98d643c](https://github.com/VentionCo/platform-products/commit/da98d643c))
211
+ - expand unit tests on vention-steps ([54b563637](https://github.com/VentionCo/platform-products/commit/54b563637))
212
+
213
+ ### ❤️ Thank You
214
+
215
+ - Alexis Besner
216
+
217
+ ## 3.12.1 (2025-09-23)
218
+
219
+ ### 🩹 Fixes
220
+
221
+ - button spinner color ([#3812](https://github.com/VentionCo/platform-products/pull/3812))
222
+
223
+ ### ❤️ Thank You
224
+
225
+ - Shakil Ahmed @shakilv
226
+
227
+ ## 3.12.0 (2025-09-23)
228
+
229
+ ### 🚀 Features
230
+
231
+ - add data-testid to ventioncounter ([#3830](https://github.com/VentionCo/platform-products/pull/3830))
232
+
233
+ ### ❤️ Thank You
234
+
235
+ - grahamtompkins @grahamtompkins
236
+
237
+ ## 3.11.2 (2025-09-19)
238
+
239
+ ### 🩹 Fixes
240
+
241
+ - **ml-2186:** update tabler react icons to fix ci tests timeouts ([#3814](https://github.com/VentionCo/platform-products/pull/3814))
242
+
243
+ ### ❤️ Thank You
244
+
245
+ - jriberdy
246
+
247
+ ## 3.11.1 (2025-09-18)
248
+
249
+ ### 🩹 Fixes
250
+
251
+ - use 14 font size instead of 16 ([#3817](https://github.com/VentionCo/platform-products/pull/3817))
252
+
253
+ ### ❤️ Thank You
254
+
255
+ - Mark Aronin @maronin-vention
256
+
257
+ ## 3.11.0 (2025-09-16)
258
+
259
+ ### 🚀 Features
260
+
261
+ - (ml-2179) add support for children prop in vention menu item ([#3813](https://github.com/VentionCo/platform-products/pull/3813))
262
+
263
+ ### ❤️ Thank You
264
+
265
+ - jriberdy
266
+
267
+ ## 3.10.0 (2025-09-12)
268
+
269
+ ### 🚀 Features
270
+
271
+ - add component to index ([c689a9121](https://github.com/VentionCo/platform-products/commit/c689a9121))
272
+ - vention-dropzone ([8aa9ab12a](https://github.com/VentionCo/platform-products/commit/8aa9ab12a))
273
+
274
+ ### 🩹 Fixes
275
+
276
+ - lazy load icons when creating iconImports ([#3809](https://github.com/VentionCo/platform-products/pull/3809))
277
+ - add coverage ([b6574a43a](https://github.com/VentionCo/platform-products/commit/b6574a43a))
278
+ - dont mutate param ([471c3e788](https://github.com/VentionCo/platform-products/commit/471c3e788))
279
+ - remove line-height ([090135b4d](https://github.com/VentionCo/platform-products/commit/090135b4d))
280
+
281
+ ### ❤️ Thank You
282
+
283
+ - Mark Aronin @maronin-vention
284
+ - shakilv
285
+
286
+ ## 3.9.0 (2025-09-11)
287
+
288
+ ### 🚀 Features
289
+
290
+ - allow non collapsible tree nodes that may have children ([#3806](https://github.com/VentionCo/platform-products/pull/3806))
291
+
292
+ ### ❤️ Thank You
293
+
294
+ - Sarthak @contribSane
295
+
296
+ ## 3.8.1 (2025-09-10)
297
+
298
+ ### 🩹 Fixes
299
+
300
+ - linting ([7cfb6cb0d](https://github.com/VentionCo/platform-products/commit/7cfb6cb0d))
301
+
302
+ ### ❤️ Thank You
303
+
304
+ - ashrafkhalilvention
305
+
306
+ ## 3.8.0 (2025-09-08)
307
+
308
+ ### 🚀 Features
309
+
310
+ - add vention upload file component ([#3796](https://github.com/VentionCo/platform-products/pull/3796))
311
+
312
+ ### ❤️ Thank You
313
+
314
+ - Shakil Ahmed @shakilv
315
+
316
+ ## 3.7.0 (2025-09-05)
317
+
318
+ ### 🚀 Features
319
+
320
+ - added the setting-automation icon from figma ([#3794](https://github.com/VentionCo/platform-products/pull/3794))
321
+
322
+ ### ❤️ Thank You
323
+
324
+ - Guillaume Docquier @guillaume-docquier-vention
325
+
326
+ ## 3.6.0 (2025-08-26)
327
+
328
+ ### 🚀 Features
329
+
330
+ - add className prop for VentionStatusDot ([#3769](https://github.com/VentionCo/platform-products/pull/3769))
331
+
332
+ ### ❤️ Thank You
333
+
334
+ - Danilo Barros @DaniloBarros
335
+
336
+ ## 3.5.0 (2025-08-26)
337
+
338
+ ### 🚀 Features
339
+
340
+ - custom modal width and added textAlign option ([#3767](https://github.com/VentionCo/platform-products/pull/3767))
341
+
342
+ ### ❤️ Thank You
343
+
344
+ - Guillaume Docquier @guillaume-docquier-vention
345
+
346
+ ## 3.4.1 (2025-08-26)
347
+
348
+ ### 🩹 Fixes
349
+
350
+ - added more icons, fixed default strokeWidth ([#3766](https://github.com/VentionCo/platform-products/pull/3766))
351
+
352
+ ### ❤️ Thank You
353
+
354
+ - Mark Aronin @maronin-vention
355
+
356
+ ## 3.4.0 (2025-08-25)
357
+
358
+ ### 🚀 Features
359
+
360
+ - added user-off ([#3762](https://github.com/VentionCo/platform-products/pull/3762))
361
+
362
+ ### ❤️ Thank You
363
+
364
+ - Mark Aronin @maronin-vention
365
+
366
+ ## 3.3.0 (2025-08-22)
367
+
368
+ ### 🚀 Features
369
+
370
+ - add and generate tempalte icon ([#3756](https://github.com/VentionCo/platform-products/pull/3756))
371
+
372
+ ### ❤️ Thank You
373
+
374
+ - Daniel Ceballos @shibeknight
375
+
376
+ ## 3.2.0 (2025-08-21)
377
+
378
+ ### 🚀 Features
379
+
380
+ - add support for data-testid prop to vention link component ([#3748](https://github.com/VentionCo/platform-products/pull/3748))
381
+
382
+ ### ❤️ Thank You
383
+
384
+ - jriberdy
385
+
386
+ ## 3.1.1 (2025-08-20)
387
+
388
+ ### 🩹 Fixes
389
+
390
+ - [ML-2057] update background-surface colors to match figma ([#3740](https://github.com/VentionCo/platform-products/pull/3740))
391
+
392
+ ### ❤️ Thank You
393
+
394
+ - Benjamin Richard @benrichardv
395
+
396
+ ## 3.1.0 (2025-08-19)
397
+
398
+ ### 🚀 Features
399
+
400
+ - added new icons used for the new toolbar ([#3741](https://github.com/VentionCo/platform-products/pull/3741))
401
+
402
+ ### ❤️ Thank You
403
+
404
+ - Mark Aronin @maronin-vention
405
+
406
+ # 3.0.0 (2025-08-19)
407
+
408
+ ### 🚀 Features
409
+
410
+ - ⚠️ support react components as the vention modal body text (ML-2049) ([#3734](https://github.com/VentionCo/platform-products/pull/3734))
411
+
412
+ ### ⚠️ Breaking Changes
413
+
414
+ - ⚠️ support react components as the vention modal body text (ML-2049) ([#3734](https://github.com/VentionCo/platform-products/pull/3734))
415
+
416
+ ### ❤️ Thank You
417
+
418
+ - Guillaume Docquier @guillaume-docquier-vention
419
+
420
+ ## 2.7.0 (2025-08-15)
421
+
422
+ ### 🚀 Features
423
+
424
+ - add contentColor to be able to color button content ([#3718](https://github.com/VentionCo/platform-products/pull/3718))
425
+
426
+ ### ❤️ Thank You
427
+
428
+ - Mark Aronin @maronin-vention
429
+
430
+ ## 2.6.4 (2025-08-13)
431
+
432
+ ### 🩹 Fixes
433
+
434
+ - update onClick type to include event parameter for VentionMenuItemProps ([#3715](https://github.com/VentionCo/platform-products/pull/3715))
435
+
436
+ ### ❤️ Thank You
437
+
438
+ - Mark Aronin @maronin-vention
439
+
440
+ ## 2.6.3 (2025-08-07)
441
+
442
+ ### 🩹 Fixes
443
+
444
+ - vention dropdown button styling ([#3704](https://github.com/VentionCo/platform-products/pull/3704))
445
+
446
+ ### ❤️ Thank You
447
+
448
+ - Mark Aronin @maronin-vention
449
+
450
+ ## 2.6.2 (2025-08-06)
451
+
452
+ ### 🩹 Fixes
453
+
454
+ - expose vention-dropdown-button ([#3703](https://github.com/VentionCo/platform-products/pull/3703))
455
+
456
+ ### ❤️ Thank You
457
+
458
+ - Mark Aronin @maronin-vention
459
+
460
+ ## 2.6.1 (2025-07-30)
461
+
462
+ ### 🩹 Fixes
463
+
464
+ - render menus on top with index.modal ([#3690](https://github.com/VentionCo/platform-products/pull/3690))
465
+
466
+ ### ❤️ Thank You
467
+
468
+ - Mark Aronin @maronin-vention
469
+
470
+ ## 2.6.0 (2025-07-29)
471
+
472
+ ### 🚀 Features
473
+
474
+ - vention dropdown button ([#3675](https://github.com/VentionCo/platform-products/pull/3675))
475
+
476
+ ### ❤️ Thank You
477
+
478
+ - Mark Aronin @maronin-vention
479
+
480
+ ## 2.5.2 (2025-07-29)
481
+
482
+ ### 🩹 Fixes
483
+
484
+ - add diff to publish ([#3683](https://github.com/VentionCo/platform-products/pull/3683))
485
+
486
+ ### ❤️ Thank You
487
+
488
+ - ashrafkhalilvention @ashrafkhalilvention
489
+
490
+ ## 2.4.1 (2025-07-21)
491
+
492
+ ### 🩹 Fixes
493
+
494
+ - improve ci steps and use nx for coverage ([#3647](https://github.com/VentionCo/platform-products/pull/3647))
495
+
496
+ ### ❤️ Thank You
497
+
498
+ - JacquesVention
499
+
500
+ ## 2.4.0 (2025-07-18)
501
+
502
+ ### 🚀 Features
503
+
504
+ - add sequence icon ([#3658](https://github.com/VentionCo/platform-products/pull/3658))
505
+
506
+ ### ❤️ Thank You
507
+
508
+ - Roberto Ruffolo-Benavides
509
+
510
+ ## 2.3.0 (2025-07-17)
511
+
512
+ ### 🚀 Features
513
+
514
+ - pass the action to close vention alert ([#3655](https://github.com/VentionCo/platform-products/pull/3655))
515
+
516
+ ### ❤️ Thank You
517
+
518
+ - FantasticJimmy
519
+
520
+ ## 2.2.0 (2025-07-15)
521
+
522
+ ### 🚀 Features
523
+
524
+ - fix styling for select ([#3649](https://github.com/VentionCo/platform-products/pull/3649))
525
+
526
+ ### ❤️ Thank You
527
+
528
+ - Roberto Ruffolo-Benavides
529
+
530
+ ## 2.1.0 (2025-07-14)
531
+
532
+ ### 🚀 Features
533
+
534
+ - create machine-ui release ([#3646](https://github.com/VentionCo/platform-products/pull/3646))
535
+
536
+ ### ❤️ Thank You
537
+
538
+ - grahamtompkins @grahamtompkins
539
+
540
+ # 2.0.0 (2025-07-11)
541
+
542
+ ### 🚀 Features
543
+
544
+ - add testid to collapse caret button ([#3642](https://github.com/VentionCo/platform-products/pull/3642))
545
+ - ⚠️ ensure select and text input have the same styling ([#3635](https://github.com/VentionCo/platform-products/pull/3635))
546
+
547
+ ### 🏡 Chore
548
+
549
+ - add optional dataTestid prop ([#3641](https://github.com/VentionCo/platform-products/pull/3641))
550
+
551
+ ### ⚠️ Breaking Changes
552
+
553
+ - ⚠️ ensure select and text input have the same styling ([#3635](https://github.com/VentionCo/platform-products/pull/3635))
554
+
555
+ ### ❤️ Thank You
556
+
557
+ - grahamtompkins @grahamtompkins
558
+ - Roberto Ruffolo-Benavides
559
+
560
+ ## 1.2.1 (2025-07-09)
561
+
562
+ ### 🏡 Chore
563
+
564
+ - update Jest configuration to include HTML coverage reports ([#3627](https://github.com/VentionCo/platform-products/pull/3627))
565
+
566
+ ### ❤️ Thank You
567
+
568
+ - JacquesVention
569
+
570
+ ## 1.2.0 (2025-07-09)
571
+
572
+ ### 🚀 Features
573
+
574
+ - added spinner prop ability to vention button ([#3626](https://github.com/VentionCo/platform-products/pull/3626))
575
+
576
+ ### ❤️ Thank You
577
+
578
+ - FantasticJimmy
579
+
580
+ ## 1.1.1 (2025-07-02)
581
+
582
+ ### 🩹 Fixes
583
+
584
+ - 1 fix codecov ([#3604](https://github.com/VentionCo/platform-products/pull/3604))
585
+
586
+ ### ❤️ Thank You
587
+
588
+ - JacquesVention
589
+
590
+ ## 1.1.0 (2025-06-19)
591
+
592
+ ### 🚀 Features
593
+
594
+ - add Codecov configuration and update CI workflow for coverage ([#3584](https://github.com/VentionCo/platform-products/pull/3584))
595
+
596
+ ### ❤️ Thank You
597
+
598
+ - JacquesVention
599
+
600
+ # 1.0.0 (2025-06-16)
601
+
602
+ ### 🚀 Features
603
+
604
+ - ⚠️ bump machine-ui to v1.0.0 with strict semantic versioning policy ([#3583](https://github.com/VentionCo/platform-products/pull/3583))
605
+
606
+ ### ⚠️ Breaking Changes
607
+
608
+ - Machine UI now follows strict semantic versioning practices where any breaking change to component contracts, APIs, or behavior will require a major version bump. This ensures consuming teams can safely upgrade patch and minor versions without unexpected breaking changes."
609
+
610
+ ### ❤️ Thank You
611
+
612
+ - Yann Thibodeau
613
+
614
+ ## 0.123.0 (2025-06-13)
615
+
616
+ ### 🚀 Features
617
+
618
+ - **ventionmenu:** ml-1724 adjust vention menu css to align with design ([#3581](https://github.com/VentionCo/platform-products/pull/3581))
619
+
620
+ ### ❤️ Thank You
621
+
622
+ - jriberdy
623
+
624
+ ## 0.122.0 (2025-06-12)
625
+
626
+ ### 🚀 Features
627
+
628
+ - upgrade to NX 21 and Migrate Python Tooling to Ruff ([#3580](https://github.com/VentionCo/platform-products/pull/3580))
629
+
630
+ ### ❤️ Thank You
631
+
632
+ - Yann Thibodeau
633
+
634
+ ## 0.121.0 (2025-06-11)
635
+
636
+
637
+ ### 🚀 Features
638
+
639
+ - machine logic cli starting point and boilerplate ([#3575](https://github.com/VentionCo/platform-products/pull/3575))
640
+
641
+
642
+ ### ❤️ Thank You
643
+
644
+ - ashrafkhalilvention @ashrafkhalilvention
645
+
646
+ ## 0.120.0 (2025-06-09)
647
+
648
+
649
+ ### 🚀 Features
650
+
651
+ - **icons:** add gear icon and improve documentation ([#3578](https://github.com/VentionCo/platform-products/pull/3578))
652
+
653
+
654
+ ### ❤️ Thank You
655
+
656
+ - samuel-croteau
657
+
658
+ ## 0.119.1 (2025-06-05)
659
+
660
+
661
+ ### 🩹 Fixes
662
+
663
+ - add mui as a peerDependency ([#3572](https://github.com/VentionCo/platform-products/pull/3572))
664
+
665
+
666
+ ### ❤️ Thank You
667
+
668
+ - Roberto Ruffolo-Benavides
669
+
670
+ ## 0.119.0 (2025-05-29)
671
+
672
+
673
+ ### 🚀 Features
674
+
675
+ - add support for ventionmenu nesting ([#3535](https://github.com/VentionCo/platform-products/pull/3535))
676
+
677
+
678
+ ### ❤️ Thank You
679
+
680
+ - jriberdy
681
+
682
+ ## 0.118.1 (2025-05-29)
683
+
684
+
685
+ ### 🩹 Fixes
686
+
687
+ - virtual keyboard bug when NaN ([#3551](https://github.com/VentionCo/platform-products/pull/3551))
688
+
689
+
690
+ ### ❤️ Thank You
691
+
692
+ - YuYing Liang @yuyingliang07
693
+
694
+ ## 0.118.0 (2025-05-26)
695
+
696
+
697
+ ### 🚀 Features
698
+
699
+ - **icon:** add new shield code icon ([#3536](https://github.com/VentionCo/platform-products/pull/3536))
700
+
701
+
702
+ ### ❤️ Thank You
703
+
704
+ - Roberto Ruffolo-Benavides
705
+
706
+ ## 0.117.1 (2025-05-21)
707
+
708
+
709
+ ### 🩹 Fixes
710
+
711
+ - reduce size of caption right ([#3521](https://github.com/VentionCo/platform-products/pull/3521))
712
+
713
+
714
+ ### ❤️ Thank You
715
+
716
+ - samuel-croteau
717
+
718
+ ## 0.117.0 (2025-05-21)
719
+
720
+
721
+ ### 🚀 Features
722
+
723
+ - enhance VentionCounter value display logic ([#3522](https://github.com/VentionCo/platform-products/pull/3522))
724
+
725
+
726
+ ### ❤️ Thank You
727
+
728
+ - Jonathan E.
729
+
730
+ ## 0.116.0 (2025-05-20)
731
+
732
+
733
+ ### 🚀 Features
734
+
735
+ - add package and publish targets to apps ([#3514](https://github.com/VentionCo/platform-products/pull/3514))
736
+
737
+
738
+ ### ❤️ Thank You
739
+
740
+ - ashrafkhalilvention @ashrafkhalilvention
741
+
742
+ ## 0.115.2 (2025-05-16)
743
+
744
+
745
+ ### 🩹 Fixes
746
+
747
+ - most warnings when executing nx tasks ([#3511](https://github.com/VentionCo/platform-products/pull/3511))
748
+
749
+
750
+ ### ❤️ Thank You
751
+
752
+ - Yann Thibodeau
753
+
754
+ ## 0.115.1 (2025-05-14)
755
+
756
+
757
+ ### 🩹 Fixes
758
+
759
+ - don't export test code in package ([#3512](https://github.com/VentionCo/platform-products/pull/3512))
760
+
761
+
762
+ ### 🏡 Chore
763
+
764
+ - expose renderWithTheme for testing ([#3505](https://github.com/VentionCo/platform-products/pull/3505))
765
+
766
+ - update docs for using yalc ([#3508](https://github.com/VentionCo/platform-products/pull/3508))
767
+
768
+
769
+ ### ❤️ Thank You
770
+
771
+ - Mark Aronin @maronin-vention
772
+ - Stephane Adjoury
773
+
774
+ ## 0.115.0 (2025-05-13)
775
+
776
+
777
+ ### 🚀 Features
778
+
779
+ - export VentionTooltip ([#3501](https://github.com/VentionCo/platform-products/pull/3501))
780
+
781
+
782
+ ### ❤️ Thank You
783
+
784
+ - Guillaume Robichaud @GRobichaud
785
+
786
+ ## 0.114.0 (2025-05-13)
787
+
788
+
789
+ ### 🚀 Features
790
+
791
+ - fixed icon size and removed duplicate ([#3500](https://github.com/VentionCo/platform-products/pull/3500))
792
+
793
+
794
+ ### ❤️ Thank You
795
+
796
+ - Guillaume Robichaud @GRobichaud
797
+
798
+ ## 0.113.0 (2025-05-08)
799
+
800
+
801
+ ### 🚀 Features
802
+
803
+ - new Panel Studio toolbar icons ([#3492](https://github.com/VentionCo/platform-products/pull/3492))
804
+
805
+
806
+ ### ❤️ Thank You
807
+
808
+ - Guillaume Robichaud @GRobichaud
809
+
810
+ ## 0.112.0 (2025-05-05)
811
+
812
+
813
+ ### 🚀 Features
814
+
815
+ - **ML-1283:** add VentionTooltip ([#3470](https://github.com/VentionCo/platform-products/pull/3470))
816
+
817
+
818
+ ### ❤️ Thank You
819
+
820
+ - jriberdy
821
+
822
+ ## 0.111.7 (2025-05-02)
823
+
824
+
825
+ ### 🩹 Fixes
826
+
827
+ - put text ellipsis when button content overflow ([#3478](https://github.com/VentionCo/platform-products/pull/3478))
828
+
829
+
830
+ ### ❤️ Thank You
831
+
832
+ - samuel-croteau
833
+
834
+ ## 0.111.6 (2025-05-02)
835
+
836
+
837
+ ### 🩹 Fixes
838
+
839
+ - **button:** standardize height and improve storybook docs ([#3477](https://github.com/VentionCo/platform-products/pull/3477))
840
+
841
+
842
+ ### ❤️ Thank You
843
+
844
+ - samuel-croteau
845
+
846
+ ## 0.111.5 (2025-05-02)
847
+
848
+
849
+ ### 🩹 Fixes
850
+
851
+ - move warning icon to the correct position ⚠️ ([#3476](https://github.com/VentionCo/platform-products/pull/3476))
852
+
853
+
854
+ ### ❤️ Thank You
855
+
856
+ - Jonathan E.
857
+
858
+ ## 0.111.4 (2025-05-01)
859
+
860
+
861
+ ### 🩹 Fixes
862
+
863
+ - minor ui inconsistency with the design ([#3474](https://github.com/VentionCo/platform-products/pull/3474))
864
+
865
+
866
+ ### ❤️ Thank You
867
+
868
+ - samuel-croteau
869
+
870
+ ## 0.111.3 (2025-05-01)
871
+
872
+
873
+ ### 🩹 Fixes
874
+
875
+ - border radius of select when small ([#3471](https://github.com/VentionCo/platform-products/pull/3471))
876
+
877
+
878
+ ### ❤️ Thank You
879
+
880
+ - samuel-croteau
881
+
882
+ ## 0.111.2 (2025-04-29)
883
+
884
+
885
+ ### 🩹 Fixes
886
+
887
+ - make undefined explicit for assembler support ([#3466](https://github.com/VentionCo/platform-products/pull/3466))
888
+
889
+
890
+ ### ❤️ Thank You
891
+
892
+ - samuel-croteau
893
+
894
+ ## 0.111.1 (2025-04-23)
895
+
896
+
897
+ ### 🩹 Fixes
898
+
899
+ - text-input radius and padding And duotone Icon height ([#3455](https://github.com/VentionCo/platform-products/pull/3455))
900
+
901
+
902
+ ### ❤️ Thank You
903
+
904
+ - samuel-croteau
905
+
906
+ ## 0.111.0 (2025-04-23)
907
+
908
+
909
+ ### 🚀 Features
910
+
911
+ - add a color prop ([#3454](https://github.com/VentionCo/platform-products/pull/3454))
912
+
913
+
914
+ ### ❤️ Thank You
915
+
916
+ - FantasticJimmy
917
+
918
+ ## 0.110.2 (2025-04-22)
919
+
920
+
921
+ ### 🩹 Fixes
922
+
923
+ - :lipstick: remove the yellow background on warning ([#3452](https://github.com/VentionCo/platform-products/pull/3452))
924
+
925
+
926
+ ### ❤️ Thank You
927
+
928
+ - Jonathan E.
929
+
930
+ ## 0.110.1 (2025-04-22)
931
+
932
+
933
+ ### 🩹 Fixes
934
+
935
+ - use effect for labelText... for now ([#3451](https://github.com/VentionCo/platform-products/pull/3451))
936
+
937
+
938
+ ### ❤️ Thank You
939
+
940
+ - Mark Aronin @maronin-vention
941
+
942
+ ## 0.110.0 (2025-04-22)
943
+
944
+
945
+ ### 🚀 Features
946
+
947
+ - update prop types for vention tree item ([#3450](https://github.com/VentionCo/platform-products/pull/3450))
948
+
949
+
950
+ ### ❤️ Thank You
951
+
952
+ - Jonathan E.
953
+
954
+ ## 0.109.0 (2025-04-22)
955
+
956
+
957
+ ### 🚀 Features
958
+
959
+ - update prop types for vention tree item ✨ ([#3449](https://github.com/VentionCo/platform-products/pull/3449))
960
+
961
+
962
+ ### ❤️ Thank You
963
+
964
+ - Jonathan E.
965
+
966
+ ## 0.108.1 (2025-04-21)
967
+
968
+
969
+ ### 🩹 Fixes
970
+
971
+ - update machine-ui readme ([#3448](https://github.com/VentionCo/platform-products/pull/3448))
972
+
973
+
974
+ ### ❤️ Thank You
975
+
976
+ - samuel-croteau
977
+
978
+ ## 0.108.0 (2025-04-21)
979
+
980
+
981
+ ### 🚀 Features
982
+
983
+ - **combobox:** add scroll, sorting, and null value support ([#3444](https://github.com/VentionCo/platform-products/pull/3444))
984
+
985
+
986
+ ### ❤️ Thank You
987
+
988
+ - samuel-croteau
989
+
990
+ ## 0.107.0 (2025-04-21)
991
+
992
+
993
+ ### 🚀 Features
994
+
995
+ - update type signature ([#3442](https://github.com/VentionCo/platform-products/pull/3442))
996
+
997
+
998
+ ### ❤️ Thank You
999
+
1000
+ - Jonathan E. @jadiaheno
1001
+
1002
+ ## 0.106.0 (2025-04-21)
1003
+
1004
+
1005
+ ### 🚀 Features
1006
+
1007
+ - simple push to publish machine cloud ([#3441](https://github.com/VentionCo/platform-products/pull/3441))
1008
+
1009
+
1010
+ ### ❤️ Thank You
1011
+
1012
+ - Jonathan E. @jadiaheno
1013
+
1014
+ ## 0.105.5 (2025-04-17)
1015
+
1016
+
1017
+ ### 🩹 Fixes
1018
+
1019
+ - needed ot fix the type ([#3439](https://github.com/VentionCo/platform-products/pull/3439))
1020
+
1021
+
1022
+ ### ❤️ Thank You
1023
+
1024
+ - Jonathan E. @jadiaheno
1025
+
1026
+ ## 0.105.4 (2025-04-17)
1027
+
1028
+
1029
+ ### 🩹 Fixes
1030
+
1031
+ - sam too fast, sam too furious ([#3438](https://github.com/VentionCo/platform-products/pull/3438))
1032
+
1033
+
1034
+ ### ❤️ Thank You
1035
+
1036
+ - Jonathan E. @jadiaheno
1037
+
1038
+ ## 0.105.3 (2025-04-17)
1039
+
1040
+
1041
+ ### 🩹 Fixes
1042
+
1043
+ - removing useless state in the vention-tree-item ([#3437](https://github.com/VentionCo/platform-products/pull/3437))
1044
+
1045
+
1046
+ ### ❤️ Thank You
1047
+
1048
+ - Jonathan E. @jadiaheno
1049
+
1050
+ ## 0.105.2 (2025-04-16)
1051
+
1052
+
1053
+ ### 🩹 Fixes
1054
+
1055
+ - add ref prop to VentionTreeItem component ✨ ([#3429](https://github.com/VentionCo/platform-products/pull/3429))
1056
+
1057
+
1058
+ ### ❤️ Thank You
1059
+
1060
+ - Jonathan E. @jadiaheno
1061
+
1062
+ ## 0.105.1 (2025-04-10)
1063
+
1064
+
1065
+ ### 🩹 Fixes
1066
+
1067
+ - update pneumatic icon ([#3402](https://github.com/VentionCo/platform-products/pull/3402))
1068
+
1069
+
1070
+ ### ❤️ Thank You
1071
+
1072
+ - ashrafkhalilvention @ashrafkhalilvention
1073
+
1074
+ ## 0.105.0 (2025-04-10)
1075
+
1076
+
1077
+ ### 🚀 Features
1078
+
1079
+ - adjust caption Right design ([#3406](https://github.com/VentionCo/platform-products/pull/3406))
1080
+
1081
+
1082
+ ### ❤️ Thank You
1083
+
1084
+ - samuel-croteau
1085
+
1086
+ ## 0.104.0 (2025-04-10)
1087
+
1088
+
1089
+ ### 🚀 Features
1090
+
1091
+ - add autofocus to combobox ([#3408](https://github.com/VentionCo/platform-products/pull/3408))
1092
+
1093
+
1094
+ ### ❤️ Thank You
1095
+
1096
+ - samuel-croteau
1097
+
1098
+ ## 0.103.0 (2025-04-10)
1099
+
1100
+
1101
+ ### 🚀 Features
1102
+
1103
+ - add vention combobox to barrel file ([#3407](https://github.com/VentionCo/platform-products/pull/3407))
1104
+
1105
+
1106
+ ### ❤️ Thank You
1107
+
1108
+ - samuel-croteau
1109
+
1110
+ ## 0.102.0 (2025-04-08)
1111
+
1112
+
1113
+ ### 🚀 Features
1114
+
1115
+ - **machine-ui:** create <VentionCombobox /> ([#3399](https://github.com/VentionCo/machine-cloud/pull/3399))
1116
+
1117
+
1118
+ ### ❤️ Thank You
1119
+
1120
+ - samuel-croteau
1121
+
1122
+ ## 0.101.0 (2025-04-08)
1123
+
1124
+
1125
+ ### 🚀 Features
1126
+
1127
+ - improved folder structure so more teams can work in the monorepo ([#3392](https://github.com/VentionCo/machine-cloud/pull/3392))
1128
+
1129
+
1130
+ ### ❤️ Thank You
1131
+
1132
+ - Yann Thibodeau
1133
+
1134
+ ## 0.100.2 (2025-04-07)
1135
+
1136
+
1137
+ ### 🩹 Fixes
1138
+
1139
+ - **styles:** adjust padding and gap in tree item ✨ ([#3396](https://github.com/VentionCo/machine-cloud/pull/3396))
1140
+
1141
+
1142
+ ### ❤️ Thank You
1143
+
1144
+ - Jonathan E. @jadiaheno
1145
+
1146
+ ## 0.100.1 (2025-04-05)
1147
+
1148
+
1149
+ ### 🩹 Fixes
1150
+
1151
+ - **label:** bold labels in VentionTextInput ([#3390](https://github.com/VentionCo/machine-cloud/pull/3390))
1152
+
1153
+
1154
+ ### ❤️ Thank You
1155
+
1156
+ - Ibrahim Taser Miraj
1157
+
1158
+ ## 0.100.0 (2025-04-03)
1159
+
1160
+
1161
+ ### 🚀 Features
1162
+
1163
+ - allow for stackable right captions ([#3388](https://github.com/VentionCo/machine-cloud/pull/3388))
1164
+
1165
+
1166
+ ### ❤️ Thank You
1167
+
1168
+ - ashrafkhalilvention @ashrafkhalilvention
1169
+
1170
+ ## 0.99.0 (2025-04-03)
1171
+
1172
+
1173
+ ### 🚀 Features
1174
+
1175
+ - update translations and add reset button for calibration ([#3383](https://github.com/VentionCo/machine-cloud/pull/3383))
1176
+
1177
+
1178
+ ### ❤️ Thank You
1179
+
1180
+ - YuYing Liang @yuyingliang07
1181
+
1182
+ ## 0.98.1 (2025-04-03)
1183
+
1184
+
1185
+ ### 🩹 Fixes
1186
+
1187
+ - **label:** add proper label sizing ([#3385](https://github.com/VentionCo/machine-cloud/pull/3385))
1188
+
1189
+
1190
+ ### ❤️ Thank You
1191
+
1192
+ - Ibrahim Taser Miraj
1193
+
1194
+ ## 0.98.0 (2025-03-31)
1195
+
1196
+
1197
+ ### 🚀 Features
1198
+
1199
+ - added right and left item ([#3369](https://github.com/VentionCo/machine-cloud/pull/3369))
1200
+
1201
+
1202
+ ### ❤️ Thank You
1203
+
1204
+ - ashrafkhalilvention @ashrafkhalilvention
1205
+
1206
+ ## 0.97.1 (2025-03-31)
1207
+
1208
+
1209
+ ### 🩹 Fixes
1210
+
1211
+ - show hide action button container depending on action buttons ([#3371](https://github.com/VentionCo/machine-cloud/pull/3371))
1212
+
1213
+
1214
+ ### ❤️ Thank You
1215
+
1216
+ - Mark Aronin @maronin-vention
1217
+
1218
+ ## 0.97.0 (2025-03-28)
1219
+
1220
+
1221
+ ### 🚀 Features
1222
+
1223
+ - ml 1197 input select states ([#3372](https://github.com/VentionCo/machine-cloud/pull/3372))
1224
+
1225
+
1226
+ ### ❤️ Thank You
1227
+
1228
+ - Kenneth Xu @kenneth-vention
1229
+
1230
+ ## 0.96.3 (2025-03-26)
1231
+
1232
+
1233
+ ### 🩹 Fixes
1234
+
1235
+ - **ventionSelect:** improve styling and overflow handling ([#3365](https://github.com/VentionCo/machine-cloud/pull/3365))
1236
+
1237
+
1238
+ ### ❤️ Thank You
1239
+
1240
+ - samuel-croteau
1241
+
1242
+ ## 0.96.2 (2025-03-25)
1243
+
1244
+
1245
+ ### 🩹 Fixes
1246
+
1247
+ - height 100% for drawerChildren ([#3361](https://github.com/VentionCo/machine-cloud/pull/3361))
1248
+
1249
+
1250
+ ### ❤️ Thank You
1251
+
1252
+ - Mark Aronin @maronin-vention
1253
+
1254
+ ## 0.96.1 (2025-03-24)
1255
+
1256
+
1257
+ ### 🩹 Fixes
1258
+
1259
+ - onClick is optional for captionRight ([#3359](https://github.com/VentionCo/machine-cloud/pull/3359))
1260
+
1261
+
1262
+ ### ❤️ Thank You
1263
+
1264
+ - Mark Aronin @maronin-vention
1265
+
1266
+ ## 0.96.0 (2025-03-21)
1267
+
1268
+
1269
+ ### 🚀 Features
1270
+
1271
+ - added captionRight to tree view item ([#3353](https://github.com/VentionCo/machine-cloud/pull/3353))
1272
+
1273
+
1274
+ ### ❤️ Thank You
1275
+
1276
+ - Mark Aronin @maronin-vention
1277
+
1278
+ ## 0.95.0 (2025-03-21)
1279
+
1280
+
1281
+ ### 🚀 Features
1282
+
1283
+ - **ui:** expand Vention tree by default ([#3354](https://github.com/VentionCo/machine-cloud/pull/3354))
1284
+
1285
+
1286
+ ### ❤️ Thank You
1287
+
1288
+ - samuel-croteau
1289
+
1290
+ ## 0.94.2 (2025-03-20)
1291
+
1292
+
1293
+ ### 🩹 Fixes
1294
+
1295
+ - vention tree item border and correct font ([#3350](https://github.com/VentionCo/machine-cloud/pull/3350))
1296
+
1297
+
1298
+ ### ❤️ Thank You
1299
+
1300
+ - Mark Aronin @maronin-vention
1301
+
1302
+ ## 0.94.1 (2025-03-20)
1303
+
1304
+
1305
+ ### 🩹 Fixes
1306
+
1307
+ - **vention-modal:** update negative icon and adjust stroke ([#3351](https://github.com/VentionCo/machine-cloud/pull/3351))
1308
+
1309
+
1310
+ ### ❤️ Thank You
1311
+
1312
+ - samuel-croteau
1313
+
1314
+ ## 0.94.0 (2025-03-19)
1315
+
1316
+
1317
+ ### 🚀 Features
1318
+
1319
+ - hide/show drawer children instead of not rendering them when hidden ([#3349](https://github.com/VentionCo/machine-cloud/pull/3349))
1320
+
1321
+
1322
+ ### ❤️ Thank You
1323
+
1324
+ - Mark Aronin @maronin-vention
1325
+
1326
+ ## 0.93.2 (2025-03-18)
1327
+
1328
+
1329
+ ### 🩹 Fixes
1330
+
1331
+ - consider undefined and null for left element ([#3348](https://github.com/VentionCo/machine-cloud/pull/3348))
1332
+
1333
+
1334
+ ### ❤️ Thank You
1335
+
1336
+ - Mark Aronin @maronin-vention
1337
+
1338
+ ## 0.93.1 (2025-03-17)
1339
+
1340
+
1341
+ ### 🩹 Fixes
1342
+
1343
+ - never render empty menus ([#3346](https://github.com/VentionCo/machine-cloud/pull/3346))
1344
+
1345
+
1346
+ ### ❤️ Thank You
1347
+
1348
+ - Mark Aronin @maronin-vention
1349
+
1350
+ ## 0.93.0 (2025-03-17)
1351
+
1352
+
1353
+ ### 🚀 Features
1354
+
1355
+ - more tree item tweaks ([#3345](https://github.com/VentionCo/machine-cloud/pull/3345))
1356
+
1357
+
1358
+ ### ❤️ Thank You
1359
+
1360
+ - Mark Aronin @maronin-vention
1361
+
1362
+ ## 0.92.1 (2025-03-14)
1363
+
1364
+
1365
+ ### 🩹 Fixes
1366
+
1367
+ - **sizing:** standardize machine ui sizing ([#3343](https://github.com/VentionCo/machine-cloud/pull/3343))
1368
+
1369
+
1370
+ ### ❤️ Thank You
1371
+
1372
+ - Ibrahim Taser Miraj
1373
+
1374
+ ## 0.92.0 (2025-03-14)
1375
+
1376
+
1377
+ ### 🚀 Features
1378
+
1379
+ - **machine-ui:** add ventionIcon component ([#3328](https://github.com/VentionCo/machine-cloud/pull/3328))
1380
+
1381
+
1382
+ ### ❤️ Thank You
1383
+
1384
+ - samuel-croteau
1385
+
1386
+ ## 0.91.1 (2025-03-14)
1387
+
1388
+
1389
+ ### 🩹 Fixes
1390
+
1391
+ - vention-tree-item component styling ([#3336](https://github.com/VentionCo/machine-cloud/pull/3336))
1392
+
1393
+
1394
+ ### ❤️ Thank You
1395
+
1396
+ - Mark Aronin @maronin-vention
1397
+
1398
+ ## 0.91.0 (2025-03-13)
1399
+
1400
+
1401
+ ### 🚀 Features
1402
+
1403
+ - dismiss context menu when clicking outside of the menu ([#3341](https://github.com/VentionCo/machine-cloud/pull/3341))
1404
+
1405
+
1406
+ ### ❤️ Thank You
1407
+
1408
+ - Mark Aronin @maronin-vention
1409
+
1410
+ ## 0.90.2 (2025-03-11)
1411
+
1412
+
1413
+ ### 🩹 Fixes
1414
+
1415
+ - ventiontreeitem hover and select + isRenaming state ([#3332](https://github.com/VentionCo/machine-cloud/pull/3332))
1416
+
1417
+
1418
+ ### ❤️ Thank You
1419
+
1420
+ - Mark Aronin @maronin-vention
1421
+
1422
+ ## 0.90.1 (2025-03-07)
1423
+
1424
+
1425
+ ### 🩹 Fixes
1426
+
1427
+ - export ButtonProps interface ([#3326](https://github.com/VentionCo/machine-cloud/pull/3326))
1428
+
1429
+
1430
+ ### ❤️ Thank You
1431
+
1432
+ - YuYing Liang @yuyingliang07
1433
+
1434
+ ## 0.90.0 (2025-03-07)
1435
+
1436
+
1437
+ ### 🚀 Features
1438
+
1439
+ - vention tree item modifications ([#3322](https://github.com/VentionCo/machine-cloud/pull/3322))
1440
+
1441
+
1442
+ ### ❤️ Thank You
1443
+
1444
+ - Mark Aronin @maronin-vention
1445
+
1446
+ ## 0.89.0 (2025-03-06)
1447
+
1448
+
1449
+ ### 🚀 Features
1450
+
1451
+ - make components and text size large on sanding app ([#3318](https://github.com/VentionCo/machine-cloud/pull/3318))
1452
+
1453
+
1454
+ ### ❤️ Thank You
1455
+
1456
+ - YuYing Liang @yuyingliang07
1457
+
1458
+ ## 0.88.4 (2025-03-06)
1459
+
1460
+
1461
+ ### 🩹 Fixes
1462
+
1463
+ - adjust height calculation for XXL track size in vention-switch component ([#3312](https://github.com/VentionCo/machine-cloud/pull/3312))
1464
+
1465
+
1466
+ ### ❤️ Thank You
1467
+
1468
+ - Jonathan E. @jadiaheno
1469
+
1470
+ ## 0.88.3 (2025-03-05)
1471
+
1472
+
1473
+ ### 🩹 Fixes
1474
+
1475
+ - vention tree item indenting and styling fix ([#3317](https://github.com/VentionCo/machine-cloud/pull/3317))
1476
+
1477
+
1478
+ ### ❤️ Thank You
1479
+
1480
+ - Mark Aronin @maronin-vention
1481
+
1482
+ ## 0.88.2 (2025-03-03)
1483
+
1484
+
1485
+ ### 🩹 Fixes
1486
+
1487
+ - center icons in tree item ([#3311](https://github.com/VentionCo/machine-cloud/pull/3311))
1488
+
1489
+
1490
+ ### ❤️ Thank You
1491
+
1492
+ - ashrafkhalilvention @ashrafkhalilvention
1493
+
1494
+ ## 0.88.1 (2025-02-27)
1495
+
1496
+
1497
+ ### 🩹 Fixes
1498
+
1499
+ - **toaster:** add textOverflow ellipsis and overflow handling for large content ([#3304](https://github.com/VentionCo/machine-cloud/pull/3304))
1500
+
1501
+
1502
+ ### ❤️ Thank You
1503
+
1504
+ - samuel-croteau
1505
+
1506
+ ## 0.88.0 (2025-02-26)
1507
+
1508
+
1509
+ ### 🚀 Features
1510
+
1511
+ - make vention modal button accept variant ([#3302](https://github.com/VentionCo/machine-cloud/pull/3302))
1512
+
1513
+ - **machine-ui:** ensure consistent box-sizing across elements to border-box ([#3292](https://github.com/VentionCo/machine-cloud/pull/3292))
1514
+
1515
+
1516
+ ### ❤️ Thank You
1517
+
1518
+ - FantasticJimmy
1519
+ - samuel-croteau
1520
+
1521
+ ## 0.87.2 (2025-02-18)
1522
+
1523
+
1524
+ ### 🩹 Fixes
1525
+
1526
+ - **text-input:** prevent text-input color overwrite ([#3291](https://github.com/VentionCo/machine-cloud/pull/3291))
1527
+
1528
+
1529
+ ### ❤️ Thank You
1530
+
1531
+ - samuel-croteau
1532
+
1533
+ ## 0.87.1 (2025-02-18)
1534
+
1535
+
1536
+ ### 🩹 Fixes
1537
+
1538
+ - vention-status-indicator storybook ([#3288](https://github.com/VentionCo/machine-cloud/pull/3288))
1539
+
1540
+
1541
+ ### ❤️ Thank You
1542
+
1543
+ - YuYing Liang @yuyingliang07
1544
+
1545
+ ## 0.87.0 (2025-02-17)
1546
+
1547
+
1548
+ ### 🚀 Features
1549
+
1550
+ - added Change Sanding Paper button and updated VentionStatusIndicator props and new xx-large size ([#3275](https://github.com/VentionCo/machine-cloud/pull/3275))
1551
+
1552
+
1553
+ ### ❤️ Thank You
1554
+
1555
+ - YuYing Liang @yuyingliang07
1556
+
1557
+ ## 0.86.0 (2025-02-14)
1558
+
1559
+
1560
+ ### 🚀 Features
1561
+
1562
+ - trigger release of machine ui ([#3284](https://github.com/VentionCo/machine-cloud/pull/3284))
1563
+
1564
+
1565
+ ### ❤️ Thank You
1566
+
1567
+ - grahamtompkins @grahamtompkins
1568
+
1569
+ ## 0.85.0 (2025-02-10)
1570
+
1571
+
1572
+ ### 🚀 Features
1573
+
1574
+ - machine apps sanding UI updates ([#3262](https://github.com/VentionCo/machine-cloud/pull/3262))
1575
+
1576
+
1577
+ ### ❤️ Thank You
1578
+
1579
+ - YuYing Liang @yuyingliang07
1580
+
1581
+ ## 0.84.2 (2025-02-07)
1582
+
1583
+
1584
+ ### 🩹 Fixes
1585
+
1586
+ - **modal:** prevent outline on focus ([#3264](https://github.com/VentionCo/machine-cloud/pull/3264))
1587
+
1588
+
1589
+ ### ❤️ Thank You
1590
+
1591
+ - Ibrahim Taser Miraj
1592
+
1593
+ ## 0.84.1 (2025-02-07)
1594
+
1595
+
1596
+ ### 🩹 Fixes
1597
+
1598
+ - adjust box-sizing for vention stepper input styling ([#3263](https://github.com/VentionCo/machine-cloud/pull/3263))
1599
+
1600
+
1601
+ ### ❤️ Thank You
1602
+
1603
+ - Jonathan E. @jadiaheno
1604
+
1605
+ ## 0.84.0 (2025-02-04)
1606
+
1607
+
1608
+ ### 🚀 Features
1609
+
1610
+ - added hasWarning props and add styling ([#3255](https://github.com/VentionCo/machine-cloud/pull/3255))
1611
+
1612
+
1613
+ ### ❤️ Thank You
1614
+
1615
+ - samuel-croteau
1616
+
1617
+ ## 0.83.0 (2025-01-30)
1618
+
1619
+
1620
+ ### 🚀 Features
1621
+
1622
+ - remote support use machine UI theme ([#3245](https://github.com/VentionCo/machine-cloud/pull/3245))
1623
+
1624
+
1625
+ ### ❤️ Thank You
1626
+
1627
+ - FantasticJimmy
1628
+
1629
+ ## 0.82.0 (2025-01-27)
1630
+
1631
+
1632
+ ### 🚀 Features
1633
+
1634
+ - added dynamic settings for sanding ([#3224](https://github.com/VentionCo/machine-cloud/pull/3224))
1635
+
1636
+
1637
+ ### ❤️ Thank You
1638
+
1639
+ - YuYing Liang @yuyingliang07
1640
+
1641
+ ## 0.81.0 (2025-01-22)
1642
+
1643
+
1644
+ ### 🚀 Features
1645
+
1646
+ - switch has shaded variant ([#3223](https://github.com/VentionCo/machine-cloud/pull/3223))
1647
+
1648
+
1649
+ ### ❤️ Thank You
1650
+
1651
+ - FantasticJimmy
1652
+
1653
+ ## 0.80.0 (2025-01-21)
1654
+
1655
+
1656
+ ### 🚀 Features
1657
+
1658
+ - make patterns list dynamic ([#3212](https://github.com/VentionCo/machine-cloud/pull/3212))
1659
+
1660
+
1661
+ ### ❤️ Thank You
1662
+
1663
+ - YuYing Liang @yuyingliang07
1664
+
1665
+ ## 0.79.0 (2025-01-21)
1666
+
1667
+
1668
+ ### 🚀 Features
1669
+
1670
+ - **modal:** enhance UX and add x-large size and isTouchDevice ([#3218](https://github.com/VentionCo/machine-cloud/pull/3218))
1671
+
1672
+
1673
+ ### ❤️ Thank You
1674
+
1675
+ - samuel-croteau
1676
+
1677
+ ## 0.78.1 (2025-01-21)
1678
+
1679
+
1680
+ ### 🩹 Fixes
1681
+
1682
+ - styling changes including setting position to relative so width is not computed as 0 ([#3216](https://github.com/VentionCo/machine-cloud/pull/3216))
1683
+
1684
+
1685
+ ### ❤️ Thank You
1686
+
1687
+ - ventionrajatbakshi @ventionrajatbakshi
1688
+
1689
+ ## 0.78.0 (2025-01-16)
1690
+
1691
+
1692
+ ### 🚀 Features
1693
+
1694
+ - **Machine-UI:** introduce VentionBaseModal and enhance VentionModal ([#3204](https://github.com/VentionCo/machine-cloud/pull/3204))
1695
+
1696
+
1697
+ ### ❤️ Thank You
1698
+
1699
+ - samuel-croteau
1700
+
1701
+ ## 0.77.0 (2025-01-14)
1702
+
1703
+
1704
+ ### 🚀 Features
1705
+
1706
+ - drawer width can now be customized ([#3202](https://github.com/VentionCo/machine-cloud/pull/3202))
1707
+
1708
+
1709
+ ### ❤️ Thank You
1710
+
1711
+ - ventionrajatbakshi @ventionrajatbakshi
1712
+
1713
+ ## 0.76.0 (2025-01-13)
1714
+
1715
+
1716
+ ### 🚀 Features
1717
+
1718
+ - updated text colors to match the design system ([#3198](https://github.com/VentionCo/machine-cloud/pull/3198))
1719
+
1720
+
1721
+ ### ❤️ Thank You
1722
+
1723
+ - YuYing Liang @yuyingliang07
1724
+
1725
+ ## 0.75.0 (2024-12-30)
1726
+
1727
+
1728
+ ### 🚀 Features
1729
+
1730
+ - **Mc997:** vention modal banner ([#3188](https://github.com/VentionCo/machine-cloud/pull/3188))
1731
+
1732
+
1733
+ ### ❤️ Thank You
1734
+
1735
+ - Ibrahim Taser Miraj
1736
+
1737
+ ## 0.74.0 (2024-12-27)
1738
+
1739
+
1740
+ ### 🚀 Features
1741
+
1742
+ - sanding app calibration page (complete with complete server/core integration) ([#3176](https://github.com/VentionCo/machine-cloud/pull/3176))
1743
+
1744
+
1745
+ ### ❤️ Thank You
1746
+
1747
+ - YuYing Liang @yuyingliang07
1748
+
1749
+ ## 0.73.1 (2024-12-27)
1750
+
1751
+
1752
+ ### 🩹 Fixes
1753
+
1754
+ - [MC-998] Add story for VentionTextInput suffix and prefix ([#3185](https://github.com/VentionCo/machine-cloud/pull/3185))
1755
+
1756
+
1757
+ ### ❤️ Thank You
1758
+
1759
+ - Ibrahim Taser Miraj
1760
+
1761
+ ## 0.73.0 (2024-12-12)
1762
+
1763
+
1764
+ ### 🚀 Features
1765
+
1766
+ - :sparkles: updating the x-large size of VentionButton ([#3174](https://github.com/VentionCo/machine-cloud/pull/3174))
1767
+
1768
+
1769
+ ### ❤️ Thank You
1770
+
1771
+ - Jonathan E. @jadiaheno
1772
+
1773
+ ## 0.72.1 (2024-12-11)
1774
+
1775
+
1776
+ ### 🩹 Fixes
1777
+
1778
+ - fix padding in VentionIconButton ([#3171](https://github.com/VentionCo/machine-cloud/pull/3171))
1779
+
1780
+
1781
+ ### ❤️ Thank You
1782
+
1783
+ - Benjamin Richard @benrichardv
1784
+
1785
+ ## 0.72.0 (2024-12-10)
1786
+
1787
+
1788
+ ### 🚀 Features
1789
+
1790
+ - [MUI-27] Added VentionIconButton component ([#3170](https://github.com/VentionCo/machine-cloud/pull/3170))
1791
+
1792
+
1793
+ ### ❤️ Thank You
1794
+
1795
+ - Benjamin Richard @benrichardv
1796
+
1797
+ ## 0.71.1 (2024-12-10)
1798
+
1799
+
1800
+ ### 🩹 Fixes
1801
+
1802
+ - removing animation from endIcon in VentionButton ([#3167](https://github.com/VentionCo/machine-cloud/pull/3167))
1803
+
1804
+
1805
+ ### ❤️ Thank You
1806
+
1807
+ - Benjamin Richard @benrichardv
1808
+
1809
+ ## 0.71.0 (2024-12-10)
1810
+
1811
+
1812
+ ### 🚀 Features
1813
+
1814
+ - 666 Add selector to drawer ([#3160](https://github.com/VentionCo/machine-cloud/pull/3160))
1815
+
1816
+
1817
+ ### ❤️ Thank You
1818
+
1819
+ - grahamtompkins @grahamtompkins
1820
+
1821
+ ## 0.70.0 (2024-11-28)
1822
+
1823
+
1824
+ ### 🚀 Features
1825
+
1826
+ - upgraded mui v4 projects to v5 ([#3148](https://github.com/VentionCo/machine-cloud/pull/3148))
1827
+
1828
+
1829
+ ### ❤️ Thank You
1830
+
1831
+ - Yann Thibodeau
1832
+
1833
+ ## 0.69.0 (2024-11-27)
1834
+
1835
+
1836
+ ### 🚀 Features
1837
+
1838
+ - update Machine UI theme background color and enhance documentation ([#3154](https://github.com/VentionCo/machine-cloud/pull/3154))
1839
+
1840
+
1841
+ ### 🩹 Fixes
1842
+
1843
+ - [DW-653] Fix the badge to be only on one line and have ellipsis ([#3152](https://github.com/VentionCo/machine-cloud/pull/3152))
1844
+
1845
+
1846
+ ### ❤️ Thank You
1847
+
1848
+ - Jonathan E. @jadiaheno
1849
+ - samuel-croteau
1850
+
1851
+ ## 0.68.0 (2024-11-26)
1852
+
1853
+
1854
+ ### 🚀 Features
1855
+
1856
+ - [DW-653] Add slate color option to VentionBadge component ([#3150](https://github.com/VentionCo/machine-cloud/pull/3150))
1857
+
1858
+
1859
+ ### ❤️ Thank You
1860
+
1861
+ - samuel-croteau
1862
+
1863
+ ## 0.67.2 (2024-11-26)
1864
+
1865
+
1866
+ ### 🩹 Fixes
1867
+
1868
+ - [MUI-16] Fix storybook design system colors page ([#3151](https://github.com/VentionCo/machine-cloud/pull/3151))
1869
+
1870
+
1871
+ ### ❤️ Thank You
1872
+
1873
+ - samuel-croteau
1874
+
1875
+ ## 0.67.1 (2024-11-21)
1876
+
1877
+
1878
+ ### 🩹 Fixes
1879
+
1880
+ - [DW-652] Fix issue with the Select component where the chevron was not clickable ([#3137](https://github.com/VentionCo/machine-cloud/pull/3137))
1881
+
1882
+
1883
+ ### ❤️ Thank You
1884
+
1885
+ - samuel-croteau
1886
+
1887
+ ## 0.67.0 (2024-11-21)
1888
+
1889
+
1890
+ ### 🚀 Features
1891
+
1892
+ - add vention-status-indicator component export ([#3138](https://github.com/VentionCo/machine-cloud/pull/3138))
1893
+
1894
+
1895
+ ### ❤️ Thank You
1896
+
1897
+ - Jonathan E. @jadiaheno
1898
+
1899
+ ## 0.66.0 (2024-11-18)
1900
+
1901
+
1902
+ ### 🚀 Features
1903
+
1904
+ - refactor VentionButton component for improved prop destructuring and handling ([#3132](https://github.com/VentionCo/machine-cloud/pull/3132))
1905
+
1906
+
1907
+ ### ❤️ Thank You
1908
+
1909
+ - Jonathan E. @jadiaheno
1910
+
1911
+ ## 0.65.0 (2024-11-18)
1912
+
1913
+
1914
+ ### 🚀 Features
1915
+
1916
+ - refactor VentionSelect component to improve prop handling and destructuring ([#3131](https://github.com/VentionCo/machine-cloud/pull/3131))
1917
+
1918
+
1919
+ ### ❤️ Thank You
1920
+
1921
+ - Jonathan E. @jadiaheno
1922
+
1923
+ ## 0.64.0 (2024-11-18)
1924
+
1925
+
1926
+ ### 🚀 Features
1927
+
1928
+ - add drawer component to machine ui ([#3105](https://github.com/VentionCo/machine-cloud/pull/3105))
1929
+
1930
+
1931
+ ### ❤️ Thank You
1932
+
1933
+ - Roberto Ruffolo-Benavides
1934
+
1935
+ ## 0.63.0 (2024-11-13)
1936
+
1937
+
1938
+ ### 🚀 Features
1939
+
1940
+ - **statusIndicator:** implement Vention status indicator ([#3124](https://github.com/VentionCo/machine-cloud/pull/3124))
1941
+
1942
+
1943
+ ### ❤️ Thank You
1944
+
1945
+ - Ibrahim Taser Miraj
1946
+
1947
+ ## 0.62.0 (2024-11-13)
1948
+
1949
+
1950
+ ### 🚀 Features
1951
+
1952
+ - add x-large variant and full width prop ([#3123](https://github.com/VentionCo/machine-cloud/pull/3123))
1953
+
1954
+
1955
+ ### ❤️ Thank You
1956
+
1957
+ - Ibrahim Taser Miraj
1958
+
1959
+ ## 0.61.1 (2024-11-07)
1960
+
1961
+
1962
+ ### 🩹 Fixes
1963
+
1964
+ - **font:** disable the default typographies ([#3110](https://github.com/VentionCo/machine-cloud/pull/3110))
1965
+
1966
+
1967
+ ### ❤️ Thank You
1968
+
1969
+ - Ibrahim Taser Miraj
1970
+
1971
+ ## 0.61.0 (2024-11-06)
1972
+
1973
+
1974
+ ### 🚀 Features
1975
+
1976
+ - custom id can now be passed for menu options ([#3102](https://github.com/VentionCo/machine-cloud/pull/3102))
1977
+
1978
+
1979
+ ### ❤️ Thank You
1980
+
1981
+ - ventionrajatbakshi @ventionrajatbakshi
1982
+
1983
+ ## 0.60.1 (2024-11-05)
1984
+
1985
+
1986
+ ### 🩹 Fixes
1987
+
1988
+ - commit to trigger the publish of machine-ui ([e59337da](https://github.com/VentionCo/machine-cloud/commit/e59337da))
1989
+
1990
+
1991
+ ### ❤️ Thank You
1992
+
1993
+ - Yann Thibodeau
1994
+
1995
+ ## 0.60.0 (2024-11-04)
1996
+
1997
+
1998
+ ### 🚀 Features
1999
+
2000
+ - create machine-ui component lib ([#2320](https://github.com/VentionCo/machine-cloud/pull/2320))
2001
+
2002
+ - set up machine-ui theme styling ([#2353](https://github.com/VentionCo/machine-cloud/pull/2353))
2003
+
2004
+ - added machine-ui dockerfile and ecs task to enable deployment ([#2407](https://github.com/VentionCo/machine-cloud/pull/2407))
2005
+
2006
+ - Link ([#2414](https://github.com/VentionCo/machine-cloud/pull/2414))
2007
+
2008
+ - Callout ([#2447](https://github.com/VentionCo/machine-cloud/pull/2447))
2009
+
2010
+ - create sanding top bar and add status dot ([#2455](https://github.com/VentionCo/machine-cloud/pull/2455))
2011
+
2012
+ - added steps component in machine-ui ([#2461](https://github.com/VentionCo/machine-cloud/pull/2461))
2013
+
2014
+ - counter component ([9e0a6723](https://github.com/VentionCo/machine-cloud/commit/9e0a6723))
2015
+
2016
+ - configuration list component ([4392daac](https://github.com/VentionCo/machine-cloud/commit/4392daac))
2017
+
2018
+ - missing variants for button added ([#2481](https://github.com/VentionCo/machine-cloud/pull/2481))
2019
+
2020
+ - vention badge component ([383708b1](https://github.com/VentionCo/machine-cloud/commit/383708b1))
2021
+
2022
+ - add primary and secondary buttons to callout ([#2485](https://github.com/VentionCo/machine-cloud/pull/2485))
2023
+
2024
+ - added text input component in machine-ui ([#2476](https://github.com/VentionCo/machine-cloud/pull/2476))
2025
+
2026
+ - added station cards on the operate page ([#2499](https://github.com/VentionCo/machine-cloud/pull/2499))
2027
+
2028
+ - select component ([#2528](https://github.com/VentionCo/machine-cloud/pull/2528))
2029
+
2030
+ - :sparkles: One-Click Deploy ([#2516](https://github.com/VentionCo/machine-cloud/pull/2516))
2031
+
2032
+ - added tools form + added snackbar alert on errors + fixes and improvements ([#2542](https://github.com/VentionCo/machine-cloud/pull/2542))
2033
+
2034
+ - added task form for sanding ([#2559](https://github.com/VentionCo/machine-cloud/pull/2559))
2035
+
2036
+ - machine UI radio tile ([3a648c6d](https://github.com/VentionCo/machine-cloud/commit/3a648c6d))
2037
+
2038
+ - refined panel form ([1869e4ce](https://github.com/VentionCo/machine-cloud/commit/1869e4ce))
2039
+
2040
+ - tab highlighting fixes ([538b3b81](https://github.com/VentionCo/machine-cloud/commit/538b3b81))
2041
+
2042
+ - added form validation to sanding webapp ([#2584](https://github.com/VentionCo/machine-cloud/pull/2584))
2043
+
2044
+ - add language selection ([1f21827f](https://github.com/VentionCo/machine-cloud/commit/1f21827f))
2045
+
2046
+ - added machine-ui modal component ([#2592](https://github.com/VentionCo/machine-cloud/pull/2592))
2047
+
2048
+ - added delete confirmation dialogs in sanding using machine-ui ([2d711bca](https://github.com/VentionCo/machine-cloud/commit/2d711bca))
2049
+
2050
+ - ✨ slider component ([#2639](https://github.com/VentionCo/machine-cloud/pull/2639))
2051
+
2052
+ - draggable container ([#2642](https://github.com/VentionCo/machine-cloud/pull/2642))
2053
+
2054
+ - :sparkles: hmi stepper component ([#2637](https://github.com/VentionCo/machine-cloud/pull/2637))
2055
+
2056
+ - added a step ([#2654](https://github.com/VentionCo/machine-cloud/pull/2654))
2057
+
2058
+ - 2625 machine UI inline alert component ([#2676](https://github.com/VentionCo/machine-cloud/pull/2676))
2059
+
2060
+ - :sparkles: add VentionSwitch component for toggling on/off states ([#2689](https://github.com/VentionCo/machine-cloud/pull/2689))
2061
+
2062
+ - :sparkles: exporting the vention slider ([#2696](https://github.com/VentionCo/machine-cloud/pull/2696))
2063
+
2064
+ - add right icon to alert ([#2732](https://github.com/VentionCo/machine-cloud/pull/2732))
2065
+
2066
+ - updated nx to version 19 ([#2954](https://github.com/VentionCo/machine-cloud/pull/2954))
2067
+
2068
+ - :lipstick: Add button adornment to input ([#2986](https://github.com/VentionCo/machine-cloud/pull/2986))
2069
+
2070
+ - :lipstick: add medium paragraph text style ([#3017](https://github.com/VentionCo/machine-cloud/pull/3017))
2071
+
2072
+ - :lipstick: add animated end adornment to button ([#3018](https://github.com/VentionCo/machine-cloud/pull/3018))
2073
+
2074
+ - final tests looking very goood ([59101456](https://github.com/VentionCo/machine-cloud/commit/59101456))
2075
+
2076
+ - added Popover component ([#3019](https://github.com/VentionCo/machine-cloud/pull/3019))
2077
+
2078
+ - :lipstick: adding typography styles for machine UI ([#3029](https://github.com/VentionCo/machine-cloud/pull/3029))
2079
+
2080
+ - 💄 Full Vention Text Input ([#3016](https://github.com/VentionCo/machine-cloud/pull/3016))
2081
+
2082
+ - version bump ([#3042](https://github.com/VentionCo/machine-cloud/pull/3042))
2083
+
2084
+ - menu component styling fixes ([#3062](https://github.com/VentionCo/machine-cloud/pull/3062))
2085
+
2086
+ - added notifications popover in sanding application ([#3067](https://github.com/VentionCo/machine-cloud/pull/3067))
2087
+
2088
+ - upgraded the release mechanism of npm packages to use NX releases instead of custom scripts ([#3086](https://github.com/VentionCo/machine-cloud/pull/3086))
2089
+
2090
+ - **vention-tree-item:** ml-160 add tree item to machine ui ([#3065](https://github.com/VentionCo/machine-cloud/pull/3065))
2091
+
2092
+
2093
+ ### 🩹 Fixes
2094
+
2095
+ - button styling now fixed to be identical to figma ([#2468](https://github.com/VentionCo/machine-cloud/pull/2468))
2096
+
2097
+ - bump machine-ui package version as it failed to commit once ([#2500](https://github.com/VentionCo/machine-cloud/pull/2500))
2098
+
2099
+ - python publish script is now in linting ([#2502](https://github.com/VentionCo/machine-cloud/pull/2502))
2100
+
2101
+ - added stories and fix the styles ([#2668](https://github.com/VentionCo/machine-cloud/pull/2668))
2102
+
2103
+ - commit for publishing machine ui ([#2705](https://github.com/VentionCo/machine-cloud/pull/2705))
2104
+
2105
+ - do not override typography font properties ([#2710](https://github.com/VentionCo/machine-cloud/pull/2710))
2106
+
2107
+ - include padding and border in alert size ([#2712](https://github.com/VentionCo/machine-cloud/pull/2712))
2108
+
2109
+ - 💄 update slider disabled color ([#2718](https://github.com/VentionCo/machine-cloud/pull/2718))
2110
+
2111
+ - remove ripple effect on vention tabs ([#2725](https://github.com/VentionCo/machine-cloud/pull/2725))
2112
+
2113
+ - 2210 no ripple ([#2733](https://github.com/VentionCo/machine-cloud/pull/2733))
2114
+
2115
+ - if no hoverable device then no hover css ([#2756](https://github.com/VentionCo/machine-cloud/pull/2756))
2116
+
2117
+ - vention theme is now selected by default on code-server ([#2824](https://github.com/VentionCo/machine-cloud/pull/2824))
2118
+
2119
+ - finally a css way to fix the darken background use for both touch and mouse ([#2849](https://github.com/VentionCo/machine-cloud/pull/2849))
2120
+
2121
+ - update all updatable dependencies + resolve all resolvable security issues ([c8540fce](https://github.com/VentionCo/machine-cloud/commit/c8540fce))
2122
+
2123
+ - bump version ([#3012](https://github.com/VentionCo/machine-cloud/pull/3012))
2124
+
2125
+ - version bump ([#3043](https://github.com/VentionCo/machine-cloud/pull/3043))
2126
+
2127
+
2128
+ ### ❤️ Thank You
2129
+
2130
+ - Benjamin Richard @benrichardv
2131
+ - Dalton McPhaden @dalton-mcphaden
2132
+ - FantasticJimmy
2133
+ - Jonathan E @jadiaheno
2134
+ - Jonathan E. @jadiaheno
2135
+ - Kenneth Xu @kenneth-vention
2136
+ - Mark Aronin @maronin-vention
2137
+ - Sarthak @contribSane
2138
+ - ventionrajatbakshi @ventionrajatbakshi
2139
+ - Yann Thibodeau
2140
+ - YuYing Liang @yuyingliang07
2141
+
2142
+ ## 0.59.0 (2024-11-01)
2143
+
2144
+
2145
+ ### 🚀 Features
2146
+
2147
+ - create machine-ui component lib ([#2320](https://github.com/VentionCo/machine-cloud/pull/2320))
2148
+
2149
+ - set up machine-ui theme styling ([#2353](https://github.com/VentionCo/machine-cloud/pull/2353))
2150
+
2151
+ - added machine-ui dockerfile and ecs task to enable deployment ([#2407](https://github.com/VentionCo/machine-cloud/pull/2407))
2152
+
2153
+ - Link ([#2414](https://github.com/VentionCo/machine-cloud/pull/2414))
2154
+
2155
+ - Callout ([#2447](https://github.com/VentionCo/machine-cloud/pull/2447))
2156
+
2157
+ - create sanding top bar and add status dot ([#2455](https://github.com/VentionCo/machine-cloud/pull/2455))
2158
+
2159
+ - added steps component in machine-ui ([#2461](https://github.com/VentionCo/machine-cloud/pull/2461))
2160
+
2161
+ - counter component ([9e0a6723](https://github.com/VentionCo/machine-cloud/commit/9e0a6723))
2162
+
2163
+ - configuration list component ([4392daac](https://github.com/VentionCo/machine-cloud/commit/4392daac))
2164
+
2165
+ - missing variants for button added ([#2481](https://github.com/VentionCo/machine-cloud/pull/2481))
2166
+
2167
+ - vention badge component ([383708b1](https://github.com/VentionCo/machine-cloud/commit/383708b1))
2168
+
2169
+ - add primary and secondary buttons to callout ([#2485](https://github.com/VentionCo/machine-cloud/pull/2485))
2170
+
2171
+ - added text input component in machine-ui ([#2476](https://github.com/VentionCo/machine-cloud/pull/2476))
2172
+
2173
+ - added station cards on the operate page ([#2499](https://github.com/VentionCo/machine-cloud/pull/2499))
2174
+
2175
+ - select component ([#2528](https://github.com/VentionCo/machine-cloud/pull/2528))
2176
+
2177
+ - :sparkles: One-Click Deploy ([#2516](https://github.com/VentionCo/machine-cloud/pull/2516))
2178
+
2179
+ - added tools form + added snackbar alert on errors + fixes and improvements ([#2542](https://github.com/VentionCo/machine-cloud/pull/2542))
2180
+
2181
+ - added task form for sanding ([#2559](https://github.com/VentionCo/machine-cloud/pull/2559))
2182
+
2183
+ - machine UI radio tile ([3a648c6d](https://github.com/VentionCo/machine-cloud/commit/3a648c6d))
2184
+
2185
+ - refined panel form ([1869e4ce](https://github.com/VentionCo/machine-cloud/commit/1869e4ce))
2186
+
2187
+ - tab highlighting fixes ([538b3b81](https://github.com/VentionCo/machine-cloud/commit/538b3b81))
2188
+
2189
+ - added form validation to sanding webapp ([#2584](https://github.com/VentionCo/machine-cloud/pull/2584))
2190
+
2191
+ - add language selection ([1f21827f](https://github.com/VentionCo/machine-cloud/commit/1f21827f))
2192
+
2193
+ - added machine-ui modal component ([#2592](https://github.com/VentionCo/machine-cloud/pull/2592))
2194
+
2195
+ - added delete confirmation dialogs in sanding using machine-ui ([2d711bca](https://github.com/VentionCo/machine-cloud/commit/2d711bca))
2196
+
2197
+ - ✨ slider component ([#2639](https://github.com/VentionCo/machine-cloud/pull/2639))
2198
+
2199
+ - draggable container ([#2642](https://github.com/VentionCo/machine-cloud/pull/2642))
2200
+
2201
+ - :sparkles: hmi stepper component ([#2637](https://github.com/VentionCo/machine-cloud/pull/2637))
2202
+
2203
+ - added a step ([#2654](https://github.com/VentionCo/machine-cloud/pull/2654))
2204
+
2205
+ - 2625 machine UI inline alert component ([#2676](https://github.com/VentionCo/machine-cloud/pull/2676))
2206
+
2207
+ - :sparkles: add VentionSwitch component for toggling on/off states ([#2689](https://github.com/VentionCo/machine-cloud/pull/2689))
2208
+
2209
+ - :sparkles: exporting the vention slider ([#2696](https://github.com/VentionCo/machine-cloud/pull/2696))
2210
+
2211
+ - add right icon to alert ([#2732](https://github.com/VentionCo/machine-cloud/pull/2732))
2212
+
2213
+ - updated nx to version 19 ([#2954](https://github.com/VentionCo/machine-cloud/pull/2954))
2214
+
2215
+ - :lipstick: Add button adornment to input ([#2986](https://github.com/VentionCo/machine-cloud/pull/2986))
2216
+
2217
+ - :lipstick: add medium paragraph text style ([#3017](https://github.com/VentionCo/machine-cloud/pull/3017))
2218
+
2219
+ - :lipstick: add animated end adornment to button ([#3018](https://github.com/VentionCo/machine-cloud/pull/3018))
2220
+
2221
+ - final tests looking very goood ([59101456](https://github.com/VentionCo/machine-cloud/commit/59101456))
2222
+
2223
+ - added Popover component ([#3019](https://github.com/VentionCo/machine-cloud/pull/3019))
2224
+
2225
+ - :lipstick: adding typography styles for machine UI ([#3029](https://github.com/VentionCo/machine-cloud/pull/3029))
2226
+
2227
+ - 💄 Full Vention Text Input ([#3016](https://github.com/VentionCo/machine-cloud/pull/3016))
2228
+
2229
+ - version bump ([#3042](https://github.com/VentionCo/machine-cloud/pull/3042))
2230
+
2231
+ - menu component styling fixes ([#3062](https://github.com/VentionCo/machine-cloud/pull/3062))
2232
+
2233
+ - added notifications popover in sanding application ([#3067](https://github.com/VentionCo/machine-cloud/pull/3067))
2234
+
2235
+ - upgraded the release mechanism of npm packages to use NX releases instead of custom scripts ([26db1e61](https://github.com/VentionCo/machine-cloud/commit/26db1e61))
2236
+
2237
+ - **vention-tree-item:** ml-160 add tree item to machine ui ([#3065](https://github.com/VentionCo/machine-cloud/pull/3065))
2238
+
2239
+
2240
+ ### 🩹 Fixes
2241
+
2242
+ - button styling now fixed to be identical to figma ([#2468](https://github.com/VentionCo/machine-cloud/pull/2468))
2243
+
2244
+ - bump machine-ui package version as it failed to commit once ([#2500](https://github.com/VentionCo/machine-cloud/pull/2500))
2245
+
2246
+ - python publish script is now in linting ([#2502](https://github.com/VentionCo/machine-cloud/pull/2502))
2247
+
2248
+ - added stories and fix the styles ([#2668](https://github.com/VentionCo/machine-cloud/pull/2668))
2249
+
2250
+ - commit for publishing machine ui ([#2705](https://github.com/VentionCo/machine-cloud/pull/2705))
2251
+
2252
+ - do not override typography font properties ([#2710](https://github.com/VentionCo/machine-cloud/pull/2710))
2253
+
2254
+ - include padding and border in alert size ([#2712](https://github.com/VentionCo/machine-cloud/pull/2712))
2255
+
2256
+ - 💄 update slider disabled color ([#2718](https://github.com/VentionCo/machine-cloud/pull/2718))
2257
+
2258
+ - remove ripple effect on vention tabs ([#2725](https://github.com/VentionCo/machine-cloud/pull/2725))
2259
+
2260
+ - 2210 no ripple ([#2733](https://github.com/VentionCo/machine-cloud/pull/2733))
2261
+
2262
+ - if no hoverable device then no hover css ([#2756](https://github.com/VentionCo/machine-cloud/pull/2756))
2263
+
2264
+ - vention theme is now selected by default on code-server ([#2824](https://github.com/VentionCo/machine-cloud/pull/2824))
2265
+
2266
+ - finally a css way to fix the darken background use for both touch and mouse ([#2849](https://github.com/VentionCo/machine-cloud/pull/2849))
2267
+
2268
+ - update all updatable dependencies + resolve all resolvable security issues ([c8540fce](https://github.com/VentionCo/machine-cloud/commit/c8540fce))
2269
+
2270
+ - bump version ([#3012](https://github.com/VentionCo/machine-cloud/pull/3012))
2271
+
2272
+ - version bump ([#3043](https://github.com/VentionCo/machine-cloud/pull/3043))
2273
+
2274
+
2275
+ ### ❤️ Thank You
2276
+
2277
+ - Benjamin Richard @benrichardv
2278
+ - Dalton McPhaden @dalton-mcphaden
2279
+ - FantasticJimmy
2280
+ - Jonathan E @jadiaheno
2281
+ - Jonathan E. @jadiaheno
2282
+ - Kenneth Xu @kenneth-vention
2283
+ - Mark Aronin @maronin-vention
2284
+ - Sarthak @contribSane
2285
+ - ventionrajatbakshi @ventionrajatbakshi
2286
+ - Yann Thibodeau
2287
+ - YuYing Liang @yuyingliang07