@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.
- package/.babelrc +12 -0
- package/.storybook/blocks/work-in-progress.tsx +12 -0
- package/.storybook/helpers/go-to-icon-gallery.tsx +23 -0
- package/.storybook/main.ts +38 -0
- package/.storybook/manager.ts +7 -0
- package/.storybook/preview-head.html +4 -0
- package/.storybook/preview.tsx +55 -0
- package/.storybook/theme.ts +25 -0
- package/CHANGELOG.md +2287 -0
- package/Dockerfile +11 -0
- package/README.md +39 -0
- package/ecs-task-definition.json +28 -0
- package/eslint.config.js +37 -0
- package/jest.config.ts +33 -0
- package/package.json +20 -0
- package/project.json +164 -0
- package/src/documentation/code-conventions.mdx +98 -0
- package/src/documentation/design-system/colors.mdx +58 -0
- package/src/documentation/design-system/how-to-choose-color.mdx +63 -0
- package/src/documentation/design-system/palette.mdx +159 -0
- package/src/documentation/design-system/spacing.mdx +61 -0
- package/src/documentation/design-system/typography.mdx +63 -0
- package/src/documentation/getting-started.mdx +154 -0
- package/src/documentation/icons.mdx +52 -0
- package/src/documentation/installation-and-usage.mdx +148 -0
- package/src/documentation/introduction.mdx +96 -0
- package/src/global-styles.css +9 -0
- package/src/index.ts +54 -0
- package/src/lib/components/shared/styles/input-styles.ts +123 -0
- package/src/lib/components/shared/types/input-types.ts +9 -0
- package/src/lib/components/vention-alert/vention-alert-controls.tsx +57 -0
- package/src/lib/components/vention-alert/vention-alert-utils.ts +27 -0
- package/src/lib/components/vention-alert/vention-alert.stories.tsx +137 -0
- package/src/lib/components/vention-alert/vention-alert.test.tsx +185 -0
- package/src/lib/components/vention-alert/vention-alert.tsx +295 -0
- package/src/lib/components/vention-badge/vention-badge.stories.tsx +60 -0
- package/src/lib/components/vention-badge/vention-badge.test.tsx +59 -0
- package/src/lib/components/vention-badge/vention-badge.tsx +197 -0
- package/src/lib/components/vention-banner/vention-banner.stories.tsx +124 -0
- package/src/lib/components/vention-banner/vention-banner.test.tsx +72 -0
- package/src/lib/components/vention-banner/vention-banner.tsx +123 -0
- package/src/lib/components/vention-button/button-utils.ts +143 -0
- package/src/lib/components/vention-button/vention-button.stories.tsx +89 -0
- package/src/lib/components/vention-button/vention-button.test.tsx +182 -0
- package/src/lib/components/vention-button/vention-button.tsx +151 -0
- package/src/lib/components/vention-button/vention-dropdown-button/vention-dropdown-button.stories.tsx +55 -0
- package/src/lib/components/vention-button/vention-dropdown-button/vention-dropdown-button.test.tsx +96 -0
- package/src/lib/components/vention-button/vention-dropdown-button/vention-dropdown-button.tsx +94 -0
- package/src/lib/components/vention-button/vention-icon-button/vention-icon-button.stories.tsx +55 -0
- package/src/lib/components/vention-button/vention-icon-button/vention-icon-button.test.tsx +227 -0
- package/src/lib/components/vention-button/vention-icon-button/vention-icon-button.tsx +60 -0
- package/src/lib/components/vention-callout/vention-callout.stories.tsx +82 -0
- package/src/lib/components/vention-callout/vention-callout.test.tsx +142 -0
- package/src/lib/components/vention-callout/vention-callout.tsx +199 -0
- package/src/lib/components/vention-checkbox/vention-checkbox-icon.tsx +64 -0
- package/src/lib/components/vention-checkbox/vention-checkbox.stories.tsx +121 -0
- package/src/lib/components/vention-checkbox/vention-checkbox.test.tsx +468 -0
- package/src/lib/components/vention-checkbox/vention-checkbox.tsx +321 -0
- package/src/lib/components/vention-combobox/vention-combobox.stories.tsx +181 -0
- package/src/lib/components/vention-combobox/vention-combobox.test.tsx +157 -0
- package/src/lib/components/vention-combobox/vention-combobox.tsx +374 -0
- package/src/lib/components/vention-counter/vention-counter.stories.tsx +19 -0
- package/src/lib/components/vention-counter/vention-counter.test.tsx +116 -0
- package/src/lib/components/vention-counter/vention-counter.tsx +165 -0
- package/src/lib/components/vention-draggable/vention-draggable.stories.tsx +47 -0
- package/src/lib/components/vention-draggable/vention-draggable.test.tsx +54 -0
- package/src/lib/components/vention-draggable/vention-draggable.tsx +120 -0
- package/src/lib/components/vention-drawer/vention-drawer.stories.tsx +80 -0
- package/src/lib/components/vention-drawer/vention-drawer.test.tsx +74 -0
- package/src/lib/components/vention-drawer/vention-drawer.tsx +105 -0
- package/src/lib/components/vention-dropzone/vention-dropzone-utils.tsx +124 -0
- package/src/lib/components/vention-dropzone/vention-dropzone.stories.tsx +69 -0
- package/src/lib/components/vention-dropzone/vention-dropzone.test.tsx +136 -0
- package/src/lib/components/vention-dropzone/vention-dropzone.tsx +234 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-analytics.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-communication.tsx +35 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-conveyor.tsx +32 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-input-output.tsx +10 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-linear.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-pneumatic.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-programming.tsx +24 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-robot-arm.tsx +29 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-rotary.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/duotone-state-machine.tsx +35 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-rx.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-ry.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-rz.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-x.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-y.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/duotone-icons/position-z.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/icon-types.ts +460 -0
- package/src/lib/components/vention-icon/_generated/icons/ac-motor.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/access-point.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator1.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator10.tsx +24 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator2.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator3.tsx +27 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator4.tsx +37 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator5.tsx +37 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator6.tsx +17 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator7.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator8.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/actuator9.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/adjustments-alt-filled.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/adjustments-alt.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/adjustments-filled.tsx +26 -0
- package/src/lib/components/vention-icon/_generated/icons/adjustments-horizontal.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alarm-bell-filled.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/alarm-bell-ringing.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alarm-bell.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alarm.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alert-circle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/alert-circle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/alert-triangle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/alert-triangle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/analytics.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/angle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/apps-2.tsx +31 -0
- package/src/lib/components/vention-icon/_generated/icons/apps.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-both.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-to-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-bar-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-down.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-left.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-right-lines.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-right.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-big-up.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-left-from-arc.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-narrow-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/arrow-up-right.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-diagonal-minimize-1.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-diagonal.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-diff.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-exchange-1.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-exchange.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-maximize.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-minimize.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-move.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/arrows-right-left.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/icons/assembly.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/asset.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/axis.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/belt-actuator-2.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/belt-actuator-3.tsx +26 -0
- package/src/lib/components/vention-icon/_generated/icons/belt-actuator.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/binary-tree-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/binary-tree.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/binary.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/blend.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/bolt-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/bolt.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/bomb.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/book-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/book.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/bookmark.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/books.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/braces.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/brand-python.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/bug.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building-broadcast-tower.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building-community.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building-factory-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building-skyscraper.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/building.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/button-black.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/button-white.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/calendar-month.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/camera.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/capture.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-down-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-left-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-right-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-up-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/caret-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/category-filled.tsx +30 -0
- package/src/lib/components/vention-icon/_generated/icons/category.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/cell-signal-full.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cell-signal-low.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cell-signal-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/chart-dots-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/check.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/checkbox.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/checks.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevron-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevron-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevron-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevron-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevrons-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevrons-left.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevrons-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/chevrons-up.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-arrow-up.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-check-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-check.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-minus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-plus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-square.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-x-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/circle-x.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/clock.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/clockwise-1.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/clockwise-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/close.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-computing.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-data-connection.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-download-1.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-download-off.tsx +37 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-download.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud-upload.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cloud.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/code.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/command-do.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/command-elif.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/command-else.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/command-if.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/condition-tree.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/confetti.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/connection.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/icons/conveyor.tsx +31 -0
- package/src/lib/components/vention-icon/_generated/icons/copy.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/corner-up-left.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/corner-up-right.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/counterclockwise-1.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/counterclockwise-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cpu-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cpu.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cube-plus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cube-send.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/cube.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-gear-fill.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-help-bold-filled.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-help-bold.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-help-fill.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-help.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-info-1.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-info-bold-filled.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-info-bold.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-info.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-point-to-point.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-rocket-fat.tsx +35 -0
- package/src/lib/components/vention-icon/_generated/icons/custom-rocket.tsx +31 -0
- package/src/lib/components/vention-icon/_generated/icons/dashboard.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/decline.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/device-laptop.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/device-tv.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/devices-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/dimensions.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/dots-vertical.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/dots.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/download-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/download.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/edit.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/electric-actuator.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/exclamation-mark.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/external-link.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/eye-closed.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/eye.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/file-3-d.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-code.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-description.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-download.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-type-pdf.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-upload.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/file-wrong.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/file.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/filter.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/focus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/folder-open.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/folder-plus-1.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/folder.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/frame-3.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/function-icon.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-branch-deleted.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-branch.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-compare.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-fork.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/git-merge.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/gizmo.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/graph.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/grid-dots.tsx +61 -0
- package/src/lib/components/vention-icon/_generated/icons/grip-horizontal.tsx +43 -0
- package/src/lib/components/vention-icon/_generated/icons/grip-vertical.tsx +43 -0
- package/src/lib/components/vention-icon/_generated/icons/gripper-1.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/gripper-2.tsx +10 -0
- package/src/lib/components/vention-icon/_generated/icons/hand-stop.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/hash.tsx +22 -0
- package/src/lib/components/vention-icon/_generated/icons/hb-menu.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/headphones-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/headset-filled.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/headset.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/help-circle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/help.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/history-toggle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/history.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/hmi.tsx +26 -0
- package/src/lib/components/vention-icon/_generated/icons/home-2.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/home-solid.tsx +27 -0
- package/src/lib/components/vention-icon/_generated/icons/home.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/hourglass-empty.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/i-o.tsx +31 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-box-padding.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-components.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-nut.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-ruler-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/icon-square-rotated.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/incline.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/infinity.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/info-circle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/info-circle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/input-output.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/io-link.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/ipad-horizontal.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/json.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/lan.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/language.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/layout-sidebar-right.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/legacy-axis.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/legacy-robot.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/letter-case.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/line.tsx +27 -0
- package/src/lib/components/vention-icon/_generated/icons/linear.tsx +27 -0
- package/src/lib/components/vention-icon/_generated/icons/link.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/list-check.tsx +24 -0
- package/src/lib/components/vention-icon/_generated/icons/load-balancer.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/lock.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/logout.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/machine-apps-headset.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/icons/machinelogic-2.tsx +17 -0
- package/src/lib/components/vention-icon/_generated/icons/magnet.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/mail-fast.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/mail.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/mailbox.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/math-equal-greater.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/math-equal-lower.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/maximize.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/menu-2.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/menu-waffle.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/menu.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/merge.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message-chatbot.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message-circle-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/message-circle.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message-dots.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/message.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/messages.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/microphone.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/minus-vertical.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/minus.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/mirror-flip-horizontal.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/mirror-flip-vertical.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/module-1.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/module-2.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/module-3.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/module-4.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-1.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-2.tsx +24 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-3.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-4.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/motor-5.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/move-to-ground.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/movie.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/multiplier.tsx +17 -0
- package/src/lib/components/vention-icon/_generated/icons/music.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/network-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/network-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/network.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/number-1.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/number-2.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/number-3.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/number-4.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/operator.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/pdf.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/phone-call.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/phone-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/phone.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/photo.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/pinned.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/player-pause.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/player-play-filled.tsx +18 -0
- package/src/lib/components/vention-icon/_generated/icons/player-play.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/player-record.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/player-skip-back.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/player-skip-forward.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/player-stop-filled.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/player-stop.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/player-track-next.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/player-track-prev.tsx +9 -0
- package/src/lib/components/vention-icon/_generated/icons/plug-x.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/plug.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/plus.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/pneumatic.tsx +12 -0
- package/src/lib/components/vention-icon/_generated/icons/point-to-point-3.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/point-to-point-check.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/power.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/programming.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/pushbutton.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/receipt-dollar.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/receipt.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/reference-frame-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/reference-frame.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/refresh-alert.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/refresh-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/refresh.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/reload.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/repeat.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/rewind-backward-15.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/rewind-forward-15.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/robot-arm-2.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/robot-arm-duotone-2.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/robot-arm.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/robot-face.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/rotary.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/route-square.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/row-insert-bottom.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/row-insert-top.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/ruler-measure-2.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/ruler.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/save.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/search.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/selector.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/send.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/sensor.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/sensor1.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/sensor2.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/sequence.tsx +28 -0
- package/src/lib/components/vention-icon/_generated/icons/setting-automation.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/settings-2.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/settings-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/settings.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/shield-code.tsx +15 -0
- package/src/lib/components/vention-icon/_generated/icons/shield-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/shield-half.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/shield.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/shopping-bag.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/shopping-cart-filled.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/shopping-cart.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/show-3d.tsx +26 -0
- package/src/lib/components/vention-icon/_generated/icons/sitemap-1.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/sitemap.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/slash.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/speedtest.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/sphere.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/square-number-0.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/square-number-1.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/square-number-2.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/square-number-3.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/stack.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/star.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/state-machine.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/status-danger-hmi.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/status-small.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/status-warning-hmi.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/stopwatch.tsx +23 -0
- package/src/lib/components/vention-icon/_generated/icons/subtask.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/switch-horizontal.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/switch-vertical.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/tag.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/target.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/template.tsx +29 -0
- package/src/lib/components/vention-icon/_generated/icons/terminal-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/terminal.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/text-plus-1.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/timeline.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/tiny-caret-down.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/tiny-caret-right.tsx +8 -0
- package/src/lib/components/vention-icon/_generated/icons/tool-1.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/tool.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-bus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-complex.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-full-hierarchy.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-full.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-ring-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-ring-3.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-ring.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/topology-star-3.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/trash.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/trending-up.tsx +16 -0
- package/src/lib/components/vention-icon/_generated/icons/truck-delivery.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/truck-loading.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/un-pinned.tsx +14 -0
- package/src/lib/components/vention-icon/_generated/icons/unlink.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/update.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/upload.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/user-circle.tsx +25 -0
- package/src/lib/components/vention-icon/_generated/icons/user-off.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/user-plus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/user-shield.tsx +21 -0
- package/src/lib/components/vention-icon/_generated/icons/user.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/users-plus.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/users.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/variable.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/vention.tsx +11 -0
- package/src/lib/components/vention-icon/_generated/icons/versions.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/video.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/web-link.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/weight-2.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/weight.tsx +19 -0
- package/src/lib/components/vention-icon/_generated/icons/wifi-low.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/wifi-lowest.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/wifi-off.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/wifi.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/world-download.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/world.tsx +13 -0
- package/src/lib/components/vention-icon/_generated/icons/xyz-1.tsx +20 -0
- package/src/lib/components/vention-icon/_generated/icons/xyz-2.tsx +16 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-analytics.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-communication.svg +13 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-conveyor.svg +6 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-input-output.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-linear.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-pneumatic.svg +7 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-programming.svg +6 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-robot-arm.svg +12 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-rotary.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/duotone-state-machine.svg +10 -0
- package/src/lib/components/vention-icon/duotone-svg/position-rx.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/position-ry.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/position-rz.svg +5 -0
- package/src/lib/components/vention-icon/duotone-svg/position-x.svg +4 -0
- package/src/lib/components/vention-icon/duotone-svg/position-y.svg +4 -0
- package/src/lib/components/vention-icon/duotone-svg/position-z.svg +4 -0
- package/src/lib/components/vention-icon/svg/ac-motor.svg +6 -0
- package/src/lib/components/vention-icon/svg/access-point.svg +3 -0
- package/src/lib/components/vention-icon/svg/actuator.svg +11 -0
- package/src/lib/components/vention-icon/svg/actuator1.svg +6 -0
- package/src/lib/components/vention-icon/svg/actuator10.svg +9 -0
- package/src/lib/components/vention-icon/svg/actuator2.svg +8 -0
- package/src/lib/components/vention-icon/svg/actuator3.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator4.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator5.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator6.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator7.svg +7 -0
- package/src/lib/components/vention-icon/svg/actuator8.svg +8 -0
- package/src/lib/components/vention-icon/svg/actuator9.svg +10 -0
- package/src/lib/components/vention-icon/svg/adjustments-alt-filled.svg +12 -0
- package/src/lib/components/vention-icon/svg/adjustments-alt.svg +3 -0
- package/src/lib/components/vention-icon/svg/adjustments-filled.svg +12 -0
- package/src/lib/components/vention-icon/svg/adjustments-horizontal.svg +3 -0
- package/src/lib/components/vention-icon/svg/alarm-bell-filled.svg +6 -0
- package/src/lib/components/vention-icon/svg/alarm-bell-ringing.svg +3 -0
- package/src/lib/components/vention-icon/svg/alarm-bell.svg +3 -0
- package/src/lib/components/vention-icon/svg/alarm.svg +3 -0
- package/src/lib/components/vention-icon/svg/alert-circle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/alert-circle.svg +3 -0
- package/src/lib/components/vention-icon/svg/alert-triangle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/alert-triangle.svg +3 -0
- package/src/lib/components/vention-icon/svg/analytics.svg +3 -0
- package/src/lib/components/vention-icon/svg/angle.svg +3 -0
- package/src/lib/components/vention-icon/svg/apps-2.svg +6 -0
- package/src/lib/components/vention-icon/svg/apps.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-both.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-to-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-to-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-to-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-to-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-bar-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-big-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-big-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-big-right-lines.svg +12 -0
- package/src/lib/components/vention-icon/svg/arrow-big-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-big-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-left-from-arc.svg +12 -0
- package/src/lib/components/vention-icon/svg/arrow-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-narrow-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-narrow-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-narrow-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-narrow-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrow-up-right.svg +4 -0
- package/src/lib/components/vention-icon/svg/arrows-diagonal-minimize-1.svg +6 -0
- package/src/lib/components/vention-icon/svg/arrows-diagonal.svg +6 -0
- package/src/lib/components/vention-icon/svg/arrows-diff.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrows-exchange-1.svg +4 -0
- package/src/lib/components/vention-icon/svg/arrows-exchange.svg +4 -0
- package/src/lib/components/vention-icon/svg/arrows-maximize.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrows-minimize.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrows-move.svg +3 -0
- package/src/lib/components/vention-icon/svg/arrows-right-left.svg +13 -0
- package/src/lib/components/vention-icon/svg/assembly.svg +4 -0
- package/src/lib/components/vention-icon/svg/asset.svg +3 -0
- package/src/lib/components/vention-icon/svg/axis.svg +3 -0
- package/src/lib/components/vention-icon/svg/belt-actuator-2.svg +5 -0
- package/src/lib/components/vention-icon/svg/belt-actuator-3.svg +6 -0
- package/src/lib/components/vention-icon/svg/belt-actuator.svg +5 -0
- package/src/lib/components/vention-icon/svg/binary-tree-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/binary-tree.svg +3 -0
- package/src/lib/components/vention-icon/svg/binary.svg +3 -0
- package/src/lib/components/vention-icon/svg/blend.svg +3 -0
- package/src/lib/components/vention-icon/svg/bolt-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/bolt.svg +3 -0
- package/src/lib/components/vention-icon/svg/bomb.svg +3 -0
- package/src/lib/components/vention-icon/svg/book-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/book.svg +3 -0
- package/src/lib/components/vention-icon/svg/bookmark.svg +3 -0
- package/src/lib/components/vention-icon/svg/books.svg +3 -0
- package/src/lib/components/vention-icon/svg/braces.svg +3 -0
- package/src/lib/components/vention-icon/svg/brand-python.svg +3 -0
- package/src/lib/components/vention-icon/svg/bug.svg +3 -0
- package/src/lib/components/vention-icon/svg/building-broadcast-tower.svg +3 -0
- package/src/lib/components/vention-icon/svg/building-community.svg +3 -0
- package/src/lib/components/vention-icon/svg/building-factory-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/building-skyscraper.svg +3 -0
- package/src/lib/components/vention-icon/svg/building.svg +3 -0
- package/src/lib/components/vention-icon/svg/button-black.svg +3 -0
- package/src/lib/components/vention-icon/svg/button-white.svg +3 -0
- package/src/lib/components/vention-icon/svg/calendar-month.svg +3 -0
- package/src/lib/components/vention-icon/svg/camera.svg +4 -0
- package/src/lib/components/vention-icon/svg/capture.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-down-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-left-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-right-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-up-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/caret-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/category-filled.svg +13 -0
- package/src/lib/components/vention-icon/svg/category.svg +6 -0
- package/src/lib/components/vention-icon/svg/cell-signal-full.svg +3 -0
- package/src/lib/components/vention-icon/svg/cell-signal-low.svg +3 -0
- package/src/lib/components/vention-icon/svg/cell-signal-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/chart-dots-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/check.svg +3 -0
- package/src/lib/components/vention-icon/svg/checkbox.svg +5 -0
- package/src/lib/components/vention-icon/svg/checks.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevron-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevron-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevron-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevron-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevrons-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevrons-left.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevrons-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/chevrons-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-arrow-up.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-check-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-check.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-minus.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-square.svg +4 -0
- package/src/lib/components/vention-icon/svg/circle-x-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/circle-x.svg +3 -0
- package/src/lib/components/vention-icon/svg/clock.svg +3 -0
- package/src/lib/components/vention-icon/svg/clockwise-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/clockwise-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/close.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-computing.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-data-connection.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-download-1.svg +5 -0
- package/src/lib/components/vention-icon/svg/cloud-download-off.svg +8 -0
- package/src/lib/components/vention-icon/svg/cloud-download.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud-upload.svg +3 -0
- package/src/lib/components/vention-icon/svg/cloud.svg +3 -0
- package/src/lib/components/vention-icon/svg/code.svg +3 -0
- package/src/lib/components/vention-icon/svg/command-do.svg +3 -0
- package/src/lib/components/vention-icon/svg/command-elif.svg +3 -0
- package/src/lib/components/vention-icon/svg/command-else.svg +3 -0
- package/src/lib/components/vention-icon/svg/command-if.svg +3 -0
- package/src/lib/components/vention-icon/svg/condition-tree.svg +3 -0
- package/src/lib/components/vention-icon/svg/confetti.svg +3 -0
- package/src/lib/components/vention-icon/svg/connection.svg +3 -0
- package/src/lib/components/vention-icon/svg/conveyor.svg +6 -0
- package/src/lib/components/vention-icon/svg/copy.svg +3 -0
- package/src/lib/components/vention-icon/svg/corner-up-left.svg +10 -0
- package/src/lib/components/vention-icon/svg/corner-up-right.svg +10 -0
- package/src/lib/components/vention-icon/svg/counterclockwise-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/counterclockwise-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/cpu-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/cpu.svg +3 -0
- package/src/lib/components/vention-icon/svg/cube-plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/cube-send.svg +3 -0
- package/src/lib/components/vention-icon/svg/cube.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-gear-fill.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-help-bold-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-help-bold.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-help-fill.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-help.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-info-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-info-bold-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/custom-info-bold.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-info.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-point-to-point.svg +5 -0
- package/src/lib/components/vention-icon/svg/custom-rocket-fat.svg +6 -0
- package/src/lib/components/vention-icon/svg/custom-rocket.svg +6 -0
- package/src/lib/components/vention-icon/svg/dashboard.svg +6 -0
- package/src/lib/components/vention-icon/svg/decline.svg +4 -0
- package/src/lib/components/vention-icon/svg/device-laptop.svg +3 -0
- package/src/lib/components/vention-icon/svg/device-tv.svg +3 -0
- package/src/lib/components/vention-icon/svg/devices-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/dimensions.svg +10 -0
- package/src/lib/components/vention-icon/svg/dots-vertical.svg +5 -0
- package/src/lib/components/vention-icon/svg/dots.svg +5 -0
- package/src/lib/components/vention-icon/svg/download-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/download.svg +3 -0
- package/src/lib/components/vention-icon/svg/edit.svg +3 -0
- package/src/lib/components/vention-icon/svg/electric-actuator.svg +5 -0
- package/src/lib/components/vention-icon/svg/exclamation-mark.svg +3 -0
- package/src/lib/components/vention-icon/svg/external-link.svg +3 -0
- package/src/lib/components/vention-icon/svg/eye-closed.svg +3 -0
- package/src/lib/components/vention-icon/svg/eye.svg +4 -0
- package/src/lib/components/vention-icon/svg/file-3-d.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-code.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-description.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-download.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-type-pdf.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-upload.svg +3 -0
- package/src/lib/components/vention-icon/svg/file-wrong.svg +13 -0
- package/src/lib/components/vention-icon/svg/file.svg +3 -0
- package/src/lib/components/vention-icon/svg/filter.svg +3 -0
- package/src/lib/components/vention-icon/svg/focus.svg +3 -0
- package/src/lib/components/vention-icon/svg/folder-open.svg +10 -0
- package/src/lib/components/vention-icon/svg/folder-plus-1.svg +12 -0
- package/src/lib/components/vention-icon/svg/folder.svg +3 -0
- package/src/lib/components/vention-icon/svg/frame-3.svg +3 -0
- package/src/lib/components/vention-icon/svg/function-icon.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-branch-deleted.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-branch.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-compare.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-fork.svg +3 -0
- package/src/lib/components/vention-icon/svg/git-merge.svg +3 -0
- package/src/lib/components/vention-icon/svg/gizmo.svg +3 -0
- package/src/lib/components/vention-icon/svg/graph.svg +3 -0
- package/src/lib/components/vention-icon/svg/grid-dots.svg +11 -0
- package/src/lib/components/vention-icon/svg/grip-horizontal.svg +8 -0
- package/src/lib/components/vention-icon/svg/grip-vertical.svg +8 -0
- package/src/lib/components/vention-icon/svg/gripper-1.svg +5 -0
- package/src/lib/components/vention-icon/svg/gripper-2.svg +5 -0
- package/src/lib/components/vention-icon/svg/hand-stop.svg +3 -0
- package/src/lib/components/vention-icon/svg/hash.svg +7 -0
- package/src/lib/components/vention-icon/svg/hb-menu.svg +3 -0
- package/src/lib/components/vention-icon/svg/headphones-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/headset-filled.svg +5 -0
- package/src/lib/components/vention-icon/svg/headset.svg +3 -0
- package/src/lib/components/vention-icon/svg/help-circle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/help.svg +3 -0
- package/src/lib/components/vention-icon/svg/history-toggle.svg +3 -0
- package/src/lib/components/vention-icon/svg/history.svg +3 -0
- package/src/lib/components/vention-icon/svg/hmi.svg +6 -0
- package/src/lib/components/vention-icon/svg/home-2.svg +5 -0
- package/src/lib/components/vention-icon/svg/home-solid.svg +7 -0
- package/src/lib/components/vention-icon/svg/home.svg +3 -0
- package/src/lib/components/vention-icon/svg/hourglass-empty.svg +3 -0
- package/src/lib/components/vention-icon/svg/i-o.svg +6 -0
- package/src/lib/components/vention-icon/svg/icon-box-padding.svg +3 -0
- package/src/lib/components/vention-icon/svg/icon-components.svg +13 -0
- package/src/lib/components/vention-icon/svg/icon-nut.svg +4 -0
- package/src/lib/components/vention-icon/svg/icon-ruler-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/icon-square-rotated.svg +3 -0
- package/src/lib/components/vention-icon/svg/incline.svg +4 -0
- package/src/lib/components/vention-icon/svg/infinity.svg +3 -0
- package/src/lib/components/vention-icon/svg/info-circle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/info-circle.svg +3 -0
- package/src/lib/components/vention-icon/svg/input-output.svg +11 -0
- package/src/lib/components/vention-icon/svg/io-link.svg +3 -0
- package/src/lib/components/vention-icon/svg/ipad-horizontal.svg +3 -0
- package/src/lib/components/vention-icon/svg/json.svg +3 -0
- package/src/lib/components/vention-icon/svg/lan.svg +3 -0
- package/src/lib/components/vention-icon/svg/language.svg +3 -0
- package/src/lib/components/vention-icon/svg/layout-sidebar-right.svg +4 -0
- package/src/lib/components/vention-icon/svg/legacy-axis.svg +4 -0
- package/src/lib/components/vention-icon/svg/legacy-robot.svg +3 -0
- package/src/lib/components/vention-icon/svg/letter-case.svg +3 -0
- package/src/lib/components/vention-icon/svg/line.svg +12 -0
- package/src/lib/components/vention-icon/svg/linear.svg +12 -0
- package/src/lib/components/vention-icon/svg/link.svg +3 -0
- package/src/lib/components/vention-icon/svg/list-check.svg +9 -0
- package/src/lib/components/vention-icon/svg/load-balancer.svg +3 -0
- package/src/lib/components/vention-icon/svg/lock.svg +3 -0
- package/src/lib/components/vention-icon/svg/logout.svg +3 -0
- package/src/lib/components/vention-icon/svg/machine-apps-headset.svg +4 -0
- package/src/lib/components/vention-icon/svg/machinelogic-2.svg +7 -0
- package/src/lib/components/vention-icon/svg/magnet.svg +5 -0
- package/src/lib/components/vention-icon/svg/mail-fast.svg +3 -0
- package/src/lib/components/vention-icon/svg/mail.svg +3 -0
- package/src/lib/components/vention-icon/svg/mailbox.svg +3 -0
- package/src/lib/components/vention-icon/svg/math-equal-greater.svg +3 -0
- package/src/lib/components/vention-icon/svg/math-equal-lower.svg +3 -0
- package/src/lib/components/vention-icon/svg/maximize.svg +3 -0
- package/src/lib/components/vention-icon/svg/menu-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/menu-waffle.svg +11 -0
- package/src/lib/components/vention-icon/svg/menu.svg +3 -0
- package/src/lib/components/vention-icon/svg/merge.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-chatbot.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-circle-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-circle.svg +3 -0
- package/src/lib/components/vention-icon/svg/message-dots.svg +3 -0
- package/src/lib/components/vention-icon/svg/message.svg +3 -0
- package/src/lib/components/vention-icon/svg/messages.svg +3 -0
- package/src/lib/components/vention-icon/svg/microphone.svg +3 -0
- package/src/lib/components/vention-icon/svg/minus-vertical.svg +3 -0
- package/src/lib/components/vention-icon/svg/minus.svg +3 -0
- package/src/lib/components/vention-icon/svg/mirror-flip-horizontal.svg +3 -0
- package/src/lib/components/vention-icon/svg/mirror-flip-vertical.svg +3 -0
- package/src/lib/components/vention-icon/svg/module-1.svg +13 -0
- package/src/lib/components/vention-icon/svg/module-2.svg +9 -0
- package/src/lib/components/vention-icon/svg/module-3.svg +6 -0
- package/src/lib/components/vention-icon/svg/module-4.svg +4 -0
- package/src/lib/components/vention-icon/svg/motor-1.svg +9 -0
- package/src/lib/components/vention-icon/svg/motor-2.svg +9 -0
- package/src/lib/components/vention-icon/svg/motor-3.svg +16 -0
- package/src/lib/components/vention-icon/svg/motor-4.svg +3 -0
- package/src/lib/components/vention-icon/svg/motor-5.svg +5 -0
- package/src/lib/components/vention-icon/svg/move-to-ground.svg +3 -0
- package/src/lib/components/vention-icon/svg/movie.svg +3 -0
- package/src/lib/components/vention-icon/svg/multiplier.svg +12 -0
- package/src/lib/components/vention-icon/svg/music.svg +3 -0
- package/src/lib/components/vention-icon/svg/network-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/network-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/network.svg +3 -0
- package/src/lib/components/vention-icon/svg/number-1.svg +10 -0
- package/src/lib/components/vention-icon/svg/number-2.svg +10 -0
- package/src/lib/components/vention-icon/svg/number-3.svg +11 -0
- package/src/lib/components/vention-icon/svg/number-4.svg +10 -0
- package/src/lib/components/vention-icon/svg/operator.svg +6 -0
- package/src/lib/components/vention-icon/svg/pdf.svg +3 -0
- package/src/lib/components/vention-icon/svg/phone-call.svg +3 -0
- package/src/lib/components/vention-icon/svg/phone-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/phone.svg +3 -0
- package/src/lib/components/vention-icon/svg/photo.svg +3 -0
- package/src/lib/components/vention-icon/svg/pinned.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-pause.svg +4 -0
- package/src/lib/components/vention-icon/svg/player-play-filled.svg +10 -0
- package/src/lib/components/vention-icon/svg/player-play.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-record.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-skip-back.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-skip-forward.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-stop-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-stop.svg +3 -0
- package/src/lib/components/vention-icon/svg/player-track-next.svg +4 -0
- package/src/lib/components/vention-icon/svg/player-track-prev.svg +4 -0
- package/src/lib/components/vention-icon/svg/plug-x.svg +3 -0
- package/src/lib/components/vention-icon/svg/plug.svg +3 -0
- package/src/lib/components/vention-icon/svg/plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/pneumatic.svg +7 -0
- package/src/lib/components/vention-icon/svg/point-to-point-3.svg +4 -0
- package/src/lib/components/vention-icon/svg/point-to-point-check.svg +13 -0
- package/src/lib/components/vention-icon/svg/power.svg +3 -0
- package/src/lib/components/vention-icon/svg/programming.svg +5 -0
- package/src/lib/components/vention-icon/svg/pushbutton.svg +3 -0
- package/src/lib/components/vention-icon/svg/receipt-dollar.svg +3 -0
- package/src/lib/components/vention-icon/svg/receipt.svg +4 -0
- package/src/lib/components/vention-icon/svg/reference-frame-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/reference-frame.svg +8 -0
- package/src/lib/components/vention-icon/svg/refresh-alert.svg +3 -0
- package/src/lib/components/vention-icon/svg/refresh-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/refresh.svg +3 -0
- package/src/lib/components/vention-icon/svg/reload.svg +3 -0
- package/src/lib/components/vention-icon/svg/repeat.svg +3 -0
- package/src/lib/components/vention-icon/svg/rewind-backward-15.svg +13 -0
- package/src/lib/components/vention-icon/svg/rewind-forward-15.svg +13 -0
- package/src/lib/components/vention-icon/svg/robot-arm-2.svg +8 -0
- package/src/lib/components/vention-icon/svg/robot-arm-duotone-2.svg +8 -0
- package/src/lib/components/vention-icon/svg/robot-arm.svg +10 -0
- package/src/lib/components/vention-icon/svg/robot-face.svg +3 -0
- package/src/lib/components/vention-icon/svg/rotary.svg +5 -0
- package/src/lib/components/vention-icon/svg/route-square.svg +3 -0
- package/src/lib/components/vention-icon/svg/row-insert-bottom.svg +3 -0
- package/src/lib/components/vention-icon/svg/row-insert-top.svg +3 -0
- package/src/lib/components/vention-icon/svg/ruler-measure-2.svg +18 -0
- package/src/lib/components/vention-icon/svg/ruler.svg +3 -0
- package/src/lib/components/vention-icon/svg/save.svg +3 -0
- package/src/lib/components/vention-icon/svg/search.svg +3 -0
- package/src/lib/components/vention-icon/svg/selector.svg +3 -0
- package/src/lib/components/vention-icon/svg/send.svg +3 -0
- package/src/lib/components/vention-icon/svg/sensor.svg +5 -0
- package/src/lib/components/vention-icon/svg/sensor1.svg +6 -0
- package/src/lib/components/vention-icon/svg/sensor2.svg +6 -0
- package/src/lib/components/vention-icon/svg/sequence.svg +13 -0
- package/src/lib/components/vention-icon/svg/setting-automation.svg +5 -0
- package/src/lib/components/vention-icon/svg/settings-2.svg +4 -0
- package/src/lib/components/vention-icon/svg/settings-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/settings.svg +4 -0
- package/src/lib/components/vention-icon/svg/shield-code.svg +5 -0
- package/src/lib/components/vention-icon/svg/shield-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/shield-half.svg +3 -0
- package/src/lib/components/vention-icon/svg/shield.svg +3 -0
- package/src/lib/components/vention-icon/svg/shopping-bag.svg +3 -0
- package/src/lib/components/vention-icon/svg/shopping-cart-filled.svg +3 -0
- package/src/lib/components/vention-icon/svg/shopping-cart.svg +3 -0
- package/src/lib/components/vention-icon/svg/show-3d.svg +11 -0
- package/src/lib/components/vention-icon/svg/sitemap-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/sitemap.svg +3 -0
- package/src/lib/components/vention-icon/svg/slash.svg +3 -0
- package/src/lib/components/vention-icon/svg/speedtest.svg +3 -0
- package/src/lib/components/vention-icon/svg/sphere.svg +3 -0
- package/src/lib/components/vention-icon/svg/square-number-0.svg +4 -0
- package/src/lib/components/vention-icon/svg/square-number-1.svg +4 -0
- package/src/lib/components/vention-icon/svg/square-number-2.svg +4 -0
- package/src/lib/components/vention-icon/svg/square-number-3.svg +4 -0
- package/src/lib/components/vention-icon/svg/stack.svg +3 -0
- package/src/lib/components/vention-icon/svg/star.svg +3 -0
- package/src/lib/components/vention-icon/svg/state-machine.svg +4 -0
- package/src/lib/components/vention-icon/svg/status-danger-hmi.svg +3 -0
- package/src/lib/components/vention-icon/svg/status-small.svg +3 -0
- package/src/lib/components/vention-icon/svg/status-warning-hmi.svg +3 -0
- package/src/lib/components/vention-icon/svg/stopwatch.svg +13 -0
- package/src/lib/components/vention-icon/svg/subtask.svg +3 -0
- package/src/lib/components/vention-icon/svg/switch-horizontal.svg +6 -0
- package/src/lib/components/vention-icon/svg/switch-vertical.svg +3 -0
- package/src/lib/components/vention-icon/svg/tag.svg +4 -0
- package/src/lib/components/vention-icon/svg/target.svg +5 -0
- package/src/lib/components/vention-icon/svg/template.svg +14 -0
- package/src/lib/components/vention-icon/svg/terminal-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/terminal.svg +3 -0
- package/src/lib/components/vention-icon/svg/text-plus-1.svg +15 -0
- package/src/lib/components/vention-icon/svg/timeline.svg +3 -0
- package/src/lib/components/vention-icon/svg/tiny-caret-down.svg +3 -0
- package/src/lib/components/vention-icon/svg/tiny-caret-right.svg +3 -0
- package/src/lib/components/vention-icon/svg/tool-1.svg +3 -0
- package/src/lib/components/vention-icon/svg/tool.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-bus.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-complex.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-full-hierarchy.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-full.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-ring-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-ring-3.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-ring.svg +3 -0
- package/src/lib/components/vention-icon/svg/topology-star-3.svg +3 -0
- package/src/lib/components/vention-icon/svg/trash.svg +3 -0
- package/src/lib/components/vention-icon/svg/trending-up.svg +11 -0
- package/src/lib/components/vention-icon/svg/truck-delivery.svg +3 -0
- package/src/lib/components/vention-icon/svg/truck-loading.svg +3 -0
- package/src/lib/components/vention-icon/svg/un-pinned.svg +4 -0
- package/src/lib/components/vention-icon/svg/unlink.svg +3 -0
- package/src/lib/components/vention-icon/svg/update.svg +11 -0
- package/src/lib/components/vention-icon/svg/upload.svg +3 -0
- package/src/lib/components/vention-icon/svg/user-circle.svg +5 -0
- package/src/lib/components/vention-icon/svg/user-off.svg +6 -0
- package/src/lib/components/vention-icon/svg/user-plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/user-shield.svg +6 -0
- package/src/lib/components/vention-icon/svg/user.svg +3 -0
- package/src/lib/components/vention-icon/svg/users-plus.svg +3 -0
- package/src/lib/components/vention-icon/svg/users.svg +3 -0
- package/src/lib/components/vention-icon/svg/variable.svg +3 -0
- package/src/lib/components/vention-icon/svg/vention.svg +3 -0
- package/src/lib/components/vention-icon/svg/versions.svg +3 -0
- package/src/lib/components/vention-icon/svg/video.svg +4 -0
- package/src/lib/components/vention-icon/svg/web-link.svg +3 -0
- package/src/lib/components/vention-icon/svg/weight-2.svg +3 -0
- package/src/lib/components/vention-icon/svg/weight.svg +4 -0
- package/src/lib/components/vention-icon/svg/wifi-low.svg +3 -0
- package/src/lib/components/vention-icon/svg/wifi-lowest.svg +3 -0
- package/src/lib/components/vention-icon/svg/wifi-off.svg +3 -0
- package/src/lib/components/vention-icon/svg/wifi.svg +3 -0
- package/src/lib/components/vention-icon/svg/world-download.svg +3 -0
- package/src/lib/components/vention-icon/svg/world.svg +3 -0
- package/src/lib/components/vention-icon/svg/xyz-1.svg +5 -0
- package/src/lib/components/vention-icon/svg/xyz-2.svg +5 -0
- package/src/lib/components/vention-icon/svgo.config.js +19 -0
- package/src/lib/components/vention-icon/svgr-duotone.config.js +13 -0
- package/src/lib/components/vention-icon/svgr.config.js +11 -0
- package/src/lib/components/vention-icon/vention-icon.stories.tsx +63 -0
- package/src/lib/components/vention-icon/vention-icon.test.tsx +62 -0
- package/src/lib/components/vention-icon/vention-icon.tsx +62 -0
- package/src/lib/components/vention-link/vention-link.stories.tsx +20 -0
- package/src/lib/components/vention-link/vention-link.test.tsx +44 -0
- package/src/lib/components/vention-link/vention-link.tsx +88 -0
- package/src/lib/components/vention-menu/vention-menu-context.ts +13 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-child-item.tsx +104 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-divider.tsx +33 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-header.tsx +30 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-item.tsx +25 -0
- package/src/lib/components/vention-menu/vention-menu-item/vention-menu-parent-item.tsx +84 -0
- package/src/lib/components/vention-menu/vention-menu-list.tsx +66 -0
- package/src/lib/components/vention-menu/vention-menu-styling-helpers.ts +151 -0
- package/src/lib/components/vention-menu/vention-menu.stories.tsx +119 -0
- package/src/lib/components/vention-menu/vention-menu.test.tsx +234 -0
- package/src/lib/components/vention-menu/vention-menu.tsx +44 -0
- package/src/lib/components/vention-modal/vention-modal.stories.tsx +204 -0
- package/src/lib/components/vention-modal/vention-modal.test.tsx +181 -0
- package/src/lib/components/vention-modal/vention-modal.tsx +232 -0
- package/src/lib/components/vention-modal-banner/vention-modal-banner.test.tsx +104 -0
- package/src/lib/components/vention-modal-banner/vention-modal-banner.tsx +120 -0
- package/src/lib/components/vention-modal-banner/vention-modal.banner.stories.tsx +138 -0
- package/src/lib/components/vention-modal-base/vention-modal-base.stories.tsx +95 -0
- package/src/lib/components/vention-modal-base/vention-modal-base.test.tsx +117 -0
- package/src/lib/components/vention-modal-base/vention-modal-base.tsx +149 -0
- package/src/lib/components/vention-popover/vention-popover.stories.tsx +30 -0
- package/src/lib/components/vention-popover/vention-popover.test.tsx +148 -0
- package/src/lib/components/vention-popover/vention-popover.tsx +211 -0
- package/src/lib/components/vention-progress-bar/vention-progress-bar.stories.tsx +84 -0
- package/src/lib/components/vention-progress-bar/vention-progress-bar.test.tsx +102 -0
- package/src/lib/components/vention-progress-bar/vention-progress-bar.tsx +119 -0
- package/src/lib/components/vention-radio/radio-model.ts +77 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile-control.tsx +38 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile-label.tsx +52 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile.stories.tsx +67 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile.test.tsx +88 -0
- package/src/lib/components/vention-radio/vention-radio-tile/vention-radio-tile.tsx +159 -0
- package/src/lib/components/vention-radio/vention-radio.stories.tsx +62 -0
- package/src/lib/components/vention-radio/vention-radio.test.tsx +90 -0
- package/src/lib/components/vention-radio/vention-radio.tsx +174 -0
- package/src/lib/components/vention-select/vention-select.stories.tsx +224 -0
- package/src/lib/components/vention-select/vention-select.test.tsx +348 -0
- package/src/lib/components/vention-select/vention-select.tsx +295 -0
- package/src/lib/components/vention-sidebar-item/vention-sidebar-item.stories.tsx +27 -0
- package/src/lib/components/vention-sidebar-item/vention-sidebar-item.test.tsx +45 -0
- package/src/lib/components/vention-sidebar-item/vention-sidebar-item.tsx +82 -0
- package/src/lib/components/vention-slider/vention-slider.stories.tsx +65 -0
- package/src/lib/components/vention-slider/vention-slider.test.tsx +35 -0
- package/src/lib/components/vention-slider/vention-slider.tsx +74 -0
- package/src/lib/components/vention-spinner/vention-spinner.test.tsx +176 -0
- package/src/lib/components/vention-spinner/vention-spinner.tsx +213 -0
- package/src/lib/components/vention-spinner/vention.spinner.stories.tsx +67 -0
- package/src/lib/components/vention-status-dot/vention-status-dot.stories.tsx +24 -0
- package/src/lib/components/vention-status-dot/vention-status-dot.test.tsx +44 -0
- package/src/lib/components/vention-status-dot/vention-status-dot.tsx +52 -0
- package/src/lib/components/vention-status-indicator/vention-status-indicator.stories.tsx +49 -0
- package/src/lib/components/vention-status-indicator/vention-status-indicator.test.tsx +50 -0
- package/src/lib/components/vention-status-indicator/vention-status-indicator.tsx +205 -0
- package/src/lib/components/vention-stepper/vention-stepper.stories.tsx +141 -0
- package/src/lib/components/vention-stepper/vention-stepper.test.tsx +55 -0
- package/src/lib/components/vention-stepper/vention-stepper.tsx +127 -0
- package/src/lib/components/vention-steps/vention-steps.stories.tsx +45 -0
- package/src/lib/components/vention-steps/vention-steps.test.tsx +144 -0
- package/src/lib/components/vention-steps/vention-steps.tsx +305 -0
- package/src/lib/components/vention-switch/vention-switch.stories.tsx +48 -0
- package/src/lib/components/vention-switch/vention-switch.test.tsx +118 -0
- package/src/lib/components/vention-switch/vention-switch.tsx +189 -0
- package/src/lib/components/vention-tabs/vention-tabs.stories.tsx +28 -0
- package/src/lib/components/vention-tabs/vention-tabs.test.tsx +40 -0
- package/src/lib/components/vention-tabs/vention-tabs.tsx +61 -0
- package/src/lib/components/vention-text-input/vention-text-input.stories.tsx +203 -0
- package/src/lib/components/vention-text-input/vention-text-input.test.tsx +635 -0
- package/src/lib/components/vention-text-input/vention-text-input.tsx +205 -0
- package/src/lib/components/vention-tooltip/vention-tooltip.stories.tsx +25 -0
- package/src/lib/components/vention-tooltip/vention-tooltip.test.tsx +19 -0
- package/src/lib/components/vention-tooltip/vention-tooltip.tsx +53 -0
- package/src/lib/components/vention-tree-item/vention-collapsible-caret-button.tsx +42 -0
- package/src/lib/components/vention-tree-item/vention-tree-item.stories.tsx +618 -0
- package/src/lib/components/vention-tree-item/vention-tree-item.test.tsx +561 -0
- package/src/lib/components/vention-tree-item/vention-tree-item.tsx +401 -0
- package/src/lib/components/vention-uploadfile/vention-uploadfile-utils.tsx +115 -0
- package/src/lib/components/vention-uploadfile/vention-uploadfile.stories.tsx +69 -0
- package/src/lib/components/vention-uploadfile/vention-uploadfile.test.tsx +88 -0
- package/src/lib/components/vention-uploadfile/vention-uploadfile.tsx +122 -0
- package/src/lib/testing/utils.tsx +26 -0
- package/src/lib/theme/colors.ts +80 -0
- package/src/lib/theme/machine-ui-theme.ts +718 -0
- package/src/lib/theme/typography.ts +188 -0
- package/src/lib/utilities.ts +15 -0
- package/src/scripts/generate-icon-types.test.ts +91 -0
- package/src/scripts/generate-icon-types.ts +97 -0
- package/tsconfig.icon-generator.json +10 -0
- package/tsconfig.json +24 -0
- package/tsconfig.lib.json +23 -0
- package/tsconfig.spec.json +20 -0
- package/tsconfig.storybook.json +33 -0
- package/tsconfig.types.json +9 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { Meta } from "@storybook/blocks"
|
|
2
|
+
|
|
3
|
+
<Meta title="Guides/Introduction" />
|
|
4
|
+
|
|
5
|
+
# Machine UI
|
|
6
|
+
|
|
7
|
+
## 🎨 What is Machine UI?
|
|
8
|
+
|
|
9
|
+
Machine UI is Vention's design system aiming to unify the design of UI components across the Vention platform.
|
|
10
|
+
|
|
11
|
+
This storybook contains the documentation for the source code of the Machine UI library, which is a collection of reusable components and styles built in Typescript and React.
|
|
12
|
+
|
|
13
|
+
This library aims to bridge the gap between development and design by providing a single source of truth for UI components and styles.
|
|
14
|
+
|
|
15
|
+
## 🏅 Goals of this project
|
|
16
|
+
|
|
17
|
+
Machine UI aims to achieve the following goals:
|
|
18
|
+
|
|
19
|
+
- **Consistency**: Ensure a consistent look and feel across the Vention platform.
|
|
20
|
+
- **Efficiency**: Speed up the development process by providing reusable components and styles.
|
|
21
|
+
- **Scalability**: Scale the design system as the Vention platform grows.
|
|
22
|
+
- **Collaboration**: Foster collaboration between designers and developers by providing a shared language and toolset.
|
|
23
|
+
|
|
24
|
+
This library is a make-what-you-need type of project, all developers in Vention are welcome to contribute (please refer to our [dev setup page](/docs/guides-getting-started--docs) to learn more about how to contribute to this project).
|
|
25
|
+
|
|
26
|
+
Our product team has made a commitment to build designs using Machine UI, so whenever there are components in a design that are not yet available in the library, feel free to create them and submit a pull request.
|
|
27
|
+
|
|
28
|
+
There is NO pressure for full-time commitment to building every Machine UI component.
|
|
29
|
+
|
|
30
|
+
## 📁 Design Resources
|
|
31
|
+
|
|
32
|
+
All components created in this library are based on the [Machine UI Figma 🖌️](https://www.figma.com/file/oXDceBmiSGck2KEbM6DEbf/%E2%9D%96-Machine-UI---Beta?type=design&node-id=1289-16&mode=design&t=g0UllUPAhLpuE6KU-0)
|
|
33
|
+
|
|
34
|
+
More information about the colour selection and naming convention can be found here: [Machine UI Colour Palette 🎨](https://www.figma.com/file/fMslqDAxDQP3WhUSsc74Kf/2024-Colour-Palette-Kick-Off?type=design&node-id=283-3878&mode=design&t=pYNWW5cm23q4izpD-0)
|
|
35
|
+
|
|
36
|
+
## 👬 Contributors
|
|
37
|
+
|
|
38
|
+
Machine UI is a collaboration between Vention's software engineering and product design team. This joint effort is essential to ensure that the design system meets the needs of both designers and developers.
|
|
39
|
+
|
|
40
|
+
If you have any questions or suggestions about the design or development of Machine UI, please reach out to the following people.
|
|
41
|
+
|
|
42
|
+
The leaders of the Machine UI React Component library are:
|
|
43
|
+
|
|
44
|
+
- [Yann](https://ventionco.slack.com/team/U017LR9TWV9) (Project Lead)
|
|
45
|
+
- [Jonathan](https://ventionco.slack.com/team/U06LZNY8G0N) (Sponsor from Web and Ecommerce)
|
|
46
|
+
|
|
47
|
+
The design team responsible of creating Machine UI is composed of:
|
|
48
|
+
|
|
49
|
+
- [Pascal](https://ventionco.slack.com/team/U04HWTUS525) (Product Designer)
|
|
50
|
+
- [Javed](https://ventionco.slack.com/team/U05NC4ER78X) (Senior Product Designer)
|
|
51
|
+
|
|
52
|
+
## 📋 Versioning and Breaking Changes
|
|
53
|
+
|
|
54
|
+
Starting with version 1.0.0, Machine UI follows strict semantic versioning practices to ensure predictable updates for consuming teams:
|
|
55
|
+
|
|
56
|
+
### Version Types
|
|
57
|
+
|
|
58
|
+
- **🚨 Major versions** (e.g., 1.x.x → 2.x.x): Reserved for breaking changes to component contracts, APIs, or behavior
|
|
59
|
+
- **✨ Minor versions** (e.g., 1.1.x → 1.2.x): New features while maintaining backward compatibility
|
|
60
|
+
- **🐛 Patch versions** (e.g., 1.1.1 → 1.1.2): Bug fixes and internal improvements
|
|
61
|
+
|
|
62
|
+
### Breaking Change Policy
|
|
63
|
+
|
|
64
|
+
Any breaking change, regardless of size, will trigger a major version bump. This includes:
|
|
65
|
+
|
|
66
|
+
#### 🔧 **Component API Changes**
|
|
67
|
+
|
|
68
|
+
- **Renaming props**: `labelText` → `children` in VentionButton
|
|
69
|
+
- **Removing props**: Removing deprecated `size="xx-large"` option from VentionButton
|
|
70
|
+
- **Changing prop types**: `variant: "filled-brand" | "filled"` → `variant: "primary" | "secondary"` (breaking existing usage)
|
|
71
|
+
- **Changing required props**: Making VentionButton's `onClick` prop required instead of optional
|
|
72
|
+
|
|
73
|
+
#### ⚡ **Behavioral Changes That Affect Functionality**
|
|
74
|
+
|
|
75
|
+
- **Event handling**: Button now prevents default browser behavior differently
|
|
76
|
+
|
|
77
|
+
#### 🎨 **Visual Breaking Changes (Design Token)**
|
|
78
|
+
|
|
79
|
+
- **Spacing token changes**: `spacing[4]` changing from `16px` to `20px` (affects layout calculations across components)
|
|
80
|
+
- **Typography token changes**: `uiText14Medium.fontSize` changing from `14` to `16` (affects button labels, form inputs, and UI text rendering)
|
|
81
|
+
|
|
82
|
+
#### 📝 **TypeScript Interface Changes**
|
|
83
|
+
|
|
84
|
+
- **Exported type modifications**: Removing `VentionButtonProps["labelText"]` from the public interface
|
|
85
|
+
- **Size type changes**: `Sizes` type changing from `"small" | "medium" | "large"` to `"sm" | "md" | "lg"`
|
|
86
|
+
|
|
87
|
+
#### ✅ **Non-Breaking Changes** (Minor/Patch versions)
|
|
88
|
+
|
|
89
|
+
- **New optional props or features**
|
|
90
|
+
- **Bug fixes that restore intended behavior**
|
|
91
|
+
- **Performance improvements without API changes**
|
|
92
|
+
- **New design tokens without changing existing ones**
|
|
93
|
+
- **Internal implementation changes that don't affect public API**
|
|
94
|
+
- **Adding CSS classes or data attributes for styling hooks**
|
|
95
|
+
|
|
96
|
+
This strict policy ensures that teams can safely upgrade patch and minor versions without fear of unexpected breaking changes, while major version upgrades signal the need for careful testing and potential code updates.
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Normally, we would add a global css baseline style override in the theme (see MuiCssBaseline).
|
|
3
|
+
* However, this requires to always add the <CssBaseline /> tag under the <ThemeProvider> tag.
|
|
4
|
+
* We apply the styling thru the index import (regular MachineUI package consumer import).
|
|
5
|
+
* The global-styles css is also imported globally in the storybook in preview.tsx.
|
|
6
|
+
*/
|
|
7
|
+
import "./global-styles.css"
|
|
8
|
+
|
|
9
|
+
// Components
|
|
10
|
+
export * from "./lib/components/vention-alert/vention-alert"
|
|
11
|
+
export * from "./lib/components/vention-badge/vention-badge"
|
|
12
|
+
export * from "./lib/components/vention-button/vention-button"
|
|
13
|
+
export * from "./lib/components/vention-button/vention-icon-button/vention-icon-button"
|
|
14
|
+
export * from "./lib/components/vention-button/vention-dropdown-button/vention-dropdown-button"
|
|
15
|
+
export * from "./lib/components/vention-callout/vention-callout"
|
|
16
|
+
export * from "./lib/components/vention-counter/vention-counter"
|
|
17
|
+
export * from "./lib/components/vention-link/vention-link"
|
|
18
|
+
export * from "./lib/components/vention-modal/vention-modal"
|
|
19
|
+
export * from "./lib/components/vention-modal-base/vention-modal-base"
|
|
20
|
+
export * from "./lib/components/vention-progress-bar/vention-progress-bar"
|
|
21
|
+
export * from "./lib/components/vention-spinner/vention-spinner"
|
|
22
|
+
export * from "./lib/components/vention-steps/vention-steps"
|
|
23
|
+
export * from "./lib/components/vention-status-dot/vention-status-dot"
|
|
24
|
+
export * from "./lib/components/vention-text-input/vention-text-input"
|
|
25
|
+
export * from "./lib/components/vention-radio/vention-radio"
|
|
26
|
+
export * from "./lib/components/vention-radio/vention-radio-tile/vention-radio-tile"
|
|
27
|
+
export * from "./lib/components/vention-select/vention-select"
|
|
28
|
+
export * from "./lib/components/vention-stepper/vention-stepper"
|
|
29
|
+
export * from "./lib/components/vention-tabs/vention-tabs"
|
|
30
|
+
export * from "./lib/components/vention-draggable/vention-draggable"
|
|
31
|
+
export * from "./lib/components/vention-slider/vention-slider"
|
|
32
|
+
export * from "./lib/components/vention-switch/vention-switch"
|
|
33
|
+
export * from "./lib/components/vention-popover/vention-popover"
|
|
34
|
+
export * from "./lib/components/vention-menu/vention-menu"
|
|
35
|
+
export * from "./lib/components/vention-tree-item/vention-tree-item"
|
|
36
|
+
export * from "./lib/components/vention-drawer/vention-drawer"
|
|
37
|
+
export * from "./lib/components/vention-status-indicator/vention-status-indicator"
|
|
38
|
+
export * from "./lib/components/vention-modal-banner/vention-modal-banner"
|
|
39
|
+
export * from "./lib/components/vention-banner/vention-banner"
|
|
40
|
+
export * from "./lib/components/vention-sidebar-item/vention-sidebar-item"
|
|
41
|
+
export * from "./lib/components/vention-icon/vention-icon"
|
|
42
|
+
export * from "./lib/components/vention-combobox/vention-combobox"
|
|
43
|
+
export * from "./lib/components/vention-tooltip/vention-tooltip"
|
|
44
|
+
export * from "./lib/components/vention-checkbox/vention-checkbox"
|
|
45
|
+
export * from "./lib/components/vention-uploadfile/vention-uploadfile"
|
|
46
|
+
export * from "./lib/components/vention-dropzone/vention-dropzone"
|
|
47
|
+
|
|
48
|
+
// Theme
|
|
49
|
+
export * from "./lib/theme/machine-ui-theme"
|
|
50
|
+
export * from "./lib/theme/colors"
|
|
51
|
+
|
|
52
|
+
// Interfaces
|
|
53
|
+
export { type VentionAlertProps } from "./lib/components/vention-alert/vention-alert-utils"
|
|
54
|
+
export { type VentionButtonProps } from "./lib/components/vention-button/button-utils"
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { Theme, TypographyOwnProps } from "@mui/material"
|
|
2
|
+
import { AllInputStates } from "../types/input-types"
|
|
3
|
+
import { Sizes } from "../../../theme/machine-ui-theme"
|
|
4
|
+
|
|
5
|
+
export const getBorderColorFromState = (state: AllInputStates, theme: Theme) => {
|
|
6
|
+
switch (state) {
|
|
7
|
+
case "error":
|
|
8
|
+
return theme.palette.border.subtleDestructive
|
|
9
|
+
case "warning":
|
|
10
|
+
return theme.palette.border.subtleWarning
|
|
11
|
+
case "success":
|
|
12
|
+
return theme.palette.border.subtleSuccess
|
|
13
|
+
case "focused":
|
|
14
|
+
return theme.palette.border.blueSubtle
|
|
15
|
+
case "hover":
|
|
16
|
+
case "default":
|
|
17
|
+
case "disabled":
|
|
18
|
+
default:
|
|
19
|
+
return theme.palette.border.main
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export const getBackgroundColorFromState = (state: AllInputStates, theme: Theme) => {
|
|
24
|
+
switch (state) {
|
|
25
|
+
case "error":
|
|
26
|
+
return theme.palette.background.subtleDestructive
|
|
27
|
+
case "warning":
|
|
28
|
+
return theme.palette.background.subtleWarning
|
|
29
|
+
case "success":
|
|
30
|
+
return theme.palette.background.subtleSuccess
|
|
31
|
+
case "disabled":
|
|
32
|
+
return theme.palette.background.inputDisabled
|
|
33
|
+
case "default":
|
|
34
|
+
case "focused":
|
|
35
|
+
case "hover":
|
|
36
|
+
default:
|
|
37
|
+
return theme.palette.background.inputOutlined
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export const getInputHeight = (size: Sizes, theme: Theme) => {
|
|
42
|
+
switch (size) {
|
|
43
|
+
case "x-small":
|
|
44
|
+
return theme.spacing(4)
|
|
45
|
+
case "small":
|
|
46
|
+
return theme.spacing(5)
|
|
47
|
+
case "medium":
|
|
48
|
+
return theme.spacing(7)
|
|
49
|
+
case "large":
|
|
50
|
+
return theme.spacing(8)
|
|
51
|
+
case "x-large":
|
|
52
|
+
return theme.spacing(9)
|
|
53
|
+
case "xx-large":
|
|
54
|
+
return theme.spacing(11)
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export const getInputPaddingStyles = (size: Sizes, theme: Theme) => {
|
|
59
|
+
switch (size) {
|
|
60
|
+
case "x-small":
|
|
61
|
+
case "small":
|
|
62
|
+
return {
|
|
63
|
+
paddingLeft: theme.spacing(2),
|
|
64
|
+
paddingRight: theme.spacing(2),
|
|
65
|
+
}
|
|
66
|
+
case "medium":
|
|
67
|
+
return {
|
|
68
|
+
paddingLeft: theme.spacing(3),
|
|
69
|
+
paddingRight: theme.spacing(3),
|
|
70
|
+
}
|
|
71
|
+
case "large":
|
|
72
|
+
case "x-large":
|
|
73
|
+
case "xx-large":
|
|
74
|
+
return {
|
|
75
|
+
paddingLeft: theme.spacing(4),
|
|
76
|
+
paddingRight: theme.spacing(4),
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export const typographyNameFromSizeMap: Record<
|
|
82
|
+
"x-small" | "small" | "medium" | "large" | "x-large" | "xx-large",
|
|
83
|
+
Record<"label" | "text" | "helperText", TypographyOwnProps["variant"]>
|
|
84
|
+
> = {
|
|
85
|
+
"x-small": {
|
|
86
|
+
label: "uiText12SemiBold",
|
|
87
|
+
text: "uiText12Regular",
|
|
88
|
+
helperText: "uiText12Regular",
|
|
89
|
+
},
|
|
90
|
+
small: {
|
|
91
|
+
label: "uiText12SemiBold",
|
|
92
|
+
text: "uiText12Regular",
|
|
93
|
+
helperText: "uiText12Regular",
|
|
94
|
+
},
|
|
95
|
+
medium: {
|
|
96
|
+
label: "uiText14SemiBold",
|
|
97
|
+
text: "uiText14Regular",
|
|
98
|
+
helperText: "uiText12Regular",
|
|
99
|
+
},
|
|
100
|
+
large: {
|
|
101
|
+
label: "uiText14SemiBold",
|
|
102
|
+
text: "uiText14Regular",
|
|
103
|
+
helperText: "uiText12Regular",
|
|
104
|
+
},
|
|
105
|
+
"x-large": {
|
|
106
|
+
label: "heading18SemiBold",
|
|
107
|
+
text: "paragraph18Regular",
|
|
108
|
+
helperText: "uiText12Regular",
|
|
109
|
+
},
|
|
110
|
+
"xx-large": {
|
|
111
|
+
label: "hmiText20SemiBold",
|
|
112
|
+
text: "hmiText22Regular",
|
|
113
|
+
helperText: "paragraph18Regular",
|
|
114
|
+
},
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export const getTypography = (size: Sizes, theme: Theme) => {
|
|
118
|
+
return {
|
|
119
|
+
label: theme.typography[typographyNameFromSizeMap[size].label],
|
|
120
|
+
text: theme.typography[typographyNameFromSizeMap[size].text],
|
|
121
|
+
helperText: theme.typography[typographyNameFromSizeMap[size].helperText],
|
|
122
|
+
}
|
|
123
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* All user configurable input states.
|
|
3
|
+
*/
|
|
4
|
+
export type InputStates = "default" | "error" | "warning" | "success" | "disabled"
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* These are additional possible input states based on user interaction
|
|
8
|
+
*/
|
|
9
|
+
export type AllInputStates = InputStates | "hover" | "focused"
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { Stack } from "@mui/material"
|
|
2
|
+
import { tss } from "tss-react/mui"
|
|
3
|
+
|
|
4
|
+
import { VentionButton } from "../vention-button/vention-button"
|
|
5
|
+
import { VentionLink } from "../vention-link/vention-link"
|
|
6
|
+
import { getGapSpaceForContent, VentionAlertProps } from "./vention-alert-utils"
|
|
7
|
+
|
|
8
|
+
export interface VentionAlertControlProps
|
|
9
|
+
extends Pick<
|
|
10
|
+
VentionAlertProps,
|
|
11
|
+
"size" | "primaryButtonText" | "onPrimaryButtonClick" | "secondaryButtonText" | "onSecondaryButtonClick" | "linkText" | "onLinkClick"
|
|
12
|
+
> {
|
|
13
|
+
display: boolean
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export const VentionAlertControls = (alertControlProps: VentionAlertControlProps) => {
|
|
17
|
+
const { classes } = useStyles(alertControlProps)
|
|
18
|
+
|
|
19
|
+
return alertControlProps.display ? (
|
|
20
|
+
<Stack className={classes.alertControls}>
|
|
21
|
+
{alertControlProps.primaryButtonText ? (
|
|
22
|
+
<VentionButton
|
|
23
|
+
onClick={alertControlProps.onPrimaryButtonClick}
|
|
24
|
+
labelText={alertControlProps.primaryButtonText}
|
|
25
|
+
size={alertControlProps.size}
|
|
26
|
+
variant="shaded"
|
|
27
|
+
data-testid="alertPrimaryBtn"
|
|
28
|
+
/>
|
|
29
|
+
) : null}
|
|
30
|
+
{alertControlProps.secondaryButtonText ? (
|
|
31
|
+
<VentionButton
|
|
32
|
+
onClick={alertControlProps.onSecondaryButtonClick}
|
|
33
|
+
labelText={alertControlProps.secondaryButtonText}
|
|
34
|
+
size={alertControlProps.size}
|
|
35
|
+
variant="text-only"
|
|
36
|
+
data-testid="alertSecondaryBtn"
|
|
37
|
+
/>
|
|
38
|
+
) : null}
|
|
39
|
+
{alertControlProps.linkText ? (
|
|
40
|
+
<VentionLink
|
|
41
|
+
onClick={alertControlProps.onLinkClick}
|
|
42
|
+
labelText={alertControlProps.linkText}
|
|
43
|
+
size={alertControlProps.size === "small" ? "medium" : "large"}
|
|
44
|
+
/>
|
|
45
|
+
) : null}
|
|
46
|
+
</Stack>
|
|
47
|
+
) : null
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const useStyles = tss.withParams<Pick<VentionAlertProps, "isSingleLine" | "size">>().create(({ isSingleLine, size }) => {
|
|
51
|
+
return {
|
|
52
|
+
alertControls: {
|
|
53
|
+
flexDirection: isSingleLine ? "row-reverse" : "row",
|
|
54
|
+
gap: getGapSpaceForContent(isSingleLine, size),
|
|
55
|
+
},
|
|
56
|
+
}
|
|
57
|
+
})
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ReactElement } from "react"
|
|
2
|
+
import { Sizes, StrictExtract } from "../../theme/machine-ui-theme"
|
|
3
|
+
|
|
4
|
+
export interface VentionAlertProps {
|
|
5
|
+
severity: "info" | "warn" | "error" | "success"
|
|
6
|
+
linkText?: string
|
|
7
|
+
primaryButtonText?: string
|
|
8
|
+
secondaryButtonText?: string
|
|
9
|
+
onLinkClick?: () => void
|
|
10
|
+
onPrimaryButtonClick?: () => void
|
|
11
|
+
onSecondaryButtonClick?: () => void
|
|
12
|
+
onCloseButtonClick?: () => void
|
|
13
|
+
size?: StrictExtract<Sizes, "small" | "medium" | "large" | "xx-large">
|
|
14
|
+
descriptionText?: ReactElement | string
|
|
15
|
+
leftIcon?: ReactElement | undefined
|
|
16
|
+
rightIcon?: ReactElement | undefined
|
|
17
|
+
title?: ReactElement | string
|
|
18
|
+
isCloseable?: boolean
|
|
19
|
+
isSingleLine?: boolean
|
|
20
|
+
isFullWidth?: boolean
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function getGapSpaceForContent(isSingleLine: boolean, size: VentionAlertProps["size"]) {
|
|
24
|
+
if (!isSingleLine) return "0px"
|
|
25
|
+
|
|
26
|
+
return size === "small" ? "8px" : "12px"
|
|
27
|
+
}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from "@storybook/react"
|
|
2
|
+
import { IconHelp, IconShieldFilled } from "@tabler/icons-react"
|
|
3
|
+
import React from "react"
|
|
4
|
+
|
|
5
|
+
import { VentionAlert } from "./vention-alert"
|
|
6
|
+
|
|
7
|
+
const meta: Meta<typeof VentionAlert> = {
|
|
8
|
+
component: VentionAlert,
|
|
9
|
+
title: "Components/VentionAlert",
|
|
10
|
+
argTypes: {
|
|
11
|
+
onLinkClick: { action: "onClick executed!" },
|
|
12
|
+
},
|
|
13
|
+
}
|
|
14
|
+
export default meta
|
|
15
|
+
type Story = StoryObj<typeof VentionAlert>
|
|
16
|
+
|
|
17
|
+
export const Default: Story = {
|
|
18
|
+
args: {
|
|
19
|
+
size: "medium",
|
|
20
|
+
descriptionText: "Description placeholder",
|
|
21
|
+
title: "Alert",
|
|
22
|
+
severity: "info",
|
|
23
|
+
},
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export const LongTextSingleLine: Story = {
|
|
27
|
+
args: {
|
|
28
|
+
size: "medium",
|
|
29
|
+
descriptionText:
|
|
30
|
+
"In a perfect world, content stays brief. Yet, when more words are essential, it unfolds like this. In a perfect world, content stays brief. Yet, when more words are essential, it unfolds like this. In a perfect world, content stays brief. Yet, when more words are essential, it unfolds like this",
|
|
31
|
+
title:
|
|
32
|
+
"This is a very long title that should wrap. This is a very long title that should wrap. This is a very long title that should wrap",
|
|
33
|
+
severity: "info",
|
|
34
|
+
},
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export const WithPrimaryAndSecondaryAndLinkButtons: Story = {
|
|
38
|
+
args: {
|
|
39
|
+
size: "medium",
|
|
40
|
+
descriptionText: "In a perfect world, content stays brief. Yet, when more words are essential, it unfolds like this",
|
|
41
|
+
title: "Complete",
|
|
42
|
+
primaryButtonText: "Primary",
|
|
43
|
+
secondaryButtonText: "Secondary",
|
|
44
|
+
linkText: "Link Btn",
|
|
45
|
+
severity: "success",
|
|
46
|
+
rightIcon: <IconHelp />,
|
|
47
|
+
},
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export const WithCloseButton: Story = {
|
|
51
|
+
args: {
|
|
52
|
+
size: "medium",
|
|
53
|
+
descriptionText: "Description placeholder",
|
|
54
|
+
title: "Warning",
|
|
55
|
+
primaryButtonText: "Primary",
|
|
56
|
+
secondaryButtonText: "Secondary",
|
|
57
|
+
isCloseable: true,
|
|
58
|
+
severity: "warn",
|
|
59
|
+
},
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export const OnSingleLine: Story = {
|
|
63
|
+
decorators: [
|
|
64
|
+
Story => (
|
|
65
|
+
<div style={{ minWidth: "800px" }}>
|
|
66
|
+
<Story />
|
|
67
|
+
</div>
|
|
68
|
+
),
|
|
69
|
+
],
|
|
70
|
+
args: {
|
|
71
|
+
size: "medium",
|
|
72
|
+
descriptionText: "Description placeholder",
|
|
73
|
+
title: "Error",
|
|
74
|
+
primaryButtonText: "Primary",
|
|
75
|
+
secondaryButtonText: "Secondary",
|
|
76
|
+
linkText: "Link",
|
|
77
|
+
severity: "error",
|
|
78
|
+
isCloseable: true,
|
|
79
|
+
isSingleLine: true,
|
|
80
|
+
rightIcon: <IconHelp />,
|
|
81
|
+
},
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export const LongTextOnSingleLine: Story = {
|
|
85
|
+
decorators: [
|
|
86
|
+
Story => (
|
|
87
|
+
<div style={{ width: "800px" }}>
|
|
88
|
+
<Story />
|
|
89
|
+
</div>
|
|
90
|
+
),
|
|
91
|
+
],
|
|
92
|
+
args: {
|
|
93
|
+
size: "medium",
|
|
94
|
+
descriptionText:
|
|
95
|
+
"In a perfect world, content stays brief. Yet, when more words are essential, it unfolds like this. In a perfect world, content stays brief. Yet, when more words are essential, it unfolds like this. In a perfect world, content stays brief. Yet, when more words are essential, it unfolds like this",
|
|
96
|
+
title:
|
|
97
|
+
"This is a very long title that should wrap. This is a very long title that should wrap. This is a very long title that should wrap",
|
|
98
|
+
severity: "info",
|
|
99
|
+
isSingleLine: true,
|
|
100
|
+
isCloseable: true,
|
|
101
|
+
isFullWidth: true,
|
|
102
|
+
rightIcon: <IconHelp />,
|
|
103
|
+
},
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export const WithCustomWidth: Story = {
|
|
107
|
+
decorators: [
|
|
108
|
+
Story => (
|
|
109
|
+
<div style={{ minWidth: "480px" }}>
|
|
110
|
+
<Story />
|
|
111
|
+
</div>
|
|
112
|
+
),
|
|
113
|
+
],
|
|
114
|
+
args: {
|
|
115
|
+
size: "large",
|
|
116
|
+
descriptionText: "Description placeholder",
|
|
117
|
+
title: "Warning",
|
|
118
|
+
severity: "warn",
|
|
119
|
+
isSingleLine: true,
|
|
120
|
+
isCloseable: true,
|
|
121
|
+
},
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export const WithCustomIcons: Story = {
|
|
125
|
+
args: {
|
|
126
|
+
size: "large",
|
|
127
|
+
descriptionText: "Description placeholder",
|
|
128
|
+
title: "Alert",
|
|
129
|
+
linkText: "Link",
|
|
130
|
+
isSingleLine: true,
|
|
131
|
+
primaryButtonText: "Primary",
|
|
132
|
+
secondaryButtonText: "Secondary",
|
|
133
|
+
severity: "error",
|
|
134
|
+
leftIcon: <IconShieldFilled />,
|
|
135
|
+
rightIcon: <IconHelp />,
|
|
136
|
+
},
|
|
137
|
+
}
|