@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
@@ -0,0 +1,136 @@
1
+ import { VentionDropZone, type DropZoneProps } from "./vention-dropzone"
2
+ import { renderWithTheme } from "../../../lib/testing/utils"
3
+ import { fireEvent } from "@testing-library/react"
4
+ import { DropZoneSize, DropZoneState, DropZoneStyle, getDropZoneBorder, getDropZoneStatus } from "./vention-dropzone-utils"
5
+
6
+ // Mock DragEvent since it's not available in the test environment
7
+ class MockDragEvent extends Event {
8
+ relatedTarget: HTMLElement | null
9
+
10
+ constructor(type: string, options: Partial<{ bubbles: boolean; relatedTarget: HTMLElement }>) {
11
+ super(type, { bubbles: options.bubbles || false })
12
+ this.relatedTarget = options.relatedTarget || null
13
+ }
14
+ }
15
+
16
+ const files = [
17
+ new File(["content"], "example.dxf", { type: "application/dxf" }),
18
+ new File(["content"], "example.dxf", { type: "application/dxf" }),
19
+ ]
20
+ const dataTransfer = { files }
21
+
22
+ function createTestCases(
23
+ props: { size: DropZoneSize; style: DropZoneStyle; state: DropZoneState; disabled?: boolean; dragLeaveTargetID?: string }[]
24
+ ): (DropZoneProps & { state: DropZoneState; expectedStyle: string; dragLeaveTargetID?: string })[] {
25
+ return props.map(({ size, state, disabled, style, dragLeaveTargetID }) => {
26
+ const hasError = state === DropZoneState.Error
27
+ const border = getDropZoneBorder(getDropZoneStatus(state, hasError), disabled, style)
28
+
29
+ return {
30
+ style,
31
+ size,
32
+ onFilesSelect: hasError ? () => ["file size exceeded"] : () => [],
33
+ fileCriteriaDescription: "DXF, DWG max 50 MB",
34
+ disabled,
35
+ state,
36
+ expectedStyle: `border: ${border}`,
37
+ dragLeaveTargetID,
38
+ }
39
+ })
40
+ }
41
+
42
+ function testInDocument(element: HTMLElement | null, expected: boolean): void {
43
+ if (expected) {
44
+ expect(element).toBeInTheDocument()
45
+ } else {
46
+ expect(element).not.toBeInTheDocument()
47
+ }
48
+ }
49
+
50
+ describe("VentionDropZone", () => {
51
+ test.each(
52
+ createTestCases([
53
+ { style: "outline", size: "large", state: DropZoneState.Default },
54
+ { style: "filled", size: "small", state: DropZoneState.DraggedOver },
55
+ { style: "outline", size: "small", state: DropZoneState.Hover },
56
+ { style: "filled", size: "small", state: DropZoneState.MouseUp },
57
+ { style: "outline", size: "small", state: DropZoneState.MouseLeave },
58
+ { style: "filled", size: "large", disabled: true, state: DropZoneState.MouseUp },
59
+ { style: "outline", size: "large", disabled: true, state: DropZoneState.DragLeave },
60
+ { style: "filled", size: "small", state: DropZoneState.Drop },
61
+ { style: "outline", size: "small", state: DropZoneState.Error },
62
+ { style: "filled", size: "large", disabled: true, state: DropZoneState.Pressed },
63
+ { style: "filled", size: "large", disabled: true, state: DropZoneState.Error },
64
+ { style: "outline", size: "large", disabled: true, state: DropZoneState.Hover },
65
+ { style: "outline", size: "large", disabled: true, state: DropZoneState.DraggedOver },
66
+ { style: "filled", size: "small", state: DropZoneState.DragLeave },
67
+ { style: "outline", size: "small", state: DropZoneState.DragLeave, dragLeaveTargetID: "dropzoneContents" },
68
+ { style: "filled", size: "small", state: DropZoneState.FileChange },
69
+ { style: "outline", size: "small", disabled: true, state: DropZoneState.FileChange },
70
+ { style: "filled", size: "small", disabled: true, state: DropZoneState.Drop },
71
+ ])
72
+ )("renders correctly with props: %o", props => {
73
+ const { queryByTestId } = renderWithTheme(<VentionDropZone {...props} />)
74
+
75
+ const dropZoneContainer = queryByTestId("dropzoneContainer")
76
+ testInDocument(dropZoneContainer, true)
77
+
78
+ const dropZoneContents = queryByTestId("dropzoneContents")
79
+ testInDocument(dropZoneContents, true)
80
+
81
+ const dropZoneIcon = queryByTestId("dropzoneUploadIcon")
82
+ testInDocument(dropZoneIcon, true)
83
+
84
+ const dropZoneTitle = queryByTestId("dropzoneTitle")
85
+ testInDocument(dropZoneTitle, true)
86
+
87
+ const dropZoneInput = queryByTestId("dropzoneFileInput")
88
+ testInDocument(dropZoneInput, true)
89
+
90
+ switch (props.state) {
91
+ case DropZoneState.DraggedOver:
92
+ fireEvent.dragOver(dropZoneContainer)
93
+ break
94
+ case DropZoneState.Hover:
95
+ fireEvent.mouseOver(dropZoneContainer)
96
+ break
97
+ case DropZoneState.Pressed:
98
+ fireEvent.mouseDown(dropZoneContainer)
99
+ break
100
+ case DropZoneState.MouseUp:
101
+ fireEvent.mouseDown(dropZoneContainer)
102
+ fireEvent.mouseUp(dropZoneContainer)
103
+ break
104
+ case DropZoneState.MouseLeave:
105
+ fireEvent.mouseEnter(dropZoneContainer)
106
+ fireEvent.mouseLeave(dropZoneContainer)
107
+ break
108
+ case DropZoneState.FileChange:
109
+ fireEvent.click(dropZoneContainer)
110
+ fireEvent.change(dropZoneInput, { target: { files } })
111
+ break
112
+ case DropZoneState.DragLeave:
113
+ fireEvent.dragEnter(dropZoneContainer)
114
+ dropZoneContainer.dispatchEvent(
115
+ new MockDragEvent("dragleave", {
116
+ bubbles: true,
117
+ relatedTarget: props.dragLeaveTargetID ? queryByTestId(props.dragLeaveTargetID) : null,
118
+ })
119
+ )
120
+ break
121
+ case DropZoneState.Error:
122
+ fireEvent.drop(dropZoneContainer, { dataTransfer })
123
+ // simulate leaving the drop zone after error to see if it resets properly
124
+ fireEvent.mouseLeave(dropZoneContainer)
125
+ break
126
+ case DropZoneState.Drop:
127
+ fireEvent.drop(dropZoneContainer, { dataTransfer: { files: files } })
128
+ }
129
+
130
+ expect(dropZoneContainer).toHaveStyle(props.expectedStyle)
131
+
132
+ const criteriaDescription = queryByTestId("dropzoneCriteria")
133
+ const isCriteriaVisible = props.disabled || props.state !== DropZoneState.DraggedOver
134
+ testInDocument(criteriaDescription, isCriteriaVisible)
135
+ })
136
+ })
@@ -0,0 +1,234 @@
1
+ import { Box, Grid } from "@mui/material"
2
+ import { VentionIcon } from "../vention-icon/vention-icon"
3
+ import { useReducer, useRef } from "react"
4
+ import { tss } from "tss-react"
5
+ import { COLORS } from "../../theme/colors"
6
+ import {
7
+ DropZoneSize,
8
+ DropZoneState,
9
+ DropZoneStyle,
10
+ getDropZoneBackgroundColor,
11
+ getDropZoneBorder,
12
+ getDropZoneStatus,
13
+ getDropZoneStyle,
14
+ } from "./vention-dropzone-utils"
15
+
16
+ export type DropZoneProps = {
17
+ style: DropZoneStyle
18
+ size: DropZoneSize
19
+ /**
20
+ * callback methods to receive files uploaded by user. Should return an array of error messages
21
+ * if any files are invalid. If all files are valid, return an empty array.
22
+ */
23
+ onFilesSelect: (file: FileList) => string[]
24
+ /**
25
+ * Describes file criteria such as extensions, size limits, etc
26
+ * ex: "DXF, DWG max 50 MB"
27
+ */
28
+ fileCriteriaDescription: string
29
+ defaultTitle?: string
30
+ disabled?: boolean
31
+ }
32
+
33
+ type DropZoneReducerState = {
34
+ dropZoneStatus: DropZoneState
35
+ title: string
36
+ errorMessages: string[]
37
+ }
38
+
39
+ const UPLOAD_TITLE = "Drop to start uploading"
40
+
41
+ /**
42
+ * Vention's custom dropzone component. Supports drag and drop as well as
43
+ * click to upload. Supports different sizes and styles along with a disabled state.
44
+ * Use onFilesSelect callback to handle file selection and validation.
45
+ * Visualizes basic error state along with error messages returned by onFilesSelect.
46
+ */
47
+ export function VentionDropZone({
48
+ style,
49
+ size,
50
+ onFilesSelect,
51
+ fileCriteriaDescription,
52
+ defaultTitle = "Drop files here or click to upload",
53
+ disabled = false,
54
+ }: DropZoneProps): JSX.Element {
55
+ const [state, dispatch] = useReducer(dropZoneReducer, {
56
+ dropZoneStatus: DropZoneState.Default,
57
+ title: defaultTitle,
58
+ errorMessages: [],
59
+ })
60
+ const fileInputRef = useRef<HTMLInputElement>()
61
+ const { classes } = useStyle({ state: state.dropZoneStatus, style, size, disabled })
62
+
63
+ const handleHover = (): void => {
64
+ if (disabled) return
65
+ dispatch({ type: DropZoneState.Hover, title: defaultTitle })
66
+ }
67
+
68
+ const handleDragOver = (event: React.DragEvent<HTMLDivElement>): void => {
69
+ event.preventDefault()
70
+ if (disabled) return
71
+ dispatch({ type: DropZoneState.DraggedOver, title: UPLOAD_TITLE })
72
+ }
73
+
74
+ const handleDragLeave = (event: React.DragEvent<HTMLDivElement>): void => {
75
+ event.preventDefault()
76
+ if (disabled) return
77
+ // Ignore drag leave events that are triggered when hovering over children
78
+ const relatedTarget = event.relatedTarget
79
+ if (relatedTarget !== null && event.currentTarget.contains(relatedTarget as unknown as HTMLElement)) {
80
+ return
81
+ }
82
+
83
+ dispatch({ type: DropZoneState.Default, title: defaultTitle })
84
+ }
85
+
86
+ const handleDrop = (event: React.DragEvent<HTMLDivElement>): void => {
87
+ event.preventDefault()
88
+ const files = event.dataTransfer.files
89
+ const errors = onFilesSelect(files)
90
+ dispatch({ type: DropZoneState.Default, errors, title: defaultTitle })
91
+ }
92
+
93
+ const handleFileInputChange = (event: React.ChangeEvent<HTMLInputElement>): void => {
94
+ if (disabled) return
95
+ const errors = onFilesSelect(event.target.files)
96
+ dispatch({ type: DropZoneState.Default, errors, title: defaultTitle })
97
+ }
98
+
99
+ const handleMouseDown = (event: React.MouseEvent<HTMLDivElement>): void => {
100
+ event.preventDefault()
101
+ if (disabled) return
102
+ dispatch({ type: DropZoneState.Pressed, title: defaultTitle })
103
+ }
104
+
105
+ const handleMouseUp = (): void => {
106
+ if (disabled) return
107
+
108
+ dispatch({ type: DropZoneState.Hover, title: defaultTitle })
109
+ fileInputRef.current.click()
110
+ }
111
+
112
+ return (
113
+ <Box
114
+ onMouseDown={handleMouseDown}
115
+ onMouseUp={handleMouseUp}
116
+ onMouseEnter={handleHover}
117
+ onMouseLeave={() => {
118
+ dispatch({ type: DropZoneState.Default, title: defaultTitle })
119
+ }}
120
+ onDragOver={handleDragOver}
121
+ onDragLeave={handleDragLeave}
122
+ onDrop={handleDrop}
123
+ className={classes.dropZoneContainer}
124
+ data-testid="dropzoneContainer"
125
+ >
126
+ <Grid data-testid="dropzoneContents" container className={classes.dropZoneContents}>
127
+ <Grid item className={classes.dropZoneUploadIcon}>
128
+ <VentionIcon dataTestId="dropzoneUploadIcon" type="circle-arrow-up" size={getDropZoneStyle(size, "iconSize")} />
129
+ </Grid>
130
+ <Grid item className={classes.dropZoneTexts}>
131
+ <div data-testid="dropzoneTitle" className={classes.dropTitle}>
132
+ {state.title}
133
+ </div>
134
+ {state.dropZoneStatus !== DropZoneState.DraggedOver && (
135
+ <>
136
+ <div data-testid="dropzoneCriteria" className={classes.criteriaDescription}>
137
+ {fileCriteriaDescription}
138
+ </div>
139
+ <div data-testid="dropzoneErrors">
140
+ {state.errorMessages.map(error => {
141
+ return (
142
+ <div key={error} className={classes.errorMessage}>
143
+ ⚠ {error}
144
+ </div>
145
+ )
146
+ })}
147
+ </div>
148
+ </>
149
+ )}
150
+ </Grid>
151
+ <input
152
+ onChange={handleFileInputChange}
153
+ data-testid="dropzoneFileInput"
154
+ disabled={disabled}
155
+ aria-label="File upload"
156
+ type="file"
157
+ ref={fileInputRef}
158
+ className={classes.input}
159
+ multiple
160
+ />
161
+ </Grid>
162
+ </Box>
163
+ )
164
+ }
165
+
166
+ function dropZoneReducer(
167
+ reducerState: DropZoneReducerState,
168
+ { type, errors, title }: { type: DropZoneState; errors?: string[]; title: string }
169
+ ): DropZoneReducerState {
170
+ const errorMessages = errors || reducerState.errorMessages
171
+
172
+ return {
173
+ ...reducerState,
174
+ errorMessages,
175
+ title,
176
+ dropZoneStatus: getDropZoneStatus(type, errorMessages.length > 0),
177
+ }
178
+ }
179
+
180
+ const useStyle = tss
181
+ .withParams<{ state: DropZoneState; style: DropZoneStyle; size: DropZoneSize; disabled: boolean }>()
182
+ .create(({ state, style, size, disabled }) => {
183
+ const flexDirection = getDropZoneStyle(size, "flexDirection")
184
+ const alignItems = getDropZoneStyle(size, "alignItems")
185
+
186
+ return {
187
+ dropZoneContainer: {
188
+ minHeight: getDropZoneStyle(size, "minHeight"),
189
+ display: "grid",
190
+ flexDirection,
191
+ gap: getDropZoneStyle(size, "containerGap"),
192
+ alignItems,
193
+ padding: getDropZoneStyle(size, "padding"),
194
+ borderRadius: getDropZoneStyle(size, "borderRadius"),
195
+ border: getDropZoneBorder(state, disabled, style),
196
+ backgroundColor: getDropZoneBackgroundColor(style),
197
+ },
198
+ dropZoneUploadIcon: {
199
+ opacity: disabled ? 0.5 : 1,
200
+ },
201
+ dropZoneContents: {
202
+ display: "flex",
203
+ flexDirection,
204
+ gap: "6px",
205
+ alignItems,
206
+ },
207
+ dropZoneTexts: {
208
+ display: "flex",
209
+ flexDirection: "column",
210
+ alignItems,
211
+ },
212
+ dropTitle: {
213
+ fontSize: getDropZoneStyle(size, "titleFontSize"),
214
+ fontWeight: 500,
215
+ color: COLORS.slate[900],
216
+ opacity: disabled ? 0.4 : 1,
217
+ },
218
+ criteriaDescription: {
219
+ fontSize: "12px",
220
+ fontWeight: 400,
221
+ color: COLORS.slate[700],
222
+ opacity: disabled ? 0.5 : 1,
223
+ },
224
+ errorMessage: {
225
+ fontSize: "12px",
226
+ color: COLORS.red[600],
227
+ },
228
+ input: {
229
+ visibility: "hidden",
230
+ height: 0,
231
+ width: 0,
232
+ },
233
+ }
234
+ })
@@ -0,0 +1,18 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotoneAnalytics = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path
6
+ d="M4 18V6C4 5.46957 4.21071 4.96086 4.58579 4.58579C4.96086 4.21071 5.46957 4 6 4H18C18.5304 4 19.0391 4.21071 19.4142 4.58579C19.7893 4.96086 20 5.46957 20 6V18C20 18.5304 19.7893 19.0391 19.4142 19.4142C19.0391 19.7893 18.5304 20 18 20H6C5.46957 20 4.96086 19.7893 4.58579 19.4142C4.21071 19.0391 4 18.5304 4 18Z"
7
+ fill="#A5F3FC"
8
+ />
9
+ <path d="M7 14L10 11L12 13L15 10L17 12" fill="#A5F3FC" />
10
+ <path
11
+ d="M7 14L10 11L12 13L15 10L17 12M4 18V6C4 5.46957 4.21071 4.96086 4.58579 4.58579C4.96086 4.21071 5.46957 4 6 4H18C18.5304 4 19.0391 4.21071 19.4142 4.58579C19.7893 4.96086 20 5.46957 20 6V18C20 18.5304 19.7893 19.0391 19.4142 19.4142C19.0391 19.7893 18.5304 20 18 20H6C5.46957 20 4.96086 19.7893 4.58579 19.4142C4.21071 19.0391 4 18.5304 4 18Z"
12
+ stroke="#0891B2"
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ />
16
+ </svg>
17
+ )
18
+ export default SvgDuotoneAnalytics
@@ -0,0 +1,35 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotoneCommunication = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <circle cx={18.5998} cy={5.39998} r={1.8} fill="#A5F3FC" />
6
+ <circle cx={18.5998} cy={18.6} r={1.8} fill="#A5F3FC" />
7
+ <circle cx={5.4001} cy={5.39998} r={1.8} fill="#A5F3FC" />
8
+ <circle cx={8.4002} cy={15.48} r={4.2} fill="#A5F3FC" />
9
+ <path d="M5.93103 6.93594L7.20603 11.1849L5.93103 6.93594ZM12.813 16.7939L17.064 18.0689L12.813 16.7939Z" fill="#A5F3FC" />
10
+ <path d="M11.683 12.3169L17.442 6.55794L11.683 12.3169Z" fill="#A5F3FC" />
11
+ <path
12
+ d="M4 5.49994C4 5.69692 4.0388 5.89198 4.11418 6.07396C4.18956 6.25595 4.30005 6.42131 4.43934 6.5606C4.57863 6.69989 4.74399 6.81038 4.92597 6.88576C5.10796 6.96114 5.30302 6.99994 5.5 6.99994C5.69698 6.99994 5.89204 6.96114 6.07403 6.88576C6.25601 6.81038 6.42137 6.69989 6.56066 6.5606C6.69995 6.42131 6.81044 6.25595 6.88582 6.07396C6.9612 5.89198 7 5.69692 7 5.49994C7 5.30296 6.9612 5.1079 6.88582 4.92591C6.81044 4.74393 6.69995 4.57857 6.56066 4.43928C6.42137 4.29999 6.25601 4.1895 6.07403 4.11412C5.89204 4.03874 5.69698 3.99994 5.5 3.99994C5.30302 3.99994 5.10796 4.03874 4.92597 4.11412C4.74399 4.1895 4.57863 4.29999 4.43934 4.43928C4.30005 4.57857 4.18956 4.74393 4.11418 4.92591C4.0388 5.1079 4 5.30296 4 5.49994Z"
13
+ fill="#A5F3FC"
14
+ />
15
+ <path
16
+ d="M17 5.49994C17 5.89776 17.158 6.27929 17.4393 6.5606C17.7206 6.8419 18.1022 6.99994 18.5 6.99994C18.8978 6.99994 19.2794 6.8419 19.5607 6.5606C19.842 6.27929 20 5.89776 20 5.49994C20 5.10211 19.842 4.72058 19.5607 4.43928C19.2794 4.15797 18.8978 3.99994 18.5 3.99994C18.1022 3.99994 17.7206 4.15797 17.4393 4.43928C17.158 4.72058 17 5.10211 17 5.49994Z"
17
+ fill="#A5F3FC"
18
+ />
19
+ <path
20
+ d="M17 18.4999C17 18.8978 17.158 19.2793 17.4393 19.5606C17.7206 19.8419 18.1022 19.9999 18.5 19.9999C18.8978 19.9999 19.2794 19.8419 19.5607 19.5606C19.842 19.2793 20 18.8978 20 18.4999C20 18.1021 19.842 17.7206 19.5607 17.4393C19.2794 17.158 18.8978 16.9999 18.5 16.9999C18.1022 16.9999 17.7206 17.158 17.4393 17.4393C17.158 17.7206 17 18.1021 17 18.4999Z"
21
+ fill="#A5F3FC"
22
+ />
23
+ <path
24
+ d="M4 15.4999C4 16.6934 4.47411 17.838 5.31802 18.6819C6.16193 19.5258 7.30653 19.9999 8.5 19.9999C9.69347 19.9999 10.8381 19.5258 11.682 18.6819C12.5259 17.838 13 16.6934 13 15.4999C13 14.3065 12.5259 13.1619 11.682 12.318C10.8381 11.474 9.69347 10.9999 8.5 10.9999C7.30653 10.9999 6.16193 11.474 5.31802 12.318C4.47411 13.1619 4 14.3065 4 15.4999Z"
25
+ fill="#A5F3FC"
26
+ />
27
+ <path
28
+ d="M5.93103 6.93594L7.20603 11.1849M12.813 16.7939L17.064 18.0689M11.683 12.3169L17.442 6.55794M4 5.49994C4 5.69692 4.0388 5.89198 4.11418 6.07396C4.18956 6.25595 4.30005 6.42131 4.43934 6.5606C4.57863 6.69989 4.74399 6.81038 4.92597 6.88576C5.10796 6.96114 5.30302 6.99994 5.5 6.99994C5.69698 6.99994 5.89204 6.96114 6.07403 6.88576C6.25601 6.81038 6.42137 6.69989 6.56066 6.5606C6.69995 6.42131 6.81044 6.25595 6.88582 6.07396C6.9612 5.89198 7 5.69692 7 5.49994C7 5.30296 6.9612 5.1079 6.88582 4.92591C6.81044 4.74393 6.69995 4.57857 6.56066 4.43928C6.42137 4.29999 6.25601 4.1895 6.07403 4.11412C5.89204 4.03874 5.69698 3.99994 5.5 3.99994C5.30302 3.99994 5.10796 4.03874 4.92597 4.11412C4.74399 4.1895 4.57863 4.29999 4.43934 4.43928C4.30005 4.57857 4.18956 4.74393 4.11418 4.92591C4.0388 5.1079 4 5.30296 4 5.49994ZM17 5.49994C17 5.89776 17.158 6.27929 17.4393 6.5606C17.7206 6.8419 18.1022 6.99994 18.5 6.99994C18.8978 6.99994 19.2794 6.8419 19.5607 6.5606C19.842 6.27929 20 5.89776 20 5.49994C20 5.10211 19.842 4.72058 19.5607 4.43928C19.2794 4.15797 18.8978 3.99994 18.5 3.99994C18.1022 3.99994 17.7206 4.15797 17.4393 4.43928C17.158 4.72058 17 5.10211 17 5.49994ZM17 18.4999C17 18.8978 17.158 19.2793 17.4393 19.5606C17.7206 19.8419 18.1022 19.9999 18.5 19.9999C18.8978 19.9999 19.2794 19.8419 19.5607 19.5606C19.842 19.2793 20 18.8978 20 18.4999C20 18.1021 19.842 17.7206 19.5607 17.4393C19.2794 17.158 18.8978 16.9999 18.5 16.9999C18.1022 16.9999 17.7206 17.158 17.4393 17.4393C17.158 17.7206 17 18.1021 17 18.4999ZM4 15.4999C4 16.6934 4.47411 17.838 5.31802 18.6819C6.16193 19.5258 7.30653 19.9999 8.5 19.9999C9.69347 19.9999 10.8381 19.5258 11.682 18.6819C12.5259 17.838 13 16.6934 13 15.4999C13 14.3065 12.5259 13.1619 11.682 12.318C10.8381 11.474 9.69347 10.9999 8.5 10.9999C7.30653 10.9999 6.16193 11.474 5.31802 12.318C4.47411 13.1619 4 14.3065 4 15.4999Z"
29
+ stroke="#0891B2"
30
+ strokeLinecap="round"
31
+ strokeLinejoin="round"
32
+ />
33
+ </svg>
34
+ )
35
+ export default SvgDuotoneCommunication
@@ -0,0 +1,32 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotoneConveyor = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path
6
+ d="M17 8H7C4.79086 8 3 9.79086 3 12C3 14.2091 4.79086 16 7 16H17C19.2091 16 21 14.2091 21 12C21 9.79086 19.2091 8 17 8Z"
7
+ fill="#FDE68A"
8
+ stroke="#D97706"
9
+ strokeLinecap="round"
10
+ strokeLinejoin="round"
11
+ />
12
+ <path
13
+ d="M17 11C17.5489 11 18 11.4511 18 12C18 12.5489 17.5489 13 17 13C16.4511 13 16 12.5489 16 12C16 11.4511 16.4511 11 17 11Z"
14
+ stroke="#D97706"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ <path
19
+ d="M7 11C7.54886 11 8 11.4511 8 12C8 12.5489 7.54886 13 7 13C6.45114 13 6 12.5489 6 12C6 11.4511 6.45114 11 7 11Z"
20
+ stroke="#D97706"
21
+ strokeLinecap="round"
22
+ strokeLinejoin="round"
23
+ />
24
+ <path
25
+ d="M12 11C12.5489 11 13 11.4511 13 12C13 12.5489 12.5489 13 12 13C11.4511 13 11 12.5489 11 12C11 11.4511 11.4511 11 12 11Z"
26
+ stroke="#D97706"
27
+ strokeLinecap="round"
28
+ strokeLinejoin="round"
29
+ />
30
+ </svg>
31
+ )
32
+ export default SvgDuotoneConveyor
@@ -0,0 +1,10 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotoneInputOutput = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M3 14L7 10H21L17 14H3Z" fill="#A5F3FC" />
6
+ <path d="M7 10H21L17 6" stroke="#0891B2" strokeLinecap="round" strokeLinejoin="round" />
7
+ <path d="M17 14H3L7 18" stroke="#0891B2" strokeLinecap="round" strokeLinejoin="round" />
8
+ </svg>
9
+ )
10
+ export default SvgDuotoneInputOutput
@@ -0,0 +1,22 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotoneLinear = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path
6
+ d="M4 18C4 18.5304 4.21071 19.0391 4.58579 19.4142C4.96086 19.7893 5.46957 20 6 20C6.53043 20 7.03914 19.7893 7.41421 19.4142C7.78929 19.0391 8 18.5304 8 18C8 17.4696 7.78929 16.9609 7.41421 16.5858C7.03914 16.2107 6.53043 16 6 16C5.46957 16 4.96086 16.2107 4.58579 16.5858C4.21071 16.9609 4 17.4696 4 18Z"
7
+ fill="#FDE68A"
8
+ stroke="#D97706"
9
+ strokeLinecap="round"
10
+ strokeLinejoin="round"
11
+ />
12
+ <path
13
+ d="M16 6C16 6.53043 16.2107 7.03914 16.5858 7.41421C16.9609 7.78929 17.4696 8 18 8C18.5304 8 19.0391 7.78929 19.4142 7.41421C19.7893 7.03914 20 6.53043 20 6C20 5.46957 19.7893 4.96086 19.4142 4.58579C19.0391 4.21071 18.5304 4 18 4C17.4696 4 16.9609 4.21071 16.5858 4.58579C16.2107 4.96086 16 5.46957 16 6Z"
14
+ fill="#FDE68A"
15
+ stroke="#D97706"
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
+ />
19
+ <path d="M7.5 16.5L16.5 7.5" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
20
+ </svg>
21
+ )
22
+ export default SvgDuotoneLinear
@@ -0,0 +1,12 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotonePneumatic = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M6 7H3V17H6V7Z" fill="#FDE68A" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
6
+ <path d="M16.5 7H13.5V17H16.5V7Z" fill="#FDE68A" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
7
+ <path d="M13.5 8.66666H6V15.3333H13.5V8.66666Z" fill="#FDE68A" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
8
+ <path d="M21 10.3333H16.5V13.6667H21V10.3333Z" fill="#FDE68A" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
9
+ <path d="M21 15.3333V8.66666" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
10
+ </svg>
11
+ )
12
+ export default SvgDuotonePneumatic
@@ -0,0 +1,24 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotoneProgramming = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path
6
+ d="M13 20.693C12.095 21.321 10.64 20.985 10.325 19.683C10.2611 19.4192 10.1358 19.1742 9.95929 18.968C9.7828 18.7618 9.56011 18.6001 9.30935 18.4963C9.05859 18.3924 8.78683 18.3491 8.51621 18.3701C8.24559 18.3911 7.98375 18.4757 7.752 18.617C6.209 19.557 4.442 17.791 5.382 16.247C5.5231 16.0153 5.60755 15.7537 5.62848 15.4832C5.64942 15.2128 5.60624 14.9412 5.50247 14.6906C5.3987 14.44 5.23726 14.2174 5.03127 14.0409C4.82529 13.8645 4.58056 13.7391 4.317 13.675C2.561 13.249 2.561 10.751 4.317 10.325C4.5808 10.2611 4.82578 10.1358 5.032 9.95929C5.23822 9.7828 5.39985 9.56011 5.50375 9.30935C5.60764 9.05859 5.65085 8.78683 5.62987 8.51621C5.60889 8.24559 5.5243 7.98375 5.383 7.752C4.443 6.209 6.209 4.442 7.753 5.382C8.753 5.99 10.049 5.452 10.325 4.317C10.751 2.561 13.249 2.561 13.675 4.317C13.7389 4.5808 13.8642 4.82578 14.0407 5.032C14.2172 5.23822 14.4399 5.39985 14.6907 5.50375C14.9414 5.60764 15.2132 5.65085 15.4838 5.62987C15.7544 5.60889 16.0162 5.5243 16.248 5.383C17.791 4.443 19.558 6.209 18.618 7.753C18.4769 7.98466 18.3924 8.24634 18.3715 8.51677C18.3506 8.78721 18.3938 9.05877 18.4975 9.30938C18.6013 9.55999 18.7627 9.78258 18.9687 9.95905C19.1747 10.1355 19.4194 10.2609 19.683 10.325C21.175 10.687 21.399 12.544 20.357 13.355"
7
+ fill="#A7F3D0"
8
+ />
9
+ <path
10
+ d="M13 20.693C12.095 21.321 10.64 20.985 10.325 19.683C10.2611 19.4192 10.1358 19.1742 9.95929 18.968C9.7828 18.7618 9.56011 18.6001 9.30935 18.4963C9.05859 18.3924 8.78683 18.3491 8.51621 18.3701C8.24559 18.3911 7.98375 18.4757 7.752 18.617C6.209 19.557 4.442 17.791 5.382 16.247C5.5231 16.0153 5.60755 15.7537 5.62848 15.4832C5.64942 15.2128 5.60624 14.9412 5.50247 14.6906C5.3987 14.44 5.23726 14.2174 5.03127 14.0409C4.82529 13.8645 4.58056 13.7391 4.317 13.675C2.561 13.249 2.561 10.751 4.317 10.325C4.5808 10.2611 4.82578 10.1358 5.032 9.95929C5.23822 9.7828 5.39985 9.56011 5.50375 9.30935C5.60764 9.05859 5.65085 8.78683 5.62987 8.51621C5.60889 8.24559 5.5243 7.98375 5.383 7.752C4.443 6.209 6.209 4.442 7.753 5.382C8.753 5.99 10.049 5.452 10.325 4.317C10.751 2.561 13.249 2.561 13.675 4.317C13.7389 4.5808 13.8642 4.82578 14.0407 5.032C14.2172 5.23822 14.4399 5.39985 14.6907 5.50375C14.9414 5.60764 15.2132 5.65085 15.4838 5.62987C15.7544 5.60889 16.0162 5.5243 16.248 5.383C17.791 4.443 19.558 6.209 18.618 7.753C18.4769 7.98466 18.3924 8.24634 18.3715 8.51677C18.3506 8.78721 18.3938 9.05877 18.4975 9.30938C18.6013 9.55999 18.7627 9.78258 18.9687 9.95905C19.1747 10.1355 19.4194 10.2609 19.683 10.325C21.175 10.687 21.399 12.544 20.357 13.355"
11
+ stroke="#059669"
12
+ strokeLinecap="round"
13
+ strokeLinejoin="round"
14
+ />
15
+ <path
16
+ d="M9 12C9 12.7956 9.31607 13.5587 9.87868 14.1213C10.4413 14.6839 11.2044 15 12 15C12.7956 15 13.5587 14.6839 14.1213 14.1213C14.6839 13.5587 15 12.7956 15 12C15 11.2044 14.6839 10.4413 14.1213 9.87868C13.5587 9.31607 12.7956 9 12 9C11.2044 9 10.4413 9.31607 9.87868 9.87868C9.31607 10.4413 9 11.2044 9 12Z"
17
+ stroke="#059669"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ <path d="M17 22L22 19L17 16V22Z" fill="#A7F3D0" stroke="#059669" strokeLinecap="round" strokeLinejoin="round" />
22
+ </svg>
23
+ )
24
+ export default SvgDuotoneProgramming
@@ -0,0 +1,29 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotoneRobotArm = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M8 11L16 21H9L6 14" fill="#FDE68A" />
6
+ <path d="M8 11L16 21H9L6 14" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
7
+ <rect x={7} y={7.64566} width={7.07667} height={3.3976} transform="rotate(-21.9536 7 7.64566)" fill="#FDE68A" />
8
+ <path
9
+ d="M4 10C4 11.1 4.9 12 6 12C7.1 12 8 11.1 8 10C8 8.9 7.1 8 6 8C4.9 8 4 8.9 4 10Z"
10
+ fill="#FDE68A"
11
+ stroke="#D97706"
12
+ strokeLinecap="round"
13
+ strokeLinejoin="round"
14
+ />
15
+ <path
16
+ d="M14 6C14 7.1 14.9 8 16 8C17.1 8 18 7.1 18 6C18 4.9 17.1 4 16 4C14.9 4 14 4.9 14 6Z"
17
+ fill="#FDE68A"
18
+ stroke="#D97706"
19
+ strokeLinecap="round"
20
+ strokeLinejoin="round"
21
+ />
22
+ <path d="M5 21H19" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
23
+ <path d="M6.5 8L14 5" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
24
+ <path d="M15 8L8 11" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
25
+ <path d="M20.9214 9.33719L20.0321 7.28558L17.8572 6.76604" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
26
+ <path d="M19.636 10.8693L17.4611 10.3497L16.5718 8.29813" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
27
+ </svg>
28
+ )
29
+ export default SvgDuotoneRobotArm
@@ -0,0 +1,22 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotoneRotary = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path
6
+ d="M17 4C17 3.73478 17.1054 3.48043 17.2929 3.29289C17.4804 3.10536 17.7348 3 18 3H20C20.2652 3 20.5196 3.10536 20.7071 3.29289C20.8946 3.48043 21 3.73478 21 4V6C21 6.26522 20.8946 6.51957 20.7071 6.70711C20.5196 6.89464 20.2652 7 20 7H18C17.7348 7 17.4804 6.89464 17.2929 6.70711C17.1054 6.51957 17 6.26522 17 6V4Z"
7
+ fill="#FDE68A"
8
+ stroke="#D97706"
9
+ strokeLinecap="round"
10
+ strokeLinejoin="round"
11
+ />
12
+ <path
13
+ d="M3 18C3 17.7348 3.10536 17.4804 3.29289 17.2929C3.48043 17.1054 3.73478 17 4 17H6C6.26522 17 6.51957 17.1054 6.70711 17.2929C6.89464 17.4804 7 17.7348 7 18V20C7 20.2652 6.89464 20.5196 6.70711 20.7071C6.51957 20.8946 6.26522 21 6 21H4C3.73478 21 3.48043 20.8946 3.29289 20.7071C3.10536 20.5196 3 20.2652 3 20V18Z"
14
+ fill="#FDE68A"
15
+ stroke="#D97706"
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
+ />
19
+ <path d="M17 5C10.373 5 5 10.373 5 17" stroke="#D97706" strokeLinecap="round" strokeLinejoin="round" />
20
+ </svg>
21
+ )
22
+ export default SvgDuotoneRotary
@@ -0,0 +1,35 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgDuotoneStateMachine = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path
6
+ d="M10 5C8.67392 5 7.40215 5.52678 6.46447 6.46447C5.52678 7.40215 5 8.67392 5 10"
7
+ stroke="#059669"
8
+ strokeLinecap="round"
9
+ strokeLinejoin="round"
10
+ />
11
+ <path
12
+ d="M19 10C19 8.67392 18.4732 7.40215 17.5355 6.46447C16.5979 5.52678 15.3261 5 14 5"
13
+ stroke="#059669"
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ />
17
+ <path
18
+ d="M12 17C12 15.6739 11.4732 14.4021 10.5355 13.4645C9.59785 12.5268 8.32608 12 7 12"
19
+ stroke="#059669"
20
+ strokeLinecap="round"
21
+ strokeLinejoin="round"
22
+ />
23
+ <path
24
+ d="M5 14C5 15.3261 5.52678 16.5979 6.46447 17.5355C7.40215 18.4732 8.67392 19 10 19"
25
+ stroke="#059669"
26
+ strokeLinecap="round"
27
+ strokeLinejoin="round"
28
+ />
29
+ <rect x={10} y={3} width={4} height={4} rx={1} fill="#A7F3D0" stroke="#059669" />
30
+ <rect x={10} y={17} width={4} height={4} rx={1} fill="#A7F3D0" stroke="#059669" />
31
+ <rect x={21} y={10} width={4} height={4} rx={1} transform="rotate(90 21 10)" fill="#A7F3D0" stroke="#059669" />
32
+ <rect x={7} y={10} width={4} height={4} rx={1} transform="rotate(90 7 10)" fill="#A7F3D0" stroke="#059669" />
33
+ </svg>
34
+ )
35
+ export default SvgDuotoneStateMachine
@@ -0,0 +1,16 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ const SvgPositionRx = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg viewBox="0 0 30 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <rect width={30} height={24} rx={2} fill="#FEE2E2" />
6
+ <path
7
+ d="M18.501 8.72729L20.4825 12.3516L22.496 8.72729H24.9442L21.9846 13.6364L24.9953 18.5455H22.5599L20.4825 15.0107L18.4243 18.5455H15.9697L18.9612 13.6364L16.0464 8.72729H18.501Z"
8
+ fill="#7F1D1D"
9
+ />
10
+ <path
11
+ d="M5.00439 18.5455V5.45456H9.91349C10.9192 5.45456 11.7629 5.62928 12.4447 5.97871C13.1308 6.32814 13.6486 6.8182 13.998 7.44888C14.3517 8.0753 14.5285 8.80612 14.5285 9.64135C14.5285 10.4808 14.3496 11.2095 13.9916 11.8274C13.6379 12.4411 13.1159 12.9162 12.4256 13.2529C11.7352 13.5852 10.8872 13.7514 9.88153 13.7514H6.38508V11.7827H9.56192C10.15 11.7827 10.6315 11.7017 11.0065 11.5398C11.3815 11.3736 11.6585 11.1328 11.8375 10.8175C12.0207 10.4979 12.1123 10.1058 12.1123 9.64135C12.1123 9.17686 12.0207 8.78055 11.8375 8.45243C11.6543 8.12004 11.3751 7.86862 11.0001 7.69817C10.6251 7.52345 10.1415 7.43609 9.54914 7.43609H7.37584V18.5455H5.00439ZM11.7672 12.6137L15.0079 18.5455H12.3616L9.1784 12.6137H11.7672Z"
12
+ fill="#7F1D1D"
13
+ />
14
+ </svg>
15
+ )
16
+ export default SvgPositionRx